From a076de300a929c3e7abfb515f8f44a1b79dc4aa9 Mon Sep 17 00:00:00 2001 From: adammino-ledger Date: Mon, 14 Oct 2024 16:41:28 +0100 Subject: [PATCH 01/57] add providerTestId to test specific provider together with providerTestBaseUrl --- .../src/renderer/screens/exchange/index.tsx | 3 +++ apps/ledger-live-mobile/src/screens/PTX/index.tsx | 3 +++ libs/ledger-live-common/src/platform/types.ts | 1 + 3 files changed, 7 insertions(+) diff --git a/apps/ledger-live-desktop/src/renderer/screens/exchange/index.tsx b/apps/ledger-live-desktop/src/renderer/screens/exchange/index.tsx index 2500620ad998..84e45484506b 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/exchange/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/exchange/index.tsx @@ -102,6 +102,9 @@ const LiveAppExchange = ({ appId }: { appId: string }) => { ...(localManifest?.providerTestBaseUrl && { providerTestBaseUrl: localManifest?.providerTestBaseUrl, }), + ...(localManifest?.providerTestId && { + providerTestId: localManifest?.providerTestId, + }), ...Object.fromEntries(searchParams.entries()), }} diff --git a/apps/ledger-live-mobile/src/screens/PTX/index.tsx b/apps/ledger-live-mobile/src/screens/PTX/index.tsx index 248b91a742c4..f9ff8e4a151d 100644 --- a/apps/ledger-live-mobile/src/screens/PTX/index.tsx +++ b/apps/ledger-live-mobile/src/screens/PTX/index.tsx @@ -117,6 +117,9 @@ export function PtxScreen({ route, config }: Props) { ...(localManifest?.providerTestBaseUrl && { providerTestBaseUrl: localManifest?.providerTestBaseUrl, }), + ...(localManifest?.providerTestId && { + providerTestId: localManifest?.providerTestId, + }), ...customParams, ...Object.fromEntries(searchParams.entries()), }} diff --git a/libs/ledger-live-common/src/platform/types.ts b/libs/ledger-live-common/src/platform/types.ts index 277ebb9b4104..c5b81a44a92e 100644 --- a/libs/ledger-live-common/src/platform/types.ts +++ b/libs/ledger-live-common/src/platform/types.ts @@ -128,6 +128,7 @@ export type LiveAppManifest = { visibility: Visibility; highlight?: boolean; providerTestBaseUrl?: string; + providerTestId?: string; content: { cta?: TranslatableString; subtitle?: TranslatableString; From 0fca8fff2cf494708ff70462ce7fab9acd67dd00 Mon Sep 17 00:00:00 2001 From: adammino-ledger Date: Wed, 16 Oct 2024 10:07:35 +0100 Subject: [PATCH 02/57] add changeset --- .changeset/new-rings-collect.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .changeset/new-rings-collect.md diff --git a/.changeset/new-rings-collect.md b/.changeset/new-rings-collect.md new file mode 100644 index 000000000000..0ddc7655199e --- /dev/null +++ b/.changeset/new-rings-collect.md @@ -0,0 +1,6 @@ +--- +"ledger-live-desktop": patch +"live-mobile": patch +--- + +providerTestId added to allow partners to test in different envs From 6ba7e225b767fe71a508563f09d24e61e7667d5e Mon Sep 17 00:00:00 2001 From: Kevin Le Seigle Date: Wed, 16 Oct 2024 11:14:35 +0200 Subject: [PATCH 03/57] fix: force locale in user data for e2e tests --- .../tests/userdata/1AccountBTC1AccountETH.json | 1 + .../e2e/userdata/1AccountBTC1AccountETH.json | 1 + .../e2e/userdata/1AccountBTC1AccountETHReadOnlyFalse.json | 1 + .../e2e/userdata/allLiveCoinsNoOperations.json | 1 + apps/ledger-live-mobile/e2e/userdata/onboardingcompleted.json | 3 ++- 5 files changed, 6 insertions(+), 1 deletion(-) diff --git a/apps/ledger-live-desktop/tests/userdata/1AccountBTC1AccountETH.json b/apps/ledger-live-desktop/tests/userdata/1AccountBTC1AccountETH.json index 1da867cacf73..4dca116c63d8 100644 --- a/apps/ledger-live-desktop/tests/userdata/1AccountBTC1AccountETH.json +++ b/apps/ledger-live-desktop/tests/userdata/1AccountBTC1AccountETH.json @@ -11,6 +11,7 @@ "language": "en", "theme": null, "region": null, + "locale": "en-US", "orderAccounts": "balance|desc", "countervalueFirst": false, "autoLockTimeout": 10, diff --git a/apps/ledger-live-mobile/e2e/userdata/1AccountBTC1AccountETH.json b/apps/ledger-live-mobile/e2e/userdata/1AccountBTC1AccountETH.json index 22b1ca6e7eaf..b245dbca362e 100644 --- a/apps/ledger-live-mobile/e2e/userdata/1AccountBTC1AccountETH.json +++ b/apps/ledger-live-mobile/e2e/userdata/1AccountBTC1AccountETH.json @@ -12,6 +12,7 @@ "language": "en", "theme": "light", "region": null, + "locale": "en-US", "orderAccounts": "balance|desc", "countervalueFirst": false, "autoLockTimeout": 10, diff --git a/apps/ledger-live-mobile/e2e/userdata/1AccountBTC1AccountETHReadOnlyFalse.json b/apps/ledger-live-mobile/e2e/userdata/1AccountBTC1AccountETHReadOnlyFalse.json index 89461a5cefcb..9ad08141f98e 100644 --- a/apps/ledger-live-mobile/e2e/userdata/1AccountBTC1AccountETHReadOnlyFalse.json +++ b/apps/ledger-live-mobile/e2e/userdata/1AccountBTC1AccountETHReadOnlyFalse.json @@ -11,6 +11,7 @@ "language": "en", "theme": "light", "region": null, + "locale": "en-US", "orderAccounts": "balance|desc", "countervalueFirst": false, "autoLockTimeout": 10, diff --git a/apps/ledger-live-mobile/e2e/userdata/allLiveCoinsNoOperations.json b/apps/ledger-live-mobile/e2e/userdata/allLiveCoinsNoOperations.json index a756811edb01..544d6d5f2369 100644 --- a/apps/ledger-live-mobile/e2e/userdata/allLiveCoinsNoOperations.json +++ b/apps/ledger-live-mobile/e2e/userdata/allLiveCoinsNoOperations.json @@ -7,6 +7,7 @@ "language": null, "theme": "dark", "region": null, + "locale": "en-US", "orderAccounts": "name|asc", "countervalueFirst": true, "autoLockTimeout": 10, diff --git a/apps/ledger-live-mobile/e2e/userdata/onboardingcompleted.json b/apps/ledger-live-mobile/e2e/userdata/onboardingcompleted.json index 9c9317c8e6e9..57e25f6bc16a 100644 --- a/apps/ledger-live-mobile/e2e/userdata/onboardingcompleted.json +++ b/apps/ledger-live-mobile/e2e/userdata/onboardingcompleted.json @@ -11,6 +11,7 @@ "language": "en", "theme": "light", "region": null, + "locale": "en-US", "orderAccounts": "balance|desc", "countervalueFirst": false, "autoLockTimeout": 10, @@ -50,4 +51,4 @@ "accounts": [], "countervalues": {} } -} \ No newline at end of file +} From f436b720d5e1106a0f4dd7713eab744fc8e2f09b Mon Sep 17 00:00:00 2001 From: Victor <162306106+VicAlbr@users.noreply.github.com> Date: Wed, 16 Oct 2024 14:32:27 +0200 Subject: [PATCH 04/57] [QAA-262] Delegate E2E test: User should be able to select a validator (#8084) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit test: ✅ Adding delegate tests - User should be able to select a validator test: ⚡️ adding cli to delegate tests --- .../algorand/AccountHeaderManageActions.ts | 1 + .../cardano/AccountHeaderManageActions.ts | 1 + .../fields/ValidatorField.tsx | 2 +- .../fields/ValidatorGroupsField.tsx | 2 +- .../cosmos/AccountHeaderManageActions.ts | 2 +- .../fields/ValidatorField.tsx | 2 +- .../elrond/AccountHeaderManageActions.ts | 1 + .../Modals/Delegate/fields/ValidatorList.tsx | 2 +- .../evm/AccountHeaderManageActions.ts | 2 +- .../near/AccountHeaderManageActions.ts | 1 + .../fields/ValidatorField.tsx | 2 +- .../polkadot/AccountHeaderManageActions.ts | 1 + .../solana/AccountHeaderManageActions.ts | 1 + .../solana/shared/fields/ValidatorsField.tsx | 2 +- .../tezos/AccountHeaderManageActions.ts | 1 + .../tron/AccountHeaderManageActions.ts | 1 + .../ledger-live-desktop/tests/enum/Account.ts | 30 + .../tests/enum/AppInfos.ts | 35 + .../tests/enum/Currency.ts | 2 + .../tests/page/account.page.ts | 7 +- .../tests/page/modal/delegate.modal.ts | 14 +- .../specs/accounts/delegate.smoke.spec.ts | 2 +- .../tests/specs/speculos/delegate.spec.ts | 77 +- .../tests/userdata/speculos-delegate.json | 14779 ---------------- libs/ledger-live-common/src/e2e/speculos.ts | 16 + 25 files changed, 184 insertions(+), 14802 deletions(-) delete mode 100644 apps/ledger-live-desktop/tests/userdata/speculos-delegate.json diff --git a/apps/ledger-live-desktop/src/renderer/families/algorand/AccountHeaderManageActions.ts b/apps/ledger-live-desktop/src/renderer/families/algorand/AccountHeaderManageActions.ts index bfda7d47f065..e63f0e249750 100644 --- a/apps/ledger-live-desktop/src/renderer/families/algorand/AccountHeaderManageActions.ts +++ b/apps/ledger-live-desktop/src/renderer/families/algorand/AccountHeaderManageActions.ts @@ -32,6 +32,7 @@ const AccountHeaderActions: AlgorandFamily["accountHeaderManageActions"] = ({ eventProperties: { button: "stake", }, + accountActionsTestId: "stake-button", }, ]; }; diff --git a/apps/ledger-live-desktop/src/renderer/families/cardano/AccountHeaderManageActions.ts b/apps/ledger-live-desktop/src/renderer/families/cardano/AccountHeaderManageActions.ts index c90b271da1c1..0fd04af2e491 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cardano/AccountHeaderManageActions.ts +++ b/apps/ledger-live-desktop/src/renderer/families/cardano/AccountHeaderManageActions.ts @@ -49,6 +49,7 @@ const AccountHeaderActions = ({ account, parentAccount }: Props) => { disabled: disableStakeButton, label: t("account.stake"), tooltip: disabledLabel, + accountActionsTestId: "stake-button", }, ]; }; diff --git a/apps/ledger-live-desktop/src/renderer/families/cardano/DelegationFlowModal/fields/ValidatorField.tsx b/apps/ledger-live-desktop/src/renderer/families/cardano/DelegationFlowModal/fields/ValidatorField.tsx index a747464d49c3..a6bbdfd98e26 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cardano/DelegationFlowModal/fields/ValidatorField.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/cardano/DelegationFlowModal/fields/ValidatorField.tsx @@ -87,7 +87,7 @@ const ValidatorField = ({ account, delegation, onChangeValidator, selectedPoolId <> {showAll && } - + {(showAll && isSearching) || (!showAll && ledgerPoolsLoading) ? ( diff --git a/apps/ledger-live-desktop/src/renderer/families/celo/VoteFlowModal/fields/ValidatorGroupsField.tsx b/apps/ledger-live-desktop/src/renderer/families/celo/VoteFlowModal/fields/ValidatorGroupsField.tsx index 65c3f8f9c49e..3cdeb0d71707 100644 --- a/apps/ledger-live-desktop/src/renderer/families/celo/VoteFlowModal/fields/ValidatorGroupsField.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/celo/VoteFlowModal/fields/ValidatorGroupsField.tsx @@ -70,7 +70,7 @@ const ValidatorGroupsField = ({ <> {showAll && } - + { eventProperties: { button: "stake", }, - accountActionsTestId: "stake-button-cosmos", + accountActionsTestId: "stake-button", }, ]; }; diff --git a/apps/ledger-live-desktop/src/renderer/families/cosmos/DelegationFlowModal/fields/ValidatorField.tsx b/apps/ledger-live-desktop/src/renderer/families/cosmos/DelegationFlowModal/fields/ValidatorField.tsx index 0c1c1dbe16d3..2e3fa7738af4 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cosmos/DelegationFlowModal/fields/ValidatorField.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/cosmos/DelegationFlowModal/fields/ValidatorField.tsx @@ -58,7 +58,7 @@ const ValidatorField = ({ account, onChangeValidator, chosenVoteAccAddr }: Props <> {showAll && } - + { {showAll && } - + { label: t("account.stake", { currency: account?.currency?.name, }), - accountActionsTestId: "stake-from-account-action-button", + accountActionsTestId: "stake-button", }, ]; } else { diff --git a/apps/ledger-live-desktop/src/renderer/families/near/AccountHeaderManageActions.ts b/apps/ledger-live-desktop/src/renderer/families/near/AccountHeaderManageActions.ts index 588f860a377a..61d88c4298bd 100644 --- a/apps/ledger-live-desktop/src/renderer/families/near/AccountHeaderManageActions.ts +++ b/apps/ledger-live-desktop/src/renderer/families/near/AccountHeaderManageActions.ts @@ -57,6 +57,7 @@ const AccountHeaderActions: NearFamily["accountHeaderManageActions"] = ({ eventProperties: { button: "stake", }, + accountActionsTestId: "stake-button", }, ]; }; diff --git a/apps/ledger-live-desktop/src/renderer/families/near/StakingFlowModal/fields/ValidatorField.tsx b/apps/ledger-live-desktop/src/renderer/families/near/StakingFlowModal/fields/ValidatorField.tsx index 50c6d5787b12..48b4dec43367 100644 --- a/apps/ledger-live-desktop/src/renderer/families/near/StakingFlowModal/fields/ValidatorField.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/near/StakingFlowModal/fields/ValidatorField.tsx @@ -50,7 +50,7 @@ const ValidatorField = ({ account, onChangeValidator, chosenVoteAccAddr }: Props <> {showAll && } - + {showAll && } - + stakeOnClick(), + accountActionsTestId: "stake-button", }, ]; }; diff --git a/apps/ledger-live-desktop/tests/enum/Account.ts b/apps/ledger-live-desktop/tests/enum/Account.ts index 55ffdfc252cc..23e53bc48a02 100644 --- a/apps/ledger-live-desktop/tests/enum/Account.ts +++ b/apps/ledger-live-desktop/tests/enum/Account.ts @@ -160,6 +160,8 @@ export class Account { Currency.SOL, "Solana 2", "6vSQTFcBoPfUKAdo8BQNJqqxU6UcBmd87HQoNSbgTMzH", + undefined, + 1, ); static readonly TRX_1 = new Account( @@ -261,6 +263,8 @@ export class Account { Currency.ATOM, "Cosmos 2", "cosmos12d854g9mut943gu5ncyhalapukttkddnvlxaq6", + undefined, + 1, ); static readonly XTZ_1 = new Account( @@ -294,6 +298,16 @@ export class Account { Currency.NEAR, "NEAR 1", "70b2982a31cfcffc773145d2143392612bb83a22926c912e2ce3ec0634f637e2", + undefined, + 0, + ); + + static readonly NEAR_2 = new Account( + Currency.NEAR, + "NEAR 2", + "5effd8bfea3885b6f5f91256663e5af720b18761a96bd6592e210a23f950872c", + undefined, + 1, ); static readonly ETH_USDT_1 = new Account( @@ -391,4 +405,20 @@ export class Account { "Ethereum 2", "0x43047a5023d55a8658fcb1c1cea468311adaa3ad", ); + + static readonly MULTIVERS_X_1 = new Account( + Currency.MULTIVERS_X, + "MultiversX 1", + "erd1kp2psapk98pjtxr0n583qlq9zurwdwaqcvgh7l5hyj6hh839p5dq82cuw9", + undefined, + 0, + ); + + static readonly OSMO_1 = new Account( + Currency.OSMO, + "Osmosis 1", + "osmo1w7v2v6v8z3r3d8x8h7yjv6w2k3c5w3z7w6v8v8", + undefined, + 0, + ); } diff --git a/apps/ledger-live-desktop/tests/enum/AppInfos.ts b/apps/ledger-live-desktop/tests/enum/AppInfos.ts index 161ea689268a..9315fb7591fa 100644 --- a/apps/ledger-live-desktop/tests/enum/AppInfos.ts +++ b/apps/ledger-live-desktop/tests/enum/AppInfos.ts @@ -7,6 +7,7 @@ export class AppInfos { public readonly receivePattern?: DeviceLabels[], public readonly delegatePattern?: DeviceLabels[], ) {} + static readonly BITCOIN = new AppInfos( "Bitcoin", [ @@ -18,6 +19,7 @@ export class AppInfos { ], [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], ); + static readonly BITCOIN_TESTNET = new AppInfos( "Bitcoin Test", [ @@ -29,67 +31,80 @@ export class AppInfos { ], [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], ); + static readonly DOGECOIN = new AppInfos( "Dogecoin", [DeviceLabels.AMOUNT, DeviceLabels.ADDRESS, DeviceLabels.ACCEPT, DeviceLabels.REJECT], [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], ); + static readonly ETHEREUM = new AppInfos( "Ethereum", [DeviceLabels.AMOUNT, DeviceLabels.TO, DeviceLabels.ACCEPT, DeviceLabels.REJECT], [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], ); + static readonly ETHEREUM_HOLESKY = new AppInfos( "Ethereum Holesky", [DeviceLabels.AMOUNT, DeviceLabels.TO, DeviceLabels.ACCEPT, DeviceLabels.REJECT], [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], ); + static readonly ETHEREUM_SEPOLIA = new AppInfos( "Ethereum Sepolia", [DeviceLabels.AMOUNT, DeviceLabels.TO, DeviceLabels.ACCEPT, DeviceLabels.REJECT], [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], ); + static readonly ETHEREUM_CLASSIC = new AppInfos( "Ethereum Classic", [DeviceLabels.AMOUNT, DeviceLabels.TO, DeviceLabels.ACCEPT, DeviceLabels.REJECT], [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], ); + static readonly SOLANA = new AppInfos( "Solana", [DeviceLabels.TRANSFER, DeviceLabels.RECIPIENT, DeviceLabels.APPROVE, DeviceLabels.REJECT], [DeviceLabels.PUBKEY, DeviceLabels.APPROVE, DeviceLabels.REJECT], [DeviceLabels.DELEGATE_FROM, DeviceLabels.DEPOSIT, DeviceLabels.APPROVE, DeviceLabels.REJECT], ); + static readonly POLKADOT = new AppInfos( "Polkadot", [DeviceLabels.DEST, DeviceLabels.AMOUNT, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], [DeviceLabels.ADDRESS, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], ); + static readonly TRON = new AppInfos( "Tron", [DeviceLabels.AMOUNT, DeviceLabels.TO, DeviceLabels.SIGN, DeviceLabels.CANCEL], [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.CANCEL], ); + static readonly RIPPLE = new AppInfos( "Ripple", [DeviceLabels.AMOUNT, DeviceLabels.DESTINATION, DeviceLabels.SIGN, DeviceLabels.REJECT], [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], ); + static readonly CARDANO = new AppInfos( "Cardano", [DeviceLabels.SEND, DeviceLabels.SEND_TO_ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], [DeviceLabels.ADDRESS, DeviceLabels.CONFIRM, DeviceLabels.REJECT], ); + static readonly STELLAR = new AppInfos( "Stellar", [DeviceLabels.SEND, DeviceLabels.DESTINATION, DeviceLabels.FINALIZE, DeviceLabels.CANCEL], [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], ); + static readonly BITCOIN_CASH = new AppInfos( "Bitcoin Cash", [DeviceLabels.AMOUNT, DeviceLabels.ADDRESS, DeviceLabels.ACCEPT, DeviceLabels.REJECT], [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], ); + static readonly ALGORAND = new AppInfos( "Algorand", [ @@ -100,6 +115,7 @@ export class AppInfos { ], [DeviceLabels.ADDRESS, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], ); + static readonly COSMOS = new AppInfos( "Cosmos", [DeviceLabels.AMOUNT, DeviceLabels.TO, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], @@ -111,26 +127,31 @@ export class AppInfos { DeviceLabels.CAPS_REJECT, ], ); + static readonly TEZOS = new AppInfos( "Tezos", [DeviceLabels.AMOUNT, DeviceLabels.DESTINATION, DeviceLabels.ACCEPT, DeviceLabels.REJECT], [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], ); + static readonly POLYGON = new AppInfos( "Polygon", [DeviceLabels.AMOUNT, DeviceLabels.ADDRESS, DeviceLabels.ACCEPT, DeviceLabels.REJECT], [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], ); + static readonly BINANCE_SMART_CHAIN = new AppInfos( "Binance Smart Chain", [DeviceLabels.AMOUNT, DeviceLabels.ADDRESS, DeviceLabels.ACCEPT, DeviceLabels.REJECT], [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], ); + static readonly TON = new AppInfos( "Ton", [DeviceLabels.AMOUNT, DeviceLabels.TO, DeviceLabels.APPROVE, DeviceLabels.REJECT], [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], ); + static readonly NEAR = new AppInfos( "Near", [DeviceLabels.AMOUNT, DeviceLabels.DESTINATION, DeviceLabels.ACCEPT, DeviceLabels.REJECT], @@ -146,7 +167,21 @@ export class AppInfos { DeviceLabels.SIGN, ], ); + + static readonly MULTIVERSE_X = new AppInfos( + "Multiverse X", + [DeviceLabels.AMOUNT, DeviceLabels.DESTINATION, DeviceLabels.ACCEPT, DeviceLabels.REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + + static readonly OSMOSIS = new AppInfos( + "Osmosis", + [DeviceLabels.AMOUNT, DeviceLabels.DESTINATION, DeviceLabels.ACCEPT, DeviceLabels.REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly LS = new AppInfos("LedgerSync"); + static readonly EXCHANGE = new AppInfos("Exchange", [ DeviceLabels.SEND, DeviceLabels.GET, diff --git a/apps/ledger-live-desktop/tests/enum/Currency.ts b/apps/ledger-live-desktop/tests/enum/Currency.ts index 2ab79bd865bc..0943f907053c 100644 --- a/apps/ledger-live-desktop/tests/enum/Currency.ts +++ b/apps/ledger-live-desktop/tests/enum/Currency.ts @@ -43,4 +43,6 @@ export class Currency { static readonly POL_DAI = new Currency("(PoS) Dai Stablecoin", "DAI", AppInfos.POLYGON); static readonly POL_UNI = new Currency("Uniswap (PoS)", "UNI", AppInfos.POLYGON); static readonly NEAR = new Currency("NEAR", "NEAR", AppInfos.NEAR); + static readonly MULTIVERS_X = new Currency("Multiverse X", "EGLD", AppInfos.MULTIVERSE_X); + static readonly OSMO = new Currency("Osmosis", "OSMO", AppInfos.OSMOSIS); } diff --git a/apps/ledger-live-desktop/tests/page/account.page.ts b/apps/ledger-live-desktop/tests/page/account.page.ts index 57aa98c45799..0425db07008f 100644 --- a/apps/ledger-live-desktop/tests/page/account.page.ts +++ b/apps/ledger-live-desktop/tests/page/account.page.ts @@ -10,8 +10,7 @@ export class AccountPage extends AppPage { private swapButton = this.page.getByTestId("swap-account-action-button"); private buyButton = this.page.getByTestId("buy-button"); private sellButton = this.page.getByTestId("sell-button"); - private stakeButton = this.page.getByTestId("stake-from-account-action-button"); - private stakeButtonCosmos = this.page.getByTestId("stake-button-cosmos"); + private stakeButton = this.page.getByTestId("stake-button"); readonly stakeBanner = this.page.getByTestId("account-stake-banner"); private stakeBannerButton = this.page.getByTestId("account-stake-banner-button"); private receiveButton = this.page.getByRole("button", { name: "Receive", exact: true }); @@ -93,10 +92,6 @@ export class AccountPage extends AppPage { await operationList.scrollIntoViewIfNeeded(); } - async startCosmosStakingFlow() { - await this.stakeButtonCosmos.click(); - } - /** * Delete account from account itself */ diff --git a/apps/ledger-live-desktop/tests/page/modal/delegate.modal.ts b/apps/ledger-live-desktop/tests/page/modal/delegate.modal.ts index e9eaf9e1ebe9..a887a404985a 100644 --- a/apps/ledger-live-desktop/tests/page/modal/delegate.modal.ts +++ b/apps/ledger-live-desktop/tests/page/modal/delegate.modal.ts @@ -8,6 +8,7 @@ export class delegateModal extends Modal { private rowProvider = this.page.getByTestId("modal-provider-row"); private searchOpenButton = this.page.getByText("Show all"); private searchCloseButton = this.page.getByText("Show less"); + private validatorList = this.page.getByTestId("validator-list"); private inputSearchField = this.page.getByPlaceholder("Search by name or address..."); private stakeProviderContainer = (stakeProviderID: string) => this.page.getByTestId(`stake-provider-container-${stakeProviderID}`); @@ -42,10 +43,14 @@ export class delegateModal extends Modal { await this.inputSearchField.fill(provider); } - @step("Select provider is $0") + @step("check selected provider is different from the previous one") async selectProvider(providerIndex: number) { + const selectedfProvider = await this.titleProvider.nth(providerIndex).textContent(); await this.rowProvider.nth(providerIndex).click(); await this.searchCloseButton.click(); + if (selectedfProvider) { + expect(await this.getTitleProvider()).toContain(selectedfProvider); + } } @step("Click on chosen stake provider $0") @@ -58,7 +63,12 @@ export class delegateModal extends Modal { await this.detailsButton.click(); } - @step("Fill amount $0") + @step("check validator list is visible") + async checkValidatorListIsVisible() { + await expect(this.validatorList).toBeVisible(); + } + + @step("Fill amount") async fillAmount(amount: string) { if (amount == "send max") { await this.toggleMaxAmount(); diff --git a/apps/ledger-live-desktop/tests/specs/accounts/delegate.smoke.spec.ts b/apps/ledger-live-desktop/tests/specs/accounts/delegate.smoke.spec.ts index 520064e79b2a..8cda584b6943 100644 --- a/apps/ledger-live-desktop/tests/specs/accounts/delegate.smoke.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/accounts/delegate.smoke.spec.ts @@ -17,7 +17,7 @@ test.beforeEach(async ({ page }) => { modalPage = new Modal(page); const accountsPage = new AccountsPage(page); await accountsPage.navigateToAccountByName("Cosmos 1"); - await accountPage.startCosmosStakingFlow(); + await accountPage.startStakingFlowFromMainStakeButton(); delegate = new delegateModal(page); }); diff --git a/apps/ledger-live-desktop/tests/specs/speculos/delegate.spec.ts b/apps/ledger-live-desktop/tests/specs/speculos/delegate.spec.ts index c315558cb9e9..c83d2f8cc185 100644 --- a/apps/ledger-live-desktop/tests/specs/speculos/delegate.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/speculos/delegate.spec.ts @@ -4,26 +4,56 @@ import { Delegate } from "../../models/Delegate"; import { addTmsLink } from "tests/utils/allureUtils"; import { getDescription } from "../../utils/customJsonReporter"; -const accounts = [ +const e2eDelegationAccounts = [ { delegate: new Delegate(Account.ATOM_1, "0.001", "Ledger"), - xrayTicket: "B2CQA-2731, B2CQA-2740", + xrayTicket: "B2CQA-2740", }, { delegate: new Delegate(Account.SOL_1, "0.001", "Ledger by Figment"), - xrayTicket: "B2CQA-2730, B2CQA-2742", + xrayTicket: "B2CQA-2742", }, { delegate: new Delegate(Account.NEAR_1, "0.01", "ledgerbyfigment.poolv1.near"), - xrayTicket: "B2CQA-2732, B2CQA-2741", + xrayTicket: "B2CQA-2741", }, ]; -for (const account of accounts) { +const validators = [ + { + delegate: new Delegate(Account.ATOM_2, "0.001", "Ledger"), + xrayTicket: "B2CQA-2731, B2CQA-2763", + }, + { + delegate: new Delegate(Account.SOL_2, "0.001", "Ledger by Figment"), + xrayTicket: "B2CQA-2730, B2CQA-2764", + }, + { + delegate: new Delegate(Account.NEAR_2, "0.01", "ledgerbyfigment.poolv1.near"), + xrayTicket: "B2CQA-2732, B2CQA-2765", + }, + /*{ + delegate: new Delegate(Account.ADA_1, "0.01", "LBF3 - Ledger by Figment 3"), // todo: deactivate due to bug (Clicking 'Show less' does not select the validator that was chosen previously) - LIVE-14500 + xrayTicket: "B2CQA-2766", + },*/ + { + delegate: new Delegate(Account.MULTIVERS_X_1, "1", "Ledger by Figment"), + xrayTicket: "B2CQA-2767", + }, + { + delegate: new Delegate(Account.OSMO_1, "1", "Ledger by Figment"), + xrayTicket: "B2CQA-2768", + }, +]; + +for (const account of e2eDelegationAccounts) { test.describe("Delegate", () => { test.use({ - userdata: "speculos-delegate", + userdata: "skip-onboarding", speculosApp: account.delegate.account.currency.speculosApp, + cliCommands: [ + `liveData --currency ${account.delegate.account.currency.ticker} --index ${account.delegate.account.index} --add`, + ], }); test( @@ -62,3 +92,38 @@ for (const account of accounts) { ); }); } + +for (const validator of validators) { + test.describe("Select a validator", () => { + test.use({ + userdata: "skip-onboarding", + speculosApp: validator.delegate.account.currency.speculosApp, + cliCommands: [ + `liveData --currency ${validator.delegate.account.currency.ticker} --index ${validator.delegate.account.index} --add`, + ], + }); + + test( + `[${validator.delegate.account.currency.name}] - Select validator`, + { + annotation: { + type: "TMS", + description: validator.xrayTicket, + }, + }, + async ({ app }) => { + await addTmsLink(getDescription(test.info().annotations).split(", ")); + await app.layout.goToAccounts(); + await app.accounts.navigateToAccountByName(validator.delegate.account.accountName); + + await app.account.startStakingFlowFromMainStakeButton(); + await app.modal.continue(); + + await app.delegate.verifyProvider(validator.delegate.provider); + await app.delegate.openSearchProviderModal(); + await app.delegate.checkValidatorListIsVisible(); + await app.delegate.selectProvider(1); + }, + ); + }); +} diff --git a/apps/ledger-live-desktop/tests/userdata/speculos-delegate.json b/apps/ledger-live-desktop/tests/userdata/speculos-delegate.json deleted file mode 100644 index 1d36d57c9948..000000000000 --- a/apps/ledger-live-desktop/tests/userdata/speculos-delegate.json +++ /dev/null @@ -1,14779 +0,0 @@ -{ - "data": { - "PLAYWRIGHT_RUN": { - "localStorage": { "acceptedTermsVersion": "2042-01-01" } - }, - "settings": { - "hasCompletedOnboarding": true, - "counterValue": "USD", - "language": "en", - "locale": "en-US", - "theme": null, - "region": null, - "orderAccounts": "balance|desc", - "countervalueFirst": false, - "autoLockTimeout": 10, - "selectedTimeRange": "month", - "currenciesSettings": {}, - "pairExchanges": {}, - "developerMode": false, - "loaded": true, - "shareAnalytics": true, - "sharePersonalizedRecommandations": true, - "hasSeenAnalyticsOptInPrompt": true, - "sentryLogs": true, - "lastUsedVersion": "99.99.99", - "dismissedBanners": [], - "accountsViewMode": "list", - "nftsViewMode": "list", - "collectiblesViewMode": "list", - "showAccountsHelperBanner": true, - "hideEmptyTokenAccounts": false, - "filterTokenOperationsZeroAmount": true, - "sidebarCollapsed": false, - "discreetMode": false, - "preferredDeviceModel": "nanoX", - "hasInstalledApps": true, - "lastSeenDevice": { - "modelId": "nanoX", - "deviceInfo": { - "version": "2.2.4", - "mcuVersion": "2.30", - "seVersion": "2.2.4", - "majMin": "2.2.4", - "providerName": null, - "targetId": 855638020, - "hasDevFirmware": false, - "seTargetId": 855638020, - "isOSU": false, - "isBootloader": false, - "isRecoveryMode": false, - "managerAllowed": false, - "pinValidated": true, - "onboarded": true, - "bootloaderVersion": "1.16", - "hardwareVersion": 1, - "languageId": 0 - }, - "apps": [] - }, - "hasSeenOrdinalsDiscoveryDrawer": false, - "devicesModelList": ["nanoX"], - "lastSeenCustomImage": { "size": 0, "hash": "" }, - "latestFirmware": null, - "blacklistedTokenIds": [], - "hiddenNftCollections": [], - "deepLinkUrl": null, - "firstTimeLend": false, - "showClearCacheBanner": false, - "fullNodeEnabled": false, - "allowDebugApps": false, - "allowReactQueryDebug": false, - "allowExperimentalApps": false, - "enablePlatformDevTools": false, - "catalogProvider": "production", - "enableLearnPageStagingUrl": false, - "swap": { - "hasAcceptedIPSharing": false, - "acceptedProviders": [], - "selectableCurrencies": [] - }, - "overriddenFeatureFlags": {}, - "featureFlagsButtonVisible": false, - "vaultSigner": { - "enabled": false, - "host": "", - "token": "", - "workspace": "" - }, - "supportedCounterValues": [ - { - "value": "AFN", - "label": "Afghan Afghani - AFN", - "currency": { - "type": "FiatCurrency", - "ticker": "AFN", - "name": "Afghan Afghani", - "symbol": "؋", - "units": [ - { - "code": "؋", - "name": "Afghan Afghani", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "ALL", - "label": "Albanian Lek - ALL", - "currency": { - "type": "FiatCurrency", - "ticker": "ALL", - "name": "Albanian Lek", - "symbol": "Lek", - "units": [ - { - "code": "Lek", - "name": "Albanian Lek", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "DZD", - "label": "Algerian Dinar - DZD", - "currency": { - "type": "FiatCurrency", - "ticker": "DZD", - "name": "Algerian Dinar", - "symbol": "د.ج.‏", - "units": [ - { - "code": "د.ج.‏", - "name": "Algerian Dinar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "AOA", - "label": "Angolan Kwanza - AOA", - "currency": { - "type": "FiatCurrency", - "ticker": "AOA", - "name": "Angolan Kwanza", - "symbol": "Kz", - "units": [ - { - "code": "Kz", - "name": "Angolan Kwanza", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "ARS", - "label": "Argentine Peso - ARS", - "currency": { - "type": "FiatCurrency", - "ticker": "ARS", - "name": "Argentine Peso", - "symbol": "$", - "units": [ - { - "code": "$", - "name": "Argentine Peso", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "AMD", - "label": "Armenian Dram - AMD", - "currency": { - "type": "FiatCurrency", - "ticker": "AMD", - "name": "Armenian Dram", - "symbol": "֏", - "units": [ - { - "code": "֏", - "name": "Armenian Dram", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "AWG", - "label": "Aruban Florin - AWG", - "currency": { - "type": "FiatCurrency", - "ticker": "AWG", - "name": "Aruban Florin", - "symbol": "ƒ", - "units": [ - { - "code": "ƒ", - "name": "Aruban Florin", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "AUD", - "label": "Australian Dollar - AUD", - "currency": { - "type": "FiatCurrency", - "ticker": "AUD", - "name": "Australian Dollar", - "symbol": "AU$", - "units": [ - { - "code": "AU$", - "name": "Australian Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "AZN", - "label": "Azerbaijani Manat - AZN", - "currency": { - "type": "FiatCurrency", - "ticker": "AZN", - "name": "Azerbaijani Manat", - "symbol": "₼", - "units": [ - { - "code": "₼", - "name": "Azerbaijani Manat", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "BSD", - "label": "Bahamian Dollar - BSD", - "currency": { - "type": "FiatCurrency", - "ticker": "BSD", - "name": "Bahamian Dollar", - "symbol": "$", - "units": [ - { - "code": "$", - "name": "Bahamian Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "BHD", - "label": "Bahraini Dinar - BHD", - "currency": { - "type": "FiatCurrency", - "ticker": "BHD", - "name": "Bahraini Dinar", - "symbol": "د.ب.", - "units": [ - { - "code": "د.ب.", - "name": "Bahraini Dinar", - "magnitude": 3, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "BDT", - "label": "Bangladeshi Taka - BDT", - "currency": { - "type": "FiatCurrency", - "ticker": "BDT", - "name": "Bangladeshi Taka", - "symbol": "৳", - "units": [ - { - "code": "৳", - "name": "Bangladeshi Taka", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "BBD", - "label": "Barbadian Dollar - BBD", - "currency": { - "type": "FiatCurrency", - "ticker": "BBD", - "name": "Barbadian Dollar", - "symbol": "$", - "units": [ - { - "code": "$", - "name": "Barbadian Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "BYN", - "label": "Belarusian Ruble - BYN", - "currency": { - "type": "FiatCurrency", - "ticker": "BYN", - "name": "Belarusian Ruble", - "symbol": "р.", - "units": [ - { - "code": "р.", - "name": "Belarusian Ruble", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "BZD", - "label": "Belize Dollar - BZD", - "currency": { - "type": "FiatCurrency", - "ticker": "BZD", - "name": "Belize Dollar", - "symbol": "BZ$", - "units": [ - { - "code": "BZ$", - "name": "Belize Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "BMD", - "label": "Bermudian Dollar - BMD", - "currency": { - "type": "FiatCurrency", - "ticker": "BMD", - "name": "Bermudian Dollar", - "symbol": "$", - "units": [ - { - "code": "$", - "name": "Bermudian Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "BTN", - "label": "Bhutanese Ngultrum - BTN", - "currency": { - "type": "FiatCurrency", - "ticker": "BTN", - "name": "Bhutanese Ngultrum", - "symbol": "Nu.", - "units": [ - { - "code": "Nu.", - "name": "Bhutanese Ngultrum", - "magnitude": 1, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "BTC", - "label": "Bitcoin - BTC", - "currency": { - "type": "CryptoCurrency", - "id": "bitcoin", - "coinType": 0, - "name": "Bitcoin", - "managerAppName": "Bitcoin", - "ticker": "BTC", - "scheme": "bitcoin", - "color": "#ffae35", - "symbol": "Ƀ", - "units": [ - { "name": "bitcoin", "code": "BTC", "magnitude": 8 }, - { "name": "mBTC", "code": "mBTC", "magnitude": 5 }, - { "name": "bit", "code": "bit", "magnitude": 2 }, - { "name": "satoshi", "code": "sat", "magnitude": 0 } - ], - "supportsSegwit": true, - "supportsNativeSegwit": true, - "family": "bitcoin", - "blockAvgTime": 900, - "bitcoinLikeInfo": { - "P2PKH": 0, - "P2SH": 5, - "XPUBVersion": 76067358 - }, - "explorerViews": [ - { - "address": "https://blockstream.info/address/$address", - "tx": "https://blockstream.info/tx/$hash" - }, - { - "address": "https://www.blockchain.com/btc/address/$address", - "tx": "https://blockchain.info/btc/tx/$hash" - } - ], - "keywords": ["btc", "bitcoin"], - "explorerId": "btc" - } - }, - { - "value": "BOB", - "label": "Bolivian Boliviano - BOB", - "currency": { - "type": "FiatCurrency", - "ticker": "BOB", - "name": "Bolivian Boliviano", - "symbol": "Bs", - "units": [ - { - "code": "Bs", - "name": "Bolivian Boliviano", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "BAM", - "label": "Bosnia-Herzegovina Convertible Mark - BAM", - "currency": { - "type": "FiatCurrency", - "ticker": "BAM", - "name": "Bosnia-Herzegovina Convertible Mark", - "symbol": "КМ", - "units": [ - { - "code": "КМ", - "name": "Bosnia-Herzegovina Convertible Mark", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "BWP", - "label": "Botswana Pula - BWP", - "currency": { - "type": "FiatCurrency", - "ticker": "BWP", - "name": "Botswana Pula", - "symbol": "P", - "units": [ - { - "code": "P", - "name": "Botswana Pula", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "BRL", - "label": "Brazilian Real - BRL", - "currency": { - "type": "FiatCurrency", - "ticker": "BRL", - "name": "Brazilian Real", - "symbol": "R$", - "units": [ - { - "code": "R$", - "name": "Brazilian Real", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "GBP", - "label": "British Pound - GBP", - "currency": { - "type": "FiatCurrency", - "ticker": "GBP", - "name": "British Pound", - "symbol": "£", - "units": [ - { - "code": "£", - "name": "British Pound", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "BND", - "label": "Brunei Dollar - BND", - "currency": { - "type": "FiatCurrency", - "ticker": "BND", - "name": "Brunei Dollar", - "symbol": "$", - "units": [ - { - "code": "$", - "name": "Brunei Dollar", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "BGN", - "label": "Bulgarian Lev - BGN", - "currency": { - "type": "FiatCurrency", - "ticker": "BGN", - "name": "Bulgarian Lev", - "symbol": "лв.", - "units": [ - { - "code": "лв.", - "name": "Bulgarian Lev", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "BIF", - "label": "Burundian Franc - BIF", - "currency": { - "type": "FiatCurrency", - "ticker": "BIF", - "name": "Burundian Franc", - "symbol": "FBu", - "units": [ - { - "code": "FBu", - "name": "Burundian Franc", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "XPF", - "label": "CFP Franc - XPF", - "currency": { - "type": "FiatCurrency", - "ticker": "XPF", - "name": "CFP Franc", - "symbol": "F", - "units": [ - { - "code": "F", - "name": "CFP Franc", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "KHR", - "label": "Cambodian Riel - KHR", - "currency": { - "type": "FiatCurrency", - "ticker": "KHR", - "name": "Cambodian Riel", - "symbol": "៛", - "units": [ - { - "code": "៛", - "name": "Cambodian Riel", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "CAD", - "label": "Canadian Dollar - CAD", - "currency": { - "type": "FiatCurrency", - "ticker": "CAD", - "name": "Canadian Dollar", - "symbol": "CA$", - "units": [ - { - "code": "CA$", - "name": "Canadian Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "CVE", - "label": "Cape Verdean Escudo - CVE", - "currency": { - "type": "FiatCurrency", - "ticker": "CVE", - "name": "Cape Verdean Escudo", - "symbol": "$", - "units": [ - { - "code": "$", - "name": "Cape Verdean Escudo", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "KYD", - "label": "Cayman Islands Dollar - KYD", - "currency": { - "type": "FiatCurrency", - "ticker": "KYD", - "name": "Cayman Islands Dollar", - "symbol": "$", - "units": [ - { - "code": "$", - "name": "Cayman Islands Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "XAF", - "label": "Central African CFA Franc - XAF", - "currency": { - "type": "FiatCurrency", - "ticker": "XAF", - "name": "Central African CFA Franc", - "symbol": "F", - "units": [ - { - "code": "F", - "name": "Central African CFA Franc", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "CLP", - "label": "Chilean Peso - CLP", - "currency": { - "type": "FiatCurrency", - "ticker": "CLP", - "name": "Chilean Peso", - "symbol": "CLP$", - "units": [ - { - "code": "CLP$", - "name": "Chilean Peso", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "CNY", - "label": "Chinese Yuan Renminbi - CNY", - "currency": { - "type": "FiatCurrency", - "ticker": "CNY", - "name": "Chinese Yuan Renminbi", - "symbol": "¥", - "units": [ - { - "code": "¥", - "name": "Chinese Yuan Renminbi", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "COP", - "label": "Colombian Peso - COP", - "currency": { - "type": "FiatCurrency", - "ticker": "COP", - "name": "Colombian Peso", - "symbol": "$", - "units": [ - { - "code": "$", - "name": "Colombian Peso", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "KMF", - "label": "Comorian Franc - KMF", - "currency": { - "type": "FiatCurrency", - "ticker": "KMF", - "name": "Comorian Franc", - "symbol": "CF", - "units": [ - { - "code": "CF", - "name": "Comorian Franc", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "CDF", - "label": "Congolese Franc - CDF", - "currency": { - "type": "FiatCurrency", - "ticker": "CDF", - "name": "Congolese Franc", - "symbol": "FC", - "units": [ - { - "code": "FC", - "name": "Congolese Franc", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "CRC", - "label": "Costa Rican Colón - CRC", - "currency": { - "type": "FiatCurrency", - "ticker": "CRC", - "name": "Costa Rican Colón", - "symbol": "₡", - "units": [ - { - "code": "₡", - "name": "Costa Rican Colón", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "HRK", - "label": "Croatian Kuna - HRK", - "currency": { - "type": "FiatCurrency", - "ticker": "HRK", - "name": "Croatian Kuna", - "symbol": "kn", - "units": [ - { - "code": "kn", - "name": "Croatian Kuna", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "CUC", - "label": "Cuban Convertible Peso - CUC", - "currency": { - "type": "FiatCurrency", - "ticker": "CUC", - "name": "Cuban Convertible Peso", - "symbol": "CUC", - "units": [ - { - "code": "CUC", - "name": "Cuban Convertible Peso", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "CUP", - "label": "Cuban Peso - CUP", - "currency": { - "type": "FiatCurrency", - "ticker": "CUP", - "name": "Cuban Peso", - "symbol": "$MN", - "units": [ - { - "code": "$MN", - "name": "Cuban Peso", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "CZK", - "label": "Czech Koruna - CZK", - "currency": { - "type": "FiatCurrency", - "ticker": "CZK", - "name": "Czech Koruna", - "symbol": "Kč", - "units": [ - { - "code": "Kč", - "name": "Czech Koruna", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "DKK", - "label": "Danish Krone - DKK", - "currency": { - "type": "FiatCurrency", - "ticker": "DKK", - "name": "Danish Krone", - "symbol": "kr.", - "units": [ - { - "code": "kr.", - "name": "Danish Krone", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "DJF", - "label": "Djiboutian Franc - DJF", - "currency": { - "type": "FiatCurrency", - "ticker": "DJF", - "name": "Djiboutian Franc", - "symbol": "Fdj", - "units": [ - { - "code": "Fdj", - "name": "Djiboutian Franc", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "DOP", - "label": "Dominican Peso - DOP", - "currency": { - "type": "FiatCurrency", - "ticker": "DOP", - "name": "Dominican Peso", - "symbol": "RD$", - "units": [ - { - "code": "RD$", - "name": "Dominican Peso", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "XCD", - "label": "East Caribbean Dollar - XCD", - "currency": { - "type": "FiatCurrency", - "ticker": "XCD", - "name": "East Caribbean Dollar", - "symbol": "$", - "units": [ - { - "code": "$", - "name": "East Caribbean Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "EGP", - "label": "Egyptian Pound - EGP", - "currency": { - "type": "FiatCurrency", - "ticker": "EGP", - "name": "Egyptian Pound", - "symbol": "ج.م.‏", - "units": [ - { - "code": "ج.م.‏", - "name": "Egyptian Pound", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "AED", - "label": "Emirati Dirham - AED", - "currency": { - "type": "FiatCurrency", - "ticker": "AED", - "name": "Emirati Dirham", - "symbol": "د.إ.", - "units": [ - { - "code": "د.إ.", - "name": "Emirati Dirham", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "ERN", - "label": "Eritrean Nakfa - ERN", - "currency": { - "type": "FiatCurrency", - "ticker": "ERN", - "name": "Eritrean Nakfa", - "symbol": "Nfk", - "units": [ - { - "code": "Nfk", - "name": "Eritrean Nakfa", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "ETH", - "label": "Ethereum - ETH", - "currency": { - "type": "CryptoCurrency", - "id": "ethereum", - "coinType": 60, - "name": "Ethereum", - "managerAppName": "Ethereum", - "ticker": "ETH", - "scheme": "ethereum", - "color": "#0ebdcd", - "symbol": "Ξ", - "family": "evm", - "blockAvgTime": 15, - "units": [ - { "name": "ether", "code": "ETH", "magnitude": 18 }, - { "name": "Gwei", "code": "Gwei", "magnitude": 9 }, - { "name": "Mwei", "code": "Mwei", "magnitude": 6 }, - { "name": "Kwei", "code": "Kwei", "magnitude": 3 }, - { "name": "wei", "code": "wei", "magnitude": 0 } - ], - "ethereumLikeInfo": { "chainId": 1 }, - "explorerViews": [ - { - "tx": "https://etherscan.io/tx/$hash", - "address": "https://etherscan.io/address/$address", - "token": "https://etherscan.io/token/$contractAddress?a=$address" - } - ], - "keywords": ["eth", "ethereum"], - "explorerId": "eth" - } - }, - { - "value": "ETB", - "label": "Ethiopian Birr - ETB", - "currency": { - "type": "FiatCurrency", - "ticker": "ETB", - "name": "Ethiopian Birr", - "symbol": "ETB", - "units": [ - { - "code": "ETB", - "name": "Ethiopian Birr", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "EUR", - "label": "Euro - EUR", - "currency": { - "type": "FiatCurrency", - "ticker": "EUR", - "name": "Euro", - "symbol": "€", - "units": [ - { - "code": "€", - "name": "Euro", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "FKP", - "label": "Falkland Islands Pound - FKP", - "currency": { - "type": "FiatCurrency", - "ticker": "FKP", - "name": "Falkland Islands Pound", - "symbol": "£", - "units": [ - { - "code": "£", - "name": "Falkland Islands Pound", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "FJD", - "label": "Fijian Dollar - FJD", - "currency": { - "type": "FiatCurrency", - "ticker": "FJD", - "name": "Fijian Dollar", - "symbol": "$", - "units": [ - { - "code": "$", - "name": "Fijian Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "GMD", - "label": "Gambian Dalasi - GMD", - "currency": { - "type": "FiatCurrency", - "ticker": "GMD", - "name": "Gambian Dalasi", - "symbol": "D", - "units": [ - { - "code": "D", - "name": "Gambian Dalasi", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "GEL", - "label": "Georgian Lari - GEL", - "currency": { - "type": "FiatCurrency", - "ticker": "GEL", - "name": "Georgian Lari", - "symbol": "GEL", - "units": [ - { - "code": "GEL", - "name": "Georgian Lari", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "GHS", - "label": "Ghanaian Cedi - GHS", - "currency": { - "type": "FiatCurrency", - "ticker": "GHS", - "name": "Ghanaian Cedi", - "symbol": "₵", - "units": [ - { - "code": "₵", - "name": "Ghanaian Cedi", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "GIP", - "label": "Gibraltar Pound - GIP", - "currency": { - "type": "FiatCurrency", - "ticker": "GIP", - "name": "Gibraltar Pound", - "symbol": "£", - "units": [ - { - "code": "£", - "name": "Gibraltar Pound", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "GTQ", - "label": "Guatemalan Quetzal - GTQ", - "currency": { - "type": "FiatCurrency", - "ticker": "GTQ", - "name": "Guatemalan Quetzal", - "symbol": "Q", - "units": [ - { - "code": "Q", - "name": "Guatemalan Quetzal", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "GNF", - "label": "Guinean Franc - GNF", - "currency": { - "type": "FiatCurrency", - "ticker": "GNF", - "name": "Guinean Franc", - "symbol": "FG", - "units": [ - { - "code": "FG", - "name": "Guinean Franc", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "GYD", - "label": "Guyanese Dollar - GYD", - "currency": { - "type": "FiatCurrency", - "ticker": "GYD", - "name": "Guyanese Dollar", - "symbol": "$", - "units": [ - { - "code": "$", - "name": "Guyanese Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "HTG", - "label": "Haitian Gourde - HTG", - "currency": { - "type": "FiatCurrency", - "ticker": "HTG", - "name": "Haitian Gourde", - "symbol": "G", - "units": [ - { - "code": "G", - "name": "Haitian Gourde", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "HNL", - "label": "Honduran Lempira - HNL", - "currency": { - "type": "FiatCurrency", - "ticker": "HNL", - "name": "Honduran Lempira", - "symbol": "L.", - "units": [ - { - "code": "L.", - "name": "Honduran Lempira", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "HKD", - "label": "Hong Kong Dollar - HKD", - "currency": { - "type": "FiatCurrency", - "ticker": "HKD", - "name": "Hong Kong Dollar", - "symbol": "HK$", - "units": [ - { - "code": "HK$", - "name": "Hong Kong Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "HUF", - "label": "Hungarian Forint - HUF", - "currency": { - "type": "FiatCurrency", - "ticker": "HUF", - "name": "Hungarian Forint", - "symbol": "Ft", - "units": [ - { - "code": "Ft", - "name": "Hungarian Forint", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "ISK", - "label": "Iceland Krona - ISK", - "currency": { - "type": "FiatCurrency", - "ticker": "ISK", - "name": "Iceland Krona", - "symbol": "kr.", - "units": [ - { - "code": "kr.", - "name": "Iceland Krona", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "INR", - "label": "Indian Rupee - INR", - "currency": { - "type": "FiatCurrency", - "ticker": "INR", - "name": "Indian Rupee", - "symbol": "₹", - "units": [ - { - "code": "₹", - "name": "Indian Rupee", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "IDR", - "label": "Indonesian Rupiah - IDR", - "currency": { - "type": "FiatCurrency", - "ticker": "IDR", - "name": "Indonesian Rupiah", - "symbol": "Rp", - "units": [ - { - "code": "Rp", - "name": "Indonesian Rupiah", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "IRR", - "label": "Iranian Rial - IRR", - "currency": { - "type": "FiatCurrency", - "ticker": "IRR", - "name": "Iranian Rial", - "symbol": "﷼", - "units": [ - { - "code": "﷼", - "name": "Iranian Rial", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "IQD", - "label": "Iraqi Dinar - IQD", - "currency": { - "type": "FiatCurrency", - "ticker": "IQD", - "name": "Iraqi Dinar", - "symbol": "د.ع.‏", - "units": [ - { - "code": "د.ع.‏", - "name": "Iraqi Dinar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "ILS", - "label": "Israeli Shekel - ILS", - "currency": { - "type": "FiatCurrency", - "ticker": "ILS", - "name": "Israeli Shekel", - "symbol": "₪", - "units": [ - { - "code": "₪", - "name": "Israeli Shekel", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "JMD", - "label": "Jamaican Dollar - JMD", - "currency": { - "type": "FiatCurrency", - "ticker": "JMD", - "name": "Jamaican Dollar", - "symbol": "J$", - "units": [ - { - "code": "J$", - "name": "Jamaican Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "JPY", - "label": "Japanese Yen - JPY", - "currency": { - "type": "FiatCurrency", - "ticker": "JPY", - "name": "Japanese Yen", - "symbol": "¥", - "units": [ - { - "code": "¥", - "name": "Japanese Yen", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "JOD", - "label": "Jordanian Dinar - JOD", - "currency": { - "type": "FiatCurrency", - "ticker": "JOD", - "name": "Jordanian Dinar", - "symbol": "د.ا.‏", - "units": [ - { - "code": "د.ا.‏", - "name": "Jordanian Dinar", - "magnitude": 3, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "KZT", - "label": "Kazakhstani Tenge - KZT", - "currency": { - "type": "FiatCurrency", - "ticker": "KZT", - "name": "Kazakhstani Tenge", - "symbol": "₸", - "units": [ - { - "code": "₸", - "name": "Kazakhstani Tenge", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "KES", - "label": "Kenyan Shilling - KES", - "currency": { - "type": "FiatCurrency", - "ticker": "KES", - "name": "Kenyan Shilling", - "symbol": "KSh", - "units": [ - { - "code": "KSh", - "name": "Kenyan Shilling", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "KWD", - "label": "Kuwaiti Dinar - KWD", - "currency": { - "type": "FiatCurrency", - "ticker": "KWD", - "name": "Kuwaiti Dinar", - "symbol": "د.ك.‏", - "units": [ - { - "code": "د.ك.‏", - "name": "Kuwaiti Dinar", - "magnitude": 3, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "KGS", - "label": "Kyrgyzstani Som - KGS", - "currency": { - "type": "FiatCurrency", - "ticker": "KGS", - "name": "Kyrgyzstani Som", - "symbol": "сом", - "units": [ - { - "code": "сом", - "name": "Kyrgyzstani Som", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "LAK", - "label": "Lao Kip - LAK", - "currency": { - "type": "FiatCurrency", - "ticker": "LAK", - "name": "Lao Kip", - "symbol": "₭", - "units": [ - { - "code": "₭", - "name": "Lao Kip", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "LBP", - "label": "Lebanese Pound - LBP", - "currency": { - "type": "FiatCurrency", - "ticker": "LBP", - "name": "Lebanese Pound", - "symbol": "ل.ل.‏", - "units": [ - { - "code": "ل.ل.‏", - "name": "Lebanese Pound", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "LSL", - "label": "Lesotho Loti - LSL", - "currency": { - "type": "FiatCurrency", - "ticker": "LSL", - "name": "Lesotho Loti", - "symbol": "M", - "units": [ - { - "code": "M", - "name": "Lesotho Loti", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "LRD", - "label": "Liberian Dollar - LRD", - "currency": { - "type": "FiatCurrency", - "ticker": "LRD", - "name": "Liberian Dollar", - "symbol": "$", - "units": [ - { - "code": "$", - "name": "Liberian Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "LYD", - "label": "Libyan Dinar - LYD", - "currency": { - "type": "FiatCurrency", - "ticker": "LYD", - "name": "Libyan Dinar", - "symbol": "د.ل.‏", - "units": [ - { - "code": "د.ل.‏", - "name": "Libyan Dinar", - "magnitude": 3, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "MOP", - "label": "Macanese Pataca - MOP", - "currency": { - "type": "FiatCurrency", - "ticker": "MOP", - "name": "Macanese Pataca", - "symbol": "MOP$", - "units": [ - { - "code": "MOP$", - "name": "Macanese Pataca", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "MKD", - "label": "Macedonian Denar - MKD", - "currency": { - "type": "FiatCurrency", - "ticker": "MKD", - "name": "Macedonian Denar", - "symbol": "ден.", - "units": [ - { - "code": "ден.", - "name": "Macedonian Denar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "MGA", - "label": "Malagasy Ariary - MGA", - "currency": { - "type": "FiatCurrency", - "ticker": "MGA", - "name": "Malagasy Ariary", - "symbol": "Ar", - "units": [ - { - "code": "Ar", - "name": "Malagasy Ariary", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "MWK", - "label": "Malawian Kwacha - MWK", - "currency": { - "type": "FiatCurrency", - "ticker": "MWK", - "name": "Malawian Kwacha", - "symbol": "MK", - "units": [ - { - "code": "MK", - "name": "Malawian Kwacha", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "MYR", - "label": "Malaysian Ringgit - MYR", - "currency": { - "type": "FiatCurrency", - "ticker": "MYR", - "name": "Malaysian Ringgit", - "symbol": "RM", - "units": [ - { - "code": "RM", - "name": "Malaysian Ringgit", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "MVR", - "label": "Maldivian Rufiyaa - MVR", - "currency": { - "type": "FiatCurrency", - "ticker": "MVR", - "name": "Maldivian Rufiyaa", - "symbol": "MVR", - "units": [ - { - "code": "MVR", - "name": "Maldivian Rufiyaa", - "magnitude": 1, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "MUR", - "label": "Mauritian Rupee - MUR", - "currency": { - "type": "FiatCurrency", - "ticker": "MUR", - "name": "Mauritian Rupee", - "symbol": "₨", - "units": [ - { - "code": "₨", - "name": "Mauritian Rupee", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "MXN", - "label": "Mexican Peso - MXN", - "currency": { - "type": "FiatCurrency", - "ticker": "MXN", - "name": "Mexican Peso", - "symbol": "Mex$", - "units": [ - { - "code": "Mex$", - "name": "Mexican Peso", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "MDL", - "label": "Moldovan Leu - MDL", - "currency": { - "type": "FiatCurrency", - "ticker": "MDL", - "name": "Moldovan Leu", - "symbol": "lei", - "units": [ - { - "code": "lei", - "name": "Moldovan Leu", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "MNT", - "label": "Mongolian Tugrik - MNT", - "currency": { - "type": "FiatCurrency", - "ticker": "MNT", - "name": "Mongolian Tugrik", - "symbol": "₮", - "units": [ - { - "code": "₮", - "name": "Mongolian Tugrik", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "MAD", - "label": "Moroccan Dirham - MAD", - "currency": { - "type": "FiatCurrency", - "ticker": "MAD", - "name": "Moroccan Dirham", - "symbol": "د.م.‏", - "units": [ - { - "code": "د.م.‏", - "name": "Moroccan Dirham", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "MZN", - "label": "Mozambican Metical - MZN", - "currency": { - "type": "FiatCurrency", - "ticker": "MZN", - "name": "Mozambican Metical", - "symbol": "MT", - "units": [ - { - "code": "MT", - "name": "Mozambican Metical", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "MMK", - "label": "Myanmar Kyat - MMK", - "currency": { - "type": "FiatCurrency", - "ticker": "MMK", - "name": "Myanmar Kyat", - "symbol": "K", - "units": [ - { - "code": "K", - "name": "Myanmar Kyat", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "NAD", - "label": "Namibian Dollar - NAD", - "currency": { - "type": "FiatCurrency", - "ticker": "NAD", - "name": "Namibian Dollar", - "symbol": "$", - "units": [ - { - "code": "$", - "name": "Namibian Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "NPR", - "label": "Nepalese Rupee - NPR", - "currency": { - "type": "FiatCurrency", - "ticker": "NPR", - "name": "Nepalese Rupee", - "symbol": "₨", - "units": [ - { - "code": "₨", - "name": "Nepalese Rupee", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "ANG", - "label": "Netherlands Antillean Guilder - ANG", - "currency": { - "type": "FiatCurrency", - "ticker": "ANG", - "name": "Netherlands Antillean Guilder", - "symbol": "ƒ", - "units": [ - { - "code": "ƒ", - "name": "Netherlands Antillean Guilder", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "TWD", - "label": "New Taiwan Dollar - TWD", - "currency": { - "type": "FiatCurrency", - "ticker": "TWD", - "name": "New Taiwan Dollar", - "symbol": "NT$", - "units": [ - { - "code": "NT$", - "name": "New Taiwan Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "NZD", - "label": "New Zealand Dollar - NZD", - "currency": { - "type": "FiatCurrency", - "ticker": "NZD", - "name": "New Zealand Dollar", - "symbol": "NZ$", - "units": [ - { - "code": "NZ$", - "name": "New Zealand Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "NIO", - "label": "Nicaraguan Córdoba - NIO", - "currency": { - "type": "FiatCurrency", - "ticker": "NIO", - "name": "Nicaraguan Córdoba", - "symbol": "C$", - "units": [ - { - "code": "C$", - "name": "Nicaraguan Córdoba", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "NGN", - "label": "Nigerian Naira - NGN", - "currency": { - "type": "FiatCurrency", - "ticker": "NGN", - "name": "Nigerian Naira", - "symbol": "₦", - "units": [ - { - "code": "₦", - "name": "Nigerian Naira", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "KPW", - "label": "North Korean Won - KPW", - "currency": { - "type": "FiatCurrency", - "ticker": "KPW", - "name": "North Korean Won", - "symbol": "₩", - "units": [ - { - "code": "₩", - "name": "North Korean Won", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "NOK", - "label": "Norwegian Krone - NOK", - "currency": { - "type": "FiatCurrency", - "ticker": "NOK", - "name": "Norwegian Krone", - "symbol": "kr", - "units": [ - { - "code": "kr", - "name": "Norwegian Krone", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "OMR", - "label": "Omani Rial - OMR", - "currency": { - "type": "FiatCurrency", - "ticker": "OMR", - "name": "Omani Rial", - "symbol": "﷼", - "units": [ - { - "code": "﷼", - "name": "Omani Rial", - "magnitude": 3, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "PKR", - "label": "Pakistani Rupee - PKR", - "currency": { - "type": "FiatCurrency", - "ticker": "PKR", - "name": "Pakistani Rupee", - "symbol": "₨", - "units": [ - { - "code": "₨", - "name": "Pakistani Rupee", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "PAB", - "label": "Panamanian Balboa - PAB", - "currency": { - "type": "FiatCurrency", - "ticker": "PAB", - "name": "Panamanian Balboa", - "symbol": "B/.", - "units": [ - { - "code": "B/.", - "name": "Panamanian Balboa", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "PGK", - "label": "Papua New Guinean Kina - PGK", - "currency": { - "type": "FiatCurrency", - "ticker": "PGK", - "name": "Papua New Guinean Kina", - "symbol": "K", - "units": [ - { - "code": "K", - "name": "Papua New Guinean Kina", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "PYG", - "label": "Paraguayan Guarani - PYG", - "currency": { - "type": "FiatCurrency", - "ticker": "PYG", - "name": "Paraguayan Guarani", - "symbol": "₲", - "units": [ - { - "code": "₲", - "name": "Paraguayan Guarani", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "PEN", - "label": "Peruvian Sol - PEN", - "currency": { - "type": "FiatCurrency", - "ticker": "PEN", - "name": "Peruvian Sol", - "symbol": "S/.", - "units": [ - { - "code": "S/.", - "name": "Peruvian Sol", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "PHP", - "label": "Philippine Peso - PHP", - "currency": { - "type": "FiatCurrency", - "ticker": "PHP", - "name": "Philippine Peso", - "symbol": "₱", - "units": [ - { - "code": "₱", - "name": "Philippine Peso", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "PLN", - "label": "Polish Złoty - PLN", - "currency": { - "type": "FiatCurrency", - "ticker": "PLN", - "name": "Polish Złoty", - "symbol": "zł", - "units": [ - { - "code": "zł", - "name": "Polish Złoty", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "QAR", - "label": "Qatari Riyal - QAR", - "currency": { - "type": "FiatCurrency", - "ticker": "QAR", - "name": "Qatari Riyal", - "symbol": "﷼", - "units": [ - { - "code": "﷼", - "name": "Qatari Riyal", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "RON", - "label": "Romanian Leu - RON", - "currency": { - "type": "FiatCurrency", - "ticker": "RON", - "name": "Romanian Leu", - "symbol": "L", - "units": [ - { - "code": "L", - "name": "Romanian Leu", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "RUB", - "label": "Russian Rouble - RUB", - "currency": { - "type": "FiatCurrency", - "ticker": "RUB", - "name": "Russian Rouble", - "symbol": "₽", - "units": [ - { - "code": "₽", - "name": "Russian Rouble", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "RWF", - "label": "Rwandan Franc - RWF", - "currency": { - "type": "FiatCurrency", - "ticker": "RWF", - "name": "Rwandan Franc", - "symbol": "RWF", - "units": [ - { - "code": "RWF", - "name": "Rwandan Franc", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "SHP", - "label": "Saint Helena Pound - SHP", - "currency": { - "type": "FiatCurrency", - "ticker": "SHP", - "name": "Saint Helena Pound", - "symbol": "£", - "units": [ - { - "code": "£", - "name": "Saint Helena Pound", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "SVC", - "label": "Salvadoran Colón - SVC", - "currency": { - "type": "FiatCurrency", - "ticker": "SVC", - "name": "Salvadoran Colón", - "symbol": "₡", - "units": [ - { - "code": "₡", - "name": "Salvadoran Colón", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "WST", - "label": "Samoan Tala - WST", - "currency": { - "type": "FiatCurrency", - "ticker": "WST", - "name": "Samoan Tala", - "symbol": "WS$", - "units": [ - { - "code": "WS$", - "name": "Samoan Tala", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "SAR", - "label": "Saudi Riyal - SAR", - "currency": { - "type": "FiatCurrency", - "ticker": "SAR", - "name": "Saudi Riyal", - "symbol": "﷼", - "units": [ - { - "code": "﷼", - "name": "Saudi Riyal", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "RSD", - "label": "Serbian Dinar - RSD", - "currency": { - "type": "FiatCurrency", - "ticker": "RSD", - "name": "Serbian Dinar", - "symbol": "Дин.", - "units": [ - { - "code": "Дин.", - "name": "Serbian Dinar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "SCR", - "label": "Seychellois Rupee - SCR", - "currency": { - "type": "FiatCurrency", - "ticker": "SCR", - "name": "Seychellois Rupee", - "symbol": "₨", - "units": [ - { - "code": "₨", - "name": "Seychellois Rupee", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "SLL", - "label": "Sierra Leonean Leone - SLL", - "currency": { - "type": "FiatCurrency", - "ticker": "SLL", - "name": "Sierra Leonean Leone", - "symbol": "Le", - "units": [ - { - "code": "Le", - "name": "Sierra Leonean Leone", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "SGD", - "label": "Singapore Dollar - SGD", - "currency": { - "type": "FiatCurrency", - "ticker": "SGD", - "name": "Singapore Dollar", - "symbol": "S$", - "units": [ - { - "code": "S$", - "name": "Singapore Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "SBD", - "label": "Solomon Islands Dollar - SBD", - "currency": { - "type": "FiatCurrency", - "ticker": "SBD", - "name": "Solomon Islands Dollar", - "symbol": "$", - "units": [ - { - "code": "$", - "name": "Solomon Islands Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "SOS", - "label": "Somali Shilling - SOS", - "currency": { - "type": "FiatCurrency", - "ticker": "SOS", - "name": "Somali Shilling", - "symbol": "S", - "units": [ - { - "code": "S", - "name": "Somali Shilling", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "ZAR", - "label": "South African Rand - ZAR", - "currency": { - "type": "FiatCurrency", - "ticker": "ZAR", - "name": "South African Rand", - "symbol": "R", - "units": [ - { - "code": "R", - "name": "South African Rand", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "KRW", - "label": "South Korean Won - KRW", - "currency": { - "type": "FiatCurrency", - "ticker": "KRW", - "name": "South Korean Won", - "symbol": "₩", - "units": [ - { - "code": "₩", - "name": "South Korean Won", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "LKR", - "label": "Sri Lankan Rupee - LKR", - "currency": { - "type": "FiatCurrency", - "ticker": "LKR", - "name": "Sri Lankan Rupee", - "symbol": "₨", - "units": [ - { - "code": "₨", - "name": "Sri Lankan Rupee", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "SDG", - "label": "Sudanese Pound - SDG", - "currency": { - "type": "FiatCurrency", - "ticker": "SDG", - "name": "Sudanese Pound", - "symbol": "£‏", - "units": [ - { - "code": "£‏", - "name": "Sudanese Pound", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "SRD", - "label": "Surinamese Dollar - SRD", - "currency": { - "type": "FiatCurrency", - "ticker": "SRD", - "name": "Surinamese Dollar", - "symbol": "$", - "units": [ - { - "code": "$", - "name": "Surinamese Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "SZL", - "label": "Swazi Lilangeni - SZL", - "currency": { - "type": "FiatCurrency", - "ticker": "SZL", - "name": "Swazi Lilangeni", - "symbol": "E", - "units": [ - { - "code": "E", - "name": "Swazi Lilangeni", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "SEK", - "label": "Swedish Krona - SEK", - "currency": { - "type": "FiatCurrency", - "ticker": "SEK", - "name": "Swedish Krona", - "symbol": "kr", - "units": [ - { - "code": "kr", - "name": "Swedish Krona", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "CHF", - "label": "Swiss Franc - CHF", - "currency": { - "type": "FiatCurrency", - "ticker": "CHF", - "name": "Swiss Franc", - "symbol": "CHF", - "units": [ - { - "code": "CHF", - "name": "Swiss Franc", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "SYP", - "label": "Syrian Pound - SYP", - "currency": { - "type": "FiatCurrency", - "ticker": "SYP", - "name": "Syrian Pound", - "symbol": "£", - "units": [ - { - "code": "£", - "name": "Syrian Pound", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "STD", - "label": "São Tomé and Príncipe Dobra - STD", - "currency": { - "type": "FiatCurrency", - "ticker": "STD", - "name": "São Tomé and Príncipe Dobra", - "symbol": "Db", - "units": [ - { - "code": "Db", - "name": "São Tomé and Príncipe Dobra", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "TJS", - "label": "Tajikistani Somoni - TJS", - "currency": { - "type": "FiatCurrency", - "ticker": "TJS", - "name": "Tajikistani Somoni", - "symbol": "TJS", - "units": [ - { - "code": "TJS", - "name": "Tajikistani Somoni", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "TZS", - "label": "Tanzanian Shilling - TZS", - "currency": { - "type": "FiatCurrency", - "ticker": "TZS", - "name": "Tanzanian Shilling", - "symbol": "TSh", - "units": [ - { - "code": "TSh", - "name": "Tanzanian Shilling", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "THB", - "label": "Thai Baht - THB", - "currency": { - "type": "FiatCurrency", - "ticker": "THB", - "name": "Thai Baht", - "symbol": "฿", - "units": [ - { - "code": "฿", - "name": "Thai Baht", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "TOP", - "label": "Tongan Pa'anga - TOP", - "currency": { - "type": "FiatCurrency", - "ticker": "TOP", - "name": "Tongan Pa'anga", - "symbol": "T$", - "units": [ - { - "code": "T$", - "name": "Tongan Pa'anga", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "TTD", - "label": "Trinidad and Tobago Dollar - TTD", - "currency": { - "type": "FiatCurrency", - "ticker": "TTD", - "name": "Trinidad and Tobago Dollar", - "symbol": "TT$", - "units": [ - { - "code": "TT$", - "name": "Trinidad and Tobago Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "TND", - "label": "Tunisian Dinar - TND", - "currency": { - "type": "FiatCurrency", - "ticker": "TND", - "name": "Tunisian Dinar", - "symbol": "د.ت.‏", - "units": [ - { - "code": "د.ت.‏", - "name": "Tunisian Dinar", - "magnitude": 3, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "TRY", - "label": "Turkish Lira - TRY", - "currency": { - "type": "FiatCurrency", - "ticker": "TRY", - "name": "Turkish Lira", - "symbol": "₺", - "units": [ - { - "code": "₺", - "name": "Turkish Lira", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "TMT", - "label": "Turkmenistani Manat - TMT", - "currency": { - "type": "FiatCurrency", - "ticker": "TMT", - "name": "Turkmenistani Manat", - "symbol": "m", - "units": [ - { - "code": "m", - "name": "Turkmenistani Manat", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "USD", - "label": "US Dollar - USD", - "currency": { - "type": "FiatCurrency", - "ticker": "USD", - "name": "US Dollar", - "symbol": "$", - "units": [ - { - "code": "$", - "name": "US Dollar", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "UGX", - "label": "Ugandan Shilling - UGX", - "currency": { - "type": "FiatCurrency", - "ticker": "UGX", - "name": "Ugandan Shilling", - "symbol": "USh", - "units": [ - { - "code": "USh", - "name": "Ugandan Shilling", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "UAH", - "label": "Ukrainian Hryvnia - UAH", - "currency": { - "type": "FiatCurrency", - "ticker": "UAH", - "name": "Ukrainian Hryvnia", - "symbol": "₴", - "units": [ - { - "code": "₴", - "name": "Ukrainian Hryvnia", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "UYU", - "label": "Uruguayan Peso - UYU", - "currency": { - "type": "FiatCurrency", - "ticker": "UYU", - "name": "Uruguayan Peso", - "symbol": "$U", - "units": [ - { - "code": "$U", - "name": "Uruguayan Peso", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "UZS", - "label": "Uzbekistani Som - UZS", - "currency": { - "type": "FiatCurrency", - "ticker": "UZS", - "name": "Uzbekistani Som", - "symbol": "сўм", - "units": [ - { - "code": "сўм", - "name": "Uzbekistani Som", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "VUV", - "label": "Vanuatu Vatu - VUV", - "currency": { - "type": "FiatCurrency", - "ticker": "VUV", - "name": "Vanuatu Vatu", - "symbol": "VT", - "units": [ - { - "code": "VT", - "name": "Vanuatu Vatu", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "VND", - "label": "Vietnamese Dong - VND", - "currency": { - "type": "FiatCurrency", - "ticker": "VND", - "name": "Vietnamese Dong", - "symbol": "₫", - "units": [ - { - "code": "₫", - "name": "Vietnamese Dong", - "magnitude": 0, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "XOF", - "label": "West African CFA Franc - XOF", - "currency": { - "type": "FiatCurrency", - "ticker": "XOF", - "name": "West African CFA Franc", - "symbol": "F", - "units": [ - { - "code": "F", - "name": "West African CFA Franc", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "YER", - "label": "Yemeni Rial - YER", - "currency": { - "type": "FiatCurrency", - "ticker": "YER", - "name": "Yemeni Rial", - "symbol": "﷼", - "units": [ - { - "code": "﷼", - "name": "Yemeni Rial", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - }, - { - "value": "ZMW", - "label": "Zambian Kwacha - ZMW", - "currency": { - "type": "FiatCurrency", - "ticker": "ZMW", - "name": "Zambian Kwacha", - "symbol": "ZK", - "units": [ - { - "code": "ZK", - "name": "Zambian Kwacha", - "magnitude": 2, - "showAllDigits": true, - "prefixCode": true - } - ] - } - } - ], - "dismissedContentCards": {}, - "anonymousBrazeId": "anonymous_id_4", - "starredMarketCoins": [], - "marketIndicator": "western", - "hasAcceptedSwapKYC": false, - "swapAcceptedProviderIds": [], - "swapProviders": [], - "starredAccountIds": [], - "hasPassword": false - }, - "user": { "id": "08cf3393-c5eb-4ea7-92de-0deea22e3971" }, - "accounts": [ - { - "data": { - "id": "js:2:cosmos:cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae:", - "seedIdentifier": "03e16f914a1130deac2f019db2aca7b1a1ebf8ebc298eae302debe345870e1cb0c", - "used": true, - "derivationMode": "", - "index": 0, - "freshAddress": "cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae", - "freshAddressPath": "44'/118'/0'/0/0", - "blockHeight": 22429293, - "creationDate": "2024-05-29T14:29:02.000Z", - "operationsCount": 1, - "operations": [ - { - "id": "js:2:cosmos:cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae:-FBC96D4F849930063DAC2D9660F592817A6FF24811555A761B2BBD392CE9095A-IN", - "hash": "FBC96D4F849930063DAC2D9660F592817A6FF24811555A761B2BBD392CE9095A", - "type": "IN", - "senders": ["cosmos153lf4zntqt33a4v0sm5cytrxyqn78q7kz8j8x5"], - "recipients": ["cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae"], - "accountId": "js:2:cosmos:cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae:", - "blockHash": null, - "blockHeight": 20638604, - "extra": {}, - "date": "2024-05-29T14:29:02.000Z", - "value": "1386398", - "fee": "100000", - "transactionSequenceNumber": 70493, - "hasFailed": false - } - ], - "pendingOperations": [], - "currencyId": "cosmos", - "lastSyncDate": "2024-10-01T15:12:06.822Z", - "balance": "1386398", - "spendableBalance": "1386398", - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398 - ], - "latestDate": 1727794800000 - }, - "DAY": { - "balances": [ - 0, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398 - ], - "latestDate": 1727733600000 - }, - "WEEK": { - "balances": [ - 0, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, - 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398 - ], - "latestDate": 1727560800000 - } - }, - "xpub": "cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae", - "cosmosResources": { - "delegations": [], - "redelegations": [], - "unbondings": [], - "delegatedBalance": "0", - "pendingRewardsBalance": "0", - "unbondingBalance": "0", - "withdrawAddress": "cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae", - "sequence": 0 - }, - "swapHistory": [], - "name": "Cosmos 1", - "starred": false - }, - "version": 1 - }, - { - "data": { - "id": "js:2:near:70b2982a31cfcffc773145d2143392612bb83a22926c912e2ce3ec0634f637e2:nearbip44h", - "seedIdentifier": "ed25519:8avcVZAL5gfecSPfeRXWpJaN78zcLyRo22apEgzbJFQD", - "used": true, - "derivationMode": "nearbip44h", - "index": 0, - "freshAddress": "70b2982a31cfcffc773145d2143392612bb83a22926c912e2ce3ec0634f637e2", - "freshAddressPath": "44'/397'/0'/0'/0'", - "blockHeight": 129322877, - "creationDate": "2024-10-01T13:15:06.460Z", - "operationsCount": 1, - "operations": [ - { - "id": "js:2:near:70b2982a31cfcffc773145d2143392612bb83a22926c912e2ce3ec0634f637e2:nearbip44h-AT6iqeTMbKQ5jfm4tNYBahx7NYjUUnRaPVhWGXXULF1m-IN", - "hash": "AT6iqeTMbKQ5jfm4tNYBahx7NYjUUnRaPVhWGXXULF1m", - "type": "IN", - "senders": ["76abfdf84f6d707de20a1ff9cdd49ae7f7ebf959d94ed018d29cdd6acff22c30"], - "recipients": ["70b2982a31cfcffc773145d2143392612bb83a22926c912e2ce3ec0634f637e2"], - "accountId": "js:2:near:70b2982a31cfcffc773145d2143392612bb83a22926c912e2ce3ec0634f637e2:nearbip44h", - "blockHash": "68nzYWDVBk8bpSpH5JqRYqEPB9eCHTFMvHzZr7nmTX6C", - "blockHeight": 129316644, - "extra": {}, - "date": "2024-10-01T13:15:06.460Z", - "value": "1199909410000000000000000", - "fee": "834989537500000000000", - "hasFailed": false - } - ], - "pendingOperations": [], - "currencyId": "near", - "lastSyncDate": "2024-10-01T15:11:41.055Z", - "balance": "1199909410000000000000000", - "spendableBalance": "1148089410000000000000000", - "balanceHistoryCache": { - "HOUR": { - "balances": [0, 1.19990941e24, 1.19990941e24], - "latestDate": 1727794800000 - }, - "DAY": { "balances": [0], "latestDate": 1727733600000 }, - "WEEK": { "balances": [0], "latestDate": 1727560800000 } - }, - "nearResources": { - "stakedBalance": "0", - "pendingBalance": "0", - "availableBalance": "0", - "storageUsageBalance": "51820000000000000000000", - "stakingPositions": [] - }, - "swapHistory": [], - "name": "NEAR 1", - "starred": false - }, - "version": 1 - }, - { - "data": { - "id": "js:2:solana:HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id:solanaSub", - "seedIdentifier": "FBT68jpHyemZY4QvcC7fKZUvbCRNcLQfBDME7Zqdza2R", - "used": true, - "derivationMode": "solanaSub", - "index": 0, - "freshAddress": "HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id", - "freshAddressPath": "44'/501'/0'", - "blockHeight": 293098277, - "creationDate": "2024-04-18T13:21:57.000Z", - "operationsCount": 1, - "operations": [ - { - "id": "js:2:solana:HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id:solanaSub-45wpnHxgDNqJ5o566oJmQjgizwPu5Vtyn1YTx3jadZFvR6DD1tGPCs35A1K7CwDbZmjayhzt7bToCMViVVtbrkBK-IN", - "hash": "45wpnHxgDNqJ5o566oJmQjgizwPu5Vtyn1YTx3jadZFvR6DD1tGPCs35A1K7CwDbZmjayhzt7bToCMViVVtbrkBK", - "type": "IN", - "senders": ["AH727xqoLjwUjj9xcUCmHfw2MDU6mvfc9mLCdX21pRq3"], - "recipients": ["HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id"], - "accountId": "js:2:solana:HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id:solanaSub", - "blockHash": "GwoMfGmDH4qA6zfi6vSocvZgRWe9G6PmdxaGAZkpVqcs", - "blockHeight": 260858101, - "extra": {}, - "date": "2024-04-18T13:21:57.000Z", - "value": "20000000", - "fee": "0", - "transactionSequenceNumber": 1, - "hasFailed": false - } - ], - "pendingOperations": [], - "currencyId": "solana", - "lastSyncDate": "2024-10-01T15:12:37.149Z", - "balance": "20000000", - "spendableBalance": "19109120", - "balanceHistoryCache": { - "HOUR": { - "balances": [ - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000 - ], - "latestDate": 1727794800000 - }, - "DAY": { - "balances": [ - 0, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000 - ], - "latestDate": 1727733600000 - }, - "WEEK": { - "balances": [ - 0, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, - 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000 - ], - "latestDate": 1727560800000 - } - }, - "solanaResources": { "stakes": "[]", "unstakeReserve": "0" }, - "swapHistory": [], - "name": "Solana 1", - "starred": false - }, - "version": 1 - } - ], - "countervalues": { - "USD algorand": { - "2024-09-12": 0.12769745387382223, - "2024-09-15": 0.12979334247876348, - "2024-09-22": 0.13251823680966385, - "2024-09-05": 0.11831391578100492, - "2024-09-10": 0.1270943454073197, - "2024-09-11": 0.12588662019472435, - "2024-09-20": 0.13288980711333304, - "2024-09-26": 0.1410994294552377, - "2024-09-16": 0.12460174589240681, - "2024-09-08": 0.1247887241688058, - "2024-09-24": 0.13462079176341557, - "2024-09-29": 0.14071105231972253, - "2024-09-17": 0.12480065878569262, - "2024-09-14": 0.13146883716328847, - "2024-09-03": 0.12335370695587886, - "2024-09-25": 0.13986428183752583, - "2024-09-18": 0.12270238503689695, - "2024-09-07": 0.12082536870338309, - "2024-09-06": 0.11700255736146212, - "2024-09-19": 0.1310190977234529, - "2024-09-30": 0.1366921927668462, - "2024-09-01": 0.12138405433959754, - "2024-08-31": 0.1257084462219071, - "2024-09-02": 0.12235561725752837, - "2024-09-23": 0.13402054009579087, - "2024-09-13": 0.1298616420632316, - "2024-10-01": 0.1353278123841076, - "2024-09-04": 0.1189795562110804, - "2024-09-28": 0.14121888820033193, - "2024-09-21": 0.13430783793586493, - "2024-09-09": 0.12618938829071658, - "2024-09-27": 0.14508300498598622, - "2024-09-27T07": 0.14565223361912943, - "2024-09-27T05": 0.14530223585196061, - "2024-09-30T14": 0.13658993785846893, - "2024-09-27T14": 0.14511164685107078, - "2024-09-27T23": 0.14448941915380809, - "2024-09-28T11": 0.1417345277039333, - "2024-09-29T00": 0.1412029855493885, - "2024-09-28T18": 0.14086488977576023, - "2024-09-29T23": 0.1415348951992798, - "2024-10-01T13": 0.13561888894236104, - "2024-09-30T10": 0.13660733685405496, - "2024-09-25T22": 0.13850641882326822, - "2024-09-29T11": 0.1395942777350017, - "2024-09-28T12": 0.1413305770423326, - "2024-09-26T09": 0.13964447179452807, - "2024-09-28T10": 0.14097869814242328, - "2024-09-27T16": 0.146333325634849, - "2024-09-24T17": 0.13519430493971635, - "2024-09-27T15": 0.14647233269032472, - "2024-09-29T12": 0.14054395897732594, - "2024-09-25T04": 0.1394140303980909, - "2024-09-25T21": 0.13934401338331115, - "2024-09-25T18": 0.13865131808097048, - "2024-09-26T04": 0.138469520309766, - "2024-09-26T05": 0.13767505071047242, - "2024-09-30T04": 0.1380218705268574, - "2024-09-27T13": 0.14550506825932466, - "2024-09-28T13": 0.14053915648675244, - "2024-09-25T08": 0.1417008084128874, - "2024-09-30T03": 0.13731119019850457, - "2024-10-01T10": 0.13656927674287472, - "2024-09-25T13": 0.1399136399453405, - "2024-10-01T01": 0.13549721916804963, - "2024-09-26T17": 0.14319971155367772, - "2024-09-25T15": 0.1411909668343046, - "2024-09-29T22": 0.1425262196165657, - "2024-09-29T01": 0.14042591623605494, - "2024-09-30T06": 0.13858478679525796, - "2024-09-27T12": 0.14470101347071596, - "2024-09-25T23": 0.13745631093414454, - "2024-09-30T05": 0.13781787170841872, - "2024-09-28T23": 0.14086978883398002, - "2024-09-30T19": 0.13615397272787036, - "2024-09-25T00": 0.13824924725305351, - "2024-10-01T12": 0.1360512042020013, - "2024-09-29T10": 0.13961540456005997, - "2024-09-24T22": 0.1373422194387755, - "2024-09-26T08": 0.14069621903273344, - "2024-09-29T20": 0.1432498229630015, - "2024-09-25T12": 0.14073077067483927, - "2024-09-25T05": 0.13889838940501656, - "2024-09-27T09": 0.14569622011342134, - "2024-09-26T02": 0.13605487980585104, - "2024-09-28T05": 0.14399651902577268, - "2024-09-29T03": 0.1411773296618839, - "2024-09-26T23": 0.14329692435656047, - "2024-09-29T16": 0.14127017077396842, - "2024-09-26T21": 0.14099691811910944, - "2024-09-26T16": 0.14329892884445794, - "2024-09-28T03": 0.1446125681962265, - "2024-09-29T21": 0.14262707993239299, - "2024-09-30T09": 0.13861214606222658, - "2024-09-24T16": 0.13308010379736634, - "2024-09-30T07": 0.13824627303677386, - "2024-09-28T17": 0.140550909392208, - "2024-09-28T02": 0.14365273364965117, - "2024-09-28T15": 0.14113369988829177, - "2024-09-29T17": 0.14206195240582056, - "2024-09-25T17": 0.13936069464208856, - "2024-09-25T16": 0.14030083277120747, - "2024-10-01T04": 0.1365682795108442, - "2024-10-01T07": 0.1369385526986627, - "2024-09-30T23": 0.13532414336447512, - "2024-09-29T13": 0.13930036467521195, - "2024-09-26T22": 0.14260628331039427, - "2024-10-01T11": 0.13671184055502758, - "2024-09-30T16": 0.13478808740330792, - "2024-09-28T01": 0.14366070277565846, - "2024-09-27T02": 0.1437796522136944, - "2024-09-30T20": 0.1363483814743317, - "2024-09-28T06": 0.1430721969453457, - "2024-09-27T08": 0.14521881894862565, - "2024-10-01T06": 0.13612018534662831, - "2024-09-27T03": 0.14372649348782537, - "2024-09-25T06": 0.1405171846467428, - "2024-10-01T02": 0.13568957492155084, - "2024-09-27T17": 0.1463849464417749, - "2024-09-30T22": 0.1365501698444948, - "2024-09-29T05": 0.14090271090168227, - "2024-09-28T20": 0.14102019763834234, - "2024-09-30T13": 0.1371948342597874, - "2024-09-26T18": 0.14207192719979309, - "2024-09-25T10": 0.13999546605666102, - "2024-09-25T02": 0.1393042718875351, - "2024-09-29T02": 0.14087974293384753, - "2024-09-28T08": 0.14192030496505256, - "2024-09-30T17": 0.1353118911604667, - "2024-09-30T02": 0.13825340521377363, - "2024-09-28T09": 0.14080345046506526, - "2024-09-25T03": 0.13934576803855034, - "2024-09-29T15": 0.14016548153080632, - "2024-09-29T06": 0.14057051227857473, - "2024-09-24T18": 0.1345139015607723, - "2024-09-26T07": 0.14027314335674462, - "2024-09-26T15": 0.14049439302937985, - "2024-09-27T04": 0.14525009800982097, - "2024-09-27T11": 0.14419259640537016, - "2024-09-26T20": 0.14177238814029985, - "2024-09-30T12": 0.1366542439640474, - "2024-09-27T10": 0.1455304436982139, - "2024-09-26T12": 0.1410972100205115, - "2024-09-24T23": 0.13866294391399, - "2024-09-30T00": 0.14119122170997936, - "2024-09-25T14": 0.14029668265370046, - "2024-09-26T14": 0.14105793141021566, - "2024-09-27T01": 0.14415765124909236, - "2024-09-28T04": 0.14431464681096015, - "2024-09-29T08": 0.13896847300510326, - "2024-09-26T01": 0.13525342442372884, - "2024-09-27T19": 0.1455872089088159, - "2024-09-25T01": 0.1385814093189251, - "2024-09-26T00": 0.1373091037581518, - "2024-09-29T18": 0.14186713240890325, - "2024-09-28T19": 0.14067432040881298, - "2024-09-28T22": 0.14057217031359678, - "2024-09-27T18": 0.1448966460756347, - "2024-09-24T21": 0.13655464253289942, - "2024-09-30T08": 0.13895769742972996, - "2024-09-25T11": 0.14117067804331757, - "2024-09-25T20": 0.13874418357347215, - "2024-10-01T09": 0.1365826178835918, - "2024-10-01T03": 0.13509805484549925, - "2024-09-26T11": 0.14145531054467733, - "2024-09-28T07": 0.14235610606955132, - "2024-09-27T22": 0.1432010594539459, - "2024-09-27T21": 0.14372841301347333, - "2024-09-26T03": 0.13746916199342468, - "2024-09-26T13": 0.14089681968612994, - "2024-09-30T18": 0.13615816474290132, - "2024-10-01T08": 0.13648402954240893, - "2024-09-25T19": 0.13944716060688625, - "2024-09-30T21": 0.136751711008718, - "2024-09-28T14": 0.1407206175091208, - "2024-09-27T20": 0.14461432112730793, - "2024-09-26T06": 0.13947117482481128, - "2024-09-26T10": 0.1400063509914695, - "2024-09-29T04": 0.14155402866669717, - "2024-09-28T16": 0.14117973583490678, - "2024-10-01T00": 0.1343505391384439, - "2024-09-24T20": 0.1363271412340783, - "2024-09-26T19": 0.14276970516705254, - "2024-09-24T15": 0.13404720557377467, - "2024-09-27T06": 0.14576755872650288, - "2024-09-29T14": 0.14054968553217095, - "2024-09-29T07": 0.13993649181279424, - "2024-09-28T00": 0.14412163416550802, - "2024-09-30T01": 0.141009108490226, - "2024-09-29T09": 0.1391461202074569, - "2024-09-25T09": 0.1419152996388484, - "2024-09-30T11": 0.13612915715405433, - "2024-09-25T07": 0.139026755382085, - "2024-09-24T19": 0.13499391845721923, - "2024-09-29T19": 0.14240706873139994, - "2024-09-30T15": 0.13615930939188559, - "2024-09-28T21": 0.1406348865795483, - "2024-10-01T05": 0.13696817969792952, - "2024-10-01T14": 0.13126061, - "2024-09-27T00": 0.14366612251659222, - "latest": 0.126199, - "2024-10-01T15": 0.13126061 - }, - "USD astar": { - "2024-09-12": 0.057748087425410946, - "2024-09-15": 0.060557168498482083, - "2024-09-22": 0.0657676166466089, - "2024-09-05": 0.0549938322919228, - "2024-09-10": 0.0550869333688005, - "2024-09-11": 0.05524280847017435, - "2024-09-20": 0.06548462496160685, - "2024-09-26": 0.06898679729872007, - "2024-09-16": 0.05839352405581626, - "2024-09-08": 0.052220722094747374, - "2024-09-24": 0.06728174661386918, - "2024-09-29": 0.07053569871802252, - "2024-09-17": 0.06149486879239829, - "2024-09-14": 0.06032996226388006, - "2024-09-03": 0.06159320882436453, - "2024-09-25": 0.06919515310553706, - "2024-09-18": 0.06117745262508157, - "2024-09-07": 0.052005227982522904, - "2024-09-06": 0.0521343277274596, - "2024-09-19": 0.06414630846378401, - "2024-09-30": 0.06809296140335383, - "2024-09-01": 0.06089119902280125, - "2024-08-31": 0.0626180054500271, - "2024-09-02": 0.06009644985894251, - "2024-09-23": 0.0662067225136915, - "2024-09-13": 0.05847425289477265, - "2024-10-01": 0.06833714620374232, - "2024-09-04": 0.057598301514480796, - "2024-09-28": 0.071346742591307, - "2024-09-21": 0.06730605699999997, - "2024-09-09": 0.05350255418369332, - "2024-09-27": 0.07173007680830479, - "2024-09-27T07": 0.07161072121150505, - "2024-09-27T05": 0.07145301489354741, - "2024-09-30T14": 0.06802997204116788, - "2024-09-27T14": 0.07208340385414433, - "2024-09-27T23": 0.07267823327291453, - "2024-09-28T11": 0.07147199234478102, - "2024-09-29T00": 0.07089672200688517, - "2024-09-28T18": 0.07093123100049475, - "2024-09-29T23": 0.0712230313598777, - "2024-10-01T13": 0.06787017608091273, - "2024-09-30T10": 0.0673234032241672, - "2024-09-25T22": 0.06761681336148459, - "2024-09-29T11": 0.06968254077459651, - "2024-09-28T12": 0.07144527172108324, - "2024-09-26T09": 0.06846466629012361, - "2024-09-28T10": 0.07089713929372564, - "2024-09-27T16": 0.07181288781771908, - "2024-09-24T17": 0.06682055134540274, - "2024-09-27T15": 0.07250978650101529, - "2024-09-29T12": 0.07008847767073664, - "2024-09-25T04": 0.07080006145843655, - "2024-09-25T21": 0.06817378056227988, - "2024-09-25T18": 0.06792042219382952, - "2024-09-26T04": 0.06780296905204518, - "2024-09-26T05": 0.06765683523092308, - "2024-09-30T04": 0.06922843309803076, - "2024-09-27T13": 0.07260340945104801, - "2024-09-28T13": 0.07142325984051894, - "2024-09-25T08": 0.06888020563834632, - "2024-09-30T03": 0.06842131770442257, - "2024-10-01T10": 0.06815569978695325, - "2024-09-25T13": 0.068887522140389, - "2024-10-01T01": 0.06829960844234083, - "2024-09-26T17": 0.07005022740933359, - "2024-09-25T15": 0.07031475456831017, - "2024-09-29T22": 0.07199294238993847, - "2024-09-29T01": 0.07047592539670017, - "2024-09-30T06": 0.0690592127089264, - "2024-09-27T12": 0.07246265167826607, - "2024-09-25T23": 0.06704894824980627, - "2024-09-30T05": 0.06854611635078595, - "2024-09-28T23": 0.07058843256906103, - "2024-09-30T19": 0.06772942510615136, - "2024-10-01T12": 0.06800355828332524, - "2024-09-29T10": 0.06970626333995873, - "2024-09-24T22": 0.06930694726299078, - "2024-09-26T08": 0.06896477519443753, - "2024-09-29T20": 0.07212273215819574, - "2024-09-25T12": 0.06927162861476842, - "2024-09-25T05": 0.0702181989595833, - "2024-09-27T09": 0.07178298137516119, - "2024-09-26T02": 0.06710706642169018, - "2024-09-28T05": 0.0730739587743795, - "2024-09-29T03": 0.07083228080197909, - "2024-09-26T23": 0.07119845039664985, - "2024-09-29T16": 0.07091709996003877, - "2024-09-26T21": 0.070398056490333, - "2024-09-26T16": 0.07003953920179753, - "2024-09-28T03": 0.07332305971838748, - "2024-09-29T21": 0.07163645874222115, - "2024-09-30T09": 0.06876959615380986, - "2024-09-30T07": 0.06861918081400811, - "2024-09-28T17": 0.07076712305922428, - "2024-09-28T02": 0.0726246910794529, - "2024-09-28T15": 0.07153060030955335, - "2024-09-29T17": 0.07127124114850279, - "2024-09-25T17": 0.06887999207084597, - "2024-09-25T16": 0.0694599845302214, - "2024-10-01T04": 0.06875222518021579, - "2024-10-01T07": 0.06839221321147981, - "2024-09-30T23": 0.0673838709000439, - "2024-09-29T13": 0.06931284608649249, - "2024-09-26T22": 0.07088531713003854, - "2024-10-01T11": 0.06825074929692253, - "2024-09-30T16": 0.06698926764243239, - "2024-09-28T01": 0.07298085003956019, - "2024-09-27T02": 0.07078347723998578, - "2024-09-30T20": 0.06796716539638382, - "2024-09-28T06": 0.07181826923145343, - "2024-09-27T08": 0.07165846544448347, - "2024-10-01T06": 0.06832886762854483, - "2024-09-27T03": 0.07054886175991026, - "2024-09-25T06": 0.07040326046828743, - "2024-10-01T02": 0.06819489898718313, - "2024-09-27T17": 0.07253960620925151, - "2024-09-30T22": 0.06810526011731953, - "2024-09-29T05": 0.07057752219712991, - "2024-09-28T20": 0.07095587641700755, - "2024-09-30T13": 0.06823435558575668, - "2024-09-26T18": 0.07021804572235646, - "2024-09-25T10": 0.069219336039481, - "2024-09-25T02": 0.06988360666554037, - "2024-09-29T02": 0.0706056396414019, - "2024-09-28T08": 0.07113765934768077, - "2024-09-30T17": 0.06704762843401553, - "2024-09-30T02": 0.0696502702099395, - "2024-09-28T09": 0.07057606183259761, - "2024-09-25T03": 0.07026517814767468, - "2024-09-29T15": 0.07007921483053359, - "2024-09-29T06": 0.07019159520181338, - "2024-09-24T18": 0.06721806004799778, - "2024-09-26T07": 0.06876607382538613, - "2024-09-26T15": 0.06886503702705049, - "2024-09-27T04": 0.071674482065168, - "2024-09-27T11": 0.07209329810700939, - "2024-09-26T20": 0.07005112180644373, - "2024-09-30T12": 0.06763467629029041, - "2024-09-27T10": 0.07176365561392074, - "2024-09-26T12": 0.06864964413001978, - "2024-09-24T23": 0.06929953871292936, - "2024-09-30T00": 0.07076538073270297, - "2024-09-25T14": 0.06965503273791163, - "2024-09-26T14": 0.06862946936099228, - "2024-09-27T01": 0.07116525967553143, - "2024-09-28T04": 0.07308387461141884, - "2024-09-29T08": 0.06957576113365059, - "2024-09-26T01": 0.06628643181898006, - "2024-09-27T19": 0.07215525094815754, - "2024-09-25T01": 0.06977504737406369, - "2024-09-29T18": 0.0714918839179133, - "2024-09-28T19": 0.07121034683183622, - "2024-09-28T22": 0.07036825050188637, - "2024-09-27T18": 0.0719171422828391, - "2024-09-30T08": 0.06903210944283907, - "2024-09-25T11": 0.0690412836018991, - "2024-09-25T20": 0.06830193467588538, - "2024-10-01T09": 0.06819252338929602, - "2024-10-01T03": 0.06851319759246492, - "2024-09-26T11": 0.06917529868918673, - "2024-09-28T07": 0.07170044083647643, - "2024-09-27T22": 0.07156887962377749, - "2024-09-27T21": 0.0717058197493413, - "2024-09-26T03": 0.06796805722882164, - "2024-09-26T13": 0.06869446877056044, - "2024-09-30T18": 0.06765231715701635, - "2024-10-01T15": 0.06505812168785385, - "2024-10-01T08": 0.06841302754078593, - "2024-09-25T19": 0.06842905614973152, - "2024-09-30T21": 0.06820371513937996, - "2024-09-28T14": 0.07181046696996034, - "2024-09-27T20": 0.0716184685263665, - "2024-09-26T06": 0.06895326646452214, - "2024-09-26T10": 0.06893206524909137, - "2024-09-29T04": 0.07102149236295677, - "2024-09-28T16": 0.07122237422713103, - "2024-10-01T00": 0.06758587672364165, - "2024-09-24T20": 0.0693469983130922, - "2024-09-26T19": 0.07063045594962555, - "2024-09-24T15": 0.0670234564176783, - "2024-09-27T06": 0.07145488277113814, - "2024-09-29T14": 0.070093604290542, - "2024-09-29T07": 0.06961411884761232, - "2024-09-28T00": 0.07270629380002533, - "2024-09-30T01": 0.0710221921495055, - "2024-09-29T09": 0.06969205925318786, - "2024-09-25T09": 0.06940730915083922, - "2024-09-30T11": 0.0673964248630196, - "2024-09-25T07": 0.06885351575337595, - "2024-09-24T19": 0.06863468747255742, - "2024-09-29T19": 0.07153526005724294, - "2024-09-30T15": 0.06788984151989667, - "2024-09-28T21": 0.07069499556318677, - "2024-10-01T05": 0.06894126127741865, - "2024-10-01T14": 0.06641755761923372, - "2024-09-27T00": 0.07160107632820388, - "latest": 0.063161 - }, - "USD avalanche_c_chain": { - "2024-09-12": 23.65865552455898, - "2024-09-15": 24.69359991692819, - "2024-09-22": 27.14062110534532, - "2024-09-05": 21.687173486589703, - "2024-09-10": 23.918979172422603, - "2024-09-11": 23.506616007552317, - "2024-09-20": 27.589226948590436, - "2024-09-26": 28.51583662428935, - "2024-09-16": 23.592763308139197, - "2024-09-08": 22.847662820826436, - "2024-09-24": 27.45518594062745, - "2024-09-29": 28.972932748848677, - "2024-09-17": 23.87024883357543, - "2024-09-14": 25.01716127632684, - "2024-09-03": 22.222194225387373, - "2024-09-25": 27.67747231286055, - "2024-09-18": 23.50263840512364, - "2024-09-07": 21.648013570882924, - "2024-09-06": 21.41443816831492, - "2024-09-19": 26.196060878918026, - "2024-09-30": 28.286376264934233, - "2024-09-01": 22.204894950491983, - "2024-08-31": 23.000826786208304, - "2024-09-02": 22.065119689600735, - "2024-09-23": 27.41482804698564, - "2024-09-13": 24.169582592405586, - "2024-10-01": 28.032583423763132, - "2024-09-04": 21.573432502128764, - "2024-09-28": 29.461426889839068, - "2024-09-21": 27.506425820603344, - "2024-09-09": 23.783850597715546, - "2024-09-27": 29.970499091267495, - "2024-09-27T07": 29.615882987499255, - "2024-09-27T05": 29.409617510139594, - "2024-09-30T14": 28.227364206828504, - "2024-09-27T14": 30.45622001460722, - "2024-09-27T23": 30.412447511076017, - "2024-09-28T11": 29.49624495111517, - "2024-09-29T00": 29.292661416903083, - "2024-09-28T18": 29.42558474516044, - "2024-09-29T23": 29.032952523555725, - "2024-10-01T13": 28.09634441107514, - "2024-09-30T10": 28.08642853494313, - "2024-09-25T22": 27.422742377698274, - "2024-09-29T11": 28.65972176844729, - "2024-09-28T12": 29.351968149361845, - "2024-09-26T09": 27.833933542796114, - "2024-09-28T10": 29.567456300942393, - "2024-09-27T16": 30.328376130171176, - "2024-09-24T17": 27.43100367891596, - "2024-09-27T15": 30.36457543370178, - "2024-09-29T12": 28.579886174374032, - "2024-09-25T04": 27.713908935084465, - "2024-09-25T21": 27.57495826119454, - "2024-09-25T18": 27.42739206563049, - "2024-09-26T04": 27.51892490871036, - "2024-09-26T05": 27.655728551069146, - "2024-09-30T04": 28.452315804449, - "2024-09-27T13": 30.03742277114897, - "2024-09-28T13": 29.26190829147076, - "2024-09-25T08": 27.67501340666378, - "2024-09-30T03": 28.37669005263675, - "2024-10-01T10": 28.716671242861295, - "2024-09-25T13": 27.633531031304475, - "2024-10-01T01": 28.044205548385428, - "2024-09-26T17": 29.107734635085023, - "2024-09-25T15": 27.973075394259563, - "2024-09-29T22": 29.169712846840607, - "2024-09-29T01": 29.16477642231452, - "2024-09-30T06": 28.741913440288805, - "2024-09-27T12": 30.011326144234125, - "2024-09-25T23": 27.280410399305598, - "2024-09-30T05": 28.624742079733018, - "2024-09-28T23": 29.24973342125599, - "2024-09-30T19": 28.041096508656533, - "2024-09-25T00": 27.979211024017395, - "2024-10-01T12": 28.66886482767956, - "2024-09-29T10": 28.62463776298321, - "2024-09-24T22": 27.9396634218943, - "2024-09-26T08": 27.959306486396795, - "2024-09-29T20": 29.149348846360652, - "2024-09-25T12": 27.757005925748153, - "2024-09-25T05": 27.695389111205277, - "2024-09-27T09": 29.95083943775853, - "2024-09-26T02": 27.403322876797873, - "2024-09-28T05": 30.021943905633332, - "2024-09-29T03": 29.14043226601145, - "2024-09-26T23": 29.088578239639965, - "2024-09-29T16": 28.836899968863253, - "2024-09-26T21": 29.04990144849509, - "2024-09-26T16": 29.304792770201836, - "2024-09-28T03": 30.25670770784145, - "2024-09-29T21": 29.264246627175883, - "2024-09-30T09": 28.617930625115317, - "2024-09-24T16": 27.194791469277803, - "2024-09-30T07": 28.73524685803068, - "2024-09-28T17": 29.362165520192455, - "2024-09-28T02": 30.608360610207363, - "2024-09-28T15": 29.494278218678442, - "2024-09-29T17": 29.098111640008543, - "2024-09-25T17": 27.369325080886373, - "2024-09-25T16": 27.616499912915994, - "2024-10-01T04": 28.439337952142164, - "2024-10-01T07": 28.621931049547538, - "2024-09-30T23": 27.713675814364795, - "2024-09-29T13": 28.49031825437649, - "2024-09-26T22": 29.193478186296204, - "2024-10-01T11": 28.761153817374154, - "2024-09-30T16": 28.17821654507336, - "2024-09-28T01": 30.57580498060325, - "2024-09-27T02": 29.050327097775725, - "2024-09-30T20": 28.224947015315596, - "2024-09-28T06": 29.693380522864924, - "2024-09-27T08": 29.811019183527062, - "2024-10-01T06": 28.568708149932885, - "2024-09-27T03": 29.222780684240213, - "2024-09-25T06": 27.538922891152456, - "2024-10-01T02": 27.983579567119282, - "2024-09-27T17": 30.31511870066466, - "2024-09-30T22": 27.929687521081274, - "2024-09-29T05": 29.023927807623547, - "2024-09-28T20": 29.365154697342337, - "2024-09-30T13": 28.505807030849393, - "2024-09-26T18": 28.981034201641297, - "2024-09-25T10": 27.688965370571328, - "2024-09-25T02": 27.930150608526855, - "2024-09-29T02": 29.22119188500167, - "2024-09-28T08": 29.314031007785808, - "2024-09-30T17": 28.17115443954805, - "2024-09-30T02": 28.392255760056184, - "2024-09-28T09": 29.22315568289555, - "2024-09-25T03": 27.808752782945387, - "2024-09-29T15": 28.663897026346383, - "2024-09-29T06": 28.808539535480875, - "2024-09-24T18": 27.380375511438366, - "2024-09-26T07": 27.949354347274273, - "2024-09-26T15": 29.11820781210927, - "2024-09-27T04": 29.40616955185835, - "2024-09-27T11": 29.83513157861975, - "2024-09-26T20": 28.913023479969485, - "2024-09-30T12": 28.39149406075187, - "2024-09-27T10": 29.706852888959887, - "2024-09-26T12": 28.418681865801506, - "2024-09-24T23": 28.253312835077413, - "2024-09-30T00": 28.861947895179732, - "2024-09-25T14": 27.9094522561902, - "2024-09-26T14": 28.841976939683757, - "2024-09-27T01": 29.09798651900513, - "2024-09-28T04": 30.17931913708446, - "2024-09-29T08": 28.62102551428131, - "2024-09-26T01": 27.080987114367822, - "2024-09-27T19": 30.1135993910079, - "2024-09-25T01": 28.014679746853332, - "2024-09-26T00": 27.24823816805724, - "2024-09-29T18": 29.016669240789916, - "2024-09-28T19": 29.403500838692718, - "2024-09-28T22": 29.297736475189566, - "2024-09-27T18": 30.212333401939397, - "2024-09-24T21": 27.58953585945778, - "2024-09-30T08": 28.778814189395437, - "2024-09-25T11": 27.727535203466402, - "2024-09-25T20": 27.54538553076664, - "2024-10-01T09": 28.72531708787216, - "2024-10-01T03": 28.307907319665915, - "2024-09-26T11": 28.11775516707601, - "2024-09-28T07": 29.495022650108563, - "2024-09-27T22": 30.44755970356421, - "2024-09-27T21": 30.33951263189937, - "2024-09-26T03": 27.508012716084867, - "2024-09-26T13": 28.52915977415853, - "2024-09-30T18": 28.06102864697676, - "2024-10-01T08": 28.653437232211825, - "2024-09-25T19": 27.5761388, - "2024-09-30T21": 28.19534581921033, - "2024-09-28T14": 29.559716141852956, - "2024-09-27T20": 30.156019735506927, - "2024-09-26T06": 27.907503495566854, - "2024-09-26T10": 28.07624040303503, - "2024-09-29T04": 29.046196448302275, - "2024-09-28T16": 29.305410510385027, - "2024-10-01T00": 27.818663665833547, - "2024-09-24T20": 27.631953620615864, - "2024-09-26T19": 29.033329173368696, - "2024-09-24T15": 27.145358055132494, - "2024-09-27T06": 29.602939182359084, - "2024-09-29T14": 28.605587080464307, - "2024-09-29T07": 28.70254513530161, - "2024-09-28T00": 30.584462512652387, - "2024-09-30T01": 28.702611624756678, - "2024-09-29T09": 28.77418878268684, - "2024-09-25T09": 27.69042025654902, - "2024-09-30T11": 28.1837304372608, - "2024-09-25T07": 27.483431754364382, - "2024-09-24T19": 27.483322949096472, - "2024-09-29T19": 29.089256440979135, - "2024-09-30T15": 28.188516628092696, - "2024-09-28T21": 29.25962267092469, - "2024-10-01T05": 28.398229155859273, - "2024-10-01T14": 28.02892861000004, - "2024-09-27T00": 29.184873444458958, - "latest": 26.11, - "2024-10-01T15": 27.264554325513853 - }, - "USD axelar": { - "2024-09-12": 0.5086539981519625, - "2024-09-15": 0.5218047627249943, - "2024-09-22": 0.5573009145257556, - "2024-09-05": 0.532526628920984, - "2024-09-10": 0.506904234437284, - "2024-09-11": 0.5046714630453417, - "2024-09-20": 0.5536542574627409, - "2024-09-26": 0.5901610903629155, - "2024-09-16": 0.4949176044345176, - "2024-09-08": 0.501595397995261, - "2024-09-24": 0.5793425474258233, - "2024-09-29": 0.6811206956012288, - "2024-09-17": 0.48033737941730914, - "2024-09-14": 0.5229189427240647, - "2024-09-03": 0.5377258404123799, - "2024-09-25": 0.6122768150449296, - "2024-09-18": 0.5028564305393978, - "2024-09-07": 0.47839922260448503, - "2024-09-06": 0.49660898665408265, - "2024-09-19": 0.55701533138401, - "2024-09-30": 0.6882952336222331, - "2024-09-01": 0.5223806544715401, - "2024-08-31": 0.5428705179282818, - "2024-09-02": 0.5050900509499149, - "2024-09-23": 0.537333934234623, - "2024-09-13": 0.516757743905522, - "2024-10-01": 0.6266852928627993, - "2024-09-04": 0.5184062457311194, - "2024-09-28": 0.7155180554383818, - "2024-09-21": 0.5478166724563234, - "2024-09-09": 0.5109101748299997, - "2024-09-27": 0.7087958960976191, - "2024-09-27T07": 0.7268500046577331, - "2024-09-27T05": 0.7255039255220253, - "2024-09-30T14": 0.6606181188579345, - "2024-09-27T14": 0.7201532862639581, - "2024-09-27T23": 0.7211984699897057, - "2024-09-28T11": 0.7029427357212222, - "2024-09-29T00": 0.682251522622022, - "2024-09-28T18": 0.6860787635653899, - "2024-09-29T23": 0.6956309839621329, - "2024-10-01T13": 0.6368467459711038, - "2024-09-30T10": 0.6642654429454996, - "2024-09-25T22": 0.6015990118693503, - "2024-09-29T11": 0.6742745795237177, - "2024-09-28T12": 0.7040283894071039, - "2024-09-26T09": 0.6253540763072555, - "2024-09-28T10": 0.7035809172349831, - "2024-09-27T16": 0.718872725304425, - "2024-09-24T17": 0.5948293335407918, - "2024-09-27T15": 0.7209433055367456, - "2024-09-29T12": 0.6732735759717143, - "2024-09-25T04": 0.6115804493894051, - "2024-09-25T21": 0.6025933757425251, - "2024-09-25T18": 0.5899937676964079, - "2024-09-26T04": 0.6028170563080566, - "2024-09-26T05": 0.6037539304007145, - "2024-09-30T04": 0.6775704616916897, - "2024-09-27T13": 0.7228093340390795, - "2024-09-28T13": 0.6967473428653105, - "2024-09-25T08": 0.5916323679125246, - "2024-09-30T03": 0.6718601758905675, - "2024-10-01T10": 0.6469218530225309, - "2024-09-25T13": 0.5939225888766728, - "2024-10-01T01": 0.6357032197556193, - "2024-09-26T17": 0.6988674690472634, - "2024-09-25T15": 0.6062724393743476, - "2024-09-29T22": 0.7031575031170124, - "2024-09-29T01": 0.6787969727609129, - "2024-09-30T06": 0.679506002188596, - "2024-09-27T12": 0.7195218671705805, - "2024-09-25T23": 0.5936572199515409, - "2024-09-30T05": 0.673936715106289, - "2024-09-28T23": 0.680843228639873, - "2024-09-30T19": 0.6321725243281949, - "2024-09-25T00": 0.6107451481532129, - "2024-10-01T12": 0.638373676138189, - "2024-09-29T10": 0.6708654136116985, - "2024-09-24T22": 0.6018663379447899, - "2024-09-26T08": 0.6236876674227139, - "2024-09-29T20": 0.698835958139829, - "2024-09-25T12": 0.5973777892153284, - "2024-09-25T05": 0.6008922117136232, - "2024-09-27T09": 0.7265295778387435, - "2024-09-26T02": 0.5856990009247185, - "2024-09-28T05": 0.715408615710463, - "2024-09-29T03": 0.6863668688218352, - "2024-09-26T23": 0.7087184104584214, - "2024-09-29T16": 0.685595497774016, - "2024-09-26T21": 0.6905368165295671, - "2024-09-26T16": 0.6774883233040265, - "2024-09-28T03": 0.7183593684398252, - "2024-09-29T21": 0.6968562291762596, - "2024-09-30T09": 0.6744249823628, - "2024-09-24T16": 0.5860606896492894, - "2024-09-30T07": 0.6766845515854719, - "2024-09-28T17": 0.6862771946701596, - "2024-09-28T02": 0.7207872690343402, - "2024-09-28T15": 0.6966114909094884, - "2024-09-29T17": 0.6907088290892437, - "2024-09-25T17": 0.5992410366617494, - "2024-09-25T16": 0.5986237369228753, - "2024-10-01T04": 0.6461654145841154, - "2024-10-01T07": 0.6487062640549364, - "2024-09-30T23": 0.628639164686778, - "2024-09-29T13": 0.6674397274514087, - "2024-09-26T22": 0.7030047674209873, - "2024-10-01T11": 0.644977676297226, - "2024-09-30T16": 0.6471221333587949, - "2024-09-28T01": 0.7222651816799053, - "2024-09-27T02": 0.7131104500802142, - "2024-09-30T20": 0.633897296602788, - "2024-09-28T06": 0.7131434329876534, - "2024-09-27T08": 0.7198329584698293, - "2024-10-01T06": 0.6411020618399542, - "2024-09-27T03": 0.7106301523323556, - "2024-09-25T06": 0.5969233703450804, - "2024-10-01T02": 0.6378639776395546, - "2024-09-27T17": 0.726166727847094, - "2024-09-30T22": 0.6409350618866714, - "2024-09-29T05": 0.6772281134648697, - "2024-09-28T20": 0.6808125028877243, - "2024-09-30T13": 0.6604121748607098, - "2024-09-26T18": 0.6894708346293443, - "2024-09-25T10": 0.5980064580634491, - "2024-09-25T02": 0.6197801189742692, - "2024-09-29T02": 0.6877332707504641, - "2024-09-28T08": 0.706096610445024, - "2024-09-30T17": 0.6347017147265661, - "2024-09-30T02": 0.6787868119736198, - "2024-09-28T09": 0.7042963355963675, - "2024-09-25T03": 0.6201184358223867, - "2024-09-29T15": 0.6843241909371949, - "2024-09-29T06": 0.6776212822103571, - "2024-09-24T18": 0.5995807090345423, - "2024-09-26T07": 0.619016557274846, - "2024-09-26T15": 0.653561347637262, - "2024-09-27T04": 0.7245766156148004, - "2024-09-27T11": 0.7187978811510167, - "2024-09-26T20": 0.6894059640184176, - "2024-09-30T12": 0.6628028926057737, - "2024-09-27T10": 0.7231174108923198, - "2024-09-26T12": 0.6448357027316594, - "2024-09-24T23": 0.6155424542514101, - "2024-09-30T00": 0.6893447185954278, - "2024-09-25T14": 0.5984396104538823, - "2024-09-26T14": 0.6417554081063552, - "2024-09-27T01": 0.71094787213502, - "2024-09-28T04": 0.7165517566959128, - "2024-09-29T08": 0.6691661476519944, - "2024-09-26T01": 0.5833597248556884, - "2024-09-27T19": 0.7225813331591828, - "2024-09-25T01": 0.6114036833035398, - "2024-09-26T00": 0.5890896915833059, - "2024-09-29T18": 0.7015871779845084, - "2024-09-28T19": 0.6833188934491791, - "2024-09-28T22": 0.6780981717428364, - "2024-09-27T18": 0.7205924648983731, - "2024-09-24T21": 0.6033233123019498, - "2024-09-30T08": 0.6819985954491773, - "2024-09-25T11": 0.5990485951502342, - "2024-09-25T20": 0.5961251122282885, - "2024-10-01T09": 0.6460915123782057, - "2024-10-01T03": 0.636105401175019, - "2024-09-26T11": 0.6428564575485237, - "2024-09-28T07": 0.707657943517798, - "2024-09-27T22": 0.7221295769507448, - "2024-09-27T21": 0.7238970124237464, - "2024-09-26T03": 0.5967255011940035, - "2024-09-26T13": 0.6461894257808717, - "2024-09-30T18": 0.6366125241610258, - "2024-10-01T08": 0.6500321265226363, - "2024-09-25T19": 0.6006834497211875, - "2024-09-30T21": 0.6368025702009505, - "2024-09-28T14": 0.6915617532866317, - "2024-09-27T20": 0.719057021737714, - "2024-09-26T06": 0.6193786574844187, - "2024-09-26T10": 0.6276140932666257, - "2024-09-29T04": 0.6850905149305535, - "2024-09-28T16": 0.6892831708181679, - "2024-10-01T00": 0.6266852928627993, - "2024-09-24T20": 0.6053544198808941, - "2024-09-26T19": 0.697618533376391, - "2024-09-24T15": 0.5873951954740255, - "2024-09-27T06": 0.7296096380760189, - "2024-09-29T14": 0.676178132965442, - "2024-09-29T07": 0.674565684131115, - "2024-09-28T00": 0.7154276545244282, - "2024-09-30T01": 0.6887415773900636, - "2024-09-29T09": 0.6721563543092197, - "2024-09-25T09": 0.592205883187176, - "2024-09-30T11": 0.6596280789882716, - "2024-09-25T07": 0.5916390492534447, - "2024-09-24T19": 0.5962442110413144, - "2024-09-29T19": 0.6990297749283865, - "2024-09-30T15": 0.6588756236413265, - "2024-09-28T21": 0.6758915566740121, - "2024-10-01T05": 0.650495424855272, - "2024-10-01T14": 0.60741772, - "2024-09-27T00": 0.7087958960976191, - "latest": 0.580931, - "2024-10-01T15": 0.60741772 - }, - "USD bitcoin": { - "2024-09-12": 58054.9532143376, - "2024-09-15": 60035.68813889339, - "2024-09-22": 62947.659119826654, - "2024-09-05": 56715.805252079525, - "2024-09-10": 57036.805613882905, - "2024-09-11": 56783.313909562174, - "2024-09-20": 63208.430226949786, - "2024-09-26": 64468.011968053615, - "2024-09-16": 58385.0083693202, - "2024-09-08": 54375.85978894756, - "2024-09-24": 63486.963338555615, - "2024-09-29": 65736.62756479313, - "2024-09-17": 59332.0580534142, - "2024-09-14": 59995.71846102052, - "2024-09-03": 58822.575951818144, - "2024-09-25": 63720.43941210843, - "2024-09-18": 60177.26758989938, - "2024-09-07": 54267.95911685792, - "2024-09-06": 55332.26533545863, - "2024-09-19": 62781.78161391701, - "2024-09-30": 63827.233844997805, - "2024-09-01": 58173.64515163039, - "2024-08-31": 59085.34660734178, - "2024-09-02": 58331.8131434883, - "2024-09-23": 63465.91049470203, - "2024-09-13": 58268.26087773067, - "2024-10-01": 63644.23385007069, - "2024-09-04": 56752.056971238664, - "2024-09-28": 65732.7992695957, - "2024-09-21": 63110.466013436955, - "2024-09-09": 55328.62875566587, - "2024-09-27": 65674.33950003235, - "2024-09-27T07": 65440.039911375774, - "2024-09-27T05": 65246.87902102978, - "2024-09-30T14": 63773.36250669887, - "2024-09-27T14": 66258.57025733982, - "2024-09-27T23": 65768.31061978471, - "2024-09-28T11": 65757.66488282583, - "2024-09-29T00": 65838.74976692071, - "2024-09-28T18": 65756.25086350524, - "2024-09-29T23": 65614.72001730771, - "2024-10-01T13": 62934.23328445526, - "2024-09-30T10": 63533.42767577061, - "2024-09-25T22": 63354.732503274216, - "2024-09-29T11": 65653.52868410564, - "2024-09-28T12": 65618.33695862094, - "2024-09-26T09": 63761.696799907084, - "2024-09-28T10": 65689.91056524999, - "2024-09-27T16": 66135.91968898589, - "2024-09-24T17": 63671.72558535511, - "2024-09-27T15": 66288.02790603956, - "2024-09-29T12": 65712.40905131775, - "2024-09-25T04": 64354.35428634665, - "2024-09-25T21": 63470.62746098174, - "2024-09-25T18": 63218.301747827165, - "2024-09-26T04": 63406.56384170348, - "2024-09-26T05": 63561.00650067186, - "2024-09-30T04": 64453.58472540519, - "2024-09-27T13": 65626.75075941082, - "2024-09-28T13": 65518.05249164448, - "2024-09-25T08": 63852.06466789746, - "2024-09-30T03": 64418.48966146732, - "2024-10-01T10": 63847.603680845066, - "2024-09-25T13": 63536.69342313748, - "2024-10-01T01": 63496.482286658145, - "2024-09-26T17": 65399.26007355518, - "2024-09-25T15": 63811.61425291112, - "2024-09-29T22": 65732.32267868174, - "2024-09-29T01": 65757.80410840937, - "2024-09-30T06": 64550.229569847404, - "2024-09-27T12": 65628.15241145038, - "2024-09-25T23": 63077.434672266674, - "2024-09-30T05": 64481.148109602414, - "2024-09-28T23": 65696.01514742467, - "2024-09-30T19": 63424.42578788863, - "2024-09-25T00": 64231.803756649264, - "2024-10-01T12": 63720.68030836211, - "2024-09-29T10": 65531.832965946254, - "2024-09-24T22": 64360.86637618695, - "2024-09-26T08": 63795.19354530736, - "2024-09-29T20": 65922.97703716255, - "2024-09-25T12": 63745.89092222262, - "2024-09-25T05": 64212.90257792779, - "2024-09-27T09": 65791.10076422778, - "2024-09-26T02": 63195.64361505063, - "2024-09-28T05": 65989.84040727155, - "2024-09-29T03": 65793.78706059972, - "2024-09-26T23": 64999.24669545528, - "2024-09-29T16": 65740.69264665483, - "2024-09-26T21": 64896.55028131225, - "2024-09-26T16": 65408.012295044304, - "2024-09-28T03": 66080.85198353181, - "2024-09-29T21": 65862.77282000179, - "2024-09-30T09": 63888.373946829335, - "2024-09-24T16": 63213.34782492155, - "2024-09-30T07": 64573.85119461457, - "2024-09-28T17": 65631.78111081588, - "2024-09-28T02": 66086.50467003569, - "2024-09-28T15": 65665.25000667179, - "2024-09-29T17": 65881.31938318438, - "2024-09-25T17": 63170.963518528224, - "2024-09-25T16": 63581.137765671905, - "2024-10-01T04": 63750.22621584976, - "2024-10-01T07": 64010.90339801758, - "2024-09-30T23": 63300.13874303024, - "2024-09-29T13": 65759.92910813547, - "2024-09-26T22": 65099.43622422697, - "2024-10-01T11": 63816.809633055505, - "2024-09-30T16": 63571.41287700207, - "2024-09-28T01": 65861.40459603973, - "2024-09-27T02": 64965.49034182927, - "2024-09-30T20": 63664.68689618911, - "2024-09-28T06": 65851.08961694884, - "2024-09-27T08": 65639.99840262676, - "2024-10-01T06": 63921.833559289036, - "2024-09-27T03": 65128.409270530494, - "2024-09-25T06": 63951.77733694219, - "2024-10-01T02": 63307.75119571091, - "2024-09-27T17": 65879.33814227754, - "2024-09-30T22": 63597.726441727566, - "2024-09-29T05": 65620.4463116188, - "2024-09-28T20": 65741.90966377185, - "2024-09-30T13": 64035.36413330783, - "2024-09-26T18": 65147.72774642389, - "2024-09-25T10": 63642.94266260865, - "2024-09-25T02": 64425.03828860875, - "2024-09-29T02": 65875.15297179081, - "2024-09-28T08": 65676.04810300039, - "2024-09-30T17": 63524.63057704098, - "2024-09-30T02": 64506.41221414879, - "2024-09-28T09": 65568.1773318855, - "2024-09-25T03": 64321.596653382265, - "2024-09-29T15": 65721.7769270415, - "2024-09-29T06": 65550.87281526632, - "2024-09-24T18": 63734.6307839693, - "2024-09-26T07": 63791.574001573616, - "2024-09-26T15": 65118.80804483213, - "2024-09-27T04": 65350.49932099358, - "2024-09-27T11": 65461.13502564854, - "2024-09-26T20": 64749.49246789592, - "2024-09-30T12": 63845.01403749023, - "2024-09-27T10": 65575.23327843544, - "2024-09-26T12": 64496.83679449656, - "2024-09-24T23": 64412.266206004606, - "2024-09-30T00": 65405.120785414765, - "2024-09-25T14": 63783.604854286925, - "2024-09-26T14": 64820.2873699862, - "2024-09-27T01": 65188.71359428934, - "2024-09-28T04": 66043.80819775783, - "2024-09-29T08": 65516.46774069712, - "2024-09-26T01": 62883.51563357037, - "2024-09-27T19": 65794.68256015229, - "2024-09-25T01": 64422.7565587852, - "2024-09-26T00": 63130.14645008196, - "2024-09-29T18": 65804.31000219248, - "2024-09-28T19": 65726.48360859607, - "2024-09-28T22": 65717.5242646275, - "2024-09-27T18": 65736.29888881042, - "2024-09-24T21": 64112.029426144734, - "2024-09-30T08": 64307.972018410874, - "2024-09-25T11": 63679.077002524136, - "2024-09-25T20": 63331.038265301475, - "2024-10-01T09": 64005.026732472186, - "2024-10-01T03": 63574.84700458822, - "2024-09-26T11": 64373.48181157148, - "2024-09-28T07": 65835.05588197337, - "2024-09-27T22": 65891.32399064313, - "2024-09-27T21": 65813.0496909198, - "2024-09-26T03": 63376.84441445148, - "2024-09-26T13": 64362.48759042714, - "2024-09-30T18": 63330.04286775284, - "2024-10-01T08": 63947.31295716866, - "2024-09-25T19": 63276.175168701164, - "2024-09-30T21": 63730.861909845866, - "2024-09-28T14": 65718.4536853182, - "2024-09-27T20": 65755.30136837404, - "2024-09-26T06": 63694.44317586195, - "2024-09-26T10": 64281.685400848226, - "2024-09-29T04": 65734.75847180377, - "2024-09-28T16": 65584.56422512578, - "2024-10-01T00": 63301.92092511556, - "2024-09-24T20": 64258.22192419391, - "2024-09-26T19": 65131.008415638134, - "2024-09-24T15": 63177.832323349656, - "2024-09-27T06": 65436.47629560906, - "2024-09-29T14": 65730.61260222697, - "2024-09-29T07": 65515.29236584165, - "2024-09-28T00": 65825.43586875086, - "2024-09-30T01": 65223.85873027511, - "2024-09-29T09": 65630.26390654134, - "2024-09-25T09": 63743.69030299501, - "2024-09-30T11": 63651.67218667459, - "2024-09-25T07": 63802.261122559255, - "2024-09-24T19": 63858.84481637996, - "2024-09-29T19": 65862.11006388067, - "2024-09-30T15": 63752.5526643316, - "2024-09-28T21": 65623.71926107876, - "2024-10-01T05": 63710.37027712537, - "2024-10-01T14": 62997.651429281315, - "2024-09-27T00": 65164.33906928536, - "latest": 61799, - "2024-10-01T15": 62553.5923628753 - }, - "USD bitcoin_cash": { - "2024-09-12": 334.3013084484531, - "2024-09-15": 325.45046516855126, - "2024-09-22": 341.1720635701383, - "2024-09-05": 308.76774857264553, - "2024-09-10": 323.65985478972067, - "2024-09-11": 327.96866178828606, - "2024-09-20": 338.75575636370377, - "2024-09-26": 350.31235061884877, - "2024-09-16": 313.02398755052735, - "2024-09-08": 302.9539387315301, - "2024-09-24": 342.70157584188047, - "2024-09-29": 350.61003027564436, - "2024-09-17": 314.1061798321126, - "2024-09-14": 330.2275794913679, - "2024-09-03": 315.7724611917873, - "2024-09-25": 347.9645775260749, - "2024-09-18": 312.9443628121194, - "2024-09-07": 300.7426246145518, - "2024-09-06": 304.71707245794335, - "2024-09-19": 343.04404739081406, - "2024-09-30": 343.71187160114107, - "2024-09-01": 319.2017630387557, - "2024-08-31": 323.39614101358427, - "2024-09-02": 320.3363330046645, - "2024-09-23": 341.2471537351617, - "2024-09-13": 331.6097213229911, - "2024-10-01": 340.78507495184766, - "2024-09-04": 311.3028000866409, - "2024-09-28": 352.09270387256896, - "2024-09-21": 339.9719380366045, - "2024-09-09": 311.71663486579837, - "2024-09-27": 359.9795418424307, - "2024-09-27T07": 360.565473330717, - "2024-09-27T05": 360.03811208420655, - "2024-09-30T14": 344.5006763455243, - "2024-09-27T14": 358.25753946493944, - "2024-09-27T23": 359.5331541840001, - "2024-09-28T11": 352.3300051626577, - "2024-09-29T00": 352.35522532513534, - "2024-09-28T18": 351.6453289528669, - "2024-09-29T23": 354.0862833841929, - "2024-10-01T13": 342.67172491931046, - "2024-09-30T10": 346.36078689110974, - "2024-09-25T22": 346.85367653566396, - "2024-09-29T11": 347.4255249477956, - "2024-09-28T12": 352.1374227638028, - "2024-09-26T09": 346.76467976474413, - "2024-09-28T10": 350.4913353111896, - "2024-09-27T16": 363.5990687125544, - "2024-09-24T17": 342.36770585104523, - "2024-09-27T15": 362.8308921689936, - "2024-09-29T12": 348.88941037625517, - "2024-09-25T04": 352.9504092987208, - "2024-09-25T21": 346.4375816283185, - "2024-09-25T18": 344.03597987346336, - "2024-09-26T04": 343.86266502182434, - "2024-09-26T05": 343.66465490009733, - "2024-09-30T04": 345.64882988401655, - "2024-09-27T13": 360.06216979460055, - "2024-09-28T13": 350.733304188445, - "2024-09-25T08": 348.8994427243992, - "2024-09-30T03": 347.3070509251502, - "2024-10-01T10": 344.67697241660557, - "2024-09-25T13": 346.1608198668219, - "2024-10-01T01": 339.6658053531363, - "2024-09-26T17": 355.1384764908, - "2024-09-25T15": 349.15109336996807, - "2024-09-29T22": 355.9788060177929, - "2024-09-29T01": 351.58027478177536, - "2024-09-30T06": 346.99740754089015, - "2024-09-27T12": 358.43300411411155, - "2024-09-25T23": 344.37315341751463, - "2024-09-30T05": 344.93696342016034, - "2024-09-28T23": 352.5811869618867, - "2024-09-30T19": 342.49994537311744, - "2024-09-25T00": 347.8327710164349, - "2024-10-01T12": 343.2417351740325, - "2024-09-29T10": 348.7352704305152, - "2024-09-24T22": 346.0019950921061, - "2024-09-26T08": 348.3028707694756, - "2024-09-29T20": 352.2818435383033, - "2024-09-25T12": 348.1401884534312, - "2024-09-25T05": 349.778971255478, - "2024-09-27T09": 360.63855592242925, - "2024-09-26T02": 342.57090049298665, - "2024-09-28T05": 359.6927565544526, - "2024-09-29T03": 352.8034141094278, - "2024-09-26T23": 353.7962831434875, - "2024-09-29T16": 349.43706963606667, - "2024-09-26T21": 349.6961069434508, - "2024-09-26T16": 353.60475767713694, - "2024-09-28T03": 360.93949644718754, - "2024-09-29T21": 354.6764053615391, - "2024-09-30T09": 347.26606991386393, - "2024-09-24T16": 341.63358838071684, - "2024-09-30T07": 346.57519388648365, - "2024-09-28T17": 349.3739429512253, - "2024-09-28T02": 358.40687538912414, - "2024-09-28T15": 352.1201337767517, - "2024-09-29T17": 348.1681202513523, - "2024-09-25T17": 347.0879482577161, - "2024-09-25T16": 347.50146327566864, - "2024-10-01T04": 344.54801445026203, - "2024-10-01T07": 345.6453283639802, - "2024-09-30T23": 340.27936938411096, - "2024-09-29T13": 348.11818027009645, - "2024-09-26T22": 352.80005855355904, - "2024-10-01T11": 343.94782692831865, - "2024-09-30T16": 342.923361069409, - "2024-09-28T01": 359.94297990078405, - "2024-09-27T02": 358.6902943689553, - "2024-09-30T20": 340.7875365458876, - "2024-09-28T06": 357.04669050787624, - "2024-09-27T08": 360.2469329689974, - "2024-10-01T06": 343.88602839584917, - "2024-09-27T03": 356.94975579500726, - "2024-09-25T06": 351.74109767768397, - "2024-10-01T02": 341.6107232055033, - "2024-09-27T17": 362.57961964177366, - "2024-09-30T22": 342.4870152223158, - "2024-09-29T05": 351.43175977639754, - "2024-09-28T20": 352.2123650153095, - "2024-09-30T13": 343.9732851126418, - "2024-09-26T18": 354.1754647485129, - "2024-09-25T10": 348.5887773489403, - "2024-09-25T02": 355.9140223220125, - "2024-09-29T02": 350.94472637088603, - "2024-09-28T08": 352.648842758216, - "2024-09-30T17": 341.9336889373577, - "2024-09-30T02": 351.362093789864, - "2024-09-28T09": 350.1545422238366, - "2024-09-25T03": 354.72258384967455, - "2024-09-29T15": 348.7760890045393, - "2024-09-29T06": 350.75576723205717, - "2024-09-24T18": 346.42729082837434, - "2024-09-26T07": 348.13482944651787, - "2024-09-26T15": 352.2512817500002, - "2024-09-27T04": 360.5347252815822, - "2024-09-27T11": 357.23276377425475, - "2024-09-26T20": 352.7998823851161, - "2024-09-30T12": 343.47197585118073, - "2024-09-27T10": 360.8141755721111, - "2024-09-26T12": 348.9961577515092, - "2024-09-24T23": 346.678194387903, - "2024-09-30T00": 351.7389230318388, - "2024-09-25T14": 346.96779726763475, - "2024-09-26T14": 349.6155464444733, - "2024-09-27T01": 357.6583735652595, - "2024-09-28T04": 358.8000736567846, - "2024-09-29T08": 347.78868818136743, - "2024-09-26T01": 340.2501395733254, - "2024-09-27T19": 359.5925417062617, - "2024-09-25T01": 350.0101783162345, - "2024-09-26T00": 343.317760290798, - "2024-09-29T18": 351.85787802081705, - "2024-09-28T19": 352.44411389048423, - "2024-09-28T22": 351.36644137133885, - "2024-09-27T18": 359.148788524409, - "2024-09-24T21": 346.5794714575552, - "2024-09-30T08": 347.71069681071816, - "2024-09-25T11": 347.5143748306159, - "2024-09-25T20": 344.8100705717132, - "2024-10-01T09": 344.81065625048467, - "2024-10-01T03": 340.4797851242411, - "2024-09-26T11": 351.2118215207363, - "2024-09-28T07": 351.2968167954832, - "2024-09-27T22": 358.74936989630885, - "2024-09-27T21": 359.78442129228574, - "2024-09-26T03": 343.24218577900825, - "2024-09-26T13": 349.6388940792427, - "2024-09-30T18": 342.7963043032667, - "2024-10-01T15": 330.3615306420592, - "2024-10-01T08": 346.522193117962, - "2024-09-25T19": 345.70079323193886, - "2024-09-30T21": 343.3380404647878, - "2024-09-28T14": 350.86362636547756, - "2024-09-27T20": 359.67016372921296, - "2024-09-26T06": 345.98810652965784, - "2024-09-26T10": 347.78212406760747, - "2024-09-29T04": 352.6867427506851, - "2024-09-28T16": 352.23237670495433, - "2024-10-01T00": 334.9424574540387, - "2024-09-24T20": 346.94451624522884, - "2024-09-26T19": 355.0249502914968, - "2024-09-24T15": 340.5107240797459, - "2024-09-27T06": 361.50161984000897, - "2024-09-29T14": 349.2116937574176, - "2024-09-29T07": 348.68138090419177, - "2024-09-28T00": 358.5664575861578, - "2024-09-30T01": 349.6977603117019, - "2024-09-29T09": 347.831526396001, - "2024-09-25T09": 349.42992608747164, - "2024-09-30T11": 341.20495884066275, - "2024-09-25T07": 348.8144666915082, - "2024-09-24T19": 346.7235428585023, - "2024-09-29T19": 351.2211989786106, - "2024-09-30T15": 343.789127514847, - "2024-09-28T21": 352.5895159207677, - "2024-10-01T05": 345.19784397034624, - "2024-10-01T14": 335.54353858284, - "2024-09-27T00": 351.9585559262042, - "latest": 321.85 - }, - "USD bitcoin_gold": { - "2024-09-12": 21.536184090566724, - "2024-09-15": 22.199460769690262, - "2024-09-22": 23.115296307870075, - "2024-09-05": 20.866568472418983, - "2024-09-10": 21.573363541233896, - "2024-09-11": 21.373216279592274, - "2024-09-20": 23.048338381782145, - "2024-09-26": 24.22841991358166, - "2024-09-16": 21.545183593868437, - "2024-09-08": 20.304468682410313, - "2024-09-24": 23.394382611094347, - "2024-09-29": 24.484892994573908, - "2024-09-17": 21.70587436170197, - "2024-09-14": 22.788164943177488, - "2024-09-03": 21.375255397572246, - "2024-09-25": 24.01569147410707, - "2024-09-18": 21.653834798795486, - "2024-09-07": 20.11272569709923, - "2024-09-06": 20.454906346728226, - "2024-09-19": 22.724431866192806, - "2024-09-30": 24.404426186704065, - "2024-09-01": 21.263249842741473, - "2024-08-31": 21.800642859026897, - "2024-09-02": 21.081731968774655, - "2024-09-23": 23.29109107805811, - "2024-09-13": 21.585509986591774, - "2024-10-01": 24.18583090972382, - "2024-09-04": 20.85760260880654, - "2024-09-28": 24.940271630404876, - "2024-09-21": 23.379252465437904, - "2024-09-09": 20.757596691456165, - "2024-09-27": 25.413209664741128, - "2024-09-27T07": 25.167498336361938, - "2024-09-27T05": 25.25329226996409, - "2024-09-30T14": 23.969912193478518, - "2024-09-27T14": 25.56067850891296, - "2024-09-27T23": 25.347887779139292, - "2024-09-28T11": 24.688207612477953, - "2024-09-29T00": 24.5932887618857, - "2024-09-28T18": 24.71554678980922, - "2024-09-29T23": 24.609194554360695, - "2024-10-01T13": 23.665002899891952, - "2024-09-30T10": 23.83882444855227, - "2024-09-25T22": 23.82832273387688, - "2024-09-29T11": 24.481326922415846, - "2024-09-28T12": 24.626496739894346, - "2024-09-26T09": 24.180212998939822, - "2024-09-28T10": 24.64059906567025, - "2024-09-27T16": 25.51680077085736, - "2024-09-24T17": 23.34055846754697, - "2024-09-27T15": 25.555896166272426, - "2024-09-29T12": 24.44549481674483, - "2024-09-25T04": 24.104812469528092, - "2024-09-25T21": 23.817676975472516, - "2024-09-25T18": 23.73781657998599, - "2024-09-26T04": 23.5999743400982, - "2024-09-26T05": 23.653678613692918, - "2024-09-30T04": 24.493706671555362, - "2024-09-27T13": 25.25881677075857, - "2024-09-28T13": 24.54435014729264, - "2024-09-25T08": 23.855133160880236, - "2024-09-30T03": 24.577459276947135, - "2024-10-01T10": 23.989151250577855, - "2024-09-25T13": 23.925571317862186, - "2024-10-01T01": 23.96559039329008, - "2024-09-26T17": 24.752511610765907, - "2024-09-25T15": 23.947433758082106, - "2024-09-29T22": 24.670271109664995, - "2024-09-29T01": 24.584920910258884, - "2024-09-30T06": 24.56923745289957, - "2024-09-27T12": 25.23316800454071, - "2024-09-25T23": 23.615794179564993, - "2024-09-30T05": 24.49255750627855, - "2024-09-28T23": 24.826347793410644, - "2024-09-30T19": 23.701688449007275, - "2024-09-25T00": 23.90599175027404, - "2024-10-01T12": 23.948936612882424, - "2024-09-29T10": 24.326061005175646, - "2024-09-24T22": 23.758328251097122, - "2024-09-26T08": 24.07975735058798, - "2024-09-29T20": 24.67676990791595, - "2024-09-25T12": 24.063539702514802, - "2024-09-25T05": 24.543745322219856, - "2024-09-27T09": 25.423588104405447, - "2024-09-26T02": 23.535548865875285, - "2024-09-28T05": 25.06757522786042, - "2024-09-29T03": 24.677897186277292, - "2024-09-26T23": 24.726535492470102, - "2024-09-29T16": 24.494680485429434, - "2024-09-26T21": 24.549837648813856, - "2024-09-26T16": 24.642160050791457, - "2024-09-28T03": 25.183302213155642, - "2024-09-29T21": 24.75139185667967, - "2024-09-30T09": 24.185673178872644, - "2024-09-24T16": 23.207789215069166, - "2024-09-30T07": 24.514857357216464, - "2024-09-28T17": 24.739777370812526, - "2024-09-28T02": 25.266869581096845, - "2024-09-28T15": 24.764401579464582, - "2024-09-29T17": 24.582220599185977, - "2024-09-25T17": 23.721104573750686, - "2024-09-25T16": 23.853043410038858, - "2024-10-01T04": 24.027458981509252, - "2024-10-01T07": 23.987758086038035, - "2024-09-30T23": 23.635846417440913, - "2024-09-29T13": 24.386525642202216, - "2024-09-26T22": 24.60465430849888, - "2024-10-01T11": 24.036657824429216, - "2024-09-30T16": 23.759132838144982, - "2024-09-28T01": 25.104032771966146, - "2024-09-27T02": 25.36652809330943, - "2024-09-30T20": 23.784021274942013, - "2024-09-28T06": 24.841229066068493, - "2024-09-27T08": 25.28053583278306, - "2024-10-01T06": 24.037824425662123, - "2024-09-27T03": 25.286204812656226, - "2024-09-25T06": 24.102403358596085, - "2024-10-01T02": 23.84643009127709, - "2024-09-27T17": 25.49337747609476, - "2024-09-30T22": 23.787716494394736, - "2024-09-29T05": 24.704010847819198, - "2024-09-28T20": 24.919626523156662, - "2024-09-30T13": 24.14547298423582, - "2024-09-26T18": 24.728423133156678, - "2024-09-25T10": 23.790509600740606, - "2024-09-25T02": 24.001809318982687, - "2024-09-29T02": 24.64482091068136, - "2024-09-28T08": 24.598524380689096, - "2024-09-30T17": 23.708756396709212, - "2024-09-30T02": 24.584688787378898, - "2024-09-28T09": 24.44865556643066, - "2024-09-25T03": 23.950370639725794, - "2024-09-29T15": 24.47336319103234, - "2024-09-29T06": 24.56577486539965, - "2024-09-24T18": 23.39990431744127, - "2024-09-26T07": 24.054421456351484, - "2024-09-26T15": 24.46113838798473, - "2024-09-27T04": 25.392506252692048, - "2024-09-27T11": 25.19420688589533, - "2024-09-26T20": 24.583720239836108, - "2024-09-30T12": 24.095764852836652, - "2024-09-27T10": 25.20844799260951, - "2024-09-26T12": 24.249532412147204, - "2024-09-24T23": 23.937704459083232, - "2024-09-30T00": 25.284604956879825, - "2024-09-25T14": 24.0234482946743, - "2024-09-26T14": 24.326211271588395, - "2024-09-27T01": 25.37120027165281, - "2024-09-28T04": 25.209072003610476, - "2024-09-29T08": 24.323994305171134, - "2024-09-26T01": 23.28547826981663, - "2024-09-27T19": 25.42438740938813, - "2024-09-25T01": 24.00941566943452, - "2024-09-26T00": 23.50550163041355, - "2024-09-29T18": 24.603964479350747, - "2024-09-28T19": 24.794933249704414, - "2024-09-28T22": 24.82242714723112, - "2024-09-27T18": 25.418196955717523, - "2024-09-24T21": 23.602707061271516, - "2024-09-30T08": 24.301127818584927, - "2024-09-25T11": 24.010439090435714, - "2024-09-25T20": 23.863500876021654, - "2024-10-01T09": 24.009555995595743, - "2024-10-01T03": 23.925103632564383, - "2024-09-26T11": 24.319607788281296, - "2024-09-28T07": 24.910493361081866, - "2024-09-27T22": 25.362396323021173, - "2024-09-27T21": 25.38946065370387, - "2024-09-26T03": 23.577892111229893, - "2024-09-26T13": 24.143852573121134, - "2024-09-30T18": 23.656886837159945, - "2024-10-01T08": 24.080666986100095, - "2024-09-25T19": 23.76682383904288, - "2024-09-30T21": 23.806766351449856, - "2024-09-28T14": 24.71016008000725, - "2024-09-27T20": 25.38464688149005, - "2024-09-26T06": 23.916514424270172, - "2024-09-26T10": 24.304276366553864, - "2024-09-29T04": 24.6646958847698, - "2024-09-28T16": 24.782134643738367, - "2024-10-01T00": 24.311525156084066, - "2024-09-24T20": 23.539545202369386, - "2024-09-26T19": 24.66848037731394, - "2024-09-24T15": 23.198982306191432, - "2024-09-27T06": 25.291100834902583, - "2024-09-29T14": 24.442582267572703, - "2024-09-29T07": 24.437307026749185, - "2024-09-28T00": 25.19389531918807, - "2024-09-30T01": 25.210466370913245, - "2024-09-29T09": 24.45204917200814, - "2024-09-25T09": 23.849195062798668, - "2024-09-30T11": 24.039785954022204, - "2024-09-25T07": 23.959061845981168, - "2024-09-24T19": 23.358883384384256, - "2024-09-29T19": 24.60839902062395, - "2024-09-30T15": 23.927754723402433, - "2024-09-28T21": 24.76391437320426, - "2024-10-01T05": 23.977826064505027, - "2024-10-01T14": 23.508671379227728, - "2024-09-27T00": 25.496325264722824, - "latest": 22.79, - "2024-10-01T15": 23.130322361486876 - }, - "USD bittorrent": { - "2024-09-12": 8.752576551227259e-7, - "2024-09-15": 8.697572883863242e-7, - "2024-09-22": 9.173432228024446e-7, - "2024-09-05": 8.055801420398459e-7, - "2024-09-10": 9.277129867716111e-7, - "2024-09-11": 8.953692666645182e-7, - "2024-09-20": 8.962869169353731e-7, - "2024-09-26": 9.176431763059136e-7, - "2024-09-16": 8.572700261878458e-7, - "2024-09-08": 7.882861758260095e-7, - "2024-09-24": 9.09255578063031e-7, - "2024-09-29": 9.98049545011433e-7, - "2024-09-17": 8.383695387851767e-7, - "2024-09-14": 8.959575181151334e-7, - "2024-09-03": 8.262149592994329e-7, - "2024-09-25": 9.16000005757521e-7, - "2024-09-18": 8.726355310394565e-7, - "2024-09-07": 7.757355565510865e-7, - "2024-09-06": 7.967111836454197e-7, - "2024-09-19": 8.758077148691963e-7, - "2024-09-30": 9.834988140672073e-7, - "2024-09-01": 8.540653801014833e-7, - "2024-08-31": 8.691210598504998e-7, - "2024-09-02": 8.197695058422566e-7, - "2024-09-23": 9.125009281308512e-7, - "2024-09-13": 8.732482132963805e-7, - "2024-10-01": 9.43933806022905e-7, - "2024-09-04": 8.033080202674832e-7, - "2024-09-28": 0.0000010235516130600785, - "2024-09-21": 9.014916805678814e-7, - "2024-09-09": 9.040464249410385e-7, - "2024-09-27": 9.69535365883372e-7, - "2024-09-27T07": 0.0000010235499839199927, - "2024-09-27T05": 0.000001023502204128312, - "2024-09-30T14": 9.604796775352865e-7, - "2024-09-27T14": 0.000001052143154779495, - "2024-09-27T23": 0.000001033579203321401, - "2024-09-28T11": 9.950005500309962e-7, - "2024-09-29T00": 9.984816523957651e-7, - "2024-09-28T18": 9.955955429307653e-7, - "2024-09-29T23": 9.875305658434088e-7, - "2024-10-01T13": 9.561970143610578e-7, - "2024-09-30T10": 9.614867848878794e-7, - "2024-09-25T22": 9.184962680401442e-7, - "2024-09-29T11": 9.856853683186794e-7, - "2024-09-28T12": 9.95577665346357e-7, - "2024-09-26T09": 9.355344599491857e-7, - "2024-09-28T10": 9.917163670563516e-7, - "2024-09-27T16": 0.0000010351799429602268, - "2024-09-24T17": 9.069407632855613e-7, - "2024-09-27T15": 0.000001042925532632562, - "2024-09-29T12": 9.857092948252674e-7, - "2024-09-25T04": 9.26275840406518e-7, - "2024-09-25T21": 9.185930863937921e-7, - "2024-09-25T18": 9.18040449712363e-7, - "2024-09-26T04": 9.179218670070275e-7, - "2024-09-26T05": 9.195008524498344e-7, - "2024-09-30T04": 9.652127615352803e-7, - "2024-09-27T13": 0.0000010274166579709868, - "2024-09-28T13": 9.934764758165366e-7, - "2024-09-25T08": 9.15467387384989e-7, - "2024-09-30T03": 9.652860521920123e-7, - "2024-10-01T10": 9.528988383837929e-7, - "2024-09-25T13": 9.213029737592485e-7, - "2024-10-01T01": 9.476416768300739e-7, - "2024-09-26T17": 9.713869681704638e-7, - "2024-09-25T15": 9.244107929562521e-7, - "2024-09-29T22": 9.926895625417526e-7, - "2024-09-29T01": 9.983494136033941e-7, - "2024-09-30T06": 9.671065175660214e-7, - "2024-09-27T12": 0.0000010209037936924991, - "2024-09-25T23": 9.182053995527716e-7, - "2024-09-30T05": 9.638705954584747e-7, - "2024-09-28T23": 9.988688199192272e-7, - "2024-09-30T19": 9.464021212260442e-7, - "2024-09-25T00": 9.1737058727572e-7, - "2024-10-01T12": 9.57464187018683e-7, - "2024-09-29T10": 9.854696825604106e-7, - "2024-09-24T22": 9.1522653155343e-7, - "2024-09-26T08": 9.274046352255065e-7, - "2024-09-29T20": 9.934036177852965e-7, - "2024-09-25T12": 9.249823762101686e-7, - "2024-09-25T05": 9.236249391875416e-7, - "2024-09-27T09": 0.0000010243784944660411, - "2024-09-26T02": 9.177223646483166e-7, - "2024-09-28T05": 0.0000010277008675830325, - "2024-09-29T03": 9.962631589724096e-7, - "2024-09-26T23": 9.748431192281775e-7, - "2024-09-29T16": 9.90227128629122e-7, - "2024-09-26T21": 9.713884337936917e-7, - "2024-09-26T16": 9.569255166575785e-7, - "2024-09-28T03": 0.000001036710687843588, - "2024-09-29T21": 9.920803605615588e-7, - "2024-09-30T09": 9.648577591460804e-7, - "2024-09-24T16": 9.059439958237154e-7, - "2024-09-30T07": 9.656600340402444e-7, - "2024-09-28T17": 9.928329507787987e-7, - "2024-09-28T02": 0.0000010389640746998079, - "2024-09-28T15": 9.96759835718207e-7, - "2024-09-29T17": 9.884885396776846e-7, - "2024-09-25T17": 9.228115847097307e-7, - "2024-09-25T16": 9.207213949707337e-7, - "2024-10-01T04": 9.530035951413765e-7, - "2024-10-01T07": 9.546328005108129e-7, - "2024-09-30T23": 9.534108847017186e-7, - "2024-09-29T13": 9.83644024531058e-7, - "2024-09-26T22": 9.79118218027449e-7, - "2024-10-01T11": 9.549192563793275e-7, - "2024-09-30T16": 9.534472716228049e-7, - "2024-09-28T01": 0.000001030441943783275, - "2024-09-27T02": 0.0000010452354945193713, - "2024-09-30T20": 9.4912218687854e-7, - "2024-09-28T06": 0.0000010180086460121884, - "2024-09-27T08": 0.000001017919840362822, - "2024-10-01T06": 9.53986186261759e-7, - "2024-09-27T03": 0.0000010458669188699453, - "2024-09-25T06": 9.243413664955455e-7, - "2024-10-01T02": 9.471572604873483e-7, - "2024-09-27T17": 0.0000010371371335383874, - "2024-09-30T22": 9.55857688698282e-7, - "2024-09-29T05": 9.956978900995433e-7, - "2024-09-28T20": 9.956373945799814e-7, - "2024-09-30T13": 9.636828670630334e-7, - "2024-09-26T18": 9.6941840800091e-7, - "2024-09-25T10": 9.160147611854458e-7, - "2024-09-25T02": 9.304895381815694e-7, - "2024-09-29T02": 9.924193620023903e-7, - "2024-09-28T08": 9.997292326190562e-7, - "2024-09-30T17": 9.480296370339539e-7, - "2024-09-30T02": 9.682551424259873e-7, - "2024-09-28T09": 9.876442346230036e-7, - "2024-09-25T03": 9.269293860894177e-7, - "2024-09-29T15": 9.855594659900877e-7, - "2024-09-29T06": 9.94634969000933e-7, - "2024-09-24T18": 9.088810703620615e-7, - "2024-09-26T07": 9.316666463977903e-7, - "2024-09-26T15": 9.472644909242642e-7, - "2024-09-27T04": 0.000001034623824757743, - "2024-09-27T11": 0.0000010169956012255503, - "2024-09-26T20": 9.729889424371725e-7, - "2024-09-30T12": 9.58221109620222e-7, - "2024-09-27T10": 0.0000010267348087036956, - "2024-09-26T12": 9.437359223307322e-7, - "2024-09-24T23": 9.181740339723274e-7, - "2024-09-30T00": 9.869150678273853e-7, - "2024-09-25T14": 9.205475074846675e-7, - "2024-09-26T14": 9.464600161172951e-7, - "2024-09-27T01": 0.0000010565584235518215, - "2024-09-28T04": 0.0000010267403098529955, - "2024-09-29T08": 9.81186544295981e-7, - "2024-09-26T01": 9.149312909977551e-7, - "2024-09-27T19": 0.0000010299866493547713, - "2024-09-25T01": 9.28368416723132e-7, - "2024-09-26T00": 9.175785317431038e-7, - "2024-09-29T18": 9.884874847018126e-7, - "2024-09-28T19": 9.958516367292608e-7, - "2024-09-28T22": 9.966587414724712e-7, - "2024-09-27T18": 0.000001031307141239034, - "2024-09-24T21": 9.162591053325284e-7, - "2024-09-30T08": 9.706978295866173e-7, - "2024-09-25T11": 9.168080846984088e-7, - "2024-09-25T20": 9.174192985130918e-7, - "2024-10-01T09": 9.556109595521093e-7, - "2024-10-01T03": 9.468896617313941e-7, - "2024-09-26T11": 9.465624044107934e-7, - "2024-09-28T07": 0.0000010019370188799685, - "2024-09-27T22": 0.000001030165846643461, - "2024-09-27T21": 0.000001035895756278428, - "2024-09-26T03": 9.180608403055908e-7, - "2024-09-26T13": 9.465119541372639e-7, - "2024-09-30T18": 9.480146535518953e-7, - "2024-10-01T08": 9.554100201966702e-7, - "2024-09-25T19": 9.188882237103475e-7, - "2024-09-30T21": 9.532614853678113e-7, - "2024-09-28T14": 9.930931278856206e-7, - "2024-09-27T20": 0.0000010304878997773649, - "2024-09-26T06": 9.190866377476916e-7, - "2024-09-26T10": 9.362520785576044e-7, - "2024-09-29T04": 9.97987028096153e-7, - "2024-09-28T16": 9.96649325378258e-7, - "2024-10-01T00": 9.43933806022905e-7, - "2024-09-24T20": 9.144833954107285e-7, - "2024-09-26T19": 9.75413677836263e-7, - "2024-09-24T15": 9.064659137527435e-7, - "2024-09-27T06": 0.0000010365307787674366, - "2024-09-29T14": 9.896955573153935e-7, - "2024-09-29T07": 9.877064068929864e-7, - "2024-09-28T00": 0.000001028904306620181, - "2024-09-30T01": 9.786469498419078e-7, - "2024-09-29T09": 9.838827536129895e-7, - "2024-09-25T09": 9.160206037105724e-7, - "2024-09-30T11": 9.566037881984728e-7, - "2024-09-25T07": 9.152792277482817e-7, - "2024-09-24T19": 9.118791304904102e-7, - "2024-09-29T19": 9.883731206759237e-7, - "2024-09-30T15": 9.559031238688005e-7, - "2024-09-28T21": 9.958242673786696e-7, - "2024-10-01T05": 9.546854901681592e-7, - "2024-10-01T14": 9.492716094276627e-7, - "2024-09-27T00": 9.76299441222857e-7, - "latest": 9.25897e-7, - "2024-10-01T15": 9.372804149474685e-7 - }, - "USD bsc": { - "2024-09-12": 542.6148416220758, - "2024-09-15": 556.2535417690342, - "2024-09-22": 583.4047110098539, - "2024-09-05": 504.10592473621074, - "2024-09-10": 518.6662635598267, - "2024-09-11": 515.771374762059, - "2024-09-20": 569.0037018284464, - "2024-09-26": 594.8305437010372, - "2024-09-16": 544.7800214417798, - "2024-09-08": 498.1237722455268, - "2024-09-24": 605.2791264519858, - "2024-09-29": 597.7019724739642, - "2024-09-17": 542.885519292251, - "2024-09-14": 552.6527407172247, - "2024-09-03": 530.8628946453636, - "2024-09-25": 595.6917302213011, - "2024-09-18": 544.9400612353955, - "2024-09-07": 493.4220238103701, - "2024-09-06": 498.3338576312235, - "2024-09-19": 563.0380598873237, - "2024-09-30": 575.917979951693, - "2024-09-01": 519.2572463562257, - "2024-08-31": 536.1701108085365, - "2024-09-02": 518.1833253189199, - "2024-09-23": 595.6337748681648, - "2024-09-13": 549.0914654527651, - "2024-10-01": 572.315358042014, - "2024-09-04": 509.2017783403042, - "2024-09-28": 601.6038264879917, - "2024-09-21": 582.9404238304214, - "2024-09-09": 507.14542727945695, - "2024-09-27": 606.971610366274, - "2024-09-27T07": 605.211563497677, - "2024-09-27T05": 602.6969566366147, - "2024-09-30T14": 575.2808032194872, - "2024-09-27T14": 610.5137161776755, - "2024-09-27T23": 608.5799697917115, - "2024-09-28T11": 601.775357093572, - "2024-09-29T00": 601.0107430609229, - "2024-09-28T18": 601.4002189231653, - "2024-09-29T23": 596.2081537902179, - "2024-10-01T13": 569.6803806430804, - "2024-09-30T10": 572.1295495834071, - "2024-09-25T22": 586.7236546184954, - "2024-09-29T11": 597.4174395195593, - "2024-09-28T12": 600.1765994834027, - "2024-09-26T09": 594.0311186695517, - "2024-09-28T10": 600.1575126551759, - "2024-09-27T16": 609.8797418002944, - "2024-09-24T17": 607.865910380215, - "2024-09-27T15": 610.863745852216, - "2024-09-29T12": 597.307913640106, - "2024-09-25T04": 604.5858057629135, - "2024-09-25T21": 588.8760091884586, - "2024-09-25T18": 589.0755644630289, - "2024-09-26T04": 587.6862642142144, - "2024-09-26T05": 589.9742559105126, - "2024-09-30T04": 576.7846210667706, - "2024-09-27T13": 608.470349532135, - "2024-09-28T13": 599.4883178490805, - "2024-09-25T08": 596.2069530839967, - "2024-09-30T03": 577.3890514052329, - "2024-10-01T10": 578.3987580944558, - "2024-09-25T13": 594.0146788092279, - "2024-10-01T01": 572.7430290939092, - "2024-09-26T17": 606.3204329262092, - "2024-09-25T15": 596.5313885122592, - "2024-09-29T22": 598.7067590976445, - "2024-09-29T01": 599.6376607755476, - "2024-09-30T06": 581.9125080810335, - "2024-09-27T12": 610.6785567494599, - "2024-09-25T23": 585.9747799933646, - "2024-09-30T05": 578.5155692917148, - "2024-09-28T23": 600.4057534237711, - "2024-09-30T19": 571.727925250338, - "2024-09-25T00": 604.5647370174446, - "2024-10-01T12": 577.6978026999793, - "2024-09-29T10": 595.4214711155619, - "2024-09-24T22": 609.7965324137731, - "2024-09-26T08": 595.6682877544066, - "2024-09-29T20": 599.4368994564685, - "2024-09-25T12": 596.134435501545, - "2024-09-25T05": 602.2175332831523, - "2024-09-27T09": 607.068436027667, - "2024-09-26T02": 587.9818876847488, - "2024-09-28T05": 608.8071582592322, - "2024-09-29T03": 599.9680205045343, - "2024-09-26T23": 595.1860307640953, - "2024-09-29T16": 597.3717963001271, - "2024-09-26T21": 595.063215028054, - "2024-09-26T16": 605.4709625493992, - "2024-09-28T03": 616.0798303771228, - "2024-09-29T21": 600.0145226000336, - "2024-09-30T09": 577.7646175621645, - "2024-09-24T16": 606.6403315139625, - "2024-09-30T07": 582.3455963089424, - "2024-09-28T17": 600.530188979546, - "2024-09-28T02": 608.248892518777, - "2024-09-28T15": 602.1499776471315, - "2024-09-29T17": 598.4984019921475, - "2024-09-25T17": 589.4083395842952, - "2024-09-25T16": 594.5387307712356, - "2024-10-01T04": 579.6572934180894, - "2024-10-01T07": 581.2582628842638, - "2024-09-30T23": 567.4242480196474, - "2024-09-29T13": 597.1775283494409, - "2024-09-26T22": 596.9361521610348, - "2024-10-01T11": 578.360080854014, - "2024-09-30T16": 572.3679875858822, - "2024-09-28T01": 608.0244473162196, - "2024-09-27T02": 600.7747865957765, - "2024-09-30T20": 574.2343951093119, - "2024-09-28T06": 602.5336250946114, - "2024-09-27T08": 606.6962863657906, - "2024-10-01T06": 581.5486800154005, - "2024-09-27T03": 602.7149070406797, - "2024-09-25T06": 598.3053362901038, - "2024-10-01T02": 572.2760174627887, - "2024-09-27T17": 609.1608197208782, - "2024-09-30T22": 571.4614454973339, - "2024-09-29T05": 597.825454845613, - "2024-09-28T20": 600.3548204200262, - "2024-09-30T13": 577.3609019925343, - "2024-09-26T18": 596.055059514438, - "2024-09-25T10": 595.3089919466604, - "2024-09-25T02": 606.3637261757281, - "2024-09-29T02": 601.0050374969267, - "2024-09-28T08": 599.9417154105989, - "2024-09-30T17": 571.0024347084887, - "2024-09-30T02": 577.2973161674738, - "2024-09-28T09": 598.2266371567991, - "2024-09-25T03": 605.2052736647936, - "2024-09-29T15": 596.8059863331276, - "2024-09-29T06": 596.6889383422396, - "2024-09-24T18": 607.722801181503, - "2024-09-26T07": 595.0132498680922, - "2024-09-26T15": 599.9957762225476, - "2024-09-27T04": 604.5149123323041, - "2024-09-27T11": 605.2966625809173, - "2024-09-26T20": 592.9844618508354, - "2024-09-30T12": 574.7307485530952, - "2024-09-27T10": 603.8414085152939, - "2024-09-26T12": 594.4513592236301, - "2024-09-24T23": 607.8924065009403, - "2024-09-30T00": 587.3410718464465, - "2024-09-25T14": 597.8424493715722, - "2024-09-26T14": 595.6399760712927, - "2024-09-27T01": 598.4562382995147, - "2024-09-28T04": 611.9646336301789, - "2024-09-29T08": 594.8382765078694, - "2024-09-26T01": 583.4163053547109, - "2024-09-27T19": 606.5455972397324, - "2024-09-25T01": 605.1553637214627, - "2024-09-26T00": 587.0018284613332, - "2024-09-29T18": 597.9738774997493, - "2024-09-28T19": 600.5228909832186, - "2024-09-28T22": 600.2059558197229, - "2024-09-27T18": 608.6496795038747, - "2024-09-24T21": 607.695792792583, - "2024-09-30T08": 580.5393700677339, - "2024-09-25T11": 594.7605294112765, - "2024-09-25T20": 588.4397606322411, - "2024-10-01T09": 580.185579442189, - "2024-10-01T03": 575.207578091784, - "2024-09-26T11": 595.9899601544329, - "2024-09-28T07": 603.1269880843683, - "2024-09-27T22": 608.7213259441603, - "2024-09-27T21": 608.8514167801649, - "2024-09-26T03": 587.586358062209, - "2024-09-26T13": 593.1710452744765, - "2024-09-30T18": 570.3609655761114, - "2024-10-01T08": 580.6338939696617, - "2024-09-25T19": 588.1931913444082, - "2024-09-30T21": 573.9477804524769, - "2024-09-28T14": 602.3904553656093, - "2024-09-27T20": 606.247806099257, - "2024-09-26T06": 593.1895881227885, - "2024-09-26T10": 596.7599866729123, - "2024-09-29T04": 598.3546621899835, - "2024-09-28T16": 600.6028896424054, - "2024-10-01T00": 568.4522234467619, - "2024-09-24T20": 608.5466265621461, - "2024-09-26T19": 595.3996047538255, - "2024-09-24T15": 607.0063374780885, - "2024-09-27T06": 604.8137907439453, - "2024-09-29T14": 597.2940850021914, - "2024-09-29T07": 595.9218147262885, - "2024-09-28T00": 607.4604988897227, - "2024-09-30T01": 584.7169543825529, - "2024-09-29T09": 596.4931799883922, - "2024-09-25T09": 596.0340402643584, - "2024-09-30T11": 573.5890156948723, - "2024-09-25T07": 595.167572393273, - "2024-09-24T19": 607.7372009845725, - "2024-09-29T19": 598.7003697822453, - "2024-09-30T15": 575.0201615988284, - "2024-09-28T21": 598.857531121895, - "2024-10-01T05": 579.4714665319786, - "2024-10-01T14": 569.2535204508858, - "2024-09-27T00": 597.6066079316788, - "latest": 551.05, - "2024-10-01T15": 562.765370335443 - }, - "USD cardano": { - "2024-09-12": 0.35594213521096757, - "2024-09-15": 0.3488551393450573, - "2024-09-22": 0.3518612718040402, - "2024-09-05": 0.3246618562962649, - "2024-09-10": 0.34212942172721, - "2024-09-11": 0.33929105185998726, - "2024-09-20": 0.35548097773821535, - "2024-09-26": 0.3962070118698328, - "2024-09-16": 0.3320631736119278, - "2024-09-08": 0.33495365219490425, - "2024-09-24": 0.37090658700136936, - "2024-09-29": 0.3983478481678086, - "2024-09-17": 0.3338189281360182, - "2024-09-14": 0.35530860678669207, - "2024-09-03": 0.3286036996458474, - "2024-09-25": 0.38348111536800483, - "2024-09-18": 0.3335080590508321, - "2024-09-07": 0.3234703182531467, - "2024-09-06": 0.3188325768397893, - "2024-09-19": 0.3500265493380821, - "2024-09-30": 0.3847682958715014, - "2024-09-01": 0.3401563027904341, - "2024-08-31": 0.3474304847124523, - "2024-09-02": 0.3319200827454856, - "2024-09-23": 0.35570781050062933, - "2024-09-13": 0.356534135823621, - "2024-10-01": 0.3776047540272867, - "2024-09-04": 0.319439746705889, - "2024-09-28": 0.40088782662346917, - "2024-09-21": 0.35523116205691946, - "2024-09-09": 0.342770634731307, - "2024-09-27": 0.40505749494551546, - "2024-09-27T07": 0.4097421377301464, - "2024-09-27T05": 0.41132153391025783, - "2024-09-30T14": 0.3828167294618904, - "2024-09-27T14": 0.40772086571399324, - "2024-09-27T23": 0.40228060333243126, - "2024-09-28T11": 0.40055671332157516, - "2024-09-29T00": 0.399335937, - "2024-09-28T18": 0.40148906002793205, - "2024-09-29T23": 0.3972624269898194, - "2024-10-01T13": 0.37628317275183465, - "2024-09-30T10": 0.382695353494962, - "2024-09-25T22": 0.3819427, - "2024-09-29T11": 0.3964863283587593, - "2024-09-28T12": 0.40090487715554696, - "2024-09-26T09": 0.3939612261170438, - "2024-09-28T10": 0.39948972467869176, - "2024-09-27T16": 0.4049860774379241, - "2024-09-24T17": 0.3806135267914631, - "2024-09-27T15": 0.4067058423542184, - "2024-09-29T12": 0.39667416948183915, - "2024-09-25T04": 0.38717015396238214, - "2024-09-25T21": 0.38294385351346605, - "2024-09-25T18": 0.38289230289038845, - "2024-09-26T04": 0.38529021285878684, - "2024-09-26T05": 0.3871130636955035, - "2024-09-30T04": 0.388905544125767, - "2024-09-27T13": 0.40485219555699486, - "2024-09-28T13": 0.40081279032796835, - "2024-09-25T08": 0.3817357841649728, - "2024-09-30T03": 0.38889500169471863, - "2024-10-01T10": 0.38393856, - "2024-09-25T13": 0.3817464074250977, - "2024-10-01T01": 0.3784581049571838, - "2024-09-26T17": 0.4003233858301824, - "2024-09-25T15": 0.3861613973335567, - "2024-09-29T22": 0.3988911805260652, - "2024-09-29T01": 0.39724436711863953, - "2024-09-30T06": 0.39092649132663715, - "2024-09-27T12": 0.4035773846673324, - "2024-09-25T23": 0.3802353986444788, - "2024-09-30T05": 0.3897559481502879, - "2024-09-28T23": 0.39904389000000007, - "2024-09-30T19": 0.379496804756063, - "2024-09-25T00": 0.3891335183321586, - "2024-10-01T12": 0.384550002, - "2024-09-29T10": 0.39503555, - "2024-09-24T22": 0.3899578321917539, - "2024-09-26T08": 0.3969146531489306, - "2024-09-29T20": 0.40186428799999996, - "2024-09-25T12": 0.38176958718693604, - "2024-09-25T05": 0.38627600378712057, - "2024-09-27T09": 0.40536836017536704, - "2024-09-26T02": 0.38393447350999454, - "2024-09-28T05": 0.4008062884333393, - "2024-09-29T03": 0.39940798799999994, - "2024-09-26T23": 0.4005364096858843, - "2024-09-29T16": 0.4012215871112572, - "2024-09-26T21": 0.39783579869714847, - "2024-09-26T16": 0.4016796214384414, - "2024-09-28T03": 0.40424850399999995, - "2024-09-29T21": 0.40132505791636647, - "2024-09-30T09": 0.38697774173039134, - "2024-09-24T16": 0.37685478584861254, - "2024-09-30T07": 0.3907727051681479, - "2024-09-28T17": 0.40114122662548557, - "2024-09-28T02": 0.4044485279999999, - "2024-09-28T15": 0.4024409636215218, - "2024-09-29T17": 0.4026426549694715, - "2024-09-25T17": 0.38279855888758485, - "2024-09-25T16": 0.385330844724894, - "2024-10-01T04": 0.38185084643230666, - "2024-10-01T07": 0.3844851210236593, - "2024-09-30T23": 0.3740618464245814, - "2024-09-29T13": 0.395255328, - "2024-09-26T22": 0.40177511535126775, - "2024-10-01T11": 0.385042235, - "2024-09-30T16": 0.3811110858738597, - "2024-09-28T01": 0.402848336, - "2024-09-27T02": 0.4055254560877268, - "2024-09-30T20": 0.38023857170786224, - "2024-09-28T06": 0.3980756642695815, - "2024-09-27T08": 0.4075765949974901, - "2024-10-01T06": 0.38289182710531416, - "2024-09-27T03": 0.40822500660902455, - "2024-09-25T06": 0.3831408318749378, - "2024-10-01T02": 0.376815451614039, - "2024-09-27T17": 0.4037685701804376, - "2024-09-30T22": 0.3789108572643788, - "2024-09-29T05": 0.398711961, - "2024-09-28T20": 0.40114011, - "2024-09-30T13": 0.3851765130634564, - "2024-09-26T18": 0.399595221150469, - "2024-09-25T10": 0.3824163105343323, - "2024-09-25T02": 0.3907798973115187, - "2024-09-29T02": 0.39950799, - "2024-09-28T08": 0.3960515700130137, - "2024-09-30T17": 0.38106318836539566, - "2024-09-30T02": 0.38943619638148164, - "2024-09-28T09": 0.3956486519633478, - "2024-09-25T03": 0.3913263700793973, - "2024-09-29T15": 0.3991817521064998, - "2024-09-29T06": 0.395315812, - "2024-09-24T18": 0.38257055739008206, - "2024-09-26T07": 0.3944729270303254, - "2024-09-26T15": 0.3996785611689732, - "2024-09-27T04": 0.4086838189539162, - "2024-09-27T11": 0.40171599790796947, - "2024-09-26T20": 0.39697660865190904, - "2024-09-30T12": 0.3847724645620576, - "2024-09-27T10": 0.40183209186640867, - "2024-09-26T12": 0.39620276213610556, - "2024-09-24T23": 0.38724944380917864, - "2024-09-30T00": 0.39356964498791197, - "2024-09-25T14": 0.3856591063077409, - "2024-09-26T14": 0.3978614669332146, - "2024-09-27T01": 0.4044337945554046, - "2024-09-28T04": 0.4036732153196236, - "2024-09-29T08": 0.3952947945122945, - "2024-09-26T01": 0.3800209116450111, - "2024-09-27T19": 0.4019746828967308, - "2024-09-25T01": 0.3904602763242831, - "2024-09-26T00": 0.3812779016045407, - "2024-09-29T18": 0.40356919379304196, - "2024-09-28T19": 0.40079231725067727, - "2024-09-28T22": 0.39944792799999995, - "2024-09-27T18": 0.4030458892760036, - "2024-09-24T21": 0.3869251285246649, - "2024-09-30T08": 0.38841385252605426, - "2024-09-25T11": 0.38152569375211554, - "2024-09-25T20": 0.383670358522771, - "2024-10-01T09": 0.3842083659489983, - "2024-10-01T03": 0.3805737616035613, - "2024-09-26T11": 0.395663244528513, - "2024-09-28T07": 0.3982835418883197, - "2024-09-27T22": 0.4028631089505848, - "2024-09-27T21": 0.40206783648847816, - "2024-09-26T03": 0.3854167207809812, - "2024-09-26T13": 0.39629902548920504, - "2024-09-30T18": 0.3796604764886612, - "2024-10-01T08": 0.3837565498192807, - "2024-09-25T19": 0.3837909922062491, - "2024-09-30T21": 0.3812194655296363, - "2024-09-28T14": 0.4029240972255986, - "2024-09-27T20": 0.4013193805726815, - "2024-09-26T06": 0.39147843855176767, - "2024-09-26T10": 0.39458591819149647, - "2024-09-29T04": 0.39921197599999997, - "2024-09-28T16": 0.4024217540129785, - "2024-10-01T00": 0.37366624423994604, - "2024-09-24T20": 0.3860405073718437, - "2024-09-26T19": 0.3999848034315572, - "2024-09-24T15": 0.3723330180158332, - "2024-09-27T06": 0.41306836095523247, - "2024-09-29T14": 0.397867626, - "2024-09-29T07": 0.394527615, - "2024-09-28T00": 0.4017547826070673, - "2024-09-30T01": 0.3919086484016392, - "2024-09-29T09": 0.39683174400000004, - "2024-09-25T09": 0.38183254692974017, - "2024-09-30T11": 0.3844230098466676, - "2024-09-25T07": 0.38127350369113444, - "2024-09-24T19": 0.38353111726632666, - "2024-09-29T19": 0.40316635653338007, - "2024-09-30T15": 0.38151105838030713, - "2024-09-28T21": 0.398843868, - "2024-10-01T05": 0.38163568360929434, - "2024-10-01T14": 0.3763161857494883, - "2024-09-27T00": 0.4028540805144008, - "latest": 0.359152, - "2024-10-01T15": 0.369032468619328 - }, - "USD celo": { - "2024-09-12": 0.43861625320726755, - "2024-09-15": 0.4418493881093436, - "2024-09-22": 0.5119466947552443, - "2024-09-05": 0.4224262195117988, - "2024-09-10": 0.44532673875514217, - "2024-09-11": 0.433530008450241, - "2024-09-20": 0.5198789932347739, - "2024-09-26": 0.6447226190593982, - "2024-09-16": 0.43627262797454247, - "2024-09-08": 0.41096665649104475, - "2024-09-24": 0.5348010321146474, - "2024-09-29": 0.6652357369348687, - "2024-09-17": 0.451672952810409, - "2024-09-14": 0.44241759911537415, - "2024-09-03": 0.43876066822878235, - "2024-09-25": 0.657150337951769, - "2024-09-18": 0.4524808446212791, - "2024-09-07": 0.4081401443763904, - "2024-09-06": 0.4105216050714573, - "2024-09-19": 0.4935422032545033, - "2024-09-30": 0.6469904134323683, - "2024-09-01": 0.43994220683214924, - "2024-08-31": 0.46297408154685066, - "2024-09-02": 0.43892289693859454, - "2024-09-23": 0.5299428906819623, - "2024-09-13": 0.4415343908152609, - "2024-10-01": 0.645668983393823, - "2024-09-04": 0.42114354986091623, - "2024-09-28": 0.6451626890703195, - "2024-09-21": 0.5113823024434239, - "2024-09-09": 0.4288973428294123, - "2024-09-27": 0.6325089415063362, - "2024-09-27T07": 0.6334794237286975, - "2024-09-27T05": 0.6352350370633805, - "2024-09-30T14": 0.6398084928494763, - "2024-09-27T14": 0.6230016119659977, - "2024-09-27T23": 0.6506028069501703, - "2024-09-28T11": 0.6375735607140581, - "2024-09-29T00": 0.6681069224753674, - "2024-09-28T18": 0.652090785526853, - "2024-09-29T23": 0.6688761131248072, - "2024-10-01T13": 0.7285247919795869, - "2024-09-30T10": 0.6480260074808093, - "2024-09-25T22": 0.6685261946619013, - "2024-09-29T11": 0.6591209736807214, - "2024-09-28T12": 0.6304167754266056, - "2024-09-26T09": 0.6595946832905301, - "2024-09-28T10": 0.6431140701099123, - "2024-09-27T16": 0.6359205511378986, - "2024-09-24T17": 0.5322317667459824, - "2024-09-27T15": 0.6279262221713158, - "2024-09-29T12": 0.651793244578168, - "2024-09-25T04": 0.5555445359766552, - "2024-09-25T21": 0.6723277248851558, - "2024-09-25T18": 0.6771963044882273, - "2024-09-26T04": 0.6448890991945219, - "2024-09-26T05": 0.6370284051845111, - "2024-09-30T04": 0.6478542813314845, - "2024-09-27T13": 0.6236497109654174, - "2024-09-28T13": 0.6377824799321098, - "2024-09-25T08": 0.6137405923500845, - "2024-09-30T03": 0.6504678747125938, - "2024-10-01T10": 0.7217261555772481, - "2024-09-25T13": 0.6718356058332681, - "2024-10-01T01": 0.6449780284563704, - "2024-09-26T17": 0.6413444285707139, - "2024-09-25T15": 0.6626244156727722, - "2024-09-29T22": 0.6767941663563468, - "2024-09-29T01": 0.6550015662732218, - "2024-09-30T06": 0.64653343379695, - "2024-09-27T12": 0.6198883672330375, - "2024-09-25T23": 0.6695575689346952, - "2024-09-30T05": 0.6448350435339528, - "2024-09-28T23": 0.6594375268596196, - "2024-09-30T19": 0.6357708857468439, - "2024-09-25T00": 0.5455371720460155, - "2024-10-01T12": 0.7293163833647279, - "2024-09-29T10": 0.6586471578632869, - "2024-09-24T22": 0.5426032926459334, - "2024-09-26T08": 0.6636243819950997, - "2024-09-29T20": 0.6753635171677262, - "2024-09-25T12": 0.6622953061499351, - "2024-09-25T05": 0.5465315510009346, - "2024-09-27T09": 0.6377099921520089, - "2024-09-26T02": 0.6352631742977086, - "2024-09-28T05": 0.6451926538359999, - "2024-09-29T03": 0.6621859869627453, - "2024-09-26T23": 0.6351002503354302, - "2024-09-29T16": 0.7012949900882173, - "2024-09-26T21": 0.627762656023335, - "2024-09-26T16": 0.6385382148621584, - "2024-09-28T03": 0.6461249191726972, - "2024-09-29T21": 0.672315511258278, - "2024-09-30T09": 0.6551047283075473, - "2024-09-24T16": 0.5319519862421147, - "2024-09-30T07": 0.6453894023272975, - "2024-09-28T17": 0.6446964858555074, - "2024-09-28T02": 0.6435661519315129, - "2024-09-28T15": 0.6378491232815441, - "2024-09-29T17": 0.6857483728148892, - "2024-09-25T17": 0.668234229571772, - "2024-09-25T16": 0.6522762475077623, - "2024-10-01T04": 0.6549979342010043, - "2024-10-01T07": 0.7227632533825893, - "2024-09-30T23": 0.6371809082394903, - "2024-09-29T13": 0.6577699385787033, - "2024-09-26T22": 0.6336778325877691, - "2024-10-01T11": 0.7308584773827141, - "2024-09-30T16": 0.6375137106365532, - "2024-09-28T01": 0.6466348778962355, - "2024-09-27T02": 0.6304752449064251, - "2024-09-30T20": 0.6377844882263078, - "2024-09-28T06": 0.6415587082952507, - "2024-09-27T08": 0.6314604578262829, - "2024-10-01T06": 0.6917105699923395, - "2024-09-27T03": 0.6322903781456676, - "2024-09-25T06": 0.6199589188837084, - "2024-10-01T02": 0.6488800962036971, - "2024-09-27T17": 0.6366268740716279, - "2024-09-30T22": 0.6408790853204681, - "2024-09-29T05": 0.6589056182636757, - "2024-09-28T20": 0.6663228731717864, - "2024-09-30T13": 0.6539048076892664, - "2024-09-26T18": 0.6401253312896716, - "2024-09-25T10": 0.6322668264663321, - "2024-09-25T02": 0.5528490072933976, - "2024-09-29T02": 0.6509335036920859, - "2024-09-28T08": 0.6364751662378053, - "2024-09-30T17": 0.634693533979888, - "2024-09-30T02": 0.6539078832247736, - "2024-09-28T09": 0.6353161623847869, - "2024-09-25T03": 0.5541534956478523, - "2024-09-29T15": 0.6764756480078243, - "2024-09-29T06": 0.658142917705584, - "2024-09-24T18": 0.540927683705162, - "2024-09-26T07": 0.6635118741986172, - "2024-09-26T15": 0.6403813859423488, - "2024-09-27T04": 0.633864754869338, - "2024-09-27T11": 0.6185337849390616, - "2024-09-26T20": 0.6409029431803964, - "2024-09-30T12": 0.6452795014502859, - "2024-09-27T10": 0.6314949483546776, - "2024-09-26T12": 0.6488251979283396, - "2024-09-24T23": 0.545366617020517, - "2024-09-30T00": 0.6643756146310531, - "2024-09-25T14": 0.6536662090164032, - "2024-09-26T14": 0.6447109586479512, - "2024-09-27T01": 0.6299518860708294, - "2024-09-28T04": 0.6464993260849502, - "2024-09-29T08": 0.637531929850745, - "2024-09-26T01": 0.6393588557441561, - "2024-09-27T19": 0.6418876304037744, - "2024-09-25T01": 0.546395890244737, - "2024-09-26T00": 0.6593014742206392, - "2024-09-29T18": 0.6815789468894072, - "2024-09-28T19": 0.6609798998734256, - "2024-09-28T22": 0.6638804193313295, - "2024-09-27T18": 0.6358756581397146, - "2024-09-24T21": 0.5442405305919514, - "2024-09-30T08": 0.6620176073811219, - "2024-09-25T11": 0.6413139863308276, - "2024-09-25T20": 0.6716891009154309, - "2024-10-01T09": 0.7288805926343785, - "2024-10-01T03": 0.6463232244596014, - "2024-09-26T11": 0.6536441809424424, - "2024-09-28T07": 0.6478468549717318, - "2024-09-27T22": 0.6473622627659921, - "2024-09-27T21": 0.6522045233727101, - "2024-09-26T03": 0.6467960851119737, - "2024-09-26T13": 0.647565221758322, - "2024-09-30T18": 0.6378504833565495, - "2024-10-01T08": 0.7246570182118292, - "2024-09-25T19": 0.6697378185636101, - "2024-09-30T21": 0.6443839899409642, - "2024-09-28T14": 0.6334359203390437, - "2024-09-27T20": 0.6435175727428644, - "2024-09-26T06": 0.6427742962163925, - "2024-09-26T10": 0.6535802886579827, - "2024-09-29T04": 0.666181917310008, - "2024-09-28T16": 0.6451204549277836, - "2024-10-01T00": 0.6444228196320466, - "2024-09-24T20": 0.5403147199529008, - "2024-09-26T19": 0.6456243214085179, - "2024-09-24T15": 0.5277823261940623, - "2024-09-27T06": 0.6397509569897302, - "2024-09-29T14": 0.6743577069470221, - "2024-09-29T07": 0.6462964547004559, - "2024-09-28T00": 0.648499433137975, - "2024-09-30T01": 0.6745052680185094, - "2024-09-29T09": 0.6516348712756347, - "2024-09-25T09": 0.6295020493273019, - "2024-09-30T11": 0.6512611488570543, - "2024-09-25T07": 0.6115632075496108, - "2024-09-24T19": 0.539527351831855, - "2024-09-29T19": 0.6720002757986432, - "2024-09-30T15": 0.6356916659693005, - "2024-09-28T21": 0.6679159668275184, - "2024-10-01T05": 0.6741339632547121, - "2024-10-01T14": 0.7047215825866913, - "2024-09-27T00": 0.6363711965182474, - "latest": 0.674291, - "2024-10-01T15": 0.70448859 - }, - "USD cosmos": { - "2024-09-12": 4.103510391633179, - "2024-09-15": 4.225346601786964, - "2024-09-22": 4.63867144850478, - "2024-09-05": 3.98616604634973, - "2024-09-10": 4.116264451485217, - "2024-09-11": 4.1117834161303835, - "2024-09-20": 4.535677955835925, - "2024-09-26": 4.945968140613872, - "2024-09-16": 3.9826684189570227, - "2024-09-08": 3.702068296669402, - "2024-09-24": 4.606890143927472, - "2024-09-29": 5.034877727097609, - "2024-09-17": 4.0862214972710165, - "2024-09-14": 4.199293455070471, - "2024-09-03": 4.296445837118064, - "2024-09-25": 4.821471943099534, - "2024-09-18": 4.19961754373853, - "2024-09-07": 3.7101038323358555, - "2024-09-06": 3.864067718614368, - "2024-09-19": 4.481639801982145, - "2024-09-30": 4.87966942433585, - "2024-09-01": 4.4832334761999055, - "2024-08-31": 4.59025030441107, - "2024-09-02": 4.375753250918212, - "2024-09-23": 4.578353662015111, - "2024-09-13": 4.212579711384717, - "2024-10-01": 4.838626237414811, - "2024-09-04": 4.04320987661163, - "2024-09-28": 5.028689073579205, - "2024-09-21": 4.569461742018851, - "2024-09-09": 3.947713677475635, - "2024-09-27": 5.124576643340567, - "2024-09-27T07": 5.154690241033735, - "2024-09-27T05": 5.092732019295101, - "2024-09-30T14": 4.879150032171022, - "2024-09-27T14": 5.107871789204721, - "2024-09-27T23": 5.1552903199789695, - "2024-09-28T11": 5.063982379766805, - "2024-09-29T00": 5.011752193316657, - "2024-09-28T18": 5.032998855136254, - "2024-09-29T23": 5.028111599086256, - "2024-10-01T13": 4.878549069872251, - "2024-09-30T10": 4.873441335772965, - "2024-09-25T22": 4.807252994769319, - "2024-09-29T11": 5.006213787662629, - "2024-09-28T12": 5.041375424350945, - "2024-09-26T09": 4.873692507959528, - "2024-09-28T10": 5.006346723158828, - "2024-09-27T16": 5.154411377223299, - "2024-09-24T17": 4.64722643032937, - "2024-09-27T15": 5.156381847389104, - "2024-09-29T12": 5.041240722974995, - "2024-09-25T04": 4.934441987308863, - "2024-09-25T21": 4.846874977359539, - "2024-09-25T18": 4.789063087803293, - "2024-09-26T04": 4.834938990461967, - "2024-09-26T05": 4.824171689715012, - "2024-09-30T04": 4.918848983060217, - "2024-09-27T13": 5.120185674051419, - "2024-09-28T13": 5.008689483495371, - "2024-09-25T08": 4.82598192251867, - "2024-09-30T03": 4.940536762439492, - "2024-10-01T10": 4.8643995754953195, - "2024-09-25T13": 4.761797501409838, - "2024-10-01T01": 4.7671819485581395, - "2024-09-26T17": 5.0580496137198665, - "2024-09-25T15": 4.81775403581582, - "2024-09-29T22": 5.082336226949776, - "2024-09-29T01": 4.992762230743351, - "2024-09-30T06": 4.951911673162805, - "2024-09-27T12": 5.0957336462386795, - "2024-09-25T23": 4.781912225313226, - "2024-09-30T05": 4.8922681415412255, - "2024-09-28T23": 5.012501860492793, - "2024-09-30T19": 4.840850332158605, - "2024-09-25T00": 4.81362201464269, - "2024-10-01T12": 4.8740534905656085, - "2024-09-29T10": 5.0203265630603005, - "2024-09-24T22": 4.826645885301348, - "2024-09-26T08": 4.896819399777402, - "2024-09-29T20": 5.102540214389699, - "2024-09-25T12": 4.802833614623601, - "2024-09-25T05": 4.900420386180768, - "2024-09-27T09": 5.165372650870172, - "2024-09-26T02": 4.767563281002585, - "2024-09-28T05": 5.113952653323657, - "2024-09-29T03": 5.040758216940839, - "2024-09-26T23": 5.011547204708828, - "2024-09-29T16": 5.106613114688093, - "2024-09-26T21": 4.960238804312516, - "2024-09-26T16": 5.057007778789613, - "2024-09-28T03": 5.156565822760225, - "2024-09-29T21": 5.075479907248684, - "2024-09-30T09": 4.976910659126263, - "2024-09-24T16": 4.633070780475752, - "2024-09-30T07": 4.9471826399324215, - "2024-09-28T17": 5.013422828964399, - "2024-09-28T02": 5.121767587243567, - "2024-09-28T15": 5.03972601402589, - "2024-09-29T17": 5.091275311041741, - "2024-09-25T17": 4.796666138558895, - "2024-09-25T16": 4.799520672420787, - "2024-10-01T04": 4.842900078922347, - "2024-10-01T07": 4.883610648467603, - "2024-09-30T23": 4.750985128073323, - "2024-09-29T13": 4.990421656335159, - "2024-09-26T22": 4.998278932244071, - "2024-10-01T11": 4.885440982736115, - "2024-09-30T16": 4.811645558242281, - "2024-09-28T01": 5.130532481312892, - "2024-09-27T02": 5.03288194239319, - "2024-09-30T20": 4.839889968208585, - "2024-09-28T06": 5.05930831160314, - "2024-09-27T08": 5.171599521397315, - "2024-10-01T06": 4.844989663946119, - "2024-09-27T03": 5.032469859656925, - "2024-09-25T06": 4.83868746407861, - "2024-10-01T02": 4.769704036550081, - "2024-09-27T17": 5.17792624002635, - "2024-09-30T22": 4.815751707015835, - "2024-09-29T05": 5.043710780131521, - "2024-09-28T20": 5.009586648453581, - "2024-09-30T13": 4.898254249035711, - "2024-09-26T18": 5.007980164342835, - "2024-09-25T10": 4.811444774748852, - "2024-09-25T02": 4.919805720331393, - "2024-09-29T02": 5.017061110351554, - "2024-09-28T08": 4.9952943712897, - "2024-09-30T17": 4.799055615322359, - "2024-09-30T02": 4.959005686146801, - "2024-09-28T09": 4.984874148601448, - "2024-09-25T03": 4.927074033404457, - "2024-09-29T15": 5.0713258071782255, - "2024-09-29T06": 5.025835121086788, - "2024-09-24T18": 4.698390808096748, - "2024-09-26T07": 4.8686749551419, - "2024-09-26T15": 4.968119713097081, - "2024-09-27T04": 5.081501940767724, - "2024-09-27T11": 5.086344856544902, - "2024-09-26T20": 4.989709962098588, - "2024-09-30T12": 4.894575739735507, - "2024-09-27T10": 5.1431492946879285, - "2024-09-26T12": 4.939819035631079, - "2024-09-24T23": 4.82130302939256, - "2024-09-30T00": 5.027694940493386, - "2024-09-25T14": 4.784445514036457, - "2024-09-26T14": 4.960666264588739, - "2024-09-27T01": 5.032789996851313, - "2024-09-28T04": 5.1314244483244895, - "2024-09-29T08": 4.972753403415407, - "2024-09-26T01": 4.72757541571435, - "2024-09-27T19": 5.140073152637329, - "2024-09-25T01": 4.850566545828386, - "2024-09-26T00": 4.784588648902583, - "2024-09-29T18": 5.08363068909872, - "2024-09-28T19": 5.01895881633638, - "2024-09-28T22": 4.980669292305783, - "2024-09-27T18": 5.125349771415396, - "2024-09-24T21": 4.771955829370197, - "2024-09-30T08": 4.992354096862272, - "2024-09-25T11": 4.80407274497955, - "2024-09-25T20": 4.827359392252787, - "2024-10-01T09": 4.853677891103861, - "2024-10-01T03": 4.786329405248474, - "2024-09-26T11": 4.942887287599752, - "2024-09-28T07": 5.037269886089556, - "2024-09-27T22": 5.12525924670404, - "2024-09-27T21": 5.114699891394217, - "2024-09-26T03": 4.8002978445413635, - "2024-09-26T13": 4.968318869355643, - "2024-09-30T18": 4.822892843229229, - "2024-10-01T08": 4.866712829969807, - "2024-09-25T19": 4.831964615134146, - "2024-09-30T21": 4.856112315360828, - "2024-09-28T14": 5.006290266432305, - "2024-09-27T20": 5.122295624724559, - "2024-09-26T06": 4.852220795354819, - "2024-09-26T10": 4.883907550538896, - "2024-09-29T04": 5.051125337275133, - "2024-09-28T16": 5.046917263956751, - "2024-10-01T00": 4.728917888690265, - "2024-09-24T20": 4.776081661798538, - "2024-09-26T19": 5.02370514965602, - "2024-09-24T15": 4.630454542353065, - "2024-09-27T06": 5.137038227228535, - "2024-09-29T14": 5.035583176843202, - "2024-09-29T07": 5.022716019027621, - "2024-09-28T00": 5.150137249822639, - "2024-09-30T01": 5.02844029972606, - "2024-09-29T09": 4.975649054965699, - "2024-09-25T09": 4.821040586271275, - "2024-09-30T11": 4.865049966242842, - "2024-09-25T07": 4.824509443173308, - "2024-09-24T19": 4.723816646767323, - "2024-09-29T19": 5.080543142740392, - "2024-09-30T15": 4.847909385475219, - "2024-09-28T21": 4.998699716603675, - "2024-10-01T05": 4.872891720559586, - "2024-10-01T14": 4.7125858, - "2024-09-27T00": 5.0090361464856095, - "latest": 4.49, - "2024-10-01T15": 4.7125858, - "2023-10-23": 6.733946874845574, - "2024-02-23": 9.851772965681617, - "2024-04-05": 10.872125736366009, - "2023-12-19": 10.6846975974307, - "2024-05-17": 8.647700048301136, - "2023-12-02": 9.525082365681579, - "2024-06-11": 7.631657709607452, - "2024-04-26": 8.282553167972337, - "2024-01-08": 9.495965462794816, - "2023-10-31": 7.943333873978431, - "2023-10-01": 7.3217972823129225, - "2024-03-07": 13.835012401259707, - "2023-10-12": 6.5454254696082055, - "2024-04-22": 8.884219023888473, - "2024-06-24": 6.655374668497718, - "2023-12-05": 9.629582281123866, - "2024-02-19": 10.628366404465314, - "2024-07-31": 5.980391683603718, - "2024-08-11": 5.0490429595992286, - "2024-01-07": 9.777948760697697, - "2024-04-28": 8.362294470895774, - "2023-10-18": 6.3948674267924055, - "2023-10-07": 6.934428768757504, - "2024-06-28": 6.921262066693637, - "2024-05-19": 8.377027992145802, - "2024-05-12": 8.56337463789839, - "2024-08-24": 5.277268515443763, - "2024-03-09": 13.625722984188695, - "2024-08-02": 5.53744591908073, - "2024-04-29": 8.08901121121884, - "2024-04-25": 8.387321414103951, - "2024-06-12": 7.750880018726601, - "2024-05-30": 8.598608485549503, - "2024-06-05": 8.583786708812386, - "2024-08-21": 4.756679126208093, - "2024-03-22": 11.43188658187532, - "2023-11-18": 9.204535278852937, - "2024-07-30": 6.140420760140405, - "2023-12-07": 9.764619078609197, - "2024-06-30": 6.635924592760371, - "2024-06-20": 6.923588136486875, - "2024-07-08": 5.869515284454324, - "2024-07-07": 6.000062525763628, - "2024-03-26": 12.244401103660381, - "2024-05-14": 8.319182910197297, - "2024-06-16": 7.1667663075080315, - "2024-02-22": 9.881794487216292, - "2024-04-15": 8.279691614610153, - "2023-12-30": 10.8092633958349, - "2024-04-17": 8.11014339593089, - "2024-02-12": 9.762241825280334, - "2023-10-26": 7.152951387916232, - "2024-01-03": 10.18553178313707, - "2024-05-07": 9.229999044670713, - "2024-01-22": 9.36652092237671, - "2024-08-16": 4.540906021161238, - "2024-07-13": 6.208455523781979, - "2023-12-24": 11.527451730134088, - "2023-10-03": 7.177846602787016, - "2024-05-26": 8.4027153095649, - "2024-04-30": 7.930230954797292, - "2024-08-22": 4.722176164911949, - "2024-07-09": 5.86866250489695, - "2024-01-16": 10.339975963303434, - "2023-10-17": 6.504592064095537, - "2024-04-24": 8.70748827403247, - "2024-03-18": 12.000924787163417, - "2024-02-17": 10.213687811282863, - "2023-12-27": 11.708296492831384, - "2024-08-01": 5.764166744846545, - "2024-02-24": 10.32698971892523, - "2024-01-06": 9.909073059469216, - "2024-03-20": 11.187067940729527, - "2023-11-21": 8.828841788244096, - "2023-12-25": 11.587990783797421, - "2024-03-01": 11.357518366636558, - "2023-10-02": 7.403535146522609, - "2024-03-27": 12.47000485040029, - "2024-05-13": 8.500030250990871, - "2024-05-06": 9.369877451640992, - "2024-06-19": 6.828591612666571, - "2024-02-09": 9.987812812711491, - "2023-10-06": 6.885257134649369, - "2023-10-13": 6.608394480793959, - "2024-02-05": 9.039392953185342, - "2023-12-10": 10.39209376935472, - "2023-11-23": 8.838363410538639, - "2024-01-13": 10.08221210224093, - "2024-03-28": 12.361357670567555, - "2023-10-09": 6.737408817030294, - "2024-01-09": 9.773297047353568, - "2024-05-10": 9.033838067813216, - "2024-08-06": 4.865281599019498, - "2023-11-05": 8.377167672100732, - "2024-08-25": 5.119473559706037, - "2024-04-18": 8.156810306204267, - "2023-10-22": 6.620958699546588, - "2024-08-27": 4.905084684321178, - "2023-11-01": 7.7190135591612785, - "2024-05-20": 8.331877116067144, - "2023-12-08": 10.03438094502124, - "2024-04-12": 10.402785711258016, - "2024-03-12": 13.388762277747821, - "2024-07-02": 6.881025220263112, - "2024-08-19": 4.574799996965734, - "2024-07-20": 6.522445989006485, - "2024-02-04": 9.049741870368232, - "2024-01-28": 9.553596466828896, - "2024-03-03": 12.001474152071902, - "2024-01-26": 9.551467727421956, - "2023-11-07": 8.458373537995351, - "2023-11-25": 9.057526739965748, - "2024-06-29": 6.766485934121564, - "2024-02-28": 11.38543682437042, - "2024-07-21": 6.444132020971223, - "2023-12-01": 9.39235285629245, - "2024-08-07": 4.920770867794718, - "2024-02-25": 10.298097735987, - "2023-12-21": 10.82481623455219, - "2024-08-30": 4.611312779053597, - "2024-06-01": 8.311732769132398, - "2024-03-06": 12.447220730778701, - "2024-07-15": 6.3152267640252315, - "2023-09-30": 7.22049732272155, - "2023-12-12": 11.183512641219105, - "2023-10-04": 6.969895652337666, - "2024-02-13": 10.06841733422792, - "2024-04-16": 8.059732135642387, - "2024-03-02": 11.946333503357996, - "2024-06-02": 8.328306263815048, - "2023-10-08": 6.915294153638585, - "2023-11-20": 9.37678748969673, - "2023-12-20": 10.679536244326387, - "2023-12-31": 10.856079362756597, - "2023-11-06": 8.558198262173772, - "2024-08-03": 5.2832014852967655, - "2024-05-29": 8.733300706902613, - "2024-03-17": 12.148218028275348, - "2024-07-23": 6.228597125848731, - "2024-07-10": 6.002992907518935, - "2024-07-01": 6.771969794179513, - "2024-04-01": 11.761325537629915, - "2024-05-21": 8.835231049213366, - "2024-01-19": 9.631259784560601, - "2023-11-11": 9.184796773896279, - "2024-07-18": 6.438789730012257, - "2023-11-19": 9.167075917979636, - "2024-08-08": 5.0154444558053655, - "2024-01-25": 9.217357189107593, - "2024-03-13": 13.65719470646821, - "2024-02-01": 9.111759969476593, - "2024-08-17": 4.613427796730458, - "2024-03-16": 12.42658930781612, - "2024-06-23": 6.778414568033956, - "2023-11-27": 9.314360604644307, - "2024-01-10": 9.784688042518706, - "2024-01-21": 9.78656036594125, - "2024-03-15": 12.522624020340341, - "2024-06-03": 8.412830150232768, - "2024-01-02": 11.25394806413284, - "2024-07-14": 6.1784897591244565, - "2023-10-25": 7.04958290269098, - "2024-01-01": 10.896003378873857, - "2024-07-29": 6.27414215135665, - "2024-07-27": 6.2868635768261845, - "2024-02-14": 10.210215733604615, - "2024-07-28": 6.297687478227745, - "2024-04-03": 11.009805987745235, - "2024-06-15": 7.137775894549102, - "2023-11-28": 9.128112635461465, - "2023-12-03": 9.504868398652528, - "2024-07-11": 6.074354615172453, - "2024-04-11": 10.764131058012614, - "2023-10-20": 6.386351514752846, - "2023-10-10": 6.861715098142682, - "2024-05-03": 8.73445392588574, - "2024-03-08": 13.426967090174182, - "2024-01-14": 10.204881060515417, - "2023-12-15": 11.228160846797573, - "2023-10-19": 6.233986010667521, - "2024-02-08": 9.57779089046804, - "2023-11-12": 9.427819849547328, - "2023-12-22": 11.306110362255133, - "2024-06-21": 6.848597541931366, - "2024-03-23": 11.486461336234436, - "2024-03-04": 12.466454840714334, - "2024-04-13": 8.900400668072706, - "2024-02-29": 11.699867874109694, - "2023-11-08": 8.595292534924855, - "2024-07-19": 6.336338516841229, - "2024-08-10": 5.151235999999999, - "2023-12-29": 11.310663096335741, - "2023-12-04": 9.61176272804933, - "2024-04-10": 10.739235510372582, - "2024-05-08": 9.034536405823468, - "2024-08-04": 5.066057676496645, - "2024-04-21": 8.660134083383804, - "2023-10-11": 6.655839292445894, - "2024-05-05": 8.881291835499672, - "2024-03-21": 11.739552749046284, - "2024-05-23": 8.4161012666204, - "2024-04-08": 11.317386949948654, - "2024-05-18": 8.668574835327545, - "2024-06-10": 7.842261034645205, - "2023-10-05": 6.920453914776588, - "2023-10-16": 6.6288421813801754, - "2024-05-22": 8.648706446446296, - "2024-02-10": 10.02298035227111, - "2024-04-07": 11.142953238047857, - "2024-02-20": 10.44276032626062, - "2023-11-17": 9.544113976600945, - "2023-12-11": 9.924152169427245, - "2023-11-26": 9.7013866091749, - "2023-10-27": 7.044214287944622, - "2024-01-27": 9.559727739081849, - "2024-03-30": 12.635134095007174, - "2023-11-22": 8.649424584278577, - "2024-06-04": 8.381538200160609, - "2023-11-16": 9.841161092478748, - "2024-02-02": 9.168052079920892, - "2024-06-26": 6.838040518147024, - "2024-01-18": 9.975180643765391, - "2024-02-15": 10.268896547412242, - "2024-08-09": 5.063033529211306, - "2023-10-28": 7.163193913346451, - "2024-03-24": 11.460325257886966, - "2024-07-17": 6.6359892328275, - "2024-04-27": 8.256757631657345, - "2023-12-06": 9.907618281235559, - "2024-01-30": 9.616620135104952, - "2023-11-14": 9.19162452666052, - "2024-07-22": 6.377054100757235, - "2024-06-06": 8.637433937093284, - "2024-07-04": 6.188513555433249, - "2024-08-28": 4.59551413529536, - "2024-05-15": 8.238011508837547, - "2023-11-10": 9.212053669249459, - "2024-01-23": 9.0346216177748, - "2024-01-31": 9.22487082938887, - "2024-05-11": 8.607137679622543, - "2024-01-11": 10.598775280957987, - "2024-02-18": 10.39731794147546, - "2024-07-12": 5.980065162227088, - "2024-03-11": 13.556624823478396, - "2023-10-30": 7.509774593049595, - "2023-12-17": 11.44140014966896, - "2024-02-26": 10.71170627275965, - "2024-06-17": 7.072260026331346, - "2024-01-05": 10.16063438044642, - "2024-06-14": 7.2920394914873405, - "2024-06-13": 7.598778551942556, - "2024-03-14": 13.686110606396252, - "2024-02-21": 9.943979137879197, - "2023-12-13": 11.153283447872415, - "2024-02-27": 11.199572720521099, - "2024-08-29": 4.633180886975363, - "2024-03-31": 12.293004650538524, - "2023-12-09": 10.74207242187459, - "2024-04-02": 11.051394350095403, - "2024-02-06": 9.126923558120167, - "2024-05-31": 8.403602719491968, - "2024-04-09": 11.036697145232838, - "2024-05-25": 8.476984674756373, - "2023-11-04": 7.861660124708586, - "2024-04-20": 8.32870223006027, - "2024-01-15": 10.137286250470055, - "2023-12-28": 11.703457894307807, - "2024-06-09": 7.835242345456857, - "2024-02-07": 9.341745227437846, - "2024-03-19": 11.16698377176898, - "2024-03-10": 13.32493474559137, - "2024-05-02": 8.700210436048103, - "2024-07-24": 6.223129952176763, - "2024-01-12": 10.552956231035626, - "2024-04-19": 8.246086249498061, - "2023-11-29": 9.220788268169555, - "2023-10-15": 6.577350000023673, - "2024-05-28": 8.620116535601895, - "2024-01-24": 9.246725391806747, - "2024-02-11": 10.101545120176096, - "2024-06-08": 7.923908501112131, - "2023-11-30": 9.286047714361551, - "2024-05-24": 8.395197633404328, - "2023-11-15": 9.526147910742205, - "2023-12-16": 11.424569469800012, - "2024-08-26": 5.011200814779105, - "2024-04-04": 11.061908531211804, - "2024-08-23": 4.8561020629311304, - "2023-11-03": 7.681404544107326, - "2024-07-26": 6.12076902008204, - "2024-01-20": 9.675604817282059, - "2024-08-05": 4.4662529519793255, - "2024-08-13": 4.984894912633569, - "2024-03-29": 12.364037232977008, - "2024-06-25": 6.962375568172373, - "2024-08-18": 4.621013594698737, - "2023-10-21": 6.490596541344455, - "2024-01-04": 10.06959346734126, - "2024-08-20": 4.739453793469878, - "2023-11-13": 9.781838287138573, - "2023-10-24": 7.115702658524846, - "2023-11-24": 8.915789400635672, - "2024-07-25": 5.852348855779187, - "2024-07-16": 6.5212687317753035, - "2024-05-16": 8.442908851537338, - "2024-01-29": 9.562546838333711, - "2024-07-03": 6.52653667632072, - "2024-05-04": 8.741746355387884, - "2024-05-27": 8.565980176716314, - "2023-11-02": 7.839102155406684, - "2023-12-18": 10.671412232123085, - "2024-07-05": 5.528629527282242, - "2024-03-25": 11.865781952970368, - "2023-10-29": 7.219223560797927, - "2024-06-18": 6.51070536961074, - "2024-05-01": 8.376816444936466, - "2024-02-16": 10.305986494442935, - "2024-06-22": 6.75379592010588, - "2024-08-12": 5.0351966411264515, - "2024-07-06": 5.849371073304179, - "2024-03-05": 12.511500843561413, - "2024-04-06": 11.017839967615366, - "2023-12-23": 11.20772619721851, - "2023-12-14": 11.465750172594602, - "2024-02-03": 9.163867176672966, - "2024-06-27": 6.849222756384331, - "2024-08-14": 4.888920865149528, - "2024-06-07": 8.567202561071031, - "2024-04-14": 8.203230249649986, - "2023-12-26": 12.02899903467562, - "2023-11-09": 8.794164487109128, - "2023-10-14": 6.611220409324148, - "2024-05-09": 9.04888345246908, - "2024-01-17": 10.137877105992615, - "2024-08-15": 4.678671179130535, - "2024-04-23": 8.774710361386234 - }, - "USD cronos": { - "2024-09-12": 0.07835175151810252, - "2024-09-15": 0.08240094847621954, - "2024-09-22": 0.08798190043254124, - "2024-09-05": 0.07870919952325219, - "2024-09-10": 0.07955043622428322, - "2024-09-11": 0.07942010725185226, - "2024-09-20": 0.08271336472521913, - "2024-09-26": 0.08487102329265003, - "2024-09-16": 0.08032453496579584, - "2024-09-08": 0.07602463910429254, - "2024-09-24": 0.08597449273336365, - "2024-09-29": 0.08634053264006335, - "2024-09-17": 0.07913741054340939, - "2024-09-14": 0.08374367024095633, - "2024-09-03": 0.08085972471152938, - "2024-09-25": 0.0864778751982594, - "2024-09-18": 0.07960487760706501, - "2024-09-07": 0.07490661858069156, - "2024-09-06": 0.07763841890915296, - "2024-09-19": 0.08093320494587723, - "2024-09-30": 0.08618762422124947, - "2024-09-01": 0.0813191748273855, - "2024-08-31": 0.08141037270753564, - "2024-09-02": 0.0786563366302302, - "2024-09-23": 0.08436309534684396, - "2024-09-13": 0.07970569151140339, - "2024-10-01": 0.08345091830863292, - "2024-09-04": 0.07867787259409423, - "2024-09-28": 0.08788272115721493, - "2024-09-21": 0.08458343218308206, - "2024-09-09": 0.07841039302025567, - "2024-09-27": 0.08721594753517825, - "2024-09-27T07": 0.08697066762175414, - "2024-09-27T05": 0.08722450219180136, - "2024-09-30T14": 0.08483699526256246, - "2024-09-27T14": 0.08710198815361807, - "2024-09-27T23": 0.08775352947530587, - "2024-09-28T11": 0.086808577932957, - "2024-09-29T00": 0.08642496239540708, - "2024-09-28T18": 0.08612766275074211, - "2024-09-29T23": 0.08631881779112016, - "2024-10-01T13": 0.08545287457030372, - "2024-09-30T10": 0.08442418156129501, - "2024-09-25T22": 0.08523647745914179, - "2024-09-29T11": 0.08540514251333858, - "2024-09-28T12": 0.08647438227982021, - "2024-09-26T09": 0.08586399505131168, - "2024-09-28T10": 0.08636704313902142, - "2024-09-27T16": 0.08799019524495096, - "2024-09-24T17": 0.08425371259182943, - "2024-09-27T15": 0.08810581884470607, - "2024-09-29T12": 0.08619687138111985, - "2024-09-25T04": 0.08662590518915186, - "2024-09-25T21": 0.0852391172819305, - "2024-09-25T18": 0.0848613701533298, - "2024-09-26T04": 0.08549854468310449, - "2024-09-26T05": 0.08526794804690731, - "2024-09-30T04": 0.0853004724684086, - "2024-09-27T13": 0.08718109995314366, - "2024-09-28T13": 0.08627535950364298, - "2024-09-25T08": 0.08596658905626936, - "2024-09-30T03": 0.08544317074605519, - "2024-10-01T10": 0.08539977997258726, - "2024-09-25T13": 0.08597307851567015, - "2024-10-01T01": 0.0840896044530506, - "2024-09-26T17": 0.0870934517899182, - "2024-09-25T15": 0.08584280188838923, - "2024-09-29T22": 0.08657249078498848, - "2024-09-29T01": 0.0860846782776721, - "2024-09-30T06": 0.08523350474514858, - "2024-09-27T12": 0.08695767838341681, - "2024-09-25T23": 0.08476033824501987, - "2024-09-30T05": 0.08505363920953761, - "2024-09-28T23": 0.08582525238365467, - "2024-09-30T19": 0.08414214255072813, - "2024-09-25T00": 0.08659508532462822, - "2024-10-01T12": 0.08536655809173091, - "2024-09-29T10": 0.08572819592260242, - "2024-09-24T22": 0.08526743939118592, - "2024-09-26T08": 0.08589077529605467, - "2024-09-29T20": 0.08689373733720389, - "2024-09-25T12": 0.0862720049965222, - "2024-09-25T05": 0.08619688893235536, - "2024-09-27T09": 0.08722174443401919, - "2024-09-26T02": 0.0848382023154216, - "2024-09-28T05": 0.08795486606234512, - "2024-09-29T03": 0.08632643969260809, - "2024-09-26T23": 0.0871157053936849, - "2024-09-29T16": 0.08595547411285737, - "2024-09-26T21": 0.08634992680966816, - "2024-09-26T16": 0.08704511432542361, - "2024-09-28T03": 0.08831514052994648, - "2024-09-29T21": 0.08668647996789262, - "2024-09-30T09": 0.08512357458930521, - "2024-09-24T16": 0.08407224640977698, - "2024-09-30T07": 0.08506061636357366, - "2024-09-28T17": 0.08610498168558353, - "2024-09-28T02": 0.08822522185734934, - "2024-09-28T15": 0.08702821742340493, - "2024-09-29T17": 0.08641130232057428, - "2024-09-25T17": 0.08537016443098477, - "2024-09-25T16": 0.08534823827216607, - "2024-10-01T04": 0.08444102267377296, - "2024-10-01T07": 0.08479491385908232, - "2024-09-30T23": 0.08427647971660492, - "2024-09-29T13": 0.08555293002031297, - "2024-09-26T22": 0.08682410929613277, - "2024-10-01T11": 0.0853686351429367, - "2024-09-30T16": 0.08444181400956291, - "2024-09-28T01": 0.08819209992631916, - "2024-09-27T02": 0.08682644994361695, - "2024-09-30T20": 0.08407675739451159, - "2024-09-28T06": 0.08745923815214429, - "2024-09-27T08": 0.08678255947410222, - "2024-10-01T06": 0.08464160465906247, - "2024-09-27T03": 0.08685223696086697, - "2024-09-25T06": 0.08643974949533181, - "2024-10-01T02": 0.08430114334552802, - "2024-09-27T17": 0.08829787663134395, - "2024-09-30T22": 0.08434037744215304, - "2024-09-29T05": 0.08612060945230947, - "2024-09-28T20": 0.08599629479708684, - "2024-09-30T13": 0.08472250849234594, - "2024-09-26T18": 0.0867537751658123, - "2024-09-25T10": 0.08597985639365714, - "2024-09-25T02": 0.08676554960693146, - "2024-09-29T02": 0.08616249421395016, - "2024-09-28T08": 0.08711260999682095, - "2024-09-30T17": 0.08426950582795127, - "2024-09-30T02": 0.08537332871348982, - "2024-09-28T09": 0.08646464624056939, - "2024-09-25T03": 0.0868915111024756, - "2024-09-29T15": 0.08577460655342421, - "2024-09-29T06": 0.08583958264874429, - "2024-09-24T18": 0.08459615761925125, - "2024-09-26T07": 0.08586073671355852, - "2024-09-26T15": 0.0864849460160521, - "2024-09-27T04": 0.08712919737986567, - "2024-09-27T11": 0.08696243966850284, - "2024-09-26T20": 0.08666775321714815, - "2024-09-30T12": 0.08458279153555479, - "2024-09-27T10": 0.08727050007656749, - "2024-09-26T12": 0.08635258752381103, - "2024-09-24T23": 0.08617756846091498, - "2024-09-30T00": 0.08618762422124947, - "2024-09-25T14": 0.08581891558570666, - "2024-09-26T14": 0.08647835459077668, - "2024-09-27T01": 0.08705129540711544, - "2024-09-28T04": 0.08807305917385622, - "2024-09-29T08": 0.08561081310981272, - "2024-09-26T01": 0.08430641724837648, - "2024-09-27T19": 0.08808067789752175, - "2024-09-25T01": 0.08667959156195816, - "2024-09-26T00": 0.08458308875905127, - "2024-09-29T18": 0.08645731295753036, - "2024-09-28T19": 0.08609149421461507, - "2024-09-28T22": 0.08592861181725976, - "2024-09-27T18": 0.0878030218742057, - "2024-09-24T21": 0.08561579362681584, - "2024-09-30T08": 0.08535842992333527, - "2024-09-25T11": 0.08631738243542773, - "2024-09-25T20": 0.08480374065935894, - "2024-10-01T09": 0.08507253452164337, - "2024-10-01T03": 0.08407798880002328, - "2024-09-26T11": 0.08625872806816712, - "2024-09-28T07": 0.08710216760458461, - "2024-09-27T22": 0.08745042636933598, - "2024-09-27T21": 0.0875343936510083, - "2024-09-26T03": 0.08526208907877696, - "2024-09-26T13": 0.08647644854997823, - "2024-09-30T18": 0.08454029629271655, - "2024-10-01T08": 0.08488013549741613, - "2024-09-25T19": 0.08498901502483952, - "2024-09-30T21": 0.08450751566950043, - "2024-09-28T14": 0.08657887779292171, - "2024-09-27T20": 0.0876380614383128, - "2024-09-26T06": 0.0856243520020252, - "2024-09-26T10": 0.08580384757492357, - "2024-09-29T04": 0.0862391778392759, - "2024-09-28T16": 0.0867875002198308, - "2024-10-01T00": 0.08345091830863292, - "2024-09-24T20": 0.08553184189033325, - "2024-09-26T19": 0.08706046991278378, - "2024-09-24T15": 0.0845008162467806, - "2024-09-27T06": 0.08721320692609671, - "2024-09-29T14": 0.0859961931247928, - "2024-09-29T07": 0.08577575599769503, - "2024-09-28T00": 0.08788272115721493, - "2024-09-30T01": 0.08606633022930281, - "2024-09-29T09": 0.08568976792228994, - "2024-09-25T09": 0.08616149337354376, - "2024-09-30T11": 0.08462333726421638, - "2024-09-25T07": 0.08560701192083806, - "2024-09-24T19": 0.08476525492326044, - "2024-09-29T19": 0.08691325507505927, - "2024-09-30T15": 0.0849501901361008, - "2024-09-28T21": 0.08603548487048503, - "2024-10-01T05": 0.08467883754043873, - "2024-10-01T14": 0.08380896885983789, - "2024-09-27T00": 0.08721594753517825, - "latest": 0.0809, - "2024-10-01T15": 0.08246301488224919 - }, - "USD crypto_org": { - "2024-09-12": 0.07835175151810252, - "2024-09-15": 0.08240094847621954, - "2024-09-22": 0.08798190043254124, - "2024-09-05": 0.07870919952325219, - "2024-09-10": 0.07955043622428322, - "2024-09-11": 0.07942010725185226, - "2024-09-20": 0.08271336472521913, - "2024-09-26": 0.08487102329265003, - "2024-09-16": 0.08032453496579584, - "2024-09-08": 0.07602463910429254, - "2024-09-24": 0.08597449273336365, - "2024-09-29": 0.08634053264006335, - "2024-09-17": 0.07913741054340939, - "2024-09-14": 0.08374367024095633, - "2024-09-03": 0.08085972471152938, - "2024-09-25": 0.0864778751982594, - "2024-09-18": 0.07960487760706501, - "2024-09-07": 0.07490661858069156, - "2024-09-06": 0.07763841890915296, - "2024-09-19": 0.08093320494587723, - "2024-09-30": 0.08618762422124947, - "2024-09-01": 0.0813191748273855, - "2024-08-31": 0.08141037270753564, - "2024-09-02": 0.0786563366302302, - "2024-09-23": 0.08436309534684396, - "2024-09-13": 0.07970569151140339, - "2024-10-01": 0.08345091830863292, - "2024-09-04": 0.07867787259409423, - "2024-09-28": 0.08788272115721493, - "2024-09-21": 0.08458343218308206, - "2024-09-09": 0.07841039302025567, - "2024-09-27": 0.08721594753517825, - "2024-09-27T07": 0.08697066762175414, - "2024-09-27T05": 0.08722450219180136, - "2024-09-30T14": 0.08483699526256246, - "2024-09-27T14": 0.08710198815361807, - "2024-09-27T23": 0.08775352947530587, - "2024-09-28T11": 0.086808577932957, - "2024-09-29T00": 0.08642496239540708, - "2024-09-28T18": 0.08612766275074211, - "2024-09-29T23": 0.08631881779112016, - "2024-10-01T13": 0.08545287457030372, - "2024-09-30T10": 0.08442418156129501, - "2024-09-25T22": 0.08523647745914179, - "2024-09-29T11": 0.08540514251333858, - "2024-09-28T12": 0.08647438227982021, - "2024-09-26T09": 0.08586399505131168, - "2024-09-28T10": 0.08636704313902142, - "2024-09-27T16": 0.08799019524495096, - "2024-09-24T17": 0.08425371259182943, - "2024-09-27T15": 0.08810581884470607, - "2024-09-29T12": 0.08619687138111985, - "2024-09-25T04": 0.08662590518915186, - "2024-09-25T21": 0.0852391172819305, - "2024-09-25T18": 0.0848613701533298, - "2024-09-26T04": 0.08549854468310449, - "2024-09-26T05": 0.08526794804690731, - "2024-09-30T04": 0.0853004724684086, - "2024-09-27T13": 0.08718109995314366, - "2024-09-28T13": 0.08627535950364298, - "2024-09-25T08": 0.08596658905626936, - "2024-09-30T03": 0.08544317074605519, - "2024-10-01T10": 0.08539977997258726, - "2024-09-25T13": 0.08597307851567015, - "2024-10-01T01": 0.0840896044530506, - "2024-09-26T17": 0.0870934517899182, - "2024-09-25T15": 0.08584280188838923, - "2024-09-29T22": 0.08657249078498848, - "2024-09-29T01": 0.0860846782776721, - "2024-09-30T06": 0.08523350474514858, - "2024-09-27T12": 0.08695767838341681, - "2024-09-25T23": 0.08476033824501987, - "2024-09-30T05": 0.08505363920953761, - "2024-09-28T23": 0.08582525238365467, - "2024-09-30T19": 0.08414214255072813, - "2024-09-25T00": 0.08659508532462822, - "2024-10-01T12": 0.08536655809173091, - "2024-09-29T10": 0.08572819592260242, - "2024-09-24T22": 0.08526743939118592, - "2024-09-26T08": 0.08589077529605467, - "2024-09-29T20": 0.08689373733720389, - "2024-09-25T12": 0.0862720049965222, - "2024-09-25T05": 0.08619688893235536, - "2024-09-27T09": 0.08722174443401919, - "2024-09-26T02": 0.0848382023154216, - "2024-09-28T05": 0.08795486606234512, - "2024-09-29T03": 0.08632643969260809, - "2024-09-26T23": 0.0871157053936849, - "2024-09-29T16": 0.08595547411285737, - "2024-09-26T21": 0.08634992680966816, - "2024-09-26T16": 0.08704511432542361, - "2024-09-28T03": 0.08831514052994648, - "2024-09-29T21": 0.08668647996789262, - "2024-09-30T09": 0.08512357458930521, - "2024-09-24T16": 0.08407224640977698, - "2024-09-30T07": 0.08506061636357366, - "2024-09-28T17": 0.08610498168558353, - "2024-09-28T02": 0.08822522185734934, - "2024-09-28T15": 0.08702821742340493, - "2024-09-29T17": 0.08641130232057428, - "2024-09-25T17": 0.08537016443098477, - "2024-09-25T16": 0.08534823827216607, - "2024-10-01T04": 0.08444102267377296, - "2024-10-01T07": 0.08479491385908232, - "2024-09-30T23": 0.08427647971660492, - "2024-09-29T13": 0.08555293002031297, - "2024-09-26T22": 0.08682410929613277, - "2024-10-01T11": 0.0853686351429367, - "2024-09-30T16": 0.08444181400956291, - "2024-09-28T01": 0.08819209992631916, - "2024-09-27T02": 0.08682644994361695, - "2024-09-30T20": 0.08407675739451159, - "2024-09-28T06": 0.08745923815214429, - "2024-09-27T08": 0.08678255947410222, - "2024-10-01T06": 0.08464160465906247, - "2024-09-27T03": 0.08685223696086697, - "2024-09-25T06": 0.08643974949533181, - "2024-10-01T02": 0.08430114334552802, - "2024-09-27T17": 0.08829787663134395, - "2024-09-30T22": 0.08434037744215304, - "2024-09-29T05": 0.08612060945230947, - "2024-09-28T20": 0.08599629479708684, - "2024-09-30T13": 0.08472250849234594, - "2024-09-26T18": 0.0867537751658123, - "2024-09-25T10": 0.08597985639365714, - "2024-09-25T02": 0.08676554960693146, - "2024-09-29T02": 0.08616249421395016, - "2024-09-28T08": 0.08711260999682095, - "2024-09-30T17": 0.08426950582795127, - "2024-09-30T02": 0.08537332871348982, - "2024-09-28T09": 0.08646464624056939, - "2024-09-25T03": 0.0868915111024756, - "2024-09-29T15": 0.08577460655342421, - "2024-09-29T06": 0.08583958264874429, - "2024-09-24T18": 0.08459615761925125, - "2024-09-26T07": 0.08586073671355852, - "2024-09-26T15": 0.0864849460160521, - "2024-09-27T04": 0.08712919737986567, - "2024-09-27T11": 0.08696243966850284, - "2024-09-26T20": 0.08666775321714815, - "2024-09-30T12": 0.08458279153555479, - "2024-09-27T10": 0.08727050007656749, - "2024-09-26T12": 0.08635258752381103, - "2024-09-24T23": 0.08617756846091498, - "2024-09-30T00": 0.08618762422124947, - "2024-09-25T14": 0.08581891558570666, - "2024-09-26T14": 0.08647835459077668, - "2024-09-27T01": 0.08705129540711544, - "2024-09-28T04": 0.08807305917385622, - "2024-09-29T08": 0.08561081310981272, - "2024-09-26T01": 0.08430641724837648, - "2024-09-27T19": 0.08808067789752175, - "2024-09-25T01": 0.08667959156195816, - "2024-09-26T00": 0.08458308875905127, - "2024-09-29T18": 0.08645731295753036, - "2024-09-28T19": 0.08609149421461507, - "2024-09-28T22": 0.08592861181725976, - "2024-09-27T18": 0.0878030218742057, - "2024-09-24T21": 0.08561579362681584, - "2024-09-30T08": 0.08535842992333527, - "2024-09-25T11": 0.08631738243542773, - "2024-09-25T20": 0.08480374065935894, - "2024-10-01T09": 0.08507253452164337, - "2024-10-01T03": 0.08407798880002328, - "2024-09-26T11": 0.08625872806816712, - "2024-09-28T07": 0.08710216760458461, - "2024-09-27T22": 0.08745042636933598, - "2024-09-27T21": 0.0875343936510083, - "2024-09-26T03": 0.08526208907877696, - "2024-09-26T13": 0.08647644854997823, - "2024-09-30T18": 0.08454029629271655, - "2024-10-01T08": 0.08488013549741613, - "2024-09-25T19": 0.08498901502483952, - "2024-09-30T21": 0.08450751566950043, - "2024-09-28T14": 0.08657887779292171, - "2024-09-27T20": 0.0876380614383128, - "2024-09-26T06": 0.0856243520020252, - "2024-09-26T10": 0.08580384757492357, - "2024-09-29T04": 0.0862391778392759, - "2024-09-28T16": 0.0867875002198308, - "2024-10-01T00": 0.08345091830863292, - "2024-09-24T20": 0.08553184189033325, - "2024-09-26T19": 0.08706046991278378, - "2024-09-24T15": 0.0845008162467806, - "2024-09-27T06": 0.08721320692609671, - "2024-09-29T14": 0.0859961931247928, - "2024-09-29T07": 0.08577575599769503, - "2024-09-28T00": 0.08788272115721493, - "2024-09-30T01": 0.08606633022930281, - "2024-09-29T09": 0.08568976792228994, - "2024-09-25T09": 0.08616149337354376, - "2024-09-30T11": 0.08462333726421638, - "2024-09-25T07": 0.08560701192083806, - "2024-09-24T19": 0.08476525492326044, - "2024-09-29T19": 0.08691325507505927, - "2024-09-30T15": 0.0849501901361008, - "2024-09-28T21": 0.08603548487048503, - "2024-10-01T05": 0.08467883754043873, - "2024-10-01T14": 0.0827, - "2024-09-27T00": 0.08721594753517825, - "latest": 0.0809, - "2024-10-01T15": 0.0827 - }, - "USD dash": { - "2024-09-12": 24.16827702312874, - "2024-09-15": 24.290439420996268, - "2024-09-22": 24.9790606908022, - "2024-09-05": 23.72162706436017, - "2024-09-10": 24.01306553150084, - "2024-09-11": 23.695676894460295, - "2024-09-20": 25.007151250688146, - "2024-09-26": 25.84028149769567, - "2024-09-16": 23.37151885023888, - "2024-09-08": 23.974316580946976, - "2024-09-24": 25.4627163861945, - "2024-09-29": 25.543068145131382, - "2024-09-17": 23.77436662618987, - "2024-09-14": 24.29826597671331, - "2024-09-03": 24.617248035835892, - "2024-09-25": 25.811509745880993, - "2024-09-18": 23.881945667231207, - "2024-09-07": 23.42042311606237, - "2024-09-06": 23.587117142531838, - "2024-09-19": 25.144103536373763, - "2024-09-30": 25.021268194309034, - "2024-09-01": 23.25218130314183, - "2024-08-31": 23.61050450429378, - "2024-09-02": 23.326892076080973, - "2024-09-23": 25.062688054357835, - "2024-09-13": 23.965735699010622, - "2024-10-01": 24.479406267378174, - "2024-09-04": 23.903966396285725, - "2024-09-28": 25.99350377503207, - "2024-09-21": 25.19369803256403, - "2024-09-09": 24.051354920087952, - "2024-09-27": 26.1909265926129, - "2024-09-27T07": 26.22182399248827, - "2024-09-27T05": 26.24881943016028, - "2024-09-30T14": 24.9752538, - "2024-09-27T14": 26.34440753431831, - "2024-09-27T23": 26.11001477343192, - "2024-09-28T11": 26.6115966, - "2024-09-29T00": 25.712313899999998, - "2024-09-28T18": 25.605376000000003, - "2024-09-29T23": 25.494619393845966, - "2024-10-01T13": 24.1373446, - "2024-09-30T10": 25.0084994, - "2024-09-25T22": 25.756233485956216, - "2024-09-29T11": 25.40254, - "2024-09-28T12": 26.432378699999997, - "2024-09-26T09": 25.906377409802246, - "2024-09-28T10": 26.403432, - "2024-09-27T16": 26.297139290867726, - "2024-09-24T17": 25.45808761317928, - "2024-09-27T15": 26.38307283609364, - "2024-09-29T12": 25.4430528, - "2024-09-25T04": 25.818709000000002, - "2024-09-25T21": 25.896114999999998, - "2024-09-25T18": 25.765103699999997, - "2024-09-26T04": 25.812812139957487, - "2024-09-26T05": 25.88461206251702, - "2024-09-30T04": 24.898754999999998, - "2024-09-27T13": 26.270833528288797, - "2024-09-28T13": 26.282365199999997, - "2024-09-25T08": 25.658241380859334, - "2024-09-30T03": 24.818510800000002, - "2024-10-01T10": 24.796032, - "2024-09-25T13": 25.6466655, - "2024-10-01T01": 24.5269938, - "2024-09-26T17": 26.02486773350052, - "2024-09-25T15": 25.978441200000002, - "2024-09-29T22": 25.5330636, - "2024-09-29T01": 25.5728127, - "2024-09-30T06": 25.240504799999997, - "2024-09-27T12": 26.275604411006864, - "2024-09-25T23": 25.5543768, - "2024-09-30T05": 25.1302513, - "2024-09-28T23": 25.6228182, - "2024-09-30T19": 24.730598799999996, - "2024-09-25T00": 25.8192254, - "2024-10-01T12": 24.6567942, - "2024-09-29T10": 25.332279699999997, - "2024-09-24T22": 25.918120889690478, - "2024-09-26T08": 26.038964053197738, - "2024-09-29T20": 25.684108799999997, - "2024-09-25T12": 25.827933599999998, - "2024-09-25T05": 25.7287135, - "2024-09-27T09": 26.184858104162657, - "2024-09-26T02": 25.601787087222153, - "2024-09-28T05": 26.1662784, - "2024-09-29T03": 25.578427932694975, - "2024-09-26T23": 25.902199808138928, - "2024-09-29T16": 25.672567, - "2024-09-26T21": 25.776909771737227, - "2024-09-26T16": 26.161561333172067, - "2024-09-28T03": 26.293154799999996, - "2024-09-29T21": 25.703855, - "2024-09-30T09": 25.230252300000004, - "2024-09-24T16": 25.405444490835972, - "2024-09-30T07": 25.280505599999998, - "2024-09-28T17": 25.6753907, - "2024-09-28T02": 26.353161999999998, - "2024-09-28T15": 26.0423436, - "2024-09-29T17": 25.7133423, - "2024-09-25T17": 25.695631, - "2024-09-25T16": 25.858707, - "2024-10-01T04": 24.7261456, - "2024-10-01T07": 24.817725643914105, - "2024-09-30T23": 24.4038975, - "2024-09-29T13": 25.4835672, - "2024-09-26T22": 25.9291054481096, - "2024-10-01T11": 24.7662845, - "2024-09-30T16": 24.8555252, - "2024-09-28T01": 26.153137999999995, - "2024-09-27T02": 25.914734097355694, - "2024-09-30T20": 24.7223337, - "2024-09-28T06": 25.923888000000005, - "2024-09-27T08": 26.23630736152992, - "2024-10-01T06": 24.7795882, - "2024-09-27T03": 25.89516847096433, - "2024-09-25T06": 25.5784652, - "2024-10-01T02": 24.4258248, - "2024-09-27T17": 26.25777529562951, - "2024-09-30T22": 24.7028341, - "2024-09-29T05": 25.490764699999996, - "2024-09-28T20": 25.622562000000002, - "2024-09-30T13": 25.187481000000002, - "2024-09-26T18": 25.896221779203497, - "2024-09-25T10": 25.848449000000002, - "2024-09-25T02": 26.1184328, - "2024-09-29T02": 25.6705134, - "2024-09-28T08": 25.7346314, - "2024-09-30T17": 24.8735312, - "2024-09-30T02": 24.981249000000002, - "2024-09-28T09": 25.67001988482449, - "2024-09-25T03": 25.958702000000002, - "2024-09-29T15": 25.543320199999997, - "2024-09-29T06": 25.391015600000003, - "2024-09-24T18": 25.474849475169382, - "2024-09-26T07": 26.024410529681973, - "2024-09-26T15": 26.047628061537583, - "2024-09-27T04": 26.176358038781725, - "2024-09-27T11": 26.048051607065403, - "2024-09-26T20": 25.83504749469047, - "2024-09-30T12": 25.128240899999998, - "2024-09-27T10": 25.967792378260434, - "2024-09-26T12": 26.057740785187452, - "2024-09-24T23": 25.919548308263046, - "2024-09-30T00": 25.303036, - "2024-09-25T14": 25.8671543, - "2024-09-26T14": 25.961374271860695, - "2024-09-27T01": 26.140674151310026, - "2024-09-28T04": 26.3234216, - "2024-09-29T08": 25.303542, - "2024-09-26T01": 25.622262963736897, - "2024-09-27T19": 26.186283658940614, - "2024-09-25T01": 26.03987063312084, - "2024-09-26T00": 25.522423479728616, - "2024-09-29T18": 25.75515, - "2024-09-28T19": 25.652565, - "2024-09-28T22": 25.4830576, - "2024-09-27T18": 26.13675243819102, - "2024-09-24T21": 25.77303582931018, - "2024-09-30T08": 25.231009200000003, - "2024-09-25T11": 25.7881947, - "2024-09-25T20": 25.8863754, - "2024-10-01T09": 24.796528, - "2024-10-01T03": 24.6234912, - "2024-09-26T11": 26.064818779333272, - "2024-09-28T07": 25.905179999999998, - "2024-09-27T22": 26.218157815876896, - "2024-09-27T21": 26.299477793056795, - "2024-09-26T03": 25.755801291421047, - "2024-09-26T13": 25.87372001135171, - "2024-09-30T18": 24.821557799999997, - "2024-10-01T15": 23.972806000000002, - "2024-10-01T08": 24.7570288, - "2024-09-25T19": 25.8563796, - "2024-09-30T21": 24.8020608, - "2024-09-28T14": 26.192619, - "2024-09-27T20": 26.203487595297055, - "2024-09-26T06": 25.968224482798917, - "2024-09-26T10": 26.09836427274438, - "2024-09-29T04": 25.500764999999998, - "2024-09-28T16": 25.872587, - "2024-10-01T00": 24.3492816, - "2024-09-24T20": 25.696862947485144, - "2024-09-26T19": 25.941088700737517, - "2024-09-24T15": 25.454348643077576, - "2024-09-27T06": 26.243235807916367, - "2024-09-29T14": 25.604352000000002, - "2024-09-29T07": 25.421779400000002, - "2024-09-28T00": 26.113133199999996, - "2024-09-30T01": 25.143095643057986, - "2024-09-29T09": 25.422033600000002, - "2024-09-25T09": 25.7381982, - "2024-09-30T11": 25.102656044747548, - "2024-09-25T07": 25.49898, - "2024-09-24T19": 25.49220425422818, - "2024-09-29T19": 25.7346314, - "2024-09-30T15": 24.9267591, - "2024-09-28T21": 25.4327973, - "2024-10-01T05": 24.6786426, - "2024-10-01T14": 23.972806000000002, - "2024-09-27T00": 26.065735627714144, - "latest": 23.19 - }, - "USD dogecoin": { - "2024-09-12": 0.10205162915685234, - "2024-09-15": 0.10538603615157362, - "2024-09-22": 0.10672888513389571, - "2024-09-05": 0.09764711038313549, - "2024-09-10": 0.10291497403677378, - "2024-09-11": 0.10064324213198791, - "2024-09-20": 0.10542739121388557, - "2024-09-26": 0.11451869671837535, - "2024-09-16": 0.10099932090135126, - "2024-09-08": 0.09548972694820047, - "2024-09-24": 0.10847169423776824, - "2024-09-29": 0.12695421755764424, - "2024-09-17": 0.1008483844636321, - "2024-09-14": 0.10603354564489337, - "2024-09-03": 0.09901993569871309, - "2024-09-25": 0.10958923515458055, - "2024-09-18": 0.10087727087433851, - "2024-09-07": 0.09447596627313815, - "2024-09-06": 0.09450605949445133, - "2024-09-19": 0.1047148363440945, - "2024-09-30": 0.12037722456507595, - "2024-09-01": 0.09884894273072754, - "2024-08-31": 0.10131460538565377, - "2024-09-02": 0.09702647299376044, - "2024-09-23": 0.10710925879812899, - "2024-09-13": 0.10563738115778637, - "2024-10-01": 0.11615699943484717, - "2024-09-04": 0.09624902048976253, - "2024-09-28": 0.12605727575272674, - "2024-09-21": 0.10690705045248734, - "2024-09-09": 0.09823445773061858, - "2024-09-27": 0.12361705620181092, - "2024-09-27T07": 0.12284512467133724, - "2024-09-27T05": 0.12129611354230961, - "2024-09-30T14": 0.11922039430830704, - "2024-09-27T14": 0.12678440386506387, - "2024-09-27T23": 0.12398670333713649, - "2024-09-28T11": 0.12400932825723673, - "2024-09-29T00": 0.12828209702044827, - "2024-09-28T18": 0.13048415469537303, - "2024-09-29T23": 0.12499608014232046, - "2024-10-01T13": 0.11494662798870486, - "2024-09-30T10": 0.11982722822191981, - "2024-09-25T22": 0.10928269959939042, - "2024-09-29T11": 0.1270538310103196, - "2024-09-28T12": 0.12370643004725404, - "2024-09-26T09": 0.11359914153030512, - "2024-09-28T10": 0.1226489740117878, - "2024-09-27T16": 0.12617942937937424, - "2024-09-24T17": 0.10878049880358368, - "2024-09-27T15": 0.12651178079543118, - "2024-09-29T12": 0.12678659675904802, - "2024-09-25T04": 0.11019941465922821, - "2024-09-25T21": 0.11022327969266517, - "2024-09-25T18": 0.10953765515309626, - "2024-09-26T04": 0.10884980863151042, - "2024-09-26T05": 0.10975602926622995, - "2024-09-30T04": 0.12222474393972486, - "2024-09-27T13": 0.12445528892163196, - "2024-09-28T13": 0.12335646001656918, - "2024-09-25T08": 0.10906532771894381, - "2024-09-30T03": 0.12171439271599475, - "2024-10-01T10": 0.11810512078009476, - "2024-09-25T13": 0.10895337146542745, - "2024-10-01T01": 0.11636911538743733, - "2024-09-26T17": 0.11914400278856238, - "2024-09-25T15": 0.1095454079684722, - "2024-09-29T22": 0.12638088396762204, - "2024-09-29T01": 0.1283836200799622, - "2024-09-30T06": 0.12298159087561561, - "2024-09-27T12": 0.12316537241203444, - "2024-09-25T23": 0.10850132386000502, - "2024-09-30T05": 0.12281134785214029, - "2024-09-28T23": 0.12838166203868126, - "2024-09-30T19": 0.11781551142236465, - "2024-09-25T00": 0.10999254617591939, - "2024-10-01T12": 0.1180306760108536, - "2024-09-29T10": 0.1265692186565683, - "2024-09-24T22": 0.10983121644205843, - "2024-09-26T08": 0.1140457188493733, - "2024-09-29T20": 0.12745370119564978, - "2024-09-25T12": 0.10948392482300762, - "2024-09-25T05": 0.10992385353385882, - "2024-09-27T09": 0.12402429683279845, - "2024-09-26T02": 0.10858036569319758, - "2024-09-28T05": 0.12506489794299494, - "2024-09-29T03": 0.12919232129813463, - "2024-09-26T23": 0.1176352301444705, - "2024-09-29T16": 0.12573938447370206, - "2024-09-26T21": 0.1165400202505201, - "2024-09-26T16": 0.11813678973758979, - "2024-09-28T03": 0.12606191526497548, - "2024-09-29T21": 0.12719093955459143, - "2024-09-30T09": 0.12139279171528666, - "2024-09-24T16": 0.10743376417236283, - "2024-09-30T07": 0.1228337141805195, - "2024-09-28T17": 0.12935295361948534, - "2024-09-28T02": 0.125960792816229, - "2024-09-28T15": 0.130839848818726, - "2024-09-29T17": 0.1265993286786015, - "2024-09-25T17": 0.10953038424670351, - "2024-09-25T16": 0.11005214409720147, - "2024-10-01T04": 0.11780367790043361, - "2024-10-01T07": 0.11862132072951835, - "2024-09-30T23": 0.11456910114038478, - "2024-09-29T13": 0.12618007382229884, - "2024-09-26T22": 0.11754300591344298, - "2024-10-01T11": 0.11865377291038745, - "2024-09-30T16": 0.11744024641823299, - "2024-09-28T01": 0.12455707980870472, - "2024-09-27T02": 0.11738379600111955, - "2024-09-30T20": 0.11853119668680796, - "2024-09-28T06": 0.12360544365388185, - "2024-09-27T08": 0.12377442374795639, - "2024-10-01T06": 0.11840676776063802, - "2024-09-27T03": 0.11800243788950737, - "2024-09-25T06": 0.10912348384908006, - "2024-10-01T02": 0.11603870025491572, - "2024-09-27T17": 0.12402281972539603, - "2024-09-30T22": 0.11633863787530965, - "2024-09-29T05": 0.12810159192640616, - "2024-09-28T20": 0.13067860775093273, - "2024-09-30T13": 0.12058237204916827, - "2024-09-26T18": 0.1178986703173041, - "2024-09-25T10": 0.10894162585919219, - "2024-09-25T02": 0.11049622737510263, - "2024-09-29T02": 0.12963729899035986, - "2024-09-28T08": 0.121816348876721, - "2024-09-30T17": 0.11745318834720941, - "2024-09-30T02": 0.12212889599387071, - "2024-09-28T09": 0.12152666530285824, - "2024-09-25T03": 0.11027235845023473, - "2024-09-29T15": 0.12592311560636218, - "2024-09-29T06": 0.12732947711281647, - "2024-09-24T18": 0.10914686679166995, - "2024-09-26T07": 0.11351374430291372, - "2024-09-26T15": 0.11614375330959707, - "2024-09-27T04": 0.1202473527416921, - "2024-09-27T11": 0.12277063511481057, - "2024-09-26T20": 0.11694164713896466, - "2024-09-30T12": 0.12011346161990605, - "2024-09-27T10": 0.12359063356448086, - "2024-09-26T12": 0.11406206837147091, - "2024-09-24T23": 0.10978845497685286, - "2024-09-30T00": 0.12360213466173564, - "2024-09-25T14": 0.10949935530799196, - "2024-09-26T14": 0.11493166191541757, - "2024-09-27T01": 0.11845346361366309, - "2024-09-28T04": 0.12596655377755384, - "2024-09-29T08": 0.12637554024658865, - "2024-09-26T01": 0.1074757972985511, - "2024-09-27T19": 0.12419552396473112, - "2024-09-25T01": 0.11041843879623879, - "2024-09-26T00": 0.10838190780636688, - "2024-09-29T18": 0.12698475014360616, - "2024-09-28T19": 0.13080640961909348, - "2024-09-28T22": 0.12916079150785162, - "2024-09-27T18": 0.12396573282697508, - "2024-09-24T21": 0.10897070262503057, - "2024-09-30T08": 0.12239609872542652, - "2024-09-25T11": 0.109780211802575, - "2024-09-25T20": 0.11024192168656868, - "2024-10-01T09": 0.11835340533844259, - "2024-10-01T03": 0.11717265295755179, - "2024-09-26T11": 0.114246042469097, - "2024-09-28T07": 0.12270175803978461, - "2024-09-27T22": 0.12400350042608091, - "2024-09-27T21": 0.12375538234057445, - "2024-09-26T03": 0.10870779575361053, - "2024-09-26T13": 0.11438172521393693, - "2024-09-30T18": 0.11749650168921405, - "2024-10-01T08": 0.11837124929544977, - "2024-09-25T19": 0.10979472853092077, - "2024-09-30T21": 0.11850784267677923, - "2024-09-28T14": 0.12925383922892444, - "2024-09-27T20": 0.12393098387752108, - "2024-09-26T06": 0.113042637256066, - "2024-09-26T10": 0.11467976162699893, - "2024-09-29T04": 0.12895396507884838, - "2024-09-28T16": 0.1306468088792241, - "2024-10-01T00": 0.11491969971073303, - "2024-09-24T20": 0.10934612533504709, - "2024-09-26T19": 0.11825260448016538, - "2024-09-24T15": 0.10774471949483228, - "2024-09-27T06": 0.12322436330172244, - "2024-09-29T14": 0.12595192850336223, - "2024-09-29T07": 0.12650251292275586, - "2024-09-28T00": 0.12411575524450341, - "2024-09-30T01": 0.12346427965839585, - "2024-09-29T09": 0.12689611888189825, - "2024-09-25T09": 0.10881904042508045, - "2024-09-30T11": 0.12031070967171252, - "2024-09-25T07": 0.10886679332472245, - "2024-09-24T19": 0.10924669865671115, - "2024-09-29T19": 0.12767323516815304, - "2024-09-30T15": 0.11883735913790577, - "2024-09-28T21": 0.1290466934999875, - "2024-10-01T05": 0.11788227746251609, - "2024-10-01T14": 0.11482886644284952, - "2024-09-27T00": 0.11821579185700987, - "latest": 0.108873, - "2024-10-01T15": 0.11192349951930533 - }, - "USD elrond": { - "2024-09-12": 26.59911905655293, - "2024-09-15": 26.31172005651452, - "2024-09-22": 28.009382385004102, - "2024-09-05": 25.805286224300964, - "2024-09-10": 26.4947970750987, - "2024-09-11": 25.94784097121474, - "2024-09-20": 27.793981482863163, - "2024-09-26": 29.574375956809472, - "2024-09-16": 24.84983375438192, - "2024-09-08": 24.887884614476835, - "2024-09-24": 28.554928425063338, - "2024-09-29": 28.98338176027723, - "2024-09-17": 25.589999429672947, - "2024-09-14": 26.4979370052703, - "2024-09-03": 27.72742904303625, - "2024-09-25": 29.117960381983227, - "2024-09-18": 25.853542044396196, - "2024-09-07": 24.76772730488545, - "2024-09-06": 24.41528108476023, - "2024-09-19": 27.198726025331435, - "2024-09-30": 28.391254593416235, - "2024-09-01": 28.006320939473866, - "2024-08-31": 29.55834524951383, - "2024-09-02": 27.66768912872355, - "2024-09-23": 28.6078211716058, - "2024-09-13": 26.623870548180676, - "2024-10-01": 27.607052942441502, - "2024-09-04": 26.505611015768892, - "2024-09-28": 29.430776947821897, - "2024-09-21": 28.371314529933496, - "2024-09-09": 25.879838551772675, - "2024-09-27": 30.135185814082565, - "2024-09-27T07": 30.146482280729455, - "2024-09-27T05": 29.89606743524551, - "2024-09-30T14": 28.385120212543008, - "2024-09-27T14": 30.292602453965156, - "2024-09-27T23": 30.299648308038936, - "2024-09-28T11": 29.531337405019762, - "2024-09-29T00": 29.26763693621603, - "2024-09-28T18": 29.32403113791334, - "2024-09-29T23": 29.510439726134624, - "2024-10-01T13": 27.830185762404973, - "2024-09-30T10": 28.346669929229616, - "2024-09-25T22": 29.107989787155216, - "2024-09-29T11": 28.555054100815415, - "2024-09-28T12": 29.543607107213823, - "2024-09-26T09": 29.315848466178977, - "2024-09-28T10": 29.173133330912254, - "2024-09-27T16": 30.24155592891437, - "2024-09-24T17": 28.12052545802811, - "2024-09-27T15": 30.330885584578088, - "2024-09-29T12": 28.716749733427243, - "2024-09-25T04": 29.303532050777296, - "2024-09-25T21": 29.36359111908421, - "2024-09-25T18": 28.862321065477037, - "2024-09-26T04": 28.97920320430683, - "2024-09-26T05": 28.860512799548008, - "2024-09-30T04": 28.674037143856587, - "2024-09-27T13": 30.180192835057166, - "2024-09-28T13": 29.42560061050913, - "2024-09-25T08": 28.98949421118973, - "2024-09-30T03": 28.532496948910143, - "2024-10-01T10": 28.17011703538751, - "2024-09-25T13": 29.023222641382826, - "2024-10-01T01": 27.632080163198868, - "2024-09-26T17": 29.906614667747874, - "2024-09-25T15": 29.329214554272262, - "2024-09-29T22": 29.950800854624468, - "2024-09-29T01": 29.027224375633754, - "2024-09-30T06": 28.879273268089385, - "2024-09-27T12": 30.149662521782464, - "2024-09-25T23": 29.06464358532849, - "2024-09-30T05": 28.55167726309747, - "2024-09-28T23": 29.123424926043327, - "2024-09-30T19": 28.03575859351308, - "2024-10-01T12": 27.971690948025486, - "2024-09-29T10": 28.596398463849816, - "2024-09-24T22": 28.912827724462765, - "2024-09-26T08": 29.428156516848592, - "2024-09-29T20": 29.989727527812295, - "2024-09-25T12": 29.091659050005518, - "2024-09-25T05": 29.047321120447812, - "2024-09-27T09": 30.228178905623572, - "2024-09-26T02": 28.728637235205635, - "2024-09-28T05": 30.230753573161056, - "2024-09-29T03": 29.118742931000135, - "2024-09-26T23": 29.708080373966776, - "2024-09-29T16": 29.101666707834266, - "2024-09-26T21": 29.33818949856952, - "2024-09-26T16": 29.825981818012004, - "2024-09-28T03": 30.38428169243075, - "2024-09-29T21": 30.021333669625523, - "2024-09-30T09": 28.739381783560923, - "2024-09-24T16": 28.086078457244668, - "2024-09-30T07": 28.674046023651954, - "2024-09-28T17": 29.2685853809501, - "2024-09-28T02": 30.31524837180637, - "2024-09-28T15": 29.511351775980103, - "2024-09-29T17": 28.93188602167207, - "2024-09-25T17": 29.02382851617228, - "2024-09-25T16": 29.254994710469173, - "2024-10-01T04": 27.994434812325387, - "2024-10-01T07": 28.191483226046696, - "2024-09-30T23": 27.718481443736724, - "2024-09-29T13": 28.54145193972226, - "2024-09-26T22": 29.63630188473834, - "2024-10-01T11": 28.235181374854662, - "2024-09-30T16": 27.995632927274983, - "2024-09-28T01": 30.288847870668153, - "2024-09-27T02": 29.528034244673336, - "2024-09-30T20": 28.00016377233016, - "2024-09-28T06": 30.003629029745955, - "2024-09-27T08": 30.139624408531215, - "2024-10-01T06": 28.065884906389513, - "2024-09-27T03": 29.484209108135474, - "2024-09-25T06": 29.128412181967203, - "2024-10-01T02": 27.55344289812151, - "2024-09-27T17": 30.36319522831118, - "2024-09-30T22": 28.11907997167408, - "2024-09-29T05": 29.05026182572838, - "2024-09-28T20": 29.25926181038288, - "2024-09-30T13": 28.473419619862124, - "2024-09-26T18": 29.648839418224647, - "2024-09-25T10": 29.132673493064512, - "2024-09-25T02": 29.276533167383505, - "2024-09-29T02": 29.08097072248759, - "2024-09-28T08": 29.505632142274045, - "2024-09-30T17": 27.960716417083486, - "2024-09-30T02": 28.90441587192151, - "2024-09-28T09": 29.061143748474496, - "2024-09-25T03": 29.18534460998642, - "2024-09-29T15": 28.881092345425436, - "2024-09-29T06": 28.952641091510145, - "2024-09-24T18": 28.100729610831277, - "2024-09-26T07": 29.347189023037835, - "2024-09-26T15": 29.584021948153303, - "2024-09-27T04": 29.82142186723788, - "2024-09-27T11": 29.936358449087596, - "2024-09-26T20": 29.69500995148185, - "2024-09-30T12": 28.40323255981166, - "2024-09-27T10": 30.13471113897458, - "2024-09-26T12": 29.656305291097116, - "2024-09-24T23": 29.117256484769293, - "2024-09-30T00": 29.373627587656987, - "2024-09-25T14": 29.331473596504164, - "2024-09-26T14": 29.540798142664595, - "2024-09-27T01": 29.68598131248647, - "2024-09-28T04": 30.22765242914041, - "2024-09-29T08": 28.557402124688494, - "2024-09-26T01": 28.57061042745005, - "2024-09-27T19": 30.275444104814635, - "2024-09-25T01": 29.279158822879268, - "2024-09-26T00": 29.018484863548082, - "2024-09-29T18": 29.103308223302967, - "2024-09-28T19": 29.264519822080768, - "2024-09-28T22": 29.071589114716755, - "2024-09-27T18": 30.113515802430456, - "2024-09-24T21": 28.655212433644333, - "2024-09-30T08": 28.91785091430571, - "2024-09-25T11": 29.03725008890008, - "2024-09-25T20": 29.26012404390723, - "2024-10-01T09": 28.11587130057664, - "2024-10-01T03": 27.64410475465139, - "2024-09-26T11": 29.71518330383504, - "2024-09-28T07": 29.779393897273565, - "2024-09-27T22": 30.011538058961627, - "2024-09-27T21": 30.06323114390814, - "2024-09-26T03": 28.870956074547454, - "2024-09-26T13": 29.655144037831796, - "2024-09-30T18": 28.086138155392497, - "2024-10-01T08": 28.207309739359165, - "2024-09-25T19": 29.287234906124787, - "2024-09-30T21": 28.132529873372032, - "2024-09-28T14": 29.431597389487326, - "2024-09-27T20": 30.152590975409026, - "2024-09-26T06": 29.346488699197597, - "2024-09-26T10": 29.47042491360303, - "2024-09-29T04": 29.196308226765655, - "2024-09-28T16": 29.427771071321484, - "2024-10-01T00": 27.298283219295364, - "2024-09-24T20": 28.663841086607377, - "2024-09-26T19": 29.808103430937805, - "2024-09-24T15": 28.10833095750237, - "2024-09-27T06": 30.070794338670968, - "2024-09-29T14": 28.74910901966445, - "2024-09-29T07": 28.761150235283004, - "2024-09-28T00": 30.258191171718398, - "2024-09-30T01": 29.41849223805193, - "2024-09-29T09": 28.564295494813436, - "2024-09-25T09": 29.153879800773073, - "2024-09-30T11": 28.29178630468284, - "2024-09-25T07": 28.84197103756849, - "2024-09-24T19": 28.345941125706076, - "2024-09-29T19": 29.139873093157615, - "2024-09-30T15": 28.40107511772076, - "2024-09-28T21": 29.209592740061606, - "2024-10-01T05": 28.154553702320193, - "2024-10-01T14": 26.9919, - "2024-09-27T00": 29.715662043011157, - "latest": 25.73, - "2024-10-01T15": 26.9919 - }, - "USD eos": { - "2024-09-12": 0.49548363766611064, - "2024-09-15": 0.495239038603055, - "2024-09-22": 0.515661484232045, - "2024-09-05": 0.46324857725330065, - "2024-09-10": 0.4904937056746054, - "2024-09-11": 0.4827995764580779, - "2024-09-20": 0.5138317073154197, - "2024-09-26": 0.5373832439714077, - "2024-09-16": 0.47472024851954714, - "2024-09-08": 0.46725491841282385, - "2024-09-24": 0.5199547109045731, - "2024-09-29": 0.5359643781901297, - "2024-09-17": 0.47678100344230856, - "2024-09-14": 0.49941043483911174, - "2024-09-03": 0.4714313536272208, - "2024-09-25": 0.5296757908107895, - "2024-09-18": 0.47917542039665, - "2024-09-07": 0.46366799043499635, - "2024-09-06": 0.46013279176181865, - "2024-09-19": 0.49892035336443213, - "2024-09-30": 0.5337376433971015, - "2024-09-01": 0.46848878663517296, - "2024-08-31": 0.4847728877692099, - "2024-09-02": 0.467061421124309, - "2024-09-23": 0.5208038850761826, - "2024-09-13": 0.5018782604778121, - "2024-10-01": 0.51903464188094, - "2024-09-04": 0.4554170200043739, - "2024-09-28": 0.5373715340763816, - "2024-09-21": 0.520055362456634, - "2024-09-09": 0.48331202894165964, - "2024-09-27": 0.5424707228662061, - "2024-09-27T07": 0.5420358782703282, - "2024-09-27T05": 0.5417569776535248, - "2024-09-30T14": 0.5374340712193987, - "2024-09-27T14": 0.5430403640091701, - "2024-09-27T23": 0.5446835808714806, - "2024-09-28T11": 0.5390250022689639, - "2024-09-29T00": 0.5356551738076968, - "2024-09-28T18": 0.5370398539830127, - "2024-09-29T23": 0.5370572181991098, - "2024-10-01T13": 0.519429440992598, - "2024-09-30T10": 0.5367214531566096, - "2024-09-25T22": 0.5281418714596111, - "2024-09-29T11": 0.5314989138691396, - "2024-09-28T12": 0.5369293687756923, - "2024-09-26T09": 0.5340840274083778, - "2024-09-28T10": 0.5365885233605155, - "2024-09-27T16": 0.544537326770069, - "2024-09-24T17": 0.5195816101210454, - "2024-09-27T15": 0.5464104189105252, - "2024-09-29T12": 0.5341167027558937, - "2024-09-25T04": 0.5298548276649582, - "2024-09-25T21": 0.5367243721807976, - "2024-09-25T18": 0.5325159214201033, - "2024-09-26T04": 0.5309071309473824, - "2024-09-26T05": 0.5297437196747142, - "2024-09-30T04": 0.534929526688263, - "2024-09-27T13": 0.5418243028600143, - "2024-09-28T13": 0.5349342415683943, - "2024-09-25T08": 0.5249901073279293, - "2024-09-30T03": 0.5324140880551752, - "2024-10-01T10": 0.5218232180419224, - "2024-09-25T13": 0.5275018427358374, - "2024-10-01T01": 0.5199399868335716, - "2024-09-26T17": 0.5425649181641863, - "2024-09-25T15": 0.5340928200704345, - "2024-09-29T22": 0.5409678668838866, - "2024-09-29T01": 0.5345970204777784, - "2024-09-30T06": 0.5369452921593432, - "2024-09-27T12": 0.539820806545926, - "2024-09-25T23": 0.5286491099881274, - "2024-09-30T05": 0.5322973635755347, - "2024-09-28T23": 0.5347791591180646, - "2024-09-30T19": 0.5260099667352918, - "2024-09-25T00": 0.5269944109747308, - "2024-10-01T12": 0.5202271833109255, - "2024-09-29T10": 0.5308553080724503, - "2024-09-24T22": 0.5258587444983709, - "2024-09-26T08": 0.536051313493755, - "2024-09-29T20": 0.5420325157212124, - "2024-09-25T12": 0.5296889768823583, - "2024-09-25T05": 0.5254323829986794, - "2024-09-27T09": 0.5429715328536747, - "2024-09-26T02": 0.52452391526436, - "2024-09-28T05": 0.5465284412108515, - "2024-09-29T03": 0.5361170804272024, - "2024-09-26T23": 0.5384729522847115, - "2024-09-29T16": 0.5398319566756119, - "2024-09-26T21": 0.533160702757112, - "2024-09-26T16": 0.5430363880952709, - "2024-09-28T03": 0.5494797092219451, - "2024-09-29T21": 0.5414558854600443, - "2024-09-30T09": 0.543656454474201, - "2024-09-24T16": 0.5159242093288665, - "2024-09-30T07": 0.5376771633511941, - "2024-09-28T17": 0.5347265296606825, - "2024-09-28T02": 0.5456527212782064, - "2024-09-28T15": 0.5379125693784291, - "2024-09-29T17": 0.5401139619303452, - "2024-09-25T17": 0.5323111379740372, - "2024-09-25T16": 0.5297788258761257, - "2024-10-01T04": 0.5225370874672354, - "2024-10-01T07": 0.5231398516797663, - "2024-09-30T23": 0.5185439554719644, - "2024-09-29T13": 0.5321958273839855, - "2024-09-26T22": 0.5370971200547963, - "2024-10-01T11": 0.5231042480478577, - "2024-09-30T16": 0.5257904331300279, - "2024-09-28T01": 0.5450554324357832, - "2024-09-27T02": 0.5383511044920021, - "2024-09-30T20": 0.528260535562639, - "2024-09-28T06": 0.5419853849111927, - "2024-09-27T08": 0.5407178794887537, - "2024-10-01T06": 0.5210869767832657, - "2024-09-27T03": 0.538020956251872, - "2024-09-25T06": 0.5272801967523882, - "2024-10-01T02": 0.519205504015461, - "2024-09-27T17": 0.5457928753152141, - "2024-09-30T22": 0.5262302169729765, - "2024-09-29T05": 0.5356660458857517, - "2024-09-28T20": 0.5363065367305675, - "2024-09-30T13": 0.5381692166823256, - "2024-09-26T18": 0.5388353082381536, - "2024-09-25T10": 0.5261893466285144, - "2024-09-25T02": 0.5305154843974444, - "2024-09-29T02": 0.5341860023564411, - "2024-09-28T08": 0.5372018472547038, - "2024-09-30T17": 0.5333035872719816, - "2024-09-30T02": 0.5342419023321349, - "2024-09-28T09": 0.5315015951664425, - "2024-09-25T03": 0.5314084253859784, - "2024-09-29T15": 0.5360291413544214, - "2024-09-29T06": 0.5343021169427256, - "2024-09-24T18": 0.5183932397950881, - "2024-09-26T07": 0.5348247025891404, - "2024-09-26T15": 0.538141534760232, - "2024-09-27T04": 0.5415283496597788, - "2024-09-27T11": 0.5379047476494414, - "2024-09-26T20": 0.5377671645592431, - "2024-09-30T12": 0.5374961189857353, - "2024-09-27T10": 0.5429062053074752, - "2024-09-26T12": 0.5389799425215502, - "2024-09-24T23": 0.5270796815457284, - "2024-09-30T00": 0.5397031478037495, - "2024-09-25T14": 0.530172762682444, - "2024-09-26T14": 0.5381736203726315, - "2024-09-27T01": 0.5404464194180515, - "2024-09-28T04": 0.5474818951379484, - "2024-09-29T08": 0.5286721360168197, - "2024-09-26T01": 0.5208988214396919, - "2024-09-27T19": 0.5439580004032329, - "2024-09-25T01": 0.527559424495033, - "2024-09-26T00": 0.5256868984658558, - "2024-09-29T18": 0.5393779249739445, - "2024-09-28T19": 0.5369651552976746, - "2024-09-28T22": 0.5337813419665435, - "2024-09-27T18": 0.5434512252395785, - "2024-09-24T21": 0.5236954773683312, - "2024-09-30T08": 0.5428111201738405, - "2024-09-25T11": 0.5276978062281297, - "2024-09-25T20": 0.5288004968692271, - "2024-10-01T09": 0.5209159415842954, - "2024-10-01T03": 0.5196916721203106, - "2024-09-26T11": 0.5387970343655865, - "2024-09-28T07": 0.5407923153570185, - "2024-09-27T22": 0.543136410650844, - "2024-09-27T21": 0.5425685414257392, - "2024-09-26T03": 0.5296973060687215, - "2024-09-26T13": 0.5381281637669502, - "2024-09-30T18": 0.528696533402747, - "2024-10-01T08": 0.5222828827686832, - "2024-09-25T19": 0.5359337213901595, - "2024-09-30T21": 0.5287809142991128, - "2024-09-28T14": 0.535360007813906, - "2024-09-27T20": 0.5417144190666403, - "2024-09-26T06": 0.533677742946766, - "2024-09-26T10": 0.5358880882372207, - "2024-09-29T04": 0.5378368307311181, - "2024-09-28T16": 0.5371704611277477, - "2024-10-01T00": 0.515548722684387, - "2024-09-24T20": 0.5223293642538754, - "2024-09-26T19": 0.540512331135299, - "2024-09-24T15": 0.51827417588281, - "2024-09-27T06": 0.5438445589619187, - "2024-09-29T14": 0.5365577533667895, - "2024-09-29T07": 0.5321793299899977, - "2024-09-28T00": 0.54375792133013, - "2024-09-30T01": 0.5387586662176909, - "2024-09-29T09": 0.5295884817810217, - "2024-09-25T09": 0.527425471096183, - "2024-09-30T11": 0.5345047127356378, - "2024-09-25T07": 0.5243940265965867, - "2024-09-24T19": 0.5197173576972527, - "2024-09-29T19": 0.5397959850796435, - "2024-09-30T15": 0.5334308628014983, - "2024-09-28T21": 0.5342071120577463, - "2024-10-01T05": 0.5232567930650506, - "2024-10-01T14": 0.5054483200000001, - "2024-09-27T00": 0.5390264777614459, - "latest": 0.48521, - "2024-10-01T15": 0.5054483200000001 - }, - "USD ethereum": { - "2024-09-12": 2354.2134859953567, - "2024-09-15": 2406.6841547406134, - "2024-09-22": 2581.4438892396897, - "2024-09-05": 2391.6226860118227, - "2024-09-10": 2349.5184264791906, - "2024-09-11": 2335.6336844290145, - "2024-09-20": 2544.5254831493576, - "2024-09-26": 2628.510893665826, - "2024-09-16": 2289.9526500597417, - "2024-09-08": 2283.7056967843014, - "2024-09-24": 2639.093607041562, - "2024-09-29": 2661.156875593571, - "2024-09-17": 2318.827484147634, - "2024-09-14": 2418.544450356054, - "2024-09-03": 2478.2404500329526, - "2024-09-25": 2620.7710063923996, - "2024-09-18": 2320.438829377811, - "2024-09-07": 2281.345769920238, - "2024-09-06": 2329.655348649306, - "2024-09-19": 2433.4968489662847, - "2024-09-30": 2615.5153478740044, - "2024-09-01": 2475.640323268133, - "2024-08-31": 2520.897556089576, - "2024-09-02": 2512.0312352759634, - "2024-09-23": 2653.8413519727605, - "2024-09-13": 2365.039310376597, - "2024-10-01": 2628.4693173507812, - "2024-09-04": 2401.862383862184, - "2024-09-28": 2675.5585078418694, - "2024-09-21": 2559.557420131307, - "2024-09-09": 2316.707471990902, - "2024-09-27": 2663.096195455968, - "2024-09-27T07": 2659.784275793055, - "2024-09-27T05": 2644.774792393698, - "2024-09-30T14": 2612.3010567894894, - "2024-09-27T14": 2683.8051476873816, - "2024-09-27T23": 2699.6959866836014, - "2024-09-28T11": 2673.418507396885, - "2024-09-29T00": 2675.1991558755753, - "2024-09-28T18": 2680.2292783671855, - "2024-09-29T23": 2654.427146220055, - "2024-10-01T13": 2589.6240590572643, - "2024-09-30T10": 2603.110444827469, - "2024-09-25T22": 2573.454210061153, - "2024-09-29T11": 2651.248626658687, - "2024-09-28T12": 2662.190103258957, - "2024-09-26T09": 2618.3825693690046, - "2024-09-28T10": 2673.2723113776224, - "2024-09-27T16": 2709.3847129905553, - "2024-09-24T17": 2642.139127823608, - "2024-09-27T15": 2689.678178079298, - "2024-09-29T12": 2653.311516801103, - "2024-09-25T04": 2634.4042594461484, - "2024-09-25T21": 2582.598689070129, - "2024-09-25T18": 2579.6518090609948, - "2024-09-26T04": 2599.781994764048, - "2024-09-26T05": 2610.4472093808577, - "2024-09-30T04": 2626.996477409096, - "2024-09-27T13": 2654.420028245805, - "2024-09-28T13": 2657.9499861546738, - "2024-09-25T08": 2624.5037488238527, - "2024-09-30T03": 2621.015427206783, - "2024-10-01T10": 2635.0382530406755, - "2024-09-25T13": 2615.6117552652613, - "2024-10-01T01": 2623.1601087376785, - "2024-09-26T17": 2646.672319163032, - "2024-09-25T15": 2615.7161911691933, - "2024-09-29T22": 2662.1293230511487, - "2024-09-29T01": 2670.1351220649663, - "2024-09-30T06": 2638.04966521697, - "2024-09-27T12": 2657.33508876243, - "2024-09-25T23": 2573.525904759208, - "2024-09-30T05": 2632.120662305188, - "2024-09-28T23": 2674.139053808163, - "2024-09-30T19": 2591.142126735575, - "2024-09-25T00": 2648.376692604442, - "2024-10-01T12": 2627.042924525449, - "2024-09-29T10": 2644.8004768416276, - "2024-09-24T22": 2659.16526900152, - "2024-09-26T08": 2625.830771952317, - "2024-09-29T20": 2663.3562929603295, - "2024-09-25T12": 2622.558470725411, - "2024-09-25T05": 2626.782932191841, - "2024-09-27T09": 2666.3219841169225, - "2024-09-26T02": 2594.005523074261, - "2024-09-28T05": 2690.602741630079, - "2024-09-29T03": 2673.538028103398, - "2024-09-26T23": 2629.496601029847, - "2024-09-29T16": 2663.241903304972, - "2024-09-26T21": 2638.2700373172147, - "2024-09-26T16": 2653.3762961338903, - "2024-09-28T03": 2694.51274844731, - "2024-09-29T21": 2664.1829111507263, - "2024-09-30T09": 2629.3092861703954, - "2024-09-24T16": 2616.935335326755, - "2024-09-30T07": 2638.5384691403965, - "2024-09-28T17": 2675.702235270806, - "2024-09-28T02": 2698.406952279711, - "2024-09-28T15": 2669.9782593062537, - "2024-09-29T17": 2667.5454332344534, - "2024-09-25T17": 2581.1647905869436, - "2024-09-25T16": 2601.6682292631954, - "2024-10-01T04": 2635.211810899137, - "2024-10-01T07": 2646.9704085894273, - "2024-09-30T23": 2596.419408285599, - "2024-09-29T13": 2655.200293504305, - "2024-09-26T22": 2638.5571818516646, - "2024-10-01T11": 2632.0337424424733, - "2024-09-30T16": 2604.137337461018, - "2024-09-28T01": 2695.3082914215333, - "2024-09-27T02": 2622.2123604863255, - "2024-09-30T20": 2608.9921856583937, - "2024-09-28T06": 2681.033782385596, - "2024-09-27T08": 2666.2747013980415, - "2024-10-01T06": 2644.2446432593606, - "2024-09-27T03": 2628.58925217171, - "2024-09-25T06": 2619.046261342083, - "2024-10-01T02": 2614.100956338189, - "2024-09-27T17": 2698.296350030815, - "2024-09-30T22": 2606.587162601063, - "2024-09-29T05": 2668.6485526735682, - "2024-09-28T20": 2678.059420508791, - "2024-09-30T13": 2631.867071420317, - "2024-09-26T18": 2638.0921147858407, - "2024-09-25T10": 2624.719257033802, - "2024-09-25T02": 2647.879900439615, - "2024-09-29T02": 2677.5387729589174, - "2024-09-28T08": 2671.877825511789, - "2024-09-30T17": 2602.945585925091, - "2024-09-30T02": 2616.1121030538256, - "2024-09-28T09": 2663.9012263269183, - "2024-09-25T03": 2643.065367243993, - "2024-09-29T15": 2662.458703468137, - "2024-09-29T06": 2658.6529738806516, - "2024-09-24T18": 2639.857509854994, - "2024-09-26T07": 2620.1864394130052, - "2024-09-26T15": 2647.5929606493587, - "2024-09-27T04": 2645.9691325914537, - "2024-09-27T11": 2648.8980285372922, - "2024-09-26T20": 2640.2629364904697, - "2024-09-30T12": 2629.922856601102, - "2024-09-27T10": 2645.892869178656, - "2024-09-26T12": 2629.9223752410253, - "2024-09-24T23": 2658.017846857175, - "2024-09-30T00": 2643.549263480502, - "2024-09-25T14": 2623.0648836438854, - "2024-09-26T14": 2633.702326628844, - "2024-09-27T01": 2632.6464126151022, - "2024-09-28T04": 2695.0238766293305, - "2024-09-29T08": 2641.6923116268317, - "2024-09-26T01": 2572.343514789772, - "2024-09-27T19": 2701.1223268683193, - "2024-09-25T01": 2653.184155782341, - "2024-09-26T00": 2579.9361583029918, - "2024-09-29T18": 2663.4930859398746, - "2024-09-28T19": 2677.983197692661, - "2024-09-28T22": 2674.3735778131745, - "2024-09-27T18": 2696.243500911387, - "2024-09-24T21": 2648.5761007961373, - "2024-09-30T08": 2636.739953461685, - "2024-09-25T11": 2620.9604248045734, - "2024-09-25T20": 2578.437622504681, - "2024-10-01T09": 2640.8390738664843, - "2024-10-01T03": 2626.236487345839, - "2024-09-26T11": 2627.2560872065815, - "2024-09-28T07": 2680.633353354697, - "2024-09-27T22": 2700.771398993157, - "2024-09-27T21": 2693.991936122332, - "2024-09-26T03": 2598.4330973559995, - "2024-09-26T13": 2621.658695390707, - "2024-09-30T18": 2586.544785261975, - "2024-10-01T08": 2642.019881612013, - "2024-09-25T19": 2581.064966322771, - "2024-09-30T21": 2610.6329323868868, - "2024-09-28T14": 2671.469273706611, - "2024-09-27T20": 2695.3285204106496, - "2024-09-26T06": 2616.0751290622848, - "2024-09-26T10": 2630.850837852529, - "2024-09-29T04": 2668.7222936085786, - "2024-09-28T16": 2667.934800687174, - "2024-10-01T00": 2608.4121709589185, - "2024-09-24T20": 2649.032340641476, - "2024-09-26T19": 2652.754550307685, - "2024-09-24T15": 2612.980313032199, - "2024-09-27T06": 2660.268980637851, - "2024-09-29T14": 2653.298811088948, - "2024-09-29T07": 2647.240238412806, - "2024-09-28T00": 2695.9079490973054, - "2024-09-30T01": 2638.053340865093, - "2024-09-29T09": 2649.7897995979306, - "2024-09-25T09": 2624.123460324333, - "2024-09-30T11": 2617.4520794978844, - "2024-09-25T07": 2621.8056092896613, - "2024-09-24T19": 2641.942136677671, - "2024-09-29T19": 2665.472685099668, - "2024-09-30T15": 2612.0369871490266, - "2024-09-28T21": 2667.533162324228, - "2024-10-01T05": 2637.8080571552596, - "2024-10-01T14": 2584.325175113214, - "2024-09-27T00": 2634.7169900767863, - "latest": 2495.52, - "2024-10-01T15": 2549.9822537490013 - }, - "USD ethereum_classic": { - "2024-09-12": 18.471811745592596, - "2024-09-15": 18.372755500000004, - "2024-09-22": 18.906527948135544, - "2024-09-05": 17.78802273593202, - "2024-09-10": 18.341270310060867, - "2024-09-11": 18.32906614244048, - "2024-09-20": 18.970070403892198, - "2024-09-26": 20.06541948066614, - "2024-09-16": 17.700125978120173, - "2024-09-08": 17.74852201065733, - "2024-09-24": 19.093275334619, - "2024-09-29": 20.503496314602746, - "2024-09-17": 17.917279488463233, - "2024-09-14": 18.649937662327545, - "2024-09-03": 18.03801115570676, - "2024-09-25": 19.489046833569326, - "2024-09-18": 17.820395946661353, - "2024-09-07": 17.558388836244994, - "2024-09-06": 17.538431916361922, - "2024-09-19": 18.60666445947526, - "2024-09-30": 19.895602661658916, - "2024-09-01": 18.032479648701486, - "2024-08-31": 18.386214919509577, - "2024-09-02": 17.97489198901555, - "2024-09-23": 19.10905565170351, - "2024-09-13": 18.46452456115446, - "2024-10-01": 19.615505552393277, - "2024-09-04": 17.7617661527769, - "2024-09-28": 20.50111925261979, - "2024-09-21": 19.152687452207868, - "2024-09-09": 18.054595245557508, - "2024-09-27": 20.694265490282117, - "2024-09-27T07": 20.648297058489582, - "2024-09-27T05": 20.572245262134174, - "2024-09-30T14": 19.814789239937895, - "2024-09-27T14": 20.823555030340135, - "2024-09-27T23": 20.925398251858265, - "2024-09-28T11": 20.43046638859775, - "2024-09-29T00": 20.581961462034823, - "2024-09-28T18": 20.55631137459258, - "2024-09-29T23": 20.50298862341925, - "2024-10-01T13": 19.665082144164227, - "2024-09-30T10": 19.845162877032145, - "2024-09-25T22": 19.481970424932175, - "2024-09-29T11": 20.340492565258252, - "2024-09-28T12": 20.35745627496819, - "2024-09-26T09": 19.932305588248134, - "2024-09-28T10": 20.47165267071265, - "2024-09-27T16": 20.852605589309707, - "2024-09-24T17": 18.977183470805944, - "2024-09-27T15": 20.85009641272761, - "2024-09-29T12": 20.38156754751113, - "2024-09-25T04": 19.666749264138833, - "2024-09-25T21": 19.569877332066117, - "2024-09-25T18": 19.429064897243773, - "2024-09-26T04": 19.403272389646045, - "2024-09-26T05": 19.335392718164986, - "2024-09-30T04": 20.04266256139427, - "2024-09-27T13": 20.71879522520772, - "2024-09-28T13": 20.282171212477458, - "2024-09-25T08": 19.334989527974688, - "2024-09-30T03": 19.966746621153426, - "2024-10-01T10": 19.761792660861254, - "2024-09-25T13": 19.372219691921366, - "2024-10-01T01": 19.62266946712919, - "2024-09-26T17": 20.235926877989826, - "2024-09-25T15": 19.639145334686567, - "2024-09-29T22": 20.67872182960388, - "2024-09-29T01": 20.50942821834549, - "2024-09-30T06": 20.142550649972257, - "2024-09-27T12": 20.662931381849535, - "2024-09-25T23": 19.382518969816786, - "2024-09-30T05": 20.005844462167097, - "2024-09-28T23": 20.592374952261157, - "2024-09-30T19": 19.678978644715844, - "2024-09-25T00": 19.420317077976048, - "2024-10-01T12": 19.747833248249965, - "2024-09-29T10": 20.334995567360693, - "2024-09-24T22": 19.271260240745626, - "2024-09-26T08": 19.86867114736677, - "2024-09-29T20": 20.666093331090202, - "2024-09-25T12": 19.443922619462946, - "2024-09-25T05": 19.484714805487783, - "2024-09-27T09": 20.701342908554732, - "2024-09-26T02": 19.21036423696005, - "2024-09-28T05": 20.717367415017556, - "2024-09-29T03": 20.590490396518724, - "2024-09-26T23": 20.31169534719915, - "2024-09-29T16": 20.53540812826879, - "2024-09-26T21": 20.030971136454845, - "2024-09-26T16": 20.26003239690196, - "2024-09-28T03": 20.89176693307305, - "2024-09-29T21": 20.598889597579735, - "2024-09-30T09": 20.093109299145418, - "2024-09-24T16": 18.891229800529054, - "2024-09-30T07": 19.99230577033337, - "2024-09-28T17": 20.451711916183804, - "2024-09-28T02": 20.798683813011046, - "2024-09-28T15": 20.469246499055444, - "2024-09-29T17": 20.564022732365704, - "2024-09-25T17": 19.608493994015625, - "2024-09-25T16": 19.519113888557737, - "2024-10-01T04": 19.71824425188694, - "2024-10-01T07": 19.796445461934457, - "2024-09-30T23": 19.556847720296258, - "2024-09-29T13": 20.229556583624554, - "2024-09-26T22": 20.235233402442432, - "2024-10-01T11": 19.819729691638656, - "2024-09-30T16": 19.55863363360384, - "2024-09-28T01": 20.83828241191407, - "2024-09-27T02": 20.27492995258118, - "2024-09-30T20": 19.695629923043395, - "2024-09-28T06": 20.561573496947418, - "2024-09-27T08": 20.646262101593425, - "2024-10-01T06": 19.671069463645917, - "2024-09-27T03": 20.359420812596888, - "2024-09-25T06": 19.48342768491042, - "2024-10-01T02": 19.63454962795885, - "2024-09-27T17": 20.837359914174456, - "2024-09-30T22": 19.69084572922792, - "2024-09-29T05": 20.5412689313732, - "2024-09-28T20": 20.581240869584484, - "2024-09-30T13": 19.898707834698854, - "2024-09-26T18": 20.159818490848856, - "2024-09-25T10": 19.27920403208498, - "2024-09-25T02": 19.63295327339353, - "2024-09-29T02": 20.614455854094523, - "2024-09-28T08": 20.30835079578433, - "2024-09-30T17": 19.617517200826086, - "2024-09-30T02": 19.97775745822982, - "2024-09-28T09": 20.24820797603223, - "2024-09-25T03": 19.67290377822435, - "2024-09-29T15": 20.372019008582956, - "2024-09-29T06": 20.595867831536555, - "2024-09-24T18": 19.137972149751423, - "2024-09-26T07": 19.704438042615223, - "2024-09-26T15": 20.03447257149197, - "2024-09-27T04": 20.607581714633977, - "2024-09-27T11": 20.57952333654515, - "2024-09-26T20": 20.217637178419835, - "2024-09-30T12": 19.918139755546502, - "2024-09-27T10": 20.76067225749983, - "2024-09-26T12": 20.029894499973313, - "2024-09-24T23": 19.485090611255306, - "2024-09-30T00": 20.450598992031374, - "2024-09-25T14": 19.50424012998932, - "2024-09-26T14": 20.111773761159238, - "2024-09-27T01": 20.394589909664145, - "2024-09-28T04": 20.762907050609417, - "2024-09-29T08": 20.21762880010276, - "2024-09-26T01": 19.183690675038342, - "2024-09-27T19": 20.771170979854944, - "2024-09-25T01": 19.456525773888128, - "2024-09-26T00": 19.298596280702647, - "2024-09-29T18": 20.61641085503314, - "2024-09-28T19": 20.550063914807776, - "2024-09-28T22": 20.574097285984976, - "2024-09-27T18": 20.80603175528877, - "2024-09-24T21": 19.354590826261436, - "2024-09-30T08": 20.091657348013364, - "2024-09-25T11": 19.361079940323293, - "2024-09-25T20": 19.463155451104843, - "2024-10-01T09": 19.75220782275599, - "2024-10-01T03": 19.634426300344916, - "2024-09-26T11": 20.08446907131648, - "2024-09-28T07": 20.486356814151076, - "2024-09-27T22": 20.859738158776928, - "2024-09-27T21": 20.786492367593706, - "2024-09-26T03": 19.263554928143865, - "2024-09-26T13": 20.116867326060422, - "2024-09-30T18": 19.695503880016574, - "2024-10-01T08": 19.78985017740914, - "2024-09-25T19": 19.47241848817014, - "2024-09-30T21": 19.731985832222147, - "2024-09-28T14": 20.417075558376716, - "2024-09-27T20": 20.753232618254046, - "2024-09-26T06": 19.53994662285151, - "2024-09-26T10": 19.909314719712434, - "2024-09-29T04": 20.655275243524226, - "2024-09-28T16": 20.40893312312379, - "2024-10-01T00": 19.48462877178173, - "2024-09-24T20": 19.346584334260594, - "2024-09-26T19": 20.331237417295753, - "2024-09-24T15": 18.978871798593598, - "2024-09-27T06": 20.56976377076345, - "2024-09-29T14": 20.385430487186444, - "2024-09-29T07": 20.380284538013708, - "2024-09-28T00": 20.81818992090199, - "2024-09-30T01": 20.394510840350037, - "2024-09-29T09": 20.27035020272937, - "2024-09-25T09": 19.34083198816999, - "2024-09-30T11": 19.799183291968294, - "2024-09-25T07": 19.34452473426389, - "2024-09-24T19": 19.198900099448363, - "2024-09-29T19": 20.640358868863537, - "2024-09-30T15": 19.754384301584018, - "2024-09-28T21": 20.64285140731683, - "2024-10-01T05": 19.775497303979048, - "2024-10-01T14": 19.410471339944465, - "2024-09-27T00": 20.311741628834444, - "latest": 18.59, - "2024-10-01T15": 19.101786526143943 - }, - "USD fantom": { - "2024-09-12": 0.4878638209944769, - "2024-09-15": 0.5082521918050191, - "2024-09-22": 0.6556205361215611, - "2024-09-05": 0.38986793071959175, - "2024-09-10": 0.48800018087295155, - "2024-09-11": 0.4867398434437089, - "2024-09-20": 0.6429740160321854, - "2024-09-26": 0.7012494894424511, - "2024-09-16": 0.5113015246092609, - "2024-09-08": 0.40470801546856056, - "2024-09-24": 0.6421034091608249, - "2024-09-29": 0.6783097287771457, - "2024-09-17": 0.5631380979634842, - "2024-09-14": 0.4750890089465083, - "2024-09-03": 0.4131380906077132, - "2024-09-25": 0.6740200370717858, - "2024-09-18": 0.5776312313711779, - "2024-09-07": 0.3853987451951565, - "2024-09-06": 0.3815136219626256, - "2024-09-19": 0.6454677681355804, - "2024-09-30": 0.6923267972721493, - "2024-09-01": 0.41428571214462634, - "2024-08-31": 0.4271771451684716, - "2024-09-02": 0.41885603189061205, - "2024-09-23": 0.6486585879238008, - "2024-09-13": 0.4849494037227187, - "2024-10-01": 0.7174041221324513, - "2024-09-04": 0.3898797077220547, - "2024-09-28": 0.6738424178417032, - "2024-09-21": 0.6459930262145467, - "2024-09-09": 0.4443273795499336, - "2024-09-27": 0.6984240236196168, - "2024-09-27T07": 0.7062846698160622, - "2024-09-27T05": 0.7047533652578731, - "2024-09-30T14": 0.6997968076323936, - "2024-09-27T14": 0.7010483888200468, - "2024-09-27T23": 0.7022831823630399, - "2024-09-28T11": 0.6720564143758525, - "2024-09-29T00": 0.6746607139999999, - "2024-09-28T18": 0.6716410150000001, - "2024-09-29T23": 0.6786174888944494, - "2024-10-01T13": 0.7339231420112914, - "2024-09-30T10": 0.6881126819628054, - "2024-09-25T22": 0.656801465, - "2024-09-29T11": 0.671737167, - "2024-09-28T12": 0.6687028042851692, - "2024-09-26T09": 0.6892999112010946, - "2024-09-28T10": 0.6771333284657849, - "2024-09-27T16": 0.7006772986649902, - "2024-09-24T17": 0.6429722257070941, - "2024-09-27T15": 0.6988499949441489, - "2024-09-29T12": 0.672980748, - "2024-09-25T04": 0.6936704378133735, - "2024-09-25T21": 0.6675619238854756, - "2024-09-25T18": 0.6703226145, - "2024-09-26T04": 0.653910311, - "2024-09-26T05": 0.657109383, - "2024-09-30T04": 0.6711403577533788, - "2024-09-27T13": 0.6947038137341708, - "2024-09-28T13": 0.6665938357242164, - "2024-09-25T08": 0.6694237624902191, - "2024-09-30T03": 0.6685885497417109, - "2024-10-01T10": 0.7485258080406231, - "2024-09-25T13": 0.674512302, - "2024-10-01T01": 0.7184485916871409, - "2024-09-26T17": 0.7211672506935315, - "2024-09-25T15": 0.6749211991842208, - "2024-09-29T22": 0.686077847361436, - "2024-09-29T01": 0.668273502, - "2024-09-30T06": 0.6845495571771636, - "2024-09-27T12": 0.6963980844501146, - "2024-09-25T23": 0.65335623, - "2024-09-30T05": 0.6705333568931079, - "2024-09-28T23": 0.6726739860000001, - "2024-09-30T19": 0.6977460240472871, - "2024-09-25T00": 0.6664375855837128, - "2024-10-01T12": 0.7522930363460211, - "2024-09-29T10": 0.663959751, - "2024-09-24T22": 0.6711086055736201, - "2024-09-26T08": 0.6777112083339608, - "2024-09-29T20": 0.7139790719664929, - "2024-09-25T12": 0.6748675355752198, - "2024-09-25T05": 0.6812128546550933, - "2024-09-27T09": 0.7034080551341584, - "2024-09-26T02": 0.6485313380000001, - "2024-09-28T05": 0.6796862548592076, - "2024-09-29T03": 0.665113302, - "2024-09-26T23": 0.6891569154979962, - "2024-09-29T16": 0.6836415705112087, - "2024-09-26T21": 0.691440130172916, - "2024-09-26T16": 0.7283865823822916, - "2024-09-28T03": 0.69089338553927, - "2024-09-29T21": 0.700986480370123, - "2024-09-30T09": 0.6918060181674837, - "2024-09-24T16": 0.637754845751016, - "2024-09-30T07": 0.6951447884146126, - "2024-09-28T17": 0.67214112, - "2024-09-28T02": 0.7008840959999999, - "2024-09-28T15": 0.6716604439999999, - "2024-09-29T17": 0.695978952454616, - "2024-09-25T17": 0.6663308823474067, - "2024-09-25T16": 0.6708088713567286, - "2024-10-01T04": 0.7300089637149373, - "2024-10-01T07": 0.7496979898589097, - "2024-09-30T23": 0.6896548932741633, - "2024-09-29T13": 0.673523199619645, - "2024-09-26T22": 0.6918252408527719, - "2024-10-01T11": 0.756677290005878, - "2024-09-30T16": 0.6988498390480372, - "2024-09-28T01": 0.7001913724296805, - "2024-09-27T02": 0.6797665187137482, - "2024-09-30T20": 0.7029269692713463, - "2024-09-28T06": 0.6754148955809527, - "2024-09-27T08": 0.7026775611215336, - "2024-10-01T06": 0.7366898418551119, - "2024-09-27T03": 0.6785549496103377, - "2024-09-25T06": 0.6739824628114429, - "2024-10-01T02": 0.7107967699617006, - "2024-09-27T17": 0.6936969032128129, - "2024-09-30T22": 0.6947299882840385, - "2024-09-29T05": 0.6593197789999999, - "2024-09-28T20": 0.67296729, - "2024-09-30T13": 0.702011620529726, - "2024-09-26T18": 0.7068517228152357, - "2024-09-25T10": 0.6794915049323401, - "2024-09-25T02": 0.6991616478839516, - "2024-09-29T02": 0.6698133959999999, - "2024-09-28T08": 0.6746540433916783, - "2024-09-30T17": 0.6988437737720715, - "2024-09-30T02": 0.667051064683355, - "2024-09-28T09": 0.6722874853768736, - "2024-09-25T03": 0.7097241269954419, - "2024-09-29T15": 0.6805538335769633, - "2024-09-29T06": 0.65902636, - "2024-09-24T18": 0.6495007893523586, - "2024-09-26T07": 0.6656214057950421, - "2024-09-26T15": 0.7266515238761281, - "2024-09-27T04": 0.6936734129609442, - "2024-09-27T11": 0.6906714875179967, - "2024-09-26T20": 0.6895487731210564, - "2024-09-30T12": 0.6971714766556084, - "2024-09-27T10": 0.6909155818437439, - "2024-09-26T12": 0.7243853670144969, - "2024-09-24T23": 0.6673326641669145, - "2024-09-30T00": 0.675555051170621, - "2024-09-25T14": 0.6768755355, - "2024-09-26T14": 0.7275213380081924, - "2024-09-27T01": 0.6804394976653694, - "2024-09-28T04": 0.6846889979999999, - "2024-09-29T08": 0.658692204, - "2024-09-26T01": 0.643739025, - "2024-09-27T19": 0.7021335065403709, - "2024-09-25T01": 0.6911488114793469, - "2024-09-26T00": 0.64923765, - "2024-09-29T18": 0.7183131574416456, - "2024-09-28T19": 0.6722987513706291, - "2024-09-28T22": 0.670980508, - "2024-09-27T18": 0.6956194464439855, - "2024-09-24T21": 0.662644194071425, - "2024-09-30T08": 0.6888308192365031, - "2024-09-25T11": 0.6765420413163764, - "2024-09-25T20": 0.6665066759999999, - "2024-10-01T09": 0.7464574829212391, - "2024-10-01T03": 0.7270549810702681, - "2024-09-26T11": 0.7138623026159854, - "2024-09-28T07": 0.6789086240300383, - "2024-09-27T22": 0.7019653542112569, - "2024-09-27T21": 0.7046078670240495, - "2024-09-26T03": 0.6493116449999999, - "2024-09-26T13": 0.7208680881642869, - "2024-09-30T18": 0.6944567241200276, - "2024-10-01T08": 0.7432701930759187, - "2024-09-25T19": 0.6673912689413937, - "2024-09-30T21": 0.7115480034390536, - "2024-09-28T14": 0.6711464508635626, - "2024-09-27T20": 0.697204097964359, - "2024-09-26T06": 0.663864784900693, - "2024-09-26T10": 0.7160152608002401, - "2024-09-29T04": 0.661319839, - "2024-09-28T16": 0.66866686, - "2024-10-01T00": 0.7028679403400319, - "2024-09-24T20": 0.6558956430594968, - "2024-09-26T19": 0.7044338192613703, - "2024-09-24T15": 0.6278070335413114, - "2024-09-27T06": 0.7170364239260137, - "2024-09-29T14": 0.6799403833892604, - "2024-09-29T07": 0.6553558717, - "2024-09-28T00": 0.7018326602320935, - "2024-09-30T01": 0.6730216709439371, - "2024-09-29T09": 0.6630530400000001, - "2024-09-25T09": 0.672024188305466, - "2024-09-30T11": 0.6845369935122765, - "2024-09-25T07": 0.6647175109581137, - "2024-09-24T19": 0.657044666432946, - "2024-09-29T19": 0.7198498109716839, - "2024-09-30T15": 0.701097419668637, - "2024-09-28T21": 0.6680734800000001, - "2024-10-01T05": 0.7275186307330084, - "2024-10-01T14": 0.7306966616162602, - "2024-09-27T00": 0.6900123942997423, - "latest": 0.69324 - }, - "USD filecoin": { - "2024-09-12": 3.6322932607513416, - "2024-09-15": 3.5740174120671835, - "2024-09-22": 3.7166951216317856, - "2024-09-05": 3.36527933155899, - "2024-09-10": 3.5995038753945217, - "2024-09-11": 3.5767640142884827, - "2024-09-20": 3.7659345513022933, - "2024-09-26": 4.089020756791431, - "2024-09-16": 3.422547115554694, - "2024-09-08": 3.3807256807496984, - "2024-09-24": 3.7742750804660004, - "2024-09-29": 4.0833296474575596, - "2024-09-17": 3.4577536476513346, - "2024-09-14": 3.6771014130378874, - "2024-09-03": 3.4611510757662196, - "2024-09-25": 3.9370805489130025, - "2024-09-18": 3.4662441394116916, - "2024-09-07": 3.336686179558845, - "2024-09-06": 3.3321094058050083, - "2024-09-19": 3.6851465955293534, - "2024-09-30": 3.9467603142555254, - "2024-09-01": 3.4605369229961163, - "2024-08-31": 3.6027318478214068, - "2024-09-02": 3.4269598184669454, - "2024-09-23": 3.750476734003228, - "2024-09-13": 3.6771495500135787, - "2024-10-01": 3.860541368545364, - "2024-09-04": 3.3556012340769334, - "2024-09-28": 4.122645426159092, - "2024-09-21": 3.79530454623623, - "2024-09-09": 3.4517305943683434, - "2024-09-27": 4.183341340597307, - "2024-09-27T07": 4.196433936581486, - "2024-09-27T05": 4.20521025, - "2024-09-30T14": 3.92125482, - "2024-09-27T14": 4.252360320000001, - "2024-09-27T23": 4.20350436, - "2024-09-28T11": 4.09224552, - "2024-09-29T00": 4.116370439999999, - "2024-09-28T18": 4.15287192, - "2024-09-29T23": 4.075945249345568, - "2024-10-01T13": 3.8315784799999997, - "2024-09-30T10": 3.9297642, - "2024-09-25T22": 3.9614057, - "2024-09-29T11": 4.0554055, - "2024-09-28T12": 4.0803671999999995, - "2024-09-26T09": 4.08714152, - "2024-09-28T10": 4.079530269999999, - "2024-09-27T16": 4.1984198, - "2024-09-24T17": 3.79043135, - "2024-09-27T15": 4.237932140000001, - "2024-09-29T12": 4.059487079999999, - "2024-09-25T04": 3.94880255, - "2024-09-25T21": 4.01639745, - "2024-09-25T18": 3.94225083, - "2024-09-26T04": 3.98384435, - "2024-09-26T05": 4.042827239999999, - "2024-09-30T04": 3.97480125, - "2024-09-27T13": 4.164791159999999, - "2024-09-28T13": 4.0723664799999995, - "2024-09-25T08": 3.92472525, - "2024-09-30T03": 3.96776192, - "2024-10-01T10": 3.92637168, - "2024-09-25T13": 3.91049157, - "2024-10-01T01": 3.87094731, - "2024-09-26T17": 4.110287700000001, - "2024-09-25T15": 3.97776132, - "2024-09-29T22": 4.095491399999999, - "2024-09-29T01": 4.10445144, - "2024-09-30T06": 4.02208044, - "2024-09-27T12": 4.14970533, - "2024-09-25T23": 3.933853433698315, - "2024-09-30T05": 3.9900399000000006, - "2024-09-28T23": 4.1304543, - "2024-09-30T19": 3.8965187599999997, - "2024-09-25T00": 3.87588372, - "2024-10-01T12": 3.9174906600000003, - "2024-09-29T10": 4.04536405, - "2024-09-24T22": 3.8648454, - "2024-09-26T08": 4.0861826, - "2024-09-29T20": 4.12165936, - "2024-09-25T12": 3.92368608, - "2024-09-25T05": 3.9396151708496046, - "2024-09-27T09": 4.17975222, - "2024-09-26T02": 3.95697092, - "2024-09-28T05": 4.14299408, - "2024-09-29T03": 4.11308226, - "2024-09-26T23": 4.082489839999999, - "2024-09-29T16": 4.0774077, - "2024-09-26T21": 4.0714071, - "2024-09-26T16": 4.13520675, - "2024-09-28T03": 4.1905028, - "2024-09-29T21": 4.116340160100473, - "2024-09-30T09": 3.989839898, - "2024-09-24T16": 3.7495125000000002, - "2024-09-30T07": 4.02608052, - "2024-09-28T17": 4.14887108, - "2024-09-28T02": 4.210505199999999, - "2024-09-28T15": 4.114370259999999, - "2024-09-29T17": 4.09753261, - "2024-09-25T17": 3.9333312200000004, - "2024-09-25T16": 3.9578021000000003, - "2024-10-01T04": 3.9098092799999997, - "2024-10-01T07": 3.9192944, - "2024-09-30T23": 3.80604825, - "2024-09-29T13": 4.05256728, - "2024-09-26T22": 4.0903272, - "2024-10-01T11": 3.9274108, - "2024-09-30T16": 3.8813012400000004, - "2024-09-28T01": 4.19150292, - "2024-09-27T02": 4.12146380327978, - "2024-09-30T20": 3.9027897599999997, - "2024-09-28T06": 4.115617250000001, - "2024-09-27T08": 4.198629700000001, - "2024-10-01T06": 3.908457758, - "2024-09-27T03": 4.161249659999999, - "2024-09-25T06": 3.91576504, - "2024-10-01T02": 3.85176468, - "2024-09-27T17": 4.1798358, - "2024-09-30T22": 3.85288234, - "2024-09-29T05": 4.09412282, - "2024-09-28T20": 4.150415000000001, - "2024-09-30T13": 3.9546045000000003, - "2024-09-26T18": 4.093517374158141, - "2024-09-25T10": 3.9297642, - "2024-09-25T02": 3.944963288, - "2024-09-29T02": 4.127082539999999, - "2024-09-28T08": 4.07973422, - "2024-09-30T17": 3.8999857399999995, - "2024-09-30T02": 3.9951997500000007, - "2024-09-28T09": 4.05156714, - "2024-09-25T03": 3.94680265, - "2024-09-29T15": 4.06652858, - "2024-09-29T06": 4.073162920000001, - "2024-09-24T18": 3.7953167200000006, - "2024-09-26T07": 4.09109976, - "2024-09-26T15": 4.112041120000001, - "2024-09-27T04": 4.18208364, - "2024-09-27T11": 4.121700570000001, - "2024-09-26T20": 4.0706512, - "2024-09-30T12": 3.94572378, - "2024-09-27T10": 4.137744660000001, - "2024-09-26T12": 4.11075334, - "2024-09-24T23": 3.86076834, - "2024-09-30T00": 4.048485759999999, - "2024-09-25T14": 3.9595643999999997, - "2024-09-26T14": 4.096959030000001, - "2024-09-27T01": 4.13457876, - "2024-09-28T04": 4.17654288, - "2024-09-29T08": 4.0495668600000005, - "2024-09-26T01": 3.9080227499999998, - "2024-09-27T19": 4.1956292500000005, - "2024-09-25T01": 3.92688219, - "2024-09-26T00": 3.9410145, - "2024-09-29T18": 4.10082, - "2024-09-28T19": 4.1494149, - "2024-09-28T22": 4.133495959999999, - "2024-09-27T18": 4.17937611, - "2024-09-24T21": 3.83876966, - "2024-09-30T08": 4.0151606, - "2024-09-25T11": 3.92772504, - "2024-09-25T20": 3.97544336, - "2024-10-01T09": 3.91845134, - "2024-10-01T03": 3.8933896800000003, - "2024-09-26T11": 4.11650596, - "2024-09-28T07": 4.1078214, - "2024-09-27T22": 4.19475492, - "2024-09-27T21": 4.183669279999999, - "2024-09-26T03": 3.96784899, - "2024-09-26T13": 4.09591808, - "2024-09-30T18": 3.9036723, - "2024-10-01T15": 3.79846012, - "2024-10-01T08": 3.9085309199999996, - "2024-09-25T19": 3.9894414, - "2024-09-30T21": 3.8967526400000003, - "2024-09-28T14": 4.1064106, - "2024-09-27T20": 4.1897540200000005, - "2024-09-26T06": 4.090977, - "2024-09-26T10": 4.11130096, - "2024-09-29T04": 4.09812294, - "2024-09-28T16": 4.148414799999999, - "2024-10-01T00": 3.83431216, - "2024-09-24T20": 3.83177008, - "2024-09-26T19": 4.1074107, - "2024-09-24T15": 3.74155096, - "2024-09-27T06": 4.221117798166499, - "2024-09-29T14": 4.07769309, - "2024-09-29T07": 4.0602842, - "2024-09-28T00": 4.201504119999999, - "2024-09-30T01": 4.03848456, - "2024-09-29T09": 4.065325200000001, - "2024-09-25T09": 3.90772644, - "2024-09-30T11": 3.94576324, - "2024-09-25T07": 3.9098436, - "2024-09-24T19": 3.8155420799999997, - "2024-09-29T19": 4.115740700000001, - "2024-09-30T15": 3.899493, - "2024-09-28T21": 4.107460698338914, - "2024-10-01T05": 3.89620692, - "2024-10-01T14": 3.79846012, - "2024-09-27T00": 4.11853534, - "latest": 3.63 - }, - "USD flare": { - "2024-09-12": 0.01455, - "2024-09-15": 0.01522, - "2024-09-22": 0.014931584606254595, - "2024-09-05": 0.01475, - "2024-09-10": 0.014796853973119393, - "2024-09-11": 0.01454599861544067, - "2024-09-20": 0.01499, - "2024-09-26": 0.015221462013593022, - "2024-09-16": 0.014598379972405503, - "2024-09-08": 0.014499542156945202, - "2024-09-24": 0.01501, - "2024-09-29": 0.01642, - "2024-09-17": 0.01462, - "2024-09-14": 0.015293629129252122, - "2024-09-03": 0.01536, - "2024-09-25": 0.01504, - "2024-09-18": 0.01431, - "2024-09-07": 0.014419949753015717, - "2024-09-06": 0.014456228201305455, - "2024-09-19": 0.01496, - "2024-09-30": 0.01564, - "2024-09-01": 0.01582, - "2024-08-31": 0.01601, - "2024-09-02": 0.01533, - "2024-09-23": 0.014918306056602888, - "2024-09-13": 0.01482, - "2024-10-01": 0.01527, - "2024-09-04": 0.01476, - "2024-09-28": 0.01656217491872693, - "2024-09-21": 0.0151, - "2024-09-09": 0.014486078260535102, - "2024-09-27": 0.01577, - "2024-09-27T07": 0.015630130386015493, - "2024-09-27T05": 0.01569083902355318, - "2024-09-30T14": 0.015641201845551168, - "2024-09-27T14": 0.015660894208380138, - "2024-09-27T23": 0.015850482756505566, - "2024-09-28T11": 0.015649475868298065, - "2024-09-29T00": 0.0165219698668063, - "2024-09-28T18": 0.016699088483647543, - "2024-09-29T23": 0.01621809764357821, - "2024-10-01T13": 0.01564035300897873, - "2024-09-30T10": 0.015553316212331325, - "2024-09-25T22": 0.015037742747042596, - "2024-09-29T11": 0.016320640748964305, - "2024-09-28T12": 0.015603442643123381, - "2024-09-26T09": 0.015015189917601684, - "2024-09-28T10": 0.015589695604890994, - "2024-09-27T16": 0.01577933162757341, - "2024-09-24T17": 0.01500142142911149, - "2024-09-27T15": 0.01591551586245741, - "2024-09-29T12": 0.016561780393189413, - "2024-09-25T04": 0.015340549647038204, - "2024-09-25T21": 0.015029552201562909, - "2024-09-25T18": 0.01493153175429148, - "2024-09-26T04": 0.014960013169162744, - "2024-09-26T05": 0.01496340908151271, - "2024-09-30T04": 0.016111646451052352, - "2024-09-27T13": 0.01573347241124716, - "2024-09-28T13": 0.015499399843565308, - "2024-09-25T08": 0.015086455462805995, - "2024-09-30T03": 0.016035362603791452, - "2024-10-01T10": 0.01564010455562809, - "2024-09-25T13": 0.015186133557809588, - "2024-10-01T01": 0.01529378702863645, - "2024-09-26T17": 0.015330282320995096, - "2024-09-25T15": 0.015047781290935295, - "2024-09-29T22": 0.016319101800742343, - "2024-09-29T01": 0.01638477509169115, - "2024-09-30T06": 0.01598523883570669, - "2024-09-27T12": 0.015659958256051883, - "2024-09-25T23": 0.014966336006493068, - "2024-09-30T05": 0.015945485147407314, - "2024-09-28T23": 0.01665943223731693, - "2024-09-30T19": 0.0155916225948084, - "2024-09-25T00": 0.015232555158263756, - "2024-10-01T12": 0.015591023354755453, - "2024-09-29T10": 0.01633597710724203, - "2024-09-24T22": 0.01525945444126309, - "2024-09-26T08": 0.015104375790148897, - "2024-09-29T20": 0.016416957749234004, - "2024-09-25T12": 0.015166560247383602, - "2024-09-25T05": 0.015236742938092705, - "2024-09-27T09": 0.015783644493736673, - "2024-09-26T02": 0.014819255794611536, - "2024-09-28T05": 0.01606865823678993, - "2024-09-29T03": 0.01672881444428934, - "2024-09-26T23": 0.015665221545843176, - "2024-09-29T16": 0.01644309376836413, - "2024-09-26T21": 0.015210115077468278, - "2024-09-26T16": 0.0152632750506942, - "2024-09-28T03": 0.01603022350663994, - "2024-09-29T21": 0.016389900390339433, - "2024-09-30T09": 0.015872866659139284, - "2024-09-24T16": 0.014974821759269763, - "2024-09-30T07": 0.015827888191188237, - "2024-09-28T17": 0.017056659537651824, - "2024-09-28T02": 0.015951356977208526, - "2024-09-28T15": 0.015542619190294076, - "2024-09-29T17": 0.016301233568581697, - "2024-09-25T17": 0.015029910159396344, - "2024-09-25T16": 0.015035104596300307, - "2024-10-01T04": 0.015540619401888608, - "2024-10-01T07": 0.015630922932300447, - "2024-09-30T23": 0.015420199439994559, - "2024-09-29T13": 0.01624504928824586, - "2024-09-26T22": 0.015310311921081734, - "2024-10-01T11": 0.015635394577276737, - "2024-09-30T16": 0.015531339281789916, - "2024-09-28T01": 0.01598634642797271, - "2024-09-27T02": 0.015607579748818096, - "2024-09-30T20": 0.015558114559626626, - "2024-09-28T06": 0.01588843478449384, - "2024-09-27T08": 0.015620942876004814, - "2024-10-01T06": 0.01555108880941598, - "2024-09-27T03": 0.015646584213143088, - "2024-09-25T06": 0.015252675658540512, - "2024-10-01T02": 0.015345840452768003, - "2024-09-27T17": 0.01592652483457687, - "2024-09-30T22": 0.015522787254164215, - "2024-09-29T05": 0.016826601882160883, - "2024-09-28T20": 0.016467802639201768, - "2024-09-30T13": 0.015697969178780243, - "2024-09-26T18": 0.015284366247914478, - "2024-09-25T10": 0.015061843007425198, - "2024-09-25T02": 0.015357915188579053, - "2024-09-29T02": 0.016299065290477362, - "2024-09-28T08": 0.015668853857952185, - "2024-09-30T17": 0.015580266009488244, - "2024-09-30T02": 0.015991145398041296, - "2024-09-28T09": 0.01553494862614115, - "2024-09-25T03": 0.015340970647737073, - "2024-09-29T15": 0.016400874830514858, - "2024-09-29T06": 0.016657263670409917, - "2024-09-24T18": 0.015011800399797761, - "2024-09-26T07": 0.015067385724585818, - "2024-09-26T15": 0.015223118668877137, - "2024-09-27T04": 0.015714913326285943, - "2024-09-27T11": 0.01566626049073669, - "2024-09-26T20": 0.01522386548537985, - "2024-09-30T12": 0.01570975903070538, - "2024-09-27T10": 0.015801278179881664, - "2024-09-26T12": 0.015184365178886721, - "2024-09-24T23": 0.015250291340399255, - "2024-09-30T00": 0.01619719454167914, - "2024-09-25T14": 0.014990857851297393, - "2024-09-26T14": 0.015374969081243414, - "2024-09-27T01": 0.015675360405237614, - "2024-09-28T04": 0.01601102792107145, - "2024-09-29T08": 0.016307748745944636, - "2024-09-26T01": 0.014820756421735522, - "2024-09-27T19": 0.01592356243949939, - "2024-09-25T01": 0.01523598959835112, - "2024-09-26T00": 0.014927855599488145, - "2024-09-29T18": 0.016366070000900068, - "2024-09-28T19": 0.016522873237795464, - "2024-09-28T22": 0.016290908642583406, - "2024-09-27T18": 0.01582329398052984, - "2024-09-24T21": 0.015257939973627526, - "2024-09-30T08": 0.01592364632404562, - "2024-09-25T11": 0.015111054445015912, - "2024-09-25T20": 0.0150609683062414, - "2024-10-01T09": 0.015650396083361003, - "2024-10-01T03": 0.015368531535001563, - "2024-09-26T11": 0.015176009726493205, - "2024-09-28T07": 0.015827567641401724, - "2024-09-27T22": 0.015808940717964057, - "2024-09-27T21": 0.01584751293675678, - "2024-09-26T03": 0.014931473830276312, - "2024-09-26T13": 0.015224814527586018, - "2024-09-30T18": 0.015572006914223153, - "2024-10-01T08": 0.015607655611894125, - "2024-09-25T19": 0.01500266621871181, - "2024-09-30T21": 0.015535263879318901, - "2024-09-28T14": 0.015435381505726582, - "2024-09-27T20": 0.015810458275525456, - "2024-09-26T06": 0.015002113929530981, - "2024-09-26T10": 0.015114773903394432, - "2024-09-29T04": 0.01694567717370935, - "2024-09-28T16": 0.01577213045349618, - "2024-10-01T00": 0.01529137709501603, - "2024-09-24T20": 0.015339158767802496, - "2024-09-26T19": 0.015220360385848586, - "2024-09-24T15": 0.014913544580775465, - "2024-09-27T06": 0.01564808483902637, - "2024-09-29T14": 0.01630953385725754, - "2024-09-29T07": 0.016404469203791103, - "2024-09-28T00": 0.015843356101441608, - "2024-09-30T01": 0.016105133629137146, - "2024-09-29T09": 0.016363013441389566, - "2024-09-25T09": 0.015108480897074495, - "2024-09-30T11": 0.015596442467943256, - "2024-09-25T07": 0.015105771687606706, - "2024-09-24T19": 0.015000597815655681, - "2024-09-29T19": 0.016418058031004445, - "2024-09-30T15": 0.015604709303622117, - "2024-09-28T21": 0.016457519829815356, - "2024-10-01T05": 0.01556474442015381, - "2024-10-01T14": 0.015357356348059977, - "2024-09-27T00": 0.01583222478569472, - "latest": 0.01505782, - "2024-10-01T15": 0.015215081255054176 - }, - "USD flow": { - "2024-09-12": 0.5471105229640434, - "2024-09-15": 0.5600116635139768, - "2024-09-22": 0.595744342333378, - "2024-09-05": 0.5564591445182031, - "2024-09-10": 0.5409585120249819, - "2024-09-11": 0.5435646684399033, - "2024-09-20": 0.5660196270747141, - "2024-09-26": 0.6012898149852152, - "2024-09-16": 0.5397498847046762, - "2024-09-08": 0.5156877726205223, - "2024-09-24": 0.5898940885176728, - "2024-09-29": 0.6171127627612207, - "2024-09-17": 0.5251490403818199, - "2024-09-14": 0.564633575837419, - "2024-09-03": 0.566047761275702, - "2024-09-25": 0.6046008023122502, - "2024-09-18": 0.5349435136959635, - "2024-09-07": 0.5146407958437089, - "2024-09-06": 0.5325163487169201, - "2024-09-19": 0.5427908151425841, - "2024-09-30": 0.6148457858269686, - "2024-09-01": 0.5535368214550344, - "2024-08-31": 0.5553139355263871, - "2024-09-02": 0.5287605317512613, - "2024-09-23": 0.5724979655801838, - "2024-09-13": 0.5593388250664265, - "2024-10-01": 0.5821534977751697, - "2024-09-04": 0.5547860287075268, - "2024-09-28": 0.6276766194766439, - "2024-09-21": 0.5766823387174491, - "2024-09-09": 0.5235606539869619, - "2024-09-27": 0.622551131112209, - "2024-09-27T07": 0.6325861429620475, - "2024-09-27T05": 0.6324655150008696, - "2024-09-30T14": 0.5974792005498011, - "2024-09-27T14": 0.6286938048333628, - "2024-09-27T23": 0.6305213633467968, - "2024-09-28T11": 0.6163761772935622, - "2024-09-29T00": 0.6179760809161853, - "2024-09-28T18": 0.6146118805227277, - "2024-09-29T23": 0.6178906555077897, - "2024-10-01T13": 0.5915256504800811, - "2024-09-30T10": 0.5965456503342703, - "2024-09-25T22": 0.6109308761083343, - "2024-09-29T11": 0.6079668030022953, - "2024-09-28T12": 0.6137713377263762, - "2024-09-26T09": 0.609231477312196, - "2024-09-28T10": 0.6129983148601349, - "2024-09-27T16": 0.6307159590023647, - "2024-09-24T17": 0.5904623561048944, - "2024-09-27T15": 0.6344207904843291, - "2024-09-29T12": 0.6094757789871585, - "2024-09-25T04": 0.6120640076305129, - "2024-09-25T21": 0.6096596772295816, - "2024-09-25T18": 0.6048779869472818, - "2024-09-26T04": 0.6017487733221683, - "2024-09-26T05": 0.6023886949005819, - "2024-09-30T04": 0.603497037324722, - "2024-09-27T13": 0.6308917612820548, - "2024-09-28T13": 0.6098760073062027, - "2024-09-25T08": 0.6132764047223094, - "2024-09-30T03": 0.6027350715060874, - "2024-10-01T10": 0.5934750097917643, - "2024-09-25T13": 0.6102358216050274, - "2024-10-01T01": 0.5882942711024005, - "2024-09-26T17": 0.6256130675647139, - "2024-09-25T15": 0.6149150656454552, - "2024-09-29T22": 0.6182333352540493, - "2024-09-29T01": 0.6116458013851069, - "2024-09-30T06": 0.6064564106268053, - "2024-09-27T12": 0.6267380833567319, - "2024-09-25T23": 0.6074438274612264, - "2024-09-30T05": 0.6029723917800633, - "2024-09-28T23": 0.6150925818263703, - "2024-09-30T19": 0.5894109961082465, - "2024-09-25T00": 0.6048616815978624, - "2024-10-01T12": 0.5924049601895242, - "2024-09-29T10": 0.6120748422575628, - "2024-09-24T22": 0.5983387196967191, - "2024-09-26T08": 0.6133504149375892, - "2024-09-29T20": 0.6224314972908045, - "2024-09-25T12": 0.6135820409058907, - "2024-09-25T05": 0.6051721232097503, - "2024-09-27T09": 0.6332201981690271, - "2024-09-26T02": 0.5979189035490431, - "2024-09-28T05": 0.6287383141289477, - "2024-09-29T03": 0.6124748151111603, - "2024-09-26T23": 0.6229586916955245, - "2024-09-29T16": 0.611735455235992, - "2024-09-26T21": 0.6126082292834433, - "2024-09-26T16": 0.6254633054830235, - "2024-09-28T03": 0.6305615503752011, - "2024-09-29T21": 0.6185633686237706, - "2024-09-30T09": 0.6049582620098015, - "2024-09-24T16": 0.5904956179520535, - "2024-09-30T07": 0.602734319500341, - "2024-09-28T17": 0.6120784237049344, - "2024-09-28T02": 0.6273848155638118, - "2024-09-28T15": 0.6140248593452684, - "2024-09-29T17": 0.6128226710925331, - "2024-09-25T17": 0.607652680698624, - "2024-09-25T16": 0.6088690500789886, - "2024-10-01T04": 0.5919199405025868, - "2024-10-01T07": 0.5938830154537071, - "2024-09-30T23": 0.5840378210274015, - "2024-09-29T13": 0.6056212467430877, - "2024-09-26T22": 0.6181516724346384, - "2024-10-01T11": 0.5942423963495113, - "2024-09-30T16": 0.5880707288852878, - "2024-09-28T01": 0.6274549644243151, - "2024-09-27T02": 0.624404140754014, - "2024-09-30T20": 0.5879175752578542, - "2024-09-28T06": 0.6250471715923963, - "2024-09-27T08": 0.6314846877580874, - "2024-10-01T06": 0.5884781443955752, - "2024-09-27T03": 0.6224317548684433, - "2024-09-25T06": 0.615338770565654, - "2024-10-01T02": 0.5871706399948953, - "2024-09-27T17": 0.636221290452706, - "2024-09-30T22": 0.5886538746392631, - "2024-09-29T05": 0.6160229676965631, - "2024-09-28T20": 0.6153927144073982, - "2024-09-30T13": 0.6003144576230259, - "2024-09-26T18": 0.6184188316826448, - "2024-09-25T10": 0.6079566802096485, - "2024-09-25T02": 0.6152429360279092, - "2024-09-29T02": 0.6122459206271582, - "2024-09-28T08": 0.6165822780660052, - "2024-09-30T17": 0.58787145389706, - "2024-09-30T02": 0.607813148716445, - "2024-09-28T09": 0.6102476512208304, - "2024-09-25T03": 0.6117434595355511, - "2024-09-29T15": 0.6102418613008489, - "2024-09-29T06": 0.6152005847281955, - "2024-09-24T18": 0.59395142062417, - "2024-09-26T07": 0.6122788971254921, - "2024-09-26T15": 0.6178064064530493, - "2024-09-27T04": 0.6284628721187776, - "2024-09-27T11": 0.6248892871464994, - "2024-09-26T20": 0.6168333246088711, - "2024-09-30T12": 0.5992970346477974, - "2024-09-27T10": 0.6325840029457409, - "2024-09-26T12": 0.6154231450027666, - "2024-09-24T23": 0.6081381305588459, - "2024-09-30T00": 0.6161269181263475, - "2024-09-25T14": 0.6102528738545818, - "2024-09-26T14": 0.6193180072804959, - "2024-09-27T01": 0.6256795080296949, - "2024-09-28T04": 0.627475715483147, - "2024-09-29T08": 0.6094632500697674, - "2024-09-26T01": 0.5969170765605352, - "2024-09-27T19": 0.6282056172810493, - "2024-09-25T01": 0.6077721529899947, - "2024-09-26T00": 0.6012898149852152, - "2024-09-29T18": 0.6159693052610018, - "2024-09-28T19": 0.6172932615257397, - "2024-09-28T22": 0.6126016035706385, - "2024-09-27T18": 0.6286511180548018, - "2024-09-24T21": 0.5983289005051416, - "2024-09-30T08": 0.6076960843220506, - "2024-09-25T11": 0.6082320365113392, - "2024-09-25T20": 0.6075122753989957, - "2024-10-01T09": 0.5928097726854272, - "2024-10-01T03": 0.5869162209615577, - "2024-09-26T11": 0.6162500662653063, - "2024-09-28T07": 0.6194366933268709, - "2024-09-27T22": 0.6273570601345961, - "2024-09-27T21": 0.6275248099248109, - "2024-09-26T03": 0.6022619409536274, - "2024-09-26T13": 0.6153889414101563, - "2024-09-30T18": 0.5909273714503676, - "2024-10-01T08": 0.5936957437520377, - "2024-09-25T19": 0.6070682410103323, - "2024-09-30T21": 0.5915252100177941, - "2024-09-28T14": 0.6101619024004122, - "2024-09-27T20": 0.6245375401147817, - "2024-09-26T06": 0.608024501996394, - "2024-09-26T10": 0.6095856664210135, - "2024-09-29T04": 0.6177446112063805, - "2024-09-28T16": 0.6127862048561704, - "2024-10-01T00": 0.5821534977751697, - "2024-09-24T20": 0.5980836142187499, - "2024-09-26T19": 0.6198148686737943, - "2024-09-24T15": 0.594125129711575, - "2024-09-27T06": 0.6352217491594719, - "2024-09-29T14": 0.6134243654427769, - "2024-09-29T07": 0.6121948887911549, - "2024-09-28T00": 0.6291607951140862, - "2024-09-30T01": 0.6168734960046423, - "2024-09-29T09": 0.6091710925384947, - "2024-09-25T09": 0.611147767009736, - "2024-09-30T11": 0.5983414356375337, - "2024-09-25T07": 0.6045908192091297, - "2024-09-24T19": 0.5924856223082917, - "2024-09-29T19": 0.615884067365416, - "2024-09-30T15": 0.594138363414155, - "2024-09-28T21": 0.6132370002351547, - "2024-10-01T05": 0.5924242214415522, - "2024-10-01T14": 0.57572723, - "2024-09-27T00": 0.6235161908856843, - "latest": 0.55198, - "2024-10-01T15": 0.57572723 - }, - "USD hedera": { - "2024-09-12": 0.050411918175366686, - "2024-09-15": 0.05146368232686661, - "2024-09-22": 0.05380771850936903, - "2024-09-05": 0.04840329376168728, - "2024-09-10": 0.05062781089694891, - "2024-09-11": 0.0497551189306506, - "2024-09-20": 0.05225950770171817, - "2024-09-26": 0.05939587271145768, - "2024-09-16": 0.04973707791104296, - "2024-09-08": 0.04921666583372976, - "2024-09-24": 0.056995447403197966, - "2024-09-29": 0.06090731597644877, - "2024-09-17": 0.04965971445815973, - "2024-09-14": 0.051952845109918835, - "2024-09-03": 0.04956, - "2024-09-25": 0.058895874536360304, - "2024-09-18": 0.04943678806733236, - "2024-09-07": 0.04802881363844134, - "2024-09-06": 0.04752364962453954, - "2024-09-19": 0.05194501941549923, - "2024-09-30": 0.059500291869040725, - "2024-09-01": 0.04890635597401176, - "2024-08-31": 0.05055548404134093, - "2024-09-02": 0.0498008470418846, - "2024-09-23": 0.055902225839844576, - "2024-09-13": 0.051601512726979305, - "2024-10-01": 0.058073920968491635, - "2024-09-04": 0.04887774751832845, - "2024-09-28": 0.061292880480533135, - "2024-09-21": 0.054297265452373136, - "2024-09-09": 0.050626966368268696, - "2024-09-27": 0.06161070446599349, - "2024-09-27T07": 0.062077567291187186, - "2024-09-27T05": 0.06187758433646001, - "2024-09-30T14": 0.059577284391175586, - "2024-09-27T14": 0.06132328795485055, - "2024-09-27T23": 0.061847793641883544, - "2024-09-28T11": 0.06149296929823828, - "2024-09-29T00": 0.061173669864376716, - "2024-09-28T18": 0.061102595755726984, - "2024-09-29T23": 0.06169041359446699, - "2024-10-01T13": 0.05846981334377109, - "2024-09-30T10": 0.05931118918325295, - "2024-09-25T22": 0.05908838409356888, - "2024-09-29T11": 0.06034585261738596, - "2024-09-28T12": 0.061393990340104405, - "2024-09-26T09": 0.0582330046461146, - "2024-09-28T10": 0.06112801895968118, - "2024-09-27T16": 0.06168287623423073, - "2024-09-24T17": 0.05651331408896898, - "2024-09-27T15": 0.06205401399629724, - "2024-09-29T12": 0.06075692235396166, - "2024-09-25T04": 0.05903158423957086, - "2024-09-25T21": 0.058761867261558465, - "2024-09-25T18": 0.058115357350343115, - "2024-09-26T04": 0.057918240197768554, - "2024-09-26T05": 0.057599470798661186, - "2024-09-30T04": 0.06010439510387799, - "2024-09-27T13": 0.06128513369848296, - "2024-09-28T13": 0.060787782546024495, - "2024-09-25T08": 0.05911409546783817, - "2024-09-30T03": 0.06014396665043487, - "2024-10-01T10": 0.05894974263168106, - "2024-09-25T13": 0.05896102029601581, - "2024-10-01T01": 0.05800243654670808, - "2024-09-26T17": 0.06125563573007235, - "2024-09-25T15": 0.05925522965418611, - "2024-09-29T22": 0.062005422036401386, - "2024-09-29T01": 0.060797156211581445, - "2024-09-30T06": 0.060079004007140065, - "2024-09-27T12": 0.061158395679778495, - "2024-09-25T23": 0.05903088713563695, - "2024-09-30T05": 0.05960986852997681, - "2024-09-28T23": 0.060945658308660854, - "2024-09-30T19": 0.05859854742254621, - "2024-09-25T00": 0.057419621530758844, - "2024-10-01T12": 0.05861770053124331, - "2024-09-29T10": 0.06047343183024773, - "2024-09-24T22": 0.0575231477798969, - "2024-09-26T08": 0.05868671179645958, - "2024-09-29T20": 0.062269392046605525, - "2024-09-25T12": 0.05974525324864648, - "2024-09-25T05": 0.05874511044147496, - "2024-09-27T09": 0.061485921744227456, - "2024-09-26T02": 0.05764626605746023, - "2024-09-28T05": 0.06354326147961792, - "2024-09-29T03": 0.06112840135410306, - "2024-09-26T23": 0.0616445570345296, - "2024-09-29T16": 0.060816413659945286, - "2024-09-26T21": 0.06088330640765561, - "2024-09-26T16": 0.06114246860564689, - "2024-09-28T03": 0.06273612840461479, - "2024-09-29T21": 0.061730552879036456, - "2024-09-30T09": 0.060348984973908365, - "2024-09-24T16": 0.05627142412175568, - "2024-09-30T07": 0.05999259508508028, - "2024-09-28T17": 0.060606023283793505, - "2024-09-28T02": 0.062140941724857665, - "2024-09-28T15": 0.0612519215977989, - "2024-09-29T17": 0.061429445807916226, - "2024-09-25T17": 0.05873666088547553, - "2024-09-25T16": 0.05854223170399264, - "2024-10-01T04": 0.05870467843582946, - "2024-10-01T07": 0.05919184701007178, - "2024-09-30T23": 0.05787649491496873, - "2024-09-29T13": 0.06001092847232046, - "2024-09-26T22": 0.06120527172558159, - "2024-10-01T11": 0.05904599400723357, - "2024-09-30T16": 0.058532412945666704, - "2024-09-28T01": 0.061814882243373885, - "2024-09-27T02": 0.06127248281537658, - "2024-09-30T20": 0.05860829475039379, - "2024-09-28T06": 0.06311391920399124, - "2024-09-27T08": 0.06150017194804487, - "2024-10-01T06": 0.05851251174277982, - "2024-09-27T03": 0.06106275970841904, - "2024-09-25T06": 0.059081920461164436, - "2024-10-01T02": 0.057995538492567694, - "2024-09-27T17": 0.06202291118942634, - "2024-09-30T22": 0.058857579870147676, - "2024-09-29T05": 0.06106210868976636, - "2024-09-28T20": 0.06112024609878018, - "2024-09-30T13": 0.059838562568775615, - "2024-09-26T18": 0.06113759403709285, - "2024-09-25T10": 0.05957079259094902, - "2024-09-25T02": 0.05827189332234788, - "2024-09-29T02": 0.06082392894696358, - "2024-09-28T08": 0.06138682316017294, - "2024-09-30T17": 0.05849258107358402, - "2024-09-30T02": 0.06067913898726282, - "2024-09-28T09": 0.060771521368951684, - "2024-09-25T03": 0.05830399171121009, - "2024-09-29T15": 0.0603628889546326, - "2024-09-29T06": 0.06090349680554854, - "2024-09-26T07": 0.0584093725606713, - "2024-09-26T15": 0.059701730486573484, - "2024-09-27T04": 0.06202800429186963, - "2024-09-27T11": 0.06068306816655782, - "2024-09-26T20": 0.061371523291560176, - "2024-09-30T12": 0.05954911823264379, - "2024-09-27T10": 0.06140034906383144, - "2024-09-26T12": 0.05896011720486923, - "2024-09-24T23": 0.057790304557627015, - "2024-09-30T00": 0.06142029268062493, - "2024-09-25T14": 0.05877104421391199, - "2024-09-26T14": 0.05980323187069111, - "2024-09-27T01": 0.06202515730110298, - "2024-09-28T04": 0.06333366684481741, - "2024-09-29T08": 0.06000909296517796, - "2024-09-26T01": 0.05724494498871166, - "2024-09-27T19": 0.06214495125000892, - "2024-09-25T01": 0.05753918169078827, - "2024-09-26T00": 0.058481251754837246, - "2024-09-29T18": 0.06179737069406662, - "2024-09-28T19": 0.06105756821238703, - "2024-09-28T22": 0.0610845022058426, - "2024-09-27T18": 0.061239985341185556, - "2024-09-24T21": 0.05711417502986657, - "2024-09-30T08": 0.060624007105437895, - "2024-09-25T11": 0.060118741531345984, - "2024-09-25T20": 0.05813191169665759, - "2024-10-01T09": 0.05894957016335375, - "2024-10-01T03": 0.05835085655985837, - "2024-09-26T11": 0.059064843330925466, - "2024-09-28T07": 0.06211527205391477, - "2024-09-27T22": 0.06160649986205081, - "2024-09-27T21": 0.061368753482820546, - "2024-09-26T03": 0.05792093771769813, - "2024-09-26T13": 0.059218162081623116, - "2024-09-30T18": 0.058831914134051096, - "2024-10-01T08": 0.05918058799189227, - "2024-09-25T19": 0.05824511087784976, - "2024-09-30T21": 0.059079871662639574, - "2024-09-28T14": 0.06078025657162312, - "2024-09-27T20": 0.06142267244055978, - "2024-09-26T06": 0.05831839659540759, - "2024-09-26T10": 0.05826381952230304, - "2024-09-29T04": 0.06163271095023572, - "2024-09-28T16": 0.061129524731980404, - "2024-10-01T00": 0.05748270321945978, - "2024-09-24T20": 0.05729628263378359, - "2024-09-26T19": 0.06193347405369156, - "2024-09-24T15": 0.05635364509929929, - "2024-09-27T06": 0.06262950427575593, - "2024-09-29T14": 0.060648338170474304, - "2024-09-29T07": 0.0604785475918022, - "2024-09-28T00": 0.061937533693061604, - "2024-09-30T01": 0.061602514514581236, - "2024-09-29T09": 0.06018133066339019, - "2024-09-25T09": 0.05984499290634022, - "2024-09-30T11": 0.05906492208777867, - "2024-09-25T07": 0.05865222484414919, - "2024-09-24T19": 0.05655610804303293, - "2024-09-29T19": 0.062008148728470075, - "2024-09-30T15": 0.059230276481408516, - "2024-09-28T21": 0.06103647535601697, - "2024-10-01T05": 0.05881834633472645, - "2024-10-01T14": 0.05705196579589891, - "2024-09-27T00": 0.061703462120263744, - "latest": 0.054517, - "2024-10-01T15": 0.05705196579589891 - }, - "USD injective": { - "2024-09-12": 19.17955598838202, - "2024-09-15": 19.795090974298702, - "2024-09-22": 21.13134850444247, - "2024-09-05": 17.091592364927052, - "2024-09-10": 17.858758917187096, - "2024-09-11": 18.252657249136266, - "2024-09-20": 20.834965283297777, - "2024-09-26": 23.18419909655185, - "2024-09-16": 18.248641457674843, - "2024-09-08": 16.234720717781844, - "2024-09-24": 22.147992555857595, - "2024-09-29": 22.702369769460617, - "2024-09-17": 18.499996813654633, - "2024-09-14": 19.54219091333102, - "2024-09-03": 16.739091912086497, - "2024-09-25": 21.86653842927309, - "2024-09-18": 19.027820383815598, - "2024-09-07": 16.237473272031373, - "2024-09-06": 16.628671063092234, - "2024-09-19": 20.612627088285556, - "2024-09-30": 23.13825999478347, - "2024-09-01": 17.022431582844455, - "2024-08-31": 17.342264112806703, - "2024-09-02": 16.847633772384455, - "2024-09-23": 22.103521679050996, - "2024-09-13": 19.120793893627837, - "2024-10-01": 23.734400135244464, - "2024-09-04": 16.152743677626827, - "2024-09-28": 23.085708049601916, - "2024-09-21": 20.963939779188326, - "2024-09-09": 16.56474287661661, - "2024-09-27": 23.281499572421975, - "2024-09-27T07": 23.172317000000003, - "2024-09-27T05": 23.301165000000005, - "2024-09-30T14": 22.922837460042647, - "2024-09-27T14": 23.255439360000004, - "2024-09-27T23": 23.657838599999998, - "2024-09-28T11": 23.28939728, - "2024-09-29T00": 22.8220538, - "2024-09-28T18": 22.93381509, - "2024-09-29T23": 23.203480000000003, - "2024-10-01T13": 23.57040697, - "2024-09-30T10": 22.7686338, - "2024-09-25T22": 22.673565021035937, - "2024-09-29T11": 22.60226, - "2024-09-28T12": 23.0920781, - "2024-09-26T09": 23.18629562829629, - "2024-09-28T10": 23.2330199, - "2024-09-27T16": 23.572357, - "2024-09-24T17": 22.003520565874222, - "2024-09-27T15": 23.295123800000002, - "2024-09-29T12": 22.552705999999997, - "2024-09-25T04": 21.659569194808014, - "2024-09-25T21": 23.053786612193527, - "2024-09-25T18": 22.634710197212904, - "2024-09-26T04": 22.853240511816047, - "2024-09-26T05": 23.07598899805504, - "2024-09-30T04": 22.718864, - "2024-09-27T13": 23.064381399999995, - "2024-09-28T13": 22.902060999999996, - "2024-09-25T08": 21.438499200000003, - "2024-09-30T03": 22.700884008131094, - "2024-10-01T10": 24.2061264, - "2024-09-25T13": 21.5172024, - "2024-10-01T01": 23.732101516074334, - "2024-09-26T17": 23.28018177716617, - "2024-09-25T15": 22.0686758, - "2024-09-29T22": 23.492818799999995, - "2024-09-29T01": 22.6524915, - "2024-09-30T06": 23.530470599999997, - "2024-09-27T12": 23.00391, - "2024-09-25T23": 22.45456720130826, - "2024-09-30T05": 23.1402314, - "2024-09-28T23": 22.8325113, - "2024-09-30T19": 23.16919236, - "2024-09-25T00": 21.65635029, - "2024-10-01T12": 24.0468735, - "2024-09-29T10": 22.5120259, - "2024-09-24T22": 22.049118, - "2024-09-26T08": 23.45792676514177, - "2024-09-29T20": 23.548184290192637, - "2024-09-25T12": 21.56727448, - "2024-09-25T05": 21.612580245951815, - "2024-09-27T09": 23.16934836000388, - "2024-09-26T02": 22.636959138264444, - "2024-09-28T05": 23.6656784, - "2024-09-29T03": 22.7604552, - "2024-09-26T23": 23.018798426750973, - "2024-09-29T16": 22.732273, - "2024-09-26T21": 22.862285999999997, - "2024-09-26T16": 23.449902666504535, - "2024-09-28T03": 23.844861039999998, - "2024-09-29T21": 23.5935385, - "2024-09-30T09": 23.190231900000004, - "2024-09-24T16": 21.827451117366834, - "2024-09-30T07": 23.520470399999997, - "2024-09-28T17": 22.84079556, - "2024-09-28T02": 23.842860799999997, - "2024-09-28T15": 23.152083499999996, - "2024-09-29T17": 22.98598779, - "2024-09-25T17": 22.29160313098223, - "2024-09-25T16": 22.02674768995958, - "2024-10-01T04": 24.631096968179257, - "2024-10-01T07": 24.485591799999998, - "2024-09-30T23": 23.094225, - "2024-09-29T13": 22.533154200000002, - "2024-09-26T22": 23.095847520000003, - "2024-10-01T11": 24.09055410930315, - "2024-09-30T16": 23.113726571427186, - "2024-09-28T01": 23.612833199999997, - "2024-09-27T02": 23.01358980278355, - "2024-09-30T20": 23.7626313, - "2024-09-28T06": 23.233484500000003, - "2024-09-27T08": 23.24048555, - "2024-10-01T06": 24.21720976577295, - "2024-09-27T03": 23.341400399999998, - "2024-09-25T06": 21.4288907893229, - "2024-10-01T02": 23.720035007061593, - "2024-09-27T17": 23.5047, - "2024-09-30T22": 23.5631647, - "2024-09-29T05": 22.6306789, - "2024-09-28T20": 22.922292000000002, - "2024-09-30T13": 23.266501026354398, - "2024-09-26T18": 22.969956438366992, - "2024-09-25T10": 21.37671732, - "2024-09-25T02": 21.8177165158055, - "2024-09-29T02": 22.800455999999997, - "2024-09-28T08": 22.9641328, - "2024-09-30T17": 23.048306464600433, - "2024-09-30T02": 22.736136750000004, - "2024-09-28T09": 22.8932046, - "2024-09-25T03": 21.744187539696917, - "2024-09-29T15": 22.652944499999997, - "2024-09-29T06": 22.530901200000002, - "2024-09-24T18": 21.880449173573894, - "2024-09-26T07": 23.640016641011737, - "2024-09-26T15": 23.273270097719234, - "2024-09-27T04": 23.3604672, - "2024-09-27T11": 22.9238964, - "2024-09-26T20": 22.74078047477751, - "2024-09-30T12": 23.1383802, - "2024-09-27T10": 22.854113, - "2024-09-26T12": 23.463257125228353, - "2024-09-24T23": 22.0386776, - "2024-09-30T00": 22.99311485922785, - "2024-09-25T14": 21.9375866, - "2024-09-26T14": 23.360496692822085, - "2024-09-27T01": 23.052651336118927, - "2024-09-28T04": 23.85610089, - "2024-09-29T08": 22.454143140000003, - "2024-09-26T01": 22.208467481111363, - "2024-09-27T19": 23.622309127107123, - "2024-09-25T01": 21.87535056514672, - "2024-09-26T00": 22.508411854896327, - "2024-09-29T18": 23.05461, - "2024-09-28T19": 22.932292999999998, - "2024-09-28T22": 22.7677318, - "2024-09-27T18": 23.46202216578751, - "2024-09-24T21": 22.048677, - "2024-09-30T08": 23.4309372, - "2024-09-25T11": 21.542767567722755, - "2024-09-25T20": 22.926625144053475, - "2024-10-01T09": 24.216609199999997, - "2024-10-01T03": 24.314074852996708, - "2024-09-26T11": 23.227432842596148, - "2024-09-28T07": 23.131625399999997, - "2024-09-27T22": 23.60224764, - "2024-09-27T21": 23.603776, - "2024-09-26T03": 22.686542123505856, - "2024-09-26T13": 23.25561799740951, - "2024-09-30T18": 23.02222259622574, - "2024-10-01T15": 23.133058000000002, - "2024-10-01T08": 24.38007404, - "2024-09-25T19": 22.829578213008848, - "2024-09-30T21": 23.802380799999998, - "2024-09-28T14": 23.092309, - "2024-09-27T20": 23.545237380000003, - "2024-09-26T06": 23.55347748129848, - "2024-09-26T10": 23.23580746118267, - "2024-09-29T04": 22.6906807, - "2024-09-28T16": 22.8812879, - "2024-10-01T00": 23.11672190336553, - "2024-09-24T20": 22.125065700815814, - "2024-09-26T19": 22.99480761282322, - "2024-09-24T15": 21.734591713844907, - "2024-09-27T06": 23.314466279999998, - "2024-09-29T14": 22.5938403, - "2024-09-29T07": 22.4515715, - "2024-09-28T00": 23.614833439999995, - "2024-09-30T01": 22.99283090031436, - "2024-09-29T09": 22.611808800000002, - "2024-09-25T09": 21.3085083, - "2024-09-30T11": 22.85262876, - "2024-09-25T07": 21.341895719279265, - "2024-09-24T19": 21.972717145552014, - "2024-09-29T19": 23.254185000000003, - "2024-09-30T15": 23.33173785623057, - "2024-09-28T21": 22.6824948, - "2024-10-01T05": 24.210344198140003, - "2024-10-01T14": 23.133058000000002, - "2024-09-27T00": 23.0729991, - "latest": 21.89 - }, - "USD internet_computer": { - "2024-09-12": 8.492045134345949, - "2024-09-15": 8.585325842766986, - "2024-09-22": 8.26214488932667, - "2024-09-05": 7.353763983647169, - "2024-09-10": 7.99902796738896, - "2024-09-11": 8.672663997067115, - "2024-09-20": 8.374718455556703, - "2024-09-26": 9.266705610163044, - "2024-09-16": 8.036640871789022, - "2024-09-08": 7.309618316125813, - "2024-09-24": 9.053768410753852, - "2024-09-29": 9.6408769294003, - "2024-09-17": 7.962311482564102, - "2024-09-14": 8.635711854146738, - "2024-09-03": 7.440730836068655, - "2024-09-25": 9.251958330825214, - "2024-09-18": 7.817864962204788, - "2024-09-07": 7.087276026652283, - "2024-09-06": 7.10870942492901, - "2024-09-19": 8.235907699898656, - "2024-09-30": 9.277692692829454, - "2024-09-01": 7.366675594675391, - "2024-08-31": 7.555577019801302, - "2024-09-02": 7.342426018901828, - "2024-09-23": 8.483050710974268, - "2024-09-13": 8.405381802884737, - "2024-10-01": 9.088493601606455, - "2024-09-04": 7.253629576475999, - "2024-09-28": 9.773464081677119, - "2024-09-21": 8.435503256708833, - "2024-09-09": 7.529264988350635, - "2024-09-27": 9.58291064238436, - "2024-09-27T07": 9.5359535, - "2024-09-27T05": 9.4524726, - "2024-09-30T14": 9.179255609999998, - "2024-09-27T14": 9.678416854368693, - "2024-09-27T23": 9.91518968, - "2024-09-28T11": 9.80758842, - "2024-09-29T00": 9.628634244042834, - "2024-09-28T18": 9.671030490000001, - "2024-09-29T23": 9.617306539294406, - "2024-10-01T13": 9.0490045, - "2024-09-30T10": 9.222446620000001, - "2024-09-25T22": 9.0746386, - "2024-09-29T11": 9.640964, - "2024-09-28T12": 9.728875519999999, - "2024-09-26T09": 9.15707661, - "2024-09-28T10": 9.78527192, - "2024-09-27T16": 9.781242647303666, - "2024-09-24T17": 9.09060059085521, - "2024-09-27T15": 9.76053231852542, - "2024-09-29T12": 9.600351903999998, - "2024-09-25T04": 9.317055813845462, - "2024-09-25T21": 9.1426284, - "2024-09-25T18": 9.24724269, - "2024-09-26T04": 9.17233925, - "2024-09-26T05": 9.23132214, - "2024-09-30T04": 9.334630256633032, - "2024-09-27T13": 9.579914242680555, - "2024-09-28T13": 9.691672171999999, - "2024-09-25T08": 9.20135586, - "2024-09-30T03": 9.361458842550853, - "2024-10-01T10": 9.27051648, - "2024-09-25T13": 9.1888053, - "2024-10-01T01": 9.100721892433363, - "2024-09-26T17": 9.549851892508546, - "2024-09-25T15": 9.39743612, - "2024-09-29T22": 9.758170839999998, - "2024-09-29T01": 9.58805457, - "2024-09-30T06": 9.479643604589524, - "2024-09-27T12": 9.575627579999999, - "2024-09-25T23": 9.04600944, - "2024-09-30T05": 9.39273014406704, - "2024-09-28T23": 9.653897549288178, - "2024-09-30T19": 9.1115363, - "2024-09-25T00": 9.448229012759546, - "2024-10-01T12": 9.21080244, - "2024-09-29T10": 9.58586265, - "2024-09-24T22": 9.414911038754383, - "2024-09-26T08": 9.130507852506794, - "2024-09-29T20": 9.686753607842336, - "2024-09-25T12": 9.23826088, - "2024-09-25T05": 9.261244474753637, - "2024-09-27T09": 9.590726020000002, - "2024-09-26T02": 9.15161996, - "2024-09-28T05": 9.935035132362563, - "2024-09-29T03": 9.700193999999998, - "2024-09-26T23": 9.492138919999999, - "2024-09-29T16": 9.534728765730078, - "2024-09-26T21": 9.499073488513389, - "2024-09-26T16": 9.587915022332357, - "2024-09-28T03": 9.936192199999999, - "2024-09-29T21": 9.7714655, - "2024-09-30T09": 9.35409354, - "2024-09-24T16": 9.043060380579602, - "2024-09-30T07": 9.447491139086933, - "2024-09-28T17": 9.672852988189899, - "2024-09-28T02": 9.924190759999998, - "2024-09-28T15": 9.76787903, - "2024-09-29T17": 9.65958803078575, - "2024-09-25T17": 9.224331596999999, - "2024-09-25T16": 9.330533449999999, - "2024-10-01T04": 9.26280992, - "2024-10-01T07": 9.3433179, - "2024-09-30T23": 8.99775, - "2024-09-29T13": 9.5813412, - "2024-09-26T22": 9.55776456, - "2024-10-01T11": 9.24761265, - "2024-09-30T16": 9.11635876, - "2024-09-28T01": 9.835180079999999, - "2024-09-27T02": 9.373054783872384, - "2024-09-30T20": 9.17215575, - "2024-09-28T06": 9.8294742, - "2024-09-27T08": 9.581437000000001, - "2024-10-01T06": 9.28909694, - "2024-09-27T03": 9.37456244, - "2024-09-25T06": 9.204688645478502, - "2024-10-01T02": 9.056982111630496, - "2024-09-27T17": 9.78065357675805, - "2024-09-30T22": 9.068369409999999, - "2024-09-29T05": 9.71429142, - "2024-09-28T20": 9.65386529, - "2024-09-30T13": 9.2680731, - "2024-09-26T18": 9.516826109618389, - "2024-09-25T10": 9.16245022, - "2024-09-25T02": 9.49813846304048, - "2024-09-29T02": 9.665193299999999, - "2024-09-28T08": 9.76575752, - "2024-09-30T17": 9.117628799999999, - "2024-09-30T02": 9.370809016426422, - "2024-09-28T09": 9.653351279999999, - "2024-09-25T03": 9.413697320487023, - "2024-09-29T15": 9.5212376, - "2024-09-29T06": 9.64838592, - "2024-09-24T18": 9.21486584846715, - "2024-09-26T07": 9.227969400000001, - "2024-09-26T15": 9.480507155604938, - "2024-09-27T04": 9.45118902, - "2024-09-27T11": 9.4216014, - "2024-09-26T20": 9.460120941066478, - "2024-09-30T12": 9.23635341, - "2024-09-27T10": 9.40173660302771, - "2024-09-26T12": 9.26927963165039, - "2024-09-24T23": 9.403199936241098, - "2024-09-30T00": 9.47413676, - "2024-09-25T14": 9.33497304, - "2024-09-26T14": 9.39382383958652, - "2024-09-27T01": 9.41531796, - "2024-09-28T04": 9.97229623, - "2024-09-29T08": 9.5813412, - "2024-09-26T01": 9.029742, - "2024-09-27T19": 9.842766109315422, - "2024-09-25T01": 9.485131246919893, - "2024-09-26T00": 9.045738, - "2024-09-29T18": 9.714042607114335, - "2024-09-28T19": 9.687968699999999, - "2024-09-28T22": 9.639156559999998, - "2024-09-27T18": 9.828515154998408, - "2024-09-24T21": 9.344125216396584, - "2024-09-30T08": 9.409376360000001, - "2024-09-25T11": 9.2593518, - "2024-09-25T20": 9.108724599999999, - "2024-10-01T09": 9.32169478, - "2024-10-01T03": 9.205927893, - "2024-09-26T11": 9.255889159999999, - "2024-09-28T07": 9.85197, - "2024-09-27T22": 9.88377876, - "2024-09-27T21": 9.845575039999998, - "2024-09-26T03": 9.17333896, - "2024-09-26T13": 9.299580215002061, - "2024-09-30T18": 9.081911100000001, - "2024-10-01T08": 9.36465271758461, - "2024-09-25T19": 9.19571242, - "2024-09-30T21": 9.15007104, - "2024-09-28T14": 9.8189818, - "2024-09-27T20": 9.82534491755542, - "2024-09-26T06": 9.2516865, - "2024-09-26T10": 9.22643124, - "2024-09-29T04": 9.690290699999998, - "2024-09-28T16": 9.6489648, - "2024-10-01T00": 9.0160312, - "2024-09-24T20": 9.393442966943393, - "2024-09-26T19": 9.521609374368605, - "2024-09-24T15": 9.016104411715045, - "2024-09-27T06": 9.61719234, - "2024-09-29T14": 9.601632, - "2024-09-29T07": 9.573290613174851, - "2024-09-28T00": 9.889186559999999, - "2024-09-30T01": 9.478366036550122, - "2024-09-29T09": 9.686774880000002, - "2024-09-25T09": 9.177357540000001, - "2024-09-30T11": 9.22844626, - "2024-09-25T07": 9.17663292, - "2024-09-24T19": 9.245925924395262, - "2024-09-29T19": 9.668227209672095, - "2024-09-30T15": 9.20980257, - "2024-09-28T21": 9.56805237, - "2024-10-01T05": 9.218757420000001, - "2024-10-01T14": 8.926343780207315, - "2024-09-27T00": 9.46222993, - "latest": 8.53, - "2024-10-01T15": 8.926349769568422 - }, - "USD iota": { - "2024-09-12": 0.1260783449441795, - "2024-09-15": 0.12841495723342414, - "2024-09-22": 0.14427884516416065, - "2024-09-05": 0.12474968798705975, - "2024-09-10": 0.1265085380099429, - "2024-09-11": 0.1293387743146965, - "2024-09-20": 0.13227733974648445, - "2024-09-26": 0.14284278933512443, - "2024-09-16": 0.12340088217010743, - "2024-09-08": 0.11877608716574108, - "2024-09-24": 0.14202700835171028, - "2024-09-29": 0.14334934204544747, - "2024-09-17": 0.12035789158167452, - "2024-09-14": 0.13118892645634983, - "2024-09-03": 0.12806131964450151, - "2024-09-25": 0.14373479109164014, - "2024-09-18": 0.12273654237232848, - "2024-09-07": 0.11715313254729462, - "2024-09-06": 0.12052050343775639, - "2024-09-19": 0.12551335949060455, - "2024-09-30": 0.1430585228081669, - "2024-09-01": 0.12469821617585727, - "2024-08-31": 0.1251525072009801, - "2024-09-02": 0.12056988351745299, - "2024-09-23": 0.13684872710437196, - "2024-09-13": 0.1304808987560765, - "2024-10-01": 0.13333469712636864, - "2024-09-04": 0.12259013289054617, - "2024-09-28": 0.14906440185677952, - "2024-09-21": 0.13899895236277862, - "2024-09-09": 0.120885435017393, - "2024-09-27": 0.1466661915588895, - "2024-09-27T07": 0.14831200249499388, - "2024-09-27T05": 0.14770630611100416, - "2024-09-30T14": 0.13881836571702919, - "2024-09-27T14": 0.14846066834746105, - "2024-09-27T23": 0.1490568014101189, - "2024-09-28T11": 0.1452449455475146, - "2024-09-29T00": 0.1432604785227304, - "2024-09-28T18": 0.1437827555950072, - "2024-09-29T23": 0.14321458785068228, - "2024-10-01T13": 0.13518138977357871, - "2024-09-30T10": 0.13818041220592844, - "2024-09-25T22": 0.14498237172543357, - "2024-09-29T11": 0.1407237877748516, - "2024-09-28T12": 0.14492176539988907, - "2024-09-26T09": 0.14518245352030637, - "2024-09-28T10": 0.14532416459918251, - "2024-09-27T16": 0.1489710494126422, - "2024-09-24T17": 0.14036925488579044, - "2024-09-27T15": 0.14914009841262674, - "2024-09-29T12": 0.14135814713400385, - "2024-09-25T04": 0.14498905757138958, - "2024-09-25T21": 0.1445222063699178, - "2024-09-25T18": 0.1433572671342752, - "2024-09-26T04": 0.14302087037132982, - "2024-09-26T05": 0.1425228840778839, - "2024-09-30T04": 0.1402276933138722, - "2024-09-27T13": 0.1485182061728597, - "2024-09-28T13": 0.14437826360186065, - "2024-09-25T08": 0.14328552857439286, - "2024-09-30T03": 0.13990270938562072, - "2024-10-01T10": 0.13535910790886554, - "2024-09-25T13": 0.1433160250806503, - "2024-10-01T01": 0.1347132987247212, - "2024-09-26T17": 0.14735928079813362, - "2024-09-25T15": 0.1452375440610555, - "2024-09-29T22": 0.14426275190700816, - "2024-09-29T01": 0.14237841057054904, - "2024-09-30T06": 0.1406640539181238, - "2024-09-27T12": 0.14731919316922645, - "2024-09-25T23": 0.14394119152226634, - "2024-09-30T05": 0.13949046285527575, - "2024-09-28T23": 0.14284438102963581, - "2024-09-30T19": 0.1359684043504939, - "2024-09-25T00": 0.14323653697735023, - "2024-10-01T12": 0.13514803781586288, - "2024-09-29T10": 0.1405385354573801, - "2024-09-24T22": 0.1431202009471677, - "2024-09-26T08": 0.14695084824554755, - "2024-09-29T20": 0.14583113070675285, - "2024-09-25T12": 0.14472616183555212, - "2024-09-25T05": 0.14363150674136851, - "2024-09-27T09": 0.149361498077231, - "2024-09-26T02": 0.14123870574482475, - "2024-09-28T05": 0.15052528672523413, - "2024-09-29T03": 0.1431826244581442, - "2024-09-26T23": 0.14584175730067114, - "2024-09-29T16": 0.14366488493374382, - "2024-09-26T21": 0.14370192085723107, - "2024-09-26T16": 0.1469100662842021, - "2024-09-28T03": 0.15072348295029314, - "2024-09-29T21": 0.14371298659186799, - "2024-09-30T09": 0.141690639562511, - "2024-09-24T16": 0.13960513419589496, - "2024-09-30T07": 0.1405162333428025, - "2024-09-28T17": 0.14378480322821832, - "2024-09-28T02": 0.14839749158906354, - "2024-09-28T15": 0.1450473015772728, - "2024-09-29T17": 0.14374323638838749, - "2024-09-25T17": 0.14558027246332478, - "2024-09-25T16": 0.14465201419249837, - "2024-10-01T04": 0.13517469584262784, - "2024-10-01T07": 0.13552742958857122, - "2024-09-30T23": 0.13441767199344914, - "2024-09-29T13": 0.1408580138570168, - "2024-09-26T22": 0.14478590052565665, - "2024-10-01T11": 0.13544676688928486, - "2024-09-30T16": 0.13597631324362708, - "2024-09-28T01": 0.14860964599455342, - "2024-09-27T02": 0.1464654712359449, - "2024-09-30T20": 0.13583588317244633, - "2024-09-28T06": 0.14884944545053955, - "2024-09-27T08": 0.14809070902184598, - "2024-10-01T06": 0.13449403591499978, - "2024-09-27T03": 0.14629174421750957, - "2024-09-25T06": 0.1445415468392623, - "2024-10-01T02": 0.1343981911754711, - "2024-09-27T17": 0.1497696997888136, - "2024-09-30T22": 0.1358238474029146, - "2024-09-29T05": 0.14231764169994032, - "2024-09-28T20": 0.14310188066745433, - "2024-09-30T13": 0.13971589693480982, - "2024-09-26T18": 0.14576526549555982, - "2024-09-25T10": 0.14328754289131265, - "2024-09-25T02": 0.14421019666611506, - "2024-09-29T02": 0.14320672396056477, - "2024-09-28T08": 0.14751469733923542, - "2024-09-30T17": 0.1360010320750475, - "2024-09-30T02": 0.14027888120912954, - "2024-09-28T09": 0.14487482621540212, - "2024-09-25T03": 0.14464775851011974, - "2024-09-29T15": 0.14219181134346498, - "2024-09-29T06": 0.14171771646560224, - "2024-09-24T18": 0.14206607657724238, - "2024-09-26T07": 0.145932219069721, - "2024-09-26T15": 0.14423127824540996, - "2024-09-27T04": 0.14793208470231678, - "2024-09-27T11": 0.14709941906015656, - "2024-09-26T20": 0.14541892344064275, - "2024-09-30T12": 0.13900072265436536, - "2024-09-27T10": 0.14868258877777704, - "2024-09-26T12": 0.14594645218377206, - "2024-09-24T23": 0.14455505221222115, - "2024-09-30T00": 0.1430585228081669, - "2024-09-25T14": 0.14337172293174416, - "2024-09-26T14": 0.14532052014218014, - "2024-09-27T01": 0.1462505946782492, - "2024-09-28T04": 0.1504581745676825, - "2024-09-29T08": 0.13970639605257082, - "2024-09-26T01": 0.14124291232986924, - "2024-09-27T19": 0.14851733397188044, - "2024-09-25T01": 0.14393498780673605, - "2024-09-26T00": 0.14284278933512443, - "2024-09-29T18": 0.1442186982890661, - "2024-09-28T19": 0.14417088929593655, - "2024-09-28T22": 0.14211566700813294, - "2024-09-27T18": 0.14866065161987127, - "2024-09-24T21": 0.14241835799397431, - "2024-09-30T08": 0.14152441984654499, - "2024-09-25T11": 0.14329433876909645, - "2024-09-25T20": 0.14416390412114508, - "2024-10-01T09": 0.13500071174364148, - "2024-10-01T03": 0.13419019116513434, - "2024-09-26T11": 0.14675086676840568, - "2024-09-28T07": 0.1475326155832921, - "2024-09-27T22": 0.1482238348677103, - "2024-09-27T21": 0.14755497929533046, - "2024-09-26T03": 0.14250733581031302, - "2024-09-26T13": 0.1454936816384184, - "2024-09-30T18": 0.13579912130685218, - "2024-10-01T08": 0.13554747784007634, - "2024-09-25T19": 0.14456718807275523, - "2024-09-30T21": 0.13624859863708963, - "2024-09-28T14": 0.14422237720198122, - "2024-09-27T20": 0.14809816010859236, - "2024-09-26T06": 0.14484042983631568, - "2024-09-26T10": 0.14553598666116377, - "2024-09-29T04": 0.14296739096194194, - "2024-09-28T16": 0.1440924483401803, - "2024-10-01T00": 0.13333469712636864, - "2024-09-24T20": 0.14285724419397627, - "2024-09-26T19": 0.1463372022325557, - "2024-09-24T15": 0.14023444235054727, - "2024-09-27T06": 0.14848195377764617, - "2024-09-29T14": 0.14197618425290068, - "2024-09-29T07": 0.1410016936668044, - "2024-09-28T00": 0.1493001407817279, - "2024-09-30T01": 0.14243045654446465, - "2024-09-29T09": 0.1408538596058054, - "2024-09-25T09": 0.14378570621598355, - "2024-09-30T11": 0.1382528921427843, - "2024-09-25T07": 0.14320277946757137, - "2024-09-24T19": 0.14100322157482886, - "2024-09-29T19": 0.14479646986530118, - "2024-09-30T15": 0.13769022486081536, - "2024-09-28T21": 0.14253795928709123, - "2024-10-01T05": 0.13529905212188528, - "2024-10-01T14": 0.13032004523622176, - "2024-09-27T00": 0.1465817972888302, - "latest": 0.123305, - "2024-10-01T15": 0.1274766665396896 - }, - "USD klaytn": { - "2024-09-12": 0.13205230708178897, - "2024-09-15": 0.13320726615792253, - "2024-09-22": 0.13559310076881614, - "2024-09-05": 0.12912073542484467, - "2024-09-10": 0.13341318205977365, - "2024-09-11": 0.12983242024933037, - "2024-09-20": 0.13655236701917026, - "2024-09-26": 0.13640669834509198, - "2024-09-16": 0.12760679596912358, - "2024-09-08": 0.12708968767325834, - "2024-09-24": 0.13552444563353125, - "2024-09-29": 0.14387147297262495, - "2024-09-17": 0.12918397566705758, - "2024-09-14": 0.13474936799513787, - "2024-09-03": 0.1368767081123662, - "2024-09-25": 0.1369904079173292, - "2024-09-18": 0.12991242879479956, - "2024-09-07": 0.12642055872154057, - "2024-09-06": 0.12687268201024743, - "2024-09-19": 0.13451701247298653, - "2024-09-30": 0.13983133134561426, - "2024-09-01": 0.1404178419996906, - "2024-08-31": 0.14138093556045814, - "2024-09-02": 0.13725230367528343, - "2024-09-23": 0.136184514801591, - "2024-09-13": 0.13429635339977705, - "2024-10-01": 0.1355909546362445, - "2024-09-04": 0.12854489256322815, - "2024-09-28": 0.14519985146802375, - "2024-09-21": 0.13629578800248776, - "2024-09-09": 0.1323265776702017, - "2024-09-27": 0.14092425095267952, - "2024-09-27T07": 0.14031577863651162, - "2024-09-27T05": 0.14022498518099746, - "2024-09-30T14": 0.13944960107062035, - "2024-09-27T14": 0.14048452096044672, - "2024-09-27T23": 0.1464892050314013, - "2024-09-28T11": 0.145322702210138, - "2024-09-29T00": 0.145765457399244, - "2024-09-28T18": 0.14473825839022045, - "2024-09-29T23": 0.14395944466757235, - "2024-10-01T13": 0.13631000889882927, - "2024-09-30T10": 0.14121287507614505, - "2024-09-25T22": 0.13569533542823212, - "2024-09-29T11": 0.1426917855924561, - "2024-09-28T12": 0.14414284254715848, - "2024-09-26T09": 0.13495843411169633, - "2024-09-28T10": 0.14447617403064866, - "2024-09-27T16": 0.1410009583987372, - "2024-09-24T17": 0.13492003546040315, - "2024-09-27T15": 0.1413125190437189, - "2024-09-29T12": 0.1432263593420718, - "2024-09-25T04": 0.13784585949062242, - "2024-09-25T21": 0.13662093397836084, - "2024-09-25T18": 0.13566429719880035, - "2024-09-26T04": 0.13506134564792457, - "2024-09-26T05": 0.13495691786849517, - "2024-09-30T04": 0.1415699422057603, - "2024-09-27T13": 0.1400448206729252, - "2024-09-28T13": 0.14347440448344792, - "2024-09-25T08": 0.13709732139829592, - "2024-09-30T03": 0.14094777488497964, - "2024-10-01T10": 0.13698744034544, - "2024-09-25T13": 0.1360600294456529, - "2024-10-01T01": 0.1355982991798944, - "2024-09-26T17": 0.1389253348343081, - "2024-09-25T15": 0.1371045669302604, - "2024-09-29T22": 0.14417396797252968, - "2024-09-29T01": 0.14524488259765347, - "2024-09-30T06": 0.14233579953778952, - "2024-09-27T12": 0.13934831357321062, - "2024-09-25T23": 0.1349246217102307, - "2024-09-30T05": 0.14163404926714004, - "2024-09-28T23": 0.14499602995564081, - "2024-09-30T19": 0.13638762531006057, - "2024-09-25T00": 0.1365175246899334, - "2024-10-01T12": 0.13626157442422782, - "2024-09-29T10": 0.14267853759174848, - "2024-09-24T22": 0.13608594514962105, - "2024-09-26T08": 0.1360795054714952, - "2024-09-29T20": 0.14502949518929562, - "2024-09-25T12": 0.13665331213953882, - "2024-09-25T05": 0.13732459209044168, - "2024-09-27T09": 0.14098712473026462, - "2024-09-26T02": 0.13430919391518786, - "2024-09-28T05": 0.1478193668499773, - "2024-09-29T03": 0.14472052570947222, - "2024-09-26T23": 0.1388591179293669, - "2024-09-29T16": 0.14346681639741918, - "2024-09-26T21": 0.13874230812772698, - "2024-09-26T16": 0.13811700129951532, - "2024-09-28T03": 0.1465800593635892, - "2024-09-29T21": 0.14392412227800325, - "2024-09-30T09": 0.142619711366674, - "2024-09-24T16": 0.1345588987229904, - "2024-09-30T07": 0.1415039673804321, - "2024-09-28T17": 0.1447918404849418, - "2024-09-28T02": 0.14595817290846397, - "2024-09-28T15": 0.14462606481284823, - "2024-09-29T17": 0.14402678745194436, - "2024-09-25T17": 0.13628020626812623, - "2024-09-25T16": 0.13664942986635994, - "2024-10-01T04": 0.13739924402985035, - "2024-10-01T07": 0.13778751315508966, - "2024-09-30T23": 0.13577161773426255, - "2024-09-29T13": 0.14182369697787092, - "2024-09-26T22": 0.13923427421581705, - "2024-10-01T11": 0.13709512908085825, - "2024-09-30T16": 0.1372480375401394, - "2024-09-28T01": 0.14590020567536924, - "2024-09-27T02": 0.13913055306799274, - "2024-09-30T20": 0.13678347512081432, - "2024-09-28T06": 0.1474620544039142, - "2024-09-27T08": 0.14061629107109522, - "2024-10-01T06": 0.13705491349435203, - "2024-09-27T03": 0.1386925450994491, - "2024-09-25T06": 0.13728348121395445, - "2024-10-01T02": 0.13543579620510565, - "2024-09-27T17": 0.1433285112568606, - "2024-09-30T22": 0.13702966093225544, - "2024-09-29T05": 0.14485111740917336, - "2024-09-28T20": 0.1453751088304508, - "2024-09-30T13": 0.13994438181785976, - "2024-09-26T18": 0.13887621751258736, - "2024-09-25T10": 0.13710979754456928, - "2024-09-25T02": 0.1374360588363079, - "2024-09-29T02": 0.14461136288577647, - "2024-09-28T08": 0.14546806542447843, - "2024-09-30T17": 0.13658144992853388, - "2024-09-30T02": 0.14202981022519104, - "2024-09-28T09": 0.14372959047554212, - "2024-09-25T03": 0.13740427509724393, - "2024-09-29T15": 0.14258783236516281, - "2024-09-29T06": 0.14492864935895852, - "2024-09-24T18": 0.13533330980580557, - "2024-09-26T07": 0.1360546723242246, - "2024-09-26T15": 0.13647796347482216, - "2024-09-27T04": 0.13982404808771517, - "2024-09-27T11": 0.13951987571706875, - "2024-09-26T20": 0.1393808102093104, - "2024-09-30T12": 0.13910244679263106, - "2024-09-27T10": 0.14049684345601224, - "2024-09-26T12": 0.13657156881928337, - "2024-09-24T23": 0.13629855990647885, - "2024-09-30T00": 0.1436996545964293, - "2024-09-25T14": 0.13742745616274615, - "2024-09-26T14": 0.13656620368592132, - "2024-09-27T01": 0.13945860219249565, - "2024-09-28T04": 0.14872811247961687, - "2024-09-29T08": 0.14272344512698676, - "2024-09-26T01": 0.13339036311782954, - "2024-09-27T19": 0.14374400460136072, - "2024-09-25T01": 0.13680814495183133, - "2024-09-26T00": 0.13562997644787614, - "2024-09-29T18": 0.14430235601907576, - "2024-09-28T19": 0.14499537635323656, - "2024-09-28T22": 0.14463632012077382, - "2024-09-27T18": 0.1431606292284056, - "2024-09-24T21": 0.13535128562924253, - "2024-09-30T08": 0.14296823654765264, - "2024-09-25T11": 0.13751366145966612, - "2024-09-25T20": 0.13580837222719783, - "2024-10-01T09": 0.1371079179255919, - "2024-10-01T03": 0.13620144546498117, - "2024-09-26T11": 0.13627040566061152, - "2024-09-28T07": 0.14655198479150958, - "2024-09-27T22": 0.14493355282728557, - "2024-09-27T21": 0.14388909470911762, - "2024-09-26T03": 0.13454556816177296, - "2024-09-26T13": 0.13663630211118227, - "2024-09-30T18": 0.13677560024304583, - "2024-10-01T15": 0.13190389135944527, - "2024-10-01T08": 0.13777207750949322, - "2024-09-25T19": 0.13606127454424724, - "2024-09-30T21": 0.13729579724732388, - "2024-09-28T14": 0.14352449792929795, - "2024-09-27T20": 0.1437152239078471, - "2024-09-26T06": 0.1357114783166675, - "2024-09-26T10": 0.1354167411842046, - "2024-09-29T04": 0.1453640637079377, - "2024-09-28T16": 0.14538282940496633, - "2024-10-01T00": 0.13458785150644395, - "2024-09-24T20": 0.1355019820443892, - "2024-09-26T19": 0.1404771566506293, - "2024-09-24T15": 0.13485784996931663, - "2024-09-27T06": 0.14086877697331426, - "2024-09-29T14": 0.14283304023476193, - "2024-09-29T07": 0.14369963949682146, - "2024-09-28T00": 0.14638604668869643, - "2024-09-30T01": 0.1432576478738715, - "2024-09-29T09": 0.14247824527669042, - "2024-09-25T09": 0.13737884756392815, - "2024-09-30T11": 0.1395799439036911, - "2024-09-25T07": 0.13614600872974764, - "2024-09-24T19": 0.13467783911299872, - "2024-09-29T19": 0.1447447777448319, - "2024-09-30T15": 0.13824291741635183, - "2024-09-28T21": 0.14483214534030775, - "2024-10-01T05": 0.13725894240178246, - "2024-10-01T14": 0.13477700648352778, - "2024-09-27T00": 0.13902635873507233, - "latest": 0.128491 - }, - "USD kusama": { - "2024-09-12": 19.70934724077662, - "2024-09-15": 20.864885028593445, - "2024-09-22": 20.667044254740677, - "2024-09-05": 17.7248128821886, - "2024-09-10": 20.099196, - "2024-09-11": 19.87034016060394, - "2024-09-20": 20.796983412691826, - "2024-09-26": 22.29134674691035, - "2024-09-16": 19.77292862042634, - "2024-09-08": 18.021330411679205, - "2024-09-24": 20.95441014435134, - "2024-09-29": 21.653572945828138, - "2024-09-17": 19.945459682042394, - "2024-09-14": 19.849701715572728, - "2024-09-03": 18.160160536820925, - "2024-09-25": 21.82683479645064, - "2024-09-18": 20.050118148291244, - "2024-09-07": 17.54346695059768, - "2024-09-06": 17.21203717607577, - "2024-09-19": 20.95376118433191, - "2024-09-30": 20.94835136493157, - "2024-09-01": 18.031289161787576, - "2024-08-31": 18.364971882698615, - "2024-09-02": 18.1251124052033, - "2024-09-23": 20.899370735765192, - "2024-09-13": 19.724632452161064, - "2024-10-01": 20.146964537894764, - "2024-09-04": 17.703871721048234, - "2024-09-28": 21.84796977449505, - "2024-09-21": 20.73184944449017, - "2024-09-09": 19.273458033485664, - "2024-09-27": 22.438770305396467, - "2024-09-27T07": 22.595696244621752, - "2024-09-27T05": 22.446570269895844, - "2024-09-30T14": 21.06139693120652, - "2024-09-27T14": 22.413482673795464, - "2024-09-27T23": 22.59191373013678, - "2024-09-28T11": 21.89457241444533, - "2024-09-29T00": 21.88975188842658, - "2024-09-28T18": 21.771399425877014, - "2024-09-29T23": 21.80892475961776, - "2024-10-01T13": 20.34297035524059, - "2024-09-30T10": 20.92094147889662, - "2024-09-25T22": 21.759850312486797, - "2024-09-29T11": 21.220568044336655, - "2024-09-28T12": 21.863250501603858, - "2024-09-26T09": 22.26839177003798, - "2024-09-28T10": 21.857171732844176, - "2024-09-27T16": 22.48196196263384, - "2024-09-24T17": 20.700684120142004, - "2024-09-27T15": 22.497376197393923, - "2024-09-29T12": 21.32572479508909, - "2024-09-25T04": 21.616117843879756, - "2024-09-25T21": 21.854342404921944, - "2024-09-25T18": 21.792544569755282, - "2024-09-26T04": 21.698395908490276, - "2024-09-26T05": 21.856102243138572, - "2024-09-30T04": 21.12655946925584, - "2024-09-27T13": 22.41905482113945, - "2024-09-28T13": 21.677926878765582, - "2024-09-25T08": 21.550023981853226, - "2024-09-30T03": 21.153541668766465, - "2024-10-01T10": 20.502856806080064, - "2024-09-25T13": 21.962850795071617, - "2024-10-01T01": 20.20593813865466, - "2024-09-26T17": 22.36703557094477, - "2024-09-25T15": 22.09311996342692, - "2024-09-29T22": 21.949009047164076, - "2024-09-29T01": 21.774123920255988, - "2024-09-30T06": 21.15096925903493, - "2024-09-27T12": 22.200443335301554, - "2024-09-25T23": 21.59300430840968, - "2024-09-30T05": 21.131081726251292, - "2024-09-28T23": 21.8611991493393, - "2024-09-30T19": 20.665977543527006, - "2024-09-25T00": 21.360955899132072, - "2024-10-01T12": 20.414852524462358, - "2024-09-29T10": 21.228139520919814, - "2024-09-24T22": 21.248796735327222, - "2024-09-26T08": 22.418479030188124, - "2024-09-29T20": 22.057276831269558, - "2024-09-25T12": 22.082048629612462, - "2024-09-25T05": 21.69639223855301, - "2024-09-27T09": 22.537626284830697, - "2024-09-26T02": 21.548746896045554, - "2024-09-28T05": 22.47730501590789, - "2024-09-29T03": 21.812746506621256, - "2024-09-26T23": 22.14555332146369, - "2024-09-29T16": 21.59372101610714, - "2024-09-26T21": 21.966354820673427, - "2024-09-26T16": 22.419252205517434, - "2024-09-28T03": 22.792754012350517, - "2024-09-29T21": 21.8545721960455, - "2024-09-30T09": 21.26794439501873, - "2024-09-24T16": 20.789371881895356, - "2024-09-30T07": 21.142931897238434, - "2024-09-28T17": 21.701992162543675, - "2024-09-28T02": 22.625368362354934, - "2024-09-28T15": 21.820030178330583, - "2024-09-29T17": 21.799673832361034, - "2024-09-25T17": 22.219817864957687, - "2024-09-25T16": 22.31712939108053, - "2024-10-01T04": 20.367509238168523, - "2024-10-01T07": 20.674464551203542, - "2024-09-30T23": 20.325666886701082, - "2024-09-29T13": 21.28835249227813, - "2024-09-26T22": 22.149106812141948, - "2024-10-01T11": 20.45567378093236, - "2024-09-30T16": 20.84318337376328, - "2024-09-28T01": 22.513416311143654, - "2024-09-27T02": 22.21527678295297, - "2024-09-30T20": 20.67054856602632, - "2024-09-28T06": 22.17947835556876, - "2024-09-27T08": 22.51596927481535, - "2024-10-01T06": 20.442785851858165, - "2024-09-27T03": 22.16093108741979, - "2024-09-25T06": 21.697387313755748, - "2024-10-01T02": 20.120111526279906, - "2024-09-27T17": 22.55740906392606, - "2024-09-30T22": 20.634171390618278, - "2024-09-29T05": 21.67235535856285, - "2024-09-28T20": 21.84139198828658, - "2024-09-30T13": 21.08074127356927, - "2024-09-26T18": 22.123365911766076, - "2024-09-25T10": 21.80441146087197, - "2024-09-25T02": 21.732501309649123, - "2024-09-29T02": 21.78611903368563, - "2024-09-28T08": 21.84765862422378, - "2024-09-30T17": 20.70433436363268, - "2024-09-30T02": 21.299495183244918, - "2024-09-28T09": 21.64578344117688, - "2024-09-25T03": 21.58448257250824, - "2024-09-29T15": 21.353112698161436, - "2024-09-29T06": 21.586301623457214, - "2024-09-24T18": 20.922939849758926, - "2024-09-26T07": 22.295668982962603, - "2024-09-26T15": 22.265629004215715, - "2024-09-27T04": 22.482746904325428, - "2024-09-27T11": 22.048674378789883, - "2024-09-26T20": 21.98729606782338, - "2024-09-30T12": 20.963918950298133, - "2024-09-27T10": 22.54268655403206, - "2024-09-26T12": 22.404205727051846, - "2024-09-24T23": 21.427003042815386, - "2024-09-30T00": 21.726715688787074, - "2024-09-25T14": 21.956034564167673, - "2024-09-26T14": 22.315122983645796, - "2024-09-27T01": 22.286842897120696, - "2024-09-28T04": 22.62608358867572, - "2024-09-29T08": 21.20586641484491, - "2024-09-26T01": 21.445282178646988, - "2024-09-27T19": 22.43677566598547, - "2024-09-25T01": 21.35633009410806, - "2024-09-26T00": 21.589370607055677, - "2024-09-29T18": 21.7453560260055, - "2024-09-28T19": 21.772603460548975, - "2024-09-28T22": 21.728518339977683, - "2024-09-27T18": 22.32210220137832, - "2024-09-24T21": 21.296166964333093, - "2024-09-30T08": 21.3512495976364, - "2024-09-25T11": 21.911076844836614, - "2024-09-25T20": 21.874939206527948, - "2024-10-01T09": 20.505920516658907, - "2024-10-01T03": 20.144866503188137, - "2024-09-26T11": 22.609573698711245, - "2024-09-28T07": 22.1056859352813, - "2024-09-27T22": 22.43743476821151, - "2024-09-27T21": 22.393006353740574, - "2024-09-26T03": 21.62119887931735, - "2024-09-26T13": 22.346673576149097, - "2024-09-30T18": 20.790403917557825, - "2024-10-01T15": 19.714745586429274, - "2024-10-01T08": 20.579571155983615, - "2024-09-25T19": 21.79812274206509, - "2024-09-30T21": 20.706638233712386, - "2024-09-28T14": 21.682667875368697, - "2024-09-27T20": 22.325519590189828, - "2024-09-26T06": 22.287379923480767, - "2024-09-26T10": 22.253394693542944, - "2024-09-29T04": 21.87091384156473, - "2024-09-28T16": 21.76645674458878, - "2024-10-01T00": 20.07377144688508, - "2024-09-24T20": 21.11407947576169, - "2024-09-26T19": 22.185592323842318, - "2024-09-24T15": 20.611198404119406, - "2024-09-27T06": 22.59364911929763, - "2024-09-29T14": 21.523718579693885, - "2024-09-29T07": 21.447894007550484, - "2024-09-28T00": 22.474307370064924, - "2024-09-30T01": 21.741121885621986, - "2024-09-29T09": 21.205587340854407, - "2024-09-25T09": 21.765446708658043, - "2024-09-30T11": 20.786418295861974, - "2024-09-25T07": 21.547323228593847, - "2024-09-24T19": 20.98260275737352, - "2024-09-29T19": 21.777788508820663, - "2024-09-30T15": 21.020165454834633, - "2024-09-28T21": 21.776966680686925, - "2024-10-01T05": 20.45374150795852, - "2024-10-01T14": 19.992180505974268, - "2024-09-27T00": 22.178700344611926, - "latest": 19.05 - }, - "USD litecoin": { - "2024-09-12": 62.18329171469112, - "2024-09-15": 64.68461863533379, - "2024-09-22": 67.25099292396668, - "2024-09-05": 65.64850200489903, - "2024-09-10": 60.96578715150918, - "2024-09-11": 61.387967187501864, - "2024-09-20": 65.4355404164028, - "2024-09-26": 67.62078378918939, - "2024-09-16": 62.848383444551686, - "2024-09-08": 61.219310554402625, - "2024-09-24": 66.52073706121408, - "2024-09-29": 69.45334681013286, - "2024-09-17": 63.17223622594057, - "2024-09-14": 65.7990480664199, - "2024-09-03": 65.5230679611752, - "2024-09-25": 66.81114405963038, - "2024-09-18": 63.75940526796247, - "2024-09-07": 63.10230242673887, - "2024-09-06": 65.09089273350335, - "2024-09-19": 65.29852490943387, - "2024-09-30": 67.41377846469302, - "2024-09-01": 64.30976499944786, - "2024-08-31": 65.4392652832044, - "2024-09-02": 63.978042311923744, - "2024-09-23": 67.55386000249615, - "2024-09-13": 63.74470371428829, - "2024-10-01": 67.50591101818607, - "2024-09-04": 65.35319411716779, - "2024-09-28": 69.85535614571441, - "2024-09-21": 65.89138010468876, - "2024-09-09": 60.607731295375864, - "2024-09-27": 69.82464533659432, - "2024-09-27T07": 68.94174350844605, - "2024-09-27T05": 69.35229743399258, - "2024-09-30T14": 67.19152468922299, - "2024-09-27T14": 70.19488360293178, - "2024-09-27T23": 70.99316168615374, - "2024-09-28T11": 69.86016829944904, - "2024-09-29T00": 69.94573873451886, - "2024-09-28T18": 69.737398267483, - "2024-09-29T23": 69.37394854186593, - "2024-10-01T13": 67.20314525064241, - "2024-09-30T10": 66.8512041511529, - "2024-09-25T22": 66.83850348538033, - "2024-09-29T11": 68.94561191217693, - "2024-09-28T12": 69.4118703933975, - "2024-09-26T09": 67.32781795954675, - "2024-09-28T10": 69.72978763115806, - "2024-09-27T16": 70.27675398589925, - "2024-09-24T17": 66.36119185333841, - "2024-09-27T15": 70.15438060812652, - "2024-09-29T12": 68.97467561034364, - "2024-09-25T04": 66.78914612780449, - "2024-09-25T21": 67.26123193543013, - "2024-09-25T18": 67.22401272426252, - "2024-09-26T04": 66.54074907875376, - "2024-09-26T05": 66.98935894906327, - "2024-09-30T04": 67.70996879592472, - "2024-09-27T13": 70.17042938534998, - "2024-09-28T13": 69.25360695147405, - "2024-09-25T08": 66.27154714628107, - "2024-09-30T03": 67.8488981063355, - "2024-10-01T10": 68.3764696398681, - "2024-09-25T13": 66.53787120171128, - "2024-10-01T01": 67.49566664550338, - "2024-09-26T17": 68.1218814109155, - "2024-09-25T15": 67.5007619926339, - "2024-09-29T22": 69.75969277354582, - "2024-09-29T01": 69.59209806426772, - "2024-09-30T06": 68.2561317002244, - "2024-09-27T12": 70.07870431610935, - "2024-09-25T23": 66.5893889575195, - "2024-09-30T05": 67.98845078176973, - "2024-09-28T23": 69.7776747, - "2024-09-30T19": 67.30398461204754, - "2024-09-25T00": 66.61950112001865, - "2024-10-01T12": 68.06117140379712, - "2024-09-29T10": 68.81134307798345, - "2024-09-24T22": 66.73074895950171, - "2024-09-26T08": 67.34977709344253, - "2024-09-29T20": 70.12086366961869, - "2024-09-25T12": 66.43419444545863, - "2024-09-25T05": 66.60305310489227, - "2024-09-27T09": 69.36533880861742, - "2024-09-26T02": 66.36842915231139, - "2024-09-28T05": 70.89778923530005, - "2024-09-29T03": 69.55771569393858, - "2024-09-26T23": 68.3088082956169, - "2024-09-29T16": 69.70166878800514, - "2024-09-26T21": 67.90413489874106, - "2024-09-26T16": 68.32201647015611, - "2024-09-28T03": 71.31045477816807, - "2024-09-29T21": 70.09189620342843, - "2024-09-30T09": 67.64167422558721, - "2024-09-24T16": 66.00949168865857, - "2024-09-30T07": 68.25079588202445, - "2024-09-28T17": 69.5939104306848, - "2024-09-28T02": 71.2672789992643, - "2024-09-28T15": 69.78473369164261, - "2024-09-29T17": 69.83149078724928, - "2024-09-25T17": 67.42899938762204, - "2024-09-25T16": 67.51187085572587, - "2024-10-01T04": 67.91134662599312, - "2024-10-01T07": 68.21444810387415, - "2024-09-30T23": 66.75374490478522, - "2024-09-29T13": 69.14649595803101, - "2024-09-26T22": 68.30803157266098, - "2024-10-01T11": 68.26422269828382, - "2024-09-30T16": 66.94718727078399, - "2024-09-28T01": 71.03997160898727, - "2024-09-27T02": 68.52891392810525, - "2024-09-30T20": 67.49296379523501, - "2024-09-28T06": 70.26316117167057, - "2024-09-27T08": 69.00489110397007, - "2024-10-01T06": 67.97863011550177, - "2024-09-27T03": 68.78421683233528, - "2024-09-25T06": 66.22636339765627, - "2024-10-01T02": 67.62315739613226, - "2024-09-27T17": 70.20854755429804, - "2024-09-30T22": 67.12448756133239, - "2024-09-29T05": 69.12277786628863, - "2024-09-28T20": 69.82654623420345, - "2024-09-30T13": 67.41261841814212, - "2024-09-26T18": 68.20599807525285, - "2024-09-25T10": 66.34044094858879, - "2024-09-25T02": 66.98239227268162, - "2024-09-29T02": 69.72702553117404, - "2024-09-28T08": 70.1004041145019, - "2024-09-30T17": 67.15402503273769, - "2024-09-30T02": 68.2182054980601, - "2024-09-28T09": 69.68260294552715, - "2024-09-25T03": 66.87488758863019, - "2024-09-29T15": 69.62852903851653, - "2024-09-29T06": 68.94206092879948, - "2024-09-24T18": 66.29769925600459, - "2024-09-26T07": 67.47793301219087, - "2024-09-26T15": 68.01462250725221, - "2024-09-27T04": 69.1841474704029, - "2024-09-27T11": 69.7301537223086, - "2024-09-26T20": 67.95651253582456, - "2024-09-30T12": 67.17924411432352, - "2024-09-27T10": 69.43356000268864, - "2024-09-26T12": 67.41319429575783, - "2024-09-24T23": 66.71084086100055, - "2024-09-30T00": 68.99011622991698, - "2024-09-25T14": 67.0015575763933, - "2024-09-26T14": 67.69907059198877, - "2024-09-27T01": 68.72951969359619, - "2024-09-28T04": 71.37948671543519, - "2024-09-29T08": 68.80967126934033, - "2024-09-26T01": 65.94340336304232, - "2024-09-27T19": 70.40385932512046, - "2024-09-25T01": 66.8503301205191, - "2024-09-26T00": 66.47592688040605, - "2024-09-29T18": 69.8102898001278, - "2024-09-28T19": 69.74579379327011, - "2024-09-28T22": 69.80985064056819, - "2024-09-27T18": 70.15430083151595, - "2024-09-24T21": 66.30719659802978, - "2024-09-30T08": 67.90690321331384, - "2024-09-25T11": 66.3737377752059, - "2024-09-25T20": 67.09532340177867, - "2024-10-01T09": 68.26340687801597, - "2024-10-01T03": 67.86154601449368, - "2024-09-26T11": 67.67115729218403, - "2024-09-28T07": 70.47234378151069, - "2024-09-27T22": 70.87759941147526, - "2024-09-27T21": 70.65658552096147, - "2024-09-26T03": 66.38640919273115, - "2024-09-26T13": 67.54632008623136, - "2024-09-30T18": 67.09833904066285, - "2024-10-01T08": 68.13760211216976, - "2024-09-25T19": 67.19981557259796, - "2024-09-30T21": 67.34426116352421, - "2024-09-28T14": 69.86403100097651, - "2024-09-27T20": 70.61838105116013, - "2024-09-26T06": 67.1935849802291, - "2024-09-26T10": 67.69200576683555, - "2024-09-29T04": 69.1820754, - "2024-09-28T16": 69.67479509842977, - "2024-10-01T00": 66.96058548958159, - "2024-09-24T20": 66.39517813005956, - "2024-09-26T19": 68.21631025420508, - "2024-09-24T15": 66.09281789632337, - "2024-09-27T06": 69.4883583455313, - "2024-09-29T14": 69.37398015855716, - "2024-09-29T07": 68.87888742674663, - "2024-09-28T00": 71.1728882461188, - "2024-09-30T01": 68.6044684734554, - "2024-09-29T09": 69.061096735623, - "2024-09-25T09": 66.25867035222005, - "2024-09-30T11": 67.03939354255952, - "2024-09-25T07": 66.11193715961018, - "2024-09-24T19": 66.31053859989562, - "2024-09-29T19": 69.98843911734207, - "2024-09-30T15": 67.30688755551877, - "2024-09-28T21": 69.6083882466818, - "2024-10-01T05": 67.95684293896707, - "2024-10-01T14": 67.32371099426582, - "2024-09-27T00": 68.72459332326187, - "latest": 64.25, - "2024-10-01T15": 66.10093498189397 - }, - "USD monero": { - "2024-09-12": 170.73578068936894, - "2024-09-15": 170.43179134444685, - "2024-09-22": 176.48282587808185, - "2024-09-05": 172.87880521911603, - "2024-09-10": 169.87600661697954, - "2024-09-11": 168.23244067121448, - "2024-09-20": 177.10091291106107, - "2024-09-26": 164.878180474196, - "2024-09-16": 170.18129136647758, - "2024-09-08": 171.46608800410922, - "2024-09-24": 168.40793448446206, - "2024-09-29": 154.98968303805296, - "2024-09-17": 171.29554767857857, - "2024-09-14": 169.67282171725847, - "2024-09-03": 173.065070286485, - "2024-09-25": 167.69125666166713, - "2024-09-18": 171.67679593250273, - "2024-09-07": 166.81165101216894, - "2024-09-06": 170.34869542194264, - "2024-09-19": 173.85848550545498, - "2024-09-30": 153.9813638014511, - "2024-09-01": 166.575934315898, - "2024-08-31": 169.18892559514074, - "2024-09-02": 168.39766087350597, - "2024-09-23": 174.1775217381234, - "2024-09-13": 170.67854711473393, - "2024-10-01": 152.08015035225938, - "2024-09-04": 173.77612573052824, - "2024-09-28": 159.128276361402, - "2024-09-21": 176.95494879165972, - "2024-09-09": 171.89506227419346, - "2024-09-27": 162.874187486907, - "2024-09-27T07": 163.55699290869157, - "2024-09-27T05": 162.42399103795537, - "2024-09-30T14": 153.752175004343, - "2024-09-27T14": 162.66044252879118, - "2024-09-27T23": 163.47792860150597, - "2024-09-28T11": 158.51778399137493, - "2024-09-29T00": 158.4768510116493, - "2024-09-28T18": 158.02925109383756, - "2024-09-29T23": 153.93312046862025, - "2024-10-01T13": 153.20344512998636, - "2024-09-30T10": 151.08872978878884, - "2024-09-25T22": 165.72670423120533, - "2024-09-29T11": 155.81157888717647, - "2024-09-28T12": 159.30698071197168, - "2024-09-26T09": 164.01516759164346, - "2024-09-28T10": 158.88556157545855, - "2024-09-27T16": 162.98579191487215, - "2024-09-24T17": 169.00323538306142, - "2024-09-27T15": 163.08735448954323, - "2024-09-29T12": 155.4117167568521, - "2024-09-25T04": 167.72729483920213, - "2024-09-25T21": 166.42644474540464, - "2024-09-25T18": 166.71901682244234, - "2024-09-26T04": 165.74733295298836, - "2024-09-26T05": 164.9952218689211, - "2024-09-30T04": 152.7743234080442, - "2024-09-27T13": 163.4978365794384, - "2024-09-28T13": 159.45309468823586, - "2024-09-25T08": 169.18083586609495, - "2024-09-30T03": 151.4757993397687, - "2024-10-01T10": 152.4770777390511, - "2024-09-25T13": 168.4259114168376, - "2024-10-01T01": 154.03551420690877, - "2024-09-26T17": 165.42514494742886, - "2024-09-25T15": 167.07550930902545, - "2024-09-29T22": 154.4064089721304, - "2024-09-29T01": 157.6626828027144, - "2024-09-30T06": 155.29582053694256, - "2024-09-27T12": 162.76226361706108, - "2024-09-25T23": 165.1108262004509, - "2024-09-30T05": 154.89589408088318, - "2024-09-28T23": 158.50181719979918, - "2024-09-30T19": 154.63010275800178, - "2024-09-25T00": 168.85631655217261, - "2024-10-01T12": 153.28302832137504, - "2024-09-29T10": 156.82820516670952, - "2024-09-24T22": 169.01731900292313, - "2024-09-26T08": 164.40126459157347, - "2024-09-29T20": 154.77719085714546, - "2024-09-25T12": 168.77660488151395, - "2024-09-25T05": 167.25060994264393, - "2024-09-27T09": 163.0613829658493, - "2024-09-26T02": 165.92077991591236, - "2024-09-28T05": 162.659673801172, - "2024-09-29T03": 158.03715792892336, - "2024-09-26T23": 163.4864655713117, - "2024-09-29T16": 154.64446534916414, - "2024-09-26T21": 164.70016959712947, - "2024-09-26T16": 165.13473663471186, - "2024-09-28T03": 164.29425277230183, - "2024-09-29T21": 154.33607511072003, - "2024-09-30T09": 152.33976247157236, - "2024-09-24T16": 168.6904992523639, - "2024-09-30T07": 154.50905520277126, - "2024-09-28T17": 158.37128620167692, - "2024-09-28T02": 163.76960457400455, - "2024-09-28T15": 159.3031927597918, - "2024-09-29T17": 154.56801173144842, - "2024-09-25T17": 167.25018331713076, - "2024-09-25T16": 166.9104659434579, - "2024-10-01T04": 150.18246352403267, - "2024-10-01T07": 151.13005069341028, - "2024-09-30T23": 153.48959627859938, - "2024-09-29T13": 155.29761611998245, - "2024-09-26T22": 163.87036493017172, - "2024-10-01T11": 154.06084721504203, - "2024-09-30T16": 153.7789592903084, - "2024-09-28T01": 163.14005103463734, - "2024-09-27T02": 162.9093800611485, - "2024-09-30T20": 153.8015044192754, - "2024-09-28T06": 161.43386077150612, - "2024-09-27T08": 163.08663851825497, - "2024-10-01T06": 151.06752164654355, - "2024-09-27T03": 162.57496832025544, - "2024-09-25T06": 168.05424457589768, - "2024-10-01T02": 152.11047187488072, - "2024-09-27T17": 163.12927744730524, - "2024-09-30T22": 153.94905967245774, - "2024-09-29T05": 156.9696884702222, - "2024-09-28T20": 158.13908191100782, - "2024-09-30T13": 154.81117460897693, - "2024-09-26T18": 164.87430662459298, - "2024-09-25T10": 168.73724335932852, - "2024-09-25T02": 168.0790958682433, - "2024-09-29T02": 158.07799689683864, - "2024-09-28T08": 160.60182458590347, - "2024-09-30T17": 154.92274731534314, - "2024-09-30T02": 150.58641633437455, - "2024-09-28T09": 159.58681676500942, - "2024-09-25T03": 168.17869930978532, - "2024-09-29T15": 155.27746640118465, - "2024-09-29T06": 156.24748298592425, - "2024-09-24T18": 168.8104168902205, - "2024-09-26T07": 164.31036216585102, - "2024-09-26T15": 164.35455625349263, - "2024-09-27T04": 162.5439905583649, - "2024-09-27T11": 161.50158933548923, - "2024-09-26T20": 164.66020490409153, - "2024-09-30T12": 153.29972567485564, - "2024-09-27T10": 162.64826128142562, - "2024-09-26T12": 164.81993250943236, - "2024-09-30T00": 152.8151427078904, - "2024-09-25T14": 168.11539987351048, - "2024-09-26T14": 163.8844298798234, - "2024-09-27T01": 163.01821469403453, - "2024-09-28T04": 164.582308699328, - "2024-09-29T08": 153.25335398466783, - "2024-09-26T01": 165.3721118552244, - "2024-09-27T19": 162.8892963403525, - "2024-09-25T01": 168.62485535896934, - "2024-09-26T00": 165.59653277782186, - "2024-09-29T18": 154.63714801797735, - "2024-09-28T19": 158.3800354880118, - "2024-09-28T22": 159.21369288669618, - "2024-09-27T18": 163.05225680457974, - "2024-09-24T21": 168.57722722196064, - "2024-09-30T08": 152.86486942544394, - "2024-09-25T11": 168.33907347044004, - "2024-09-25T20": 166.3301664130514, - "2024-10-01T09": 153.84232645788953, - "2024-10-01T03": 152.18075511025324, - "2024-09-26T11": 166.09652452307174, - "2024-09-28T07": 160.98503300892742, - "2024-09-27T22": 163.57288414176682, - "2024-09-27T21": 163.13558663556776, - "2024-09-26T03": 166.07520547814224, - "2024-09-26T13": 163.83294722095536, - "2024-09-30T18": 155.43115845267724, - "2024-10-01T15": 151.62157990694777, - "2024-10-01T08": 151.61772458452344, - "2024-09-25T19": 166.54193555169374, - "2024-09-30T21": 154.2186184063389, - "2024-09-28T14": 159.29024356967258, - "2024-09-27T20": 162.8920543849106, - "2024-09-26T06": 165.6172755827069, - "2024-09-26T10": 165.46055055385955, - "2024-09-29T04": 157.8420541175614, - "2024-09-28T16": 158.66753978642163, - "2024-10-01T00": 154.0459596408534, - "2024-09-24T20": 169.6198573044687, - "2024-09-26T19": 165.05791009962692, - "2024-09-24T15": 168.3236481373796, - "2024-09-27T06": 162.8608893429181, - "2024-09-29T14": 155.2123942946579, - "2024-09-29T07": 155.74855733593975, - "2024-09-28T00": 163.9079388957648, - "2024-09-30T01": 152.93941800023572, - "2024-09-29T09": 152.89205440242645, - "2024-09-25T09": 169.3032017817948, - "2024-09-30T11": 153.84270850037828, - "2024-09-24T19": 169.72216707149119, - "2024-09-29T19": 154.6487065365313, - "2024-09-30T15": 153.96209120889733, - "2024-09-28T21": 157.98119173596638, - "2024-10-01T05": 151.12863444764596, - "2024-10-01T14": 153.8869938985959, - "2024-09-27T00": 164.08711142190847, - "latest": 150.33 - }, - "USD near": { - "2024-09-12": 4.178118468554163, - "2024-09-15": 4.187221839480161, - "2024-09-22": 4.52341803462517, - "2024-09-05": 3.8087141932250086, - "2024-09-10": 4.015925322555691, - "2024-09-11": 3.945115504406795, - "2024-09-20": 4.4006929828084065, - "2024-09-26": 5.546050402033854, - "2024-09-16": 3.9333105332442293, - "2024-09-08": 3.717612342270617, - "2024-09-24": 5.228422611358404, - "2024-09-29": 5.467735413692053, - "2024-09-17": 4.090405232062073, - "2024-09-14": 4.205549240264081, - "2024-09-03": 3.931058019583154, - "2024-09-25": 5.248300782340443, - "2024-09-18": 4.059188411897892, - "2024-09-07": 3.641742921921447, - "2024-09-06": 3.6362064169823314, - "2024-09-19": 4.483115438447135, - "2024-09-30": 5.352843406963865, - "2024-09-01": 3.9794852042381734, - "2024-08-31": 4.099731286026769, - "2024-09-02": 3.927671950257477, - "2024-09-23": 4.902812155007063, - "2024-09-13": 4.230630319237644, - "2024-10-01": 5.398786041430354, - "2024-09-04": 3.75935511113226, - "2024-09-28": 5.479706363508929, - "2024-09-21": 4.442401615273117, - "2024-09-09": 3.893456357832639, - "2024-09-27": 5.526627978836177, - "2024-09-27T07": 5.654094647156265, - "2024-09-27T05": 5.647305550018161, - "2024-09-30T14": 5.327962867193094, - "2024-09-27T14": 5.57819635118155, - "2024-09-27T23": 5.460177458362107, - "2024-09-28T11": 5.466335483139834, - "2024-09-29T00": 5.528466716205436, - "2024-09-28T18": 5.502081130359923, - "2024-09-29T23": 5.466089803154985, - "2024-10-01T13": 5.277373694056562, - "2024-09-30T10": 5.2892351979206795, - "2024-09-25T22": 5.175339774408861, - "2024-09-29T11": 5.404728857790051, - "2024-09-28T12": 5.415506298575436, - "2024-09-26T09": 5.4284793695937745, - "2024-09-28T10": 5.480688830094067, - "2024-09-27T16": 5.493365528832361, - "2024-09-24T17": 5.297456001413457, - "2024-09-27T15": 5.469665907143064, - "2024-09-29T12": 5.410831899867075, - "2024-09-25T04": 5.30156792683689, - "2024-09-25T21": 5.235904976570444, - "2024-09-25T18": 5.215012044173726, - "2024-09-26T04": 5.26121138706488, - "2024-09-26T05": 5.322232540186782, - "2024-09-30T04": 5.267254826530127, - "2024-09-27T13": 5.525956955453539, - "2024-09-28T13": 5.454222146155081, - "2024-09-25T08": 5.213038541749363, - "2024-09-30T03": 5.325643356879856, - "2024-10-01T10": 5.448066756717017, - "2024-09-25T13": 5.22868386006982, - "2024-10-01T01": 5.360661960899632, - "2024-09-26T17": 5.693899383070783, - "2024-09-25T15": 5.3129863099152885, - "2024-09-29T22": 5.504280118295467, - "2024-09-29T01": 5.471907219611265, - "2024-09-30T06": 5.36763977266342, - "2024-09-27T12": 5.557628645014887, - "2024-09-25T23": 5.140551017828135, - "2024-09-30T05": 5.303018281799277, - "2024-09-28T23": 5.5544690171692315, - "2024-09-30T19": 5.414290398168395, - "2024-09-25T00": 5.364579233803001, - "2024-10-01T12": 5.462413634706886, - "2024-09-29T10": 5.386973966910662, - "2024-09-24T22": 5.338877528132732, - "2024-09-26T08": 5.3781239758246615, - "2024-09-29T20": 5.54737369506467, - "2024-09-25T12": 5.240167714456092, - "2024-09-25T05": 5.295298014932753, - "2024-09-27T09": 5.624788213722862, - "2024-09-26T02": 5.280923370703109, - "2024-09-28T05": 5.474491914175314, - "2024-09-29T03": 5.481709097917338, - "2024-09-26T23": 5.555250672242202, - "2024-09-29T16": 5.4405837797769765, - "2024-09-26T21": 5.593491094124866, - "2024-09-26T16": 5.823561456213394, - "2024-09-28T03": 5.492288247114344, - "2024-09-29T21": 5.51062371618776, - "2024-09-30T09": 5.3067037024265185, - "2024-09-24T16": 5.229551823596072, - "2024-09-30T07": 5.352676318177238, - "2024-09-28T17": 5.498242138547439, - "2024-09-28T02": 5.502329912072046, - "2024-09-28T15": 5.51162343804675, - "2024-09-29T17": 5.561108689303734, - "2024-09-25T17": 5.1799028243635306, - "2024-09-25T16": 5.2398948759119115, - "2024-10-01T04": 5.435210585407437, - "2024-10-01T07": 5.5267088930406105, - "2024-09-30T23": 5.288729285644926, - "2024-09-29T13": 5.4233217216197716, - "2024-09-26T22": 5.59744776, - "2024-10-01T11": 5.484101568435368, - "2024-09-30T16": 5.3636391490251025, - "2024-09-28T01": 5.456324099711989, - "2024-09-27T02": 5.4961017176318325, - "2024-09-30T20": 5.364021403988702, - "2024-09-28T06": 5.423691077686741, - "2024-09-27T08": 5.651552289536293, - "2024-10-01T06": 5.47851136989018, - "2024-09-27T03": 5.490860024695741, - "2024-09-25T06": 5.255632263563953, - "2024-10-01T02": 5.2843905881031406, - "2024-09-27T17": 5.455403452067588, - "2024-09-30T22": 5.32601342317983, - "2024-09-29T05": 5.455148911739506, - "2024-09-28T20": 5.504192637845625, - "2024-09-30T13": 5.352004941777151, - "2024-09-26T18": 5.644464438696517, - "2024-09-25T10": 5.256920897207252, - "2024-09-25T02": 5.385669021845012, - "2024-09-29T02": 5.473072163768356, - "2024-09-28T08": 5.398052019021246, - "2024-09-30T17": 5.419545094269786, - "2024-09-30T02": 5.3828076561322336, - "2024-09-28T09": 5.39662083690742, - "2024-09-25T03": 5.331816063982668, - "2024-09-29T15": 5.465959926125133, - "2024-09-29T06": 5.4276348873935705, - "2024-09-24T18": 5.276023930314201, - "2024-09-26T07": 5.41937233221425, - "2024-09-26T15": 5.789553798542854, - "2024-09-27T04": 5.561977078026508, - "2024-09-27T11": 5.51627515451063, - "2024-09-26T20": 5.592017962004705, - "2024-09-30T12": 5.335025683646574, - "2024-09-27T10": 5.543494842583999, - "2024-09-26T12": 5.544040812617316, - "2024-09-24T23": 5.365856586068668, - "2024-09-30T00": 5.434681421836483, - "2024-09-25T14": 5.295817453745669, - "2024-09-26T14": 5.736630425544446, - "2024-09-27T01": 5.545454951209295, - "2024-09-28T04": 5.501807233901269, - "2024-09-29T08": 5.4297751934916425, - "2024-09-26T01": 5.2294717639238835, - "2024-09-27T19": 5.431797358532323, - "2024-09-25T01": 5.40980429888979, - "2024-09-26T00": 5.163449590971746, - "2024-09-29T18": 5.596329097749427, - "2024-09-28T19": 5.496609821404222, - "2024-09-28T22": 5.526854258766547, - "2024-09-27T18": 5.460778698628746, - "2024-09-24T21": 5.335588918507481, - "2024-09-30T08": 5.306095195034222, - "2024-09-25T11": 5.249102680457841, - "2024-09-25T20": 5.21772398402986, - "2024-10-01T09": 5.466218573868327, - "2024-10-01T03": 5.376717973462092, - "2024-09-26T11": 5.525881567697258, - "2024-09-28T07": 5.408003222038987, - "2024-09-27T22": 5.43484602677395, - "2024-09-27T21": 5.387429247758689, - "2024-09-26T03": 5.280627329402091, - "2024-09-26T13": 5.62480529998441, - "2024-09-30T18": 5.407957156466236, - "2024-10-01T08": 5.490867508399201, - "2024-09-25T19": 5.2370893875076145, - "2024-09-30T21": 5.405266619434022, - "2024-09-28T14": 5.513462187873392, - "2024-09-27T20": 5.382751114363007, - "2024-09-26T06": 5.514946303224915, - "2024-09-26T10": 5.492165515390441, - "2024-09-29T04": 5.475196830181446, - "2024-09-28T16": 5.496915037194067, - "2024-10-01T00": 5.296243519380784, - "2024-09-24T20": 5.298633877986199, - "2024-09-26T19": 5.634858423484716, - "2024-09-24T15": 5.19944061492068, - "2024-09-27T06": 5.709107776933872, - "2024-09-29T14": 5.4467002946619765, - "2024-09-29T07": 5.399308209333767, - "2024-09-28T00": 5.467437202975653, - "2024-09-30T01": 5.424378239411132, - "2024-09-29T09": 5.432213313818926, - "2024-09-25T09": 5.212459914321384, - "2024-09-30T11": 5.309199837351168, - "2024-09-25T07": 5.209860388817941, - "2024-09-24T19": 5.294972574803801, - "2024-09-29T19": 5.566584346677055, - "2024-09-30T15": 5.356461063405368, - "2024-09-28T21": 5.462380493772299, - "2024-10-01T05": 5.427789731167603, - "2024-10-01T14": 5.26617315759337, - "2024-09-27T00": 5.55415576898, - "latest": 4.87, - "2024-10-01T15": 5.078765923017266, - "2023-10-23": 1.0680825785348642, - "2024-02-23": 3.254549905240416, - "2024-04-05": 6.812157889888433, - "2023-12-19": 2.3971986993707537, - "2024-05-17": 8.095487380950258, - "2023-12-02": 1.9842656027647727, - "2024-06-11": 6.177613220457879, - "2024-04-26": 7.182310755889022, - "2024-01-08": 3.2125393477333812, - "2023-10-31": 1.303760800445926, - "2023-10-01": 1.140766488427112, - "2024-03-07": 5.618489125511497, - "2023-10-12": 1.0101093817847835, - "2024-04-22": 6.898121432360752, - "2024-06-24": 5.293170802476057, - "2023-12-05": 2.22567326256506, - "2024-02-19": 3.544356339200902, - "2024-07-31": 5.169010919518756, - "2024-08-11": 4.0088439968314145, - "2024-01-07": 3.386454416641497, - "2024-04-28": 7.270142628337525, - "2023-10-18": 1.0033695597469756, - "2023-10-07": 1.0926016909928675, - "2024-06-28": 5.1189698936704655, - "2024-05-19": 7.8581228536266385, - "2024-05-12": 6.976045774331901, - "2024-08-24": 4.945034347315318, - "2024-03-09": 6.117743261137994, - "2024-08-02": 4.798345187353719, - "2024-04-29": 6.870040283777848, - "2024-04-25": 6.870628879101422, - "2024-06-12": 6.324125598653028, - "2024-05-30": 7.409634435163389, - "2024-06-05": 7.566340535991733, - "2024-08-21": 4.089421360510016, - "2024-03-22": 6.4830353732470565, - "2023-11-18": 1.757146920615653, - "2024-07-30": 5.244874674356381, - "2023-12-07": 2.268046416080464, - "2024-06-30": 5.048656221808104, - "2024-06-20": 5.270353825997295, - "2024-07-08": 4.473692947537101, - "2024-07-07": 4.692149494687023, - "2024-03-26": 7.784667839936219, - "2024-05-14": 7.151781833055857, - "2024-06-16": 5.620800643110577, - "2024-02-22": 3.246777652942298, - "2024-04-15": 5.456997440159033, - "2023-12-30": 3.6731605602162545, - "2024-04-17": 5.425398797030326, - "2024-02-12": 3.1929580376184354, - "2023-10-26": 1.178495002470962, - "2024-01-03": 3.8147428530396654, - "2024-05-07": 7.468788803604317, - "2024-01-22": 2.762070695519851, - "2024-08-16": 3.9848025165158547, - "2024-07-13": 5.179164852764435, - "2023-12-24": 3.807177763793938, - "2023-10-03": 1.1087677656806063, - "2024-05-26": 8.037887965876175, - "2024-04-30": 6.241310682388657, - "2024-08-22": 4.260837814744921, - "2024-07-09": 4.517294070559305, - "2024-01-16": 3.271066057069839, - "2023-10-17": 1.0302128788512779, - "2024-04-24": 6.985849193768894, - "2024-03-18": 7.625256304535106, - "2024-02-17": 3.2543359783360613, - "2023-12-27": 4.150420093179403, - "2024-08-01": 4.992419839586975, - "2024-02-24": 3.5551443906393274, - "2024-01-06": 3.403275471259292, - "2024-03-20": 6.431684649833105, - "2023-11-21": 1.91995428377254, - "2023-12-25": 3.9499041235910095, - "2024-03-01": 3.9762993866672343, - "2023-10-02": 1.142285519519648, - "2024-03-27": 7.56952697020486, - "2024-05-13": 7.13482722853404, - "2024-05-06": 7.396853029093122, - "2024-06-19": 4.98771191263261, - "2024-02-09": 2.979060140781238, - "2023-10-06": 1.08797961148466, - "2023-10-13": 1.0061184221179478, - "2024-02-05": 2.7600712455704985, - "2023-12-10": 2.4461181212879666, - "2023-11-23": 1.8074425847996873, - "2024-01-13": 3.4138514587348143, - "2024-03-28": 7.27663488835769, - "2023-10-09": 1.0442947291583757, - "2024-01-09": 3.33222587109972, - "2024-05-10": 7.45748779911197, - "2024-08-06": 3.7043639137640585, - "2023-11-05": 1.6270951993516802, - "2024-08-25": 4.937721689539472, - "2024-04-18": 5.605910538411527, - "2023-10-22": 1.0384820958354097, - "2024-08-27": 4.779164691571626, - "2023-11-01": 1.4406645448318887, - "2024-05-20": 8.026475764081667, - "2023-12-08": 2.264655852994727, - "2024-04-12": 6.539219011255494, - "2024-03-12": 7.191207797528925, - "2024-07-02": 5.433824296609034, - "2024-08-19": 3.894860443687435, - "2024-07-20": 6.331931099910532, - "2024-02-04": 2.7848766557866207, - "2024-01-28": 2.982700490847148, - "2024-03-03": 4.329617685495044, - "2024-01-26": 2.8805509102041205, - "2023-11-07": 1.5038083579301287, - "2023-11-25": 1.8521003040718544, - "2024-06-29": 4.978703732808046, - "2024-02-28": 3.93177036391023, - "2024-07-21": 6.184654545679756, - "2023-12-01": 1.876510621951113, - "2024-08-07": 3.7428284161284804, - "2024-02-25": 3.738263858742936, - "2023-12-21": 3.36448561472388, - "2024-08-30": 4.1862732495865345, - "2024-06-01": 7.2509138433896, - "2024-03-06": 4.554386978982408, - "2024-07-15": 5.600690091115816, - "2023-09-30": 1.1345594227795655, - "2023-12-12": 2.2966386419921148, - "2023-10-04": 1.088178147224983, - "2024-02-13": 3.3017937206501338, - "2024-04-16": 5.157542099736683, - "2024-03-02": 4.128852903018115, - "2024-06-02": 7.376285637747993, - "2023-10-08": 1.0912392937991582, - "2023-11-20": 2.066783477956778, - "2023-12-20": 2.8242868233416636, - "2023-12-31": 3.7075615930908894, - "2023-11-06": 1.5980395669833354, - "2024-08-03": 4.545577964514977, - "2024-05-29": 7.688832611006733, - "2024-03-17": 7.64252271582962, - "2024-07-23": 5.867564319629732, - "2024-07-10": 4.625896691697447, - "2024-07-01": 5.30998427265361, - "2024-04-01": 6.816267802127186, - "2024-05-21": 8.066316682849642, - "2024-01-19": 2.991203032009808, - "2023-11-11": 1.5559697628273437, - "2024-07-18": 6.083681760155467, - "2023-11-19": 1.8373194109155355, - "2024-08-08": 3.778496620972063, - "2024-01-25": 2.668389557949906, - "2024-03-13": 7.942354228926991, - "2024-02-01": 2.793329713963553, - "2024-08-17": 3.9789585972618466, - "2024-03-16": 7.348806910437667, - "2024-06-23": 5.330906865523042, - "2023-11-27": 1.7672227926426678, - "2024-01-10": 3.2381041000679747, - "2024-01-21": 2.9815745668554277, - "2024-03-15": 7.5129628169105285, - "2024-06-03": 7.263531367833146, - "2024-01-02": 3.963452953813446, - "2024-07-14": 5.366981733124768, - "2023-10-25": 1.1396282555839956, - "2024-01-01": 3.6617499482446276, - "2024-07-29": 5.53087813169511, - "2024-07-27": 5.728219722351934, - "2024-02-14": 3.3263959378070207, - "2024-07-28": 5.531026155040114, - "2024-04-03": 6.67577922133389, - "2024-06-15": 5.617181930907223, - "2023-11-28": 1.7793708998374556, - "2023-12-03": 1.9824263609451818, - "2024-07-11": 4.8935711581139865, - "2024-04-11": 6.972372630751877, - "2023-10-20": 1.0056940130200451, - "2023-10-10": 1.043315567083731, - "2024-05-03": 6.402006745678222, - "2024-03-08": 5.3991498633307, - "2024-01-14": 3.4120465504225916, - "2023-12-15": 2.2471728655081358, - "2023-10-19": 0.981305085051497, - "2024-02-08": 2.9355140382638765, - "2023-11-12": 1.6887335583645102, - "2023-12-22": 3.409204330086614, - "2024-06-21": 5.286086076635488, - "2024-03-23": 6.662014246637509, - "2024-03-04": 4.498551954476633, - "2024-04-13": 5.558489352507792, - "2024-02-29": 3.9433723731513037, - "2023-11-08": 1.4570738446545097, - "2024-07-19": 6.112062773860554, - "2024-08-10": 4.046854571638315, - "2023-12-29": 3.7642703446866634, - "2023-12-04": 2.1139244022428594, - "2024-04-10": 6.935023564142074, - "2024-05-08": 7.121512336045603, - "2024-08-04": 4.241795578398128, - "2024-04-21": 6.2893520483305885, - "2023-10-11": 1.0240349580898906, - "2024-05-05": 7.108646968438157, - "2024-03-21": 6.64985815316129, - "2024-05-23": 7.803292757364551, - "2024-04-08": 7.353788311334597, - "2024-05-18": 7.979068186878109, - "2024-06-10": 6.454589913076461, - "2023-10-05": 1.0941394866675338, - "2023-10-16": 1.0349517924572176, - "2024-05-22": 7.924256781893937, - "2024-02-10": 3.041635504557843, - "2024-04-07": 6.973616504210478, - "2024-02-20": 3.431996898260808, - "2023-11-17": 1.8440767053498592, - "2023-12-11": 2.304550837684291, - "2023-11-26": 1.8561907977253589, - "2023-10-27": 1.210765394254972, - "2024-01-27": 2.903555855914734, - "2024-03-30": 7.123578993086909, - "2023-11-22": 1.8243175790850412, - "2024-06-04": 7.144503166966505, - "2023-11-16": 1.7475929411440985, - "2024-02-02": 2.88034975556738, - "2024-06-26": 5.26670299642383, - "2024-01-18": 3.2180291700433266, - "2024-02-15": 3.3414566893701068, - "2024-08-09": 4.027277574704795, - "2023-10-28": 1.2284842634193653, - "2024-03-24": 6.568162419413257, - "2024-07-17": 6.198297891551166, - "2024-04-27": 7.1373794423668055, - "2023-12-06": 2.311948510494999, - "2024-01-30": 3.0639896380762774, - "2023-11-14": 1.5668152124706178, - "2024-07-22": 6.163948987506248, - "2024-06-06": 7.499868763771733, - "2024-07-04": 4.854114342503813, - "2024-08-28": 4.4526253056563325, - "2024-05-15": 7.5955106675460495, - "2023-11-10": 1.4612561859015896, - "2024-01-23": 2.5984204765915955, - "2024-01-31": 2.912049894573682, - "2024-05-11": 7.157744767607473, - "2024-01-11": 3.636287081199662, - "2024-02-18": 3.4233526656590993, - "2024-07-12": 4.942653891495454, - "2024-03-11": 6.851018963819408, - "2023-10-30": 1.274999300535876, - "2023-12-17": 2.365648956220669, - "2024-02-26": 3.9123896738208614, - "2024-06-17": 5.271958008350538, - "2024-01-05": 3.65838863748761, - "2024-06-14": 5.843896356044477, - "2024-06-13": 6.145571222067523, - "2024-03-14": 7.94711886482819, - "2024-02-21": 3.198323920616614, - "2023-12-13": 2.199452209236713, - "2024-02-27": 3.999895162673172, - "2024-08-29": 4.381267776412833, - "2024-03-31": 7.178773642003636, - "2023-12-09": 2.500235886832073, - "2024-04-02": 6.286779856598933, - "2024-02-06": 2.735359965981414, - "2024-05-31": 7.271382993341327, - "2024-04-09": 7.387577475279324, - "2024-05-25": 8.014789651199154, - "2023-11-04": 1.4979329118021207, - "2024-04-20": 5.756811181698787, - "2024-01-15": 3.348635820015811, - "2023-12-28": 3.992211320662116, - "2024-06-09": 6.599360688820481, - "2024-02-07": 2.7442945226707596, - "2024-03-19": 6.704899247064352, - "2024-03-10": 6.01693321456876, - "2024-05-02": 6.041394173843164, - "2024-07-24": 5.758837512946294, - "2024-01-12": 3.5667428349093946, - "2024-04-19": 5.60308943903456, - "2023-11-29": 1.8294660603140296, - "2023-10-15": 1.0203633489749082, - "2024-05-28": 7.717543126474734, - "2024-01-24": 2.5982717504186783, - "2024-02-11": 3.150043362247806, - "2024-06-08": 6.709115328713888, - "2023-11-30": 1.8552633093867767, - "2024-05-24": 7.792360734611342, - "2023-11-15": 1.6641354155316646, - "2023-12-16": 2.328325606682768, - "2024-08-26": 4.856096242755824, - "2024-04-04": 6.765719287643795, - "2024-08-23": 4.611252187063778, - "2023-11-03": 1.4886600574920614, - "2024-07-26": 5.640285919218731, - "2024-01-20": 2.9328672819950397, - "2024-08-05": 3.4895673688708064, - "2024-08-13": 4.072901285483615, - "2024-03-29": 7.0414697121471965, - "2024-06-25": 5.529868773258216, - "2024-08-18": 3.999896953282215, - "2023-10-21": 1.0242208550099736, - "2024-01-04": 3.7307847480511094, - "2024-08-20": 4.084138109703256, - "2023-11-13": 1.6780582103059116, - "2023-10-24": 1.123011297185177, - "2023-11-24": 1.825134927994318, - "2024-07-25": 5.456761984966314, - "2024-07-16": 6.0902523251247125, - "2024-05-16": 8.099691789979572, - "2024-01-29": 2.9259643283373813, - "2024-07-03": 5.190362509651767, - "2024-05-04": 6.860593651681063, - "2024-05-27": 7.8351333193009385, - "2023-11-02": 1.4987598730173934, - "2023-12-18": 2.185662091578081, - "2024-07-05": 4.372825402080473, - "2024-03-25": 7.399312584543455, - "2023-10-29": 1.2262034780695084, - "2024-06-18": 4.711214843031273, - "2024-05-01": 6.059669363565581, - "2024-02-16": 3.3410509735533775, - "2024-06-22": 5.250247745315005, - "2024-08-12": 4.017601887297848, - "2024-07-06": 4.563987564281788, - "2024-03-05": 4.304438644043825, - "2024-04-06": 7.052630410081021, - "2023-12-23": 3.402134235805802, - "2023-12-14": 2.282385450706646, - "2024-02-03": 2.841423123020562, - "2024-06-27": 5.193219419929176, - "2024-08-14": 4.240502093713502, - "2024-06-07": 7.293296729031598, - "2024-04-14": 5.381430300034119, - "2023-12-26": 4.31162885376218, - "2023-11-09": 1.4888831559605695, - "2023-10-14": 1.0099238923172622, - "2024-05-09": 7.195732480696747, - "2024-01-17": 3.284834764176755, - "2024-08-15": 4.121442365666032, - "2024-04-23": 7.035713797850911 - }, - "USD neo": { - "2024-09-12": 9.552944767036799, - "2024-09-15": 9.502102133879616, - "2024-09-22": 10.046224957400876, - "2024-09-05": 9.5540610314099, - "2024-09-10": 9.418358781717462, - "2024-09-11": 9.429819987469527, - "2024-09-20": 10.016101078923827, - "2024-09-26": 10.725038950732188, - "2024-09-16": 9.227910206493036, - "2024-09-08": 9.254604321138258, - "2024-09-24": 10.375859317964975, - "2024-09-29": 10.845097873210756, - "2024-09-17": 9.26689710667653, - "2024-09-14": 9.69290334394372, - "2024-09-03": 9.708929507866552, - "2024-09-25": 10.422140809714627, - "2024-09-18": 9.213455517981282, - "2024-09-07": 9.149160469911259, - "2024-09-06": 9.217823614126226, - "2024-09-19": 9.68769678416905, - "2024-09-30": 11.042682404876636, - "2024-09-01": 9.509750748137662, - "2024-08-31": 10.081489645942002, - "2024-09-02": 9.549986560813064, - "2024-09-23": 10.069588355407424, - "2024-09-13": 9.575714514779845, - "2024-10-01": 10.693490850913685, - "2024-09-04": 9.326187904174382, - "2024-09-28": 10.910719887273707, - "2024-09-21": 10.341150975421863, - "2024-09-09": 9.469903026012704, - "2024-09-27": 10.997513052378054, - "2024-09-27T07": 11.141921299493752, - "2024-09-27T05": 11.070263475895201, - "2024-09-30T14": 11.097329761039369, - "2024-09-27T14": 10.970700155086384, - "2024-09-27T23": 11.018060145829608, - "2024-09-28T11": 10.933376400665466, - "2024-09-29T00": 10.8220770614344, - "2024-09-28T18": 10.90530815910484, - "2024-09-29T23": 10.86563944228337, - "2024-10-01T13": 10.737912584252314, - "2024-09-30T10": 11.176556918830547, - "2024-09-25T22": 10.51651558374348, - "2024-09-29T11": 10.74547678136145, - "2024-09-28T12": 10.89620803124161, - "2024-09-26T09": 10.644655621528889, - "2024-09-28T10": 10.831705645970832, - "2024-09-27T16": 11.057302897544536, - "2024-09-24T17": 10.275064580708086, - "2024-09-27T15": 11.107082687580037, - "2024-09-29T12": 10.840059167460236, - "2024-09-25T04": 10.487186566651278, - "2024-09-25T21": 10.502656511360714, - "2024-09-25T18": 10.329803426199451, - "2024-09-26T04": 10.364114397714857, - "2024-09-26T05": 10.39397530715072, - "2024-09-30T04": 10.639535758241378, - "2024-09-27T13": 11.064451300228326, - "2024-09-28T13": 10.890837362350558, - "2024-09-25T08": 10.333026890196695, - "2024-09-30T03": 10.601756962635163, - "2024-10-01T10": 10.807742740857059, - "2024-09-25T13": 10.395159322755717, - "2024-10-01T01": 10.707017886688215, - "2024-09-26T17": 10.897561026406276, - "2024-09-25T15": 10.455573379728046, - "2024-09-29T22": 10.905066107376607, - "2024-09-29T01": 10.841038672206604, - "2024-09-30T06": 10.922323941308088, - "2024-09-27T12": 10.948494123853497, - "2024-09-25T23": 10.405329284696569, - "2024-09-30T05": 10.582363797245517, - "2024-09-28T23": 10.85418833042646, - "2024-09-30T19": 10.927776526921948, - "2024-09-25T00": 10.541258962531252, - "2024-10-01T12": 10.748633529147192, - "2024-09-29T10": 10.803471863087537, - "2024-09-24T22": 10.367614210405335, - "2024-09-26T08": 10.63274623927881, - "2024-09-29T20": 10.913274252519079, - "2024-09-25T12": 10.407079071269496, - "2024-09-25T05": 10.447439564706462, - "2024-09-27T09": 11.088816951625333, - "2024-09-26T02": 10.18667352220852, - "2024-09-28T05": 11.205077053003524, - "2024-09-29T03": 10.870783396176243, - "2024-09-26T23": 10.912316716300863, - "2024-09-29T16": 10.874573838281089, - "2024-09-26T21": 10.77017342647322, - "2024-09-26T16": 10.8389657302375, - "2024-09-28T03": 11.155503976790822, - "2024-09-29T21": 10.913224265876377, - "2024-09-30T09": 11.55617294159967, - "2024-09-24T16": 10.308548095393574, - "2024-09-30T07": 11.19053788745805, - "2024-09-28T17": 10.865459890518466, - "2024-09-28T02": 10.97425272568047, - "2024-09-28T15": 11.023122227242526, - "2024-09-29T17": 10.851272946226736, - "2024-09-25T17": 10.433737063403969, - "2024-09-25T16": 10.400328862843768, - "2024-10-01T04": 10.792404697348328, - "2024-10-01T07": 10.866520873690822, - "2024-09-30T23": 10.743225223083437, - "2024-09-29T13": 10.848587425490054, - "2024-09-26T22": 10.8250326851643, - "2024-10-01T11": 10.802476564348876, - "2024-09-30T16": 10.920350651988466, - "2024-09-28T01": 10.950068828091306, - "2024-09-27T02": 10.98543587883097, - "2024-09-30T20": 10.901507676198921, - "2024-09-28T06": 11.135255689275594, - "2024-09-27T08": 11.021575559116812, - "2024-10-01T06": 10.780860302377578, - "2024-09-27T03": 10.96517290592527, - "2024-09-25T06": 10.497295936336842, - "2024-10-01T02": 10.74458359553918, - "2024-09-27T17": 11.011487164613714, - "2024-09-30T22": 10.940226648433637, - "2024-09-29T05": 10.837313449290525, - "2024-09-28T20": 10.867231877564764, - "2024-09-30T13": 11.219464391433227, - "2024-09-26T18": 10.824010947794193, - "2024-09-25T10": 10.384564218458017, - "2024-09-25T02": 10.551749731044167, - "2024-09-29T02": 10.78307837187744, - "2024-09-28T08": 11.180307180330175, - "2024-09-30T17": 10.903493022193384, - "2024-09-30T02": 10.610223705567703, - "2024-09-28T09": 10.843865473240001, - "2024-09-25T03": 10.608126307700658, - "2024-09-29T15": 10.870909989166998, - "2024-09-29T06": 10.831833700756274, - "2024-09-24T18": 10.365802749226496, - "2024-09-26T07": 10.549352016354575, - "2024-09-26T15": 10.702490663625412, - "2024-09-27T04": 11.07058853864274, - "2024-09-27T11": 10.940361037131217, - "2024-09-26T20": 10.855129141874219, - "2024-09-30T12": 11.142174490763544, - "2024-09-27T10": 11.043059242052657, - "2024-09-26T12": 10.720521919123149, - "2024-09-24T23": 10.494425504280747, - "2024-09-30T00": 10.782836018710563, - "2024-09-25T14": 10.396583798079385, - "2024-09-26T14": 10.744908730992801, - "2024-09-27T01": 10.970505162280825, - "2024-09-28T04": 11.107108507576974, - "2024-09-29T08": 10.740758118359691, - "2024-09-26T01": 10.292132295111502, - "2024-09-27T19": 10.922388790609947, - "2024-09-25T01": 10.489272414150227, - "2024-09-26T00": 10.295454103973919, - "2024-09-29T18": 10.917964799506821, - "2024-09-28T19": 10.911572398068767, - "2024-09-28T22": 10.814575284221965, - "2024-09-27T18": 10.892512316741026, - "2024-09-24T21": 10.39609394144412, - "2024-09-30T08": 11.383878954205388, - "2024-09-25T11": 10.405751153063644, - "2024-09-25T20": 10.471559601308131, - "2024-10-01T09": 10.794262510455717, - "2024-10-01T03": 10.661026557644089, - "2024-09-26T11": 10.775246614002842, - "2024-09-28T07": 11.05044107535676, - "2024-09-27T22": 10.920428097928422, - "2024-09-27T21": 10.939124520876788, - "2024-09-26T03": 10.360827152028294, - "2024-09-26T13": 10.731798207560926, - "2024-09-30T18": 10.95614038949213, - "2024-10-01T08": 10.798149575799608, - "2024-09-25T19": 10.417090865018118, - "2024-09-30T21": 10.912500032057842, - "2024-09-28T14": 10.949754236736004, - "2024-09-27T20": 10.941408245670951, - "2024-09-26T06": 10.497297106806272, - "2024-09-26T10": 10.706863114722774, - "2024-09-29T04": 10.87263524812011, - "2024-09-28T16": 10.976498387271466, - "2024-10-01T00": 10.649005504064501, - "2024-09-24T20": 10.389549515274055, - "2024-09-26T19": 10.849847479193743, - "2024-09-24T15": 10.270212000616336, - "2024-09-27T06": 11.06748493552755, - "2024-09-29T14": 10.834559037659105, - "2024-09-29T07": 10.8080731786256, - "2024-09-28T00": 10.933304997216831, - "2024-09-30T01": 10.770681599109013, - "2024-09-29T09": 10.715147115183028, - "2024-09-25T09": 10.376401718658899, - "2024-09-30T11": 11.176193764999702, - "2024-09-25T07": 10.316518771532806, - "2024-09-24T19": 10.383733497980744, - "2024-09-29T19": 10.898980376316347, - "2024-09-30T15": 11.046352639308902, - "2024-09-28T21": 10.882375720630398, - "2024-10-01T05": 10.880919793567882, - "2024-10-01T14": 10.366888999999999, - "2024-09-27T00": 10.87990022286301, - "latest": 9.94, - "2024-10-01T15": 10.366888999999999 - }, - "USD nervos": { - "2024-09-12": 0.008723119709694393, - "2024-09-15": 0.014665293982939214, - "2024-09-22": 0.015934679229513665, - "2024-09-05": 0.008191479890058964, - "2024-09-10": 0.008848584532040713, - "2024-09-11": 0.00863322173322656, - "2024-09-20": 0.01813498089767627, - "2024-09-26": 0.016392455092187216, - "2024-09-16": 0.017067735259699554, - "2024-09-08": 0.007888215943296258, - "2024-09-24": 0.016422506919133238, - "2024-09-29": 0.01856468367409571, - "2024-09-17": 0.015863738978622262, - "2024-09-14": 0.013770984647968, - "2024-09-03": 0.008297985596907672, - "2024-09-25": 0.016979303902234563, - "2024-09-18": 0.016738602997940936, - "2024-09-07": 0.007556155741353435, - "2024-09-06": 0.007780700331630759, - "2024-09-19": 0.01780235470853984, - "2024-09-30": 0.017788880840504034, - "2024-09-01": 0.00809130567472389, - "2024-08-31": 0.008471252781920768, - "2024-09-02": 0.007661536722558323, - "2024-09-23": 0.016084870305944906, - "2024-09-13": 0.009110382878001633, - "2024-10-01": 0.01676752538465363, - "2024-09-04": 0.008039976520201237, - "2024-09-28": 0.01754268261600207, - "2024-09-21": 0.016698929878993674, - "2024-09-09": 0.008098548519634464, - "2024-09-27": 0.016835241600979895, - "2024-09-27T07": 0.017005547210109554, - "2024-09-27T05": 0.016811906173465563, - "2024-09-30T14": 0.017056977682645656, - "2024-09-27T14": 0.016994250352386244, - "2024-09-27T23": 0.017203684965909686, - "2024-09-28T11": 0.018683896371466932, - "2024-09-29T00": 0.01856468367409571, - "2024-09-28T18": 0.01826798009115579, - "2024-09-29T23": 0.01799518514796515, - "2024-10-01T13": 0.01710749319932729, - "2024-09-30T10": 0.01706126835442121, - "2024-09-25T22": 0.016474844770712337, - "2024-09-29T11": 0.018002305266180834, - "2024-09-28T12": 0.018573745962483585, - "2024-09-26T09": 0.016439410839479127, - "2024-09-28T10": 0.01846211562240219, - "2024-09-27T16": 0.017152359321278475, - "2024-09-24T17": 0.016735011108834984, - "2024-09-27T15": 0.017123419071711502, - "2024-09-29T12": 0.01803654291689781, - "2024-09-25T04": 0.016743491646052402, - "2024-09-25T21": 0.01641545433822157, - "2024-09-25T18": 0.016433920927132476, - "2024-09-26T04": 0.016335243430293692, - "2024-09-26T05": 0.016345712661114866, - "2024-09-30T04": 0.017402366635904658, - "2024-09-27T13": 0.016979896758766135, - "2024-09-28T13": 0.018440105628367214, - "2024-09-25T08": 0.016316112406440243, - "2024-09-30T03": 0.017208136297224425, - "2024-10-01T10": 0.017055824873625895, - "2024-09-25T13": 0.016267487618089996, - "2024-10-01T01": 0.016982605940298066, - "2024-09-26T17": 0.016885972066833236, - "2024-09-25T15": 0.016404239088785626, - "2024-09-29T22": 0.017981773507856496, - "2024-09-29T01": 0.018168123338386615, - "2024-09-30T06": 0.017310902810796044, - "2024-09-27T12": 0.016823957925639007, - "2024-09-25T23": 0.016430384275576273, - "2024-09-30T05": 0.017255864369388016, - "2024-09-28T23": 0.018555528146178814, - "2024-09-30T19": 0.01690858163964077, - "2024-09-25T00": 0.017028664221517734, - "2024-10-01T12": 0.017206477236269346, - "2024-09-29T10": 0.018112059766166227, - "2024-09-24T22": 0.016970681655268056, - "2024-09-26T08": 0.01651216374466536, - "2024-09-29T20": 0.017968571943919442, - "2024-09-25T12": 0.016299630185098824, - "2024-09-25T05": 0.016487297188325947, - "2024-09-27T09": 0.01711797072705868, - "2024-09-26T02": 0.01625032692515108, - "2024-09-28T05": 0.01861279512823546, - "2024-09-29T03": 0.01822424890173149, - "2024-09-26T23": 0.01680213832917606, - "2024-09-29T16": 0.017819955071386496, - "2024-09-26T21": 0.016785915356750128, - "2024-09-26T16": 0.016774496247470697, - "2024-09-28T03": 0.018112519765749416, - "2024-09-29T21": 0.017841368679273936, - "2024-09-30T09": 0.01731733437793797, - "2024-09-24T16": 0.016812073011363657, - "2024-09-30T07": 0.01734082679529951, - "2024-09-28T17": 0.01828578518253403, - "2024-09-28T02": 0.017718631461408788, - "2024-09-28T15": 0.018538058887400996, - "2024-09-29T17": 0.017848494956417302, - "2024-09-25T17": 0.016297222664509274, - "2024-09-25T16": 0.01627019745075832, - "2024-10-01T04": 0.01704324258708921, - "2024-10-01T07": 0.01709408539902822, - "2024-09-30T23": 0.0169250090425, - "2024-09-29T13": 0.017828052913483213, - "2024-09-26T22": 0.016898868476428353, - "2024-10-01T11": 0.01719723714584672, - "2024-09-30T16": 0.016799145236913032, - "2024-09-28T01": 0.01747519346144102, - "2024-09-27T02": 0.01662702428665294, - "2024-09-30T20": 0.016977416837705782, - "2024-09-28T06": 0.019150548597546908, - "2024-09-27T08": 0.01719369883079252, - "2024-10-01T06": 0.016990039334055074, - "2024-09-27T03": 0.016577403099966456, - "2024-09-25T06": 0.01636558025858657, - "2024-10-01T02": 0.01695422482127585, - "2024-09-27T17": 0.017195295803266928, - "2024-09-30T22": 0.017004084283417816, - "2024-09-29T05": 0.018184868503906253, - "2024-09-28T20": 0.018363084116855194, - "2024-09-30T13": 0.017012679363226264, - "2024-09-26T18": 0.0168440207538276, - "2024-09-25T10": 0.01630253255962322, - "2024-09-25T02": 0.016832161241966077, - "2024-09-29T02": 0.01826025284850443, - "2024-09-28T08": 0.018301790802040373, - "2024-09-30T17": 0.016815661150784054, - "2024-09-30T02": 0.017432424486838852, - "2024-09-28T09": 0.01824222838027087, - "2024-09-25T03": 0.016747103683097342, - "2024-09-29T15": 0.017831928261294382, - "2024-09-29T06": 0.018172961378869885, - "2024-09-24T18": 0.016744758054733883, - "2024-09-26T07": 0.01650952223163479, - "2024-09-26T15": 0.016619621401892083, - "2024-09-27T04": 0.016676698686820153, - "2024-09-27T11": 0.016836231076640038, - "2024-09-26T20": 0.016844410818116048, - "2024-09-30T12": 0.017066819657806875, - "2024-09-27T10": 0.017112762127958415, - "2024-09-26T12": 0.01651455726618614, - "2024-09-24T23": 0.017065571986262754, - "2024-09-30T00": 0.017975421475321586, - "2024-09-25T14": 0.01632731850114677, - "2024-09-26T14": 0.016703217760642763, - "2024-09-27T01": 0.016675134218010743, - "2024-09-28T04": 0.017994946544604762, - "2024-09-29T08": 0.017971736024965206, - "2024-09-26T01": 0.016195237223959977, - "2024-09-27T19": 0.017321845260247628, - "2024-09-25T01": 0.016795067096279474, - "2024-09-26T00": 0.016467874981290022, - "2024-09-29T18": 0.01790804738040447, - "2024-09-28T19": 0.018307347006634726, - "2024-09-28T22": 0.018402008449186713, - "2024-09-27T18": 0.017062825732763028, - "2024-09-24T21": 0.016962679820040953, - "2024-09-30T08": 0.017440162121829295, - "2024-09-25T11": 0.016366657979364933, - "2024-09-25T20": 0.016466746522673315, - "2024-10-01T09": 0.01701049696091483, - "2024-10-01T03": 0.016940552307849827, - "2024-09-26T11": 0.016576331490812224, - "2024-09-28T07": 0.0188892568038984, - "2024-09-27T22": 0.017336469122924032, - "2024-09-27T21": 0.01725055039653538, - "2024-09-26T03": 0.016337281235036014, - "2024-09-26T13": 0.016642171646948107, - "2024-09-30T18": 0.016959833261644595, - "2024-10-01T08": 0.017029165452329537, - "2024-09-25T19": 0.01648751193365881, - "2024-09-30T21": 0.017044015348314293, - "2024-09-28T14": 0.01841388154946903, - "2024-09-27T20": 0.017112876867775545, - "2024-09-26T06": 0.016408642141439403, - "2024-09-26T10": 0.016427923410216306, - "2024-09-29T04": 0.01830597950298569, - "2024-09-28T16": 0.01831855208163566, - "2024-10-01T00": 0.01676752538465363, - "2024-09-24T20": 0.01697451810007034, - "2024-09-26T19": 0.01697347793289778, - "2024-09-24T15": 0.016738605984280248, - "2024-09-27T06": 0.016882650489833017, - "2024-09-29T14": 0.017959868112028494, - "2024-09-29T07": 0.01788620884523859, - "2024-09-28T00": 0.01731270708620307, - "2024-09-30T01": 0.01762093009203897, - "2024-09-29T09": 0.018087832865804152, - "2024-09-25T09": 0.016301620475973323, - "2024-09-30T11": 0.016948775775513774, - "2024-09-25T07": 0.016370273019731797, - "2024-09-24T19": 0.01676560710812504, - "2024-09-29T19": 0.017898569271579443, - "2024-09-30T15": 0.016938883862947746, - "2024-09-28T21": 0.018389674245967047, - "2024-10-01T05": 0.01710472202302295, - "2024-10-01T14": 0.016873618403198273, - "2024-09-27T00": 0.016941832736469216, - "latest": 0.01587366, - "2024-10-01T15": 0.01638879254776951 - }, - "USD osmo": { - "2024-09-12": 0.39823565374910136, - "2024-09-15": 0.43941879472094086, - "2024-09-22": 0.5275755184559832, - "2024-09-05": 0.38105302160426574, - "2024-09-10": 0.39688799944194436, - "2024-09-11": 0.3920146304274471, - "2024-09-20": 0.5299036391603856, - "2024-09-26": 0.6405246079121616, - "2024-09-16": 0.4288032506884606, - "2024-09-08": 0.36957770569836235, - "2024-09-24": 0.5647454889559417, - "2024-09-29": 0.6453275145123738, - "2024-09-17": 0.46399744005433163, - "2024-09-14": 0.41962569172181546, - "2024-09-03": 0.39730981389808845, - "2024-09-25": 0.5923656603143443, - "2024-09-18": 0.4740343062815445, - "2024-09-07": 0.367502019326309, - "2024-09-06": 0.3743984001371972, - "2024-09-19": 0.5156663859026376, - "2024-09-30": 0.6291837302660866, - "2024-09-01": 0.39054869542872156, - "2024-08-31": 0.40167751308287236, - "2024-09-02": 0.3900538619513858, - "2024-09-23": 0.54661004340891, - "2024-09-13": 0.40580727621841106, - "2024-10-01": 0.6008210877415773, - "2024-09-04": 0.375713413037905, - "2024-09-28": 0.643097743139996, - "2024-09-21": 0.5322386449423891, - "2024-09-09": 0.3831970292406849, - "2024-09-27": 0.671815609403228, - "2024-09-27T07": 0.68066806, - "2024-09-27T05": 0.6708335400000001, - "2024-09-30T14": 0.6267085302050419, - "2024-09-27T14": 0.680817792, - "2024-09-27T23": 0.6645797399999999, - "2024-09-28T11": 0.6465387899999999, - "2024-09-29T00": 0.6466581939999999, - "2024-09-28T18": 0.641834757, - "2024-09-29T23": 0.6550982500000001, - "2024-10-01T13": 0.597234297, - "2024-09-30T10": 0.6277623320000001, - "2024-09-25T22": 0.59691045, - "2024-09-29T11": 0.63566356, - "2024-09-28T12": 0.6435579149999999, - "2024-09-26T09": 0.620669632, - "2024-09-28T10": 0.641583395, - "2024-09-27T16": 0.6721726257937949, - "2024-09-24T17": 0.5708143649999999, - "2024-09-27T15": 0.6750484780000001, - "2024-09-29T12": 0.6385766199999999, - "2024-09-25T04": 0.595470225, - "2024-09-25T21": 0.601209805, - "2024-09-25T18": 0.5940188374918464, - "2024-09-26T04": 0.604224724, - "2024-09-26T05": 0.6074237960000001, - "2024-09-30T04": 0.63751708670867, - "2024-09-27T13": 0.6759284019999999, - "2024-09-28T13": 0.6389575009999999, - "2024-09-25T08": 0.580259379, - "2024-09-30T03": 0.640161588, - "2024-10-01T10": 0.61140216, - "2024-09-25T13": 0.581424405, - "2024-10-01T01": 0.602780357, - "2024-09-26T17": 0.6567459689999999, - "2024-09-25T15": 0.595664258, - "2024-09-29T22": 0.658879056, - "2024-09-29T01": 0.645170961, - "2024-09-30T06": 0.6448440247429879, - "2024-09-27T12": 0.679515498, - "2024-09-25T23": 0.591969738, - "2024-09-30T05": 0.640406404, - "2024-09-28T23": 0.641970609, - "2024-09-30T19": 0.62076402, - "2024-09-25T00": 0.5907007693373841, - "2024-10-01T12": 0.610620609, - "2024-09-29T10": 0.6331821762582234, - "2024-09-24T22": 0.586376544, - "2024-09-26T08": 0.6235878040370327, - "2024-09-29T20": 0.6602056159999999, - "2024-09-25T12": 0.582753376, - "2024-09-25T05": 0.58957052, - "2024-09-27T09": 0.681022562, - "2024-09-26T02": 0.5980444679999999, - "2024-09-28T05": 0.653856888, - "2024-09-29T03": 0.6473129459999999, - "2024-09-26T23": 0.6534784079999999, - "2024-09-29T16": 0.6504650399999999, - "2024-09-26T21": 0.65236523, - "2024-09-26T16": 0.659332965, - "2024-09-28T03": 0.6602792239999999, - "2024-09-29T21": 0.660599075, - "2024-09-30T09": 0.635406354, - "2024-09-24T16": 0.5642266410000001, - "2024-09-30T07": 0.6445128899999999, - "2024-09-28T17": 0.6399343580000001, - "2024-09-28T02": 0.663156457494983, - "2024-09-28T15": 0.643157879, - "2024-09-29T17": 0.6568853840000001, - "2024-09-25T17": 0.593099156, - "2024-09-25T16": 0.594070295, - "2024-10-01T04": 0.6073596880000001, - "2024-10-01T07": 0.6144181078804656, - "2024-09-30T23": 0.5991818800348316, - "2024-09-29T13": 0.63658911, - "2024-09-26T22": 0.6570525600000001, - "2024-10-01T11": 0.61290805, - "2024-09-30T16": 0.618088724, - "2024-09-28T01": 0.6590790799999999, - "2024-09-27T02": 0.6568739204062508, - "2024-09-30T20": 0.6222070559999999, - "2024-09-28T06": 0.6470970500000001, - "2024-09-27T08": 0.6848027050000001, - "2024-10-01T06": 0.6100436739999999, - "2024-09-27T03": 0.6587888483745007, - "2024-09-25T06": 0.582665038, - "2024-10-01T02": 0.6007513619999999, - "2024-09-27T17": 0.6656331, - "2024-09-30T22": 0.609423216, - "2024-09-29T05": 0.643819314, - "2024-09-28T20": 0.64146414, - "2024-09-30T13": 0.63383661, - "2024-09-26T18": 0.650065, - "2024-09-25T10": 0.583165008, - "2024-09-25T02": 0.599664018, - "2024-09-29T02": 0.6485129699999999, - "2024-09-28T08": 0.64311574, - "2024-09-30T17": 0.6179392939999999, - "2024-09-30T02": 0.6440322, - "2024-09-28T09": 0.638489376, - "2024-09-25T03": 0.59697015, - "2024-09-29T15": 0.645783941, - "2024-09-29T06": 0.639225568, - "2024-09-24T18": 0.574296608, - "2024-09-26T07": 0.618163974, - "2024-09-26T15": 0.6482064820000001, - "2024-09-27T04": 0.6653133059999999, - "2024-09-27T11": 0.677915226, - "2024-09-26T20": 0.6471035199999999, - "2024-09-30T12": 0.631055823, - "2024-09-27T10": 0.6720209420000001, - "2024-09-26T12": 0.643761372, - "2024-09-24T23": 0.587364756, - "2024-09-30T00": 0.652378276, - "2024-09-25T14": 0.590735012, - "2024-09-26T14": 0.6419935800000001, - "2024-09-27T01": 0.655891812, - "2024-09-28T04": 0.657385449, - "2024-09-29T08": 0.6308883120000001, - "2024-09-26T01": 0.589152675, - "2024-09-27T19": 0.6647997050000001, - "2024-09-25T01": 0.5982267594169788, - "2024-09-26T00": 0.58925265, - "2024-09-29T18": 0.66033204, - "2024-09-28T19": 0.64156415, - "2024-09-28T22": 0.637776524, - "2024-09-27T18": 0.6627596429999999, - "2024-09-24T21": 0.58146511, - "2024-09-30T08": 0.6402256080000001, - "2024-09-25T11": 0.581459295, - "2024-09-25T20": 0.5957165879999999, - "2024-10-01T09": 0.6103145440000001, - "2024-10-01T03": 0.6049943820000001, - "2024-09-26T11": 0.6368235720000001, - "2024-09-28T07": 0.64492896, - "2024-09-27T22": 0.6641195200000001, - "2024-09-27T21": 0.6648063519999999, - "2024-09-26T03": 0.6029454131060515, - "2024-09-26T13": 0.644587108, - "2024-09-30T18": 0.620588928, - "2024-10-01T15": 0.58842342, - "2024-10-01T08": 0.611726584, - "2024-09-25T19": 0.597516336, - "2024-09-30T21": 0.621501056, - "2024-09-28T14": 0.64146414, - "2024-09-27T20": 0.6610189620000001, - "2024-09-26T06": 0.6105473250000001, - "2024-09-26T10": 0.626393495, - "2024-09-29T04": 0.64301929, - "2024-09-28T16": 0.6424642399999999, - "2024-10-01T00": 0.596437452, - "2024-09-24T20": 0.5811651280000001, - "2024-09-26T19": 0.65056505, - "2024-09-24T15": 0.5616325959999999, - "2024-09-27T06": 0.6767135339999999, - "2024-09-29T14": 0.641409021, - "2024-09-29T07": 0.632744289, - "2024-09-28T00": 0.6610793199999999, - "2024-09-30T01": 0.6537784439999998, - "2024-09-29T09": 0.634350744, - "2024-09-25T09": 0.580159386, - "2024-09-30T11": 0.629580680585346, - "2024-09-25T07": 0.578776848, - "2024-09-24T19": 0.576130856, - "2024-09-29T19": 0.6590186020000001, - "2024-09-30T15": 0.624618789, - "2024-09-28T21": 0.6355132730227092, - "2024-10-01T05": 0.6078202739999999, - "2024-10-01T14": 0.58952309, - "2024-09-27T00": 0.6566853579999999, - "latest": 0.563585 - }, - "USD polkadot": { - "2024-09-12": 4.230736893367224, - "2024-09-15": 4.49550168949808, - "2024-09-22": 4.354026749627451, - "2024-09-05": 4.0360116169711135, - "2024-09-10": 4.241304504776069, - "2024-09-11": 4.149077739364984, - "2024-09-20": 4.309025568083445, - "2024-09-26": 4.7849976556033615, - "2024-09-16": 4.271832428386335, - "2024-09-08": 4.135749929016587, - "2024-09-24": 4.54531009630691, - "2024-09-29": 4.777573865673165, - "2024-09-17": 4.184292424097821, - "2024-09-14": 4.404319238739341, - "2024-09-03": 4.208380535011228, - "2024-09-25": 4.6704467697440135, - "2024-09-18": 4.0812602378726845, - "2024-09-07": 4.0593115129345945, - "2024-09-06": 3.9859334555838752, - "2024-09-19": 4.233142495851812, - "2024-09-30": 4.613871126867028, - "2024-09-01": 4.176451358949744, - "2024-08-31": 4.276746462210312, - "2024-09-02": 4.149653411066235, - "2024-09-23": 4.382595712306765, - "2024-09-13": 4.323839066295821, - "2024-10-01": 4.486240208503905, - "2024-09-04": 4.067637238727524, - "2024-09-28": 4.813302367594223, - "2024-09-21": 4.367393029999999, - "2024-09-09": 4.193690858925892, - "2024-09-27": 4.898247749484631, - "2024-09-27T07": 4.9084908, - "2024-09-27T05": 4.929246450000001, - "2024-09-30T14": 4.56213303, - "2024-09-27T14": 4.91057088, - "2024-09-27T23": 4.900588, - "2024-09-28T11": 4.8202892, - "2024-09-29T00": 4.800432, - "2024-09-28T18": 4.811010100000001, - "2024-09-29T23": 4.76371445, - "2024-10-01T13": 4.4165141299999995, - "2024-09-30T10": 4.606723580000001, - "2024-09-25T22": 4.67229905, - "2024-09-29T11": 4.730473000000001, - "2024-09-28T12": 4.80543245, - "2024-09-26T09": 4.771997669999999, - "2024-09-28T10": 4.82662738, - "2024-09-27T16": 4.9134913000000005, - "2024-09-24T17": 4.56431525, - "2024-09-27T15": 4.91007998, - "2024-09-29T12": 4.7285673599999996, - "2024-09-25T04": 4.67076645, - "2024-09-25T21": 4.7112932, - "2024-09-25T18": 4.7490974999999995, - "2024-09-26T04": 4.67764309, - "2024-09-26T05": 4.74962221, - "2024-09-30T04": 4.6717664, - "2024-09-27T13": 4.904931759999999, - "2024-09-28T13": 4.790431099999999, - "2024-09-25T08": 4.627718104911322, - "2024-09-30T03": 4.66871986, - "2024-10-01T10": 4.52527584, - "2024-09-25T13": 4.67439225, - "2024-10-01T01": 4.490618710000001, - "2024-09-26T17": 4.821948650215766, - "2024-09-25T15": 4.73071614, - "2024-09-29T22": 4.792575039999999, - "2024-09-29T01": 4.785569223365457, - "2024-09-30T06": 4.688093759999999, - "2024-09-27T12": 4.90183317, - "2024-09-25T23": 4.64097876, - "2024-09-30T05": 4.67504675, - "2024-09-28T23": 4.8015281100000005, - "2024-09-30T19": 4.529278219999999, - "2024-09-25T00": 4.64286071, - "2024-10-01T12": 4.50641409, - "2024-09-29T10": 4.71942471, - "2024-09-24T22": 4.64281428, - "2024-09-26T08": 4.795040800000001, - "2024-09-29T20": 4.834773439999999, - "2024-09-25T12": 4.665626720000001, - "2024-09-25T05": 4.662766850000001, - "2024-09-27T09": 4.8958810999999995, - "2024-09-26T02": 4.6317954199999996, - "2024-09-28T05": 4.87216904, - "2024-09-29T03": 4.813096259999999, - "2024-09-26T23": 4.79457528, - "2024-09-29T16": 4.7804780000000004, - "2024-09-26T21": 4.78797875, - "2024-09-26T16": 4.855242750000001, - "2024-09-28T03": 4.9015881199999995, - "2024-09-29T21": 4.816133660890529, - "2024-09-30T09": 4.658046580000001, - "2024-09-24T16": 4.51641279, - "2024-09-30T07": 4.709094179999999, - "2024-09-28T17": 4.801008, - "2024-09-28T02": 4.91862534387312, - "2024-09-28T15": 4.80743263, - "2024-09-29T17": 4.8056246499999995, - "2024-09-25T17": 4.71719794, - "2024-09-25T16": 4.74076295, - "2024-10-01T04": 4.52546432, - "2024-10-01T07": 4.54818118, - "2024-09-30T23": 4.43189175, - "2024-09-29T13": 4.72966206, - "2024-09-26T22": 4.80638448, - "2024-10-01T11": 4.5233214, - "2024-09-30T16": 4.5321840600000005, - "2024-09-28T01": 4.886586319999999, - "2024-09-27T02": 4.885549788648804, - "2024-09-30T20": 4.53759291, - "2024-09-28T06": 4.833724950000001, - "2024-09-27T08": 4.9047356, - "2024-10-01T06": 4.545090259999999, - "2024-09-27T03": 4.89929394, - "2024-09-25T06": 4.633721960000001, - "2024-10-01T02": 4.485396959999999, - "2024-09-27T17": 4.8999798, - "2024-09-30T22": 4.4886979, - "2024-09-29T05": 4.78414352, - "2024-09-28T20": 4.8144814, - "2024-09-30T13": 4.607252079374052, - "2024-09-26T18": 4.81668162, - "2024-09-25T10": 4.6547207, - "2024-09-25T02": 4.66372016, - "2024-09-29T02": 4.8200964, - "2024-09-28T08": 4.80286436, - "2024-09-30T17": 4.5388196, - "2024-09-30T02": 4.6802340000000004, - "2024-09-28T09": 4.78366962, - "2024-09-25T03": 4.67076645, - "2024-09-29T15": 4.77162023, - "2024-09-29T06": 4.7661906400000005, - "2024-09-24T18": 4.56028495962357, - "2024-09-26T07": 4.797944220000001, - "2024-09-26T15": 4.827048270000001, - "2024-09-27T04": 4.917098339999999, - "2024-09-27T11": 4.87882926, - "2024-09-26T20": 4.775764, - "2024-09-30T12": 4.6226763900000005, - "2024-09-27T10": 4.8688762400000005, - "2024-09-26T12": 4.777713320000001, - "2024-09-24T23": 4.65672058, - "2024-09-30T00": 4.738568559999999, - "2024-09-25T14": 4.71448135, - "2024-09-26T14": 4.80895191, - "2024-09-27T01": 4.86168054, - "2024-09-28T04": 4.901637129999999, - "2024-09-29T08": 4.71866052, - "2024-09-26T01": 4.587852750000001, - "2024-09-27T19": 4.87573125, - "2024-09-25T01": 4.6628601100000004, - "2024-09-26T00": 4.61584575, - "2024-09-29T18": 4.8069612, - "2024-09-28T19": 4.8114811, - "2024-09-28T22": 4.792575039999999, - "2024-09-27T18": 4.882439379999999, - "2024-09-24T21": 4.59372436, - "2024-09-30T08": 4.69218768, - "2024-09-25T11": 4.66167366, - "2024-09-25T20": 4.726338220000001, - "2024-10-01T09": 4.52536636, - "2024-10-01T03": 4.52296758, - "2024-09-26T11": 4.7704274799999995, - "2024-09-28T07": 4.830966, - "2024-09-27T22": 4.90288236, - "2024-09-27T21": 4.8887820799999995, - "2024-09-26T03": 4.65065092, - "2024-09-26T13": 4.77890442, - "2024-09-30T18": 4.520462520000001, - "2024-10-01T15": 4.3836845, - "2024-10-01T08": 4.530456279999999, - "2024-09-25T19": 4.72833794, - "2024-09-30T21": 4.53154944, - "2024-09-28T14": 4.8244824, - "2024-09-27T20": 4.86987642, - "2024-09-26T06": 4.782804, - "2024-09-26T10": 4.79118536, - "2024-09-29T04": 4.78414352, - "2024-09-28T16": 4.79627958, - "2024-10-01T00": 4.42905036, - "2024-09-24T20": 4.59072454, - "2024-09-26T19": 4.8114811, - "2024-09-24T15": 4.51145856, - "2024-09-27T06": 4.943098859999999, - "2024-09-29T14": 4.751807670000001, - "2024-09-29T07": 4.73833166, - "2024-09-28T00": 4.886586319999999, - "2024-09-30T01": 4.702578986223494, - "2024-09-29T09": 4.74137928, - "2024-09-25T09": 4.63367562, - "2024-09-30T11": 4.62272262, - "2024-09-25T07": 4.60781568, - "2024-09-24T19": 4.5694516, - "2024-09-29T19": 4.8158667, - "2024-09-30T15": 4.5494085, - "2024-09-28T21": 4.77552525, - "2024-10-01T05": 4.520919419999999, - "2024-10-01T14": 4.408677, - "2024-09-27T00": 4.84963037, - "latest": 4.22 - }, - "USD polygon": { - "2024-09-12": 0.3775000790734009, - "2024-09-15": 0.400791469869452, - "2024-09-22": 0.40098030296152587, - "2024-09-05": 0.37284627924546243, - "2024-09-10": 0.37937915272453127, - "2024-09-11": 0.37458568964207617, - "2024-09-20": 0.40031191402587174, - "2024-09-26": 0.4230903120028148, - "2024-09-16": 0.3788579791582967, - "2024-09-08": 0.3725697688989462, - "2024-09-24": 0.40508819678780317, - "2024-09-29": 0.4218072729888126, - "2024-09-17": 0.38333152179510915, - "2024-09-14": 0.4108008811681073, - "2024-09-03": 0.4076134578569064, - "2024-09-25": 0.4114826846526699, - "2024-09-18": 0.37906816058870973, - "2024-09-07": 0.3728959549462348, - "2024-09-06": 0.3678922093450388, - "2024-09-19": 0.3969954355574452, - "2024-09-30": 0.4078096069289482, - "2024-09-01": 0.40962394466588614, - "2024-08-31": 0.420977298965017, - "2024-09-02": 0.4045153164519922, - "2024-09-23": 0.40463878716677715, - "2024-09-13": 0.4191630498402945, - "2024-10-01": 0.3981, - "2024-09-04": 0.38214674103348883, - "2024-09-28": 0.4243241210833073, - "2024-09-21": 0.4050518718900339, - "2024-09-09": 0.37748698596665914, - "2024-09-27": 0.4330065887056025, - "2024-09-27T07": 0.4339, - "2024-09-27T05": 0.4311, - "2024-09-30T14": 0.4075, - "2024-09-27T14": 0.4363, - "2024-09-27T23": 0.4342, - "2024-09-28T11": 0.4235, - "2024-09-29T00": 0.4237, - "2024-09-28T18": 0.4252, - "2024-09-29T23": 0.421, - "2024-10-01T13": 0.3959, - "2024-09-30T10": 0.4066875485003716, - "2024-09-25T22": 0.4131, - "2024-09-29T11": 0.419, - "2024-09-28T12": 0.4213111987222377, - "2024-09-26T09": 0.4195, - "2024-09-28T10": 0.4235, - "2024-09-27T16": 0.4353, - "2024-09-24T17": 0.405, - "2024-09-27T15": 0.4359, - "2024-09-29T12": 0.4187, - "2024-09-25T04": 0.4112, - "2024-09-25T21": 0.41402868012927374, - "2024-09-25T18": 0.4107, - "2024-09-26T04": 0.411, - "2024-09-26T05": 0.4114, - "2024-09-30T04": 0.4114453337213038, - "2024-09-27T13": 0.43328873114885114, - "2024-09-28T13": 0.4212, - "2024-09-25T08": 0.4084, - "2024-09-30T03": 0.4101, - "2024-10-01T10": 0.40311418656681586, - "2024-09-25T13": 0.414231578810616, - "2024-10-01T01": 0.3988, - "2024-09-26T17": 0.4294092550782008, - "2024-09-25T15": 0.4166, - "2024-09-29T22": 0.42282662346399424, - "2024-09-29T01": 0.4218, - "2024-09-30T06": 0.4144, - "2024-09-27T12": 0.433, - "2024-09-25T23": 0.41000102199156846, - "2024-09-30T05": 0.4128, - "2024-09-28T23": 0.4228, - "2024-09-30T19": 0.4015, - "2024-09-25T00": 0.4099, - "2024-10-01T12": 0.4033, - "2024-09-29T10": 0.4182386792582937, - "2024-09-24T22": 0.4086, - "2024-09-26T08": 0.4175001874833931, - "2024-09-29T20": 0.42453313765100364, - "2024-09-25T12": 0.4107, - "2024-09-25T05": 0.4099, - "2024-09-27T09": 0.4347, - "2024-09-26T02": 0.4093, - "2024-09-28T05": 0.4323, - "2024-09-29T03": 0.4224, - "2024-09-26T23": 0.42463207869496356, - "2024-09-29T16": 0.421, - "2024-09-26T21": 0.424, - "2024-09-26T16": 0.43, - "2024-09-28T03": 0.436, - "2024-09-29T21": 0.4238, - "2024-09-30T09": 0.4110387548189204, - "2024-09-24T16": 0.4019, - "2024-09-30T07": 0.4148, - "2024-09-28T17": 0.4243, - "2024-09-28T02": 0.437, - "2024-09-28T15": 0.4253, - "2024-09-29T17": 0.423, - "2024-09-25T17": 0.4111183824153024, - "2024-09-25T16": 0.4137, - "2024-10-01T04": 0.4031, - "2024-10-01T07": 0.4046, - "2024-09-30T23": 0.3966256471847046, - "2024-09-29T13": 0.4175, - "2024-09-26T22": 0.4252, - "2024-10-01T11": 0.40411709949743657, - "2024-09-30T16": 0.4034, - "2024-09-28T01": 0.4345, - "2024-09-27T02": 0.4254, - "2024-09-30T20": 0.4024, - "2024-09-28T06": 0.4293, - "2024-09-27T08": 0.4347, - "2024-10-01T06": 0.40375754530595653, - "2024-09-27T03": 0.4262498414253343, - "2024-09-25T06": 0.4071, - "2024-10-01T02": 0.3978225162665804, - "2024-09-27T17": 0.4324, - "2024-09-30T22": 0.3997210590532278, - "2024-09-29T05": 0.4227, - "2024-09-28T20": 0.4242, - "2024-09-30T13": 0.4095, - "2024-09-26T18": 0.4268, - "2024-09-25T10": 0.4088, - "2024-09-25T02": 0.4114, - "2024-09-29T02": 0.4233, - "2024-09-28T08": 0.4226, - "2024-09-30T17": 0.4032, - "2024-09-30T02": 0.4124, - "2024-09-28T09": 0.4186, - "2024-09-25T03": 0.4117, - "2024-09-29T15": 0.4207, - "2024-09-29T06": 0.4199, - "2024-09-24T18": 0.4043, - "2024-09-26T07": 0.4178, - "2024-09-26T15": 0.42740669182889046, - "2024-09-27T04": 0.4293, - "2024-09-27T11": 0.4311, - "2024-09-26T20": 0.4232, - "2024-09-30T12": 0.4085128692972627, - "2024-09-27T10": 0.43103793951142033, - "2024-09-26T12": 0.4221, - "2024-09-24T23": 0.409, - "2024-09-30T00": 0.4179, - "2024-09-25T14": 0.4161, - "2024-09-26T14": 0.4238, - "2024-09-27T01": 0.4259, - "2024-09-28T04": 0.435, - "2024-09-29T08": 0.4191, - "2024-09-26T01": 0.4045, - "2024-09-27T19": 0.4323019019076174, - "2024-09-25T01": 0.4106, - "2024-09-26T00": 0.4066, - "2024-09-29T18": 0.423, - "2024-09-28T19": 0.424, - "2024-09-28T22": 0.4232, - "2024-09-27T18": 0.4319, - "2024-09-24T21": 0.4072, - "2024-09-30T08": 0.4131, - "2024-09-25T11": 0.4076, - "2024-09-25T20": 0.41113897397939747, - "2024-10-01T09": 0.4029, - "2024-10-01T03": 0.4012, - "2024-09-26T11": 0.4217, - "2024-09-28T07": 0.4268, - "2024-09-27T22": 0.43412672193753366, - "2024-09-27T21": 0.4324, - "2024-09-26T03": 0.4111, - "2024-09-26T13": 0.4230354226087572, - "2024-09-30T18": 0.4009, - "2024-10-01T15": 0.39248220120667, - "2024-10-01T08": 0.4034, - "2024-09-25T19": 0.4122, - "2024-09-30T21": 0.4014, - "2024-09-28T14": 0.4255, - "2024-09-27T20": 0.4328, - "2024-09-26T06": 0.4153, - "2024-09-26T10": 0.4239, - "2024-09-29T04": 0.4225455352289138, - "2024-09-28T16": 0.4237, - "2024-10-01T00": 0.3956, - "2024-09-24T20": 0.407, - "2024-09-26T19": 0.428, - "2024-09-24T15": 0.404, - "2024-09-27T06": 0.4342628142625361, - "2024-09-29T14": 0.41890118593709724, - "2024-09-29T07": 0.4195, - "2024-09-28T00": 0.4345, - "2024-09-30T01": 0.4129, - "2024-09-29T09": 0.42, - "2024-09-25T09": 0.4084, - "2024-09-30T11": 0.4084, - "2024-09-25T07": 0.4057, - "2024-09-24T19": 0.4052, - "2024-09-29T19": 0.4236, - "2024-09-30T15": 0.40719, - "2024-09-28T21": 0.42144666819749266, - "2024-10-01T05": 0.4026, - "2024-10-01T14": 0.39248220120667, - "2024-09-27T00": 0.4269, - "latest": 0.378786 - }, - "USD qtum": { - "2024-09-12": 2.2554007122061783, - "2024-09-15": 2.279375323283207, - "2024-09-22": 2.4717094334853553, - "2024-09-05": 2.1817574861245688, - "2024-09-10": 2.248693507553689, - "2024-09-11": 2.223945881218077, - "2024-09-20": 2.442618234078918, - "2024-09-26": 2.6086016565919232, - "2024-09-16": 2.1878758113624315, - "2024-09-08": 2.1325708153344305, - "2024-09-24": 2.5547689580060413, - "2024-09-29": 2.6520986854165125, - "2024-09-17": 2.2263622719642613, - "2024-09-14": 2.3078772158378302, - "2024-09-03": 2.2419542796521976, - "2024-09-25": 2.565820272670637, - "2024-09-18": 2.249337935954291, - "2024-09-07": 2.105802529071075, - "2024-09-06": 2.1310072977960477, - "2024-09-19": 2.3364944512091506, - "2024-09-30": 2.6884841075571533, - "2024-09-01": 2.2197084071985715, - "2024-08-31": 2.312870519693014, - "2024-09-02": 2.2062447026352356, - "2024-09-23": 2.499188840168788, - "2024-09-13": 2.267066460311281, - "2024-10-01": 2.6270655740887707, - "2024-09-04": 2.1587352728225566, - "2024-09-28": 2.6567232623257437, - "2024-09-21": 2.516428666346087, - "2024-09-09": 2.220516521658369, - "2024-09-27": 2.6931685064041107, - "2024-09-27T07": 2.6812693788592097, - "2024-09-27T05": 2.6741337, - "2024-09-30T14": 2.67149232, - "2024-09-27T14": 2.7108672, - "2024-09-27T23": 2.7103251999999998, - "2024-09-28T11": 2.637001051284421, - "2024-09-29T00": 2.6502384999999995, - "2024-09-28T18": 2.6615588100000003, - "2024-09-29T23": 2.6523978000000006, - "2024-10-01T13": 2.63571004, - "2024-09-30T10": 2.7088374600000003, - "2024-09-25T22": 2.5382536696822764, - "2024-09-29T11": 2.630263, - "2024-09-28T12": 2.62523625, - "2024-09-26T09": 2.59145568, - "2024-09-28T10": 2.6403432000000002, - "2024-09-27T16": 2.7192719, - "2024-09-24T17": 2.5556166, - "2024-09-27T15": 2.7155973, - "2024-09-29T12": 2.636116296, - "2024-09-25T04": 2.5818708999999997, - "2024-09-25T21": 2.5556166, - "2024-09-25T18": 2.5516525607218403, - "2024-09-26T04": 2.5389634869999997, - "2024-09-26T05": 2.55825789, - "2024-09-30T04": 2.587576804185241, - "2024-09-27T13": 2.6945118599999995, - "2024-09-28T13": 2.6182672693908926, - "2024-09-25T08": 2.55645221900789, - "2024-09-30T03": 2.59284442, - "2024-10-01T10": 2.70856656, - "2024-09-25T13": 2.56666629, - "2024-10-01T01": 2.63060504, - "2024-09-26T17": 2.63618452, - "2024-09-25T15": 2.58184508, - "2024-09-29T22": 2.671380561172105, - "2024-09-29T01": 2.64129051, - "2024-09-30T06": 2.7140542799999996, - "2024-09-27T12": 2.68745679, - "2024-09-25T23": 2.534265056203189, - "2024-09-30T05": 2.6133858498221776, - "2024-09-28T23": 2.6552920500000003, - "2024-09-30T19": 2.6839797, - "2024-09-25T00": 2.59192224, - "2024-10-01T12": 2.69564952, - "2024-09-29T10": 2.6222764660434925, - "2024-09-24T22": 2.57789688, - "2024-09-26T08": 2.5924814, - "2024-09-29T20": 2.6774283199999998, - "2024-09-25T12": 2.5693344927548916, - "2024-09-25T05": 2.5668733412024585, - "2024-09-27T09": 2.6844831200000003, - "2024-09-26T02": 2.52334376, - "2024-09-28T05": 2.6926460800000003, - "2024-09-29T03": 2.6560531199999997, - "2024-09-26T23": 2.6373164399999998, - "2024-09-29T16": 2.670267, - "2024-09-26T21": 2.6242624, - "2024-09-26T16": 2.6401320000000004, - "2024-09-28T03": 2.7143256799999995, - "2024-09-29T21": 2.6794018500000005, - "2024-09-30T09": 2.76102761, - "2024-09-24T16": 2.5316708400000003, - "2024-09-30T07": 2.7650552999999998, - "2024-09-28T17": 2.65155671, - "2024-09-28T02": 2.72232664, - "2024-09-28T15": 2.6412376899999996, - "2024-09-29T17": 2.67934827, - "2024-09-25T17": 2.5495664999999996, - "2024-09-25T16": 2.57287135, - "2024-10-01T04": 2.66650592, - "2024-10-01T07": 2.6675197600000002, - "2024-09-30T23": 2.60738061989217, - "2024-09-29T13": 2.6443701600000002, - "2024-09-26T22": 2.6426412826479537, - "2024-10-01T11": 2.707833245623522, - "2024-09-30T16": 2.67151904, - "2024-09-28T01": 2.700326395642256, - "2024-09-27T02": 2.6542986978656966, - "2024-09-30T20": 2.68516734, - "2024-09-28T06": 2.6784017, - "2024-09-27T08": 2.68340245, - "2024-10-01T06": 2.6448886799999998, - "2024-09-27T03": 2.67916074, - "2024-09-25T06": 2.5518468800000003, - "2024-10-01T02": 2.6244769199999998, - "2024-09-27T17": 2.710542, - "2024-09-30T22": 2.650142741338518, - "2024-09-29T05": 2.6430792899999997, - "2024-09-28T20": 2.6612661, - "2024-09-30T13": 2.7147285, - "2024-09-26T18": 2.6292629, - "2024-09-25T10": 2.5648461, - "2024-09-25T02": 2.6078435200000003, - "2024-09-29T02": 2.66105322, - "2024-09-28T08": 2.632883062025246, - "2024-09-30T17": 2.68530164, - "2024-09-30T02": 2.60313015, - "2024-09-28T09": 2.61936666, - "2024-09-25T03": 2.5958702000000002, - "2024-09-29T15": 2.65834554, - "2024-09-29T06": 2.627992942585295, - "2024-09-24T18": 2.55054082, - "2024-09-26T07": 2.59642866, - "2024-09-26T15": 2.62902629, - "2024-09-27T04": 2.68205364, - "2024-09-27T11": 2.675717243357381, - "2024-09-26T20": 2.62141936, - "2024-09-30T12": 2.7358084799999998, - "2024-09-27T10": 2.6644795200000004, - "2024-09-26T12": 2.60884346, - "2024-09-24T23": 2.57884526, - "2024-09-30T00": 2.6423170399999996, - "2024-09-25T14": 2.58371576, - "2024-09-26T14": 2.62297377, - "2024-09-27T01": 2.65337142, - "2024-09-28T04": 2.71735321, - "2024-09-29T08": 2.6143659599999998, - "2024-09-26T01": 2.4973755000000004, - "2024-09-27T19": 2.7176577333902223, - "2024-09-25T01": 2.60092197, - "2024-09-26T00": 2.51937, - "2024-09-29T18": 2.6785356, - "2024-09-28T19": 2.6662665999999997, - "2024-09-28T22": 2.65231824, - "2024-09-27T18": 2.70824372, - "2024-09-24T21": 2.55784652, - "2024-09-30T08": 2.75711028, - "2024-09-25T11": 2.56595800520532, - "2024-09-25T20": 2.55164272, - "2024-10-01T09": 2.7116203199999998, - "2024-10-01T03": 2.6512224900000003, - "2024-09-26T11": 2.608986884, - "2024-09-28T07": 2.6725344, - "2024-09-27T22": 2.7104878, - "2024-09-27T21": 2.7054328, - "2024-09-26T03": 2.52726688, - "2024-09-26T13": 2.60794784, - "2024-09-30T18": 2.6740904999999997, - "2024-10-01T15": 2.609217, - "2024-10-01T08": 2.705775268, - "2024-09-25T19": 2.5545562821959376, - "2024-09-30T21": 2.6901388799999997, - "2024-09-28T14": 2.6382724884949034, - "2024-09-27T20": 2.706211173999945, - "2024-09-26T06": 2.5733565, - "2024-09-26T10": 2.6065568100000003, - "2024-09-29T04": 2.6470794100000004, - "2024-09-28T16": 2.6452645, - "2024-10-01T00": 2.5938581999999997, - "2024-09-24T20": 2.56084634, - "2024-09-26T19": 2.6372637, - "2024-09-24T15": 2.5446945999999997, - "2024-09-27T06": 2.6910538199999996, - "2024-09-29T14": 2.6594520299999997, - "2024-09-29T07": 2.62118347, - "2024-09-28T00": 2.6993238799999997, - "2024-09-30T01": 2.6363163199999997, - "2024-09-29T09": 2.6312104800000005, - "2024-09-25T09": 2.5598208000000002, - "2024-09-30T11": 2.72083674, - "2024-09-25T07": 2.5397266492971364, - "2024-09-24T19": 2.555993244, - "2024-09-29T19": 2.6794822200000006, - "2024-09-30T15": 2.6636536800000004, - "2024-09-28T21": 2.6420905980000002, - "2024-10-01T05": 2.6368621086576116, - "2024-10-01T14": 2.6112164, - "2024-09-27T00": 2.6413433299999998, - "latest": 2.51 - }, - "USD ravencoin": { - "2024-09-12": 0.01750015551679726, - "2024-09-15": 0.01706713439769961, - "2024-09-22": 0.017731590196199475, - "2024-09-05": 0.016332765374057447, - "2024-09-10": 0.017259310012254312, - "2024-09-11": 0.016886344823436976, - "2024-09-20": 0.017939759410488712, - "2024-09-26": 0.018339743075945537, - "2024-09-16": 0.016228200264142085, - "2024-09-08": 0.016228683170235902, - "2024-09-24": 0.018010869803674077, - "2024-09-29": 0.018732250053183668, - "2024-09-17": 0.016428216677143608, - "2024-09-14": 0.017455228416080285, - "2024-09-03": 0.016081586985197426, - "2024-09-25": 0.0181472107625926, - "2024-09-18": 0.016683792224800025, - "2024-09-07": 0.015712555080993208, - "2024-09-06": 0.015751446342109295, - "2024-09-19": 0.017462252354482663, - "2024-09-30": 0.01846370192789511, - "2024-09-01": 0.01589791156507085, - "2024-08-31": 0.016494868856779706, - "2024-09-02": 0.01586578563746653, - "2024-09-23": 0.017947585136704244, - "2024-09-13": 0.017429440052292036, - "2024-10-01": 0.017912180582203476, - "2024-09-04": 0.015440050576046364, - "2024-09-28": 0.018912529574137943, - "2024-09-21": 0.018021621799999995, - "2024-09-09": 0.017354134249592215, - "2024-09-27": 0.018849405602320134, - "2024-09-27T07": 0.018771877, - "2024-09-27T05": 0.018750937500000002, - "2024-09-30T14": 0.018396503999999998, - "2024-09-27T14": 0.018966067200000002, - "2024-09-27T23": 0.0192423088, - "2024-09-28T11": 0.01900114, - "2024-09-29T00": 0.0188716983, - "2024-09-28T18": 0.0188539585, - "2024-09-29T23": 0.019042856000000004, - "2024-10-01T13": 0.0179380266, - "2024-09-30T10": 0.0183189008, - "2024-09-25T22": 0.017977303, - "2024-09-29T11": 0.018581858, - "2024-09-28T12": 0.0189617064, - "2024-09-26T09": 0.0183161528, - "2024-09-28T10": 0.0190224726, - "2024-09-27T16": 0.018961896000000002, - "2024-09-24T17": 0.0180472925, - "2024-09-27T15": 0.019004180000000002, - "2024-09-29T12": 0.018552225999999998, - "2024-09-25T04": 0.018380483350865364, - "2024-09-25T21": 0.018137279, - "2024-09-25T18": 0.018096561, - "2024-09-26T04": 0.0179347974, - "2024-09-26T05": 0.0181847249, - "2024-09-30T04": 0.0185690715, - "2024-09-27T13": 0.0187335587, - "2024-09-28T13": 0.0187816902, - "2024-09-25T08": 0.0181687281, - "2024-09-30T03": 0.0185088894, - "2024-10-01T10": 0.018447048, - "2024-09-25T13": 0.018097647, - "2024-10-01T01": 0.01795109403133142, - "2024-09-26T17": 0.0185612992, - "2024-09-25T15": 0.01818012827869704, - "2024-09-29T22": 0.019132295599999998, - "2024-09-29T01": 0.018702057, - "2024-09-30T06": 0.018800376, - "2024-09-27T12": 0.0188332011, - "2024-09-25T23": 0.0178860642, - "2024-09-30T05": 0.018700187000000004, - "2024-09-28T23": 0.018902079000000002, - "2024-09-30T19": 0.018153099199999998, - "2024-09-25T00": 0.0181894543, - "2024-10-01T12": 0.0183676119, - "2024-09-29T10": 0.018511665899999998, - "2024-09-24T22": 0.0181392744, - "2024-09-26T08": 0.01829634, - "2024-09-29T20": 0.019193070399999998, - "2024-09-25T12": 0.0180285576, - "2024-09-25T05": 0.018349082500000002, - "2024-09-27T09": 0.0189434092, - "2024-09-26T02": 0.0178553564, - "2024-09-28T05": 0.0191746008, - "2024-09-29T03": 0.0187303746, - "2024-09-26T23": 0.018602231999999996, - "2024-09-29T16": 0.018881888, - "2024-09-26T21": 0.01842457970196138, - "2024-09-26T16": 0.01860093, - "2024-09-28T03": 0.019342320799999996, - "2024-09-29T21": 0.019242886, - "2024-09-30T09": 0.0185506099547091, - "2024-09-24T16": 0.0178176834, - "2024-09-30T07": 0.018740374799999997, - "2024-09-28T17": 0.0188239522, - "2024-09-28T02": 0.019342320799999996, - "2024-09-28T15": 0.0188316947, - "2024-09-29T17": 0.0191324869, - "2024-09-25T17": 0.0180769264, - "2024-09-25T16": 0.018169091499999998, - "2024-10-01T04": 0.018239779999999997, - "2024-10-01T07": 0.0184666754, - "2024-09-30T23": 0.017695575, - "2024-09-29T13": 0.018562792846457277, - "2024-09-26T22": 0.018601488, - "2024-10-01T11": 0.0184672295, - "2024-09-30T16": 0.0182067222, - "2024-09-28T01": 0.019202303999999996, - "2024-09-27T02": 0.018582091110152466, - "2024-09-30T20": 0.0182343456, - "2024-09-28T06": 0.0190232323248921, - "2024-09-27T08": 0.018902835000000003, - "2024-10-01T06": 0.0185821922, - "2024-09-27T03": 0.0186211172, - "2024-09-25T06": 0.018148911, - "2024-10-01T02": 0.017909606399999996, - "2024-09-27T17": 0.018893778, - "2024-09-30T22": 0.0180047771, - "2024-09-29T05": 0.018670560099999997, - "2024-09-28T20": 0.018821881999999998, - "2024-09-30T13": 0.018588141, - "2024-09-26T18": 0.018441844000000002, - "2024-09-25T10": 0.018149339549666, - "2024-09-25T02": 0.0184288942, - "2024-09-29T02": 0.0187803756, - "2024-09-28T08": 0.0188833984, - "2024-09-30T17": 0.018195268, - "2024-09-30T02": 0.018680934, - "2024-09-28T09": 0.018802632, - "2024-09-25T03": 0.018459077, - "2024-09-29T15": 0.0186824284, - "2024-09-29T06": 0.0185907436, - "2024-09-24T18": 0.018006758200000004, - "2024-09-26T07": 0.0183359652, - "2024-09-26T15": 0.018440184400000004, - "2024-09-27T04": 0.0187803756, - "2024-09-27T11": 0.0187831926, - "2024-09-26T20": 0.0183829408, - "2024-09-30T12": 0.018508704299999998, - "2024-09-27T10": 0.018793382200000004, - "2024-09-26T12": 0.0182389056, - "2024-09-24T23": 0.0181389116, - "2024-09-30T00": 0.018922270399999996, - "2024-09-25T14": 0.0182079969, - "2024-09-26T14": 0.0183498165, - "2024-09-27T01": 0.0186926166, - "2024-09-28T04": 0.0193125103, - "2024-09-29T08": 0.0184125774, - "2024-09-26T01": 0.017695575, - "2024-09-27T19": 0.019052857500000003, - "2024-09-25T01": 0.0183794486, - "2024-09-26T00": 0.01779555, - "2024-09-29T18": 0.019143828, - "2024-09-28T19": 0.018821881999999998, - "2024-09-28T22": 0.018802256, - "2024-09-27T18": 0.0189217028, - "2024-09-24T21": 0.018108913400000003, - "2024-09-30T08": 0.0186707468, - "2024-09-25T11": 0.018098733000000002, - "2024-09-25T20": 0.0181274618, - "2024-10-01T09": 0.01849741, - "2024-10-01T03": 0.018117852900000002, - "2024-09-26T11": 0.0183278004, - "2024-09-28T07": 0.019033805999999997, - "2024-09-27T22": 0.019203456, - "2024-09-27T21": 0.019113057599999997, - "2024-09-26T03": 0.0179447945, - "2024-09-26T13": 0.0182796344, - "2024-09-30T18": 0.0182038086, - "2024-10-01T15": 0.017694690000000002, - "2024-10-01T08": 0.01835896837988365, - "2024-09-25T19": 0.018097466, - "2024-09-30T21": 0.01824416, - "2024-09-28T14": 0.018832329818496966, - "2024-09-27T20": 0.019073432600000002, - "2024-09-26T06": 0.018335415, - "2024-09-26T10": 0.0183768754, - "2024-09-29T04": 0.018680560399999997, - "2024-09-28T16": 0.018821881999999998, - "2024-10-01T00": 0.017742189999999998, - "2024-09-24T20": 0.0181689098, - "2024-09-26T19": 0.018511851, - "2024-09-24T15": 0.0178378592, - "2024-09-27T06": 0.0188103762, - "2024-09-29T14": 0.0186531705, - "2024-09-29T07": 0.0184112887, - "2024-09-28T00": 0.019272312399999998, - "2024-09-30T01": 0.018972276399999998, - "2024-09-29T09": 0.018551484000000003, - "2024-09-25T09": 0.0181587288, - "2024-09-30T11": 0.0184188948, - "2024-09-25T07": 0.0181192752, - "2024-09-24T19": 0.0181378232, - "2024-09-29T19": 0.0191934542, - "2024-09-30T15": 0.0183676119, - "2024-09-28T21": 0.018722059200000002, - "2024-10-01T05": 0.0181816326, - "2024-10-01T14": 0.017694690000000002, - "2024-09-27T00": 0.0187424362, - "latest": 0.0171323 - }, - "USD ripple": { - "2024-09-12": 0.5588431170413547, - "2024-09-15": 0.5868608839650761, - "2024-09-22": 0.592106436571618, - "2024-09-05": 0.5506009137516708, - "2024-09-10": 0.5379215930909195, - "2024-09-11": 0.5334857187946987, - "2024-09-20": 0.5853700528299375, - "2024-09-26": 0.5892602209633383, - "2024-09-16": 0.5716443234853928, - "2024-09-08": 0.5269170357706665, - "2024-09-24": 0.5871225294978734, - "2024-09-29": 0.6302578860315697, - "2024-09-17": 0.5864019836831967, - "2024-09-14": 0.5866120077414355, - "2024-09-03": 0.5660842428227734, - "2024-09-25": 0.5881666241786387, - "2024-09-18": 0.576392308923306, - "2024-09-07": 0.5273926366723266, - "2024-09-06": 0.5343827705315676, - "2024-09-19": 0.5865803759797694, - "2024-09-30": 0.6324948811799221, - "2024-09-01": 0.5574019230449386, - "2024-08-31": 0.566635775340776, - "2024-09-02": 0.5545262252826971, - "2024-09-23": 0.5872781712714331, - "2024-09-13": 0.5681524889091436, - "2024-10-01": 0.6196730746203629, - "2024-09-04": 0.554136967192761, - "2024-09-28": 0.6151498974163584, - "2024-09-21": 0.5861732574855822, - "2024-09-09": 0.5314627391245376, - "2024-09-27": 0.5885284816159975, - "2024-09-27T07": 0.5889970268527702, - "2024-09-27T05": 0.5891503244535626, - "2024-09-30T14": 0.6240233006361828, - "2024-09-27T14": 0.5932834437354408, - "2024-09-27T23": 0.5884278265705104, - "2024-09-28T11": 0.6179511289299009, - "2024-09-29T00": 0.6126585082468782, - "2024-09-28T18": 0.6243606795592269, - "2024-09-29T23": 0.6408681824877657, - "2024-10-01T13": 0.6195917477172779, - "2024-09-30T10": 0.6290345704725268, - "2024-09-25T22": 0.584866938095727, - "2024-09-29T11": 0.6260853377064235, - "2024-09-28T12": 0.6136211668495389, - "2024-09-26T09": 0.587150578207672, - "2024-09-28T10": 0.6125109459563147, - "2024-09-27T16": 0.5892877899921343, - "2024-09-24T17": 0.5865491319343088, - "2024-09-27T15": 0.5918158310892445, - "2024-09-29T12": 0.6253758432626203, - "2024-09-25T04": 0.5913047257599644, - "2024-09-25T21": 0.5867868849304212, - "2024-09-25T18": 0.5849145877209269, - "2024-09-26T04": 0.5821545111445081, - "2024-09-26T05": 0.5838456708446711, - "2024-09-30T04": 0.6465083650983169, - "2024-09-27T13": 0.5887222054978621, - "2024-09-28T13": 0.6187062227674271, - "2024-09-25T08": 0.5879004035220861, - "2024-09-30T03": 0.6448337749953187, - "2024-10-01T10": 0.6318429241401018, - "2024-09-25T13": 0.5892388592508583, - "2024-10-01T01": 0.6200056997330345, - "2024-09-26T17": 0.5943559656899458, - "2024-09-25T15": 0.5888659011152523, - "2024-09-29T22": 0.6413102629078459, - "2024-09-29T01": 0.6106647960117951, - "2024-09-30T06": 0.6465938733058866, - "2024-09-27T12": 0.5883137862753404, - "2024-09-25T23": 0.583421444355458, - "2024-09-30T05": 0.6475418173205885, - "2024-09-28T23": 0.6139936783815495, - "2024-09-30T19": 0.6225481850928509, - "2024-09-25T00": 0.5908593999663516, - "2024-10-01T12": 0.6288678706412485, - "2024-09-29T10": 0.628023984274687, - "2024-09-24T22": 0.5911543307304667, - "2024-09-26T08": 0.5867820617809154, - "2024-09-29T20": 0.6453859093225734, - "2024-09-25T12": 0.5903726379164794, - "2024-09-25T05": 0.5895596193010346, - "2024-09-27T09": 0.5895646655950312, - "2024-09-26T02": 0.5812313311827667, - "2024-09-28T05": 0.5884239106161927, - "2024-09-29T03": 0.6109217471670364, - "2024-09-26T23": 0.5895197811843218, - "2024-09-29T16": 0.6551104708373651, - "2024-09-26T21": 0.5906451124789242, - "2024-09-26T16": 0.5931983409011462, - "2024-09-28T03": 0.5909221815457317, - "2024-09-29T21": 0.6430307609584079, - "2024-09-30T09": 0.6489044423600724, - "2024-09-24T16": 0.5839913462955514, - "2024-09-30T07": 0.6450070147357515, - "2024-09-28T17": 0.62454863982024, - "2024-09-28T02": 0.5917457359007688, - "2024-09-28T15": 0.6185856098592234, - "2024-09-29T17": 0.6522324455475905, - "2024-09-25T17": 0.5842878676191958, - "2024-09-25T16": 0.5864788851736015, - "2024-10-01T04": 0.6215354980004266, - "2024-10-01T07": 0.6260817055006157, - "2024-09-30T23": 0.6129885648979074, - "2024-09-29T13": 0.6272309406804402, - "2024-09-26T22": 0.5917862660040464, - "2024-10-01T11": 0.6308443749862046, - "2024-09-30T16": 0.6199684295357538, - "2024-09-28T01": 0.5891992472144693, - "2024-09-27T02": 0.5852585237086201, - "2024-09-30T20": 0.6232792577498343, - "2024-09-28T06": 0.5870961860503925, - "2024-09-27T08": 0.5907717963354886, - "2024-10-01T06": 0.6212287193175642, - "2024-09-27T03": 0.5856419015464709, - "2024-09-25T06": 0.5865389417194891, - "2024-10-01T02": 0.6203703259786553, - "2024-09-27T17": 0.5883108698781678, - "2024-09-30T22": 0.6203285125934012, - "2024-09-29T05": 0.6145094512469649, - "2024-09-28T20": 0.6209851795356247, - "2024-09-30T13": 0.6314383944457885, - "2024-09-26T18": 0.5920969670407713, - "2024-09-25T10": 0.5879678326992115, - "2024-09-25T02": 0.5931490841938909, - "2024-09-29T02": 0.6112767025439788, - "2024-09-28T08": 0.604623128224648, - "2024-09-30T17": 0.6193309813899162, - "2024-09-30T02": 0.6424841808433168, - "2024-09-28T09": 0.6033426140876704, - "2024-09-25T03": 0.5922707088766023, - "2024-09-29T15": 0.649494431077303, - "2024-09-29T06": 0.6243560367139301, - "2024-09-24T18": 0.5875445245649151, - "2024-09-26T07": 0.5854738421731264, - "2024-09-26T15": 0.592118101975015, - "2024-09-27T04": 0.5878733317831217, - "2024-09-27T11": 0.5869836830690026, - "2024-09-26T20": 0.5903346574550917, - "2024-09-30T12": 0.6305539449434211, - "2024-09-27T10": 0.5865916493305564, - "2024-09-26T12": 0.5892957097687528, - "2024-09-24T23": 0.5914797630650727, - "2024-09-30T00": 0.6416572073325187, - "2024-09-25T14": 0.5907011672420261, - "2024-09-26T14": 0.5908603862825607, - "2024-09-27T01": 0.588321862147536, - "2024-09-28T04": 0.5903389713803274, - "2024-09-29T08": 0.624185269379028, - "2024-09-26T01": 0.5780086968446146, - "2024-09-27T19": 0.5878425443410319, - "2024-09-25T01": 0.5930554597777915, - "2024-09-26T00": 0.5813363103036823, - "2024-09-29T18": 0.6530984300589137, - "2024-09-28T19": 0.6224347196572563, - "2024-09-28T22": 0.6167810752105714, - "2024-09-27T18": 0.5873053133646218, - "2024-09-24T21": 0.5895935705295198, - "2024-09-30T08": 0.6481827683939241, - "2024-09-25T11": 0.5882509730155859, - "2024-09-25T20": 0.5859860037000579, - "2024-10-01T09": 0.629163798057816, - "2024-10-01T03": 0.6233988149421854, - "2024-09-26T11": 0.5897325314857049, - "2024-09-28T07": 0.6028769908422992, - "2024-09-27T22": 0.5878823689564687, - "2024-09-27T21": 0.586715847878797, - "2024-09-26T03": 0.5821896656810454, - "2024-09-26T13": 0.5891969018811681, - "2024-09-30T18": 0.6194549356809138, - "2024-10-01T08": 0.6273368988845911, - "2024-09-25T19": 0.5858183105782049, - "2024-09-30T21": 0.623658478162902, - "2024-09-28T14": 0.6217480134372605, - "2024-09-27T20": 0.5863232796669057, - "2024-09-26T06": 0.5845583225436487, - "2024-09-26T10": 0.5897846058240236, - "2024-09-29T04": 0.6131668067474301, - "2024-09-28T16": 0.6216107114909185, - "2024-10-01T00": 0.6155890232668264, - "2024-09-24T20": 0.589914918740241, - "2024-09-26T19": 0.5935047126144541, - "2024-09-24T15": 0.5844931125205016, - "2024-09-27T06": 0.5904358862903129, - "2024-09-29T14": 0.6364837408502301, - "2024-09-29T07": 0.6282916803836511, - "2024-09-28T00": 0.5889154519004053, - "2024-09-30T01": 0.6460558753047165, - "2024-09-29T09": 0.626641669014347, - "2024-09-25T09": 0.588678813404418, - "2024-09-30T11": 0.629540943127814, - "2024-09-25T07": 0.5868500560808064, - "2024-09-24T19": 0.5891782535472798, - "2024-09-29T19": 0.6531913172168587, - "2024-09-30T15": 0.6213313762250293, - "2024-09-28T21": 0.6160273025494277, - "2024-10-01T05": 0.6200510051369953, - "2024-10-01T14": 0.6191193370712129, - "2024-09-27T00": 0.5897939655582134, - "latest": 0.598225, - "2024-10-01T15": 0.6094152654000206 - }, - "USD solana": { - "2024-09-12": 134.96377073806008, - "2024-09-15": 135.58188843247737, - "2024-09-22": 144.92284485894288, - "2024-09-05": 132.1590621546563, - "2024-09-10": 134.8017904890431, - "2024-09-11": 132.05030703689087, - "2024-09-20": 147.75453476054832, - "2024-09-26": 152.87622242601958, - "2024-09-16": 130.9778609094536, - "2024-09-08": 128.77768182213256, - "2024-09-24": 146.80259939112275, - "2024-09-29": 157.3405605242065, - "2024-09-17": 132.30395406906078, - "2024-09-14": 137.34070751137654, - "2024-09-03": 133.61012999888104, - "2024-09-25": 150.44645613859134, - "2024-09-18": 130.64945236833685, - "2024-09-07": 127.20891908768483, - "2024-09-06": 128.491389389357, - "2024-09-19": 139.67588250398813, - "2024-09-30": 156.04497680757146, - "2024-09-01": 132.38732803375376, - "2024-08-31": 136.8050010588501, - "2024-09-02": 131.5996410286171, - "2024-09-23": 144.16308936631262, - "2024-09-13": 134.82211843131316, - "2024-10-01": 154.92200773157265, - "2024-09-04": 129.53060496132946, - "2024-09-28": 156.9520901092524, - "2024-09-21": 147.41021025982818, - "2024-09-09": 129.91070940935592, - "2024-09-27": 157.67487261186542, - "2024-09-27T07": 157.66444490853334, - "2024-09-27T05": 156.65112053654195, - "2024-09-30T14": 156.57401743779423, - "2024-09-27T14": 160.0504492800966, - "2024-09-27T23": 157.75400286886486, - "2024-09-28T11": 157.08567192584732, - "2024-09-29T00": 156.9669214402308, - "2024-09-28T18": 156.89944275471052, - "2024-09-29T23": 158.58776504476458, - "2024-10-01T13": 153.74634403795855, - "2024-09-30T10": 154.13998265690208, - "2024-09-25T22": 149.04059167394917, - "2024-09-29T11": 156.5272898347079, - "2024-09-28T12": 156.90162106459553, - "2024-09-26T09": 150.85951625064547, - "2024-09-28T10": 157.10819576700115, - "2024-09-27T16": 159.0767602410879, - "2024-09-24T17": 147.7001951252946, - "2024-09-27T15": 160.43847454139933, - "2024-09-29T12": 156.90160837282698, - "2024-09-25T04": 151.36209512545582, - "2024-09-25T21": 149.99566234357977, - "2024-09-25T18": 149.96082899012308, - "2024-09-26T04": 149.04376087529994, - "2024-09-26T05": 149.76501005917078, - "2024-09-30T04": 155.87670040226425, - "2024-09-27T13": 156.7571093485408, - "2024-09-28T13": 156.75263478223184, - "2024-09-25T08": 150.10530448317152, - "2024-09-30T03": 156.16644150086015, - "2024-10-01T10": 156.94886405663584, - "2024-09-25T13": 150.0502869870462, - "2024-10-01T01": 154.36064727392005, - "2024-09-26T17": 156.7330616949531, - "2024-09-25T15": 151.59280057669042, - "2024-09-29T22": 159.8799967049765, - "2024-09-29T01": 157.32327468355945, - "2024-09-30T06": 157.02359045096773, - "2024-09-27T12": 156.67993700573948, - "2024-09-25T23": 147.85800301457624, - "2024-09-30T05": 156.5572167093243, - "2024-09-28T23": 156.48974520227, - "2024-09-30T19": 154.71775333586842, - "2024-09-25T00": 152.43332677752127, - "2024-10-01T12": 156.33887572144968, - "2024-09-29T10": 155.8169883892941, - "2024-09-24T22": 151.03423193186663, - "2024-09-26T08": 151.39983772041077, - "2024-09-29T20": 160.01050004729765, - "2024-09-25T12": 150.1107897355353, - "2024-09-25T05": 150.8874807557441, - "2024-09-27T09": 158.24537838499833, - "2024-09-26T02": 148.71985250054462, - "2024-09-28T05": 158.15553752033236, - "2024-09-29T03": 157.5248003380529, - "2024-09-26T23": 155.20665471871553, - "2024-09-29T16": 157.13760910868194, - "2024-09-26T21": 155.3007789714625, - "2024-09-26T16": 157.35829302980025, - "2024-09-28T03": 158.58964290461927, - "2024-09-29T21": 160.62460376587765, - "2024-09-30T09": 155.8137042746989, - "2024-09-24T16": 145.858833600634, - "2024-09-30T07": 157.17440710228337, - "2024-09-28T17": 156.88612159413435, - "2024-09-28T02": 158.84436097496663, - "2024-09-28T15": 157.2189927462809, - "2024-09-29T17": 157.80684459509715, - "2024-09-25T17": 149.88747671295235, - "2024-09-25T16": 151.13829703702967, - "2024-10-01T04": 155.15222220027476, - "2024-10-01T07": 156.54584648185167, - "2024-09-30T23": 152.64939829774525, - "2024-09-29T13": 156.96995027543025, - "2024-09-26T22": 155.926406603704, - "2024-10-01T11": 156.80056894729958, - "2024-09-30T16": 154.66612689382677, - "2024-09-28T01": 158.15323143092104, - "2024-09-27T02": 154.36216324554175, - "2024-09-30T20": 156.22848471663053, - "2024-09-28T06": 157.16106980344995, - "2024-09-27T08": 158.48271109667883, - "2024-10-01T06": 156.30447486942987, - "2024-09-27T03": 154.7859067820036, - "2024-09-25T06": 150.0111284056329, - "2024-10-01T02": 153.5293728150643, - "2024-09-27T17": 157.6798192560396, - "2024-09-30T22": 155.1713084608053, - "2024-09-29T05": 157.3213879944482, - "2024-09-28T20": 156.87132843981956, - "2024-09-30T13": 156.95296530571727, - "2024-09-26T18": 156.07243684722584, - "2024-09-25T10": 150.1101254089424, - "2024-09-25T02": 152.09184200846937, - "2024-09-29T02": 158.02800548893188, - "2024-09-28T08": 155.76713861275203, - "2024-09-30T17": 154.93908472475837, - "2024-09-30T02": 157.06124429395774, - "2024-09-28T09": 156.08505026237822, - "2024-09-25T03": 151.51788807017562, - "2024-09-29T15": 157.0986220011079, - "2024-09-29T06": 155.90891313355652, - "2024-09-24T18": 147.17023369228892, - "2024-09-26T07": 150.92369434502143, - "2024-09-26T15": 156.5614219905618, - "2024-09-27T04": 156.36783946953312, - "2024-09-27T11": 156.09781699315667, - "2024-09-26T20": 155.17183162597337, - "2024-09-30T12": 155.84755465142035, - "2024-09-27T10": 156.77754165658547, - "2024-09-26T12": 152.77569931089235, - "2024-09-24T23": 153.02562581972282, - "2024-09-30T00": 158.15391388261682, - "2024-09-25T14": 151.13830541827656, - "2024-09-26T14": 154.1512875729568, - "2024-09-27T01": 155.33608323303844, - "2024-09-28T04": 158.50702719410728, - "2024-09-29T08": 155.6977881097728, - "2024-09-26T01": 147.53278069046107, - "2024-09-27T19": 157.854596167273, - "2024-09-25T01": 152.5636308741823, - "2024-09-26T00": 147.86207079949403, - "2024-09-29T18": 157.99777146466081, - "2024-09-28T19": 156.84932559662937, - "2024-09-28T22": 156.74591477949676, - "2024-09-27T18": 157.58523120047175, - "2024-09-24T21": 148.54332508999255, - "2024-09-30T08": 156.33522035066682, - "2024-09-25T11": 150.3731198130219, - "2024-09-25T20": 150.45242510993148, - "2024-10-01T09": 156.86078058022918, - "2024-10-01T03": 154.56725744271696, - "2024-09-26T11": 152.77531021370802, - "2024-09-28T07": 156.6088233589737, - "2024-09-27T22": 158.10132122244386, - "2024-09-27T21": 157.9037106912636, - "2024-09-26T03": 149.214760198964, - "2024-09-26T13": 152.06379244160362, - "2024-09-30T18": 154.6857494140952, - "2024-10-01T08": 156.4005261772849, - "2024-09-25T19": 150.45977976032873, - "2024-09-30T21": 156.4051744030804, - "2024-09-28T14": 157.72554636468848, - "2024-09-27T20": 157.8168833504834, - "2024-09-26T06": 150.66379687692014, - "2024-09-26T10": 152.15947432337512, - "2024-09-29T04": 157.21697045123443, - "2024-09-28T16": 156.9199339933527, - "2024-10-01T00": 152.70030548664064, - "2024-09-24T20": 148.67299092717244, - "2024-09-26T19": 156.20896510387024, - "2024-09-24T15": 145.62766559473332, - "2024-09-27T06": 158.0723049020243, - "2024-09-29T14": 157.17748367392855, - "2024-09-29T07": 155.51131499782375, - "2024-09-28T00": 157.9884924882844, - "2024-09-30T01": 158.52764894805188, - "2024-09-29T09": 156.40449386880124, - "2024-09-25T09": 149.98677159334565, - "2024-09-30T11": 154.82400759201718, - "2024-09-25T07": 149.65840089783447, - "2024-09-24T19": 147.20656176575517, - "2024-09-29T19": 158.7132152068218, - "2024-09-30T15": 156.0187934429057, - "2024-09-28T21": 156.39312659756158, - "2024-10-01T05": 155.31236694551822, - "2024-10-01T14": 153.76596479102588, - "2024-09-27T00": 155.84333432206128, - "latest": 147.46, - "2024-10-01T15": 151.18216821868756, - "2023-10-23": 29.879746070869103, - "2024-02-23": 101.64291215841217, - "2024-04-05": 175.10670138642723, - "2023-12-19": 74.66528740821448, - "2024-05-17": 167.9519381847823, - "2023-12-02": 62.04968334980835, - "2024-06-11": 153.21436153597122, - "2024-04-26": 143.34202556837585, - "2024-01-08": 93.33527592861115, - "2023-10-31": 36.191599455594286, - "2023-10-01": 22.860671009273467, - "2024-03-07": 141.33784892504994, - "2023-10-12": 21.344947328564643, - "2024-04-22": 153.86800880553358, - "2024-06-24": 127.14015966071814, - "2023-12-05": 60.50526731741026, - "2024-02-19": 112.35571494683266, - "2024-07-31": 180.60113229518754, - "2024-08-11": 150.5837035984004, - "2024-01-07": 94.35175997156664, - "2024-04-28": 142.38167526916928, - "2023-10-18": 23.853457015489678, - "2023-10-07": 23.510894175103203, - "2024-06-28": 144.22095901988305, - "2024-05-19": 171.02823066161318, - "2024-05-12": 145.1313337929807, - "2024-08-24": 157.96546938494143, - "2024-03-09": 146.3573355413762, - "2024-08-02": 160.87907862283578, - "2024-04-29": 135.57480502984293, - "2024-04-25": 146.46092487636045, - "2024-06-12": 153.8290064293191, - "2024-05-30": 167.9780323282347, - "2024-06-05": 173.2186590524532, - "2024-08-21": 142.26287391445175, - "2024-03-22": 173.3654393897946, - "2023-11-18": 57.27602991211688, - "2024-07-30": 180.88542132452105, - "2023-12-07": 64.14257656645725, - "2024-06-30": 141.2399075092633, - "2024-06-20": 134.8204874617509, - "2024-07-08": 137.58007638882842, - "2024-07-07": 138.97661513469637, - "2024-03-26": 191.5807609942654, - "2024-05-14": 145.9676628896916, - "2024-06-16": 145.459003329103, - "2024-02-22": 104.24655809127876, - "2024-04-15": 147.8964607217989, - "2023-12-30": 103.42521695978837, - "2024-04-17": 135.3651338277658, - "2024-02-12": 107.67846444810004, - "2023-10-26": 32.193720938185116, - "2024-01-03": 99.70418917022963, - "2024-05-07": 154.65542087995604, - "2024-01-22": 87.4577433516582, - "2024-08-16": 141.0158834793979, - "2024-07-13": 139.72368678681542, - "2023-12-24": 113.07106375552202, - "2023-10-03": 23.9158921090279, - "2024-05-26": 163.9232201563034, - "2024-04-30": 128.8707173345529, - "2024-08-22": 143.02169992997105, - "2024-07-09": 141.32558690457228, - "2024-01-16": 96.75096638862036, - "2023-10-17": 24.05407140194171, - "2024-04-24": 156.15324769173122, - "2024-03-18": 202.04070897169518, - "2024-02-17": 109.12793965884981, - "2023-12-27": 110.01315953902689, - "2024-08-01": 167.87131993398756, - "2024-02-24": 102.19768460420161, - "2024-01-06": 95.04627553722617, - "2024-03-20": 173.3117326502187, - "2023-11-21": 55.399842692967944, - "2023-12-25": 114.85471604633909, - "2024-03-01": 132.93486909650517, - "2023-10-02": 24.004338627884735, - "2024-03-27": 186.1622281829703, - "2024-05-13": 145.5923584232473, - "2024-05-06": 152.81883506269745, - "2024-06-19": 138.07132371250657, - "2024-02-09": 105.28685790136916, - "2023-10-06": 23.249706885184462, - "2023-10-13": 21.451705156087097, - "2024-02-05": 96.08055472163565, - "2023-12-10": 73.02323317766664, - "2023-11-23": 57.69103216313879, - "2024-01-13": 92.46092427164828, - "2024-03-28": 186.30287425956496, - "2023-10-09": 22.28313377961463, - "2024-01-09": 100.16206103602677, - "2024-05-10": 152.3503801574188, - "2024-08-06": 141.008429087249, - "2023-11-05": 41.504583619908445, - "2024-08-25": 158.8386619481629, - "2024-04-18": 135.23740057906338, - "2023-10-22": 28.844261192688, - "2024-08-27": 154.64149576482137, - "2023-11-01": 40.43238666735443, - "2024-05-20": 178.04265918181963, - "2023-12-08": 72.15666058821625, - "2024-04-12": 167.11081408997327, - "2024-03-12": 149.98286906459515, - "2024-07-02": 148.87457753536492, - "2024-08-19": 143.02137769753645, - "2024-07-20": 170.00120311213877, - "2024-02-04": 97.26311096156947, - "2024-01-28": 96.32130538580829, - "2024-03-03": 129.70275948815356, - "2024-01-26": 91.28356545142186, - "2023-11-07": 41.61537420877233, - "2023-11-25": 58.661057898398305, - "2024-06-29": 141.64900081042543, - "2024-02-28": 111.7522089297422, - "2024-07-21": 174.30663001117313, - "2023-12-01": 60.52224227892606, - "2024-08-07": 148.96709876641833, - "2024-02-25": 103.13007441842072, - "2023-12-21": 87.09492088597884, - "2024-08-30": 138.27455194197535, - "2024-06-01": 166.91558496394953, - "2024-03-06": 129.7066175246686, - "2024-07-15": 152.82719095318745, - "2023-09-30": 21.03021983555983, - "2023-12-12": 70.51305148492436, - "2023-10-04": 23.120581312175634, - "2024-02-13": 113.35546825173567, - "2024-04-16": 133.90028127132922, - "2024-03-02": 129.08215112095445, - "2024-06-02": 164.98063450128566, - "2023-10-08": 23.370671887556053, - "2023-11-20": 59.65768097299825, - "2023-12-20": 78.66522414223984, - "2023-12-31": 103.29102292711484, - "2023-11-06": 40.35418703097928, - "2024-08-03": 149.95206028092613, - "2024-05-29": 169.12993706766895, - "2024-03-17": 190.61269323338047, - "2024-07-23": 175.43000481529808, - "2024-07-10": 141.7637203517348, - "2024-07-01": 147.47683934383747, - "2024-04-01": 195.96267041406907, - "2024-05-21": 180.72600518109712, - "2024-01-19": 93.27167199127055, - "2023-11-11": 57.0584535835252, - "2024-07-18": 158.50415635266378, - "2023-11-19": 60.14543140632104, - "2024-08-08": 155.46553104624877, - "2024-01-25": 87.43460196075365, - "2024-03-13": 153.4463046866378, - "2024-02-01": 95.65619579147595, - "2024-08-17": 139.81717054648763, - "2024-03-16": 188.6273981520976, - "2024-06-23": 133.440401195104, - "2023-11-27": 54.99012000597197, - "2024-01-10": 97.26137604941523, - "2024-01-21": 92.42527793392941, - "2024-03-15": 178.69436264950824, - "2024-06-03": 165.0651814449767, - "2024-01-02": 111.43844743507174, - "2024-07-14": 145.10964434939723, - "2023-10-25": 32.19116241272951, - "2024-01-01": 104.59202871931976, - "2024-07-29": 189.0639568748908, - "2024-07-27": 184.16239059682584, - "2024-02-14": 115.74909988189972, - "2024-07-28": 184.447944328903, - "2024-04-03": 187.80425339102408, - "2024-06-15": 144.4427367904371, - "2023-11-28": 55.90537160653003, - "2023-12-03": 63.49660841632766, - "2024-07-11": 140.80362460352, - "2024-04-11": 173.06654549568822, - "2023-10-20": 26.777469075013293, - "2023-10-10": 22.111794725058058, - "2024-05-03": 141.07056310367605, - "2024-03-08": 146.15650225572418, - "2024-01-14": 97.15921213158008, - "2023-12-15": 75.90867949953598, - "2023-10-19": 24.234388058515396, - "2024-02-08": 102.11248942325243, - "2023-11-12": 57.7654073331353, - "2023-12-22": 95.39887310560604, - "2024-06-21": 132.36263580204533, - "2024-03-23": 175.20408872017333, - "2024-03-04": 130.51607547421546, - "2024-04-13": 147.4797586151578, - "2024-02-29": 128.4924401564808, - "2023-11-08": 43.19703003075047, - "2024-07-19": 164.41713918369447, - "2024-08-10": 154.49373589020078, - "2023-12-29": 105.85404965400224, - "2023-12-04": 61.73127849851598, - "2024-04-10": 170.8716778479497, - "2024-05-08": 146.37329067663728, - "2024-08-04": 141.54095053233974, - "2024-04-21": 150.0584485735712, - "2023-10-11": 22.07988132293472, - "2024-05-05": 145.73213216717167, - "2024-03-21": 188.5600477182979, - "2024-05-23": 175.46858970177854, - "2024-04-08": 180.57840269301718, - "2024-05-18": 172.7906230306305, - "2024-06-10": 159.83148373965724, - "2023-10-05": 23.068663546163158, - "2023-10-16": 23.238960219558315, - "2024-05-22": 179.02626846052198, - "2024-02-10": 108.95041440799562, - "2024-04-07": 180.19460788856702, - "2024-02-20": 109.06083578195695, - "2023-11-17": 58.19678226606033, - "2023-12-11": 69.44522478933557, - "2023-11-26": 57.85210464968245, - "2023-10-27": 32.35797351834887, - "2024-01-27": 92.61619043418467, - "2024-03-30": 196.12666725990917, - "2023-11-22": 54.88258076759454, - "2024-06-04": 166.3375872094106, - "2023-11-16": 63.72953931867354, - "2024-02-02": 99.67150661020587, - "2024-06-26": 136.96527197332048, - "2024-01-18": 98.58333062140058, - "2024-02-15": 115.67262610089068, - "2024-08-09": 156.11138512137575, - "2023-10-28": 31.948485999607296, - "2024-03-24": 175.6230715715617, - "2024-07-17": 160.72787219588676, - "2024-04-27": 137.19367613444842, - "2023-12-06": 63.38637961928273, - "2024-01-30": 104.0050954283894, - "2023-11-14": 54.586918599957535, - "2024-07-22": 180.05165510740602, - "2024-06-06": 172.55699055110225, - "2024-07-04": 134.51047963755633, - "2024-08-28": 145.54853693471313, - "2024-05-15": 150.90589314054284, - "2023-11-10": 50.39108169580409, - "2024-01-23": 81.75608990737472, - "2024-01-31": 100.15143609458943, - "2024-05-11": 145.29885530319825, - "2024-01-11": 100.5826545611854, - "2024-02-18": 111.64498630264424, - "2024-07-12": 136.69258017571224, - "2024-03-11": 147.24559769792734, - "2023-10-30": 34.77974186900726, - "2023-12-17": 72.97598433590638, - "2024-02-26": 103.92813361677793, - "2024-06-17": 144.10934373324275, - "2024-01-05": 100.44762338613585, - "2024-06-14": 146.9278245955733, - "2024-06-13": 150.3795349579858, - "2024-03-14": 168.25921374823025, - "2024-02-21": 103.73159129587592, - "2023-12-13": 66.86205405957634, - "2024-02-27": 110.14029709298899, - "2024-08-29": 144.24200695969986, - "2024-03-31": 196.5401384602085, - "2023-12-09": 74.7174374863229, - "2024-04-02": 182.926950596747, - "2024-02-06": 95.59244586605303, - "2024-05-31": 166.4582088030258, - "2024-04-09": 175.3814815392858, - "2024-05-25": 168.26852943111953, - "2023-11-04": 41.55767739226187, - "2024-04-20": 143.42101733324964, - "2024-01-15": 95.33053306341411, - "2023-12-28": 102.95197040087557, - "2024-06-09": 159.63335940700577, - "2024-02-07": 96.46907459433297, - "2024-03-19": 181.7487540376293, - "2024-03-10": 145.419909938474, - "2024-05-02": 136.28503457711096, - "2024-07-24": 177.56079559758552, - "2024-01-12": 97.89325490923196, - "2024-04-19": 143.69859359839694, - "2023-11-29": 59.605265610888836, - "2023-10-15": 21.906462342927494, - "2024-05-28": 168.44098421236444, - "2024-01-24": 86.30839070865274, - "2024-02-11": 109.04899282374669, - "2024-06-08": 160.70595168474244, - "2023-11-30": 59.806140999570644, - "2024-05-24": 167.30125178037642, - "2023-11-15": 61.86351311195825, - "2023-12-16": 74.13210691327559, - "2024-08-26": 158.9086491059006, - "2024-04-04": 185.51657977107382, - "2024-08-23": 145.2629491819404, - "2023-11-03": 39.058818282317546, - "2024-07-26": 178.8064043299791, - "2024-01-20": 92.150272810291, - "2024-08-05": 126.78081381999534, - "2024-08-13": 146.2285574162972, - "2024-03-29": 186.93780817814135, - "2024-06-25": 136.98773315742696, - "2024-08-18": 144.4796426191287, - "2023-10-21": 28.960732576229248, - "2024-01-04": 100.94630688632397, - "2024-08-20": 145.50081588641916, - "2023-11-13": 56.945125465768804, - "2023-10-24": 31.4229730324428, - "2023-11-24": 57.439843083978104, - "2024-07-25": 170.45816241429048, - "2024-07-16": 157.61957500139138, - "2024-05-16": 161.2147827052279, - "2024-01-29": 97.4693771608052, - "2024-07-03": 143.56959077565654, - "2024-05-04": 145.990026773785, - "2024-05-27": 167.43272608396268, - "2023-11-02": 41.95110867376813, - "2023-12-18": 70.04218593964492, - "2024-07-05": 128.23833708467987, - "2024-03-25": 189.0928265254814, - "2023-10-29": 32.356608449674006, - "2024-06-18": 136.13173010293906, - "2024-05-01": 124.8858309259435, - "2024-02-16": 111.56875107753797, - "2024-06-22": 134.29683408877924, - "2024-08-12": 145.12992493170827, - "2024-07-06": 139.07188345561624, - "2024-03-05": 131.29712171383602, - "2024-04-06": 177.04839565029062, - "2023-12-23": 96.41124815222368, - "2023-12-14": 72.30186225823043, - "2024-02-03": 98.53895405300015, - "2024-06-27": 147.10050811632738, - "2024-08-14": 145.44454580566648, - "2024-06-07": 169.93090560287447, - "2024-04-14": 140.46759975784246, - "2023-12-26": 113.4258813308874, - "2023-11-09": 44.93858230098137, - "2023-10-14": 22.001340693213855, - "2024-05-09": 144.36239279351378, - "2024-01-17": 100.05061396256342, - "2024-08-15": 143.25263007943883, - "2024-04-23": 156.36685483544818 - }, - "USD stacks": { - "2024-09-12": 1.6304142458933983, - "2024-09-15": 1.5952392500000003, - "2024-09-22": 1.7000393826281972, - "2024-09-05": 1.4305323830169268, - "2024-09-10": 1.5588426867299325, - "2024-09-11": 1.5685572592257404, - "2024-09-20": 1.7536525605032636, - "2024-09-26": 1.9960045701032063, - "2024-09-16": 1.5044062780187315, - "2024-09-08": 1.4042102607587004, - "2024-09-24": 1.9303621389686694, - "2024-09-29": 1.9376132001163349, - "2024-09-17": 1.5248999660143912, - "2024-09-14": 1.6103131938181519, - "2024-09-03": 1.504818862417341, - "2024-09-25": 1.947817337909959, - "2024-09-18": 1.5189151667902039, - "2024-09-07": 1.3958197070970315, - "2024-09-06": 1.3797460360826166, - "2024-09-19": 1.6912055324840103, - "2024-09-30": 1.8812357171327452, - "2024-09-01": 1.4743016430602196, - "2024-08-31": 1.539231421797105, - "2024-09-02": 1.4598127818306337, - "2024-09-23": 1.8105600855070554, - "2024-09-13": 1.6206958768923339, - "2024-10-01": 1.8754975554617026, - "2024-09-04": 1.4289301064484492, - "2024-09-28": 1.9496086132907053, - "2024-09-21": 1.747957547418703, - "2024-09-09": 1.4512659556563157, - "2024-09-27": 2.009407128375647, - "2024-09-27T07": 2.0114619256204023, - "2024-09-27T05": 2.0194461162899, - "2024-09-30T14": 1.878067699207535, - "2024-09-27T14": 2.019838789786481, - "2024-09-27T23": 2.000869170516136, - "2024-09-28T11": 1.9610315604413422, - "2024-09-29T00": 1.9678256845744981, - "2024-09-28T18": 1.9404780080070667, - "2024-09-29T23": 1.9640532972903433, - "2024-10-01T13": 1.8987761186008183, - "2024-09-30T10": 1.8637165813429324, - "2024-09-25T22": 1.8969919319681319, - "2024-09-29T11": 1.9295591514950596, - "2024-09-28T12": 1.9523512091362993, - "2024-09-26T09": 1.966045828288289, - "2024-09-28T10": 1.9527572732602194, - "2024-09-27T16": 2.0085526206278757, - "2024-09-24T17": 1.9218397169085115, - "2024-09-27T15": 2.0293426370228675, - "2024-09-29T12": 1.942616454086033, - "2024-09-25T04": 2.032978710921245, - "2024-09-25T21": 1.9077062708956514, - "2024-09-25T18": 1.9180178799799614, - "2024-09-26T04": 1.9211887785616455, - "2024-09-26T05": 1.9459360722539762, - "2024-09-30T04": 1.9362251392785839, - "2024-09-27T13": 2.0062018168697264, - "2024-09-28T13": 1.9458297731553633, - "2024-09-25T08": 1.951081098156092, - "2024-09-30T03": 1.918445052442293, - "2024-10-01T10": 1.915849272511023, - "2024-09-25T13": 1.9350446880096783, - "2024-10-01T01": 1.874657747736254, - "2024-09-26T17": 2.0623421461590414, - "2024-09-25T15": 1.953455726111475, - "2024-09-29T22": 1.9909072977676916, - "2024-09-29T01": 1.9364094046737643, - "2024-09-30T06": 1.9375195478189982, - "2024-09-27T12": 1.9804076275304, - "2024-09-25T23": 1.8883971492517044, - "2024-09-30T05": 1.9303910394124595, - "2024-09-28T23": 1.9525350869320302, - "2024-09-30T19": 1.8627043033035178, - "2024-09-25T00": 1.9668348676072385, - "2024-10-01T12": 1.9198633673996226, - "2024-09-29T10": 1.9207463540065928, - "2024-09-24T22": 1.9508682407241333, - "2024-09-26T08": 1.9941746924088124, - "2024-09-29T20": 1.9749676511848107, - "2024-09-25T12": 1.938481309067772, - "2024-09-25T05": 2.0061132214660087, - "2024-09-27T09": 2.0262441128795503, - "2024-09-26T02": 1.8898308583865358, - "2024-09-28T05": 1.9932578301904766, - "2024-09-29T03": 1.9470394981714958, - "2024-09-26T23": 2.0102621131131775, - "2024-09-29T16": 1.93249190433387, - "2024-09-26T21": 1.9889520241028427, - "2024-09-26T16": 2.0567116997977264, - "2024-09-28T03": 2.0183369704978382, - "2024-09-29T21": 1.971832875367494, - "2024-09-30T09": 1.9187987447610224, - "2024-09-24T16": 1.9368165743180006, - "2024-09-30T07": 1.924867538095063, - "2024-09-28T17": 1.9322476476418229, - "2024-09-28T02": 2.0016326850934147, - "2024-09-28T15": 1.9436120783179551, - "2024-09-29T17": 1.9436111557881286, - "2024-09-25T17": 1.93506336611216, - "2024-09-25T16": 1.9398937575793234, - "2024-10-01T04": 1.896088374748253, - "2024-10-01T07": 1.92743236954859, - "2024-09-30T23": 1.857684308529032, - "2024-09-29T13": 1.919180401112873, - "2024-09-26T22": 2.009155283493786, - "2024-10-01T11": 1.921441645681491, - "2024-09-30T16": 1.8549474754288957, - "2024-09-28T01": 2.0020328600108313, - "2024-09-27T02": 2.018048456385448, - "2024-09-30T20": 1.8687672855576962, - "2024-09-28T06": 1.9857239094198609, - "2024-09-27T08": 2.015064869498426, - "2024-10-01T06": 1.8955937917001628, - "2024-09-27T03": 2.006089838487515, - "2024-09-25T06": 1.9767540507081183, - "2024-10-01T02": 1.8843271496633482, - "2024-09-27T17": 2.0256662671452745, - "2024-09-30T22": 1.8737874241928978, - "2024-09-29T05": 1.9389225202423943, - "2024-09-28T20": 1.9483470321929361, - "2024-09-30T13": 1.8867580320500235, - "2024-09-26T18": 2.0427222490170984, - "2024-09-25T10": 1.944931512604234, - "2024-09-25T02": 1.9895385108511867, - "2024-09-29T02": 1.9512223613224808, - "2024-09-28T08": 1.9493050243192656, - "2024-09-30T17": 1.858070896921391, - "2024-09-30T02": 1.9370292852476023, - "2024-09-28T09": 1.939998811878269, - "2024-09-25T03": 2.0265270628622356, - "2024-09-29T15": 1.9279217423589023, - "2024-09-29T06": 1.926008891721597, - "2024-09-24T18": 1.9339579322406344, - "2024-09-26T07": 1.9779649245663413, - "2024-09-26T15": 1.9992021021479935, - "2024-09-27T04": 2.0225618028655363, - "2024-09-27T11": 1.9738035043039686, - "2024-09-26T20": 2.0077686705901487, - "2024-09-30T12": 1.8764208094723844, - "2024-09-27T10": 2.016347957119505, - "2024-09-26T12": 2.0081863734773124, - "2024-09-24T23": 1.9776143280410872, - "2024-09-30T00": 1.9636293776087963, - "2024-09-25T14": 1.940465170108691, - "2024-09-26T14": 1.9946115484578915, - "2024-09-27T01": 2.02989768200964, - "2024-09-28T04": 1.9926898928535546, - "2024-09-29T08": 1.909186758849985, - "2024-09-26T01": 1.86011905370869, - "2024-09-27T19": 2.020351486867167, - "2024-09-25T01": 1.9663049750468462, - "2024-09-26T00": 1.876090549852075, - "2024-09-29T18": 1.9531335181259033, - "2024-09-28T19": 1.9490813821963047, - "2024-09-28T22": 1.9435903939759727, - "2024-09-27T18": 1.9960869039891307, - "2024-09-24T21": 1.9505038088265036, - "2024-09-30T08": 1.9419202772965212, - "2024-09-25T11": 1.9498949435895108, - "2024-09-25T20": 1.905327259490232, - "2024-10-01T09": 1.9198819512494423, - "2024-10-01T03": 1.887519702743039, - "2024-09-26T11": 2.0048595247753167, - "2024-09-28T07": 1.9848695890903152, - "2024-09-27T22": 1.9980881779193607, - "2024-09-27T21": 1.997619742862293, - "2024-09-26T03": 1.902936445070033, - "2024-09-26T13": 2.0153235848459867, - "2024-09-30T18": 1.8732745999900422, - "2024-10-01T15": 1.7928364020732632, - "2024-10-01T08": 1.9257933263349514, - "2024-09-25T19": 1.9258351935422209, - "2024-09-30T21": 1.8763367720916941, - "2024-09-28T14": 1.944516601657347, - "2024-09-27T20": 1.996307378227381, - "2024-09-26T06": 1.9767519247272316, - "2024-09-26T10": 1.9762493466037128, - "2024-09-29T04": 1.945970161833149, - "2024-09-28T16": 1.9349215805654032, - "2024-10-01T00": 1.8406613946499462, - "2024-09-24T20": 1.9609011622420445, - "2024-09-26T19": 2.03225359293702, - "2024-09-24T15": 1.9217324319624378, - "2024-09-27T06": 2.028817373693334, - "2024-09-29T14": 1.9395763761685356, - "2024-09-29T07": 1.9147874603782253, - "2024-09-28T00": 1.9987395777605832, - "2024-09-30T01": 1.9835310322792659, - "2024-09-29T09": 1.9154979421240923, - "2024-09-25T09": 1.9456967095351987, - "2024-09-30T11": 1.85523361917743, - "2024-09-25T07": 1.9454182814871095, - "2024-09-24T19": 1.955261170015399, - "2024-09-29T19": 1.948678704142552, - "2024-09-30T15": 1.8739162151073425, - "2024-09-28T21": 1.940443232448348, - "2024-10-01T05": 1.8987879636964407, - "2024-10-01T14": 1.861208124494064, - "2024-09-27T00": 1.9950292741738673, - "latest": 1.72 - }, - "USD stellar": { - "2024-09-12": 0.09372179000031387, - "2024-09-15": 0.09639223266241498, - "2024-09-22": 0.09636705429777488, - "2024-09-05": 0.09080028876129803, - "2024-09-10": 0.09349229963255345, - "2024-09-11": 0.09284737430491671, - "2024-09-20": 0.09641182512923083, - "2024-09-26": 0.09780379747560017, - "2024-09-16": 0.09467714767856658, - "2024-09-08": 0.08945299327181158, - "2024-09-24": 0.09601309736264511, - "2024-09-29": 0.09993730066438217, - "2024-09-17": 0.095376, - "2024-09-14": 0.09661851705471508, - "2024-09-03": 0.09272899084310485, - "2024-09-25": 0.0965558575047553, - "2024-09-18": 0.09407672214220354, - "2024-09-07": 0.08885268948869582, - "2024-09-06": 0.08839630363723636, - "2024-09-19": 0.09600133312451306, - "2024-09-30": 0.10145765280143819, - "2024-09-01": 0.090683, - "2024-08-31": 0.09241639818228603, - "2024-09-02": 0.09176758807052629, - "2024-09-23": 0.09613152390375306, - "2024-09-13": 0.09557079403271976, - "2024-10-01": 0.09940995406349823, - "2024-09-04": 0.09052489800624483, - "2024-09-28": 0.10040303560969528, - "2024-09-21": 0.09743334320217978, - "2024-09-09": 0.09144036194452987, - "2024-09-27": 0.09858, - "2024-09-27T07": 0.09860172160949522, - "2024-09-27T05": 0.09831653868739121, - "2024-09-30T14": 0.10175998475244853, - "2024-09-27T14": 0.09820162493311449, - "2024-09-27T23": 0.09935744803348877, - "2024-09-28T11": 0.10149890877037997, - "2024-09-29T00": 0.09950186872538218, - "2024-09-28T18": 0.10078663749702411, - "2024-09-29T23": 0.10175122690282386, - "2024-10-01T13": 0.09987336526655262, - "2024-09-30T10": 0.10151291476268745, - "2024-09-25T22": 0.0961276942167686, - "2024-09-29T11": 0.09942598523269562, - "2024-09-28T12": 0.10057447726848703, - "2024-09-26T09": 0.09672587786438096, - "2024-09-28T10": 0.10031403294394681, - "2024-09-27T16": 0.09855154845679802, - "2024-09-24T17": 0.09525033319382546, - "2024-09-27T15": 0.09915399447091897, - "2024-09-29T12": 0.09950725833293009, - "2024-09-25T04": 0.09688066268814591, - "2024-09-25T21": 0.09635501859917048, - "2024-09-25T18": 0.09604626753500459, - "2024-09-26T04": 0.09571666605944727, - "2024-09-26T05": 0.09564378080061398, - "2024-09-30T04": 0.10128920901436525, - "2024-09-27T13": 0.09839715534911041, - "2024-09-28T13": 0.10116702916520366, - "2024-09-25T08": 0.09646935787206823, - "2024-09-30T03": 0.10088468564118303, - "2024-10-01T10": 0.10018930087390458, - "2024-09-25T13": 0.09650807083371801, - "2024-10-01T01": 0.09937944189378008, - "2024-09-26T17": 0.09846674783652529, - "2024-09-25T15": 0.09708954100699786, - "2024-09-29T22": 0.10187215321806756, - "2024-09-29T01": 0.09884359239635954, - "2024-09-30T06": 0.10253650964936377, - "2024-09-27T12": 0.09798800760231063, - "2024-09-25T23": 0.09601173104935871, - "2024-09-30T05": 0.10163227974686358, - "2024-09-28T23": 0.0997162614519525, - "2024-09-30T19": 0.10028191993095882, - "2024-09-25T00": 0.09679097027632964, - "2024-10-01T12": 0.10010188729265343, - "2024-09-29T10": 0.09919782518696343, - "2024-09-24T22": 0.09633223997698583, - "2024-09-26T08": 0.09705409817369513, - "2024-09-29T20": 0.10238569979939822, - "2024-09-25T12": 0.0967218254840968, - "2024-09-25T05": 0.09654279429000265, - "2024-09-27T09": 0.09930276037547495, - "2024-09-26T02": 0.09538922254922545, - "2024-09-28T05": 0.09983089636136426, - "2024-09-29T03": 0.09907205730341453, - "2024-09-26T23": 0.09839425372881692, - "2024-09-29T16": 0.10318456798955572, - "2024-09-26T21": 0.0976586835022882, - "2024-09-26T16": 0.09850810517203507, - "2024-09-28T03": 0.0996238017183315, - "2024-09-29T21": 0.10183438129034757, - "2024-09-30T09": 0.10326423052028745, - "2024-09-24T16": 0.09530853631613007, - "2024-09-30T07": 0.10185046137867694, - "2024-09-28T17": 0.1007253003743263, - "2024-09-28T02": 0.09947189395175342, - "2024-09-28T15": 0.10152758795142522, - "2024-09-29T17": 0.10185514211397717, - "2024-09-25T17": 0.09650620442051573, - "2024-09-25T16": 0.09629589972567587, - "2024-10-01T04": 0.09975862668301541, - "2024-10-01T07": 0.10023592139813563, - "2024-09-30T23": 0.09955935876597291, - "2024-09-29T13": 0.09925400192488419, - "2024-09-26T22": 0.09836521133588373, - "2024-10-01T11": 0.10062157527602501, - "2024-09-30T16": 0.10025822851320551, - "2024-09-28T01": 0.09944461750696999, - "2024-09-27T02": 0.09793566507386665, - "2024-09-30T20": 0.09996976256071496, - "2024-09-28T06": 0.09925781162783366, - "2024-09-27T08": 0.09888146547488993, - "2024-10-01T06": 0.09977048089126817, - "2024-09-27T03": 0.09771857478738097, - "2024-09-25T06": 0.09674517075702792, - "2024-10-01T02": 0.09936861488931593, - "2024-09-27T17": 0.09921914996082404, - "2024-09-30T22": 0.10000318003455379, - "2024-09-29T05": 0.09869021867451966, - "2024-09-28T20": 0.1006978633201749, - "2024-09-30T13": 0.1022142542252007, - "2024-09-26T18": 0.09829017655036207, - "2024-09-25T10": 0.0965222337280655, - "2024-09-25T02": 0.09663281226621856, - "2024-09-29T02": 0.09898315948429315, - "2024-09-28T08": 0.0999368348067755, - "2024-09-30T17": 0.09997298427823419, - "2024-09-30T02": 0.1014515102975056, - "2024-09-28T09": 0.09948670380946203, - "2024-09-25T03": 0.09688804870107037, - "2024-09-29T15": 0.10141214063631958, - "2024-09-29T06": 0.09887668180618728, - "2024-09-24T18": 0.09575633945365782, - "2024-09-26T07": 0.09637079358137317, - "2024-09-26T15": 0.09783816813258438, - "2024-09-27T04": 0.09841357305703663, - "2024-09-27T11": 0.09785393676010903, - "2024-09-26T20": 0.09832892196775257, - "2024-09-30T12": 0.10150462514253791, - "2024-09-27T10": 0.09888740238942323, - "2024-09-26T12": 0.0976497821797343, - "2024-09-24T23": 0.09681669435865446, - "2024-09-30T00": 0.10196458826010421, - "2024-09-25T14": 0.09662207425482161, - "2024-09-26T14": 0.09836297564090113, - "2024-09-27T01": 0.09836964468656194, - "2024-09-28T04": 0.09953563765982308, - "2024-09-29T08": 0.0995188116900133, - "2024-09-26T01": 0.09496255209104347, - "2024-09-27T19": 0.09842674859726133, - "2024-09-25T01": 0.09663235815272367, - "2024-09-26T00": 0.09592356490946707, - "2024-09-29T18": 0.10203227268752733, - "2024-09-28T19": 0.10071885729306074, - "2024-09-28T22": 0.0999877219374233, - "2024-09-27T18": 0.09849198253872958, - "2024-09-24T21": 0.09609747027910925, - "2024-09-30T08": 0.1023903431950697, - "2024-09-25T11": 0.0962940214916045, - "2024-09-25T20": 0.09592952997962755, - "2024-10-01T09": 0.1001154237726783, - "2024-10-01T03": 0.09979478592922311, - "2024-09-26T11": 0.09771330366903601, - "2024-09-28T07": 0.09876457593915429, - "2024-09-27T22": 0.09912481221874414, - "2024-09-27T21": 0.0993553160596978, - "2024-09-26T03": 0.09578001971183196, - "2024-09-26T13": 0.09788589732522768, - "2024-09-30T18": 0.10043493996494363, - "2024-10-01T15": 0.09737275680635993, - "2024-10-01T08": 0.10031069678927941, - "2024-09-25T19": 0.09609777266438999, - "2024-09-30T21": 0.10011900060902035, - "2024-09-28T14": 0.10142648735102332, - "2024-09-27T20": 0.09890201237385846, - "2024-09-26T06": 0.09622246547048742, - "2024-09-26T10": 0.09698349689667722, - "2024-09-29T04": 0.09920032569214786, - "2024-09-28T16": 0.10059665892569955, - "2024-10-01T00": 0.09854742075965153, - "2024-09-24T20": 0.09631839469785618, - "2024-09-26T19": 0.09881076433437672, - "2024-09-24T15": 0.09569124486227597, - "2024-09-27T06": 0.09863241344275303, - "2024-09-29T14": 0.10019797082995856, - "2024-09-29T07": 0.09939544368057533, - "2024-09-28T00": 0.09944712827935283, - "2024-09-30T01": 0.1023882139108958, - "2024-09-29T09": 0.09905588102449091, - "2024-09-25T09": 0.09673760130108441, - "2024-09-30T11": 0.10124324374698725, - "2024-09-25T07": 0.09643702067636518, - "2024-09-24T19": 0.09547915769045114, - "2024-09-29T19": 0.10236595615379136, - "2024-09-30T15": 0.10161692927827792, - "2024-09-28T21": 0.10027202591729882, - "2024-10-01T05": 0.09989734723085925, - "2024-10-01T14": 0.0986465758660493, - "2024-09-27T00": 0.09802874502225621, - "latest": 0.09491 - }, - "USD tezos": { - "2024-09-12": 0.6387788441100003, - "2024-09-15": 0.6481424882784893, - "2024-09-22": 0.6893968227477921, - "2024-09-05": 0.625430703835374, - "2024-09-10": 0.6398378084229128, - "2024-09-11": 0.6317438545392968, - "2024-09-20": 0.6860049938423598, - "2024-09-26": 0.729999464173226, - "2024-09-16": 0.6259836281076828, - "2024-09-08": 0.6130645941873301, - "2024-09-24": 0.6976369088065811, - "2024-09-29": 0.7391890699590888, - "2024-09-17": 0.6349999858476874, - "2024-09-14": 0.6498329817831947, - "2024-09-03": 0.6501222471663576, - "2024-09-25": 0.7079504103861306, - "2024-09-18": 0.6326762363875311, - "2024-09-07": 0.6079438987956944, - "2024-09-06": 0.6143551722259865, - "2024-09-19": 0.6718792499486163, - "2024-09-30": 0.7234969732069879, - "2024-09-01": 0.6453152279306116, - "2024-08-31": 0.6648627793099374, - "2024-09-02": 0.6483458486109268, - "2024-09-23": 0.6949720970962688, - "2024-09-13": 0.6475793415790344, - "2024-10-01": 0.7101229905016507, - "2024-09-04": 0.6277452564552564, - "2024-09-28": 0.7449022729594338, - "2024-09-21": 0.6992206049562166, - "2024-09-09": 0.6279018854659786, - "2024-09-27": 0.7502291031909504, - "2024-09-27T07": 0.7490749, - "2024-09-27T05": 0.7495374750000001, - "2024-09-30T14": 0.720263124, - "2024-09-27T14": 0.75374112, - "2024-09-27T23": 0.7551906119999999, - "2024-09-28T11": 0.746244772, - "2024-09-29T00": 0.740966681, - "2024-09-28T18": 0.743256051, - "2024-09-29T23": 0.7450117350000001, - "2024-10-01T13": 0.69592344, - "2024-09-30T10": 0.721856686, - "2024-09-25T22": 0.7098935, - "2024-09-29T11": 0.7360736, - "2024-09-28T12": 0.742766843, - "2024-09-26T09": 0.7228481699999999, - "2024-09-28T10": 0.74609698, - "2024-09-27T16": 0.75447544, - "2024-09-24T17": 0.7048942499999999, - "2024-09-27T15": 0.7531656600000001, - "2024-09-29T12": 0.7360883199999999, - "2024-09-25T04": 0.7079645999999999, - "2024-09-25T21": 0.715592645, - "2024-09-25T18": 0.70886529, - "2024-09-26T04": 0.7127932299999999, - "2024-09-26T05": 0.71779178, - "2024-09-30T04": 0.7339633, - "2024-09-27T13": 0.74914231, - "2024-09-28T13": 0.740166609, - "2024-09-25T08": 0.7039507199999999, - "2024-09-30T03": 0.73295602, - "2024-10-01T10": 0.7136857919999999, - "2024-09-25T13": 0.703708506, - "2024-10-01T01": 0.711422746, - "2024-09-26T17": 0.73405138, - "2024-09-25T15": 0.712857226, - "2024-09-29T22": 0.7473896759999998, - "2024-09-29T01": 0.73808118, - "2024-09-30T06": 0.74051481, - "2024-09-27T12": 0.75212784, - "2024-09-25T23": 0.70684446, - "2024-09-30T05": 0.736807368, - "2024-09-28T23": 0.738181191, - "2024-09-30T19": 0.7153280719999999, - "2024-09-25T00": 0.7079787599999999, - "2024-10-01T12": 0.711407505, - "2024-09-29T10": 0.7323659069999999, - "2024-09-24T22": 0.7089716399999999, - "2024-09-26T08": 0.7238552, - "2024-09-29T20": 0.75412064, - "2024-09-25T12": 0.704243656, - "2024-09-25T05": 0.707664615, - "2024-09-27T09": 0.750140311247298, - "2024-09-26T02": 0.70881566, - "2024-09-28T05": 0.755281224, - "2024-09-29T03": 0.7393147859999999, - "2024-09-26T23": 0.7365059905856539, - "2024-09-29T16": 0.7450745, - "2024-09-26T21": 0.7340734, - "2024-09-26T16": 0.7380369000000001, - "2024-09-28T03": 0.7600912, - "2024-09-29T21": 0.751012635, - "2024-09-30T09": 0.7361073610000001, - "2024-09-24T16": 0.699909, - "2024-09-30T07": 0.74051481, - "2024-09-28T17": 0.74215582, - "2024-09-28T02": 0.7612913439999999, - "2024-09-28T15": 0.7451803478075965, - "2024-09-29T17": 0.74909737, - "2024-09-25T17": 0.707479708, - "2024-09-25T16": 0.71296435, - "2024-10-01T04": 0.715399152, - "2024-10-01T07": 0.71587112, - "2024-09-30T23": 0.7030242000000001, - "2024-09-29T13": 0.735802998, - "2024-09-26T22": 0.7374589920000001, - "2024-10-01T11": 0.713992885, - "2024-09-30T16": 0.7132737014122136, - "2024-09-28T01": 0.75809096, - "2024-09-27T02": 0.7410833968042506, - "2024-09-30T20": 0.7171898092567882, - "2024-09-28T06": 0.7501125000000001, - "2024-09-27T08": 0.7527128900000001, - "2024-10-01T06": 0.7156992799999999, - "2024-09-27T03": 0.74604476, - "2024-09-25T06": 0.70395776, - "2024-10-01T02": 0.707789244, - "2024-09-27T17": 0.7503500399999999, - "2024-09-30T22": 0.710993752, - "2024-09-29T05": 0.73702211, - "2024-09-28T20": 0.7403740299999999, - "2024-09-30T13": 0.7259274, - "2024-09-26T18": 0.73067306, - "2024-09-25T10": 0.70395776, - "2024-09-25T02": 0.7115573040000001, - "2024-09-29T02": 0.7414485777686772, - "2024-09-28T08": 0.7436588476710947, - "2024-09-30T17": 0.714614152, - "2024-09-30T02": 0.73503675, - "2024-09-28T09": 0.7401036, - "2024-09-25T03": 0.71056447, - "2024-09-29T15": 0.741796421, - "2024-09-29T06": 0.7344293760000001, - "2024-09-24T18": 0.70237355, - "2024-09-26T07": 0.72384072, - "2024-09-26T15": 0.73600736, - "2024-09-27T04": 0.7490149799999999, - "2024-09-27T11": 0.74512665, - "2024-09-26T20": 0.7311169599999999, - "2024-09-30T12": 0.7216709747662435, - "2024-09-27T10": 0.7446340100000001, - "2024-09-26T12": 0.73095614, - "2024-09-24T23": 0.709557424, - "2024-09-30T00": 0.7410889199999999, - "2024-09-25T14": 0.7084220649999999, - "2024-09-26T14": 0.7339926600000001, - "2024-09-27T01": 0.7445042159999999, - "2024-09-28T04": 0.7592317262484238, - "2024-09-29T08": 0.73110234, - "2024-09-26T01": 0.702724275, - "2024-09-27T19": 0.753613025, - "2024-09-25T01": 0.712878804951486, - "2024-09-26T00": 0.70682325, - "2024-09-29T18": 0.7500638813647281, - "2024-09-28T19": 0.74217421, - "2024-09-28T22": 0.7382885839999999, - "2024-09-27T18": 0.751167599, - "2024-09-24T21": 0.705657658, - "2024-09-30T08": 0.7398295920000001, - "2024-09-25T11": 0.7049506499999999, - "2024-09-25T20": 0.712600222, - "2024-10-01T09": 0.71390004, - "2024-10-01T03": 0.714421017, - "2024-09-26T11": 0.729512448, - "2024-09-28T07": 0.7507501200000001, - "2024-09-27T22": 0.7541357200000001, - "2024-09-27T21": 0.751920288, - "2024-09-26T03": 0.708904667415176, - "2024-09-26T13": 0.7319853599999999, - "2024-09-30T18": 0.71325741, - "2024-10-01T15": 0.68739372, - "2024-10-01T08": 0.71341438, - "2024-09-25T19": 0.71090046, - "2024-09-30T21": 0.717370368, - "2024-09-28T14": 0.74487448, - "2024-09-27T20": 0.750435054, - "2024-09-26T06": 0.7203398822822915, - "2024-09-26T10": 0.72787624, - "2024-09-29T04": 0.73702211, - "2024-09-28T16": 0.74337433, - "2024-10-01T00": 0.7078883920000001, - "2024-09-24T20": 0.70695758, - "2024-09-26T19": 0.7350734999999999, - "2024-09-24T15": 0.6989161199999999, - "2024-09-27T06": 0.75301506, - "2024-09-29T14": 0.73912563, - "2024-09-29T07": 0.7317512190000001, - "2024-09-28T00": 0.7570908399999999, - "2024-09-30T01": 0.7412912685216618, - "2024-09-29T09": 0.7337586960000001, - "2024-09-25T09": 0.703750734, - "2024-09-30T11": 0.7214567100000001, - "2024-09-25T07": 0.70097196, - "2024-09-24T19": 0.703615556, - "2024-09-29T19": 0.75213536, - "2024-09-30T15": 0.71690679, - "2024-09-28T21": 0.73608096, - "2024-10-01T05": 0.71267202, - "2024-10-01T14": 0.68739372, - "2024-09-27T00": 0.739832209463178, - "latest": 0.666191 - }, - "USD ton": { - "2024-09-12": 5.42540313096094, - "2024-09-15": 5.635485655163144, - "2024-09-22": 5.59689974329598, - "2024-09-05": 4.668326764032751, - "2024-09-10": 5.3044819004423385, - "2024-09-11": 5.294347586587879, - "2024-09-20": 5.654602615510652, - "2024-09-26": 5.793633532495207, - "2024-09-16": 5.477230807121499, - "2024-09-08": 4.732557540741119, - "2024-09-24": 5.593217375201951, - "2024-09-29": 5.8202913054033, - "2024-09-17": 5.499737488046546, - "2024-09-14": 5.70720816072711, - "2024-09-03": 5.1498743207127164, - "2024-09-25": 5.692199191630618, - "2024-09-18": 5.517944672187066, - "2024-09-07": 4.627690558754265, - "2024-09-06": 4.782069272438912, - "2024-09-19": 5.735251649239982, - "2024-09-30": 5.809148960188712, - "2024-09-01": 5.331969425241275, - "2024-08-31": 5.37242906366725, - "2024-09-02": 5.181803038690555, - "2024-09-23": 5.64479288651117, - "2024-09-13": 5.64926411258865, - "2024-10-01": 5.757308941122535, - "2024-09-04": 4.6704413317073765, - "2024-09-28": 5.9047955268464225, - "2024-09-21": 5.58347007830635, - "2024-09-09": 5.09814933854344, - "2024-09-27": 5.977131486466214, - "2024-09-27T07": 5.833369842040192, - "2024-09-27T05": 5.805274792805273, - "2024-09-30T14": 5.809637708056035, - "2024-09-27T14": 6.00839181109432, - "2024-09-27T23": 6.0019762778738075, - "2024-09-28T11": 5.930269019149081, - "2024-09-29T00": 5.866779728891366, - "2024-09-28T18": 5.856775138884554, - "2024-09-29T23": 5.826416695471385, - "2024-10-01T13": 5.799940670788956, - "2024-09-30T10": 5.767974192856774, - "2024-09-25T22": 5.725224890034811, - "2024-09-29T11": 5.820439047328091, - "2024-09-28T12": 5.941759201976086, - "2024-09-26T09": 5.801297637240028, - "2024-09-28T10": 5.92272462147556, - "2024-09-27T16": 5.982632970578002, - "2024-09-24T17": 5.5138495425887735, - "2024-09-27T15": 6.022492745341438, - "2024-09-29T12": 5.82400823495955, - "2024-09-25T04": 5.7416693619413275, - "2024-09-25T21": 5.722612890352456, - "2024-09-25T18": 5.642883099145666, - "2024-09-26T04": 5.771062006583474, - "2024-09-26T05": 5.729227654739539, - "2024-09-30T04": 5.800108472307581, - "2024-09-27T13": 5.955880939446367, - "2024-09-28T13": 5.898963250325901, - "2024-09-25T08": 5.639437951108503, - "2024-09-30T03": 5.753421835423094, - "2024-10-01T10": 5.831427325739877, - "2024-09-25T13": 5.676527295508652, - "2024-10-01T01": 5.73780689080062, - "2024-09-26T17": 5.878914110192539, - "2024-09-25T15": 5.7130028110993765, - "2024-09-29T22": 5.8905360021527144, - "2024-09-29T01": 5.833518495411153, - "2024-09-30T06": 5.821219771633123, - "2024-09-27T12": 5.8777884922027965, - "2024-09-25T23": 5.76294767250916, - "2024-09-30T05": 5.792071779010829, - "2024-09-28T23": 5.8874627535519615, - "2024-09-30T19": 5.841126870405561, - "2024-09-25T00": 5.606556003968412, - "2024-10-01T12": 5.79853321107307, - "2024-09-29T10": 5.8043626558362975, - "2024-09-24T22": 5.648092163557459, - "2024-09-26T08": 5.825448002683801, - "2024-09-29T20": 5.881442826900973, - "2024-09-25T12": 5.707553869283315, - "2024-09-25T05": 5.741258143924543, - "2024-09-27T09": 5.8868603177496315, - "2024-09-26T02": 5.694489938517775, - "2024-09-28T05": 6.0359759994663, - "2024-09-29T03": 5.847213429943378, - "2024-09-26T23": 5.784805709310775, - "2024-09-29T16": 5.838031809696561, - "2024-09-26T21": 5.7561108893645105, - "2024-09-26T16": 5.828152315569762, - "2024-09-28T03": 6.047171549620177, - "2024-09-29T21": 5.892339700270349, - "2024-09-30T09": 5.830972568933842, - "2024-09-24T16": 5.50569177049572, - "2024-09-30T07": 5.804766023212773, - "2024-09-28T17": 5.844609423455758, - "2024-09-28T02": 6.030119873922439, - "2024-09-28T15": 5.842815281766182, - "2024-09-29T17": 5.838054462721206, - "2024-09-25T17": 5.686229389643477, - "2024-09-25T16": 5.659670352366935, - "2024-10-01T04": 5.8012264068164665, - "2024-10-01T07": 5.816445629186717, - "2024-09-30T23": 5.803089113444598, - "2024-09-29T13": 5.781083107981131, - "2024-09-26T22": 5.79552331760668, - "2024-10-01T11": 5.833852416020375, - "2024-09-30T16": 5.77884619735598, - "2024-09-28T01": 5.987994693840064, - "2024-09-27T02": 5.7544878614619215, - "2024-09-30T20": 5.852674323447319, - "2024-09-28T06": 5.977187043876542, - "2024-09-27T08": 5.803465794296883, - "2024-10-01T06": 5.790260900892184, - "2024-09-27T03": 5.7357730548727694, - "2024-09-25T06": 5.695107780061391, - "2024-10-01T02": 5.7444063590184555, - "2024-09-27T17": 6.106699701944976, - "2024-09-30T22": 5.829412721321439, - "2024-09-29T05": 5.82112105897934, - "2024-09-28T20": 5.8875161722307405, - "2024-09-30T13": 5.823992094676927, - "2024-09-26T18": 5.778403649627482, - "2024-09-25T10": 5.649513406882884, - "2024-09-25T02": 5.648448879070763, - "2024-09-29T02": 5.832446802651931, - "2024-09-28T08": 5.942593202833764, - "2024-09-30T17": 5.801869070591863, - "2024-09-30T02": 5.802471553693522, - "2024-09-28T09": 5.9064664702776675, - "2024-09-25T03": 5.711458456597907, - "2024-09-29T15": 5.815730978765712, - "2024-09-29T06": 5.808122841812714, - "2024-09-24T18": 5.5467212345790005, - "2024-09-26T07": 5.795824770368792, - "2024-09-26T15": 5.7715856435220685, - "2024-09-27T04": 5.791545011221883, - "2024-09-27T11": 5.854392974056895, - "2024-09-26T20": 5.767845784936413, - "2024-09-30T12": 5.8101041388280725, - "2024-09-27T10": 5.8913278749249, - "2024-09-26T12": 5.831765332451638, - "2024-09-24T23": 5.603326644533613, - "2024-09-30T00": 5.842205183354037, - "2024-09-25T14": 5.703364026213429, - "2024-09-26T14": 5.8060635411027715, - "2024-09-27T01": 5.817473000108431, - "2024-09-28T04": 6.043988728683504, - "2024-09-29T08": 5.747506983760358, - "2024-09-26T01": 5.6488201837049745, - "2024-09-27T19": 6.093507693568889, - "2024-09-25T01": 5.639385666424357, - "2024-09-26T00": 5.734816411856744, - "2024-09-29T18": 5.8596435597437, - "2024-09-28T19": 5.875506529747521, - "2024-09-28T22": 5.85887457447113, - "2024-09-27T18": 6.073065754096877, - "2024-09-24T21": 5.618490329200159, - "2024-09-30T08": 5.832829421934421, - "2024-09-25T11": 5.702466702852456, - "2024-09-25T20": 5.698344531339845, - "2024-10-01T09": 5.802365560745748, - "2024-10-01T03": 5.761763566397955, - "2024-09-26T11": 5.8359398760381165, - "2024-09-28T07": 5.928760257345564, - "2024-09-27T22": 6.008203303000138, - "2024-09-27T21": 6.038607744209105, - "2024-09-26T03": 5.7700323613221345, - "2024-09-26T13": 5.807734251463586, - "2024-09-30T18": 5.835211494763091, - "2024-10-01T15": 5.5586949104592, - "2024-10-01T08": 5.811876183821935, - "2024-09-25T19": 5.702342705514916, - "2024-09-30T21": 5.835563359503135, - "2024-09-28T14": 5.854565632266407, - "2024-09-27T20": 6.035286658972273, - "2024-09-26T06": 5.766035200313054, - "2024-09-26T10": 5.789658359600895, - "2024-09-29T04": 5.863931198090341, - "2024-09-28T16": 5.865085969072893, - "2024-10-01T00": 5.719238835495657, - "2024-09-24T20": 5.595814268928242, - "2024-09-26T19": 5.805843771522967, - "2024-09-24T15": 5.52012355077598, - "2024-09-27T06": 5.817675588848107, - "2024-09-29T14": 5.804096178874497, - "2024-09-29T07": 5.78681718149027, - "2024-09-28T00": 5.985765348581655, - "2024-09-30T01": 5.849666177747298, - "2024-09-29T09": 5.774967780606231, - "2024-09-25T09": 5.664480814842368, - "2024-09-30T11": 5.776422234587196, - "2024-09-25T07": 5.583634052927284, - "2024-09-24T19": 5.59118477568363, - "2024-09-29T19": 5.857878636138714, - "2024-09-30T15": 5.814791807153702, - "2024-09-28T21": 5.876551733002501, - "2024-10-01T05": 5.812816843561006, - "2024-10-01T14": 5.700107922016793, - "2024-09-27T00": 5.791633915907263, - "latest": 5.37 - }, - "USD tron": { - "2024-09-12": 0.15341038293623133, - "2024-09-15": 0.14785907977494736, - "2024-09-22": 0.15161180398662322, - "2024-09-05": 0.150063100248319, - "2024-09-10": 0.15285116291570702, - "2024-09-11": 0.1525556831053159, - "2024-09-20": 0.15201492983675194, - "2024-09-26": 0.15238478939297703, - "2024-09-16": 0.14861005836787616, - "2024-09-08": 0.15209821950651994, - "2024-09-24": 0.1518128372635492, - "2024-09-29": 0.15629462767247504, - "2024-09-17": 0.15004870241808613, - "2024-09-14": 0.14785172811372832, - "2024-09-03": 0.15226159286820656, - "2024-09-25": 0.1505761109557835, - "2024-09-18": 0.14969126915069225, - "2024-09-07": 0.1504845479415141, - "2024-09-06": 0.14914012656369818, - "2024-09-19": 0.15047857558052, - "2024-09-30": 0.1556882315220007, - "2024-09-01": 0.15638591748843725, - "2024-08-31": 0.15752298414584448, - "2024-09-02": 0.15590110553719383, - "2024-09-23": 0.15239388164811196, - "2024-09-13": 0.1508201064859144, - "2024-10-01": 0.15611422638801448, - "2024-09-04": 0.1499828714145216, - "2024-09-28": 0.15467962214410816, - "2024-09-21": 0.15199991591355166, - "2024-09-09": 0.15406923864858174, - "2024-09-27": 0.15480440984353402, - "2024-09-27T07": 0.15416266536967652, - "2024-09-27T05": 0.15440405813476596, - "2024-09-30T14": 0.15600569492829883, - "2024-09-27T14": 0.1551498928483411, - "2024-09-27T23": 0.1550980281149198, - "2024-09-28T11": 0.15439935843663338, - "2024-09-29T00": 0.154913941, - "2024-09-28T18": 0.15481008081183556, - "2024-09-29T23": 0.1565763339761023, - "2024-10-01T13": 0.15658241750478888, - "2024-09-30T10": 0.15509446025456286, - "2024-09-25T22": 0.14996266184930124, - "2024-09-29T11": 0.15596636331518163, - "2024-09-28T12": 0.15430068261989102, - "2024-09-26T09": 0.15192637980064433, - "2024-09-28T10": 0.1541200893140866, - "2024-09-27T16": 0.15533418106333713, - "2024-09-24T17": 0.15149242385494902, - "2024-09-27T15": 0.1551456258572217, - "2024-09-29T12": 0.15632344717918947, - "2024-09-25T04": 0.15095174680149567, - "2024-09-25T21": 0.15032709238697367, - "2024-09-25T18": 0.15027804739503636, - "2024-09-26T04": 0.15055481974490928, - "2024-09-26T05": 0.151021858515988, - "2024-09-30T04": 0.1549354850719426, - "2024-09-27T13": 0.15483971003524652, - "2024-09-28T13": 0.15441512202403293, - "2024-09-25T08": 0.1504843543650867, - "2024-09-30T03": 0.1552851491993884, - "2024-10-01T10": 0.15669708123759807, - "2024-09-25T13": 0.15064903410175334, - "2024-10-01T01": 0.15636522438620457, - "2024-09-26T17": 0.15310898964638317, - "2024-09-25T15": 0.1506900639937806, - "2024-09-29T22": 0.15681872170042324, - "2024-09-29T01": 0.15490703790000002, - "2024-09-30T06": 0.15515679094587834, - "2024-09-27T12": 0.15478934779351577, - "2024-09-25T23": 0.1498899478851231, - "2024-09-30T05": 0.15511135805261267, - "2024-09-28T23": 0.15497009413437385, - "2024-09-30T19": 0.1565468154273072, - "2024-09-25T00": 0.15103054211043296, - "2024-10-01T12": 0.15687400017157835, - "2024-09-29T10": 0.15587755926957514, - "2024-09-24T22": 0.15117097045715744, - "2024-09-26T08": 0.15177522981215721, - "2024-09-29T20": 0.15727266624150688, - "2024-09-25T12": 0.15073454800928582, - "2024-09-25T05": 0.15057288727170928, - "2024-09-27T09": 0.15463748519074905, - "2024-09-26T02": 0.14965108059999999, - "2024-09-28T05": 0.15515722880000002, - "2024-09-29T03": 0.15494309879999998, - "2024-09-26T23": 0.15324456118672986, - "2024-09-29T16": 0.15698286884097185, - "2024-09-26T21": 0.1531956650236317, - "2024-09-26T16": 0.15299406210163435, - "2024-09-28T03": 0.15513861439999999, - "2024-09-29T21": 0.15705164274500005, - "2024-09-30T09": 0.15537186732342068, - "2024-09-24T16": 0.15160442215187186, - "2024-09-30T07": 0.15512378341772443, - "2024-09-28T17": 0.154632466, - "2024-09-28T02": 0.15514861559999998, - "2024-09-28T15": 0.15466870344814784, - "2024-09-29T17": 0.15710298188208444, - "2024-09-25T17": 0.1504895363751398, - "2024-09-25T16": 0.15058414337659953, - "2024-10-01T04": 0.15633568365998915, - "2024-10-01T07": 0.1565139421892071, - "2024-09-30T23": 0.1561640536380144, - "2024-09-29T13": 0.1563690844685018, - "2024-09-26T22": 0.1534203336971625, - "2024-10-01T11": 0.1567225738544515, - "2024-09-30T16": 0.15606956007442765, - "2024-09-28T01": 0.15509529978344821, - "2024-09-27T02": 0.1536063929393454, - "2024-09-30T20": 0.15655144997960305, - "2024-09-28T06": 0.1547524710324134, - "2024-09-27T08": 0.15443404383574916, - "2024-10-01T06": 0.15653665508121226, - "2024-09-27T03": 0.15387719186718005, - "2024-09-25T06": 0.15044261803671258, - "2024-10-01T02": 0.15590955391163394, - "2024-09-27T17": 0.15512725900858038, - "2024-09-30T22": 0.15646748004994654, - "2024-09-29T05": 0.15500465, - "2024-09-28T20": 0.1548125261398236, - "2024-09-30T13": 0.15588440999999997, - "2024-09-26T18": 0.15321518412216806, - "2024-09-25T10": 0.15060555160008468, - "2024-09-25T02": 0.15088046204595226, - "2024-09-29T02": 0.15500309999999998, - "2024-09-28T08": 0.15424263852990427, - "2024-09-30T17": 0.15609695306965954, - "2024-09-30T02": 0.15550568970623185, - "2024-09-28T09": 0.1541199318682786, - "2024-09-25T03": 0.1509298931526943, - "2024-09-29T15": 0.156720371, - "2024-09-29T06": 0.155106204, - "2024-09-24T18": 0.15124314858223845, - "2024-09-26T07": 0.15172229553908623, - "2024-09-26T15": 0.15269749682564515, - "2024-09-27T04": 0.15484208285129278, - "2024-09-27T11": 0.15479881031313042, - "2024-09-26T20": 0.1531365360991949, - "2024-09-30T12": 0.15557323286108266, - "2024-09-27T10": 0.1545693498716456, - "2024-09-26T12": 0.15237810265830076, - "2024-09-24T23": 0.15122777944289353, - "2024-09-30T00": 0.1562154387388806, - "2024-09-25T14": 0.15066386874601792, - "2024-09-26T14": 0.15257467488219437, - "2024-09-27T01": 0.15364151768903864, - "2024-09-28T04": 0.155320189, - "2024-09-29T08": 0.15522038352869919, - "2024-09-26T01": 0.1495725975, - "2024-09-27T19": 0.15498169759217684, - "2024-09-25T01": 0.15098615825137063, - "2024-09-26T00": 0.1498525275, - "2024-09-29T18": 0.15715163338216953, - "2024-09-28T19": 0.1547768653702684, - "2024-09-28T22": 0.154719249236204, - "2024-09-27T18": 0.15511672825648407, - "2024-09-24T21": 0.15111963636801318, - "2024-09-30T08": 0.15527753594068477, - "2024-09-25T11": 0.15063531409128583, - "2024-09-25T20": 0.15035163494436446, - "2024-10-01T09": 0.15671188677846032, - "2024-10-01T03": 0.15613742014468965, - "2024-09-26T11": 0.15233904512603055, - "2024-09-28T07": 0.15465122736984951, - "2024-09-27T22": 0.15499209413236534, - "2024-09-27T21": 0.15487537744362698, - "2024-09-26T03": 0.1496965754, - "2024-09-26T13": 0.15247810650890875, - "2024-09-30T18": 0.15633181080108874, - "2024-10-01T08": 0.15660085174959665, - "2024-09-25T19": 0.1502635797712602, - "2024-09-30T21": 0.15661783383056735, - "2024-09-28T14": 0.1546116403459196, - "2024-09-27T20": 0.15489358546264456, - "2024-09-26T06": 0.15136210968946268, - "2024-09-26T10": 0.15227134653263427, - "2024-09-29T04": 0.15500465, - "2024-09-28T16": 0.154698666189386, - "2024-10-01T00": 0.15602113402480342, - "2024-09-24T20": 0.1510927843828458, - "2024-09-26T19": 0.153130206579539, - "2024-09-24T15": 0.15196632984311859, - "2024-09-27T06": 0.15431187891721462, - "2024-09-29T14": 0.15651550109049875, - "2024-09-29T07": 0.15506085349999998, - "2024-09-28T00": 0.15501859999999998, - "2024-09-30T01": 0.15582299537609456, - "2024-09-29T09": 0.15568745112028246, - "2024-09-25T09": 0.1503514514639183, - "2024-09-30T11": 0.15535983076884372, - "2024-09-25T07": 0.15025863293015232, - "2024-09-24T19": 0.15099337718306133, - "2024-09-29T19": 0.1573841144775988, - "2024-09-30T15": 0.15636026843153875, - "2024-09-28T21": 0.154498987746089, - "2024-10-01T05": 0.1565026805227341, - "2024-10-01T14": 0.15653693366518856, - "2024-09-27T00": 0.15355898904040605, - "latest": 0.154045, - "2024-10-01T15": 0.15558268103493772 - }, - "USD vechain": { - "2024-09-12": 0.021700105441658915, - "2024-09-15": 0.022343998374076, - "2024-09-22": 0.024232948487620705, - "2024-09-05": 0.021364793905314823, - "2024-09-10": 0.021510007543254106, - "2024-09-11": 0.02185638705692195, - "2024-09-20": 0.02265495218625564, - "2024-09-26": 0.02462797629883255, - "2024-09-16": 0.021410271333412653, - "2024-09-08": 0.020172738796102666, - "2024-09-24": 0.02400435576845551, - "2024-09-29": 0.02582147193603784, - "2024-09-17": 0.02090718405527371, - "2024-09-14": 0.0227661327552624, - "2024-09-03": 0.021773328791689372, - "2024-09-25": 0.02472188103011101, - "2024-09-18": 0.021204742170340747, - "2024-09-07": 0.020038799194093054, - "2024-09-06": 0.020568697728105885, - "2024-09-19": 0.022061526598079795, - "2024-09-30": 0.025758122488227612, - "2024-09-01": 0.021782966591237365, - "2024-08-31": 0.02232990080109863, - "2024-09-02": 0.021025996755112502, - "2024-09-23": 0.023561616516233865, - "2024-09-13": 0.022344869068837474, - "2024-10-01": 0.024301611705237904, - "2024-09-04": 0.020805932936192553, - "2024-09-28": 0.02672374262991204, - "2024-09-21": 0.023950214971396055, - "2024-09-09": 0.02085883845178641, - "2024-09-27": 0.02565708099008708, - "2024-09-27T07": 0.026482514943507746, - "2024-09-27T05": 0.02641267597256956, - "2024-09-30T14": 0.024981354392095124, - "2024-09-27T14": 0.02645653872848118, - "2024-09-27T23": 0.02669181293332315, - "2024-09-28T11": 0.026038919104796915, - "2024-09-29T00": 0.02583438944722803, - "2024-09-28T18": 0.025997769417595837, - "2024-09-29T23": 0.02576283352704401, - "2024-10-01T13": 0.024773749935190728, - "2024-09-30T10": 0.024984834706268114, - "2024-09-25T22": 0.025076454649771186, - "2024-09-29T11": 0.025332691261102318, - "2024-09-28T12": 0.025942221495495202, - "2024-09-26T09": 0.02509356146267443, - "2024-09-28T10": 0.02593017903103057, - "2024-09-27T16": 0.026617927508262192, - "2024-09-24T17": 0.02424199056413231, - "2024-09-27T15": 0.02661857149802986, - "2024-09-29T12": 0.025453472973282907, - "2024-09-25T04": 0.024781384460065968, - "2024-09-25T21": 0.02509199950248429, - "2024-09-25T18": 0.025000903870919987, - "2024-09-26T04": 0.024678208069192114, - "2024-09-26T05": 0.024686990007642372, - "2024-09-30T04": 0.02497878967840928, - "2024-09-27T13": 0.026523958357027467, - "2024-09-28T13": 0.025945272010537028, - "2024-09-25T08": 0.024489677838052844, - "2024-09-30T03": 0.02497341421965896, - "2024-10-01T10": 0.02488101649974318, - "2024-09-25T13": 0.02481205148671024, - "2024-10-01T01": 0.02447293183238096, - "2024-09-26T17": 0.02535712253143484, - "2024-09-25T15": 0.025358036225450572, - "2024-09-29T22": 0.025947056986663254, - "2024-09-29T01": 0.025701452078308144, - "2024-09-30T06": 0.02519542517041784, - "2024-09-27T12": 0.02626924790737557, - "2024-09-25T23": 0.024786083768392038, - "2024-09-30T05": 0.02502281627603009, - "2024-09-28T23": 0.02580848807331264, - "2024-09-30T19": 0.024506234489582987, - "2024-09-25T00": 0.024774280020198092, - "2024-10-01T12": 0.024816318526204653, - "2024-09-29T10": 0.025379490896172585, - "2024-09-24T22": 0.0245260993614485, - "2024-09-26T08": 0.02533120068627694, - "2024-09-29T20": 0.025941400390108317, - "2024-09-25T12": 0.025123164023369178, - "2024-09-25T05": 0.024565873812908378, - "2024-09-27T09": 0.02663861161557361, - "2024-09-26T02": 0.024496259368425227, - "2024-09-28T05": 0.026823245145824993, - "2024-09-29T03": 0.02580157693711359, - "2024-09-26T23": 0.02554147438940959, - "2024-09-29T16": 0.025460066736998504, - "2024-09-26T21": 0.02520684303641476, - "2024-09-26T16": 0.02524092957773961, - "2024-09-28T03": 0.026917128846005663, - "2024-09-29T21": 0.025932864692312593, - "2024-09-30T09": 0.02544743684186865, - "2024-09-24T16": 0.02412082965779538, - "2024-09-30T07": 0.025348605897448407, - "2024-09-28T17": 0.025760966214425318, - "2024-09-28T02": 0.02678680839301676, - "2024-09-28T15": 0.026061083489012055, - "2024-09-29T17": 0.025517592978264496, - "2024-09-25T17": 0.02536250296489711, - "2024-09-25T16": 0.02509989016768266, - "2024-10-01T04": 0.02481443920502455, - "2024-10-01T07": 0.024958037700179184, - "2024-09-30T23": 0.024439595222856884, - "2024-09-29T13": 0.025346992629847628, - "2024-09-26T22": 0.025503436523321977, - "2024-10-01T11": 0.024950661674230445, - "2024-09-30T16": 0.024418810157358282, - "2024-09-28T01": 0.026637394157830653, - "2024-09-27T02": 0.025820022987009725, - "2024-09-30T20": 0.024508337034148123, - "2024-09-28T06": 0.02652941836298241, - "2024-09-27T08": 0.026498709918784544, - "2024-10-01T06": 0.0247401529195698, - "2024-09-27T03": 0.025958172290981674, - "2024-09-25T06": 0.024688202228035007, - "2024-10-01T02": 0.024576180255150615, - "2024-09-27T17": 0.026836000477842483, - "2024-09-30T22": 0.024758265264787437, - "2024-09-29T05": 0.02580263312159245, - "2024-09-28T20": 0.025901700188839572, - "2024-09-30T13": 0.025088011480758333, - "2024-09-26T18": 0.025452004678593577, - "2024-09-25T10": 0.024795240552885605, - "2024-09-25T02": 0.024841531844015437, - "2024-09-29T02": 0.025804131417005046, - "2024-09-28T08": 0.02626152784557314, - "2024-09-30T17": 0.024541471675729582, - "2024-09-30T02": 0.025167149059313106, - "2024-09-28T09": 0.025935695206344228, - "2024-09-25T03": 0.02479779372894987, - "2024-09-29T15": 0.0255006616850297, - "2024-09-29T06": 0.02575280976289767, - "2024-09-24T18": 0.02440676752005213, - "2024-09-26T07": 0.025170433470470464, - "2024-09-26T15": 0.025019528945194654, - "2024-09-27T04": 0.026557068366666357, - "2024-09-27T11": 0.02608070050394006, - "2024-09-26T20": 0.025405409670811653, - "2024-09-30T12": 0.025176374699984374, - "2024-09-27T10": 0.026473146823025793, - "2024-09-26T12": 0.025225580434248798, - "2024-09-24T23": 0.02477166072299386, - "2024-09-30T00": 0.025758122488227612, - "2024-09-25T14": 0.0251052090791712, - "2024-09-26T14": 0.02510323784534965, - "2024-09-27T01": 0.025888448897506477, - "2024-09-28T04": 0.026832176562162295, - "2024-09-29T08": 0.02524037340241459, - "2024-09-26T01": 0.02433939845891095, - "2024-09-27T19": 0.026779912923167656, - "2024-09-25T01": 0.02483373523141564, - "2024-09-26T00": 0.024609330484777377, - "2024-09-29T18": 0.025765457862425664, - "2024-09-28T19": 0.025905312948420932, - "2024-09-28T22": 0.025681069583263706, - "2024-09-27T18": 0.02660162651003221, - "2024-09-24T21": 0.024562898747280154, - "2024-09-30T08": 0.02564274618582511, - "2024-09-25T11": 0.024893550912820174, - "2024-09-25T20": 0.024918098535877772, - "2024-10-01T09": 0.024909796882610382, - "2024-10-01T03": 0.024647434858974436, - "2024-09-26T11": 0.02531617743239639, - "2024-09-28T07": 0.026346358878335873, - "2024-09-27T22": 0.02650825546451925, - "2024-09-27T21": 0.026649741446225044, - "2024-09-26T03": 0.024580236599005767, - "2024-09-26T13": 0.025149653707647115, - "2024-09-30T18": 0.02466759211444181, - "2024-10-01T15": 0.024017907127756043, - "2024-10-01T08": 0.024981395974123, - "2024-09-25T19": 0.02522020589069361, - "2024-09-30T21": 0.024634423155098603, - "2024-09-28T14": 0.025800876863091342, - "2024-09-27T20": 0.02667835028123104, - "2024-09-26T06": 0.025110228443754767, - "2024-09-26T10": 0.025112044411589995, - "2024-09-29T04": 0.025953726424261067, - "2024-09-28T16": 0.025941596750038317, - "2024-10-01T00": 0.024301611705237904, - "2024-09-24T20": 0.02472265332070198, - "2024-09-26T19": 0.02564611133719619, - "2024-09-24T15": 0.02454905675236046, - "2024-09-27T06": 0.026496037938506935, - "2024-09-29T14": 0.02561263640159643, - "2024-09-29T07": 0.025488729264424213, - "2024-09-28T00": 0.026665033702039022, - "2024-09-30T01": 0.02561032352060822, - "2024-09-29T09": 0.025466997259125247, - "2024-09-25T09": 0.024761754653006254, - "2024-09-30T11": 0.02488706956097957, - "2024-09-25T07": 0.024433894324925844, - "2024-09-24T19": 0.024354315312367692, - "2024-09-29T19": 0.02592199127241583, - "2024-09-30T15": 0.024749018036821953, - "2024-09-28T21": 0.025797983976164392, - "2024-10-01T05": 0.024856464098679233, - "2024-10-01T14": 0.024160659686411973, - "2024-09-27T00": 0.025495452607665742, - "latest": 0.02331657 - }, - "USD zcash": { - "2024-09-12": 29.787254970162955, - "2024-09-15": 30.768290171182866, - "2024-09-22": 30.3596559934924, - "2024-09-05": 29.253013556416132, - "2024-09-10": 30.21900595227534, - "2024-09-11": 29.811239802520138, - "2024-09-20": 31.593587998932612, - "2024-09-26": 29.913908803619147, - "2024-09-16": 29.249142976451164, - "2024-09-08": 27.620375363165948, - "2024-09-24": 29.648411879105474, - "2024-09-29": 29.455150334760802, - "2024-09-17": 29.571097733821638, - "2024-09-14": 30.55581941219775, - "2024-09-03": 29.766308683208376, - "2024-09-25": 29.438843008394098, - "2024-09-18": 29.942145264634483, - "2024-09-07": 28.04568127159217, - "2024-09-06": 27.316581123192105, - "2024-09-19": 31.769548029711085, - "2024-09-30": 28.523868077500374, - "2024-09-01": 31.51848094315335, - "2024-08-31": 32.94008073359305, - "2024-09-02": 29.13336227488568, - "2024-09-23": 29.524907209290717, - "2024-09-13": 29.740120351993735, - "2024-10-01": 28.20339250969287, - "2024-09-04": 29.170557283216674, - "2024-09-28": 30.323465224743504, - "2024-09-21": 31.184629853393567, - "2024-09-09": 28.406918277683197, - "2024-09-27": 30.663349112565108, - "2024-09-27T07": 30.68167747114595, - "2024-09-27T05": 30.319510387132727, - "2024-09-30T14": 28.37914720328815, - "2024-09-27T14": 30.918803380055284, - "2024-09-27T23": 30.583320007628664, - "2024-09-28T11": 30.425356909133054, - "2024-09-29T00": 29.48791061210283, - "2024-09-28T18": 29.466091254589706, - "2024-09-29T23": 29.41319613678184, - "2024-10-01T13": 28.13201522046594, - "2024-09-30T10": 28.52304192443957, - "2024-09-25T22": 28.91759733574551, - "2024-09-29T11": 29.22343211964931, - "2024-09-28T12": 30.363198991218127, - "2024-09-26T09": 28.833039292917984, - "2024-09-28T10": 30.388152627484644, - "2024-09-27T16": 30.814857428830887, - "2024-09-24T17": 29.349416988889544, - "2024-09-27T15": 30.870924800256446, - "2024-09-29T12": 29.261735750551793, - "2024-09-25T04": 29.729137506120694, - "2024-09-25T21": 29.010851298806635, - "2024-09-25T18": 28.80858010648484, - "2024-09-26T04": 28.725075617206926, - "2024-09-26T05": 28.798136099792966, - "2024-09-30T04": 28.933449410386142, - "2024-09-27T13": 30.671785885319494, - "2024-09-28T13": 30.07933789891398, - "2024-09-25T08": 29.631683798116818, - "2024-09-30T03": 28.7448001161768, - "2024-10-01T10": 28.426884172994654, - "2024-09-25T13": 29.56112308385145, - "2024-10-01T01": 28.21294895421468, - "2024-09-26T17": 30.594257081343905, - "2024-09-25T15": 29.62951145285282, - "2024-09-29T22": 29.316939389690223, - "2024-09-29T01": 29.560892023093604, - "2024-09-30T06": 29.015328191646407, - "2024-09-27T12": 30.7096161282712, - "2024-09-25T23": 28.50017751469907, - "2024-09-30T05": 28.99529473082278, - "2024-09-28T23": 29.54027328405949, - "2024-09-30T19": 28.23346391050663, - "2024-09-25T00": 29.581226467645966, - "2024-10-01T12": 28.34295860115947, - "2024-09-29T10": 29.365946422269655, - "2024-09-24T22": 29.449981937790017, - "2024-09-26T08": 28.91927546241598, - "2024-09-29T20": 29.324147635052803, - "2024-09-25T12": 29.699573338732325, - "2024-09-25T05": 29.672199933532518, - "2024-09-27T09": 31.001677873077156, - "2024-09-26T02": 28.46998711225987, - "2024-09-28T05": 30.821214860620252, - "2024-09-29T03": 29.680054717958434, - "2024-09-26T23": 30.46839688849466, - "2024-09-29T16": 29.54673382297376, - "2024-09-26T21": 30.432687679062774, - "2024-09-26T16": 30.595752742766052, - "2024-09-28T03": 30.920552260134205, - "2024-09-29T21": 29.19696719110679, - "2024-09-30T09": 28.650838157523417, - "2024-09-24T16": 29.109746673376375, - "2024-09-30T07": 29.046585548562593, - "2024-09-28T17": 29.842852888521726, - "2024-09-28T02": 30.859074388980435, - "2024-09-28T15": 30.23925108495578, - "2024-09-29T17": 29.635496980538864, - "2024-09-25T17": 28.780690979041463, - "2024-09-25T16": 29.410705926237316, - "2024-10-01T04": 28.356100620809976, - "2024-10-01T07": 28.47204983143822, - "2024-09-30T23": 28.102335331550748, - "2024-09-29T13": 29.540669101568035, - "2024-09-26T22": 30.51536073010639, - "2024-10-01T11": 28.420767947607523, - "2024-09-30T16": 28.27661016124486, - "2024-09-28T01": 30.757275946350553, - "2024-09-27T02": 30.12086895717485, - "2024-09-30T20": 28.31816513710664, - "2024-09-28T06": 30.812941006128693, - "2024-09-27T08": 30.728765057430113, - "2024-10-01T06": 28.458000300595476, - "2024-09-27T03": 30.226274465804735, - "2024-09-25T06": 29.433430362620182, - "2024-10-01T02": 28.153097220949547, - "2024-09-27T17": 30.5833586753339, - "2024-09-30T22": 28.19964203803181, - "2024-09-29T05": 29.623842631285534, - "2024-09-28T20": 29.314317519075864, - "2024-09-30T13": 28.495737039321984, - "2024-09-26T18": 30.475455562499633, - "2024-09-25T10": 29.654429133642505, - "2024-09-25T02": 29.766892961588095, - "2024-09-29T02": 29.64974775677652, - "2024-09-28T08": 30.91940104644568, - "2024-09-30T17": 28.421037542752288, - "2024-09-30T02": 28.677910935325315, - "2024-09-28T09": 30.272827474131535, - "2024-09-25T03": 29.729441973193286, - "2024-09-29T15": 29.515048165196074, - "2024-09-29T06": 29.248799450171834, - "2024-09-24T18": 29.281496693844964, - "2024-09-26T07": 28.898499870773602, - "2024-09-26T15": 30.410483356936606, - "2024-09-27T04": 30.33570178480522, - "2024-09-27T11": 30.682671192184134, - "2024-09-26T20": 30.447658951362047, - "2024-09-30T12": 28.538721274758135, - "2024-09-27T10": 30.741669360930537, - "2024-09-26T12": 29.146120547432997, - "2024-09-24T23": 29.6219129828174, - "2024-09-30T00": 28.94636182479437, - "2024-09-25T14": 29.64867892174339, - "2024-09-26T14": 30.47850811773406, - "2024-09-27T01": 30.237120741440854, - "2024-09-28T04": 30.90321873189484, - "2024-09-29T08": 29.136571010672906, - "2024-09-26T01": 28.336842949794697, - "2024-09-27T19": 30.533536465892475, - "2024-09-25T01": 29.774931318777135, - "2024-09-26T00": 28.466471672695643, - "2024-09-29T18": 29.620716799637655, - "2024-09-28T19": 29.314011689433848, - "2024-09-28T22": 29.267834265308757, - "2024-09-27T18": 30.474386902275302, - "2024-09-24T21": 29.299197447748142, - "2024-09-30T08": 28.922921299454618, - "2024-09-25T11": 29.62637323721068, - "2024-09-25T20": 28.89893207337605, - "2024-10-01T09": 28.495037901296612, - "2024-10-01T03": 28.270598641784805, - "2024-09-26T11": 29.15216765360373, - "2024-09-28T07": 31.036160388709618, - "2024-09-27T22": 30.645251641298977, - "2024-09-27T21": 30.57719341115854, - "2024-09-26T03": 28.706995997035822, - "2024-09-26T13": 29.291933885664246, - "2024-09-30T18": 28.208219469243886, - "2024-10-01T08": 28.44376480334862, - "2024-09-25T19": 28.831709586533307, - "2024-09-30T21": 28.346658777035874, - "2024-09-28T14": 30.22505106158322, - "2024-09-27T20": 30.522065784514645, - "2024-09-26T06": 28.92664172932589, - "2024-09-26T10": 29.068178138263566, - "2024-09-29T04": 29.586557440574158, - "2024-09-28T16": 29.905783477405087, - "2024-10-01T00": 28.053581213778582, - "2024-09-24T20": 29.327452486202098, - "2024-09-26T19": 30.663678762082434, - "2024-09-24T15": 29.106027351367185, - "2024-09-27T06": 30.698777052780034, - "2024-09-29T14": 29.21873349281067, - "2024-09-29T07": 29.036778299073166, - "2024-09-28T00": 30.63088955252794, - "2024-09-30T01": 29.08875730360792, - "2024-09-29T09": 29.59125661367222, - "2024-09-25T09": 29.62445332790019, - "2024-09-30T11": 28.64116395988787, - "2024-09-25T07": 29.48383368105472, - "2024-09-24T19": 29.164988356027152, - "2024-09-29T19": 29.574586724370878, - "2024-09-30T15": 28.418737227692752, - "2024-09-28T21": 29.156618467697296, - "2024-10-01T05": 28.338372699265364, - "2024-10-01T14": 28.15955339621787, - "2024-09-27T00": 30.266645243723428, - "latest": 27.57, - "2024-10-01T15": 28.094436339081536 - }, - "USD zilliqa": { - "2024-09-12": 0.013439554891732004, - "2024-09-15": 0.013764570354940456, - "2024-09-22": 0.014912041961335715, - "2024-09-05": 0.013198532913310865, - "2024-09-10": 0.013282654115579893, - "2024-09-11": 0.01314764303830974, - "2024-09-20": 0.014565505507658515, - "2024-09-26": 0.01603012284543073, - "2024-09-16": 0.013164275677014503, - "2024-09-08": 0.012845517468262513, - "2024-09-24": 0.015575660142636076, - "2024-09-29": 0.01597862978746794, - "2024-09-17": 0.013369767604764214, - "2024-09-14": 0.013694136235259233, - "2024-09-03": 0.013576201636657764, - "2024-09-25": 0.015746213370311127, - "2024-09-18": 0.01342028125557997, - "2024-09-07": 0.012808330163331934, - "2024-09-06": 0.012941099433457164, - "2024-09-19": 0.014031809881637559, - "2024-09-30": 0.015486303788458885, - "2024-09-01": 0.013118276712813178, - "2024-08-31": 0.013429248196920526, - "2024-09-02": 0.013188898431798466, - "2024-09-23": 0.01527868224451738, - "2024-09-13": 0.013600398703234855, - "2024-10-01": 0.015304300753346147, - "2024-09-04": 0.013104046079887353, - "2024-09-28": 0.0162422388696596, - "2024-09-21": 0.01534658941824337, - "2024-09-09": 0.013098767762566434, - "2024-09-27": 0.016612858824159027, - "2024-09-27T07": 0.01660166, - "2024-09-27T05": 0.016650832500000004, - "2024-09-30T14": 0.015398452575142395, - "2024-09-27T14": 0.016695340800000003, - "2024-09-27T23": 0.016712005199999998, - "2024-09-28T11": 0.016250975, - "2024-09-29T00": 0.0161214508, - "2024-09-28T18": 0.0161933999, - "2024-09-29T23": 0.016002400000000003, - "2024-10-01T13": 0.0150083489, - "2024-09-30T10": 0.015439073600000002, - "2024-09-25T22": 0.0156476525, - "2024-09-29T11": 0.01587162171918924, - "2024-09-28T12": 0.016221459799999997, - "2024-09-26T09": 0.01599664, - "2024-09-28T10": 0.016292117699999997, - "2024-09-27T16": 0.016771677, - "2024-09-24T17": 0.0157276405, - "2024-09-27T15": 0.0167836916, - "2024-09-29T12": 0.015871904399999998, - "2024-09-25T04": 0.0158092095, - "2024-09-25T21": 0.015757647124764323, - "2024-09-25T18": 0.015667022699999998, - "2024-09-26T04": 0.015705444099999997, - "2024-09-26T05": 0.015795418000000002, - "2024-09-30T04": 0.0155492225, - "2024-09-27T13": 0.016503135, - "2024-09-28T13": 0.016111449899999998, - "2024-09-25T08": 0.0156789024, - "2024-09-30T03": 0.015569065800000002, - "2024-10-01T10": 0.0154575264, - "2024-09-25T13": 0.0156879603, - "2024-10-01T01": 0.0153218751, - "2024-09-26T17": 0.016301140999999998, - "2024-09-25T15": 0.0158790472, - "2024-09-29T22": 0.016121946257343173, - "2024-09-29T01": 0.01600176, - "2024-09-30T06": 0.0158103162, - "2024-09-27T12": 0.01652799877713018, - "2024-09-25T23": 0.015606565800000001, - "2024-09-30T05": 0.015590155900000001, - "2024-09-28T23": 0.0160917699, - "2024-09-30T19": 0.015204220199999998, - "2024-09-25T00": 0.0158095257, - "2024-10-01T12": 0.0154179954, - "2024-09-29T10": 0.0158414256, - "2024-09-24T22": 0.0158393664, - "2024-09-26T08": 0.015936811999999998, - "2024-09-29T20": 0.016172587199999998, - "2024-09-25T12": 0.0157387408, - "2024-09-25T05": 0.015779210999999998, - "2024-09-27T09": 0.016662998800000002, - "2024-09-26T02": 0.015609799256800406, - "2024-09-28T05": 0.016684003200000002, - "2024-09-29T03": 0.0160603212, - "2024-09-26T23": 0.016101932, - "2024-09-29T16": 0.015981598, - "2024-09-26T21": 0.016043281788429408, - "2024-09-26T16": 0.016340817, - "2024-09-28T03": 0.0168320196, - "2024-09-29T21": 0.016142421000000004, - "2024-09-30T09": 0.015630156300000003, - "2024-09-24T16": 0.015597972, - "2024-09-30T07": 0.0158203164, - "2024-09-28T17": 0.0161233852, - "2024-09-28T02": 0.016852021999999998, - "2024-09-28T15": 0.0162314607, - "2024-09-29T17": 0.016042085199999997, - "2024-09-25T17": 0.015697331, - "2024-09-25T16": 0.015859207, - "2024-10-01T04": 0.015501314399999999, - "2024-10-01T07": 0.0154672154, - "2024-09-30T23": 0.01499625, - "2024-09-29T13": 0.0158722218, - "2024-09-26T22": 0.0161312904, - "2024-10-01T11": 0.0154476825, - "2024-09-30T16": 0.015247255, - "2024-09-28T01": 0.0167620112, - "2024-09-27T02": 0.01606180749349024, - "2024-09-30T20": 0.015256987342809138, - "2024-09-28T06": 0.016532479500000002, - "2024-09-27T08": 0.016702505, - "2024-10-01T06": 0.0154235194, - "2024-09-27T03": 0.016058337401184494, - "2024-09-25T06": 0.015718074117020978, - "2024-10-01T02": 0.015381073799999999, - "2024-09-27T17": 0.016663332, - "2024-09-30T22": 0.015165600699999999, - "2024-09-29T05": 0.015960478799999997, - "2024-09-28T20": 0.016123362922781662, - "2024-09-30T13": 0.015628437000000002, - "2024-09-26T18": 0.016151615, - "2024-09-25T10": 0.015739055600000003, - "2024-09-25T02": 0.0159290442, - "2024-09-29T02": 0.0161103222, - "2024-09-28T08": 0.0162629268, - "2024-09-30T17": 0.0152560324, - "2024-09-30T02": 0.0157107855, - "2024-09-28T09": 0.0161822652, - "2024-09-25T03": 0.015879238708233167, - "2024-09-29T15": 0.015912097105577037, - "2024-09-29T06": 0.0158606344, - "2024-09-24T18": 0.0157671614, - "2024-09-26T07": 0.015986482200000002, - "2024-09-26T15": 0.016210162099999998, - "2024-09-27T04": 0.0164903298, - "2024-09-27T11": 0.0164327931, - "2024-09-26T20": 0.016052567999999996, - "2024-09-30T12": 0.0154889157, - "2024-09-27T10": 0.0164229556, - "2024-09-26T12": 0.0160390376, - "2024-09-24T23": 0.0158790472, - "2024-09-30T00": 0.015951913999999998, - "2024-09-25T14": 0.0158282587, - "2024-09-26T14": 0.016099839, - "2024-09-27T01": 0.0161222568, - "2024-09-28T04": 0.016802183999999998, - "2024-09-29T08": 0.0157922106, - "2024-09-26T01": 0.015476130000000001, - "2024-09-27T19": 0.0166324945, - "2024-09-25T01": 0.0159495215, - "2024-09-26T00": 0.0155061225, - "2024-09-29T18": 0.016093218, - "2024-09-28T19": 0.016131613, - "2024-09-28T22": 0.01606356258522359, - "2024-09-27T18": 0.016621495799999997, - "2024-09-24T21": 0.015759150131278814, - "2024-09-30T08": 0.015730629200000002, - "2024-09-25T11": 0.015718899600000003, - "2024-09-25T20": 0.0157377964, - "2024-10-01T09": 0.015440177141267592, - "2024-10-01T03": 0.015469628400000001, - "2024-09-26T11": 0.0160780704, - "2024-09-28T07": 0.016443288, - "2024-09-27T22": 0.016712836519149517, - "2024-09-27T21": 0.016632660799999997, - "2024-09-26T03": 0.01569004779143492, - "2024-09-26T13": 0.01599968, - "2024-09-30T18": 0.015244815, - "2024-10-01T15": 0.014925521, - "2024-10-01T08": 0.015398152, - "2024-09-25T19": 0.0157377964, - "2024-09-30T21": 0.0153150976, - "2024-09-28T14": 0.0162313348964305, - "2024-09-27T20": 0.016602988000000003, - "2024-09-26T06": 0.015896025, - "2024-09-26T10": 0.016057269800000003, - "2024-09-29T04": 0.015981046029767406, - "2024-09-28T16": 0.016131613, - "2024-10-01T00": 0.015083360399999999, - "2024-09-24T20": 0.0158290502, - "2024-09-26T19": 0.01621985824872453, - "2024-09-24T15": 0.015538140175719247, - "2024-09-27T06": 0.016730334599999997, - "2024-09-29T14": 0.0159727149, - "2024-09-29T07": 0.0157611032, - "2024-09-28T00": 0.016692002799999998, - "2024-09-30T01": 0.015901908, - "2024-09-29T09": 0.015876270582635275, - "2024-09-25T09": 0.0156689031, - "2024-09-30T11": 0.0154690718, - "2024-09-25T07": 0.015599375999999998, - "2024-09-24T19": 0.015818101600000002, - "2024-09-29T19": 0.0161329034, - "2024-09-30T15": 0.015329834575598033, - "2024-09-28T21": 0.015971756700000003, - "2024-10-01T05": 0.0153729252, - "2024-10-01T14": 0.014925521, - "2024-09-27T00": 0.0161420982, - "latest": 0.0143541 - }, - "status": { - "USD astar": { - "timestamp": 1727795462536, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD algorand": { - "timestamp": 1727795466440, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD bittorrent": { - "timestamp": 1727795466439, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD axelar": { - "timestamp": 1727795466446, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD cardano": { - "timestamp": 1727795466445, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD bitcoin": { - "timestamp": 1727795466441, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD bitcoin_gold": { - "timestamp": 1727795466441, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD bitcoin_cash": { - "timestamp": 1727795462569, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD avalanche_c_chain": { - "timestamp": 1727795466443, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD bsc": { - "timestamp": 1727795466445, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD cronos": { - "timestamp": 1727795466496, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD celo": { - "timestamp": 1727795466444, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD cosmos": { - "timestamp": 1727795530871, - "oldestDateRequested": "2023-09-30T22:00:00.000Z" - }, - "USD dogecoin": { - "timestamp": 1727795466495, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD crypto_org": { - "timestamp": 1727795466500, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD dash": { - "timestamp": 1727795462621, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD ethereum": { - "timestamp": 1727795466500, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD elrond": { - "timestamp": 1727795466499, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD ethereum_classic": { - "timestamp": 1727795466498, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD eos": { - "timestamp": 1727795466497, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD flow": { - "timestamp": 1727795466501, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD hedera": { - "timestamp": 1727795466549, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD injective": { - "timestamp": 1727795462674, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD fantom": { - "timestamp": 1727795567676, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD flare": { - "timestamp": 1727795466506, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD filecoin": { - "timestamp": 1727795462648, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD internet_computer": { - "timestamp": 1727795466555, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD iota": { - "timestamp": 1727795466558, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD kusama": { - "timestamp": 1727795462688, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD klaytn": { - "timestamp": 1727795462687, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD litecoin": { - "timestamp": 1727795466557, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD monero": { - "timestamp": 1727795462703, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD nervos": { - "timestamp": 1727795466555, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD neo": { - "timestamp": 1727795466554, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD near": { - "timestamp": 1727795506895, - "oldestDateRequested": "2023-09-30T22:00:00.000Z" - }, - "USD osmo": { - "timestamp": 1727795462750, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD polkadot": { - "timestamp": 1727795462749, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD ravencoin": { - "timestamp": 1727795462750, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD polygon": { - "timestamp": 1727795462751, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD qtum": { - "timestamp": 1727795462751, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD stacks": { - "timestamp": 1727795462759, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD ripple": { - "timestamp": 1727795466558, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD ton": { - "timestamp": 1727795462809, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD solana": { - "timestamp": 1727795567746, - "oldestDateRequested": "2023-09-30T22:00:00.000Z" - }, - "USD tezos": { - "timestamp": 1727795462804, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD tron": { - "timestamp": 1727795466570, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD stellar": { - "timestamp": 1727795462759, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD zcash": { - "timestamp": 1727795466594, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD vechain": { - "timestamp": 1727795462804, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - }, - "USD zilliqa": { - "timestamp": 1727795462807, - "oldestDateRequested": "2024-08-31T22:00:00.000Z" - } - } - }, - "announcements": { - "announcements": [], - "seenIds": [], - "lastUpdateTime": 1727795521259 - }, - "market": { - "marketParams": { - "range": "24h", - "limit": 50, - "starred": [], - "order": "desc", - "search": "", - "liveCompatible": false, - "page": 1, - "counterCurrency": "USD" - }, - "currentPage": 1 - } - } -} diff --git a/libs/ledger-live-common/src/e2e/speculos.ts b/libs/ledger-live-common/src/e2e/speculos.ts index 977f1370e6ac..18df18befcf3 100644 --- a/libs/ledger-live-common/src/e2e/speculos.ts +++ b/libs/ledger-live-common/src/e2e/speculos.ts @@ -232,6 +232,22 @@ export const specs: Specs = { }, dependency: "", }, + Multiverse_X: { + currency: getCryptoCurrencyById("elrond"), + appQuery: { + model: DeviceModelId.nanoSP, + appName: "MultiversX", + }, + dependency: "", + }, + Osmosis: { + currency: getCryptoCurrencyById("osmo"), + appQuery: { + model: DeviceModelId.nanoSP, + appName: "Cosmos", + }, + dependency: "", + }, }; export async function startSpeculos( From adf523a1f7cc9891d94bcd6e7afac0c389c23dc8 Mon Sep 17 00:00:00 2001 From: Angus Bayley Date: Wed, 16 Oct 2024 14:01:08 +0100 Subject: [PATCH 05/57] build: pin dependencies for build-and-test-PR workflows --- .github/workflows/build-desktop-reusable.yml | 4 ++-- .github/workflows/test-libs-reusable.yml | 2 +- tools/actions/composites/setup-test-desktop/action.yml | 2 +- tools/actions/turbo-affected/src/main.ts | 3 ++- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-desktop-reusable.yml b/.github/workflows/build-desktop-reusable.yml index 4b0fab500e49..892e45cec526 100644 --- a/.github/workflows/build-desktop-reusable.yml +++ b/.github/workflows/build-desktop-reusable.yml @@ -37,8 +37,8 @@ jobs: config: [ { name: "linux", os: "ledger-live-4xlarge", image: "linux-x86_64.AppImage" }, - { name: "win", os: "windows-latest", dotnet: true, image: "win-x64.exe" }, - { name: "mac", os: "macos-latest", image: "mac.dmg" }, + { name: "win", os: "windows-2022", dotnet: true, image: "win-x64.exe" }, + { name: "mac", os: "macos-14", image: "mac.dmg" }, ] name: "Build LLD | ${{ matrix.config.name }}" runs-on: ${{ matrix.config.os }} diff --git a/.github/workflows/test-libs-reusable.yml b/.github/workflows/test-libs-reusable.yml index bb3909d6561e..915d3e1774a8 100644 --- a/.github/workflows/test-libs-reusable.yml +++ b/.github/workflows/test-libs-reusable.yml @@ -148,7 +148,7 @@ jobs: report: needs: [test-docs, test-libraries, codecheck-libraries] if: ${{ !cancelled() && github.event_name == 'workflow_dispatch' }} - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/download-artifact@v4 with: diff --git a/tools/actions/composites/setup-test-desktop/action.yml b/tools/actions/composites/setup-test-desktop/action.yml index 6b696dd8fd5e..fbc869813918 100644 --- a/tools/actions/composites/setup-test-desktop/action.yml +++ b/tools/actions/composites/setup-test-desktop/action.yml @@ -35,7 +35,7 @@ runs: - name: Install node-gyp globally if: ${{ inputs.install_node_gyp }} run: | - pnpm add -g node-gyp + pnpm add -g node-gyp@3.8.0 shell: bash - name: Install dependencies env: diff --git a/tools/actions/turbo-affected/src/main.ts b/tools/actions/turbo-affected/src/main.ts index 7a8c34146fbd..cc16f4b8de81 100644 --- a/tools/actions/turbo-affected/src/main.ts +++ b/tools/actions/turbo-affected/src/main.ts @@ -7,6 +7,7 @@ async function main() { const pkg = core.getInput("package") || ""; const command = core.getInput("command"); const turboVersion = packageJson.devDependencies.turbo; + const packageManager = packageJson.packageManager; // pnpm@ try { const turboOutput = execSync( @@ -16,7 +17,7 @@ async function main() { maxBuffer: 2048 * 1024, }, ); - const pnpmOutput = execSync(`npx pnpm list -r --depth=0 --json`, { + const pnpmOutput = execSync(`npx ${packageManager} list -r --depth=0 --json`, { encoding: "utf-8", maxBuffer: 2048 * 1024, }); From 00fc0cb6152e0a99a801ff6f62d441e8a4b163ce Mon Sep 17 00:00:00 2001 From: Angus Bayley Date: Wed, 16 Oct 2024 14:21:01 +0100 Subject: [PATCH 06/57] build: build determine-affected --- tools/actions/turbo-affected/build/main.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tools/actions/turbo-affected/build/main.js b/tools/actions/turbo-affected/build/main.js index f6e8b9be3c73..db1eb12aac88 100644 --- a/tools/actions/turbo-affected/build/main.js +++ b/tools/actions/turbo-affected/build/main.js @@ -18925,7 +18925,7 @@ var package_default = { "doc:ljs": 'pnpm turbo doc --no-daemon --filter="./libs/ledgerjs/**"', "watch:ljs": 'pnpm turbo watch --no-daemon --filter="./libs/ledgerjs/**"', "watch:common": "pnpm turbo watch --no-daemon --filter=./libs/ledger-live-common", - "dev:cli": "pnpm turbo watch --no-daemon --filter=@ledgerhq/live-cli", + "dev:cli": "pnpm turbo watch --filter=@ledgerhq/live-cli", "dev:lld": "pnpm turbo start --no-daemon --filter=ledger-live-desktop", "dev:lld:debug": "DEV_TOOLS=1 LEDGER_INTERNAL_ARGS=--inspect ELECTRON_ARGS=--remote-debugging-port=8315 pnpm turbo start --no-daemon --filter=ledger-live-desktop", "dev:llm": "pnpm turbo start --no-daemon --filter=live-mobile", @@ -19073,14 +19073,15 @@ var package_default = { "@ledgerhq/devices": "workspace:*", tslib: "2.6.2", "@hashgraph/sdk>@grpc/grpc-js": "1.6.7", - "@hashgraph/sdk>@hashgraph/cryptography": "1.1.2" + "@hashgraph/sdk>@hashgraph/cryptography": "1.1.2", + "@ethersproject/providers>ws": "7.5.10" }, patchedDependencies: { "react-native-fast-crypto@2.2.0": "patches/react-native-fast-crypto@2.2.0.patch", "rn-fetch-blob@0.12.0": "patches/rn-fetch-blob@0.12.0.patch", "react-native-image-crop-tools@1.6.4": "patches/react-native-image-crop-tools@1.6.4.patch", "asyncstorage-down@4.2.0": "patches/asyncstorage-down@4.2.0.patch", - "detox@20.23.0": "patches/detox@20.23.0.patch", + "detox@20.26.2": "patches/detox@20.26.2.patch", "usb@2.9.0": "patches/usb@2.9.0.patch", "react-native-video@5.2.1": "patches/react-native-video@5.2.1.patch", "@hashgraph/sdk@2.14.2": "patches/@hashgraph__sdk@2.14.2.patch", @@ -19111,6 +19112,7 @@ async function main() { const pkg = core.getInput("package") || ""; const command = core.getInput("command"); const turboVersion = package_default.devDependencies.turbo; + const packageManager = package_default.packageManager; try { const turboOutput = (0, import_child_process.execSync)( `npx turbo@${turboVersion} run ${command} --filter=...[${ref}] --dry=json`, @@ -19119,7 +19121,7 @@ async function main() { maxBuffer: 2048 * 1024 } ); - const pnpmOutput = (0, import_child_process.execSync)(`npx pnpm list -r --depth=0 --json`, { + const pnpmOutput = (0, import_child_process.execSync)(`npx ${packageManager} list -r --depth=0 --json`, { encoding: "utf-8", maxBuffer: 2048 * 1024 }); From 24368674f14ee4049149142a35cf55ce9192681f Mon Sep 17 00:00:00 2001 From: Angus Bayley Date: Wed, 16 Oct 2024 14:40:35 +0100 Subject: [PATCH 07/57] build: pin versions for external build and test on PR --- .../workflows/build-desktop-external-reusable.yml | 12 ++++++------ .github/workflows/build-mobile-external-reusable.yml | 2 +- .github/workflows/notify-prerelease-translations.yml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-desktop-external-reusable.yml b/.github/workflows/build-desktop-external-reusable.yml index 67bc572856df..e91df8ef307a 100644 --- a/.github/workflows/build-desktop-external-reusable.yml +++ b/.github/workflows/build-desktop-external-reusable.yml @@ -19,7 +19,7 @@ jobs: build-desktop-app: strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-22.04, windows-2022, macos-14] name: "Build Ledger Live Desktop" runs-on: ${{ matrix.os }} outputs: @@ -52,7 +52,7 @@ jobs: uses: LedgerHQ/ledger-live/tools/actions/composites/setup-git-user@develop - uses: actions/setup-python@v4 with: - python-version: "3.x" + python-version: "3.13.0" - uses: ruby/setup-ruby@v1 with: ruby-version: 3.3.0 @@ -76,19 +76,19 @@ jobs: run: | echo "${{matrix.os}}=${{steps.build-app.outcome}}" >> $GITHUB_OUTPUT - name: Upload linux app - if: matrix.os == 'ubuntu-latest' + if: matrix.os == 'ubuntu-22.04' uses: actions/upload-artifact@v4 with: name: ${{ steps.build-desktop.outputs.version }}-linux-x86_64.AppImage path: ${{ github.workspace }}/apps/ledger-live-desktop/dist/${{ steps.build-desktop.outputs.name }}-${{ steps.build-desktop.outputs.version }}-linux-x86_64.AppImage - name: Upload macOS app - if: matrix.os == 'macos-latest' + if: matrix.os == 'macos-14' uses: actions/upload-artifact@v4 with: name: ${{ steps.build-desktop.outputs.version }}-mac.dmg path: ${{ github.workspace }}/apps/ledger-live-desktop/dist/${{ steps.build-desktop.outputs.name }}-${{ steps.build-desktop.outputs.version }}-mac.dmg - name: Upload windows - if: matrix.os == 'windows-latest' + if: matrix.os == 'windows-2022' uses: actions/upload-artifact@v4 with: name: ${{ steps.build-desktop.outputs.version }}-win-x64.exe @@ -96,7 +96,7 @@ jobs: report: needs: build-desktop-app - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 if: ${{ !cancelled() && github.event_name == 'workflow_dispatch' }} steps: - uses: actions/github-script@v7 diff --git a/.github/workflows/build-mobile-external-reusable.yml b/.github/workflows/build-mobile-external-reusable.yml index fd729a3cae3e..944a8486575c 100644 --- a/.github/workflows/build-mobile-external-reusable.yml +++ b/.github/workflows/build-mobile-external-reusable.yml @@ -82,7 +82,7 @@ jobs: path: ${{ github.workspace }}/apps/ledger-live-mobile/android/app/build/outputs/apk/stagingRelease build-mobile-app-ios: - runs-on: macos-latest + runs-on: macos-14 name: "Build Ledger Live Mobile (Mac OS X)" env: NODE_OPTIONS: "--max-old-space-size=7168" diff --git a/.github/workflows/notify-prerelease-translations.yml b/.github/workflows/notify-prerelease-translations.yml index f20a5bb2a092..32eb6a0a9dac 100644 --- a/.github/workflows/notify-prerelease-translations.yml +++ b/.github/workflows/notify-prerelease-translations.yml @@ -19,7 +19,7 @@ on: jobs: release-translation-check: name: release branch translation check - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 if: ${{ github.ref_name != 'release' }} steps: - uses: actions/checkout@v4 From 44e5df974cc1eeb99fdbf33dc0a2c190c66ef506 Mon Sep 17 00:00:00 2001 From: Angus Bayley Date: Wed, 16 Oct 2024 15:08:08 +0100 Subject: [PATCH 08/57] build: pin all remaining "-latest" unpinned OS images --- .github/workflows/assigner.yml | 2 +- .../build-desktop-external-reusable.yml | 54 ++++++++----------- .github/workflows/build-desktop-reusable.yml | 2 +- .github/workflows/build-mobile-reusable.yml | 2 +- .github/workflows/commitlint.yml | 4 +- .github/workflows/labeler.yml | 2 +- .github/workflows/test-desktop-reusable.yml | 12 ++--- .../workflows/test-mobile-e2e-reusable.yml | 4 +- 8 files changed, 37 insertions(+), 45 deletions(-) diff --git a/.github/workflows/assigner.yml b/.github/workflows/assigner.yml index bcd09dc4957a..299cbc614ccc 100644 --- a/.github/workflows/assigner.yml +++ b/.github/workflows/assigner.yml @@ -9,6 +9,6 @@ permissions: jobs: assign-author: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: toshimaru/auto-author-assign@v1.4.0 diff --git a/.github/workflows/build-desktop-external-reusable.yml b/.github/workflows/build-desktop-external-reusable.yml index e91df8ef307a..d69aea4d5e62 100644 --- a/.github/workflows/build-desktop-external-reusable.yml +++ b/.github/workflows/build-desktop-external-reusable.yml @@ -19,13 +19,18 @@ jobs: build-desktop-app: strategy: matrix: - os: [ubuntu-22.04, windows-2022, macos-14] - name: "Build Ledger Live Desktop" - runs-on: ${{ matrix.os }} + config: + [ + { name: "linux", os: "ledger-live-4xlarge", image: "linux-x86_64.AppImage" }, + { name: "win", os: "windows-2022", dotnet: true, image: "win-x64.exe" }, + { name: "mac", os: "macos-14", image: "mac.dmg" }, + ] + runs-on: ${{ matrix.config.os }} + name: "Build LLD (external) | ${{ matrix.config.name }}" outputs: - linux: ${{ steps.save-result.outputs.ubuntu-latest }} - windows: ${{ steps.save-result.outputs.windows-latest }} - mac: ${{ steps.save-result.outputs.macos-latest }} + linux: ${{ steps.save-result.outputs.linux }} + windows: ${{ steps.save-result.outputs.win }} + mac: ${{ steps.save-result.outputs.mac }} env: NODE_OPTIONS: "--max-old-space-size=7168" steps: @@ -35,11 +40,11 @@ jobs: with: result-encoding: string script: | - if ("${{ matrix.os }}" === "ubuntu-latest") { + if ("${{ matrix.config.name }}" === "linux") { return "linux" - } else if ("${{ matrix.os }}" === "macos-latest") { + } else if ("${{ matrix.config.name }}" === "mac") { return "mac" - } else if ("${{ matrix.os }}" === "windows-latest") { + } else if ("${{ matrix.config.name }}" === "win") { return "win" } - uses: actions/checkout@v4 @@ -60,7 +65,7 @@ jobs: - name: Setup the toolchain uses: LedgerHQ/ledger-live/tools/actions/composites/setup-toolchain@develop with: - upgrade_npm: ${{ matrix.os == 'windows-latest' }} + upgrade_npm: ${{ matrix.config.name == 'win' }} - name: Build desktop uses: LedgerHQ/ledger-live/tools/actions/composites/setup-build-desktop@develop id: build-desktop @@ -74,25 +79,12 @@ jobs: shell: bash if: ${{ !cancelled() }} run: | - echo "${{matrix.os}}=${{steps.build-app.outcome}}" >> $GITHUB_OUTPUT - - name: Upload linux app - if: matrix.os == 'ubuntu-22.04' + echo "${{matrix.config.name}}=${{steps.build-app.outcome}}" >> $GITHUB_OUTPUT + - name: Upload app uses: actions/upload-artifact@v4 with: - name: ${{ steps.build-desktop.outputs.version }}-linux-x86_64.AppImage - path: ${{ github.workspace }}/apps/ledger-live-desktop/dist/${{ steps.build-desktop.outputs.name }}-${{ steps.build-desktop.outputs.version }}-linux-x86_64.AppImage - - name: Upload macOS app - if: matrix.os == 'macos-14' - uses: actions/upload-artifact@v4 - with: - name: ${{ steps.build-desktop.outputs.version }}-mac.dmg - path: ${{ github.workspace }}/apps/ledger-live-desktop/dist/${{ steps.build-desktop.outputs.name }}-${{ steps.build-desktop.outputs.version }}-mac.dmg - - name: Upload windows - if: matrix.os == 'windows-2022' - uses: actions/upload-artifact@v4 - with: - name: ${{ steps.build-desktop.outputs.version }}-win-x64.exe - path: ${{ github.workspace }}/apps/ledger-live-desktop/dist/${{ steps.build-desktop.outputs.name }}-${{ steps.build-desktop.outputs.version }}-win-x64.exe + name: ${{ steps.build-desktop.outputs.version }}-${{ matrix.config.image }} + path: ${{ github.workspace }}/apps/ledger-live-desktop/dist/${{ steps.build-desktop.outputs.name }}-${{ steps.build-desktop.outputs.version }}-${{ matrix.config.image }} report: needs: build-desktop-app @@ -116,23 +108,23 @@ jobs: }); const findJobUrl = os => - jobs.find(job => job.name == `Build Ledger Live Desktop (${os})`)?.html_url; + jobs.find(job => job.name == `Build LLD (external) | ${os}`)?.html_url; const keys = { mac: { symbol: "🍏", name: "macOS", - jobUrl: findJobUrl("macos-latest") + jobUrl: findJobUrl("mac") }, windows: { symbol: "🪟", name: "Windows", - jobUrl: findJobUrl("windows-latest") + jobUrl: findJobUrl("win") }, linux: { symbol: "🐧", name: "Linux", - jobUrl: findJobUrl("ubuntu-latest") + jobUrl: findJobUrl("linux") }, }; diff --git a/.github/workflows/build-desktop-reusable.yml b/.github/workflows/build-desktop-reusable.yml index 892e45cec526..3029901f8505 100644 --- a/.github/workflows/build-desktop-reusable.yml +++ b/.github/workflows/build-desktop-reusable.yml @@ -114,7 +114,7 @@ jobs: report: needs: build-desktop-app - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 if: ${{ !cancelled() && (github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call' || github.event_name == 'pull_request')}} steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/build-mobile-reusable.yml b/.github/workflows/build-mobile-reusable.yml index 347fc148042d..58e48ada58a4 100644 --- a/.github/workflows/build-mobile-reusable.yml +++ b/.github/workflows/build-mobile-reusable.yml @@ -126,7 +126,7 @@ jobs: path: ${{ github.workspace }}/apps/ledger-live-mobile/mobile.metafile.json report: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: [build-mobile-app-android, build-mobile-app-ios] if: ${{ !cancelled() && (github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call' || github.event_name == 'pull_request' ) }} steps: diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index 660c529bf886..314c86f11a06 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -24,7 +24,7 @@ permissions: jobs: lint-commits: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v2 @@ -51,7 +51,7 @@ jobs: name: commitlint path: ${{ github.workspace }}/commitlint.out report: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: [lint-commits] if: ${{ !cancelled() }} steps: diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index e4f5022ca60a..0921ffd6553e 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -9,7 +9,7 @@ jobs: permissions: contents: read pull-requests: write - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: generate token id: generate-token diff --git a/.github/workflows/test-desktop-reusable.yml b/.github/workflows/test-desktop-reusable.yml index ce7d37ced1b4..ed11840cfe59 100644 --- a/.github/workflows/test-desktop-reusable.yml +++ b/.github/workflows/test-desktop-reusable.yml @@ -34,8 +34,8 @@ jobs: env: NODE_OPTIONS: "--max-old-space-size=7168" FORCE_COLOR: 3 - CI_OS: ubuntu-latest - runs-on: ubuntu-latest + CI_OS: ubuntu-22.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 with: @@ -76,8 +76,8 @@ jobs: env: NODE_OPTIONS: "--max-old-space-size=7168" FORCE_COLOR: 3 - CI_OS: ubuntu-latest - runs-on: ubuntu-latest + CI_OS: ubuntu-22.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 with: @@ -107,7 +107,7 @@ jobs: NODE_OPTIONS: "--max-old-space-size=7168" INSTRUMENT_BUILD: true FORCE_COLOR: 3 - CI_OS: "ubuntu-latest" + CI_OS: "ubuntu-22.04" PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: 1 LC_ALL: en_US.UTF-8 # DEBUG: "pw:browser*" @@ -171,7 +171,7 @@ jobs: path: apps/ledger-live-desktop/allure-results report: needs: [codechecks, unit-tests, e2e-tests-linux] - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 if: ${{ !cancelled() }} steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/test-mobile-e2e-reusable.yml b/.github/workflows/test-mobile-e2e-reusable.yml index 61e17f2960f6..047d7ea76c2e 100644 --- a/.github/workflows/test-mobile-e2e-reusable.yml +++ b/.github/workflows/test-mobile-e2e-reusable.yml @@ -364,7 +364,7 @@ jobs: report: needs: [detox-tests-android, detox-tests-ios] - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 if: ${{ !cancelled() && (github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call' || github.event_name == 'pull_request') }} steps: - uses: actions/checkout@v4 @@ -452,7 +452,7 @@ jobs: path: ${{ github.workspace }}/summary-detox.json report-on-slack: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: [detox-tests-android, detox-tests-ios] if: ${{ failure() && github.event_name == 'push' }} steps: From 3d8cd98486402b69de7e1dcacdfe864f3d135ec9 Mon Sep 17 00:00:00 2001 From: Lucas Werey <73439207+LucasWerey@users.noreply.github.com> Date: Wed, 16 Oct 2024 16:08:33 +0200 Subject: [PATCH 09/57] :bug:(lld): exported account name in csv (#8114) --- .changeset/lucky-otters-think.md | 5 +++++ libs/ledger-live-common/src/csvExport.ts | 10 ++++++---- 2 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 .changeset/lucky-otters-think.md diff --git a/.changeset/lucky-otters-think.md b/.changeset/lucky-otters-think.md new file mode 100644 index 000000000000..d0adb0246d1e --- /dev/null +++ b/.changeset/lucky-otters-think.md @@ -0,0 +1,5 @@ +--- +"@ledgerhq/live-common": patch +--- + +when exporting account we were not displaying parent account inside account name but the coin name diff --git a/libs/ledger-live-common/src/csvExport.ts b/libs/ledger-live-common/src/csvExport.ts index ecf8eb708015..ac265e342d39 100644 --- a/libs/ledger-live-common/src/csvExport.ts +++ b/libs/ledger-live-common/src/csvExport.ts @@ -66,10 +66,12 @@ const fields: Field[] = [ }, { title: "Account Name", - cell: (account, parentAccount, _op, _counterValueCurrency, _countervalueState, walletState) => - walletState - ? accountNameWithDefaultSelector(walletState, account) - : getDefaultAccountName(getMainAccount(account, parentAccount)), + cell: (account, parentAccount, _op, _counterValueCurrency, _countervalueState, walletState) => { + const main = getMainAccount(account, parentAccount); + return walletState + ? accountNameWithDefaultSelector(walletState, main) + : getDefaultAccountName(main); + }, }, { title: "Account xpub", From 5b39289d834564d627181e062bc548dd85127acc Mon Sep 17 00:00:00 2001 From: Samy Rabah Date: Wed, 16 Oct 2024 16:43:08 +0200 Subject: [PATCH 10/57] LIVE-14383 working display of team link (#8028) * working display of team link * use nbsp * fix: translation argument as component * use trans component * lint --- .changeset/loud-donkeys-smash.md | 6 ++ .../AccountSubHeaderDrawer.tsx | 59 ++++++++++++++++--- .../components/AccountSubHeader/index.tsx | 11 +++- .../families/casper/AccountSubHeader.tsx | 8 ++- .../families/filecoin/AccountSubHeader.tsx | 9 ++- .../internet_computer/AccountSubHeader.tsx | 8 ++- .../families/stacks/AccountSubHeader.tsx | 8 ++- .../families/ton/AccountSubHeader.tsx | 4 +- .../static/i18n/en/app.json | 3 +- .../AccountSubHeaderDrawer.tsx | 46 ++++++++++++--- .../src/components/AccountSubHeader/index.tsx | 4 +- .../src/families/casper/AccountSubHeader.tsx | 2 +- .../families/filecoin/AccountSubHeader.tsx | 2 +- .../internet_computer/AccountSubHeader.tsx | 4 +- .../src/families/stacks/AccountSubHeader.tsx | 2 +- .../src/families/ton/AccountSubHeader.tsx | 2 +- .../src/locales/en/common.json | 3 +- 17 files changed, 153 insertions(+), 28 deletions(-) create mode 100644 .changeset/loud-donkeys-smash.md diff --git a/.changeset/loud-donkeys-smash.md b/.changeset/loud-donkeys-smash.md new file mode 100644 index 000000000000..9ad683d90959 --- /dev/null +++ b/.changeset/loud-donkeys-smash.md @@ -0,0 +1,6 @@ +--- +"ledger-live-desktop": patch +"live-mobile": patch +--- + +feat: display team link if available diff --git a/apps/ledger-live-desktop/src/renderer/components/AccountSubHeader/AccountSubHeaderDrawer.tsx b/apps/ledger-live-desktop/src/renderer/components/AccountSubHeader/AccountSubHeaderDrawer.tsx index 373341fbac51..ad1a886c267c 100644 --- a/apps/ledger-live-desktop/src/renderer/components/AccountSubHeader/AccountSubHeaderDrawer.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/AccountSubHeader/AccountSubHeaderDrawer.tsx @@ -1,14 +1,25 @@ -import React from "react"; +import React, { useCallback } from "react"; +import { Trans, useTranslation } from "react-i18next"; import styled from "styled-components"; -import { useTranslation } from "react-i18next"; -import { SideDrawer } from "~/renderer/components/SideDrawer"; + +import { Link } from "@ledgerhq/react-ui"; + import Box from "~/renderer/components/Box"; +import { SideDrawer } from "~/renderer/components/SideDrawer"; import Text from "~/renderer/components/Text"; +import IconExternalLink from "~/renderer/icons/ExternalLink"; +import { openURL } from "~/renderer/linking"; + +const ExternalLinkIconContainer = styled.span` + display: inline-flex; + margin-left: 4px; +`; type Props = { isOpen: boolean; closeDrawer: () => void; family: string; team: string; + teamLink?: string; }; const Title = styled(Text)` font-style: normal; @@ -19,7 +30,37 @@ const Title = styled(Text)` const Description = styled(Text)` font-size: 13px; `; -export function AccountSubHeaderDrawer({ isOpen, closeDrawer, family, team }: Props) { + +type TeamLinkProps = { + team: string; + teamLink: string; +}; + +const TeamLink = ({ team, teamLink }: TeamLinkProps) => { + const onOpenTeam = useCallback(() => { + openURL(teamLink); + }, [teamLink]); + + return ( + + This integration has been carried out by + + {team} + + + + + in collaboration with Ledger + + ); +}; + +export function AccountSubHeaderDrawer({ isOpen, closeDrawer, family, team, teamLink }: Props) { const { t } = useTranslation(); return ( - {t("account.subHeader.drawer.description3", { - team, - })} + {teamLink ? ( + + ) : ( + t("account.subHeader.drawer.description3", { + team, + }) + )} diff --git a/apps/ledger-live-desktop/src/renderer/components/AccountSubHeader/index.tsx b/apps/ledger-live-desktop/src/renderer/components/AccountSubHeader/index.tsx index d3936ad3b0e2..f85ba5a6ae6c 100644 --- a/apps/ledger-live-desktop/src/renderer/components/AccountSubHeader/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/AccountSubHeader/index.tsx @@ -29,7 +29,15 @@ const CustomButton = styled(Button)` border: none; padding-right: 14px; `; -export default function AccountSubHeader({ family, team }: { family: string; team: string }) { +export default function AccountSubHeader({ + family, + team, + teamLink, +}: { + family: string; + team: string; + teamLink?: string; +}) { const [isDrawerOpen, setIsDrawerOpen] = React.useState(false); const { t } = useTranslation(); function openDrawer() { @@ -63,6 +71,7 @@ export default function AccountSubHeader({ family, team }: { family: string; tea closeDrawer={closeDrawer} family={family} team={team} + teamLink={teamLink} /> ); diff --git a/apps/ledger-live-desktop/src/renderer/families/casper/AccountSubHeader.tsx b/apps/ledger-live-desktop/src/renderer/families/casper/AccountSubHeader.tsx index f6462d005a32..1539b047a380 100644 --- a/apps/ledger-live-desktop/src/renderer/families/casper/AccountSubHeader.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/casper/AccountSubHeader.tsx @@ -2,5 +2,11 @@ import React from "react"; import AccountSubHeader from "../../components/AccountSubHeader/index"; export default function CasperAccountSubHeader() { - return ; + return ( + + ); } diff --git a/apps/ledger-live-desktop/src/renderer/families/filecoin/AccountSubHeader.tsx b/apps/ledger-live-desktop/src/renderer/families/filecoin/AccountSubHeader.tsx index b3ca885d14b2..03a336e8c002 100644 --- a/apps/ledger-live-desktop/src/renderer/families/filecoin/AccountSubHeader.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/filecoin/AccountSubHeader.tsx @@ -1,5 +1,12 @@ import React from "react"; import AccountSubHeader from "../../components/AccountSubHeader/index"; + export default function FilecoinAccountSubHeader() { - return ; + return ( + + ); } diff --git a/apps/ledger-live-desktop/src/renderer/families/internet_computer/AccountSubHeader.tsx b/apps/ledger-live-desktop/src/renderer/families/internet_computer/AccountSubHeader.tsx index b33766b27609..40419ae47c05 100644 --- a/apps/ledger-live-desktop/src/renderer/families/internet_computer/AccountSubHeader.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/internet_computer/AccountSubHeader.tsx @@ -2,5 +2,11 @@ import React from "react"; import AccountSubHeader from "../../components/AccountSubHeader/index"; export default function FilecoinAccountSubHeader() { - return ; + return ( + + ); } diff --git a/apps/ledger-live-desktop/src/renderer/families/stacks/AccountSubHeader.tsx b/apps/ledger-live-desktop/src/renderer/families/stacks/AccountSubHeader.tsx index 8c33b6a945e1..a0ec45da58e3 100644 --- a/apps/ledger-live-desktop/src/renderer/families/stacks/AccountSubHeader.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/stacks/AccountSubHeader.tsx @@ -2,5 +2,11 @@ import React from "react"; import AccountSubHeader from "../../components/AccountSubHeader/index"; export default function StacksAccountSubHeader() { - return ; + return ( + + ); } diff --git a/apps/ledger-live-desktop/src/renderer/families/ton/AccountSubHeader.tsx b/apps/ledger-live-desktop/src/renderer/families/ton/AccountSubHeader.tsx index 023ecd14bb59..8a73a1a31467 100644 --- a/apps/ledger-live-desktop/src/renderer/families/ton/AccountSubHeader.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/ton/AccountSubHeader.tsx @@ -2,5 +2,7 @@ import React from "react"; import AccountSubHeader from "../../components/AccountSubHeader/index"; export default function TonAccountSubHeader() { - return ; + return ( + + ); } diff --git a/apps/ledger-live-desktop/static/i18n/en/app.json b/apps/ledger-live-desktop/static/i18n/en/app.json index ad69ec4255ad..97aeb1abb99b 100644 --- a/apps/ledger-live-desktop/static/i18n/en/app.json +++ b/apps/ledger-live-desktop/static/i18n/en/app.json @@ -737,7 +737,8 @@ "subTitle": "The {{family}} integration has been done by the {{team}} team", "description": "Ledger Live is an open-source platform.", "description2": "Developers from anywhere in the world can integrate with our Ledger Live", - "description3": "This integration has been carried out by {{team}} in collaboration with Ledger" + "description3": "This integration has been carried out by {{team}} in collaboration with Ledger", + "description3Link": "This integration has been carried out by <1><0>{{team}} in collaboration with Ledger" } }, "willBeDeprecatedBanner": { diff --git a/apps/ledger-live-mobile/src/components/AccountSubHeader/AccountSubHeaderDrawer.tsx b/apps/ledger-live-mobile/src/components/AccountSubHeader/AccountSubHeaderDrawer.tsx index 514aa9dcb07a..152c2350261d 100644 --- a/apps/ledger-live-mobile/src/components/AccountSubHeader/AccountSubHeaderDrawer.tsx +++ b/apps/ledger-live-mobile/src/components/AccountSubHeader/AccountSubHeaderDrawer.tsx @@ -1,6 +1,10 @@ -import React from "react"; -import { useTranslation } from "react-i18next"; -import { Box, Text } from "@ledgerhq/native-ui"; +import React, { useCallback } from "react"; +import { Trans, useTranslation } from "react-i18next"; +import { Linking } from "react-native"; + +import { Box, Flex, Text } from "@ledgerhq/native-ui"; + +import ExternalLink from "../ExternalLink"; import QueuedDrawer from "../QueuedDrawer"; type Props = { @@ -8,9 +12,33 @@ type Props = { onClose: () => void; family: string; team: string; + teamLink?: string; +}; + +type TeamLinkProps = { + team: string; + teamLink: string; +}; + +const TeamLink = ({ team, teamLink }: TeamLinkProps) => { + const onOpenTeam = useCallback(() => { + Linking.openURL(teamLink); + }, [teamLink]); + + return ( + + + {"This integration has been carried out by"} + + + + {"in collaboration with Ledger"} + + + ); }; -export default function AccountSubHeaderDrawer({ isOpen, onClose, family, team }: Props) { +export default function AccountSubHeaderDrawer({ isOpen, onClose, family, team, teamLink }: Props) { const { t } = useTranslation(); return ( {t("account.subHeader.drawer.description2")} - - {t("account.subHeader.drawer.description3", { team })} - + {teamLink ? ( + + ) : ( + + {t("account.subHeader.drawer.description3", { team })} + + )} ); diff --git a/apps/ledger-live-mobile/src/components/AccountSubHeader/index.tsx b/apps/ledger-live-mobile/src/components/AccountSubHeader/index.tsx index 7d6761eb4912..4465fc90df9a 100644 --- a/apps/ledger-live-mobile/src/components/AccountSubHeader/index.tsx +++ b/apps/ledger-live-mobile/src/components/AccountSubHeader/index.tsx @@ -7,9 +7,10 @@ import AccountSubHeaderDrawer from "./AccountSubHeaderDrawer"; type Props = { family: string; team: string; + teamLink?: string; }; -function AccountSubHeader({ team, family }: Props) { +function AccountSubHeader({ team, family, teamLink }: Props) { const [isDrawerOpen, setIsDrawerOpen] = React.useState(false); const { t } = useTranslation(); @@ -41,6 +42,7 @@ function AccountSubHeader({ team, family }: Props) { isOpen={isDrawerOpen} onClose={closeDrawer} team={team} + teamLink={teamLink} family={family} /> diff --git a/apps/ledger-live-mobile/src/families/casper/AccountSubHeader.tsx b/apps/ledger-live-mobile/src/families/casper/AccountSubHeader.tsx index 7e8392633909..d6a23f799bac 100644 --- a/apps/ledger-live-mobile/src/families/casper/AccountSubHeader.tsx +++ b/apps/ledger-live-mobile/src/families/casper/AccountSubHeader.tsx @@ -2,7 +2,7 @@ import React from "react"; import AccountSubHeader from "~/components/AccountSubHeader"; function CasperAccountSubHeader() { - return ; + return ; } export default CasperAccountSubHeader; diff --git a/apps/ledger-live-mobile/src/families/filecoin/AccountSubHeader.tsx b/apps/ledger-live-mobile/src/families/filecoin/AccountSubHeader.tsx index 795b7d29c3f6..cdc62832850a 100644 --- a/apps/ledger-live-mobile/src/families/filecoin/AccountSubHeader.tsx +++ b/apps/ledger-live-mobile/src/families/filecoin/AccountSubHeader.tsx @@ -2,7 +2,7 @@ import React from "react"; import AccountSubHeader from "~/components/AccountSubHeader"; function FilecoinAccountSubHeader() { - return ; + return ; } export default FilecoinAccountSubHeader; diff --git a/apps/ledger-live-mobile/src/families/internet_computer/AccountSubHeader.tsx b/apps/ledger-live-mobile/src/families/internet_computer/AccountSubHeader.tsx index f5b509fe7392..4a920f704407 100644 --- a/apps/ledger-live-mobile/src/families/internet_computer/AccountSubHeader.tsx +++ b/apps/ledger-live-mobile/src/families/internet_computer/AccountSubHeader.tsx @@ -2,7 +2,9 @@ import React from "react"; import AccountSubHeader from "~/components/AccountSubHeader"; function InternetComputerAccountSubHeader() { - return ; + return ( + + ); } export default InternetComputerAccountSubHeader; diff --git a/apps/ledger-live-mobile/src/families/stacks/AccountSubHeader.tsx b/apps/ledger-live-mobile/src/families/stacks/AccountSubHeader.tsx index 267cd920f91c..418486234bc1 100644 --- a/apps/ledger-live-mobile/src/families/stacks/AccountSubHeader.tsx +++ b/apps/ledger-live-mobile/src/families/stacks/AccountSubHeader.tsx @@ -2,7 +2,7 @@ import React from "react"; import AccountSubHeader from "~/components/AccountSubHeader"; function StacksAccountSubHeader() { - return ; + return ; } export default StacksAccountSubHeader; diff --git a/apps/ledger-live-mobile/src/families/ton/AccountSubHeader.tsx b/apps/ledger-live-mobile/src/families/ton/AccountSubHeader.tsx index c4dc2c5f22c0..52eae18b9d55 100644 --- a/apps/ledger-live-mobile/src/families/ton/AccountSubHeader.tsx +++ b/apps/ledger-live-mobile/src/families/ton/AccountSubHeader.tsx @@ -2,5 +2,5 @@ import React from "react"; import AccountSubHeader from "~/components/AccountSubHeader"; export default function TonAccountSubHeader() { - return ; + return ; } diff --git a/apps/ledger-live-mobile/src/locales/en/common.json b/apps/ledger-live-mobile/src/locales/en/common.json index f690a7caaa5b..fc329d64c2d9 100644 --- a/apps/ledger-live-mobile/src/locales/en/common.json +++ b/apps/ledger-live-mobile/src/locales/en/common.json @@ -2551,7 +2551,8 @@ "subTitle": "The {{family}} integration has been done by the {{team}} team", "description": "Ledger Live is an open-source platform.", "description2": "Developers from anywhere in the world can integrate with our Ledger Live", - "description3": "This integration has been carried out by {{team}} in collaboration with Ledger" + "description3": "This integration has been carried out by {{team}} in collaboration with Ledger", + "description3Link": "This integration has been carried out by <1><0>{{team}} in collaboration with Ledger" } }, "willBedeprecatedBanner": { From ebe69746f7c52309b90fbf070b7918374296cefb Mon Sep 17 00:00:00 2001 From: Angus Bayley Date: Wed, 16 Oct 2024 16:10:24 +0100 Subject: [PATCH 11/57] build: use pinned GH ubuntu for external workflows, not internal runner --- .github/workflows/build-desktop-external-reusable.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-desktop-external-reusable.yml b/.github/workflows/build-desktop-external-reusable.yml index d69aea4d5e62..b3f309401999 100644 --- a/.github/workflows/build-desktop-external-reusable.yml +++ b/.github/workflows/build-desktop-external-reusable.yml @@ -21,7 +21,7 @@ jobs: matrix: config: [ - { name: "linux", os: "ledger-live-4xlarge", image: "linux-x86_64.AppImage" }, + { name: "linux", os: "ubuntu-22.04", image: "linux-x86_64.AppImage" }, { name: "win", os: "windows-2022", dotnet: true, image: "win-x64.exe" }, { name: "mac", os: "macos-14", image: "mac.dmg" }, ] From d47dea84777d6e7f56cdc906dce9b5b51804a6bf Mon Sep 17 00:00:00 2001 From: Victor <162306106+VicAlbr@users.noreply.github.com> Date: Wed, 16 Oct 2024 17:27:27 +0200 Subject: [PATCH 12/57] =?UTF-8?q?[QAA-271]=20-=20=E2=9C=85=20Adding=20dele?= =?UTF-8?q?gate=20e2e=20test=20-=20different=20entry=20points=20(#8116)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit test: ✅ Adding E2E test scenario for delegate - different entry points to access staking flow --- .../tests/page/drawer/asset.drawer.ts | 24 ++++++++ apps/ledger-live-desktop/tests/page/index.ts | 4 ++ .../tests/page/market.page.ts | 17 ++++++ .../tests/specs/speculos/delegate.spec.ts | 55 ++++++++++++++++++- 4 files changed, 99 insertions(+), 1 deletion(-) create mode 100644 apps/ledger-live-desktop/tests/page/drawer/asset.drawer.ts diff --git a/apps/ledger-live-desktop/tests/page/drawer/asset.drawer.ts b/apps/ledger-live-desktop/tests/page/drawer/asset.drawer.ts new file mode 100644 index 000000000000..c3761fb7510f --- /dev/null +++ b/apps/ledger-live-desktop/tests/page/drawer/asset.drawer.ts @@ -0,0 +1,24 @@ +import { step } from "tests/misc/reporters/step"; +import { Drawer } from "tests/component/drawer.component"; +import { Currency } from "tests/enum/Currency"; +import { Account } from "tests/enum/Account"; + +export class AssetDrawer extends Drawer { + private assetInput = this.page.getByTestId("select-asset-drawer-search-input"); + private currencyRow = (currencyName: string) => + this.page.getByTestId(`currency-row-${currencyName}`); + private accountRow = (accountName: string, accountIndex?: number) => + this.page.getByTestId(`account-row-${accountName}-${accountIndex}`); + + @step("Select asset") + async selectAsset(asset: Currency) { + await this.assetInput.click(); + await this.assetInput.fill(asset.name); + await this.currencyRow(asset.name.toLowerCase()).click(); + } + + @step("Select account") + async selectAccountByIndex(account: Account) { + await this.accountRow(account.currency.name.toLowerCase(), account.index).click(); + } +} diff --git a/apps/ledger-live-desktop/tests/page/index.ts b/apps/ledger-live-desktop/tests/page/index.ts index fc3e9b512d4c..d3c322d00f45 100644 --- a/apps/ledger-live-desktop/tests/page/index.ts +++ b/apps/ledger-live-desktop/tests/page/index.ts @@ -2,6 +2,7 @@ import { PageHolder } from "tests/page/abstractClasses"; import { AccountPage } from "../page/account.page"; import { AccountsPage } from "../page/accounts.page"; import { PortfolioPage } from "../page/portfolio.page"; +import { MarketPage } from "../page/market.page"; import { AddAccountModal } from "../page/modal/add.account.modal"; import { Layout } from "tests/component/layout.component"; import { Modal } from "../component/modal.component"; @@ -16,12 +17,14 @@ import { SwapConfirmationDrawer } from "tests/page/drawer/swap.confirmation.draw import { delegateModal } from "tests/page/modal/delegate.modal"; import { DelegateDrawer } from "./drawer/delegate.drawer"; import { SendDrawer } from "./drawer/send.drawer"; +import { AssetDrawer } from "./drawer/asset.drawer"; export class Application extends PageHolder { public account = new AccountPage(this.page); public drawer = new Drawer(this.page); public accounts = new AccountsPage(this.page); public portfolio = new PortfolioPage(this.page); + public market = new MarketPage(this.page); public addAccount = new AddAccountModal(this.page); public layout = new Layout(this.page); public modal = new Modal(this.page); @@ -35,4 +38,5 @@ export class Application extends PageHolder { public swapDrawer = new SwapConfirmationDrawer(this.page); public delegateDrawer = new DelegateDrawer(this.page); public sendDrawer = new SendDrawer(this.page); + public assetDrawer = new AssetDrawer(this.page); } diff --git a/apps/ledger-live-desktop/tests/page/market.page.ts b/apps/ledger-live-desktop/tests/page/market.page.ts index bf161fb160b3..c1403684e980 100644 --- a/apps/ledger-live-desktop/tests/page/market.page.ts +++ b/apps/ledger-live-desktop/tests/page/market.page.ts @@ -1,4 +1,5 @@ import { AppPage } from "tests/page/abstractClasses"; +import { step } from "tests/misc/reporters/step"; export class MarketPage extends AppPage { private searchInput = this.page.getByTestId("market-search-input"); @@ -13,60 +14,76 @@ export class MarketPage extends AppPage { readonly swapButton = (ticker: string) => this.page.getByTestId(`market-${ticker}-swap-button`); private stakeButton = (ticker: string) => this.page.getByTestId(`market-${ticker}-stake-button`); + @step("Search for $0") async search(query: string) { await this.searchInput.fill(query); } + @step("Switch counter value for $0") async switchCountervalue(_ticker: string) { await this.counterValueSelect.click(); // TODO: For some reason need to hack selects like that await this.page.click('#react-select-2-listbox div div:has-text("Thai Baht - THB")'); } + @step("Switch market range for $0") async switchMarketRange(range: string) { await this.marketRangeSelect.click(); // TODO: For some reason need to hack selects like that await this.page.click(`text=${range}`); } + @step("Toggle star filter") async toggleStarFilter() { await this.starFilterButton.click(); } + @step("Open coin page for $0") async openCoinPage(ticker: string) { await this.coinRow(ticker).click(); await this.coinPageContainer.waitFor({ state: "attached" }); await this.loadingPlaceholder.first().waitFor({ state: "detached" }); } + @step("Star $0") async starCoin(ticker: string) { await this.starButton(ticker).click(); } + @step("Open buy page for $0") async openBuyPage(ticker: string) { await this.buyButton(ticker).click(); // FIXME windows seems to be choking on the transition taking longer. await new Promise(resolve => setTimeout(resolve, 1000)); } + @step("Wait for loading") async waitForLoading() { await this.loadingPlaceholder.first().waitFor({ state: "detached" }); } + @step("Wait for loading with swap buttons") async waitForLoadingWithSwapbtn() { await this.loadingPlaceholder.first().waitFor({ state: "detached" }); await this.swapButton("btc").waitFor({ state: "attached" }); // swap buttons are displayed few seconds after } + @step("Wait for search bar to be empty") async waitForSearchBarToBeEmpty() { await this.page.waitForFunction(async () => { return (await this.searchInput?.inputValue()) === ""; }); } + @step("Start stake flow for $0") async startStakeFlowByTicker(ticker: string) { await this.stakeButton(ticker).click(); await this.page.getByText("choose account").waitFor({ state: "visible" }); await this.page.getByText("Add account").waitFor({ state: "visible" }); } + + @step("Click on stake button for $0") + async stakeButtonClick(ticker: string) { + await this.stakeButton(ticker.toLowerCase()).click(); + } } diff --git a/apps/ledger-live-desktop/tests/specs/speculos/delegate.spec.ts b/apps/ledger-live-desktop/tests/specs/speculos/delegate.spec.ts index c83d2f8cc185..666ceeb4e9d9 100644 --- a/apps/ledger-live-desktop/tests/specs/speculos/delegate.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/speculos/delegate.spec.ts @@ -7,7 +7,7 @@ import { getDescription } from "../../utils/customJsonReporter"; const e2eDelegationAccounts = [ { delegate: new Delegate(Account.ATOM_1, "0.001", "Ledger"), - xrayTicket: "B2CQA-2740", + xrayTicket: "B2CQA-2740, B2CQA-2770", }, { delegate: new Delegate(Account.SOL_1, "0.001", "Ledger by Figment"), @@ -127,3 +127,56 @@ for (const validator of validators) { ); }); } + +test.describe("Staking flow from different entry point", () => { + const delegateAccount = new Delegate(Account.ATOM_1, "0.001", "Ledger"); + test.use({ + userdata: "skip-onboarding", + speculosApp: delegateAccount.account.currency.speculosApp, + cliCommands: [ + `liveData --currency ${delegateAccount.account.currency.ticker} --index ${delegateAccount.account.index} --add`, + ], + }); + + test( + "Staking flow from portfolio entry point", + { + annotation: { + type: "TMS", + description: "B2CQA-2769", + }, + }, + async ({ app }) => { + await addTmsLink(getDescription(test.info().annotations).split(", ")); + await app.layout.goToPortfolio(); + await app.portfolio.startStakeFlow(); + + await app.assetDrawer.selectAsset(delegateAccount.account.currency); + await app.assetDrawer.selectAccountByIndex(delegateAccount.account); + + await app.delegate.verifyProvider(delegateAccount.provider); + await app.delegate.continueDelegate(); + }, + ); + + test( + "Staking flow from market entry point", + { + annotation: { + type: "TMS", + description: "B2CQA-2771", + }, + }, + async ({ app }) => { + await addTmsLink(getDescription(test.info().annotations).split(", ")); + await app.layout.goToMarket(); + await app.market.search(delegateAccount.account.currency.name); + await app.market.stakeButtonClick(delegateAccount.account.currency.ticker); + + await app.assetDrawer.selectAccountByIndex(delegateAccount.account); + + await app.delegate.verifyProvider(delegateAccount.provider); + await app.delegate.continueDelegate(); + }, + ); +}); From 917c122bae986baf04e7086808284b852d604b54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Grellard?= Date: Wed, 16 Oct 2024 17:42:36 +0200 Subject: [PATCH 13/57] LLM - Upgrade React Native to v0.74 (#7974) LLM - Upgrade React Native from 0.73.6 to 0.74.6 --------- Co-authored-by: Mounir Hamzaoui --- .../__tests__/jest-setup.js | 4 +- .../android/app/build.gradle | 4 - .../android/app/src/debug/AndroidManifest.xml | 2 +- .../android/app/src/main/AndroidManifest.xml | 2 +- .../java/com/ledger/live/MainApplication.kt | 4 +- apps/ledger-live-mobile/android/build.gradle | 8 +- .../gradle/wrapper/gradle-wrapper.properties | 2 +- apps/ledger-live-mobile/android/gradlew.bat | 20 +- apps/ledger-live-mobile/index.js | 5 - apps/ledger-live-mobile/ios/Podfile | 13 - apps/ledger-live-mobile/ios/Podfile.lock | 1368 +- .../project.pbxproj | 93 +- .../ios/ledgerlivemobile/AppDelegate.mm | 16 +- .../ios/ledgerlivemobile/Info.plist | 2 +- .../ledgerlivemobile/PrivacyInfo.xcprivacy | 50 + apps/ledger-live-mobile/metro.config.js | 2 +- apps/ledger-live-mobile/package.json | 61 +- .../ledger-live-mobile/react-native.config.js | 3 - .../src/components/AnalyticsConsole/index.tsx | 2 +- .../components/PerformanceConsole/index.tsx | 2 +- .../useCameraPermissions.ts | 2 +- .../src/components/Scanner.tsx | 2 +- .../StorylyStories/StoriesConfig.tsx | 3 +- apps/ledger-live-mobile/src/context/store.ts | 12 +- .../src/families/evm/EditFeeUnitEvm.tsx | 2 +- .../src/navigation/DeeplinksProvider.tsx | 3 - .../components/Synchronize/ScanQrCode.tsx | 5 +- .../Debug/Debugging/CameraPermissions.tsx | 3 +- .../Debug/Features/CustomImageGraphics.tsx | 2 +- .../src/types/react-native-slider.d.ts | 30 - libs/ledger-live-common/package.json | 2 +- libs/ui/packages/native/.unimportedrc.json | 1 + libs/ui/packages/native/package.json | 22 +- pnpm-lock.yaml | 64072 ++++++++++------ 34 files changed, 41340 insertions(+), 24484 deletions(-) create mode 100644 apps/ledger-live-mobile/ios/ledgerlivemobile/PrivacyInfo.xcprivacy delete mode 100644 apps/ledger-live-mobile/src/types/react-native-slider.d.ts diff --git a/apps/ledger-live-mobile/__tests__/jest-setup.js b/apps/ledger-live-mobile/__tests__/jest-setup.js index b397cefe342f..295e2492c6f5 100644 --- a/apps/ledger-live-mobile/__tests__/jest-setup.js +++ b/apps/ledger-live-mobile/__tests__/jest-setup.js @@ -53,7 +53,7 @@ jest.mock("react-native-share", () => ({ default: jest.fn(), })); -jest.mock("expo-camera", () => { +jest.mock("expo-camera/legacy", () => { return { Camera: MockedExpoCamera, CameraType: MockedCameraType, @@ -70,7 +70,7 @@ jest.mock("expo-barcode-scanner", () => ({ }, })); -jest.mock("expo-camera/next", () => { +jest.mock("expo-camera", () => { return { CameraView: jest.fn(() => null), }; diff --git a/apps/ledger-live-mobile/android/app/build.gradle b/apps/ledger-live-mobile/android/app/build.gradle index fe8f83e41585..156e3bb71bd5 100644 --- a/apps/ledger-live-mobile/android/app/build.gradle +++ b/apps/ledger-live-mobile/android/app/build.gradle @@ -136,8 +136,6 @@ android { configurations.all { resolutionStrategy { - // Needed for flipper https://github.com/facebook/flipper/issues/3397 - force 'androidx.sqlite:sqlite-framework:2.1.0' // Needed for Braze force 'androidx.fragment:fragment:1.3.6' force 'androidx.core:core:1.7.0' @@ -209,8 +207,6 @@ dependencies { // this should not be needed with expo autolinking, but somehow expo autolinking is partially broken implementation project(path: ':expo') - implementation("com.facebook.react:flipper-integration") - if (hermesEnabled.toBoolean()) { implementation("com.facebook.react:hermes-android") } else { diff --git a/apps/ledger-live-mobile/android/app/src/debug/AndroidManifest.xml b/apps/ledger-live-mobile/android/app/src/debug/AndroidManifest.xml index 107fa6753151..41d28bd7c852 100644 --- a/apps/ledger-live-mobile/android/app/src/debug/AndroidManifest.xml +++ b/apps/ledger-live-mobile/android/app/src/debug/AndroidManifest.xml @@ -6,7 +6,7 @@ NUL 2>&1 if "%ERRORLEVEL%" == "0" goto execute -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail @@ -56,11 +56,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist "%JAVA_EXE%" goto execute -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail diff --git a/apps/ledger-live-mobile/index.js b/apps/ledger-live-mobile/index.js index 7873f9d5bc16..55e62c8b0014 100644 --- a/apps/ledger-live-mobile/index.js +++ b/apps/ledger-live-mobile/index.js @@ -23,11 +23,6 @@ import App from "./src"; import logReport from "./src/log-report"; import { withSentry } from "./src/sentry"; -if (__DEV__) { - // eslint-disable-next-line @typescript-eslint/no-var-requires - require("react-native-performance-flipper-reporter").setupDefaultFlipperReporter(); -} - logReport.logReportInit(); const Root = withSentry(App); diff --git a/apps/ledger-live-mobile/ios/Podfile b/apps/ledger-live-mobile/ios/Podfile index 4c5a31c612e5..f218485ed414 100644 --- a/apps/ledger-live-mobile/ios/Podfile +++ b/apps/ledger-live-mobile/ios/Podfile @@ -10,18 +10,6 @@ require Pod::Executable.execute_command('node', ['-p', platform :ios, '13.4' prepare_react_native_project! -# If you are using a `react-native-flipper` your iOS build will fail when `NO_FLIPPER=1` is set. -# because `react-native-flipper` depends on (FlipperKit,...) that will be excluded -# -# To fix this you can also exclude `react-native-flipper` using a `react-native.config.js` -# ```js -# module.exports = { -# dependencies: { -# ...(process.env.NO_FLIPPER ? { 'react-native-flipper': { platforms: { ios: null } } } : {}), -# ``` - -flipper_config = ENV['NO_FLIPPER'] == "1" ? FlipperConfiguration.disabled : FlipperConfiguration.enabled - linkage = ENV['USE_FRAMEWORKS'] if linkage != nil Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green @@ -42,7 +30,6 @@ target 'ledgerlivemobile' do use_react_native!( :path => config[:reactNativePath], - :flipper_configuration => flipper_config, # An absolute path to your application root. :app_path => "#{Pod::Config.instance.installation_root}/.." ) diff --git a/apps/ledger-live-mobile/ios/Podfile.lock b/apps/ledger-live-mobile/ios/Podfile.lock index afb44f48e292..4219bb6e8a57 100644 --- a/apps/ledger-live-mobile/ios/Podfile.lock +++ b/apps/ledger-live-mobile/ios/Podfile.lock @@ -15,48 +15,60 @@ PODS: - BrazeKit (= 7.7.0) - CocoaAsyncSocket (7.6.5) - DoubleConversion (1.1.6) - - EXBarCodeScanner (12.9.3): + - EXBarCodeScanner (13.0.1): - EXImageLoader - ExpoModulesCore - ZXingObjC/OneD - ZXingObjC/PDF417 - - EXConstants (15.4.5): + - EXConstants (16.0.2): - ExpoModulesCore - - EXFont (11.10.3): - - ExpoModulesCore - - EXImageLoader (4.6.0): + - EXImageLoader (4.7.0): - ExpoModulesCore - React-Core - - Expo (50.0.14): + - Expo (51.0.37): + - ExpoModulesCore + - ExpoAsset (10.0.10): - ExpoModulesCore - - ExpoCamera (14.1.3): + - ExpoCamera (15.0.16): - ExpoModulesCore - ZXingObjC/OneD - ZXingObjC/PDF417 - - ExpoCrypto (12.8.1): + - ExpoCrypto (13.0.2): - ExpoModulesCore - - ExpoFileSystem (16.0.8): + - ExpoFileSystem (17.0.1): - ExpoModulesCore - - ExpoImageManipulator (11.8.0): + - ExpoFont (12.0.10): + - ExpoModulesCore + - ExpoImageManipulator (12.0.5): - EXImageLoader - ExpoModulesCore - - ExpoKeepAwake (12.8.2): + - SDWebImageWebPCoder + - ExpoKeepAwake (13.0.2): - ExpoModulesCore - - ExpoModulesCore (1.11.12): + - ExpoModulesCore (1.12.25): + - DoubleConversion - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Codegen - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-jsinspector - React-NativeModulesApple - React-RCTAppDelegate + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - FBLazyVector (0.73.6) - - FBReactNativeSpec (0.73.6): - - RCT-Folly (= 2022.05.16.00) - - RCTRequired (= 0.73.6) - - RCTTypeSafety (= 0.73.6) - - React-Core (= 0.73.6) - - React-jsi (= 0.73.6) - - ReactCommon/turbomodule/core (= 0.73.6) + - Yoga + - FBLazyVector (0.74.6) - Firebase/CoreOnly (8.15.0): - FirebaseCore (= 8.15.0) - Firebase/Messaging (8.15.0): @@ -96,97 +108,40 @@ PODS: - FirebaseInstallations (~> 8.0) - GoogleUtilities/Environment (~> 7.7) - "GoogleUtilities/NSData+zlib (~> 7.7)" - - Flipper (0.201.0): - - Flipper-Folly (~> 2.6) - - Flipper-Boost-iOSX (1.76.0.1.11) - - Flipper-DoubleConversion (3.2.0.1) - - Flipper-Fmt (7.1.7) - - Flipper-Folly (2.6.10): - - Flipper-Boost-iOSX - - Flipper-DoubleConversion - - Flipper-Fmt (= 7.1.7) - - Flipper-Glog - - libevent (~> 2.1.12) - - OpenSSL-Universal (= 1.1.1100) - - Flipper-Glog (0.5.0.5) - - Flipper-PeerTalk (0.0.4) - - FlipperKit (0.201.0): - - FlipperKit/Core (= 0.201.0) - - FlipperKit/Core (0.201.0): - - Flipper (~> 0.201.0) - - FlipperKit/CppBridge - - FlipperKit/FBCxxFollyDynamicConvert - - FlipperKit/FBDefines - - FlipperKit/FKPortForwarding - - SocketRocket (~> 0.6.0) - - FlipperKit/CppBridge (0.201.0): - - Flipper (~> 0.201.0) - - FlipperKit/FBCxxFollyDynamicConvert (0.201.0): - - Flipper-Folly (~> 2.6) - - FlipperKit/FBDefines (0.201.0) - - FlipperKit/FKPortForwarding (0.201.0): - - CocoaAsyncSocket (~> 7.6) - - Flipper-PeerTalk (~> 0.0.4) - - FlipperKit/FlipperKitHighlightOverlay (0.201.0) - - FlipperKit/FlipperKitLayoutHelpers (0.201.0): - - FlipperKit/Core - - FlipperKit/FlipperKitHighlightOverlay - - FlipperKit/FlipperKitLayoutTextSearchable - - FlipperKit/FlipperKitLayoutIOSDescriptors (0.201.0): - - FlipperKit/Core - - FlipperKit/FlipperKitHighlightOverlay - - FlipperKit/FlipperKitLayoutHelpers - - FlipperKit/FlipperKitLayoutPlugin (0.201.0): - - FlipperKit/Core - - FlipperKit/FlipperKitHighlightOverlay - - FlipperKit/FlipperKitLayoutHelpers - - FlipperKit/FlipperKitLayoutIOSDescriptors - - FlipperKit/FlipperKitLayoutTextSearchable - - FlipperKit/FlipperKitLayoutTextSearchable (0.201.0) - - FlipperKit/FlipperKitNetworkPlugin (0.201.0): - - FlipperKit/Core - - FlipperKit/FlipperKitReactPlugin (0.201.0): - - FlipperKit/Core - - FlipperKit/FlipperKitUserDefaultsPlugin (0.201.0): - - FlipperKit/Core - - FlipperKit/SKIOSNetworkPlugin (0.201.0): - - FlipperKit/Core - - FlipperKit/FlipperKitNetworkPlugin - - fmt (6.2.1) + - fmt (9.1.0) - glog (0.3.5) - GoogleDataTransport (9.4.1): - GoogleUtilities/Environment (~> 7.7) - nanopb (< 2.30911.0, >= 2.30908.0) - PromisesObjC (< 3.0, >= 1.2) - - GoogleUtilities/AppDelegateSwizzler (7.13.0): + - GoogleUtilities/AppDelegateSwizzler (7.13.3): - GoogleUtilities/Environment - GoogleUtilities/Logger - GoogleUtilities/Network - GoogleUtilities/Privacy - - GoogleUtilities/Environment (7.13.0): + - GoogleUtilities/Environment (7.13.3): - GoogleUtilities/Privacy - PromisesObjC (< 3.0, >= 1.2) - - GoogleUtilities/Logger (7.13.0): + - GoogleUtilities/Logger (7.13.3): - GoogleUtilities/Environment - GoogleUtilities/Privacy - - GoogleUtilities/Network (7.13.0): + - GoogleUtilities/Network (7.13.3): - GoogleUtilities/Logger - "GoogleUtilities/NSData+zlib" - GoogleUtilities/Privacy - GoogleUtilities/Reachability - - "GoogleUtilities/NSData+zlib (7.13.0)": + - "GoogleUtilities/NSData+zlib (7.13.3)": - GoogleUtilities/Privacy - - GoogleUtilities/Privacy (7.13.0) - - GoogleUtilities/Reachability (7.13.0): + - GoogleUtilities/Privacy (7.13.3) + - GoogleUtilities/Reachability (7.13.3): - GoogleUtilities/Logger - GoogleUtilities/Privacy - - GoogleUtilities/UserDefaults (7.13.0): + - GoogleUtilities/UserDefaults (7.13.3): - GoogleUtilities/Logger - GoogleUtilities/Privacy - - hermes-engine (0.73.6): - - hermes-engine/Pre-built (= 0.73.6) - - hermes-engine/Pre-built (0.73.6) - - libevent (2.1.12) + - hermes-engine (0.74.6): + - hermes-engine/Pre-built (= 0.74.6) + - hermes-engine/Pre-built (0.74.6) - libwebp (1.3.2): - libwebp/demux (= 1.3.2) - libwebp/mux (= 1.3.2) @@ -201,322 +156,382 @@ PODS: - libwebp/sharpyuv - lottie-ios (4.4.3) - lottie-react-native (6.7.0): + - DoubleConversion - glog + - hermes-engine - lottie-ios (~> 4.4.1) - - RCT-Folly (= 2022.05.16.00) + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Codegen - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - MultiplatformBleAdapter (0.2.0) - nanopb (2.30908.0): - nanopb/decode (= 2.30908.0) - nanopb/encode (= 2.30908.0) - nanopb/decode (2.30908.0) - nanopb/encode (2.30908.0) - - OpenSSL-Universal (1.1.1100) - PromisesObjC (2.4.0) - - RCT-Folly (2022.05.16.00): - - boost - - DoubleConversion - - fmt (~> 6.2.1) - - glog - - RCT-Folly/Default (= 2022.05.16.00) - - RCT-Folly/Default (2022.05.16.00): + - RCT-Folly (2024.01.01.00): - boost - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (2022.05.16.00): + - RCT-Folly/Default (= 2024.01.01.00) + - RCT-Folly/Default (2024.01.01.00): - boost - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - - RCT-Folly/Futures (2022.05.16.00): + - RCT-Folly/Fabric (2024.01.01.00): - boost - DoubleConversion - - fmt (~> 6.2.1) - - glog - - libevent - - RCTRequired (0.73.6) - - RCTTypeSafety (0.73.6): - - FBLazyVector (= 0.73.6) - - RCTRequired (= 0.73.6) - - React-Core (= 0.73.6) - - React (0.73.6): - - React-Core (= 0.73.6) - - React-Core/DevSupport (= 0.73.6) - - React-Core/RCTWebSocket (= 0.73.6) - - React-RCTActionSheet (= 0.73.6) - - React-RCTAnimation (= 0.73.6) - - React-RCTBlob (= 0.73.6) - - React-RCTImage (= 0.73.6) - - React-RCTLinking (= 0.73.6) - - React-RCTNetwork (= 0.73.6) - - React-RCTSettings (= 0.73.6) - - React-RCTText (= 0.73.6) - - React-RCTVibration (= 0.73.6) - - React-callinvoker (0.73.6) - - React-Codegen (0.73.6): + - fmt (= 9.1.0) + - glog + - RCTDeprecation (0.74.6) + - RCTRequired (0.74.6) + - RCTTypeSafety (0.74.6): + - FBLazyVector (= 0.74.6) + - RCTRequired (= 0.74.6) + - React-Core (= 0.74.6) + - React (0.74.6): + - React-Core (= 0.74.6) + - React-Core/DevSupport (= 0.74.6) + - React-Core/RCTWebSocket (= 0.74.6) + - React-RCTActionSheet (= 0.74.6) + - React-RCTAnimation (= 0.74.6) + - React-RCTBlob (= 0.74.6) + - React-RCTImage (= 0.74.6) + - React-RCTLinking (= 0.74.6) + - React-RCTNetwork (= 0.74.6) + - React-RCTSettings (= 0.74.6) + - React-RCTText (= 0.74.6) + - React-RCTVibration (= 0.74.6) + - React-callinvoker (0.74.6) + - React-Codegen (0.74.6): - DoubleConversion - - FBReactNativeSpec - glog - hermes-engine - RCT-Folly - RCTRequired - RCTTypeSafety - React-Core + - React-debug + - React-Fabric + - React-FabricImage + - React-featureflags + - React-graphics - React-jsi - React-jsiexecutor - React-NativeModulesApple - - React-rncore + - React-rendererdebug + - React-utils - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-Core (0.73.6): + - React-Core (0.74.6): - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default (= 0.73.6) + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default (= 0.74.6) - React-cxxreact + - React-featureflags - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - - SocketRocket (= 0.6.1) + - SocketRocket (= 0.7.0) - Yoga - - React-Core/CoreModulesHeaders (0.73.6): + - React-Core/CoreModulesHeaders (0.74.6): - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact + - React-featureflags - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - - SocketRocket (= 0.6.1) + - SocketRocket (= 0.7.0) - Yoga - - React-Core/Default (0.73.6): + - React-Core/Default (0.74.6): - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-cxxreact + - React-featureflags - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - - SocketRocket (= 0.6.1) + - SocketRocket (= 0.7.0) - Yoga - - React-Core/DevSupport (0.73.6): + - React-Core/DevSupport (0.74.6): - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default (= 0.73.6) - - React-Core/RCTWebSocket (= 0.73.6) + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default (= 0.74.6) + - React-Core/RCTWebSocket (= 0.74.6) - React-cxxreact + - React-featureflags - React-hermes - React-jsi - React-jsiexecutor - - React-jsinspector (= 0.73.6) + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - - SocketRocket (= 0.6.1) + - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTActionSheetHeaders (0.73.6): + - React-Core/RCTActionSheetHeaders (0.74.6): - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact + - React-featureflags - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - - SocketRocket (= 0.6.1) + - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTAnimationHeaders (0.73.6): + - React-Core/RCTAnimationHeaders (0.74.6): - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact + - React-featureflags - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - - SocketRocket (= 0.6.1) + - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTBlobHeaders (0.73.6): + - React-Core/RCTBlobHeaders (0.74.6): - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact + - React-featureflags - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - - SocketRocket (= 0.6.1) + - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTImageHeaders (0.73.6): + - React-Core/RCTImageHeaders (0.74.6): - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact + - React-featureflags - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - - SocketRocket (= 0.6.1) + - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTLinkingHeaders (0.73.6): + - React-Core/RCTLinkingHeaders (0.74.6): - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact + - React-featureflags - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - - SocketRocket (= 0.6.1) + - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTNetworkHeaders (0.73.6): + - React-Core/RCTNetworkHeaders (0.74.6): - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact + - React-featureflags - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - - SocketRocket (= 0.6.1) + - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTSettingsHeaders (0.73.6): + - React-Core/RCTSettingsHeaders (0.74.6): - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact + - React-featureflags - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - - SocketRocket (= 0.6.1) + - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTTextHeaders (0.73.6): + - React-Core/RCTTextHeaders (0.74.6): - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact + - React-featureflags - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - - SocketRocket (= 0.6.1) + - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTVibrationHeaders (0.73.6): + - React-Core/RCTVibrationHeaders (0.74.6): - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation - React-Core/Default - React-cxxreact + - React-featureflags - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - - SocketRocket (= 0.6.1) + - SocketRocket (= 0.7.0) - Yoga - - React-Core/RCTWebSocket (0.73.6): + - React-Core/RCTWebSocket (0.74.6): - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-Core/Default (= 0.73.6) + - RCT-Folly (= 2024.01.01.00) + - RCTDeprecation + - React-Core/Default (= 0.74.6) - React-cxxreact + - React-featureflags - React-hermes - React-jsi - React-jsiexecutor + - React-jsinspector - React-perflogger - React-runtimescheduler - React-utils - - SocketRocket (= 0.6.1) + - SocketRocket (= 0.7.0) - Yoga - - React-CoreModules (0.73.6): - - RCT-Folly (= 2022.05.16.00) - - RCTTypeSafety (= 0.73.6) + - React-CoreModules (0.74.6): + - DoubleConversion + - fmt (= 9.1.0) + - RCT-Folly (= 2024.01.01.00) + - RCTTypeSafety (= 0.74.6) - React-Codegen - - React-Core/CoreModulesHeaders (= 0.73.6) - - React-jsi (= 0.73.6) + - React-Core/CoreModulesHeaders (= 0.74.6) + - React-jsi (= 0.74.6) + - React-jsinspector - React-NativeModulesApple - React-RCTBlob - - React-RCTImage (= 0.73.6) + - React-RCTImage (= 0.74.6) - ReactCommon - - SocketRocket (= 0.6.1) - - React-cxxreact (0.73.6): + - SocketRocket (= 0.7.0) + - React-cxxreact (0.74.6): - boost (= 1.83.0) - DoubleConversion - - fmt (~> 6.2.1) - - glog - - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.6) - - React-debug (= 0.73.6) - - React-jsi (= 0.73.6) - - React-jsinspector (= 0.73.6) - - React-logger (= 0.73.6) - - React-perflogger (= 0.73.6) - - React-runtimeexecutor (= 0.73.6) - - React-debug (0.73.6) - - React-Fabric (0.73.6): + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-callinvoker (= 0.74.6) + - React-debug (= 0.74.6) + - React-jsi (= 0.74.6) + - React-jsinspector + - React-logger (= 0.74.6) + - React-perflogger (= 0.74.6) + - React-runtimeexecutor (= 0.74.6) + - React-debug (0.74.6) + - React-Fabric (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/animations (= 0.73.6) - - React-Fabric/attributedstring (= 0.73.6) - - React-Fabric/componentregistry (= 0.73.6) - - React-Fabric/componentregistrynative (= 0.73.6) - - React-Fabric/components (= 0.73.6) - - React-Fabric/core (= 0.73.6) - - React-Fabric/imagemanager (= 0.73.6) - - React-Fabric/leakchecker (= 0.73.6) - - React-Fabric/mounting (= 0.73.6) - - React-Fabric/scheduler (= 0.73.6) - - React-Fabric/telemetry (= 0.73.6) - - React-Fabric/templateprocessor (= 0.73.6) - - React-Fabric/textlayoutmanager (= 0.73.6) - - React-Fabric/uimanager (= 0.73.6) + - React-Fabric/animations (= 0.74.6) + - React-Fabric/attributedstring (= 0.74.6) + - React-Fabric/componentregistry (= 0.74.6) + - React-Fabric/componentregistrynative (= 0.74.6) + - React-Fabric/components (= 0.74.6) + - React-Fabric/core (= 0.74.6) + - React-Fabric/imagemanager (= 0.74.6) + - React-Fabric/leakchecker (= 0.74.6) + - React-Fabric/mounting (= 0.74.6) + - React-Fabric/scheduler (= 0.74.6) + - React-Fabric/telemetry (= 0.74.6) + - React-Fabric/templateprocessor (= 0.74.6) + - React-Fabric/textlayoutmanager (= 0.74.6) + - React-Fabric/uimanager (= 0.74.6) - React-graphics - React-jsi - React-jsiexecutor @@ -525,12 +540,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/animations (0.73.6): + - React-Fabric/animations (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -544,12 +559,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/attributedstring (0.73.6): + - React-Fabric/attributedstring (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -563,12 +578,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistry (0.73.6): + - React-Fabric/componentregistry (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -582,12 +597,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/componentregistrynative (0.73.6): + - React-Fabric/componentregistrynative (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -601,28 +616,28 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components (0.73.6): + - React-Fabric/components (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core - React-cxxreact - React-debug - - React-Fabric/components/inputaccessory (= 0.73.6) - - React-Fabric/components/legacyviewmanagerinterop (= 0.73.6) - - React-Fabric/components/modal (= 0.73.6) - - React-Fabric/components/rncore (= 0.73.6) - - React-Fabric/components/root (= 0.73.6) - - React-Fabric/components/safeareaview (= 0.73.6) - - React-Fabric/components/scrollview (= 0.73.6) - - React-Fabric/components/text (= 0.73.6) - - React-Fabric/components/textinput (= 0.73.6) - - React-Fabric/components/unimplementedview (= 0.73.6) - - React-Fabric/components/view (= 0.73.6) + - React-Fabric/components/inputaccessory (= 0.74.6) + - React-Fabric/components/legacyviewmanagerinterop (= 0.74.6) + - React-Fabric/components/modal (= 0.74.6) + - React-Fabric/components/rncore (= 0.74.6) + - React-Fabric/components/root (= 0.74.6) + - React-Fabric/components/safeareaview (= 0.74.6) + - React-Fabric/components/scrollview (= 0.74.6) + - React-Fabric/components/text (= 0.74.6) + - React-Fabric/components/textinput (= 0.74.6) + - React-Fabric/components/unimplementedview (= 0.74.6) + - React-Fabric/components/view (= 0.74.6) - React-graphics - React-jsi - React-jsiexecutor @@ -631,12 +646,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/inputaccessory (0.73.6): + - React-Fabric/components/inputaccessory (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -650,12 +665,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/legacyviewmanagerinterop (0.73.6): + - React-Fabric/components/legacyviewmanagerinterop (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -669,12 +684,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/modal (0.73.6): + - React-Fabric/components/modal (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -688,12 +703,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/rncore (0.73.6): + - React-Fabric/components/rncore (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -707,12 +722,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/root (0.73.6): + - React-Fabric/components/root (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -726,12 +741,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/safeareaview (0.73.6): + - React-Fabric/components/safeareaview (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -745,12 +760,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/scrollview (0.73.6): + - React-Fabric/components/scrollview (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -764,12 +779,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/text (0.73.6): + - React-Fabric/components/text (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -783,12 +798,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/textinput (0.73.6): + - React-Fabric/components/textinput (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -802,12 +817,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/unimplementedview (0.73.6): + - React-Fabric/components/unimplementedview (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -821,12 +836,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/components/view (0.73.6): + - React-Fabric/components/view (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -841,12 +856,12 @@ PODS: - React-utils - ReactCommon/turbomodule/core - Yoga - - React-Fabric/core (0.73.6): + - React-Fabric/core (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -860,12 +875,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/imagemanager (0.73.6): + - React-Fabric/imagemanager (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -879,12 +894,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/leakchecker (0.73.6): + - React-Fabric/leakchecker (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -898,12 +913,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/mounting (0.73.6): + - React-Fabric/mounting (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -917,12 +932,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/scheduler (0.73.6): + - React-Fabric/scheduler (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -936,12 +951,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/telemetry (0.73.6): + - React-Fabric/telemetry (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -955,12 +970,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/templateprocessor (0.73.6): + - React-Fabric/templateprocessor (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -974,12 +989,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/textlayoutmanager (0.73.6): + - React-Fabric/textlayoutmanager (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -994,12 +1009,12 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-Fabric/uimanager (0.73.6): + - React-Fabric/uimanager (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - RCTRequired - RCTTypeSafety - React-Core @@ -1013,42 +1028,45 @@ PODS: - React-runtimescheduler - React-utils - ReactCommon/turbomodule/core - - React-FabricImage (0.73.6): + - React-FabricImage (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) - - RCTRequired (= 0.73.6) - - RCTTypeSafety (= 0.73.6) + - RCT-Folly/Fabric (= 2024.01.01.00) + - RCTRequired (= 0.74.6) + - RCTTypeSafety (= 0.74.6) - React-Fabric - React-graphics - React-ImageManager - React-jsi - - React-jsiexecutor (= 0.73.6) + - React-jsiexecutor (= 0.74.6) - React-logger - React-rendererdebug - React-utils - ReactCommon - Yoga - - React-graphics (0.73.6): + - React-featureflags (0.74.6) + - React-graphics (0.74.6): + - DoubleConversion + - fmt (= 9.1.0) - glog - - RCT-Folly/Fabric (= 2022.05.16.00) - - React-Core/Default (= 0.73.6) + - RCT-Folly/Fabric (= 2024.01.01.00) + - React-Core/Default (= 0.74.6) - React-utils - - React-hermes (0.73.6): + - React-hermes (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - RCT-Folly/Futures (= 2022.05.16.00) - - React-cxxreact (= 0.73.6) + - RCT-Folly (= 2024.01.01.00) + - React-cxxreact (= 0.74.6) - React-jsi - - React-jsiexecutor (= 0.73.6) - - React-jsinspector (= 0.73.6) - - React-perflogger (= 0.73.6) - - React-ImageManager (0.73.6): + - React-jsiexecutor (= 0.74.6) + - React-jsinspector + - React-perflogger (= 0.74.6) + - React-runtimeexecutor + - React-ImageManager (0.74.6): - glog - RCT-Folly/Fabric - React-Core/Default @@ -1057,31 +1075,41 @@ PODS: - React-graphics - React-rendererdebug - React-utils - - React-jserrorhandler (0.73.6): - - RCT-Folly/Fabric (= 2022.05.16.00) + - React-jserrorhandler (0.74.6): + - RCT-Folly/Fabric (= 2024.01.01.00) - React-debug - React-jsi - React-Mapbuffer - - React-jsi (0.73.6): + - React-jsi (0.74.6): - boost (= 1.83.0) - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-jsiexecutor (0.74.6): + - DoubleConversion + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-jsiexecutor (0.73.6): + - RCT-Folly (= 2024.01.01.00) + - React-cxxreact (= 0.74.6) + - React-jsi (= 0.74.6) + - React-jsinspector + - React-perflogger (= 0.74.6) + - React-jsinspector (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-cxxreact (= 0.73.6) - - React-jsi (= 0.73.6) - - React-perflogger (= 0.73.6) - - React-jsinspector (0.73.6) - - React-logger (0.73.6): + - RCT-Folly (= 2024.01.01.00) + - React-featureflags + - React-jsi + - React-runtimeexecutor (= 0.74.6) + - React-jsitracing (0.74.6): + - React-jsi + - React-logger (0.74.6): - glog - - React-Mapbuffer (0.73.6): + - React-Mapbuffer (0.74.6): - glog - React-debug - react-native-adjust (4.38.0): @@ -1090,25 +1118,35 @@ PODS: - react-native-biometrics (3.0.1): - React-Core - react-native-ble-plx (3.1.2): + - DoubleConversion - glog + - hermes-engine - MultiplatformBleAdapter (= 0.2.0) - - RCT-Folly (= 2022.05.16.00) + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Codegen - React-Core - - react-native-config (1.5.1): - - react-native-config/App (= 1.5.1) - - react-native-config/App (1.5.1): + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - react-native-config (1.5.3): + - react-native-config/App (= 1.5.3) + - react-native-config/App (1.5.3): - React-Core - react-native-fast-crypto (2.2.0): - React - react-native-fast-pbkdf2 (0.3.1): - React-Core - - react-native-flipper (0.163.0): - - React-Core - - react-native-flipper-performance-plugin (0.4.0): - - React-Core - - react-native-flipper-performance-plugin/FBDefines (= 0.4.0) - - react-native-flipper-performance-plugin/FBDefines (0.4.0): - - React-Core - react-native-get-random-values (1.11.0): - React-Core - react-native-image-crop-tools (1.6.4): @@ -1121,17 +1159,55 @@ PODS: - react-native-netinfo (9.5.0): - React-Core - react-native-pager-view (6.3.0): + - DoubleConversion - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Codegen - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - react-native-performance (3.1.2): - React-Core - react-native-randombytes (3.6.1): - React-Core - react-native-restart (0.0.24): - React-Core - - react-native-safe-area-context (4.9.0): + - react-native-safe-area-context (4.10.5): + - React-Core + - react-native-slider (4.5.0): + - DoubleConversion + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Codegen - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - react-native-splash-screen (3.2.0): - React - react-native-startup-time (2.1.0): @@ -1150,66 +1226,99 @@ PODS: - react-native-video/Video (5.2.1): - React-Core - react-native-webview (13.10.3): + - DoubleConversion - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Codegen - React-Core - - React-nativeconfig (0.73.6) - - React-NativeModulesApple (0.73.6): + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - React-nativeconfig (0.74.6) + - React-NativeModulesApple (0.74.6): - glog - hermes-engine - React-callinvoker - React-Core - React-cxxreact - React-jsi + - React-jsinspector - React-runtimeexecutor - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - React-perflogger (0.73.6) - - React-RCTActionSheet (0.73.6): - - React-Core/RCTActionSheetHeaders (= 0.73.6) - - React-RCTAnimation (0.73.6): - - RCT-Folly (= 2022.05.16.00) + - React-perflogger (0.74.6) + - React-RCTActionSheet (0.74.6): + - React-Core/RCTActionSheetHeaders (= 0.74.6) + - React-RCTAnimation (0.74.6): + - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Codegen - React-Core/RCTAnimationHeaders - React-jsi - React-NativeModulesApple - ReactCommon - - React-RCTAppDelegate (0.73.6): - - RCT-Folly + - React-RCTAppDelegate (0.74.6): + - RCT-Folly (= 2024.01.01.00) - RCTRequired - RCTTypeSafety + - React-Codegen - React-Core - React-CoreModules + - React-debug + - React-Fabric + - React-featureflags + - React-graphics - React-hermes - React-nativeconfig - React-NativeModulesApple - React-RCTFabric - React-RCTImage - React-RCTNetwork + - React-rendererdebug + - React-RuntimeApple + - React-RuntimeCore + - React-RuntimeHermes - React-runtimescheduler + - React-utils - ReactCommon - - React-RCTBlob (0.73.6): + - React-RCTBlob (0.74.6): + - DoubleConversion + - fmt (= 9.1.0) - hermes-engine - - RCT-Folly (= 2022.05.16.00) + - RCT-Folly (= 2024.01.01.00) - React-Codegen - React-Core/RCTBlobHeaders - React-Core/RCTWebSocket - React-jsi + - React-jsinspector - React-NativeModulesApple - React-RCTNetwork - ReactCommon - - React-RCTFabric (0.73.6): + - React-RCTFabric (0.74.6): - glog - hermes-engine - - RCT-Folly/Fabric (= 2022.05.16.00) + - RCT-Folly/Fabric (= 2024.01.01.00) - React-Core - React-debug - React-Fabric - React-FabricImage + - React-featureflags - React-graphics - React-ImageManager - React-jsi + - React-jsinspector - React-nativeconfig - React-RCTImage - React-RCTText @@ -1217,8 +1326,8 @@ PODS: - React-runtimescheduler - React-utils - Yoga - - React-RCTImage (0.73.6): - - RCT-Folly (= 2022.05.16.00) + - React-RCTImage (0.74.6): + - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Codegen - React-Core/RCTImageHeaders @@ -1226,100 +1335,146 @@ PODS: - React-NativeModulesApple - React-RCTNetwork - ReactCommon - - React-RCTLinking (0.73.6): + - React-RCTLinking (0.74.6): - React-Codegen - - React-Core/RCTLinkingHeaders (= 0.73.6) - - React-jsi (= 0.73.6) + - React-Core/RCTLinkingHeaders (= 0.74.6) + - React-jsi (= 0.74.6) - React-NativeModulesApple - ReactCommon - - ReactCommon/turbomodule/core (= 0.73.6) - - React-RCTNetwork (0.73.6): - - RCT-Folly (= 2022.05.16.00) + - ReactCommon/turbomodule/core (= 0.74.6) + - React-RCTNetwork (0.74.6): + - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Codegen - React-Core/RCTNetworkHeaders - React-jsi - React-NativeModulesApple - ReactCommon - - React-RCTSettings (0.73.6): - - RCT-Folly (= 2022.05.16.00) + - React-RCTSettings (0.74.6): + - RCT-Folly (= 2024.01.01.00) - RCTTypeSafety - React-Codegen - React-Core/RCTSettingsHeaders - React-jsi - React-NativeModulesApple - ReactCommon - - React-RCTText (0.73.6): - - React-Core/RCTTextHeaders (= 0.73.6) + - React-RCTText (0.74.6): + - React-Core/RCTTextHeaders (= 0.74.6) - Yoga - - React-RCTVibration (0.73.6): - - RCT-Folly (= 2022.05.16.00) + - React-RCTVibration (0.74.6): + - RCT-Folly (= 2024.01.01.00) - React-Codegen - React-Core/RCTVibrationHeaders - React-jsi - React-NativeModulesApple - ReactCommon - - React-rendererdebug (0.73.6): + - React-rendererdebug (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) - - RCT-Folly (= 2022.05.16.00) + - fmt (= 9.1.0) + - RCT-Folly (= 2024.01.01.00) - React-debug - - React-rncore (0.73.6) - - React-runtimeexecutor (0.73.6): - - React-jsi (= 0.73.6) - - React-runtimescheduler (0.73.6): + - React-rncore (0.74.6) + - React-RuntimeApple (0.74.6): + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - React-callinvoker + - React-Core/Default + - React-CoreModules + - React-cxxreact + - React-jserrorhandler + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-Mapbuffer + - React-NativeModulesApple + - React-RCTFabric + - React-RuntimeCore + - React-runtimeexecutor + - React-RuntimeHermes + - React-utils + - React-RuntimeCore (0.74.6): + - glog + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - React-cxxreact + - React-featureflags + - React-jserrorhandler + - React-jsi + - React-jsiexecutor + - React-jsinspector + - React-runtimeexecutor + - React-runtimescheduler + - React-utils + - React-runtimeexecutor (0.74.6): + - React-jsi (= 0.74.6) + - React-RuntimeHermes (0.74.6): + - hermes-engine + - RCT-Folly/Fabric (= 2024.01.01.00) + - React-featureflags + - React-hermes + - React-jsi + - React-jsinspector + - React-jsitracing + - React-nativeconfig + - React-RuntimeCore + - React-utils + - React-runtimescheduler (0.74.6): - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) + - RCT-Folly (= 2024.01.01.00) - React-callinvoker - React-cxxreact - React-debug + - React-featureflags - React-jsi - React-rendererdebug - React-runtimeexecutor - React-utils - - React-utils (0.73.6): + - React-utils (0.74.6): - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) - React-debug - - ReactCommon (0.73.6): - - React-logger (= 0.73.6) - - ReactCommon/turbomodule (= 0.73.6) - - ReactCommon/turbomodule (0.73.6): + - React-jsi (= 0.74.6) + - ReactCommon (0.74.6): + - ReactCommon/turbomodule (= 0.74.6) + - ReactCommon/turbomodule (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) - - glog - - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.6) - - React-cxxreact (= 0.73.6) - - React-jsi (= 0.73.6) - - React-logger (= 0.73.6) - - React-perflogger (= 0.73.6) - - ReactCommon/turbomodule/bridging (= 0.73.6) - - ReactCommon/turbomodule/core (= 0.73.6) - - ReactCommon/turbomodule/bridging (0.73.6): + - fmt (= 9.1.0) + - glog + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - React-callinvoker (= 0.74.6) + - React-cxxreact (= 0.74.6) + - React-jsi (= 0.74.6) + - React-logger (= 0.74.6) + - React-perflogger (= 0.74.6) + - ReactCommon/turbomodule/bridging (= 0.74.6) + - ReactCommon/turbomodule/core (= 0.74.6) + - ReactCommon/turbomodule/bridging (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.6) - - React-cxxreact (= 0.73.6) - - React-jsi (= 0.73.6) - - React-logger (= 0.73.6) - - React-perflogger (= 0.73.6) - - ReactCommon/turbomodule/core (0.73.6): + - RCT-Folly (= 2024.01.01.00) + - React-callinvoker (= 0.74.6) + - React-cxxreact (= 0.74.6) + - React-jsi (= 0.74.6) + - React-logger (= 0.74.6) + - React-perflogger (= 0.74.6) + - ReactCommon/turbomodule/core (0.74.6): - DoubleConversion - - fmt (~> 6.2.1) + - fmt (= 9.1.0) - glog - hermes-engine - - RCT-Folly (= 2022.05.16.00) - - React-callinvoker (= 0.73.6) - - React-cxxreact (= 0.73.6) - - React-jsi (= 0.73.6) - - React-logger (= 0.73.6) - - React-perflogger (= 0.73.6) + - RCT-Folly (= 2024.01.01.00) + - React-callinvoker (= 0.74.6) + - React-cxxreact (= 0.74.6) + - React-debug (= 0.74.6) + - React-jsi (= 0.74.6) + - React-logger (= 0.74.6) + - React-perflogger (= 0.74.6) + - React-utils (= 0.74.6) - ReactNativePerformance (4.1.2): - React-Core - rn-fetch-blob (0.12.0): @@ -1350,9 +1505,26 @@ PODS: - RNFlashList (1.6.4): - React-Core - RNGestureHandler (2.16.0): + - DoubleConversion - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Codegen - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - RNInAppBrowser (3.7.0): - React-Core - RNKeychain (7.0.0): @@ -1361,28 +1533,79 @@ PODS: - React-Core - RNReactNativeHapticFeedback (2.2.0): - React-Core - - RNReanimated (3.8.1): + - RNReanimated (3.9.0): + - DoubleConversion - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Codegen - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging - ReactCommon/turbomodule/core - - RNScreens (3.30.1): + - Yoga + - RNScreens (3.31.1): + - DoubleConversion - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Codegen - React-Core - - RNSentry (5.20.0): + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-RCTImage + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga + - RNSentry (5.24.3): - hermes-engine - React-Core - React-hermes - - Sentry/HybridSDK (= 8.21.0) + - Sentry/HybridSDK (= 8.36.0) - RNShare (10.1.0): - React-Core - RNSVG (13.14.0): - React-Core - - RNVectorIcons (10.0.3): + - RNVectorIcons (10.2.0): + - DoubleConversion - glog - - RCT-Folly (= 2022.05.16.00) + - hermes-engine + - RCT-Folly (= 2024.01.01.00) + - RCTRequired + - RCTTypeSafety + - React-Codegen - React-Core + - React-debug + - React-Fabric + - React-featureflags + - React-graphics + - React-ImageManager + - React-NativeModulesApple + - React-RCTFabric + - React-rendererdebug + - React-utils + - ReactCommon/turbomodule/bridging + - ReactCommon/turbomodule/core + - Yoga - SDWebImage (5.11.1): - SDWebImage/Core (= 5.11.1) - SDWebImage/Core (5.11.1) @@ -1392,18 +1615,16 @@ PODS: - segment-analytics-react-native (2.19.1): - React-Core - sovran-react-native - - Sentry/HybridSDK (8.21.0): - - SentryPrivate (= 8.21.0) - - SentryPrivate (8.21.0) - - SocketRocket (0.6.1) + - Sentry/HybridSDK (8.36.0) + - SocketRocket (0.7.0) - sovran-react-native (0.4.5): - React-Core - Storyly (3.6.0) - - storyly-react-native (3.6.0): + - storyly-react-native (3.6.2): - React - Storyly (= 3.6.0) - TOCropViewController (2.5.3) - - Yoga (1.14.0) + - Yoga (0.0.0) - ZXingObjC/Core (3.6.9) - ZXingObjC/OneD (3.6.9): - ZXingObjC/Core @@ -1414,59 +1635,39 @@ DEPENDENCIES: - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`) - "braze-react-native-sdk (from `../node_modules/@braze/react-native-sdk`)" - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) - - "EXBarCodeScanner (from `../../../node_modules/.pnpm/expo-barcode-scanner@12.9.3_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3__xds2uwnmoex7rjfaoyf7n2twgy/node_modules/expo-barcode-scanner/ios`)" - - "EXConstants (from `../../../node_modules/.pnpm/expo-constants@15.4.5_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react@_cnantpp5jdrsry5fwmadd7jmpu/node_modules/expo-constants/ios`)" - - "EXFont (from `../../../node_modules/.pnpm/expo-font@11.10.3_expo-asset@9.0.2_x6jx2c3uh37zhhy4kbscqiikyy__expo-modules-core@1.11.12_reac_b4wzlwmvjsiwutnhiqc6jluhgm/node_modules/expo-font/ios`)" - - "EXImageLoader (from `../../../node_modules/.pnpm/expo-image-loader@4.6.0_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_reac_wajnkpyn453mstvl5ptvmgckqi/node_modules/expo-image-loader/ios`)" - - "Expo (from `../../../node_modules/.pnpm/expo@50.0.14_@babel+core@7.24.3_@react-native+babel-preset@0.73.19_@babel+core@7.24.3__expo-m_x6ekalzt4c5scoc72n5xqrun6q/node_modules/expo`)" - - "ExpoCamera (from `../../../node_modules/.pnpm/expo-camera@14.1.3_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react@18._7axu465aov6jwcuohjxifpffzu/node_modules/expo-camera/ios`)" - - "ExpoCrypto (from `../../../node_modules/.pnpm/expo-crypto@12.8.1_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react@18._f3pw2vhdzqwifnm4jdvwei6rie/node_modules/expo-crypto/ios`)" - - "ExpoFileSystem (from `../../../node_modules/.pnpm/expo-file-system@16.0.8_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_reac_f2vophyguewptethhwrvhw6jze/node_modules/expo-file-system/ios`)" - - "ExpoImageManipulator (from `../../../node_modules/.pnpm/expo-image-manipulator@11.8.0_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24._sgbzbk7nfhtlihtns5cja4huei/node_modules/expo-image-manipulator/ios`)" - - "ExpoKeepAwake (from `../../../node_modules/.pnpm/expo-keep-awake@12.8.2_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react_gqhplzyroote7enqgwhytprwhq/node_modules/expo-keep-awake/ios`)" - - "ExpoModulesCore (from `../../../node_modules/.pnpm/expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react@18.2.0__react@18.2.0/node_modules/expo-modules-core`)" + - "EXBarCodeScanner (from `../../../node_modules/.pnpm/expo-barcode-scanner@13.0.1_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3__ie6habst4thvrqdwbevztsmfk4/node_modules/expo-barcode-scanner/ios`)" + - "EXConstants (from `../../../node_modules/.pnpm/expo-constants@16.0.2_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@types_liflxwmk276el2ih7mgj7trxsa/node_modules/expo-constants/ios`)" + - "EXImageLoader (from `../../../node_modules/.pnpm/expo-image-loader@4.7.0_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@typ_b77a4f2pdg2ixrbbkonf757ueq/node_modules/expo-image-loader/ios`)" + - "Expo (from `../../../node_modules/.pnpm/expo@51.0.37_@babel+core@7.24.3_expo-modules-autolinking@1.11.2_expo-modules-core@1.12.25_rea_usn46ursd2zao36c77uxq4bcoi/node_modules/expo`)" + - "ExpoAsset (from `../../../node_modules/.pnpm/expo-asset@10.0.10_tns433hakj4ir7nudcudkynxq4/node_modules/expo-asset/ios`)" + - "ExpoCamera (from `../../../node_modules/.pnpm/expo-camera@15.0.16_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@types+r_2gtna3c7sr66hvuyecf5uowmku/node_modules/expo-camera/ios`)" + - "ExpoCrypto (from `../../../node_modules/.pnpm/expo-crypto@13.0.2_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@types+re_xxtd2hu6gdbmzueoq3msthov54/node_modules/expo-crypto/ios`)" + - "ExpoFileSystem (from `../../../node_modules/.pnpm/expo-file-system@17.0.1_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@typ_cqwrznye7figr4xvv4nfvbgbt4/node_modules/expo-file-system/ios`)" + - "ExpoFont (from `../../../node_modules/.pnpm/expo-font@12.0.10_expo-asset@10.0.10_tns433hakj4ir7nudcudkynxq4__expo-modules-core@1.12.25_re_d6nkidk46blrzk332fk2cqh5eu/node_modules/expo-font/ios`)" + - "ExpoImageManipulator (from `../../../node_modules/.pnpm/expo-image-manipulator@12.0.5_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24._tbxw5uibtm726sirzzonb5rlr4/node_modules/expo-image-manipulator/ios`)" + - "ExpoKeepAwake (from `../../../node_modules/.pnpm/expo-keep-awake@13.0.2_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@type_ynnhgvrdko6rdzzdqm6wi2csaa/node_modules/expo-keep-awake/ios`)" + - "ExpoModulesCore (from `../../../node_modules/.pnpm/expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@types+react@18.2.73_react@18.2.0__react@18.2.0/node_modules/expo-modules-core`)" - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) - - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`) - - Flipper (= 0.201.0) - - Flipper-Boost-iOSX (= 1.76.0.1.11) - - Flipper-DoubleConversion (= 3.2.0.1) - - Flipper-Fmt (= 7.1.7) - - Flipper-Folly (= 2.6.10) - - Flipper-Glog (= 0.5.0.5) - - Flipper-PeerTalk (= 0.0.4) - - FlipperKit (= 0.201.0) - - FlipperKit/Core (= 0.201.0) - - FlipperKit/CppBridge (= 0.201.0) - - FlipperKit/FBCxxFollyDynamicConvert (= 0.201.0) - - FlipperKit/FBDefines (= 0.201.0) - - FlipperKit/FKPortForwarding (= 0.201.0) - - FlipperKit/FlipperKitHighlightOverlay (= 0.201.0) - - FlipperKit/FlipperKitLayoutPlugin (= 0.201.0) - - FlipperKit/FlipperKitLayoutTextSearchable (= 0.201.0) - - FlipperKit/FlipperKitNetworkPlugin (= 0.201.0) - - FlipperKit/FlipperKitReactPlugin (= 0.201.0) - - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.201.0) - - FlipperKit/SKIOSNetworkPlugin (= 0.201.0) + - fmt (from `../node_modules/react-native/third-party-podspecs/fmt.podspec`) - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) - hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`) - - libevent (~> 2.1.12) - lottie-react-native (from `../node_modules/lottie-react-native`) - - OpenSSL-Universal (= 1.1.1100) - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`) - - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) + - RCTDeprecation (from `../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`) + - RCTRequired (from `../node_modules/react-native/Libraries/Required`) - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) - React (from `../node_modules/react-native/`) - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) - React-Codegen (from `build/generated/ios`) - React-Core (from `../node_modules/react-native/`) - - React-Core/DevSupport (from `../node_modules/react-native/`) - React-Core/RCTWebSocket (from `../node_modules/react-native/`) - React-CoreModules (from `../node_modules/react-native/React/CoreModules`) - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) - React-debug (from `../node_modules/react-native/ReactCommon/react/debug`) - React-Fabric (from `../node_modules/react-native/ReactCommon`) - React-FabricImage (from `../node_modules/react-native/ReactCommon`) + - React-featureflags (from `../node_modules/react-native/ReactCommon/react/featureflags`) - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`) - React-hermes (from `../node_modules/react-native/ReactCommon/hermes`) - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`) @@ -1474,6 +1675,7 @@ DEPENDENCIES: - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`) + - React-jsitracing (from `../node_modules/react-native/ReactCommon/hermes/executor/`) - React-logger (from `../node_modules/react-native/ReactCommon/logger`) - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`) - react-native-adjust (from `../node_modules/react-native-adjust`) @@ -1482,8 +1684,6 @@ DEPENDENCIES: - react-native-config (from `../node_modules/react-native-config`) - react-native-fast-crypto (from `../node_modules/react-native-fast-crypto`) - react-native-fast-pbkdf2 (from `../node_modules/react-native-fast-pbkdf2`) - - react-native-flipper (from `../node_modules/react-native-flipper`) - - react-native-flipper-performance-plugin (from `../node_modules/react-native-flipper-performance-plugin`) - react-native-get-random-values (from `../node_modules/react-native-get-random-values`) - react-native-image-crop-tools (from `../node_modules/react-native-image-crop-tools`) - react-native-image-picker (from `../node_modules/react-native-image-picker`) @@ -1494,6 +1694,7 @@ DEPENDENCIES: - react-native-randombytes (from `../node_modules/react-native-randombytes`) - react-native-restart (from `../node_modules/react-native-restart`) - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) + - "react-native-slider (from `../node_modules/@react-native-community/slider`)" - react-native-splash-screen (from `../node_modules/react-native-splash-screen`) - react-native-startup-time (from `../node_modules/react-native-startup-time`) - react-native-tcp-socket (from `../node_modules/react-native-tcp-socket`) @@ -1517,7 +1718,10 @@ DEPENDENCIES: - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`) - React-rncore (from `../node_modules/react-native/ReactCommon`) + - React-RuntimeApple (from `../node_modules/react-native/ReactCommon/react/runtime/platform/ios`) + - React-RuntimeCore (from `../node_modules/react-native/ReactCommon/react/runtime`) - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`) + - React-RuntimeHermes (from `../node_modules/react-native/ReactCommon/react/runtime`) - React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`) - React-utils (from `../node_modules/react-native/ReactCommon/react/utils`) - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) @@ -1562,28 +1766,16 @@ SPEC REPOS: - FirebaseInstallations - FirebaseMessaging - FirebaseRemoteConfig - - Flipper - - Flipper-Boost-iOSX - - Flipper-DoubleConversion - - Flipper-Fmt - - Flipper-Folly - - Flipper-Glog - - Flipper-PeerTalk - - FlipperKit - - fmt - GoogleDataTransport - GoogleUtilities - - libevent - libwebp - lottie-ios - MultiplatformBleAdapter - nanopb - - OpenSSL-Universal - PromisesObjC - SDWebImage - SDWebImageWebPCoder - Sentry - - SentryPrivate - SocketRocket - Storyly - TOCropViewController @@ -1597,42 +1789,46 @@ EXTERNAL SOURCES: DoubleConversion: :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" EXBarCodeScanner: - :path: "../../../node_modules/.pnpm/expo-barcode-scanner@12.9.3_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3__xds2uwnmoex7rjfaoyf7n2twgy/node_modules/expo-barcode-scanner/ios" + :path: "../../../node_modules/.pnpm/expo-barcode-scanner@13.0.1_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3__ie6habst4thvrqdwbevztsmfk4/node_modules/expo-barcode-scanner/ios" EXConstants: - :path: "../../../node_modules/.pnpm/expo-constants@15.4.5_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react@_cnantpp5jdrsry5fwmadd7jmpu/node_modules/expo-constants/ios" - EXFont: - :path: "../../../node_modules/.pnpm/expo-font@11.10.3_expo-asset@9.0.2_x6jx2c3uh37zhhy4kbscqiikyy__expo-modules-core@1.11.12_reac_b4wzlwmvjsiwutnhiqc6jluhgm/node_modules/expo-font/ios" + :path: "../../../node_modules/.pnpm/expo-constants@16.0.2_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@types_liflxwmk276el2ih7mgj7trxsa/node_modules/expo-constants/ios" EXImageLoader: - :path: "../../../node_modules/.pnpm/expo-image-loader@4.6.0_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_reac_wajnkpyn453mstvl5ptvmgckqi/node_modules/expo-image-loader/ios" + :path: "../../../node_modules/.pnpm/expo-image-loader@4.7.0_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@typ_b77a4f2pdg2ixrbbkonf757ueq/node_modules/expo-image-loader/ios" Expo: - :path: "../../../node_modules/.pnpm/expo@50.0.14_@babel+core@7.24.3_@react-native+babel-preset@0.73.19_@babel+core@7.24.3__expo-m_x6ekalzt4c5scoc72n5xqrun6q/node_modules/expo" + :path: "../../../node_modules/.pnpm/expo@51.0.37_@babel+core@7.24.3_expo-modules-autolinking@1.11.2_expo-modules-core@1.12.25_rea_usn46ursd2zao36c77uxq4bcoi/node_modules/expo" + ExpoAsset: + :path: "../../../node_modules/.pnpm/expo-asset@10.0.10_tns433hakj4ir7nudcudkynxq4/node_modules/expo-asset/ios" ExpoCamera: - :path: "../../../node_modules/.pnpm/expo-camera@14.1.3_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react@18._7axu465aov6jwcuohjxifpffzu/node_modules/expo-camera/ios" + :path: "../../../node_modules/.pnpm/expo-camera@15.0.16_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@types+r_2gtna3c7sr66hvuyecf5uowmku/node_modules/expo-camera/ios" ExpoCrypto: - :path: "../../../node_modules/.pnpm/expo-crypto@12.8.1_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react@18._f3pw2vhdzqwifnm4jdvwei6rie/node_modules/expo-crypto/ios" + :path: "../../../node_modules/.pnpm/expo-crypto@13.0.2_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@types+re_xxtd2hu6gdbmzueoq3msthov54/node_modules/expo-crypto/ios" ExpoFileSystem: - :path: "../../../node_modules/.pnpm/expo-file-system@16.0.8_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_reac_f2vophyguewptethhwrvhw6jze/node_modules/expo-file-system/ios" + :path: "../../../node_modules/.pnpm/expo-file-system@17.0.1_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@typ_cqwrznye7figr4xvv4nfvbgbt4/node_modules/expo-file-system/ios" + ExpoFont: + :path: "../../../node_modules/.pnpm/expo-font@12.0.10_expo-asset@10.0.10_tns433hakj4ir7nudcudkynxq4__expo-modules-core@1.12.25_re_d6nkidk46blrzk332fk2cqh5eu/node_modules/expo-font/ios" ExpoImageManipulator: - :path: "../../../node_modules/.pnpm/expo-image-manipulator@11.8.0_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24._sgbzbk7nfhtlihtns5cja4huei/node_modules/expo-image-manipulator/ios" + :path: "../../../node_modules/.pnpm/expo-image-manipulator@12.0.5_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24._tbxw5uibtm726sirzzonb5rlr4/node_modules/expo-image-manipulator/ios" ExpoKeepAwake: - :path: "../../../node_modules/.pnpm/expo-keep-awake@12.8.2_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react_gqhplzyroote7enqgwhytprwhq/node_modules/expo-keep-awake/ios" + :path: "../../../node_modules/.pnpm/expo-keep-awake@13.0.2_expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@type_ynnhgvrdko6rdzzdqm6wi2csaa/node_modules/expo-keep-awake/ios" ExpoModulesCore: - :path: "../../../node_modules/.pnpm/expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react@18.2.0__react@18.2.0/node_modules/expo-modules-core" + :path: "../../../node_modules/.pnpm/expo-modules-core@1.12.25_react-native@0.74.6_@babel+core@7.24.3_@types+react@18.2.73_react@18.2.0__react@18.2.0/node_modules/expo-modules-core" FBLazyVector: :path: "../node_modules/react-native/Libraries/FBLazyVector" - FBReactNativeSpec: - :path: "../node_modules/react-native/React/FBReactNativeSpec" + fmt: + :podspec: "../node_modules/react-native/third-party-podspecs/fmt.podspec" glog: :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" hermes-engine: :podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec" - :tag: hermes-2024-02-20-RNv0.73.5-18f99ace4213052c5e7cdbcd39ee9766cd5df7e4 + :tag: hermes-2024-09-30-RNv0.74.6-6f503f52cbf98b2b37c4d3900e7f1193d6512548 lottie-react-native: :path: "../node_modules/lottie-react-native" RCT-Folly: :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec" + RCTDeprecation: + :path: "../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation" RCTRequired: - :path: "../node_modules/react-native/Libraries/RCTRequired" + :path: "../node_modules/react-native/Libraries/Required" RCTTypeSafety: :path: "../node_modules/react-native/Libraries/TypeSafety" React: @@ -1653,6 +1849,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon" React-FabricImage: :path: "../node_modules/react-native/ReactCommon" + React-featureflags: + :path: "../node_modules/react-native/ReactCommon/react/featureflags" React-graphics: :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics" React-hermes: @@ -1667,6 +1865,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/jsiexecutor" React-jsinspector: :path: "../node_modules/react-native/ReactCommon/jsinspector-modern" + React-jsitracing: + :path: "../node_modules/react-native/ReactCommon/hermes/executor/" React-logger: :path: "../node_modules/react-native/ReactCommon/logger" React-Mapbuffer: @@ -1683,10 +1883,6 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-fast-crypto" react-native-fast-pbkdf2: :path: "../node_modules/react-native-fast-pbkdf2" - react-native-flipper: - :path: "../node_modules/react-native-flipper" - react-native-flipper-performance-plugin: - :path: "../node_modules/react-native-flipper-performance-plugin" react-native-get-random-values: :path: "../node_modules/react-native-get-random-values" react-native-image-crop-tools: @@ -1707,6 +1903,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-restart" react-native-safe-area-context: :path: "../node_modules/react-native-safe-area-context" + react-native-slider: + :path: "../node_modules/@react-native-community/slider" react-native-splash-screen: :path: "../node_modules/react-native-splash-screen" react-native-startup-time: @@ -1753,8 +1951,14 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native/ReactCommon/react/renderer/debug" React-rncore: :path: "../node_modules/react-native/ReactCommon" + React-RuntimeApple: + :path: "../node_modules/react-native/ReactCommon/react/runtime/platform/ios" + React-RuntimeCore: + :path: "../node_modules/react-native/ReactCommon/react/runtime" React-runtimeexecutor: :path: "../node_modules/react-native/ReactCommon/runtimeexecutor" + React-RuntimeHermes: + :path: "../node_modules/react-native/ReactCommon/react/runtime" React-runtimescheduler: :path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler" React-utils: @@ -1822,20 +2026,20 @@ SPEC CHECKSUMS: BrazeLocation: b8261e356f7d193ae9f768bd1ec83b220c17c227 BrazeUI: 55cbc8362c87abd74c57c3fa5b133f1cc164175f CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 - DoubleConversion: fea03f2699887d960129cc54bba7e52542b6f953 - EXBarCodeScanner: d59fd943cebee3f913ebf4ffde0d05d344da8b78 - EXConstants: 988aa430ca0f76b43cd46b66e7fae3287f9cc2fc - EXFont: f20669cb266ef48b004f1eb1f2b20db96cd1df9f - EXImageLoader: 55080616b2fe9da19ef8c7f706afd9814e279b6b - Expo: e01a77c6fa4bc80a6d1bb949cda1d12d21044abd - ExpoCamera: f3f157db67e5a491e1104a2c0018c240242936e7 - ExpoCrypto: b6428f48599c007676dc81a9b5f72c07e62fdccc - ExpoFileSystem: eecaf6796aed0f4dd20042dc2ca2cac6c4bc1185 - ExpoImageManipulator: c1d7cb865eacd620a35659f3da34c70531f10b59 - ExpoKeepAwake: 0f5cad99603a3268e50af9a6eb8b76d0d9ac956c - ExpoModulesCore: 61dc57c6e2a35f2f84baf488146db624e03af4cd - FBLazyVector: f64d1e2ea739b4d8f7e4740cde18089cd97fe864 - FBReactNativeSpec: 7351d9daa8a692bc3af6eb00a56e4cdb07403431 + DoubleConversion: 76ab83afb40bddeeee456813d9c04f67f78771b5 + EXBarCodeScanner: e2dd9b42c1b522a2adc9202b1dfbc64cb34456d1 + EXConstants: 409690fbfd5afea964e5e9d6c4eb2c2b59222c59 + EXImageLoader: ab589d67d6c5f2c33572afea9917304418566334 + Expo: 67b60b3b80a3c8e9f3bcaaa84d06d140229a246d + ExpoAsset: 323700f291684f110fb55f0d4022a3362ea9f875 + ExpoCamera: 929be541d1c1319fcf32f9f5d9df8b97804346b5 + ExpoCrypto: 156078f266bf28f80ecf5e2a9c3a0d6ffce07a1c + ExpoFileSystem: 80bfe850b1f9922c16905822ecbf97acd711dc51 + ExpoFont: 00756e6c796d8f7ee8d211e29c8b619e75cbf238 + ExpoImageManipulator: aea99205c66043a00a0af90e345395637b9902fa + ExpoKeepAwake: 3b8815d9dd1d419ee474df004021c69fdd316d08 + ExpoModulesCore: 0e7d4d5c13169bbbd53496721d811adbcc5d600a + FBLazyVector: 4b1589d37c9ff4dba11a63083fe7515fad3ac111 Firebase: 5f8193dff4b5b7c5d5ef72ae54bb76c08e2b841d FirebaseABTesting: 10cbce8db9985ae2e3847ea44e9947dd18f94e10 FirebaseCore: 5743c5785c074a794d35f2fff7ecc254a91e08b1 @@ -1843,93 +2047,88 @@ SPEC CHECKSUMS: FirebaseInstallations: 40bd9054049b2eae9a2c38ef1c3dd213df3605cd FirebaseMessaging: 5e5118a2383b3531e730d974680954c679ca0a13 FirebaseRemoteConfig: 2d6e2cfdb49af79535c8af8a80a4a5009038ec2b - Flipper: c7a0093234c4bdd456e363f2f19b2e4b27652d44 - Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c - Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30 - Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b - Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3 - Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446 - Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9 - FlipperKit: 37525a5d056ef9b93d1578e04bc3ea1de940094f - fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9 - glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2 + fmt: 4c2741a687cc09f0634a2e2c72a838b99f1ff120 + glog: fdfdfe5479092de0c4bdbebedd9056951f092c4f GoogleDataTransport: 6c09b596d841063d76d4288cc2d2f42cc36e1e2a - GoogleUtilities: d053d902a8edaa9904e1bd00c37535385b8ed152 - hermes-engine: 9cecf9953a681df7556b8cc9c74905de8f3293c0 - libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 + GoogleUtilities: ea963c370a38a8069cc5f7ba4ca849a60b6d7d15 + hermes-engine: 2102c92e54a031a270fd1fe84169ec8a0901b7bd libwebp: 1786c9f4ff8a279e4dac1e8f385004d5fc253009 lottie-ios: fcb5e73e17ba4c983140b7d21095c834b3087418 - lottie-react-native: 13cd0c4782c3e6bb26bfa4cc2d08bfb84f6d1ab6 + lottie-react-native: f851c0e235f171d99083c803f728f644be1dcf65 MultiplatformBleAdapter: b1fddd0d499b96b607e00f0faa8e60648343dc1d nanopb: a0ba3315591a9ae0a16a309ee504766e90db0c96 - OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c PromisesObjC: f5707f49cb48b9636751c5b2e7d227e43fba9f47 - RCT-Folly: 7169b2b1c44399c76a47b5deaaba715eeeb476c0 - RCTRequired: ca1d7414aba0b27efcfa2ccd37637edb1ab77d96 - RCTTypeSafety: 678e344fb976ff98343ca61dc62e151f3a042292 - React: e296bcebb489deaad87326067204eb74145934ab - React-callinvoker: d0b7015973fa6ccb592bb0363f6bc2164238ab8c - React-Codegen: f034a5de6f28e15e8d95d171df17e581d5309268 - React-Core: 44c936d0ab879e9c32e5381bd7596a677c59c974 - React-CoreModules: 558228e12cddb9ca00ff7937894cc5104a21be6b - React-cxxreact: 1fcf565012c203655b3638f35aa03c13c2ed7e9e - React-debug: d444db402065cca460d9c5b072caab802a04f729 - React-Fabric: 7d11905695e42f8bdaedddcf294959b43b290ab8 - React-FabricImage: 6e06a512d2fb5f55669c721578736785d915d4f5 - React-graphics: 5500206f7c9a481456365403c9fcf1638de108b7 - React-hermes: 783023e43af9d6be4fbaeeb96b5beee00649a5f7 - React-ImageManager: df193215ff3cf1a8dad297e554c89c632e42436c - React-jserrorhandler: a4d0f541c5852cf031db2f82f51de90be55b1334 - React-jsi: ae102ccb38d2e4d0f512b7074d0c9b4e1851f402 - React-jsiexecutor: bd12ec75873d3ef0a755c11f878f2c420430f5a9 - React-jsinspector: 85583ef014ce53d731a98c66a0e24496f7a83066 - React-logger: 3eb80a977f0d9669468ef641a5e1fabbc50a09ec - React-Mapbuffer: 84ea43c6c6232049135b1550b8c60b2faac19fab + RCT-Folly: 02617c592a293bd6d418e0a88ff4ee1f88329b47 + RCTDeprecation: 5f1d7e1f8ef6c53f0207e3ac0d0ca23575e8a6ab + RCTRequired: dcfd24ece09940bbf24b7c2974f4eb68a9baee55 + RCTTypeSafety: 3d65944055cc73f3bb28c3f05c7eaff2bb7ceb83 + React: c5e9f3c07a890a7e2a1ec9b79faa5c53dd7aee01 + React-callinvoker: 9ac986dbbd0e1b3463cb740b12c0b37dbcd15fed + React-Codegen: f5bd8446ba2b7d4a7bb4b25e137f44f286eb98f7 + React-Core: e8de3613460de4f02cdf6a0d726526fe273766b4 + React-CoreModules: 704fd52f83780e1870a946d5c3ea6ea1175aa523 + React-cxxreact: 75572783e7feae5a9f67157ea13968bf5ab274a3 + React-debug: 180e1bf4a97fa4404ee7fb68952cace122aa9d73 + React-Fabric: 1118712bb2dfae21b7d03d5daf419018e867f8e9 + React-FabricImage: 3878f51fa0ac860fb733f0a3c958442a7b5ec587 + React-featureflags: 05fabc5e165fa3864c879556e83a455b8a0573fa + React-graphics: 77bb68d9d913682a23c621df01ab61b2e58a5c70 + React-hermes: e4c48dab6830b282e1b41023cdae9b5c1f7ae075 + React-ImageManager: 6dbe9e5578c03d48b25e646ee65faa63b10e9544 + React-jserrorhandler: 16f7ef986fd20a2d342e5430c9dd0502a4136320 + React-jsi: b34c85593159261ce19f9c5fd0a627b3dc1483c6 + React-jsiexecutor: dcf7df38a296d104b196c193a0111d3f8a46da0b + React-jsinspector: 7dfaff7a0f57d23eeab023fe6a243f7707a14f6d + React-jsitracing: df84cc252a1f4bb0970f7fe13c470451b18c2cbb + React-logger: de9b65c8c7b71a663e6e99d347b1c445f5190c39 + React-Mapbuffer: 766bb4d8f655d816913325b353d800debbde7209 react-native-adjust: 801fe33f0dc0097b0474f11d08572a89fa6602ce react-native-biometrics: 352e5a794bfffc46a0c86725ea7dc62deb085bdc - react-native-ble-plx: c040d0123518e121bf4cda02061bf72644f68d15 - react-native-config: 86038147314e2e6d10ea9972022aa171e6b1d4d8 + react-native-ble-plx: cd7b99ddaf7c15e652c63f87a12e96c715ee3c80 + react-native-config: 8f7283449bbb048902f4e764affbbf24504454af react-native-fast-crypto: 5943c42466b86ad70be60d3a5f64bd22251e5d9e react-native-fast-pbkdf2: 44d6ffa0346863e14100294004a1595ec76b2e9f - react-native-flipper: 2d552a8178d839ef378220101fb7f0cd5b2a8003 - react-native-flipper-performance-plugin: 42ec5017abd26e7c5a1f527f2db92c14a90cabdb react-native-get-random-values: 21325b2244dfa6b58878f51f9aa42821e7ba3d06 react-native-image-crop-tools: a751dae773f66ceac0bea7d894dc6bc219a69c03 react-native-image-picker: 3269f75c251cdcd61ab51b911dd30d6fff8c6169 react-native-launch-arguments: 5f41e0abf88a15e3c5309b8875d6fd5ac43df49d react-native-netinfo: 48c5f79a84fbc3ba1d28a8b0d04adeda72885fa8 - react-native-pager-view: 0eb900a8c5d83c02a74b0125d4b5f9fdcc5b8f44 + react-native-pager-view: c1e29e1a6105a02807392ba822ad322447a72f55 react-native-performance: e66c3730f9e463b959dc21ff38fd2c8b8e53ea79 react-native-randombytes: 421f1c7d48c0af8dbcd471b0324393ebf8fe7846 react-native-restart: 45c8dca02491980f2958595333cbccd6877cb57e - react-native-safe-area-context: b97eb6f9e3b7f437806c2ce5983f479f8eb5de4b + react-native-safe-area-context: a240ad4b683349e48b1d51fed1611138d1bdad97 + react-native-slider: 315e6552460f5d7753c71cf3142b00161cb2d5a5 react-native-splash-screen: 200d11d188e2e78cea3ad319964f6142b6384865 react-native-startup-time: 8ceecdaaae6bc912f4ea668d91ecbacb04981817 react-native-tcp-socket: e724380c910c2e704816ec817ed28f1342246ff7 react-native-udp: df79c3cb72c4e71240cd3ce4687bfb8a137140d5 react-native-version-number: b415bbec6a13f2df62bf978e85bc0d699462f37f react-native-video: c26780b224543c62d5e1b2a7244a5cd1b50e8253 - react-native-webview: d2116987f3a75ba677a9f49565bae6834d0e12c4 - React-nativeconfig: b4d4e9901d4cabb57be63053fd2aa6086eb3c85f - React-NativeModulesApple: cd26e56d56350e123da0c1e3e4c76cb58a05e1ee - React-perflogger: 5f49905de275bac07ac7ea7f575a70611fa988f2 - React-RCTActionSheet: 37edf35aeb8e4f30e76c82aab61f12d1b75c04ec - React-RCTAnimation: a69de7f3daa8462743094f4736c455e844ea63f7 - React-RCTAppDelegate: 51fb96b554a6acd0cd7818acecd5aa5ca2f3ab9f - React-RCTBlob: d91771caebf2d015005d750cd1dc2b433ad07c99 - React-RCTFabric: c5b9451d1f2b546119b7a0353226a8a26247d4a9 - React-RCTImage: a0bfe87b6908c7b76bd7d74520f40660bd0ad881 - React-RCTLinking: 5f10be1647952cceddfa1970fdb374087582fc34 - React-RCTNetwork: a0bc3dd45a2dc7c879c80cebb6f9707b2c8bbed6 - React-RCTSettings: 28c202b68afa59afb4067510f2c69c5a530fb9e3 - React-RCTText: 4119d9e53ca5db9502b916e1b146e99798986d21 - React-RCTVibration: 55bd7c48487eb9a2562f2bd3fdc833274f5b0636 - React-rendererdebug: 5fa97ba664806cee4700e95aec42dff1b6f8ea36 - React-rncore: fad8fda6453224fd1e9711f162a6a735cf5c57e1 - React-runtimeexecutor: bb328dbe2865f3a550df0240df8e2d8c3aaa4c57 - React-runtimescheduler: 9636eee762c699ca7c85751a359101797e4c8b3b - React-utils: d16c1d2251c088ad817996621947d0ac8167b46c - ReactCommon: 2aa35648354bd4c4665b9a5084a7d37097b89c10 + react-native-webview: 66c0e45a5aa931d7deada77e69042020a86f1aaa + React-nativeconfig: c36a079fa219a9911070cc0058b746407e1ef47d + React-NativeModulesApple: eab84dd7bda0650f3ce41c53f76ffd49d689763f + React-perflogger: 9f21c9e3d8d220833e649a141fed8e5ca08977d9 + React-RCTActionSheet: 4c1f0dc56952f21a904e9f3bf74253eebee1d1d9 + React-RCTAnimation: 2c0b963d4fd978ce35daa330986a8bc442c7517a + React-RCTAppDelegate: bfb8293aa467aae8a28050e4095b0ceff284cbd5 + React-RCTBlob: a440574d805536c58c0c409cb5058334c8d2886c + React-RCTFabric: 6ea72ddf222ea1e373d0cbac88a1c62355701995 + React-RCTImage: e63bc8abbad2c5a4eda53ff35282d83bc9df7559 + React-RCTLinking: 12c6962253fd2f2494231eb8ae2fecae71e54e2f + React-RCTNetwork: 46df47440bd2bf63b0ca0a3c640471243ed2922a + React-RCTSettings: 5e1dfa02ae2d6cf54b3fdfebaa80837540c50847 + React-RCTText: 1c045a74e4fda674523c932f53bdd15b2a3ba085 + React-RCTVibration: 2ba9de92ae71526b3e02b8b8b2fce5cbf47c393f + React-rendererdebug: acb324f4975412bb14d55b29dd5ca6961b5fa06a + React-rncore: 63db76511a92db6cf9649c9d6567e014b7eeb6f5 + React-RuntimeApple: 6ecb0a470d1ef989895a4e5d31980004378ebf71 + React-RuntimeCore: 2794fdb42f7d37f3c877f614e12a0a240b594815 + React-runtimeexecutor: bf091a7f5f5130daab6d8216aaa290374b214cb8 + React-RuntimeHermes: 73249fcc108708a137119de18c3d40ac5ab90160 + React-runtimescheduler: b63ebebd3e000e0ba4ac19ca69bdac071559ad57 + React-utils: 2955bdc1b2ed495f14dc7d3bfbbb7e3624cfc0fc + ReactCommon: 5c504a77030c7ab89eee75b1725b80d8cee7f5d7 ReactNativePerformance: ab7dee4c4862623d72c1530a9fc71b55458edf71 rn-fetch-blob: f065bb7ab7fb48dd002629f8bdcb0336602d3cba RNCAsyncStorage: 826b603ae9c0f88b5ac4e956801f755109fa4d5c @@ -1941,30 +2140,29 @@ SPEC CHECKSUMS: RNFBMessaging: 40dac204b4197a2661dec5be964780c6ec39bf65 RNFBRemoteConfig: 92fbb75ceb69fec44ae727b70d23c5d1798f7648 RNFlashList: b521ebdd7f9352673817f1d98e8bdc0c8cf8545b - RNGestureHandler: bc2cdb2dc42facdf34992ae364b8a728e19a3686 + RNGestureHandler: 4d271a5d9178403bd8dae0d853e2be21cf53743c RNInAppBrowser: e36d6935517101ccba0e875bac8ad7b0cb655364 RNKeychain: f75b8c8b2f17d3b2aa1f25b4a0ac5b83d947ff8f RNLocalize: d4b8af4e442d4bcca54e68fc687a2129b4d71a81 RNReactNativeHapticFeedback: ec56a5f81c3941206fd85625fa669ffc7b4545f9 - RNReanimated: 607f468d720a9e1397eb94c6a0c669147037769e - RNScreens: b6b64d956af3715adbfe84808694ae82d3fec74f - RNSentry: 5381e9284aec59a546e4a7d40e33ad0839b99c1e + RNReanimated: 87623b3c44afef7efd15ac590fe5ce64d7e0f222 + RNScreens: b32a9ff15bea7fcdbe5dff6477bc503f792b1208 + RNSentry: e7e5d059d62d6c447d83e14800edc1812a594a5d RNShare: b674d9f1cb0dc11116983bebd8712908a226a3ee RNSVG: d00c8f91c3cbf6d476451313a18f04d220d4f396 - RNVectorIcons: 73ab573085f65a572d3b6233e68996d4707fd505 + RNVectorIcons: 845eda5c7819bd29699cafd0fc98c9d4afe28c96 SDWebImage: a7f831e1a65eb5e285e3fb046a23fcfbf08e696d SDWebImageWebPCoder: 908b83b6adda48effe7667cd2b7f78c897e5111d segment-analytics-react-native: 1c36d83c0a735795e304178241331e7701dc5d2a - Sentry: ebc12276bd17613a114ab359074096b6b3725203 - SentryPrivate: d651efb234cf385ec9a1cdd3eff94b5e78a0e0fe - SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17 + Sentry: f8374b5415bc38dfb5645941b3ae31230fbeae57 + SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d sovran-react-native: fd3dc8f1a4b14acdc4ad25fc6b4ac4f52a2a2a15 Storyly: 310297bcf4493d3d5b41e71834fba49502c8067a - storyly-react-native: f14aab1a353a8c685b1ab3371fb5fd0c028bc311 + storyly-react-native: ddc3bbad4176759d21b7b21143f174120b9679e1 TOCropViewController: 20a14b6a7a098308bf369e7c8d700dc983a974e6 - Yoga: 805bf71192903b20fc14babe48080582fee65a80 + Yoga: 4f4f07a17818e76d1b04edc01b68b6d49a682100 ZXingObjC: 8898711ab495761b2dbbdec76d90164a6d7e14c5 -PODFILE CHECKSUM: abcd948ae1b81d2a7716125d26ad10710d7a4504 +PODFILE CHECKSUM: 4c5b001707477c61a8565ce9b4276b1c35fdcd65 COCOAPODS: 1.14.3 diff --git a/apps/ledger-live-mobile/ios/ledgerlivemobile.xcodeproj/project.pbxproj b/apps/ledger-live-mobile/ios/ledgerlivemobile.xcodeproj/project.pbxproj index 9f36eb0580c3..4ae8af6d1d64 100644 --- a/apps/ledger-live-mobile/ios/ledgerlivemobile.xcodeproj/project.pbxproj +++ b/apps/ledger-live-mobile/ios/ledgerlivemobile.xcodeproj/project.pbxproj @@ -17,6 +17,7 @@ 2EA091AF2C3FBD5900B6181E /* GoogleService-Info-Testing.plist in Resources */ = {isa = PBXBuildFile; fileRef = 2EA091AE2C3FBD5900B6181E /* GoogleService-Info-Testing.plist */; }; 3407D5D9215D2AB800C9D40B /* NeededForBLE.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3407D5D8215D2AB800C9D40B /* NeededForBLE.swift */; }; 515E9C2C8C0049EC992210D9 /* Inter-Medium.otf in Resources */ = {isa = PBXBuildFile; fileRef = 3B6982A2E67F482A8069215B /* Inter-Medium.otf */; }; + 53E10EBE8D058B0E732DD09B /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = B2ADF826B67305807029EFEE /* PrivacyInfo.xcprivacy */; }; AD6EE26071FA4673B5C89936 /* FontAwesome5_Pro_Brands.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4BD106EA37CA467F9525D699 /* FontAwesome5_Pro_Brands.ttf */; }; AD7A77B84DF3487C812B091B /* FontAwesome5_Pro_Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 668E26194DD94B6D8F10D450 /* FontAwesome5_Pro_Regular.ttf */; }; B116B48438CB416C980DD0E7 /* Inter-SemiBold.otf in Resources */ = {isa = PBXBuildFile; fileRef = F3993D7FF61549FE9270BC06 /* Inter-SemiBold.otf */; }; @@ -78,9 +79,12 @@ 6D891D99F1084D459DBF667F /* FontAwesome5_Pro_Light.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Pro_Light.ttf; path = ../assets/fonts/FontAwesome5_Pro_Light.ttf; sourceTree = ""; }; 793F2C3B8DC0475194262928 /* libRCTCamera.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRCTCamera.a; sourceTree = ""; }; 9390D938BCB148F2A34703E3 /* AntDesign.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = AntDesign.ttf; path = "../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf"; sourceTree = ""; }; + 97FD0A4F7C8CED04EEB0A176 /* Pods-ledgerlivemobile.prerelease.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ledgerlivemobile.prerelease.xcconfig"; path = "Target Support Files/Pods-ledgerlivemobile/Pods-ledgerlivemobile.prerelease.xcconfig"; sourceTree = ""; }; 991AA9919E4840DBB799E117 /* FontAwesome5_Pro_Solid.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome5_Pro_Solid.ttf; path = ../assets/fonts/FontAwesome5_Pro_Solid.ttf; sourceTree = ""; }; 99A82013C77445B4B2B54AB5 /* EvilIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = EvilIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf"; sourceTree = ""; }; A80B735599C416373F147DED /* Pods-ledgerlivemobile-ledgerlivemobileTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ledgerlivemobile-ledgerlivemobileTests.release.xcconfig"; path = "Target Support Files/Pods-ledgerlivemobile-ledgerlivemobileTests/Pods-ledgerlivemobile-ledgerlivemobileTests.release.xcconfig"; sourceTree = ""; }; + B2ADF826B67305807029EFEE /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xml; name = PrivacyInfo.xcprivacy; path = ledgerlivemobile/PrivacyInfo.xcprivacy; sourceTree = ""; }; + B3F983E6F88EBD69A6725FF4 /* Pods-ledgerlivemobile.nightly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ledgerlivemobile.nightly.xcconfig"; path = "Target Support Files/Pods-ledgerlivemobile/Pods-ledgerlivemobile.nightly.xcconfig"; sourceTree = ""; }; BA451DE627CE516700AAB209 /* GoogleService-Info-Production.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info-Production.plist"; sourceTree = ""; }; BA451DE727CE516700AAB209 /* GoogleService-Info-Staging.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info-Staging.plist"; sourceTree = ""; }; BAE7948F27D7C46A00C465F5 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = ""; }; @@ -160,6 +164,8 @@ 68139B1F4BF967461F30D471 /* Pods-ledgerlivemobile-ledgerlivemobileTests.debug.xcconfig */, A80B735599C416373F147DED /* Pods-ledgerlivemobile-ledgerlivemobileTests.release.xcconfig */, C630F76F0E1C857DA405027E /* Pods-ledgerlivemobile-ledgerlivemobileTests.staging.xcconfig */, + B3F983E6F88EBD69A6725FF4 /* Pods-ledgerlivemobile.nightly.xcconfig */, + 97FD0A4F7C8CED04EEB0A176 /* Pods-ledgerlivemobile.prerelease.xcconfig */, ); path = Pods; sourceTree = ""; @@ -179,6 +185,7 @@ 13B07FB71A68108700A75B9A /* main.m */, E9558F012AF93CD200BBEB55 /* InfoPlist.strings */, E85A22C52B17E835005A8E6D /* LaunchScreen.storyboard */, + B2ADF826B67305807029EFEE /* PrivacyInfo.xcprivacy */, ); name = ledgerlivemobile; sourceTree = ""; @@ -402,6 +409,7 @@ BC26C23ED1C649E7849FF99A /* HMAlphaMono-Medium.otf in Resources */, 515E9C2C8C0049EC992210D9 /* Inter-Medium.otf in Resources */, BAE7949027D7C46A00C465F5 /* GoogleService-Info.plist in Resources */, + 53E10EBE8D058B0E732DD09B /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -456,6 +464,8 @@ "${PODS_CONFIGURATION_BUILD_DIR}/BrazeLocation/BrazeLocation.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/BrazeUI/BrazeUI.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/ExpoConstants_privacy.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/ExpoFileSystem/ExpoFileSystem_privacy.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport/GoogleDataTransport_Privacy.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities/GoogleUtilities_Privacy.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises_Privacy.bundle", @@ -493,6 +503,8 @@ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/BrazeLocation.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/BrazeUI.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoConstants_privacy.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoFileSystem_privacy.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/GoogleDataTransport_Privacy.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/GoogleUtilities_Privacy.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FBLPromises_Privacy.bundle", @@ -585,17 +597,11 @@ ); inputPaths = ( "${PODS_ROOT}/Target Support Files/Pods-ledgerlivemobile/Pods-ledgerlivemobile-frameworks.sh", - "${PODS_XCFRAMEWORKS_BUILD_DIR}/Flipper-DoubleConversion/double-conversion.framework/double-conversion", - "${PODS_XCFRAMEWORKS_BUILD_DIR}/Flipper-Glog/glog.framework/glog", - "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL-Universal/OpenSSL.framework/OpenSSL", "${PODS_XCFRAMEWORKS_BUILD_DIR}/Storyly/Storyly.framework/Storyly", "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/Pre-built/hermes.framework/hermes", ); name = "[CP] Embed Pods Frameworks"; outputPaths = ( - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/double-conversion.framework", - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/glog.framework", - "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Storyly.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework", ); @@ -705,6 +711,7 @@ SWIFT_OPTIMIZATION_LEVEL = "-Onone"; SWIFT_VERSION = 5.0; VALID_ARCHS = "$(ARCHS_STANDARD)"; + "VALID_ARCHS[arch=*]" = "$(ARCHS_STANDARD)"; VERSIONING_SYSTEM = "apple-generic"; }; name = Debug; @@ -762,6 +769,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + CC = ""; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "c++20"; CLANG_CXX_LIBRARY = "libc++"; @@ -789,6 +797,7 @@ CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = YES; + CXX = ""; DEVELOPMENT_TEAM = 5HK2Q4J4X4; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; @@ -808,6 +817,8 @@ INFOPLIST_OTHER_PREPROCESSOR_FLAGS = "-traditional"; INFOPLIST_PREPROCESS = YES; IPHONEOS_DEPLOYMENT_TARGET = 13.4; + LD = ""; + LDPLUSPLUS = ""; LIBRARY_SEARCH_PATHS = ( "$(SDKROOT)/usr/lib/swift", "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", @@ -815,8 +826,14 @@ ); MTL_ENABLE_DEBUG_INFO = NO; ONLY_ACTIVE_ARCH = YES; - OTHER_CFLAGS = "$(inherited) "; - OTHER_CPLUSPLUSFLAGS = "$(inherited) "; + OTHER_CFLAGS = ( + "$(inherited)", + " ", + ); + OTHER_CPLUSPLUSFLAGS = ( + "$(inherited)", + " ", + ); OTHER_LDFLAGS = "$(inherited)"; REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; @@ -879,6 +896,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + CC = ""; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "c++20"; CLANG_CXX_LIBRARY = "libc++"; @@ -906,6 +924,7 @@ CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = NO; + CXX = ""; DEVELOPMENT_TEAM = 5HK2Q4J4X4; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; @@ -930,6 +949,8 @@ INFOPLIST_OTHER_PREPROCESSOR_FLAGS = "-traditional"; INFOPLIST_PREPROCESS = YES; IPHONEOS_DEPLOYMENT_TARGET = 13.4; + LD = ""; + LDPLUSPLUS = ""; LIBRARY_SEARCH_PATHS = ( "$(SDKROOT)/usr/lib/swift", "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", @@ -937,8 +958,14 @@ ); MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; - OTHER_CFLAGS = "$(inherited) "; - OTHER_CPLUSPLUSFLAGS = "$(inherited) "; + OTHER_CFLAGS = ( + "$(inherited)", + " ", + ); + OTHER_CPLUSPLUSFLAGS = ( + "$(inherited)", + " ", + ); OTHER_LDFLAGS = "$(inherited)"; REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; @@ -951,6 +978,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + CC = ""; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "c++20"; CLANG_CXX_LIBRARY = "libc++"; @@ -978,6 +1006,7 @@ CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = YES; + CXX = ""; DEVELOPMENT_TEAM = 5HK2Q4J4X4; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; @@ -997,14 +1026,22 @@ INFOPLIST_OTHER_PREPROCESSOR_FLAGS = "-traditional"; INFOPLIST_PREPROCESS = YES; IPHONEOS_DEPLOYMENT_TARGET = 13.4; + LD = ""; + LDPLUSPLUS = ""; LIBRARY_SEARCH_PATHS = ( "$(SDKROOT)/usr/lib/swift", "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", "\"$(inherited)\"", ); MTL_ENABLE_DEBUG_INFO = NO; - OTHER_CFLAGS = "$(inherited) "; - OTHER_CPLUSPLUSFLAGS = "$(inherited) "; + OTHER_CFLAGS = ( + "$(inherited)", + " ", + ); + OTHER_CPLUSPLUSFLAGS = ( + "$(inherited)", + " ", + ); OTHER_LDFLAGS = "$(inherited)"; REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; @@ -1019,6 +1056,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + CC = ""; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "c++20"; CLANG_CXX_LIBRARY = "libc++"; @@ -1046,6 +1084,7 @@ CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = YES; + CXX = ""; DEVELOPMENT_TEAM = 5HK2Q4J4X4; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; @@ -1065,14 +1104,22 @@ INFOPLIST_OTHER_PREPROCESSOR_FLAGS = "-traditional"; INFOPLIST_PREPROCESS = YES; IPHONEOS_DEPLOYMENT_TARGET = 13.4; + LD = ""; + LDPLUSPLUS = ""; LIBRARY_SEARCH_PATHS = ( "$(SDKROOT)/usr/lib/swift", "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", "\"$(inherited)\"", ); MTL_ENABLE_DEBUG_INFO = NO; - OTHER_CFLAGS = "$(inherited) "; - OTHER_CPLUSPLUSFLAGS = "$(inherited) "; + OTHER_CFLAGS = ( + "$(inherited)", + " ", + ); + OTHER_CPLUSPLUSFLAGS = ( + "$(inherited)", + " ", + ); OTHER_LDFLAGS = "$(inherited)"; REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; @@ -1085,7 +1132,7 @@ }; BB0B80022CAAB47600AF2B0C /* Nightly */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F77638C1F4BC132FB97FEEAF /* Pods-ledgerlivemobile.release.xcconfig */; + baseConfigurationReference = B3F983E6F88EBD69A6725FF4 /* Pods-ledgerlivemobile.nightly.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = NightlyAppIcon; CLANG_ENABLE_MODULES = YES; @@ -1136,6 +1183,7 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + CC = ""; CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "c++20"; CLANG_CXX_LIBRARY = "libc++"; @@ -1163,6 +1211,7 @@ CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = YES; + CXX = ""; DEVELOPMENT_TEAM = 5HK2Q4J4X4; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; @@ -1182,14 +1231,22 @@ INFOPLIST_OTHER_PREPROCESSOR_FLAGS = "-traditional"; INFOPLIST_PREPROCESS = YES; IPHONEOS_DEPLOYMENT_TARGET = 13.4; + LD = ""; + LDPLUSPLUS = ""; LIBRARY_SEARCH_PATHS = ( "$(SDKROOT)/usr/lib/swift", "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", "\"$(inherited)\"", ); MTL_ENABLE_DEBUG_INFO = NO; - OTHER_CFLAGS = "$(inherited) "; - OTHER_CPLUSPLUSFLAGS = "$(inherited) "; + OTHER_CFLAGS = ( + "$(inherited)", + " ", + ); + OTHER_CPLUSPLUSFLAGS = ( + "$(inherited)", + " ", + ); OTHER_LDFLAGS = "$(inherited)"; REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; @@ -1202,7 +1259,7 @@ }; BB2FFDA22CAD600D00AB17D8 /* Prerelease */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F77638C1F4BC132FB97FEEAF /* Pods-ledgerlivemobile.release.xcconfig */; + baseConfigurationReference = 97FD0A4F7C8CED04EEB0A176 /* Pods-ledgerlivemobile.prerelease.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = PrereleaseAppIcon; CLANG_ENABLE_MODULES = YES; diff --git a/apps/ledger-live-mobile/ios/ledgerlivemobile/AppDelegate.mm b/apps/ledger-live-mobile/ios/ledgerlivemobile/AppDelegate.mm index 73754e117a8d..ce0b0223e7d3 100644 --- a/apps/ledger-live-mobile/ios/ledgerlivemobile/AppDelegate.mm +++ b/apps/ledger-live-mobile/ios/ledgerlivemobile/AppDelegate.mm @@ -10,18 +10,6 @@ #import "BrazeReactBridge.h" #import -#if DEBUG -#ifdef FB_SONARKIT_ENABLED -#import -#import -#import -#import -#import -#import -#import // react-native-performance-plugin -#import -#endif -#endif @implementation AppDelegate @@ -196,9 +184,9 @@ - (void)applicationDidEnterBackground:(UIApplication *)application { - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge { - return [self getBundleURL]; + return [self bundleURL]; } -- (NSURL *)getBundleURL +- (NSURL *)bundleURL { #if DEBUG return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"]; diff --git a/apps/ledger-live-mobile/ios/ledgerlivemobile/Info.plist b/apps/ledger-live-mobile/ios/ledgerlivemobile/Info.plist index eb4377c81e88..4e65bf5294d1 100644 --- a/apps/ledger-live-mobile/ios/ledgerlivemobile/Info.plist +++ b/apps/ledger-live-mobile/ios/ledgerlivemobile/Info.plist @@ -121,7 +121,7 @@ LaunchScreen.storyboard UIRequiredDeviceCapabilities - armv7 + arm64 UISupportedInterfaceOrientations diff --git a/apps/ledger-live-mobile/ios/ledgerlivemobile/PrivacyInfo.xcprivacy b/apps/ledger-live-mobile/ios/ledgerlivemobile/PrivacyInfo.xcprivacy new file mode 100644 index 000000000000..bdea2127c16a --- /dev/null +++ b/apps/ledger-live-mobile/ios/ledgerlivemobile/PrivacyInfo.xcprivacy @@ -0,0 +1,50 @@ + + + + + NSPrivacyAccessedAPITypes + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryUserDefaults + NSPrivacyAccessedAPITypeReasons + + CA92.1 + 1C8F.1 + C56D.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryFileTimestamp + NSPrivacyAccessedAPITypeReasons + + C617.1 + 0A2A.1 + 3B52.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryDiskSpace + NSPrivacyAccessedAPITypeReasons + + E174.1 + 85F4.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategorySystemBootTime + NSPrivacyAccessedAPITypeReasons + + 35F9.1 + + + + NSPrivacyCollectedDataTypes + + NSPrivacyTracking + + + diff --git a/apps/ledger-live-mobile/metro.config.js b/apps/ledger-live-mobile/metro.config.js index b30cdcf44765..35f4779d3943 100644 --- a/apps/ledger-live-mobile/metro.config.js +++ b/apps/ledger-live-mobile/metro.config.js @@ -1,6 +1,6 @@ /** * Metro configuration for React Native - * https://github.com/facebook/react-native + * https://reactnative.dev/docs/metro * * @format */ diff --git a/apps/ledger-live-mobile/package.json b/apps/ledger-live-mobile/package.json index 07882ce430a2..9608134a65cf 100644 --- a/apps/ledger-live-mobile/package.json +++ b/apps/ledger-live-mobile/package.json @@ -85,10 +85,11 @@ "@ledgerhq/domain-service": "workspace:^", "@ledgerhq/errors": "workspace:^", "@ledgerhq/ethereum-provider": "workspace:^", + "@ledgerhq/hw-ledger-key-ring-protocol": "workspace:^", "@ledgerhq/hw-transport": "workspace:^", "@ledgerhq/hw-transport-http": "workspace:^", - "@ledgerhq/hw-ledger-key-ring-protocol": "workspace:^", "@ledgerhq/icons-ui": "workspace:^", + "@ledgerhq/ledger-key-ring-protocol": "workspace:^", "@ledgerhq/live-common": "workspace:^", "@ledgerhq/live-config": "workspace:^", "@ledgerhq/live-countervalues": "workspace:^", @@ -102,7 +103,6 @@ "@ledgerhq/native-ui": "workspace:^", "@ledgerhq/react-native-hid": "workspace:^", "@ledgerhq/react-native-hw-transport-ble": "workspace:^", - "@ledgerhq/ledger-key-ring-protocol": "workspace:^", "@ledgerhq/types-cryptoassets": "workspace:^", "@ledgerhq/types-devices": "workspace:^", "@ledgerhq/types-live": "workspace:^", @@ -110,15 +110,15 @@ "@react-native-async-storage/async-storage": "^1.19.2", "@react-native-clipboard/clipboard": "^1.11.2", "@react-native-community/netinfo": "^9.3.7", + "@react-native-community/slider": "^4.4.2", "@react-native-firebase/app": "^14.11.1", "@react-native-firebase/messaging": "^14.11.1", "@react-native-firebase/remote-config": "^14.11.1", "@react-native-masked-view/masked-view": "^0.2.6", - "@react-native/gradle-plugin": "0.73.4", - "@react-native/metro-config": "0.73.3", + "@react-native/gradle-plugin": "0.74.88", + "@react-native/metro-config": "0.74.88", "@react-navigation/bottom-tabs": "^6.4.0", "@react-navigation/core": "^6.4.6", - "@react-navigation/devtools": "^6.0.10", "@react-navigation/elements": "^1.3.6", "@react-navigation/material-top-tabs": "^6.3.0", "@react-navigation/native": "^6.0.13", @@ -127,7 +127,7 @@ "@reduxjs/toolkit": "^2.0.1", "@segment/analytics-react-native": "^2.9.1", "@segment/sovran-react-native": "^0.4.5", - "@sentry/react-native": "5.20.0", + "@sentry/react-native": "5.24.3", "@shopify/flash-list": "^1.6.4", "@shopify/react-native-performance": "^4.1.2", "@shopify/react-native-performance-navigation": "^3.0.0", @@ -140,16 +140,16 @@ "d3-scale": "^3.2.1", "d3-shape": "^1.3.7", "date-fns": "^2.23.0", - "expo": "^50.0.3", - "expo-barcode-scanner": "~12.9.2", - "expo-camera": "14.1.3", - "expo-crypto": "^12.8.1", - "expo-file-system": "~16.0.5", - "expo-image-loader": "~4.6.0", - "expo-image-manipulator": "~11.8.0", - "expo-keep-awake": "~12.8.2", - "expo-modules-autolinking": "^1.10.2", - "expo-modules-core": "^1.11.8", + "expo": "^51.0.37", + "expo-barcode-scanner": "~13.0.1", + "expo-camera": "15.0.16", + "expo-crypto": "^13.0.2", + "expo-file-system": "~17.0.1", + "expo-image-loader": "~4.7.0", + "expo-image-manipulator": "~12.0.5", + "expo-keep-awake": "~13.0.2", + "expo-modules-autolinking": "^1.11.2", + "expo-modules-core": "^1.12.25", "fuse.js": "^6.4.6", "hoist-non-react-statics": "3.3.2", "i18next": "20.6.1", @@ -165,13 +165,13 @@ "react": "^18.2.0", "react-i18next": "11.18.6", "react-is": "^18", - "react-native": "0.73.6", + "react-native": "0.74.6", "react-native-adjust": "^4.37.1", "react-native-android-location-services-dialog-box": "^2.8.2", "react-native-animatable": "^1.3.3", "react-native-biometrics": "^3.0.1", "react-native-ble-plx": "3.1.2", - "react-native-config": "1.5.1", + "react-native-config": "1.5.3", "react-native-device-info": "^11.1.0", "react-native-easy-markdown": "^2.0.0", "react-native-extra-dimensions-android": "^1.2.5", @@ -193,12 +193,11 @@ "react-native-pager-view": "^6.0.1", "react-native-qrcode-svg": "6.1.1", "react-native-randombytes": "^3.6.1", - "react-native-reanimated": "3.8.1", + "react-native-reanimated": "3.9.0", "react-native-restart": "^0.0.24", - "react-native-safe-area-context": "^4.5.0", - "react-native-screens": "^3.27.0", + "react-native-safe-area-context": "^4.10.5", + "react-native-screens": "^3.31.1", "react-native-share": "^10.0.1", - "react-native-slider": "^0.11.0", "react-native-splash-screen": "3.2.0", "react-native-startup-time": "^2.0.1", "react-native-svg": "13.14.0", @@ -206,19 +205,18 @@ "react-native-tcp-socket": "^6.0.6", "react-native-udp": "^4.1.4", "react-native-url-polyfill": "^1.3.0", - "react-native-vector-icons": "^10.0.0", + "react-native-vector-icons": "^10.2.0", "react-native-version-number": "^0.3.6", "react-native-video": "5.2.1", "react-native-webview": "13.10.3", "react-redux": "^7.2.9", "redux": "^4.1.2", "redux-actions": "2.6.5", - "redux-flipper": "^2.0.2", "reselect": "4.0.0", "rn-fetch-blob": "^0.12.0", "rxjs": "^7.8.1", "semver": "^7.3.7", - "storyly-react-native": "3.6.0", + "storyly-react-native": "3.6.2", "styled-components": "^5.3.3", "styled-system": "^5.1.5", "text-encoding-polyfill": "^0.6.7", @@ -240,11 +238,11 @@ "@ledgerhq/hw-transport-node-speculos-http": "workspace:^", "@ledgerhq/speculos-transport": "workspace:^", "@ledgerhq/test-utils": "workspace:^", - "@react-native-community/cli": "12.3.6", - "@react-native-community/cli-platform-android": "12.3.6", - "@react-native-community/cli-platform-ios": "12.3.6", - "@react-native/babel-preset": "0.73.19", - "@react-native/dev-middleware": "0.73.7", + "@react-native-community/cli": "13.6.1", + "@react-native-community/cli-platform-android": "13.6.1", + "@react-native-community/cli-platform-ios": "13.6.1", + "@react-native/babel-preset": "0.74.88", + "@react-native/dev-middleware": "0.74.88", "@sentry/cli": "2.31.0", "@swc/core": "^1.3.95", "@swc/jest": "^0.2.29", @@ -300,11 +298,8 @@ "msw": "^2.0.11", "react-native-bundle-visualizer": "^3.1.2", "react-native-debugger-open": "^0.4.0", - "react-native-flipper": "0.163.0", - "react-native-flipper-performance-plugin": "^0.4.0", "react-native-launch-arguments": "^4.0.1", "react-native-performance": "^3.1.2", - "react-native-performance-flipper-reporter": "^3.0.0", "react-test-renderer": "^18.2.0", "strip-ansi": "6.0.1", "ts-jest": "^29.1.1", diff --git a/apps/ledger-live-mobile/react-native.config.js b/apps/ledger-live-mobile/react-native.config.js index bc5211cb5bd1..1c161b1135a2 100644 --- a/apps/ledger-live-mobile/react-native.config.js +++ b/apps/ledger-live-mobile/react-native.config.js @@ -1,7 +1,4 @@ module.exports = { - dependencies: { - ...(process.env.NO_FLIPPER ? { "react-native-flipper": { platforms: { ios: null } } } : {}), - }, assets: [ "./assets/fonts/", "./assets/videos/", diff --git a/apps/ledger-live-mobile/src/components/AnalyticsConsole/index.tsx b/apps/ledger-live-mobile/src/components/AnalyticsConsole/index.tsx index f5f641dd80bf..d181ea276eb9 100644 --- a/apps/ledger-live-mobile/src/components/AnalyticsConsole/index.tsx +++ b/apps/ledger-live-mobile/src/components/AnalyticsConsole/index.tsx @@ -5,7 +5,7 @@ import Switch from "~/components/Switch"; import useEnv from "@ledgerhq/live-common/hooks/useEnv"; import { SafeAreaView, useSafeAreaInsets } from "react-native-safe-area-context"; import Animated, { FadeIn, FadeOut, Layout } from "react-native-reanimated"; -import Slider from "react-native-slider"; +import Slider from "@react-native-community/slider"; import FloatingDebugButton from "../FloatingDebugButton"; import EventList from "./EventList"; import Status from "./Status"; diff --git a/apps/ledger-live-mobile/src/components/PerformanceConsole/index.tsx b/apps/ledger-live-mobile/src/components/PerformanceConsole/index.tsx index 92ffe70ed220..998acba8703c 100644 --- a/apps/ledger-live-mobile/src/components/PerformanceConsole/index.tsx +++ b/apps/ledger-live-mobile/src/components/PerformanceConsole/index.tsx @@ -4,7 +4,7 @@ import { Flex, Switch, IconsLegacy, Divider, Alert, Text } from "@ledgerhq/nativ import useEnv from "@ledgerhq/live-common/hooks/useEnv"; import { SafeAreaView, useSafeAreaInsets } from "react-native-safe-area-context"; import Animated, { FadeIn, FadeOut, Layout } from "react-native-reanimated"; -import Slider from "react-native-slider"; +import Slider from "@react-native-community/slider"; import EventList from "./EventList"; import Status from "./Status"; import FloatingPerformanceButton from "./FloatingPerformanceButton"; diff --git a/apps/ledger-live-mobile/src/components/RequiresCameraPermissions/useCameraPermissions.ts b/apps/ledger-live-mobile/src/components/RequiresCameraPermissions/useCameraPermissions.ts index d86a03ffc54e..6679bc106e3c 100644 --- a/apps/ledger-live-mobile/src/components/RequiresCameraPermissions/useCameraPermissions.ts +++ b/apps/ledger-live-mobile/src/components/RequiresCameraPermissions/useCameraPermissions.ts @@ -1,5 +1,5 @@ import { useCallback, useEffect, useMemo, useRef, useState } from "react"; -import { Camera } from "expo-camera"; +import { Camera } from "expo-camera/legacy"; import useIsMounted from "@ledgerhq/live-common/hooks/useIsMounted"; import { AppState, Linking } from "react-native"; diff --git a/apps/ledger-live-mobile/src/components/Scanner.tsx b/apps/ledger-live-mobile/src/components/Scanner.tsx index 8a56dfd84779..974c4c83e122 100644 --- a/apps/ledger-live-mobile/src/components/Scanner.tsx +++ b/apps/ledger-live-mobile/src/components/Scanner.tsx @@ -1,6 +1,6 @@ import React, { useContext } from "react"; import { StyleSheet, View } from "react-native"; -import { BarCodeScanningResult, Camera, CameraType } from "expo-camera"; +import { BarCodeScanningResult, Camera, CameraType } from "expo-camera/legacy"; import { BarCodeScanner } from "expo-barcode-scanner"; import { Flex } from "@ledgerhq/native-ui"; import StyledStatusBar from "./StyledStatusBar"; diff --git a/apps/ledger-live-mobile/src/components/StorylyStories/StoriesConfig.tsx b/apps/ledger-live-mobile/src/components/StorylyStories/StoriesConfig.tsx index abb32414aef9..4e6fcfa4e95b 100644 --- a/apps/ledger-live-mobile/src/components/StorylyStories/StoriesConfig.tsx +++ b/apps/ledger-live-mobile/src/components/StorylyStories/StoriesConfig.tsx @@ -2,11 +2,10 @@ import { StorylyInstanceID } from "@ledgerhq/types-live"; import { useFeatureFlags } from "@ledgerhq/live-common/featureFlags/index"; import useFeature from "@ledgerhq/live-common/featureFlags/useFeature"; import React, { useCallback, useState } from "react"; -import { Camera } from "expo-camera"; import { Flex, Switch, BaseInput, Text, IconsLegacy } from "@ledgerhq/native-ui"; import { TouchableOpacity } from "react-native"; import { InputRenderRightContainer } from "@ledgerhq/native-ui/components/Form/Input/BaseInput/index"; -import { BarCodeScanningResult, CameraType } from "expo-camera/build/Camera.types"; +import { Camera, BarCodeScanningResult, CameraType } from "expo-camera/legacy"; import QueuedDrawer from "../QueuedDrawer"; type Props = { diff --git a/apps/ledger-live-mobile/src/context/store.ts b/apps/ledger-live-mobile/src/context/store.ts index 0cadd032f0d9..c0ab608d2949 100644 --- a/apps/ledger-live-mobile/src/context/store.ts +++ b/apps/ledger-live-mobile/src/context/store.ts @@ -1,20 +1,12 @@ import Config from "react-native-config"; -import { configureStore, type Middleware } from "@reduxjs/toolkit"; +import { configureStore } from "@reduxjs/toolkit"; import reducers from "~/reducers"; -const middlewares: Middleware[] = []; - -if (Config.DEBUG_RNDEBUGGER) { - // eslint-disable-next-line @typescript-eslint/no-var-requires - const createDebugger = require("redux-flipper").default; - middlewares.push(createDebugger()); -} - export const store = configureStore({ reducer: reducers, devTools: !!Config.DEBUG_RNDEBUGGER, middleware: getDefaultMiddleware => - getDefaultMiddleware({ serializableCheck: false, immutableCheck: false }).concat(middlewares), + getDefaultMiddleware({ serializableCheck: false, immutableCheck: false }), }); export type StoreType = typeof store; diff --git a/apps/ledger-live-mobile/src/families/evm/EditFeeUnitEvm.tsx b/apps/ledger-live-mobile/src/families/evm/EditFeeUnitEvm.tsx index 98ee2f9535b1..ac7d17ed1c83 100644 --- a/apps/ledger-live-mobile/src/families/evm/EditFeeUnitEvm.tsx +++ b/apps/ledger-live-mobile/src/families/evm/EditFeeUnitEvm.tsx @@ -6,7 +6,7 @@ import { BigNumber } from "bignumber.js"; import React, { useCallback } from "react"; import { useTranslation } from "react-i18next"; import { StyleSheet, View } from "react-native"; -import Slider from "react-native-slider"; +import Slider from "@react-native-community/slider"; import CurrencyUnitValue from "~/components/CurrencyUnitValue"; import LText from "~/components/LText"; diff --git a/apps/ledger-live-mobile/src/navigation/DeeplinksProvider.tsx b/apps/ledger-live-mobile/src/navigation/DeeplinksProvider.tsx index 1b2b3d634c1f..177faea6b79c 100644 --- a/apps/ledger-live-mobile/src/navigation/DeeplinksProvider.tsx +++ b/apps/ledger-live-mobile/src/navigation/DeeplinksProvider.tsx @@ -10,7 +10,6 @@ import { PartialState, } from "@react-navigation/native"; import Config from "react-native-config"; -import { useFlipper } from "@react-navigation/devtools"; import { useRemoteLiveAppContext } from "@ledgerhq/live-common/platform/providers/RemoteLiveAppProvider/index"; import { useFeature } from "@ledgerhq/live-common/featureFlags/index"; import { BUY_SELL_UI_APP_ID } from "@ledgerhq/live-common/wallet-api/constants"; @@ -588,8 +587,6 @@ export const DeeplinksProvider = ({ [], ); - useFlipper(navigationRef); - if (!isReady) { return null; } diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/ScanQrCode.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/ScanQrCode.tsx index 50bb5837cfc0..2d876f2da499 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/ScanQrCode.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/ScanQrCode.tsx @@ -3,10 +3,9 @@ import { Flex, Icons, Text } from "@ledgerhq/native-ui"; import { Trans, useTranslation } from "react-i18next"; import styled, { useTheme } from "styled-components/native"; import BottomContainer from "./BottomContainer"; -import { CameraView } from "expo-camera/next"; +import { CameraView, BarcodeScanningResult } from "expo-camera"; import ScanTargetSvg from "./ScanTargetSvg"; import RequiresCameraPermissions from "~/components/RequiresCameraPermissions"; -import { BarCodeScanningResult } from "expo-camera"; type Props = { onQrCodeScanned: (data: string) => void; @@ -21,7 +20,7 @@ const ScanQrCode = ({ onQrCodeScanned }: Props) => { const { t } = useTranslation(); const { colors } = useTheme(); - const onBarCodeScanned = ({ data }: BarCodeScanningResult) => { + const onBarCodeScanned = ({ data }: BarcodeScanningResult) => { onQrCodeScanned(data); }; diff --git a/apps/ledger-live-mobile/src/screens/Settings/Debug/Debugging/CameraPermissions.tsx b/apps/ledger-live-mobile/src/screens/Settings/Debug/Debugging/CameraPermissions.tsx index 0a3ce054c5fb..156fb51ad2f8 100644 --- a/apps/ledger-live-mobile/src/screens/Settings/Debug/Debugging/CameraPermissions.tsx +++ b/apps/ledger-live-mobile/src/screens/Settings/Debug/Debugging/CameraPermissions.tsx @@ -1,8 +1,7 @@ import React, { useState } from "react"; import { Button, Flex, Switch, Text } from "@ledgerhq/native-ui"; -import { Camera } from "expo-camera"; +import { Camera, CameraType } from "expo-camera/legacy"; import { useIsFocused } from "@react-navigation/native"; -import { CameraType } from "expo-camera/build/Camera.types"; import RequiresCameraPermissions from "~/components/RequiresCameraPermissions"; import CameraPermissionContext from "~/components/RequiresCameraPermissions/CameraPermissionContext"; diff --git a/apps/ledger-live-mobile/src/screens/Settings/Debug/Features/CustomImageGraphics.tsx b/apps/ledger-live-mobile/src/screens/Settings/Debug/Features/CustomImageGraphics.tsx index 253eb56085ee..c5343570b462 100644 --- a/apps/ledger-live-mobile/src/screens/Settings/Debug/Features/CustomImageGraphics.tsx +++ b/apps/ledger-live-mobile/src/screens/Settings/Debug/Features/CustomImageGraphics.tsx @@ -3,7 +3,7 @@ import { StyleSheet } from "react-native"; import { Button, Divider, Flex, Switch, Text } from "@ledgerhq/native-ui"; import { DeviceModelId } from "@ledgerhq/devices"; import { useSafeAreaInsets } from "react-native-safe-area-context"; -import Slider from "react-native-slider"; +import Slider from "@react-native-community/slider"; import { CLSSupportedDeviceModelId, supportedDeviceModelIds, diff --git a/apps/ledger-live-mobile/src/types/react-native-slider.d.ts b/apps/ledger-live-mobile/src/types/react-native-slider.d.ts deleted file mode 100644 index 8de99444e218..000000000000 --- a/apps/ledger-live-mobile/src/types/react-native-slider.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -declare module "react-native-slider" { - type Props = { - value?: number; - disabled?: boolean; - minimumValue?: number; - maximumValue?: number; - step: number; - minimumTrackTintColor?: string; - maximumTrackTintColor?: string; - thumbTintColor?: string; - thumbTouchSize?: { - width: number; - a; - height: number; - }; - onValueChange?: (_: string | number) => void; - onSlidingStart?: (_: string | number) => void; - onSlidingComplete?: (_: string | number) => void; - style?: StyleProp; - trackStyle?: StyleProp; - thumbStyle?: StyleProp; - thumbImage?: unknown; - debugTouchArea?: boolean; - animateTransitions?: boolean; - animationType?: "spring" | "timing"; - animationConfig?: Record; - }; - declare const Slider: React.ComponentType; - export default Slider; -} diff --git a/libs/ledger-live-common/package.json b/libs/ledger-live-common/package.json index aad02d43de95..98a6e7357171 100644 --- a/libs/ledger-live-common/package.json +++ b/libs/ledger-live-common/package.json @@ -285,7 +285,7 @@ "nock": "^13.0.5", "react": "^18.2.0", "react-dom": "18.2.0", - "react-native": "0.73.6", + "react-native": "0.74.5", "react-native-svg": "13.14.0", "react-redux": "^7.2.9", "react-test-renderer": "^18.2.0", diff --git a/libs/ui/packages/native/.unimportedrc.json b/libs/ui/packages/native/.unimportedrc.json index 43a3c5ca6f71..6f63a65f934c 100644 --- a/libs/ui/packages/native/.unimportedrc.json +++ b/libs/ui/packages/native/.unimportedrc.json @@ -21,6 +21,7 @@ "../../Network/RCTNetworking", "../Utilities/BackHandler", "../Utilities/Platform", + "../../../../Libraries/Utilities/Platform", "../../Network/RCTNetworking at node_modules/react-native/Libraries/Core/Devtools/loadBundleFromServer.js", "./BaseViewConfig", "./Image", diff --git a/libs/ui/packages/native/package.json b/libs/ui/packages/native/package.json index b51652546a8c..46ee95279e5e 100644 --- a/libs/ui/packages/native/package.json +++ b/libs/ui/packages/native/package.json @@ -68,8 +68,8 @@ "react": ">=17", "react-native": ">=0.64.0", "react-native-reanimated": "3.8.1", - "styled-components": "^5.3.3", - "react-native-svg": ">=12.1.1" + "react-native-svg": ">=12.1.1", + "styled-components": "^5.3.3" }, "devDependencies": { "@babel/core": "^7.24.3", @@ -135,24 +135,24 @@ "expo-modules-core": "1.5.11", "fs-extra": "^10.0.1", "glob": "^7.2.0", - "metro": "^0.80.5", - "metro-config": "^0.80.5", - "metro-core": "^0.80.5", + "metro": "^0.80.12", + "metro-config": "^0.80.12", + "metro-core": "^0.80.12", "metro-minify-uglify": "^0.76.8", "metro-react-native-babel-preset": "^0.77.0", "metro-react-native-babel-transformer": "^0.77.0", - "metro-resolver": "^0.80.5", - "metro-runtime": "^0.80.5", - "metro-source-map": "^0.80.5", - "metro-transform-worker": "^0.80.5", + "metro-resolver": "^0.80.12", + "metro-runtime": "^0.80.12", + "metro-source-map": "^0.80.12", + "metro-transform-worker": "^0.80.12", "minimatch": "^5.1.0", "prop-types": "^15.8.1", "react": "^18.2.0", "react-dom": "^18.2.0", "react-is": "^18", - "react-native": "0.73.6", + "react-native": "0.74.6", "react-native-reanimated": "3.8.1", - "react-native-safe-area-context": "^4.5.0", + "react-native-safe-area-context": "^4.10.9", "react-native-svg": "13.14.0", "react-native-web": "~0.19.6", "regenerator-runtime": "^0.14.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4cb39de3278d..744ed7792fbe 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: '9.0' +lockfileVersion: "9.0" settings: autoInstallPeers: false @@ -7,22 +7,22 @@ settings: overrides: stellar-base>sodium-native: ^3.2.1 remove-flow-types-loader>flow-remove-types: ^2 - remove-flow-types-loader>loader-utils: '*' - '@ledgerhq/devices': workspace:* + remove-flow-types-loader>loader-utils: "*" + "@ledgerhq/devices": workspace:* tslib: 2.6.2 - '@hashgraph/sdk>@grpc/grpc-js': 1.6.7 - '@hashgraph/sdk>@hashgraph/cryptography': 1.1.2 - '@ethersproject/providers>ws': 7.5.10 + "@hashgraph/sdk>@grpc/grpc-js": 1.6.7 + "@hashgraph/sdk>@hashgraph/cryptography": 1.1.2 + "@ethersproject/providers>ws": 7.5.10 packageExtensionsChecksum: bcc0ac67c2d7bcc88fe46412ebcf46be pnpmfileChecksum: ju3gjuq3tfou7jpj6cwyr6jtr4 patchedDependencies: - '@changesets/get-github-info@0.6.0': + "@changesets/get-github-info@0.6.0": hash: 7jzpsqogb5i6art53pk3h33ix4 path: patches/@changesets__get-github-info@0.6.0.patch - '@hashgraph/sdk@2.14.2': + "@hashgraph/sdk@2.14.2": hash: ftpe7kgiykw2quxzn7vgiqumd4 path: patches/@hashgraph__sdk@2.14.2.patch asyncstorage-down@4.2.0: @@ -57,34 +57,33 @@ patchedDependencies: path: patches/usb@2.9.0.patch importers: - .: devDependencies: - '@changesets/changelog-github': + "@changesets/changelog-github": specifier: ^0.5.0 version: 0.5.0 - '@changesets/cli': + "@changesets/cli": specifier: ^2.26.0 version: 2.27.7 - '@commitlint/cli': + "@commitlint/cli": specifier: ^17.4.2 version: 17.8.1 - '@commitlint/config-conventional': + "@commitlint/config-conventional": specifier: ^17.6.5 version: 17.8.1 - '@commitlint/prompt-cli': + "@commitlint/prompt-cli": specifier: ^17.4.2 version: 17.8.1 - '@ledgerhq/create-release-hash': + "@ledgerhq/create-release-hash": specifier: workspace:* version: link:tools/create-release-hash - '@ledgerhq/pnpm-utils': + "@ledgerhq/pnpm-utils": specifier: workspace:* version: link:tools/pnpm-utils - '@typescript-eslint/eslint-plugin': + "@typescript-eslint/eslint-plugin": specifier: ^6.2.0 version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) - '@typescript-eslint/parser': + "@typescript-eslint/parser": specifier: ^6.2.0 version: 6.21.0(eslint@8.57.0)(typescript@5.4.3) chalk: @@ -126,73 +125,73 @@ importers: apps/cli: dependencies: - '@ledgerhq/coin-bitcoin': + "@ledgerhq/coin-bitcoin": specifier: workspace:^ version: link:../../libs/coin-modules/coin-bitcoin - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../libs/coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/cryptoassets - '@ledgerhq/device-core': + "@ledgerhq/device-core": specifier: workspace:^ version: link:../../libs/device-core - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../libs/ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/errors - '@ledgerhq/hw-app-btc': + "@ledgerhq/hw-app-btc": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-app-btc - '@ledgerhq/hw-ledger-key-ring-protocol': + "@ledgerhq/hw-ledger-key-ring-protocol": specifier: workspace:^ version: link:../../libs/hw-ledger-key-ring-protocol - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport - '@ledgerhq/hw-transport-http': + "@ledgerhq/hw-transport-http": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-http - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-mocker - '@ledgerhq/hw-transport-node-hid': + "@ledgerhq/hw-transport-node-hid": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-node-hid - '@ledgerhq/hw-transport-node-speculos': + "@ledgerhq/hw-transport-node-speculos": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-node-speculos - '@ledgerhq/hw-transport-node-speculos-http': + "@ledgerhq/hw-transport-node-speculos-http": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-node-speculos-http - '@ledgerhq/ledger-key-ring-protocol': + "@ledgerhq/ledger-key-ring-protocol": specifier: workspace:^ version: link:../../libs/ledger-key-ring-protocol - '@ledgerhq/live-common': + "@ledgerhq/live-common": specifier: workspace:^ version: link:../../libs/ledger-live-common - '@ledgerhq/live-config': + "@ledgerhq/live-config": specifier: workspace:^ version: link:../../libs/live-config - '@ledgerhq/live-countervalues': + "@ledgerhq/live-countervalues": specifier: workspace:^ version: link:../../libs/live-countervalues - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../../libs/env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../libs/live-network - '@ledgerhq/live-wallet': + "@ledgerhq/live-wallet": specifier: workspace:^ version: link:../../libs/live-wallet - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/logs - '@ledgerhq/types-devices': + "@ledgerhq/types-devices": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-devices asciichart: @@ -247,22 +246,22 @@ importers: specifier: ^8.6.0 version: 8.17.1 devDependencies: - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-live - '@types/command-line-args': + "@types/command-line-args": specifier: ^5.2.0 version: 5.2.3 - '@types/lodash': + "@types/lodash": specifier: ^4.14.177 version: 4.17.0 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 - '@types/pako': + "@types/pako": specifier: ^2.0.0 version: 2.0.3 ts-node: @@ -271,124 +270,124 @@ importers: apps/ledger-live-desktop: dependencies: - '@braze/web-sdk': + "@braze/web-sdk": specifier: ^4.6.3 version: 4.10.2 - '@ledgerhq/coin-bitcoin': + "@ledgerhq/coin-bitcoin": specifier: workspace:^ version: link:../../libs/coin-modules/coin-bitcoin - '@ledgerhq/coin-cosmos': + "@ledgerhq/coin-cosmos": specifier: workspace:^ version: link:../../libs/coin-modules/coin-cosmos - '@ledgerhq/coin-evm': + "@ledgerhq/coin-evm": specifier: workspace:^ version: link:../../libs/coin-modules/coin-evm - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../libs/coin-framework - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../libs/ledgerjs/packages/devices - '@ledgerhq/domain-service': + "@ledgerhq/domain-service": specifier: workspace:^ version: link:../../libs/domain-service - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/errors - '@ledgerhq/ethereum-provider': + "@ledgerhq/ethereum-provider": specifier: workspace:^ version: link:../../libs/ethereum-provider - '@ledgerhq/hw-ledger-key-ring-protocol': + "@ledgerhq/hw-ledger-key-ring-protocol": specifier: workspace:^ version: link:../../libs/hw-ledger-key-ring-protocol - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport - '@ledgerhq/hw-transport-http': + "@ledgerhq/hw-transport-http": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-http - '@ledgerhq/hw-transport-node-hid-singleton': + "@ledgerhq/hw-transport-node-hid-singleton": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-node-hid-singleton - '@ledgerhq/hw-transport-node-speculos-http': + "@ledgerhq/hw-transport-node-speculos-http": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-node-speculos-http - '@ledgerhq/hw-transport-vault': + "@ledgerhq/hw-transport-vault": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-vault - '@ledgerhq/ledger-key-ring-protocol': + "@ledgerhq/ledger-key-ring-protocol": specifier: workspace:^ version: link:../../libs/ledger-key-ring-protocol - '@ledgerhq/live-common': + "@ledgerhq/live-common": specifier: workspace:^ version: link:../../libs/ledger-live-common - '@ledgerhq/live-config': + "@ledgerhq/live-config": specifier: workspace:^ version: link:../../libs/live-config - '@ledgerhq/live-countervalues': + "@ledgerhq/live-countervalues": specifier: workspace:^ version: link:../../libs/live-countervalues - '@ledgerhq/live-countervalues-react': + "@ledgerhq/live-countervalues-react": specifier: workspace:^ version: link:../../libs/live-countervalues-react - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../../libs/env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../libs/live-network - '@ledgerhq/live-nft': + "@ledgerhq/live-nft": specifier: workspace:^ version: link:../../libs/live-nft - '@ledgerhq/live-nft-react': + "@ledgerhq/live-nft-react": specifier: workspace:^ version: link:../../libs/live-nft-react - '@ledgerhq/live-wallet': + "@ledgerhq/live-wallet": specifier: workspace:^ version: link:../../libs/live-wallet - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/logs - '@ledgerhq/react-ui': + "@ledgerhq/react-ui": specifier: workspace:^ version: link:../../libs/ui/packages/react - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-devices': + "@ledgerhq/types-devices": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-devices - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-live - '@sentry/electron': + "@sentry/electron": specifier: 5.2.0 version: 5.2.0 - '@sentry/node': + "@sentry/node": specifier: 8.16.0 version: 8.16.0 - '@tanstack/react-query': + "@tanstack/react-query": specifier: ^5.28.9 version: 5.28.9(react@18.2.0) - '@tanstack/react-query-devtools': + "@tanstack/react-query-devtools": specifier: ^5.28.9 version: 5.28.14(@tanstack/react-query@5.28.9(react@18.2.0))(react@18.2.0) - '@tippyjs/react': + "@tippyjs/react": specifier: ^4.2.6 version: 4.2.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@trust/keyto': + "@trust/keyto": specifier: ^1.0.1 version: 1.0.1 - '@types/qrcode': + "@types/qrcode": specifier: ^1.5.0 version: 1.5.5 - '@types/react-key-handler': + "@types/react-key-handler": specifier: ^1.2.0 version: 1.2.4(@types/react@18.2.73) - '@types/semver': + "@types/semver": specifier: ^7.3.9 version: 7.5.8 - '@xstate/react': + "@xstate/react": specifier: ^1.6.3 version: 1.6.3(@types/react@18.2.73)(react@18.2.0)(xstate@4.38.3) allure-commandline: @@ -584,133 +583,133 @@ importers: specifier: ^4.30.2 version: 4.38.3 devDependencies: - '@electron/notarize': + "@electron/notarize": specifier: ^2.3.0 version: 2.3.2 - '@jest/globals': + "@jest/globals": specifier: ^29.7.0 version: 29.7.0 - '@ledgerhq/esbuild-utils': + "@ledgerhq/esbuild-utils": specifier: workspace:* version: link:../../tools/esbuild-utils - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-mocker - '@ledgerhq/native-modules-tools': + "@ledgerhq/native-modules-tools": specifier: workspace:* version: link:../../tools/native-modules-tools - '@ledgerhq/speculos-transport': + "@ledgerhq/speculos-transport": specifier: workspace:^ version: link:../../libs/speculos-transport - '@ledgerhq/test-utils': + "@ledgerhq/test-utils": specifier: workspace:^ version: link:../../libs/test-utils - '@octokit/rest': + "@octokit/rest": specifier: ^18.12.0 version: 18.12.0 - '@playwright/test': + "@playwright/test": specifier: ^1.45.0 version: 1.45.0 - '@sentry/cli': + "@sentry/cli": specifier: 2.31.0 version: 2.31.0 - '@sentry/types': + "@sentry/types": specifier: 8.16.0 version: 8.16.0 - '@swc/core': + "@swc/core": specifier: ^1.3.95 version: 1.4.11 - '@swc/jest': + "@swc/jest": specifier: ^0.2.29 version: 0.2.36(@swc/core@1.4.11) - '@testing-library/dom': + "@testing-library/dom": specifier: ^9.3.3 version: 9.3.4 - '@testing-library/jest-dom': + "@testing-library/jest-dom": specifier: ^6.1.5 version: 6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3))) - '@testing-library/react': + "@testing-library/react": specifier: ^14.1.2 version: 14.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@testing-library/user-event': + "@testing-library/user-event": specifier: ^14.5.1 version: 14.5.2(@testing-library/dom@9.3.4) - '@types/chart.js': + "@types/chart.js": specifier: 2.9.41 version: 2.9.41 - '@types/color': + "@types/color": specifier: ^3.0.3 version: 3.0.6 - '@types/invariant': + "@types/invariant": specifier: ^2.2.35 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.14.182 version: 4.17.0 - '@types/react': + "@types/react": specifier: ^18.2.21 version: 18.2.73 - '@types/react-dom': + "@types/react-dom": specifier: ^18.2.13 version: 18.2.23(@types/react@18.2.73) - '@types/react-lottie': + "@types/react-lottie": specifier: ^1.2.6 version: 1.2.10(@types/react@18.2.73) - '@types/react-motion': + "@types/react-motion": specifier: ^0.0.40 version: 0.0.40(@types/react@18.2.73) - '@types/react-redux': + "@types/react-redux": specifier: ^7.1.24 version: 7.1.33(@types/react@18.2.73) - '@types/react-router': + "@types/react-router": specifier: ^5.1.20 version: 5.1.20(@types/react@18.2.73) - '@types/react-router-dom': + "@types/react-router-dom": specifier: ^5.3.2 version: 5.3.3(@types/react@18.2.73) - '@types/react-select': + "@types/react-select": specifier: ^4 version: 4.0.18(@types/react@18.2.73) - '@types/react-transition-group': + "@types/react-transition-group": specifier: ^4.4.2 version: 4.4.10(@types/react@18.2.73) - '@types/react-virtualized-auto-sizer': + "@types/react-virtualized-auto-sizer": specifier: ^1.0.1 version: 1.0.4(@types/react@18.2.73) - '@types/react-window': + "@types/react-window": specifier: ^1.8.5 version: 1.8.8(@types/react@18.2.73) - '@types/react-window-infinite-loader': + "@types/react-window-infinite-loader": specifier: ^1.0.6 version: 1.0.9(@types/react@18.2.73) - '@types/redux-actions': + "@types/redux-actions": specifier: ^2.6.2 version: 2.6.5 - '@types/secp256k1': + "@types/secp256k1": specifier: ^4.0.3 version: 4.0.6 - '@types/serve-handler': + "@types/serve-handler": specifier: ^6.1.1 version: 6.1.4 - '@types/styled-components': + "@types/styled-components": specifier: ^5.1.25 version: 5.1.34(@types/react@18.2.73) - '@types/styled-system': + "@types/styled-system": specifier: ^5.1.16 version: 5.1.22 - '@types/trust__keyto': + "@types/trust__keyto": specifier: ^1.0.0 version: 1.0.4 - '@types/uuid': + "@types/uuid": specifier: ^8.3.4 version: 8.3.4 - '@types/write-file-atomic': + "@types/write-file-atomic": specifier: ^4.0.0 version: 4.0.3 - '@vitejs/plugin-react': + "@vitejs/plugin-react": specifier: ^3.1.0 version: 3.1.0(vite@4.5.3) allure-playwright: @@ -803,189 +802,189 @@ importers: apps/ledger-live-mobile: dependencies: - '@azure/core-asynciterator-polyfill': + "@azure/core-asynciterator-polyfill": specifier: ^1.0.2 version: 1.0.2 - '@braze/react-native-sdk': + "@braze/react-native-sdk": specifier: ^8.3.0 version: 8.4.0 - '@formatjs/intl-locale': + "@formatjs/intl-locale": specifier: ^3.0.0 version: 3.4.5 - '@formatjs/intl-pluralrules': + "@formatjs/intl-pluralrules": specifier: ^5.0.0 version: 5.2.12 - '@formatjs/intl-relativetimeformat': + "@formatjs/intl-relativetimeformat": specifier: ^11.1.8 version: 11.2.12 - '@ledgerhq/coin-cosmos': + "@ledgerhq/coin-cosmos": specifier: workspace:^ version: link:../../libs/coin-modules/coin-cosmos - '@ledgerhq/coin-elrond': + "@ledgerhq/coin-elrond": specifier: workspace:^ version: link:../../libs/coin-modules/coin-elrond - '@ledgerhq/coin-evm': + "@ledgerhq/coin-evm": specifier: workspace:^ version: link:../../libs/coin-modules/coin-evm - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../libs/coin-framework - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../libs/ledgerjs/packages/devices - '@ledgerhq/domain-service': + "@ledgerhq/domain-service": specifier: workspace:^ version: link:../../libs/domain-service - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/errors - '@ledgerhq/ethereum-provider': + "@ledgerhq/ethereum-provider": specifier: workspace:^ version: link:../../libs/ethereum-provider - '@ledgerhq/hw-ledger-key-ring-protocol': + "@ledgerhq/hw-ledger-key-ring-protocol": specifier: workspace:^ version: link:../../libs/hw-ledger-key-ring-protocol - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport - '@ledgerhq/hw-transport-http': + "@ledgerhq/hw-transport-http": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-http - '@ledgerhq/icons-ui': + "@ledgerhq/icons-ui": specifier: workspace:^ version: link:../../libs/ui/packages/icons - '@ledgerhq/ledger-key-ring-protocol': + "@ledgerhq/ledger-key-ring-protocol": specifier: workspace:^ version: link:../../libs/ledger-key-ring-protocol - '@ledgerhq/live-common': + "@ledgerhq/live-common": specifier: workspace:^ version: link:../../libs/ledger-live-common - '@ledgerhq/live-config': + "@ledgerhq/live-config": specifier: workspace:^ version: link:../../libs/live-config - '@ledgerhq/live-countervalues': + "@ledgerhq/live-countervalues": specifier: workspace:^ version: link:../../libs/live-countervalues - '@ledgerhq/live-countervalues-react': + "@ledgerhq/live-countervalues-react": specifier: workspace:^ version: link:../../libs/live-countervalues-react - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../../libs/env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../libs/live-network - '@ledgerhq/live-nft': + "@ledgerhq/live-nft": specifier: workspace:^ version: link:../../libs/live-nft - '@ledgerhq/live-nft-react': + "@ledgerhq/live-nft-react": specifier: workspace:^ version: link:../../libs/live-nft-react - '@ledgerhq/live-wallet': + "@ledgerhq/live-wallet": specifier: workspace:^ version: link:../../libs/live-wallet - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/logs - '@ledgerhq/native-ui': + "@ledgerhq/native-ui": specifier: workspace:^ version: link:../../libs/ui/packages/native - '@ledgerhq/react-native-hid': + "@ledgerhq/react-native-hid": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/react-native-hid - '@ledgerhq/react-native-hw-transport-ble': + "@ledgerhq/react-native-hw-transport-ble": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/react-native-hw-transport-ble - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-devices': + "@ledgerhq/types-devices": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-devices - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-live - '@likashefqet/react-native-image-zoom': + "@likashefqet/react-native-image-zoom": specifier: ^1.3.0 - version: 1.3.0(react-native-gesture-handler@2.16.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-reanimated@3.8.1(@babel/core@7.24.3)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@react-native-async-storage/async-storage': + version: 1.3.0(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-reanimated@3.9.0(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@react-native-async-storage/async-storage": specifier: ^1.19.2 - version: 1.23.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) - '@react-native-clipboard/clipboard': + version: 1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) + "@react-native-clipboard/clipboard": specifier: ^1.11.2 - version: 1.13.2(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@react-native-community/netinfo': + version: 1.13.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@react-native-community/netinfo": specifier: ^9.3.7 - version: 9.5.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) - '@react-native-firebase/app': + version: 9.5.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) + "@react-native-community/slider": + specifier: ^4.4.2 + version: 4.5.0 + "@react-native-firebase/app": specifier: ^14.11.1 - version: 14.12.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@react-native-firebase/messaging': + version: 14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@react-native-firebase/messaging": specifier: ^14.11.1 - version: 14.12.0(@react-native-firebase/app@14.12.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)) - '@react-native-firebase/remote-config': + version: 14.12.0(@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)) + "@react-native-firebase/remote-config": specifier: ^14.11.1 - version: 14.12.0(@react-native-firebase/app@14.12.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)) - '@react-native-masked-view/masked-view': + version: 14.12.0(@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)) + "@react-native-masked-view/masked-view": specifier: ^0.2.6 - version: 0.2.9(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@react-native/gradle-plugin': - specifier: 0.73.4 - version: 0.73.4 - '@react-native/metro-config': - specifier: 0.73.3 - version: 0.73.3(@babel/core@7.24.3) - '@react-navigation/bottom-tabs': + version: 0.2.9(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@react-native/gradle-plugin": + specifier: 0.74.88 + version: 0.74.88 + "@react-native/metro-config": + specifier: 0.74.88 + version: 0.74.88(@babel/core@7.24.3) + "@react-navigation/bottom-tabs": specifier: ^6.4.0 - version: 6.5.20(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-screens@3.30.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@react-navigation/core': + version: 6.5.20(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@react-navigation/core": specifier: ^6.4.6 version: 6.4.16(react@18.2.0) - '@react-navigation/devtools': - specifier: ^6.0.10 - version: 6.0.26(react@18.2.0) - '@react-navigation/elements': + "@react-navigation/elements": specifier: ^1.3.6 - version: 1.3.30(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@react-navigation/material-top-tabs': + version: 1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@react-navigation/material-top-tabs": specifier: ^6.3.0 - version: 6.6.13(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-pager-view@6.3.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-tab-view@3.5.2(react-native-pager-view@6.3.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@react-navigation/native': + version: 6.6.13(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-tab-view@3.5.2(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@react-navigation/native": specifier: ^6.0.13 - version: 6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@react-navigation/native-stack': + version: 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@react-navigation/native-stack": specifier: ^6.9.26 - version: 6.9.26(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-screens@3.30.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@react-navigation/stack': + version: 6.9.26(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@react-navigation/stack": specifier: ^6.3.1 - version: 6.3.29(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-gesture-handler@2.16.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-screens@3.30.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@reduxjs/toolkit': + version: 6.3.29(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@reduxjs/toolkit": specifier: ^2.0.1 version: 2.0.1(react-redux@7.2.9(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - '@segment/analytics-react-native': + "@segment/analytics-react-native": specifier: ^2.9.1 - version: 2.19.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)))(@segment/sovran-react-native@0.4.5(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-get-random-values@1.11.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@segment/sovran-react-native': + version: 2.19.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)))(@segment/sovran-react-native@0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-get-random-values@1.11.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@segment/sovran-react-native": specifier: ^0.4.5 - version: 0.4.5(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@sentry/react-native': - specifier: 5.20.0 - version: 5.20.0(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@shopify/flash-list': + version: 0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@sentry/react-native": + specifier: 5.24.3 + version: 5.24.3(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@shopify/flash-list": specifier: ^1.6.4 - version: 1.6.4(@babel/runtime@7.24.1)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@shopify/react-native-performance': + version: 1.6.4(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@shopify/react-native-performance": specifier: ^4.1.2 - version: 4.1.2(@babel/runtime@7.24.1)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@shopify/react-native-performance-navigation': + version: 4.1.2(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@shopify/react-native-performance-navigation": specifier: ^3.0.0 - version: 3.0.0(@babel/runtime@7.24.1)(@react-navigation/core@6.4.16(react@18.2.0))(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(@react-navigation/stack@6.3.29(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-gesture-handler@2.16.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-screens@3.30.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(@shopify/react-native-performance@4.1.2(@babel/runtime@7.24.1)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@tanstack/react-query': + version: 3.0.0(bdlxoipflge4zkd3tdq4b64jgq) + "@tanstack/react-query": specifier: ^5.28.9 version: 5.28.9(react@18.2.0) asyncstorage-down: specifier: ^4.2.0 - version: 4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))) + version: 4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))) bignumber.js: specifier: ^9.1.2 version: 9.1.2 @@ -1008,35 +1007,35 @@ importers: specifier: ^2.23.0 version: 2.30.0 expo: - specifier: ^50.0.3 - version: 50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + specifier: ^51.0.37 + version: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) expo-barcode-scanner: - specifier: ~12.9.2 - version: 12.9.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + specifier: ~13.0.1 + version: 13.0.1(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) expo-camera: - specifier: 14.1.3 - version: 14.1.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + specifier: 15.0.16 + version: 15.0.16(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) expo-crypto: - specifier: ^12.8.1 - version: 12.8.1(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + specifier: ^13.0.2 + version: 13.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) expo-file-system: - specifier: ~16.0.5 - version: 16.0.8(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + specifier: ~17.0.1 + version: 17.0.1(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) expo-image-loader: - specifier: ~4.6.0 - version: 4.6.0(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + specifier: ~4.7.0 + version: 4.7.0(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) expo-image-manipulator: - specifier: ~11.8.0 - version: 11.8.0(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + specifier: ~12.0.5 + version: 12.0.5(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) expo-keep-awake: - specifier: ~12.8.2 - version: 12.8.2(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + specifier: ~13.0.2 + version: 13.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) expo-modules-autolinking: - specifier: ^1.10.2 - version: 1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + specifier: ^1.11.2 + version: 1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) expo-modules-core: - specifier: ^1.11.8 - version: 1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + specifier: ^1.12.25 + version: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) fuse.js: specifier: ^6.4.6 version: 6.6.2 @@ -1057,7 +1056,7 @@ importers: version: 4.17.21 lottie-react-native: specifier: ^6.7.0 - version: 6.7.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 6.7.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) moment: specifier: ^2.29.1 version: 2.30.1 @@ -1078,136 +1077,133 @@ importers: version: 18.2.0 react-i18next: specifier: 11.18.6 - version: 11.18.6(i18next@20.6.1)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 11.18.6(i18next@20.6.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-is: specifier: ^18 version: 18.2.0 react-native: - specifier: 0.73.6 - version: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + specifier: 0.74.6 + version: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) react-native-adjust: specifier: ^4.37.1 version: 4.38.0 react-native-android-location-services-dialog-box: specifier: ^2.8.2 - version: 2.8.2(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + version: 2.8.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) react-native-animatable: specifier: ^1.3.3 - version: 1.4.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 1.4.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-biometrics: specifier: ^3.0.1 - version: 3.0.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + version: 3.0.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) react-native-ble-plx: specifier: 3.1.2 - version: 3.1.2(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 3.1.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-config: - specifier: 1.5.1 - version: 1.5.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + specifier: 1.5.3 + version: 1.5.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) react-native-device-info: specifier: ^11.1.0 - version: 11.1.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + version: 11.1.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) react-native-easy-markdown: specifier: ^2.0.0 - version: 2.0.0(prop-types@15.8.1)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + version: 2.0.0(prop-types@15.8.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) react-native-extra-dimensions-android: specifier: ^1.2.5 version: 1.2.5 react-native-fast-crypto: specifier: ^2.2.0 - version: 2.2.0(patch_hash=jdmv3zyvsaug2f6l23zgrmwdli)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + version: 2.2.0(patch_hash=jdmv3zyvsaug2f6l23zgrmwdli)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) react-native-fast-image: specifier: ^8.5.11 - version: 8.6.3(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 8.6.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-fast-pbkdf2: specifier: ^0.3.1 - version: 0.3.1(patch_hash=hsxraxacbj7ixutjkwcickkwma)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 0.3.1(patch_hash=hsxraxacbj7ixutjkwcickkwma)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-gesture-handler: specifier: ^2.9.0 - version: 2.16.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-get-random-values: specifier: ^1.11.0 - version: 1.11.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + version: 1.11.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) react-native-haptic-feedback: specifier: ^2.0.3 - version: 2.2.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + version: 2.2.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) react-native-image-crop-tools: specifier: ^1.6.4 - version: 1.6.4(patch_hash=p6wzwon3gzjcspjalwhmuroog4)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 1.6.4(patch_hash=p6wzwon3gzjcspjalwhmuroog4)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-image-picker: specifier: ^5.6.1 - version: 5.7.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 5.7.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-inappbrowser-reborn: specifier: ^3.7.0 - version: 3.7.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + version: 3.7.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) react-native-keyboard-aware-scroll-view: specifier: ^0.9.5 - version: 0.9.5(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + version: 0.9.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) react-native-keychain: specifier: ^7.0.0 version: 7.0.0 react-native-level-fs: specifier: ^3.0.0 - version: 3.0.1(asyncstorage-down@4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)))) + version: 3.0.1(asyncstorage-down@4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)))) react-native-localize: specifier: ^2.2.1 - version: 2.2.6(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 2.2.6(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-modal: specifier: ^13.0.0 - version: 13.0.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 13.0.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-navigation-bar-color: specifier: ^2.0.1 version: 2.0.2 react-native-pager-view: specifier: ^6.0.1 - version: 6.3.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-qrcode-svg: specifier: 6.1.1 - version: 6.1.1(react-native-svg@13.14.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 6.1.1(react-native-svg@13.14.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-randombytes: specifier: ^3.6.1 version: 3.6.1 react-native-reanimated: - specifier: 3.8.1 - version: 3.8.1(@babel/core@7.24.3)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + specifier: 3.9.0 + version: 3.9.0(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-restart: specifier: ^0.0.24 - version: 0.0.24(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 0.0.24(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-safe-area-context: - specifier: ^4.5.0 - version: 4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + specifier: ^4.10.5 + version: 4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-screens: - specifier: ^3.27.0 - version: 3.30.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + specifier: ^3.31.1 + version: 3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-share: specifier: ^10.0.1 version: 10.1.0 - react-native-slider: - specifier: ^0.11.0 - version: 0.11.0 react-native-splash-screen: specifier: 3.2.0 - version: 3.2.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + version: 3.2.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) react-native-startup-time: specifier: ^2.0.1 - version: 2.1.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 2.1.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-svg: specifier: 13.14.0 - version: 13.14.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 13.14.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-tab-view: specifier: ^3.3.0 - version: 3.5.2(react-native-pager-view@6.3.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 3.5.2(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-tcp-socket: specifier: ^6.0.6 - version: 6.0.6(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + version: 6.0.6(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) react-native-udp: specifier: ^4.1.4 version: 4.1.7 react-native-url-polyfill: specifier: ^1.3.0 - version: 1.3.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + version: 1.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) react-native-vector-icons: - specifier: ^10.0.0 - version: 10.0.3 + specifier: ^10.2.0 + version: 10.2.0 react-native-version-number: specifier: ^0.3.6 version: 0.3.6 @@ -1216,7 +1212,7 @@ importers: version: 5.2.1(patch_hash=vl2q6vd2d45opudk6juqeyavs4) react-native-webview: specifier: 13.10.3 - version: 13.10.3(patch_hash=42avlvajmp3nsjxv67iugfa7uq)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 13.10.3(patch_hash=42avlvajmp3nsjxv67iugfa7uq)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-redux: specifier: ^7.2.9 version: 7.2.9(@types/react@18.2.73)(react@18.2.0) @@ -1226,9 +1222,6 @@ importers: redux-actions: specifier: 2.6.5 version: 2.6.5 - redux-flipper: - specifier: ^2.0.2 - version: 2.0.3(react-native-flipper@0.163.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(redux@4.2.1) reselect: specifier: 4.0.0 version: 4.0.0 @@ -1242,8 +1235,8 @@ importers: specifier: ^7.3.7 version: 7.5.4 storyly-react-native: - specifier: 3.6.0 - version: 3.6.0(prop-types@15.8.1)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + specifier: 3.6.2 + version: 3.6.2(prop-types@15.8.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) styled-components: specifier: ^5.3.3 version: 5.3.11(@babel/core@7.24.3)(react-is@18.2.0)(react@18.2.0) @@ -1257,151 +1250,151 @@ importers: specifier: ^8.3.2 version: 8.3.2 devDependencies: - '@babel/core': + "@babel/core": specifier: ^7.24.3 version: 7.24.3 - '@babel/plugin-proposal-export-namespace-from': + "@babel/plugin-proposal-export-namespace-from": specifier: ^7.18.9 version: 7.18.9(@babel/core@7.24.3) - '@babel/plugin-proposal-nullish-coalescing-operator': + "@babel/plugin-proposal-nullish-coalescing-operator": specifier: ^7.18.6 version: 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-chaining': + "@babel/plugin-proposal-optional-chaining": specifier: ^7.21.0 version: 7.21.0(@babel/core@7.24.3) - '@babel/plugin-transform-arrow-functions': + "@babel/plugin-transform-arrow-functions": specifier: ^7.24.1 version: 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-class-static-block': + "@babel/plugin-transform-class-static-block": specifier: ^7.24.1 version: 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-named-capturing-groups-regex': + "@babel/plugin-transform-named-capturing-groups-regex": specifier: ^7.22.5 version: 7.22.5(@babel/core@7.24.3) - '@babel/plugin-transform-shorthand-properties': + "@babel/plugin-transform-shorthand-properties": specifier: ^7.24.1 version: 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-template-literals': + "@babel/plugin-transform-template-literals": specifier: ^7.24.1 version: 7.24.1(@babel/core@7.24.3) - '@babel/preset-react': + "@babel/preset-react": specifier: ^7.24.1 version: 7.24.1(@babel/core@7.24.3) - '@babel/runtime': + "@babel/runtime": specifier: ^7.24.1 version: 7.24.1 - '@jest/reporters': + "@jest/reporters": specifier: ^29.7.0 version: 29.7.0 - '@ledgerhq/hw-transport-node-speculos-http': + "@ledgerhq/hw-transport-node-speculos-http": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-node-speculos-http - '@ledgerhq/speculos-transport': + "@ledgerhq/speculos-transport": specifier: workspace:^ version: link:../../libs/speculos-transport - '@ledgerhq/test-utils': + "@ledgerhq/test-utils": specifier: workspace:^ version: link:../../libs/test-utils - '@react-native-community/cli': - specifier: 12.3.6 - version: 12.3.6 - '@react-native-community/cli-platform-android': - specifier: 12.3.6 - version: 12.3.6 - '@react-native-community/cli-platform-ios': - specifier: 12.3.6 - version: 12.3.6 - '@react-native/babel-preset': - specifier: 0.73.19 - version: 0.73.19(@babel/core@7.24.3) - '@react-native/dev-middleware': - specifier: 0.73.7 - version: 0.73.7 - '@sentry/cli': + "@react-native-community/cli": + specifier: 13.6.1 + version: 13.6.1 + "@react-native-community/cli-platform-android": + specifier: 13.6.1 + version: 13.6.1 + "@react-native-community/cli-platform-ios": + specifier: 13.6.1 + version: 13.6.1 + "@react-native/babel-preset": + specifier: 0.74.88 + version: 0.74.88(@babel/core@7.24.3) + "@react-native/dev-middleware": + specifier: 0.74.88 + version: 0.74.88 + "@sentry/cli": specifier: 2.31.0 version: 2.31.0 - '@swc/core': + "@swc/core": specifier: ^1.3.95 version: 1.4.11 - '@swc/jest': + "@swc/jest": specifier: ^0.2.29 version: 0.2.36(@swc/core@1.4.11) - '@testing-library/jest-native': + "@testing-library/jest-native": specifier: ^5.4.3 - version: 5.4.3(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0) - '@testing-library/react-native': + version: 5.4.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0) + "@testing-library/react-native": specifier: ^12.4.5 - version: 12.4.5(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0) - '@types/body-parser': + version: 12.4.5(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0) + "@types/body-parser": specifier: ^1.19.5 version: 1.19.5 - '@types/color': + "@types/color": specifier: ^3.0.3 version: 3.0.6 - '@types/cors': + "@types/cors": specifier: ^2.8.17 version: 2.8.17 - '@types/d3-array': + "@types/d3-array": specifier: ~2.3.0 version: 2.3.0 - '@types/d3-scale': + "@types/d3-scale": specifier: ^3.2.1 version: 3.3.5 - '@types/d3-shape': + "@types/d3-shape": specifier: ^3.0.2 version: 3.1.6 - '@types/express': + "@types/express": specifier: ^4.17.18 version: 4.17.21 - '@types/hoist-non-react-statics': + "@types/hoist-non-react-statics": specifier: ^3.3.1 version: 3.3.5(@types/react@18.2.73) - '@types/invariant': + "@types/invariant": specifier: ^2.2.35 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.3 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.14.197 version: 4.17.0 - '@types/react': + "@types/react": specifier: ^18.2.21 version: 18.2.73 - '@types/react-native-extra-dimensions-android': + "@types/react-native-extra-dimensions-android": specifier: ^1.2.0 version: 1.2.3 - '@types/react-native-vector-icons': + "@types/react-native-vector-icons": specifier: ^6.4.14 version: 6.4.18(@types/react@18.2.73) - '@types/react-native-video': + "@types/react-native-video": specifier: ^5.0.14 version: 5.0.20(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - '@types/react-redux': + "@types/react-redux": specifier: ^7.1.24 version: 7.1.33(@types/react@18.2.73) - '@types/react-test-renderer': + "@types/react-test-renderer": specifier: ^18.0.3 version: 18.0.7(@types/react@18.2.73) - '@types/redux-actions': + "@types/redux-actions": specifier: ^2.6.2 version: 2.6.5 - '@types/semver': + "@types/semver": specifier: ^7.3.9 version: 7.5.8 - '@types/styled-components': + "@types/styled-components": specifier: ^5.1.25 version: 5.1.34(@types/react@18.2.73) - '@types/styled-components-react-native': + "@types/styled-components-react-native": specifier: ^5.1.3 version: 5.2.5(@types/react@18.2.73) - '@types/styled-system': + "@types/styled-system": specifier: ^5.1.15 version: 5.1.22 - '@types/uuid': + "@types/uuid": specifier: ^8.3.4 version: 8.3.4 - '@types/ws': + "@types/ws": specifier: ^8.5.3 version: 8.5.10 babel-jest: @@ -1482,21 +1475,12 @@ importers: react-native-debugger-open: specifier: ^0.4.0 version: 0.4.3 - react-native-flipper: - specifier: 0.163.0 - version: 0.163.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - react-native-flipper-performance-plugin: - specifier: ^0.4.0 - version: 0.4.0 react-native-launch-arguments: specifier: ^4.0.1 - version: 4.0.2(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + version: 4.0.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-performance: specifier: ^3.1.2 - version: 3.1.2(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) - react-native-performance-flipper-reporter: - specifier: ^3.0.0 - version: 3.0.0(react-native-flipper@0.163.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-performance@3.1.2(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))) + version: 3.1.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) react-test-renderer: specifier: ^18.2.0 version: 18.2.0(react@18.2.0) @@ -1518,70 +1502,70 @@ importers: apps/web-tools: dependencies: - '@codemirror/lang-json': + "@codemirror/lang-json": specifier: ^6.0.1 version: 6.0.1 - '@codemirror/view': + "@codemirror/view": specifier: ^6.28.2 version: 6.28.2 - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../libs/coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/cryptoassets - '@ledgerhq/domain-service': + "@ledgerhq/domain-service": specifier: workspace:^ version: link:../../libs/domain-service - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/errors - '@ledgerhq/hw-app-eth': + "@ledgerhq/hw-app-eth": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-app-eth - '@ledgerhq/hw-ledger-key-ring-protocol': + "@ledgerhq/hw-ledger-key-ring-protocol": specifier: workspace:^ version: link:../../libs/hw-ledger-key-ring-protocol - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport - '@ledgerhq/hw-transport-http': + "@ledgerhq/hw-transport-http": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-http - '@ledgerhq/hw-transport-web-ble': + "@ledgerhq/hw-transport-web-ble": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-web-ble - '@ledgerhq/hw-transport-webhid': + "@ledgerhq/hw-transport-webhid": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-webhid - '@ledgerhq/hw-transport-webusb': + "@ledgerhq/hw-transport-webusb": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-webusb - '@ledgerhq/ledger-key-ring-protocol': + "@ledgerhq/ledger-key-ring-protocol": specifier: workspace:^ version: link:../../libs/ledger-key-ring-protocol - '@ledgerhq/live-common': + "@ledgerhq/live-common": specifier: workspace:^ version: link:../../libs/ledger-live-common - '@ledgerhq/live-config': + "@ledgerhq/live-config": specifier: workspace:^ version: link:../../libs/live-config - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../../libs/env - '@ledgerhq/live-wallet': + "@ledgerhq/live-wallet": specifier: workspace:^ version: link:../../libs/live-wallet - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/logs - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-live - '@uiw/react-codemirror': + "@uiw/react-codemirror": specifier: ^4.22.2 version: 4.22.2(@codemirror/view@6.28.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) bignumber.js: @@ -1621,7 +1605,7 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) react-dropzone: - specifier: '14' + specifier: "14" version: 14.2.3(react@18.3.1) react-inspector: specifier: ^4.0.1 @@ -1651,31 +1635,31 @@ importers: specifier: ^6.0.3 version: 6.0.3 devDependencies: - '@types/invariant': + "@types/invariant": specifier: ^2.2.35 version: 2.2.37 - '@types/lodash': + "@types/lodash": specifier: ^4.14.198 version: 4.17.0 - '@types/node': + "@types/node": specifier: 20.8.10 version: 20.8.10 - '@types/qrcode': - specifier: '1' + "@types/qrcode": + specifier: "1" version: 1.5.5 - '@types/react': + "@types/react": specifier: ^18.3.5 version: 18.3.5 - '@types/react-dom': + "@types/react-dom": specifier: ^18.3.0 version: 18.3.0(@types/react@18.3.5) - '@types/react-inspector': + "@types/react-inspector": specifier: ^4.0.2 version: 4.0.6(@types/react@18.3.5) - '@types/react-table': + "@types/react-table": specifier: ^7.7.15 version: 7.7.20(@types/react@18.3.5) - '@types/semver': + "@types/semver": specifier: ^7.3.9 version: 7.5.8 @@ -1697,7 +1681,7 @@ importers: specifier: ^18.2.0 version: 18.2.0(react@18.2.0) devDependencies: - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 eslint-config-next: @@ -1709,28 +1693,28 @@ importers: libs/coin-framework: dependencies: - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../ledgerjs/packages/cryptoassets - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../ledgerjs/packages/errors - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../live-network - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../ledgerjs/packages/logs - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../ledgerjs/packages/types-live bignumber.js: @@ -1755,22 +1739,22 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@ledgerhq/hw-transport-node-speculos': + "@ledgerhq/hw-transport-node-speculos": specifier: workspace:^ version: link:../ledgerjs/packages/hw-transport-node-speculos - '@ledgerhq/hw-transport-node-speculos-http': + "@ledgerhq/hw-transport-node-speculos-http": specifier: workspace:^ version: link:../ledgerjs/packages/hw-transport-node-speculos-http - '@types/invariant': + "@types/invariant": specifier: ^2.2.2 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.14.191 version: 4.17.0 - '@types/numeral': + "@types/numeral": specifier: ^2.0.2 version: 2.0.5 cross-env: @@ -1788,31 +1772,31 @@ importers: libs/coin-modules/coin-algorand: dependencies: - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../ledgerjs/packages/errors - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../../env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../live-network - '@ledgerhq/live-promise': + "@ledgerhq/live-promise": specifier: workspace:^ version: link:../../promise - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../ledgerjs/packages/types-live algo-msgpack-with-bigint: @@ -1840,13 +1824,13 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@types/invariant': + "@types/invariant": specifier: ^2.2.2 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.14.191 version: 4.17.0 jest: @@ -1858,31 +1842,31 @@ importers: libs/coin-modules/coin-bitcoin: dependencies: - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../ledgerjs/packages/errors - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../../env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../live-network - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../../ledgerjs/packages/logs - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../ledgerjs/packages/types-live bchaddrjs: @@ -1943,40 +1927,40 @@ importers: specifier: 1.1.2 version: 1.1.2 devDependencies: - '@types/bchaddrjs': + "@types/bchaddrjs": specifier: ^0.4.3 version: 0.4.3 - '@types/bs58': + "@types/bs58": specifier: ^4.0.1 version: 4.0.4 - '@types/bs58check': + "@types/bs58check": specifier: ^2.1.0 version: 2.1.2 - '@types/cashaddrjs': + "@types/cashaddrjs": specifier: ^0.3.3 version: 0.3.3 - '@types/create-hmac': + "@types/create-hmac": specifier: ^1.1.3 version: 1.1.3 - '@types/invariant': + "@types/invariant": specifier: ^2.2.2 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.14.191 version: 4.17.0 - '@types/object-hash': + "@types/object-hash": specifier: ^2.1.0 version: 2.2.1 - '@types/ripemd160': + "@types/ripemd160": specifier: ^2.0.3 version: 2.0.3 - '@types/secp256k1': + "@types/secp256k1": specifier: ^4.0.3 version: 4.0.6 - '@types/sha.js': + "@types/sha.js": specifier: ^2.4.4 version: 2.4.4 axios: @@ -2003,37 +1987,37 @@ importers: libs/coin-modules/coin-cardano: dependencies: - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../ledgerjs/packages/errors - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../../env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../live-network - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../../ledgerjs/packages/logs - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../ledgerjs/packages/types-live - '@stricahq/bip32ed25519': + "@stricahq/bip32ed25519": specifier: ^1.0.3 version: 1.0.4 - '@stricahq/typhonjs': + "@stricahq/typhonjs": specifier: ^2.0.0 version: 2.0.0 bech32: @@ -2055,13 +2039,13 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@types/invariant': + "@types/invariant": specifier: ^2.2.2 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.14.191 version: 4.17.0 jest: @@ -2073,49 +2057,49 @@ importers: libs/coin-modules/coin-cosmos: dependencies: - '@cosmjs/amino': + "@cosmjs/amino": specifier: ^0.31.1 version: 0.31.3 - '@cosmjs/crypto': + "@cosmjs/crypto": specifier: ^0.31.0 version: 0.31.3 - '@cosmjs/stargate': + "@cosmjs/stargate": specifier: ^0.26.5 version: 0.26.8 - '@keplr-wallet/cosmos': + "@keplr-wallet/cosmos": specifier: ^0.9.16 version: 0.9.16 - '@keplr-wallet/proto-types': + "@keplr-wallet/proto-types": specifier: ^0.12.76 version: 0.12.89 - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../ledgerjs/packages/errors - '@ledgerhq/live-config': + "@ledgerhq/live-config": specifier: workspace:^ version: link:../../live-config - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../../env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../live-network - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../../ledgerjs/packages/logs - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../ledgerjs/packages/types-live axios: @@ -2149,16 +2133,16 @@ importers: specifier: ^7.1.3 version: 7.6.3 devDependencies: - '@types/invariant': + "@types/invariant": specifier: ^2.2.2 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.14.191 version: 4.17.7 - '@types/semver': + "@types/semver": specifier: ^7.5.8 version: 7.5.8 jest: @@ -2170,40 +2154,40 @@ importers: libs/coin-modules/coin-elrond: dependencies: - '@elrondnetwork/erdjs': + "@elrondnetwork/erdjs": specifier: 11.0.0 version: 11.0.0 - '@elrondnetwork/erdjs-network-providers': + "@elrondnetwork/erdjs-network-providers": specifier: ^1.1.2 version: 1.2.0 - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../ledgerjs/packages/errors - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../../env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../live-network - '@ledgerhq/live-promise': + "@ledgerhq/live-promise": specifier: workspace:^ version: link:../../promise - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../../ledgerjs/packages/logs - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../ledgerjs/packages/types-live bech32: @@ -2225,13 +2209,13 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@types/invariant': + "@types/invariant": specifier: ^2.2.37 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.17.7 version: 4.17.7 jest: @@ -2243,37 +2227,37 @@ importers: libs/coin-modules/coin-evm: dependencies: - '@ethersproject/shims': + "@ethersproject/shims": specifier: ^5.7.0 version: 5.7.0 - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../ledgerjs/packages/devices - '@ledgerhq/domain-service': + "@ledgerhq/domain-service": specifier: workspace:^ version: link:../../domain-service - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../ledgerjs/packages/errors - '@ledgerhq/evm-tools': + "@ledgerhq/evm-tools": specifier: workspace:^ version: link:../../evm-tools - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../../env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../live-network - '@ledgerhq/live-promise': + "@ledgerhq/live-promise": specifier: workspace:^ version: link:../../promise - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../../ledgerjs/packages/logs axios: @@ -2307,31 +2291,31 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@ledgerhq/coin-tester': + "@ledgerhq/coin-tester": specifier: workspace:^ version: link:../../coin-tester - '@ledgerhq/hw-app-eth': + "@ledgerhq/hw-app-eth": specifier: workspace:^ version: link:../../ledgerjs/packages/hw-app-eth - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../ledgerjs/packages/types-live - '@types/bluebird': + "@types/bluebird": specifier: ^3.5.42 version: 3.5.42 - '@types/imurmurhash': + "@types/imurmurhash": specifier: ^0.1.4 version: 0.1.4 - '@types/invariant': + "@types/invariant": specifier: ^2.2.2 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.14.191 version: 4.17.0 bluebird: @@ -2370,37 +2354,37 @@ importers: libs/coin-modules/coin-icon: dependencies: - '@faker-js/faker': + "@faker-js/faker": specifier: ^8.4.1 version: 8.4.1 - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../ledgerjs/packages/errors - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../../env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../live-network - '@ledgerhq/live-promise': + "@ledgerhq/live-promise": specifier: workspace:^ version: link:../../promise - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../../ledgerjs/packages/logs - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../ledgerjs/packages/types-live bignumber.js: @@ -2425,13 +2409,13 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@types/invariant': + "@types/invariant": specifier: ^2.2.2 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.14.191 version: 4.17.4 jest: @@ -2443,28 +2427,28 @@ importers: libs/coin-modules/coin-near: dependencies: - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../ledgerjs/packages/errors - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../live-network - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../../ledgerjs/packages/logs - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../ledgerjs/packages/types-live bignumber.js: @@ -2486,13 +2470,13 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@types/invariant': + "@types/invariant": specifier: ^2.2.2 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.14.191 version: 4.17.0 jest: @@ -2504,52 +2488,52 @@ importers: libs/coin-modules/coin-polkadot: dependencies: - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../ledgerjs/packages/errors - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../../env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../live-network - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../../ledgerjs/packages/logs - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../ledgerjs/packages/types-live - '@polkadot/api': + "@polkadot/api": specifier: 11.2.1 version: 11.2.1 - '@polkadot/api-augment': + "@polkadot/api-augment": specifier: 11.2.1 version: 11.2.1 - '@polkadot/api-derive': + "@polkadot/api-derive": specifier: 11.2.1 version: 11.2.1 - '@polkadot/types': + "@polkadot/types": specifier: 11.2.1 version: 11.2.1 - '@polkadot/types-known': + "@polkadot/types-known": specifier: 11.2.1 version: 11.2.1 - '@polkadot/util': + "@polkadot/util": specifier: 12.6.2 version: 12.6.2 - '@polkadot/util-crypto': + "@polkadot/util-crypto": specifier: 12.6.2 version: 12.6.2(@polkadot/util@12.6.2) bignumber.js: @@ -2568,22 +2552,22 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@faker-js/faker': + "@faker-js/faker": specifier: ^8.4.1 version: 8.4.1 - '@ledgerhq/coin-tester': + "@ledgerhq/coin-tester": specifier: workspace:^ version: link:../../coin-tester - '@ledgerhq/hw-app-polkadot': + "@ledgerhq/hw-app-polkadot": specifier: workspace:^ version: link:../../ledgerjs/packages/hw-app-polkadot - '@types/invariant': + "@types/invariant": specifier: ^2.2.2 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.14.191 version: 4.17.0 chalk: @@ -2619,37 +2603,37 @@ importers: libs/coin-modules/coin-solana: dependencies: - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../ledgerjs/packages/errors - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../../env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../live-network - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../../ledgerjs/packages/logs - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../ledgerjs/packages/types-live - '@solana/spl-token': + "@solana/spl-token": specifier: ^0.3.7 version: 0.3.8(@solana/web3.js@1.77.3) - '@solana/web3.js': + "@solana/web3.js": specifier: 1.77.3 version: 1.77.3 bignumber.js: @@ -2677,22 +2661,22 @@ importers: specifier: 0.14.2 version: 0.14.2 devDependencies: - '@faker-js/faker': + "@faker-js/faker": specifier: ^8.4.1 version: 8.4.1 - '@types/bs58': + "@types/bs58": specifier: ^4.0.1 version: 4.0.4 - '@types/invariant': + "@types/invariant": specifier: ^2.2.2 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.14.191 version: 4.17.0 - '@types/object-hash': + "@types/object-hash": specifier: ^2.1.0 version: 2.2.1 jest: @@ -2704,31 +2688,31 @@ importers: libs/coin-modules/coin-stellar: dependencies: - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../ledgerjs/packages/errors - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../live-network - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../../ledgerjs/packages/logs - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../ledgerjs/packages/types-live - '@stellar/stellar-sdk': + "@stellar/stellar-sdk": specifier: ^11.3.0 version: 11.3.0 bignumber.js: @@ -2744,16 +2728,16 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@faker-js/faker': + "@faker-js/faker": specifier: ^8.4.1 version: 8.4.1 - '@types/invariant': + "@types/invariant": specifier: ^2.2.2 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 jest: @@ -2765,40 +2749,40 @@ importers: libs/coin-modules/coin-tezos: dependencies: - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../ledgerjs/packages/errors - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../live-network - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../../ledgerjs/packages/logs - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../ledgerjs/packages/types-live - '@taquito/ledger-signer': + "@taquito/ledger-signer": specifier: ^20.0.1 version: 20.0.1 - '@taquito/rpc': + "@taquito/rpc": specifier: ^20.0.1 version: 20.0.1 - '@taquito/taquito': + "@taquito/taquito": specifier: ^20.0.1 version: 20.0.1 - '@taquito/utils': + "@taquito/utils": specifier: ^20.0.1 version: 20.0.1 bignumber.js: @@ -2820,22 +2804,22 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@faker-js/faker': + "@faker-js/faker": specifier: ^8.4.1 version: 8.4.1 - '@types/blake2b': + "@types/blake2b": specifier: ^2.1.3 version: 2.1.3 - '@types/bs58check': + "@types/bs58check": specifier: ^2.1.2 version: 2.1.2 - '@types/invariant': + "@types/invariant": specifier: ^2.2.37 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.12 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.17.4 version: 4.17.4 jest: @@ -2847,40 +2831,40 @@ importers: libs/coin-modules/coin-ton: dependencies: - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../ledgerjs/packages/errors - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../../env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../live-network - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../../ledgerjs/packages/logs - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../ledgerjs/packages/types-live - '@ton/core': + "@ton/core": specifier: ^0.56.3 version: 0.56.3(@ton/crypto@3.3.0) - '@ton/crypto': + "@ton/crypto": specifier: ^3.3.0 version: 3.3.0 - '@ton/ton': + "@ton/ton": specifier: ^13.11.1 version: 13.11.2(@ton/core@0.56.3(@ton/crypto@3.3.0))(@ton/crypto@3.3.0) bignumber.js: @@ -2905,16 +2889,16 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@types/imurmurhash': + "@types/imurmurhash": specifier: ^0.1.4 version: 0.1.4 - '@types/invariant': + "@types/invariant": specifier: ^2.2.2 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.14.191 version: 4.17.4 jest: @@ -2926,31 +2910,31 @@ importers: libs/coin-modules/coin-tron: dependencies: - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../ledgerjs/packages/errors - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../../env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../live-network - '@ledgerhq/live-promise': + "@ledgerhq/live-promise": specifier: workspace:^ version: link:../../promise - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../../ledgerjs/packages/logs - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../ledgerjs/packages/types-live bignumber.js: @@ -2975,19 +2959,19 @@ importers: specifier: ^5.3.2 version: 5.3.2 devDependencies: - '@agrozyme/types-tronweb': + "@agrozyme/types-tronweb": specifier: ^5.3.2 version: 5.3.2 - '@types/bs58check': + "@types/bs58check": specifier: ^2.1.0 version: 2.1.2 - '@types/invariant': + "@types/invariant": specifier: ^2.2.2 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.14.191 version: 4.17.0 jest: @@ -3005,22 +2989,22 @@ importers: libs/coin-modules/coin-xrp: dependencies: - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../../ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../../ledgerjs/packages/errors - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../../live-network - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../../ledgerjs/packages/types-live bignumber.js: @@ -3039,16 +3023,16 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@faker-js/faker': + "@faker-js/faker": specifier: ^8.4.1 version: 8.4.1 - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - '@types/invariant': + "@types/invariant": specifier: ^2.2.37 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.12 version: 29.5.12 dotenv: @@ -3072,7 +3056,7 @@ importers: libs/coin-tester: dependencies: - '@ledgerhq/hw-transport-node-speculos-http': + "@ledgerhq/hw-transport-node-speculos-http": specifier: workspace:^ version: link:../ledgerjs/packages/hw-transport-node-speculos-http axios: @@ -3091,16 +3075,16 @@ importers: specifier: 7.8.1 version: 7.8.1 devDependencies: - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../ledgerjs/packages/types-live - '@types/jest': + "@types/jest": specifier: ^28.1.8 version: 28.1.8 - '@types/node': + "@types/node": specifier: ^18.15.7 version: 18.19.26 jest: @@ -3115,22 +3099,22 @@ importers: libs/device-core: dependencies: - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../ledgerjs/packages/errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../ledgerjs/packages/hw-transport - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../live-network - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../ledgerjs/packages/logs - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../ledgerjs/packages/types-live semver: @@ -3140,19 +3124,19 @@ importers: specifier: ^2.4.11 version: 2.4.11 devDependencies: - '@testing-library/react': - specifier: '14' + "@testing-library/react": + specifier: "14" version: 14.2.2 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 - '@types/semver': + "@types/semver": specifier: 7.5.7 version: 7.5.7 - '@types/sha.js': + "@types/sha.js": specifier: ^2.4.4 version: 2.4.4 jest: @@ -3167,17 +3151,17 @@ importers: libs/device-react: dependencies: - '@ledgerhq/device-core': + "@ledgerhq/device-core": specifier: workspace:^ version: link:../device-core devDependencies: - '@testing-library/react': - specifier: '14' + "@testing-library/react": + specifier: "14" version: 14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 jest: @@ -3198,13 +3182,13 @@ importers: libs/domain-service: dependencies: - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../ledgerjs/packages/errors - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../ledgerjs/packages/logs - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../ledgerjs/packages/types-live axios: @@ -3220,22 +3204,22 @@ importers: specifier: ^18.2.0 version: 18.2.0(react@18.2.0) devDependencies: - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../ledgerjs/packages/types-cryptoassets - '@testing-library/jest-dom': + "@testing-library/jest-dom": specifier: ^6.1.5 version: 6.4.2(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.12.12)) - '@testing-library/react': + "@testing-library/react": specifier: ^14.1.2 version: 14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 - '@types/testing-library__jest-dom': + "@types/testing-library__jest-dom": specifier: ^5.14.5 version: 5.14.9 cross-env: @@ -3266,7 +3250,7 @@ importers: specifier: ^3.10.0 version: 3.11.0 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 jest: @@ -3282,13 +3266,13 @@ importers: specifier: ^3.3.0 version: 3.3.0 devDependencies: - '@rollup/plugin-commonjs': + "@rollup/plugin-commonjs": specifier: ^25.0.7 version: 25.0.7(rollup@4.17.2) - '@rollup/plugin-node-resolve': + "@rollup/plugin-node-resolve": specifier: ^15.2.3 version: 15.2.3(rollup@4.17.2) - '@types/events': + "@types/events": specifier: ^3.0.3 version: 3.0.3 esbuild: @@ -3306,10 +3290,10 @@ importers: libs/evm-tools: dependencies: - '@ledgerhq/cryptoassets-evm-signatures': + "@ledgerhq/cryptoassets-evm-signatures": specifier: workspace:^ version: link:../ledgerjs/packages/cryptoassets-evm-signatures - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../env axios: @@ -3322,19 +3306,19 @@ importers: specifier: 5.7.2 version: 5.7.2 devDependencies: - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../ledgerjs/packages/types-live - '@types/axios': + "@types/axios": specifier: ^0.14.0 version: 0.14.0 - '@types/crypto-js': + "@types/crypto-js": specifier: ^4.1.1 version: 4.2.2 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 jest: @@ -3346,26 +3330,26 @@ importers: libs/exchange-module: dependencies: - '@ledgerhq/wallet-api-client': + "@ledgerhq/wallet-api-client": specifier: ^1.6.0 version: 1.6.0 - '@ledgerhq/wallet-api-core': + "@ledgerhq/wallet-api-core": specifier: ^1.13.0 version: 1.13.0 devDependencies: - '@types/node': + "@types/node": specifier: ^20.2.5 version: 20.12.12 libs/hw-ledger-key-ring-protocol: dependencies: - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:* version: link:../ledgerjs/packages/hw-transport - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:* version: link:../env - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:* version: link:../ledgerjs/packages/logs bip32: @@ -3378,16 +3362,16 @@ importers: specifier: ^5.0.0 version: 5.0.0 tiny-secp256k1: - specifier: '1' + specifier: "1" version: 1.1.6 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/lodash': - specifier: '4' + "@types/lodash": + specifier: "4" version: 4.17.7 - '@types/secp256k1': + "@types/secp256k1": specifier: ^4.0.6 version: 4.0.6 jest: @@ -3399,47 +3383,47 @@ importers: libs/ledger-key-ring-protocol: dependencies: - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:* version: link:../ledgerjs/packages/errors - '@ledgerhq/hw-ledger-key-ring-protocol': + "@ledgerhq/hw-ledger-key-ring-protocol": specifier: workspace:* version: link:../hw-ledger-key-ring-protocol - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:* version: link:../ledgerjs/packages/hw-transport - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:* version: link:../ledgerjs/packages/hw-transport-mocker - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:* version: link:../env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:* version: link:../live-network - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:* version: link:../ledgerjs/packages/logs - '@ledgerhq/speculos-transport': + "@ledgerhq/speculos-transport": specifier: workspace:* version: link:../speculos-transport - '@ledgerhq/types-devices': + "@ledgerhq/types-devices": specifier: workspace:^ version: link:../ledgerjs/packages/types-devices base64-js: - specifier: '1' + specifier: "1" version: 1.5.1 isomorphic-ws: - specifier: '5' + specifier: "5" version: 5.0.0(ws@8.18.0) rxjs: specifier: ^7.8.1 version: 7.8.1 ws: - specifier: '8' + specifier: "8" version: 8.18.0 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 bip39: @@ -3463,259 +3447,259 @@ importers: libs/ledger-live-common: dependencies: - '@blooo/hw-app-acre': + "@blooo/hw-app-acre": specifier: ^1.0.1 version: 1.0.1 - '@cardano-foundation/ledgerjs-hw-app-cardano': + "@cardano-foundation/ledgerjs-hw-app-cardano": specifier: ^7.1.2 version: 7.1.2 - '@celo/connect': + "@celo/connect": specifier: ^3.0.1 version: 3.2.0 - '@celo/contractkit': + "@celo/contractkit": specifier: ^3.0.1 version: 3.2.0 - '@celo/utils': + "@celo/utils": specifier: ^3.0.1 version: 3.2.0 - '@celo/wallet-base': + "@celo/wallet-base": specifier: ^3.0.1 version: 3.2.0 - '@celo/wallet-ledger': + "@celo/wallet-ledger": specifier: ^3.0.1 version: 3.2.0 - '@crypto-org-chain/chain-jslib': + "@crypto-org-chain/chain-jslib": specifier: 1.1.2 version: 1.1.2 - '@dfinity/agent': + "@dfinity/agent": specifier: ^0.21.0 version: 0.21.4(@dfinity/candid@0.21.4(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)))(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)) - '@dfinity/candid': + "@dfinity/candid": specifier: ^0.21.0 version: 0.21.4(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)) - '@dfinity/principal': + "@dfinity/principal": specifier: ^0.15.6 version: 0.15.7(@types/node@20.12.12)(typescript@5.1.3) - '@hashgraph/sdk': + "@hashgraph/sdk": specifier: 2.14.2 - version: 2.14.2(patch_hash=ftpe7kgiykw2quxzn7vgiqumd4)(react-native@0.73.6(react@18.2.0))(react@18.2.0) - '@ledgerhq/coin-algorand': + version: 2.14.2(patch_hash=ftpe7kgiykw2quxzn7vgiqumd4)(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@ledgerhq/coin-algorand": specifier: workspace:^ version: link:../coin-modules/coin-algorand - '@ledgerhq/coin-bitcoin': + "@ledgerhq/coin-bitcoin": specifier: workspace:^ version: link:../coin-modules/coin-bitcoin - '@ledgerhq/coin-cardano': + "@ledgerhq/coin-cardano": specifier: workspace:^ version: link:../coin-modules/coin-cardano - '@ledgerhq/coin-cosmos': + "@ledgerhq/coin-cosmos": specifier: workspace:^ version: link:../coin-modules/coin-cosmos - '@ledgerhq/coin-elrond': + "@ledgerhq/coin-elrond": specifier: workspace:^ version: link:../coin-modules/coin-elrond - '@ledgerhq/coin-evm': + "@ledgerhq/coin-evm": specifier: workspace:^ version: link:../coin-modules/coin-evm - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:^ version: link:../coin-framework - '@ledgerhq/coin-icon': + "@ledgerhq/coin-icon": specifier: workspace:^ version: link:../coin-modules/coin-icon - '@ledgerhq/coin-near': + "@ledgerhq/coin-near": specifier: workspace:^ version: link:../coin-modules/coin-near - '@ledgerhq/coin-polkadot': + "@ledgerhq/coin-polkadot": specifier: workspace:^ version: link:../coin-modules/coin-polkadot - '@ledgerhq/coin-solana': + "@ledgerhq/coin-solana": specifier: workspace:^ version: link:../coin-modules/coin-solana - '@ledgerhq/coin-stellar': + "@ledgerhq/coin-stellar": specifier: workspace:^ version: link:../coin-modules/coin-stellar - '@ledgerhq/coin-tezos': + "@ledgerhq/coin-tezos": specifier: workspace:^ version: link:../coin-modules/coin-tezos - '@ledgerhq/coin-ton': + "@ledgerhq/coin-ton": specifier: workspace:^ version: link:../coin-modules/coin-ton - '@ledgerhq/coin-tron': + "@ledgerhq/coin-tron": specifier: workspace:^ version: link:../coin-modules/coin-tron - '@ledgerhq/coin-xrp': + "@ledgerhq/coin-xrp": specifier: workspace:^ version: link:../coin-modules/coin-xrp - '@ledgerhq/crypto-icons-ui': + "@ledgerhq/crypto-icons-ui": specifier: workspace:^ version: link:../ui/packages/crypto-icons - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../ledgerjs/packages/cryptoassets - '@ledgerhq/device-core': + "@ledgerhq/device-core": specifier: workspace:^ version: link:../device-core - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../ledgerjs/packages/devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../ledgerjs/packages/errors - '@ledgerhq/hw-app-algorand': + "@ledgerhq/hw-app-algorand": specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-algorand - '@ledgerhq/hw-app-btc': + "@ledgerhq/hw-app-btc": specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-btc - '@ledgerhq/hw-app-cosmos': + "@ledgerhq/hw-app-cosmos": specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-cosmos - '@ledgerhq/hw-app-elrond': + "@ledgerhq/hw-app-elrond": specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-elrond - '@ledgerhq/hw-app-eth': + "@ledgerhq/hw-app-eth": specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-eth - '@ledgerhq/hw-app-exchange': + "@ledgerhq/hw-app-exchange": specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-exchange - '@ledgerhq/hw-app-icon': + "@ledgerhq/hw-app-icon": specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-icon - '@ledgerhq/hw-app-near': + "@ledgerhq/hw-app-near": specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-near - '@ledgerhq/hw-app-polkadot': + "@ledgerhq/hw-app-polkadot": specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-polkadot - '@ledgerhq/hw-app-solana': + "@ledgerhq/hw-app-solana": specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-solana - '@ledgerhq/hw-app-str': + "@ledgerhq/hw-app-str": specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-str - '@ledgerhq/hw-app-tezos': + "@ledgerhq/hw-app-tezos": specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-tezos - '@ledgerhq/hw-app-trx': + "@ledgerhq/hw-app-trx": specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-trx - '@ledgerhq/hw-app-vet': + "@ledgerhq/hw-app-vet": specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-vet - '@ledgerhq/hw-app-xrp': + "@ledgerhq/hw-app-xrp": specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-xrp - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../ledgerjs/packages/hw-transport - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../ledgerjs/packages/hw-transport-mocker - '@ledgerhq/live-app-sdk': + "@ledgerhq/live-app-sdk": specifier: ^0.8.1 version: 0.8.2 - '@ledgerhq/live-config': + "@ledgerhq/live-config": specifier: workspace:^ version: link:../live-config - '@ledgerhq/live-countervalues': + "@ledgerhq/live-countervalues": specifier: workspace:^ version: link:../live-countervalues - '@ledgerhq/live-countervalues-react': + "@ledgerhq/live-countervalues-react": specifier: workspace:^ version: link:../live-countervalues-react - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../env - '@ledgerhq/live-hooks': + "@ledgerhq/live-hooks": specifier: workspace:* version: link:../live-hooks - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:^ version: link:../live-network - '@ledgerhq/live-nft': + "@ledgerhq/live-nft": specifier: workspace:^ version: link:../live-nft - '@ledgerhq/live-promise': + "@ledgerhq/live-promise": specifier: workspace:^ version: link:../promise - '@ledgerhq/live-wallet': + "@ledgerhq/live-wallet": specifier: workspace:^ version: link:../live-wallet - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../ledgerjs/packages/logs - '@ledgerhq/speculos-transport': + "@ledgerhq/speculos-transport": specifier: workspace:^ version: link:../speculos-transport - '@ledgerhq/wallet-api-acre-module': + "@ledgerhq/wallet-api-acre-module": specifier: workspace:^ version: link:../wallet-api-acre-module - '@ledgerhq/wallet-api-client': + "@ledgerhq/wallet-api-client": specifier: ^1.6.0 version: 1.6.0 - '@ledgerhq/wallet-api-core': + "@ledgerhq/wallet-api-core": specifier: ^1.13.0 version: 1.13.0 - '@ledgerhq/wallet-api-exchange-module': + "@ledgerhq/wallet-api-exchange-module": specifier: workspace:^ version: link:../exchange-module - '@ledgerhq/wallet-api-server': + "@ledgerhq/wallet-api-server": specifier: ^1.6.0 version: 1.6.0(react@18.2.0)(rxjs@7.8.1) - '@stacks/network': + "@stacks/network": specifier: 6.10.0 version: 6.10.0 - '@stacks/transactions': + "@stacks/transactions": specifier: 6.11.0 version: 6.11.0 - '@stricahq/typhonjs': + "@stricahq/typhonjs": specifier: ^2.0.0 version: 2.0.0 - '@taquito/ledger-signer': + "@taquito/ledger-signer": specifier: ^20.0.0 version: 20.0.0 - '@ton-community/ton-ledger': + "@ton-community/ton-ledger": specifier: ^7.0.1 version: 7.0.1(@ton/core@0.56.3(@ton/crypto@3.3.0)) - '@ton/core': + "@ton/core": specifier: ^0.56.3 version: 0.56.3(@ton/crypto@3.3.0) - '@ton/crypto': + "@ton/crypto": specifier: ^3.3.0 version: 3.3.0 - '@types/bchaddrjs': + "@types/bchaddrjs": specifier: ^0.4.0 version: 0.4.3 - '@types/pako': + "@types/pako": specifier: ^2.0.0 version: 2.0.3 - '@types/qs': + "@types/qs": specifier: ^6.9.7 version: 6.9.14 - '@types/redux-actions': + "@types/redux-actions": specifier: ^2.6.2 version: 2.6.5 - '@xstate/react': + "@xstate/react": specifier: ^1.6.3 version: 1.6.3(@types/react@18.2.73)(react@18.2.0)(xstate@4.38.3) - '@zondax/cbor': + "@zondax/cbor": specifier: v8.1.0-zondax-no-bigint version: 8.1.0-zondax-no-bigint - '@zondax/ledger-casper': + "@zondax/ledger-casper": specifier: ^2.6.1 version: 2.6.1 - '@zondax/ledger-cosmos-js': + "@zondax/ledger-cosmos-js": specifier: 3.0.3 version: 3.0.3(@types/node@20.12.12)(eslint@8.57.0)(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.1.3) - '@zondax/ledger-filecoin': + "@zondax/ledger-filecoin": specifier: ^0.11.2 version: 0.11.2 - '@zondax/ledger-icp': + "@zondax/ledger-icp": specifier: ^0.7.0 version: 0.7.0 - '@zondax/ledger-stacks': + "@zondax/ledger-stacks": specifier: ^1.0.2 version: 1.0.4 async: @@ -3854,52 +3838,52 @@ importers: specifier: ^3.22.4 version: 3.22.4 devDependencies: - '@ledgerhq/device-react': + "@ledgerhq/device-react": specifier: workspace:^ version: link:../device-react - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-devices': + "@ledgerhq/types-devices": specifier: workspace:^ version: link:../ledgerjs/packages/types-devices - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../ledgerjs/packages/types-live - '@solana/web3.js': + "@solana/web3.js": specifier: 1.77.3 version: 1.77.3 - '@svgr/core': + "@svgr/core": specifier: ^5.5.0 version: 5.5.0 - '@tanstack/react-query': + "@tanstack/react-query": specifier: ^5.28.9 version: 5.28.9(react@18.2.0) - '@testing-library/react': + "@testing-library/react": specifier: ^14.1.2 version: 14.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@types/bs58': + "@types/bs58": specifier: ^4.0.1 version: 4.0.4 - '@types/cbor': + "@types/cbor": specifier: ^6.0.0 version: 6.0.0 - '@types/invariant': + "@types/invariant": specifier: ^2.2.36 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.14.179 version: 4.17.0 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 - '@types/react': + "@types/react": specifier: ^18.2.21 version: 18.2.73 - '@types/uuid': + "@types/uuid": specifier: ^8.3.4 version: 8.3.4 benchmark: @@ -3912,7 +3896,7 @@ importers: specifier: ^7.0.3 version: 7.0.3 env-cmd: - specifier: '*' + specifier: "*" version: 10.1.0 eslint-plugin-import: specifier: ^2.28.1 @@ -3957,11 +3941,11 @@ importers: specifier: 18.2.0 version: 18.2.0(react@18.2.0) react-native: - specifier: 0.73.6 - version: 0.73.6(react@18.2.0) + specifier: 0.74.5 + version: 0.74.5(@types/react@18.2.73)(react@18.2.0) react-native-svg: specifier: 13.14.0 - version: 13.14.0(react-native@0.73.6(react@18.2.0))(react@18.2.0) + version: 13.14.0(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-redux: specifier: ^7.2.9 version: 7.2.9(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -3987,7 +3971,7 @@ importers: specifier: ^8.3.2 version: 8.3.2 ws: - specifier: '7' + specifier: "7" version: 7.5.10 libs/ledgerjs: @@ -4002,10 +3986,10 @@ importers: specifier: ^4.17.21 version: 4.17.21 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 eslint-plugin-react: @@ -4027,13 +4011,13 @@ importers: specifier: ^5.7.2 version: 5.7.2 devDependencies: - '@tsconfig/recommended': + "@tsconfig/recommended": specifier: ^1.0.6 version: 1.0.6 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 jest: @@ -4054,7 +4038,7 @@ importers: libs/ledgerjs/packages/cryptoassets: dependencies: - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../../../env axios: @@ -4064,19 +4048,19 @@ importers: specifier: ^2.1.2 version: 2.1.2 invariant: - specifier: '2' + specifier: "2" version: 2.2.4 devDependencies: - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../types-cryptoassets - '@types/bs58check': + "@types/bs58check": specifier: ^2.1.0 version: 2.1.2 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4100,20 +4084,20 @@ importers: libs/ledgerjs/packages/cryptoassets-evm-signatures: dependencies: - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../../../env axios: specifier: 1.7.7 version: 1.7.7 devDependencies: - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../types-cryptoassets - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4137,10 +4121,10 @@ importers: libs/ledgerjs/packages/devices: dependencies: - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs rxjs: @@ -4150,13 +4134,13 @@ importers: specifier: ^7.3.5 version: 7.5.4 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 - '@types/semver': + "@types/semver": specifier: ^7.3.9 version: 7.5.8 documentation: @@ -4180,10 +4164,10 @@ importers: libs/ledgerjs/packages/errors: devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4207,10 +4191,10 @@ importers: libs/ledgerjs/packages/hw-app-algorand: dependencies: - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport bip32-path: @@ -4226,13 +4210,13 @@ importers: specifier: ^1.0.3 version: 1.0.3 devDependencies: - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../hw-transport-mocker - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4256,10 +4240,10 @@ importers: libs/ledgerjs/packages/hw-app-btc: dependencies: - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs bip32-path: @@ -4278,13 +4262,13 @@ importers: specifier: ^2.2.4 version: 2.2.4 ripemd160: - specifier: '2' + specifier: "2" version: 2.0.2 semver: specifier: ^7.3.5 version: 7.5.4 sha.js: - specifier: '2' + specifier: "2" version: 2.4.11 tiny-secp256k1: specifier: 1.1.6 @@ -4293,16 +4277,16 @@ importers: specifier: 1.1.2 version: 1.1.2 devDependencies: - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../hw-transport-mocker - '@ledgerhq/hw-transport-node-speculos': + "@ledgerhq/hw-transport-node-speculos": specifier: workspace:^ version: link:../hw-transport-node-speculos - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 axios: @@ -4329,23 +4313,23 @@ importers: libs/ledgerjs/packages/hw-app-cosmos: dependencies: - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport bip32-path: specifier: ^0.4.2 version: 0.4.2 devDependencies: - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../hw-transport-mocker - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4369,10 +4353,10 @@ importers: libs/ledgerjs/packages/hw-app-elrond: dependencies: - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@multiversx/sdk-core': + "@multiversx/sdk-core": specifier: ^13.3.0 version: 13.3.0(bignumber.js@9.1.2)(protobufjs@7.3.2) bignumber.js: @@ -4385,13 +4369,13 @@ importers: specifier: ^7.2.6 version: 7.3.2 devDependencies: - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../hw-transport-mocker - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4415,34 +4399,34 @@ importers: libs/ledgerjs/packages/hw-app-eth: dependencies: - '@ethersproject/abi': + "@ethersproject/abi": specifier: ^5.5.0 version: 5.7.0 - '@ethersproject/rlp': + "@ethersproject/rlp": specifier: ^5.5.0 version: 5.7.0 - '@ledgerhq/cryptoassets-evm-signatures': + "@ledgerhq/cryptoassets-evm-signatures": specifier: workspace:^ version: link:../cryptoassets-evm-signatures - '@ledgerhq/domain-service': + "@ledgerhq/domain-service": specifier: workspace:^ version: link:../../../domain-service - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/evm-tools': + "@ledgerhq/evm-tools": specifier: workspace:^ version: link:../../../evm-tools - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../hw-transport-mocker - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../types-live axios: @@ -4455,10 +4439,10 @@ importers: specifier: ^7.3.5 version: 7.6.2 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4488,10 +4472,10 @@ importers: libs/ledgerjs/packages/hw-app-exchange: dependencies: - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport bignumber.js: @@ -4507,16 +4491,16 @@ importers: specifier: 1.1.2 version: 1.1.2(protobufjs@7.2.5) devDependencies: - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../hw-transport-mocker - '@ledgerhq/hw-transport-node-speculos-http': + "@ledgerhq/hw-transport-node-speculos-http": specifier: workspace:^ version: link:../hw-transport-node-speculos-http - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4537,19 +4521,19 @@ importers: libs/ledgerjs/packages/hw-app-helium: dependencies: - '@helium/address': + "@helium/address": specifier: ^4.6.2 version: 4.11.1 - '@helium/proto': + "@helium/proto": specifier: ^1.6.0 version: 1.6.0 - '@helium/transactions': + "@helium/transactions": specifier: ^4.7.5 version: 4.11.1 - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport bignumber.js: @@ -4562,16 +4546,16 @@ importers: specifier: ^5.2.0 version: 5.2.3 devDependencies: - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../hw-transport-mocker - '@ledgerhq/hw-transport-node-speculos': + "@ledgerhq/hw-transport-node-speculos": specifier: workspace:^ version: link:../hw-transport-node-speculos - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 axios: @@ -4598,26 +4582,26 @@ importers: libs/ledgerjs/packages/hw-app-icon: dependencies: - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport bip32-path: specifier: ^0.4.2 version: 0.4.2 devDependencies: - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../hw-transport-mocker - '@ledgerhq/hw-transport-node-speculos': + "@ledgerhq/hw-transport-node-speculos": specifier: workspace:^ version: link:../hw-transport-node-speculos - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4641,20 +4625,20 @@ importers: libs/ledgerjs/packages/hw-app-near: dependencies: - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport near-api-js: specifier: ^3.0.2 version: 3.0.2 devDependencies: - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../hw-transport-mocker - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4678,26 +4662,26 @@ importers: libs/ledgerjs/packages/hw-app-polkadot: dependencies: - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@zondax/ledger-substrate': + "@zondax/ledger-substrate": specifier: ^0.44.2 version: 0.44.2 bip32-path: specifier: ^0.4.2 version: 0.4.2 devDependencies: - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../hw-transport-mocker - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4721,26 +4705,26 @@ importers: libs/ledgerjs/packages/hw-app-solana: dependencies: - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport bip32-path: specifier: ^0.4.2 version: 0.4.2 devDependencies: - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../hw-transport-mocker - '@ledgerhq/hw-transport-node-speculos': + "@ledgerhq/hw-transport-node-speculos": specifier: workspace:^ version: link:../hw-transport-node-speculos - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 axios: @@ -4767,23 +4751,23 @@ importers: libs/ledgerjs/packages/hw-app-str: dependencies: - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport bip32-path: specifier: ^0.4.2 version: 0.4.2 devDependencies: - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../hw-transport-mocker - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4807,7 +4791,7 @@ importers: libs/ledgerjs/packages/hw-app-tezos: dependencies: - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport blake2b: @@ -4820,13 +4804,13 @@ importers: specifier: ^2.2.4 version: 2.2.4 devDependencies: - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../hw-transport-mocker - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4850,17 +4834,17 @@ importers: libs/ledgerjs/packages/hw-app-trx: dependencies: - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport devDependencies: - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../hw-transport-mocker - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4884,29 +4868,29 @@ importers: libs/ledgerjs/packages/hw-app-vet: dependencies: - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:^ version: link:../cryptoassets - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../hw-transport-mocker - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs thor-devkit: specifier: ^2.0.6 version: 2.0.9 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^18.15.3 version: 18.19.26 documentation: @@ -4930,20 +4914,20 @@ importers: libs/ledgerjs/packages/hw-app-xrp: dependencies: - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport bip32-path: specifier: 0.4.2 version: 0.4.2 devDependencies: - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../hw-transport-mocker - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4967,23 +4951,23 @@ importers: libs/ledgerjs/packages/hw-transport: dependencies: - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs events: specifier: ^3.3.0 version: 3.3.0 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5007,13 +4991,13 @@ importers: libs/ledgerjs/packages/hw-transport-http: dependencies: - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs axios: @@ -5023,10 +5007,10 @@ importers: specifier: ^7.5.2 version: 7.5.10 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5050,20 +5034,20 @@ importers: libs/ledgerjs/packages/hw-transport-mocker: dependencies: - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs rxjs: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5087,19 +5071,19 @@ importers: libs/ledgerjs/packages/hw-transport-node-hid: dependencies: - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@ledgerhq/hw-transport-node-hid-noevents': + "@ledgerhq/hw-transport-node-hid-noevents": specifier: workspace:^ version: link:../hw-transport-node-hid-noevents - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs lodash: @@ -5112,10 +5096,10 @@ importers: specifier: 2.9.0 version: 2.9.0(patch_hash=d5pno5rjlboai2klvccu6wv334) devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5139,29 +5123,29 @@ importers: libs/ledgerjs/packages/hw-transport-node-hid-noevents: dependencies: - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs node-hid: specifier: 2.1.2 version: 2.1.2 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 - '@types/node-hid': + "@types/node-hid": specifier: ^1.3.1 version: 1.3.4 documentation: @@ -5185,19 +5169,19 @@ importers: libs/ledgerjs/packages/hw-transport-node-hid-singleton: dependencies: - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@ledgerhq/hw-transport-node-hid-noevents': + "@ledgerhq/hw-transport-node-hid-noevents": specifier: workspace:^ version: link:../hw-transport-node-hid-noevents - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs node-hid: @@ -5207,10 +5191,10 @@ importers: specifier: 2.9.0 version: 2.9.0(patch_hash=d5pno5rjlboai2klvccu6wv334) devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5234,23 +5218,23 @@ importers: libs/ledgerjs/packages/hw-transport-node-speculos: dependencies: - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs rxjs: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5274,13 +5258,13 @@ importers: libs/ledgerjs/packages/hw-transport-node-speculos-http: dependencies: - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs axios: @@ -5290,10 +5274,10 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5317,20 +5301,20 @@ importers: libs/ledgerjs/packages/hw-transport-vault: dependencies: - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport-http': + "@ledgerhq/hw-transport-http": specifier: workspace:^ version: link:../hw-transport-http - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5354,29 +5338,29 @@ importers: libs/ledgerjs/packages/hw-transport-web-ble: dependencies: - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs rxjs: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 - '@types/web-bluetooth': + "@types/web-bluetooth": specifier: ^0.0.20 version: 0.0.20 documentation: @@ -5400,26 +5384,26 @@ importers: libs/ledgerjs/packages/hw-transport-webhid: dependencies: - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 - '@types/w3c-web-hid': + "@types/w3c-web-hid": specifier: ^1.0.2 version: 1.0.6 documentation: @@ -5443,26 +5427,26 @@ importers: libs/ledgerjs/packages/hw-transport-webusb: dependencies: - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 - '@types/w3c-web-usb': + "@types/w3c-web-usb": specifier: ^1.0.5 version: 1.0.10 documentation: @@ -5486,19 +5470,19 @@ importers: libs/ledgerjs/packages/keyring-eth: dependencies: - '@ledgerhq/coin-evm': + "@ledgerhq/coin-evm": specifier: workspace:^ version: link:../../../coin-modules/coin-evm - '@ledgerhq/context-module': + "@ledgerhq/context-module": specifier: workspace:^ version: link:../context-module - '@ledgerhq/hw-app-eth': + "@ledgerhq/hw-app-eth": specifier: workspace:^ version: link:../hw-app-eth - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:^ version: link:../types-live bignumber.js: @@ -5508,13 +5492,13 @@ importers: specifier: ^5.7.2 version: 5.7.2 devDependencies: - '@tsconfig/recommended': + "@tsconfig/recommended": specifier: ^1.0.6 version: 1.0.6 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 dotenv: @@ -5538,10 +5522,10 @@ importers: libs/ledgerjs/packages/logs: devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5565,26 +5549,26 @@ importers: libs/ledgerjs/packages/react-native-hid: dependencies: - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs rxjs: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5611,16 +5595,16 @@ importers: libs/ledgerjs/packages/react-native-hw-transport-ble: dependencies: - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../devices - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../errors - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../logs react-native-ble-plx: @@ -5633,13 +5617,13 @@ importers: specifier: ^9.0.1 version: 9.0.1 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 - '@types/uuid': + "@types/uuid": specifier: ^9.0.5 version: 9.0.8 documentation: @@ -5663,17 +5647,17 @@ importers: libs/ledgerjs/packages/swift-bridge-hw-app-eth: dependencies: - '@ledgerhq/hw-app-eth': + "@ledgerhq/hw-app-eth": specifier: workspace:^ version: link:../hw-app-eth - '@ledgerhq/swift-bridge-hw-transport-ble': + "@ledgerhq/swift-bridge-hw-transport-ble": specifier: workspace:^ version: link:../swift-bridge-hw-transport-ble devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5697,17 +5681,17 @@ importers: libs/ledgerjs/packages/swift-bridge-hw-app-solana: dependencies: - '@ledgerhq/hw-app-solana': + "@ledgerhq/hw-app-solana": specifier: workspace:^ version: link:../hw-app-solana - '@ledgerhq/swift-bridge-hw-transport-ble': + "@ledgerhq/swift-bridge-hw-transport-ble": specifier: workspace:^ version: link:../swift-bridge-hw-transport-ble devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5731,14 +5715,14 @@ importers: libs/ledgerjs/packages/swift-bridge-hw-transport-ble: dependencies: - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:^ version: link:../hw-transport devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5762,10 +5746,10 @@ importers: libs/ledgerjs/packages/types-cryptoassets: devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 jest: @@ -5786,10 +5770,10 @@ importers: libs/ledgerjs/packages/types-devices: devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5820,16 +5804,16 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:^ version: link:../types-cryptoassets - '@ledgerhq/types-devices': + "@ledgerhq/types-devices": specifier: workspace:^ version: link:../types-devices - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5857,20 +5841,20 @@ importers: specifier: ^4.17.21 version: 4.17.21 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.4 version: 29.5.12 - '@types/lodash': + "@types/lodash": specifier: ^4.14.202 version: 4.17.0 - '@types/node': + "@types/node": specifier: ^20.2.5 version: 20.12.12 jest: specifier: ^28.1.1 version: 28.1.3(@types/node@20.12.12) jest-environment-jsdom: - specifier: '28' + specifier: "28" version: 28.1.3 semver: specifier: ^7.3.5 @@ -5881,39 +5865,39 @@ importers: libs/live-countervalues: dependencies: - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:* version: link:../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:* version: link:../ledgerjs/packages/cryptoassets - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:* version: link:../env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:* version: link:../live-network - '@ledgerhq/live-promise': + "@ledgerhq/live-promise": specifier: workspace:* version: link:../promise - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:* version: link:../ledgerjs/packages/logs - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:* version: link:../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:* version: link:../ledgerjs/packages/types-live devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 jest: specifier: ^29.7.0 version: 29.7.0 prando: - specifier: '6' + specifier: "6" version: 6.0.1 ts-jest: specifier: ^29.1.1 @@ -5921,35 +5905,35 @@ importers: libs/live-countervalues-react: dependencies: - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:* version: link:../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:* version: link:../ledgerjs/packages/cryptoassets - '@ledgerhq/live-countervalues': + "@ledgerhq/live-countervalues": specifier: workspace:* version: link:../live-countervalues - '@ledgerhq/live-hooks': + "@ledgerhq/live-hooks": specifier: workspace:* version: link:../live-hooks - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:* version: link:../ledgerjs/packages/logs - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:* version: link:../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:* version: link:../ledgerjs/packages/types-live bignumber.js: - specifier: '9' + specifier: "9" version: 9.1.2 devDependencies: - '@testing-library/react': - specifier: '14' + "@testing-library/react": + specifier: "14" version: 14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 jest: @@ -5970,10 +5954,10 @@ importers: libs/live-hooks: devDependencies: - '@testing-library/react': - specifier: '14' + "@testing-library/react": + specifier: "14" version: 14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 jest: @@ -5994,16 +5978,16 @@ importers: libs/live-network: dependencies: - '@ledgerhq/errors': + "@ledgerhq/errors": specifier: workspace:^ version: link:../ledgerjs/packages/errors - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:^ version: link:../env - '@ledgerhq/live-promise': + "@ledgerhq/live-promise": specifier: workspace:^ version: link:../promise - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../ledgerjs/packages/logs axios: @@ -6013,13 +5997,13 @@ importers: specifier: ^7.14.1 version: 7.18.3 devDependencies: - '@types/invariant': + "@types/invariant": specifier: ^2.2.35 version: 2.2.37 - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 jest: @@ -6031,29 +6015,29 @@ importers: libs/live-nft: dependencies: - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:* version: link:../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:* version: link:../ledgerjs/packages/cryptoassets - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:* version: link:../env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:* version: link:../live-network - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:* version: link:../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:* version: link:../ledgerjs/packages/types-live bignumber.js: - specifier: '9' + specifier: "9" version: 9.1.2 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 jest: @@ -6065,33 +6049,33 @@ importers: libs/live-nft-react: dependencies: - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:* version: link:../coin-framework - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:* version: link:../ledgerjs/packages/cryptoassets - '@ledgerhq/live-nft': + "@ledgerhq/live-nft": specifier: workspace:* version: link:../live-nft - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:* version: link:../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:* version: link:../ledgerjs/packages/types-live devDependencies: - '@tanstack/react-query': + "@tanstack/react-query": specifier: ^5.28.9 version: 5.28.9(react@18.2.0) - '@testing-library/react': - specifier: '14' + "@testing-library/react": + specifier: "14" version: 14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 bignumber.js: - specifier: '9' + specifier: "9" version: 9.1.2 jest: specifier: ^29.7.0 @@ -6111,74 +6095,74 @@ importers: libs/live-wallet: dependencies: - '@ledgerhq/coin-framework': + "@ledgerhq/coin-framework": specifier: workspace:* version: link:../coin-framework - '@ledgerhq/compressjs': + "@ledgerhq/compressjs": specifier: github:LedgerHQ/compressjs#d9e8e4d994923e0ea76a32b97289bcccfe71b82e version: https://codeload.github.com/LedgerHQ/compressjs/tar.gz/d9e8e4d994923e0ea76a32b97289bcccfe71b82e - '@ledgerhq/cryptoassets': + "@ledgerhq/cryptoassets": specifier: workspace:* version: link:../ledgerjs/packages/cryptoassets - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../ledgerjs/packages/devices - '@ledgerhq/ledger-key-ring-protocol': + "@ledgerhq/ledger-key-ring-protocol": specifier: workspace:* version: link:../ledger-key-ring-protocol - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:* version: link:../env - '@ledgerhq/live-network': + "@ledgerhq/live-network": specifier: workspace:* version: link:../live-network - '@ledgerhq/live-promise': + "@ledgerhq/live-promise": specifier: workspace:* version: link:../promise - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:* version: link:../ledgerjs/packages/logs - '@ledgerhq/types-cryptoassets': + "@ledgerhq/types-cryptoassets": specifier: workspace:* version: link:../ledgerjs/packages/types-cryptoassets - '@ledgerhq/types-live': + "@ledgerhq/types-live": specifier: workspace:* version: link:../ledgerjs/packages/types-live base64-js: - specifier: '1' + specifier: "1" version: 1.5.1 bignumber.js: - specifier: '9' + specifier: "9" version: 9.1.2 isomorphic-ws: specifier: ^5.0.0 version: 5.0.0(ws@8.17.1) lodash: - specifier: '4' + specifier: "4" version: 4.17.21 pako: specifier: ^2.0.4 version: 2.1.0 rxjs: - specifier: '7' + specifier: "7" version: 7.8.1 zod: specifier: ^3.22.4 version: 3.22.4 devDependencies: - '@ledgerhq/hw-transport-mocker': + "@ledgerhq/hw-transport-mocker": specifier: workspace:^ version: link:../ledgerjs/packages/hw-transport-mocker - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 - '@types/lodash': - specifier: '4' + "@types/lodash": + specifier: "4" version: 4.17.0 - '@types/pako': + "@types/pako": specifier: ^2.0.0 version: 2.0.3 - '@types/ws': + "@types/ws": specifier: ^8.5.3 version: 8.5.10 jest: @@ -6199,11 +6183,11 @@ importers: libs/promise: dependencies: - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:^ version: link:../ledgerjs/packages/logs devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.10 version: 29.5.12 jest: @@ -6215,26 +6199,26 @@ importers: libs/speculos-transport: dependencies: - '@ledgerhq/devices': + "@ledgerhq/devices": specifier: workspace:* version: link:../ledgerjs/packages/devices - '@ledgerhq/hw-transport-node-speculos': + "@ledgerhq/hw-transport-node-speculos": specifier: workspace:* version: link:../ledgerjs/packages/hw-transport-node-speculos - '@ledgerhq/hw-transport-node-speculos-http': + "@ledgerhq/hw-transport-node-speculos-http": specifier: workspace:* version: link:../ledgerjs/packages/hw-transport-node-speculos-http - '@ledgerhq/live-env': + "@ledgerhq/live-env": specifier: workspace:* version: link:../env - '@ledgerhq/live-promise': + "@ledgerhq/live-promise": specifier: workspace:* version: link:../promise - '@ledgerhq/logs': + "@ledgerhq/logs": specifier: workspace:* version: link:../ledgerjs/packages/logs devDependencies: - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 documentation: @@ -6243,35 +6227,35 @@ importers: libs/test-utils: dependencies: - '@ledgerhq/live-common': + "@ledgerhq/live-common": specifier: workspace:^ version: link:../ledger-live-common serve-handler: specifier: ^6.1.3 version: 6.1.5 devDependencies: - '@types/serve-handler': + "@types/serve-handler": specifier: ^6.1.1 version: 6.1.4 libs/ui: devDependencies: - '@ledgerhq/crypto-icons-ui': + "@ledgerhq/crypto-icons-ui": specifier: workspace:^ version: link:packages/crypto-icons - '@ledgerhq/icons-ui': + "@ledgerhq/icons-ui": specifier: workspace:^ version: link:packages/icons - '@ledgerhq/native-ui': + "@ledgerhq/native-ui": specifier: workspace:^ version: link:packages/native - '@ledgerhq/react-ui': + "@ledgerhq/react-ui": specifier: workspace:^ version: link:packages/react - '@ledgerhq/ui-shared': + "@ledgerhq/ui-shared": specifier: workspace:^ version: link:packages/shared - '@playwright/test': + "@playwright/test": specifier: ~1.40.0 version: 1.40.1 concurrently: @@ -6289,7 +6273,7 @@ importers: libs/ui/examples/next.js: dependencies: - '@ledgerhq/react-ui': + "@ledgerhq/react-ui": specifier: workspace:^ version: link:../../packages/react next: @@ -6302,7 +6286,7 @@ importers: specifier: 18.2.0 version: 18.2.0(react@18.2.0) react-is: - specifier: '*' + specifier: "*" version: 18.2.0 styled-components: specifier: ^5.3.3 @@ -6310,7 +6294,7 @@ importers: libs/ui/examples/webpack.js: dependencies: - '@ledgerhq/react-ui': + "@ledgerhq/react-ui": specifier: workspace:^ version: link:../../packages/react react: @@ -6320,22 +6304,22 @@ importers: specifier: ^18.2.0 version: 18.2.0(react@18.2.0) react-is: - specifier: '*' + specifier: "*" version: 18.2.0 styled-components: specifier: ^5.3.3 version: 5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0) devDependencies: - '@babel/core': + "@babel/core": specifier: ^7.15.8 version: 7.24.3 - '@babel/preset-env': + "@babel/preset-env": specifier: ^7.15.8 version: 7.24.3(@babel/core@7.24.3) - '@babel/preset-react': + "@babel/preset-react": specifier: ^7.14.5 version: 7.24.1(@babel/core@7.24.3) - '@pmmmwh/react-refresh-webpack-plugin': + "@pmmmwh/react-refresh-webpack-plugin": specifier: ^0.5.1 version: 0.5.11(react-refresh@0.10.0)(webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0))(webpack@5.91.0(webpack-cli@4.10.0)) babel-loader: @@ -6368,25 +6352,25 @@ importers: libs/ui/packages/crypto-icons: devDependencies: - '@svgr/core': + "@svgr/core": specifier: ^5.5.0 version: 5.5.0(@svgr/plugin-svgo@5.5.0) - '@svgr/plugin-svgo': + "@svgr/plugin-svgo": specifier: ^5.5.0 version: 5.5.0 - '@types/react': + "@types/react": specifier: ^18.2.21 version: 18.2.73 - '@types/react-dom': + "@types/react-dom": specifier: ^18.2.13 version: 18.2.23(@types/react@18.2.73) - '@types/styled-components': + "@types/styled-components": specifier: ^5.1.14 version: 5.1.34(@types/react@18.2.73) - '@types/styled-components-react-native': + "@types/styled-components-react-native": specifier: ^5.1.3 version: 5.2.5(@types/react@18.2.73) - '@types/styled-system': + "@types/styled-system": specifier: ^5.1.13 version: 5.1.22 camelcase: @@ -6416,25 +6400,25 @@ importers: libs/ui/packages/icons: devDependencies: - '@svgr/core': + "@svgr/core": specifier: ^5.5.0 version: 5.5.0(@svgr/plugin-svgo@5.5.0) - '@svgr/plugin-svgo': + "@svgr/plugin-svgo": specifier: ^5.5.0 version: 5.5.0 - '@types/react': + "@types/react": specifier: ^18.2.21 version: 18.2.73 - '@types/react-dom': + "@types/react-dom": specifier: ^18.2.13 version: 18.2.23(@types/react@18.2.73) - '@types/styled-components': + "@types/styled-components": specifier: ^5.1.14 version: 5.1.34(@types/react@18.2.73) - '@types/styled-components-react-native': + "@types/styled-components-react-native": specifier: ^5.1.3 version: 5.2.5(@types/react@18.2.73) - '@types/styled-system': + "@types/styled-system": specifier: ^5.1.13 version: 5.1.22 camelcase: @@ -6464,13 +6448,13 @@ importers: libs/ui/packages/native: dependencies: - '@ledgerhq/crypto-icons-ui': + "@ledgerhq/crypto-icons-ui": specifier: workspace:^ version: link:../crypto-icons - '@ledgerhq/icons-ui': + "@ledgerhq/icons-ui": specifier: workspace:^ version: link:../icons - '@ledgerhq/ui-shared': + "@ledgerhq/ui-shared": specifier: workspace:^ version: link:../shared color: @@ -6478,147 +6462,147 @@ importers: version: 4.2.3 react-native-modal: specifier: ^13.0.0 - version: 13.0.1(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + version: 13.0.1(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) rn-range-slider: specifier: 2.1.1 - version: 2.1.1(prop-types@15.8.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + version: 2.1.1(prop-types@15.8.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) styled-system: specifier: ^5.1.5 version: 5.1.5 devDependencies: - '@babel/core': + "@babel/core": specifier: ^7.24.3 version: 7.24.3 - '@babel/generator': + "@babel/generator": specifier: ^7.17.2 version: 7.24.1 - '@babel/plugin-proposal-class-properties': + "@babel/plugin-proposal-class-properties": specifier: ^7.13.0 version: 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-export-namespace-from': + "@babel/plugin-proposal-export-namespace-from": specifier: ^7.16.0 version: 7.18.9(@babel/core@7.24.3) - '@babel/plugin-proposal-nullish-coalescing-operator': + "@babel/plugin-proposal-nullish-coalescing-operator": specifier: ^7.18.6 version: 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-chaining': + "@babel/plugin-proposal-optional-chaining": specifier: ^7.21.0 version: 7.21.0(@babel/core@7.24.3) - '@babel/plugin-transform-arrow-functions': + "@babel/plugin-transform-arrow-functions": specifier: ^7.24.1 version: 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-shorthand-properties': + "@babel/plugin-transform-shorthand-properties": specifier: ^7.24.1 version: 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-template-literals': + "@babel/plugin-transform-template-literals": specifier: ^7.24.1 version: 7.24.1(@babel/core@7.24.3) - '@babel/preset-env': + "@babel/preset-env": specifier: ^7.15.8 version: 7.24.3(@babel/core@7.24.3) - '@babel/runtime': + "@babel/runtime": specifier: ^7.17.2 version: 7.24.1 - '@emotion/core': + "@emotion/core": specifier: ^11.0.0 version: 11.0.0 - '@emotion/native': + "@emotion/native": specifier: ^11.0.0 - version: 11.11.0(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - '@expo/metro-config': + version: 11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + "@expo/metro-config": specifier: ^0.10.7 version: 0.10.7 - '@expo/webpack-config': + "@expo/webpack-config": specifier: ^18.1.2 - version: 18.1.4(expo-constants@14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(metro@0.80.8)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - '@react-native-async-storage/async-storage': + version: 18.1.4(ivfio2rwlkznsvzgftnclyrame) + "@react-native-async-storage/async-storage": specifier: 1.17.12 - version: 1.17.12(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0)) - '@react-native-community/cli-server-api': + version: 1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0)) + "@react-native-community/cli-server-api": specifier: ^7.0.3 version: 7.0.4 - '@react-native-community/datetimepicker': + "@react-native-community/datetimepicker": specifier: 6.7.5 version: 6.7.5 - '@react-native-community/slider': + "@react-native-community/slider": specifier: ^4.4.2 version: 4.5.0 - '@storybook/addon-actions': + "@storybook/addon-actions": specifier: ^7.6.18 version: 7.6.20 - '@storybook/addon-controls': + "@storybook/addon-controls": specifier: ^7.6.18 version: 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/addon-essentials': + "@storybook/addon-essentials": specifier: ^7.6.18 - version: 7.6.20(@types/react@18.2.73)(metro@0.80.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/addon-links': + version: 7.6.20(@types/react@18.2.73)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/addon-links": specifier: ^7.6.18 version: 7.6.20(react@18.2.0) - '@storybook/addon-ondevice-actions': + "@storybook/addon-ondevice-actions": specifier: 6.5.7 - version: 6.5.7(@storybook/addon-actions@7.6.20)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - '@storybook/addon-ondevice-backgrounds': + version: 6.5.7(@storybook/addon-actions@7.6.20)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + "@storybook/addon-ondevice-backgrounds": specifier: 6.5.7 - version: 6.5.7(@emotion/native@11.11.0(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - '@storybook/addon-ondevice-controls': + version: 6.5.7(@emotion/native@11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + "@storybook/addon-ondevice-controls": specifier: 6.5.7 - version: 6.5.7(@react-native-community/datetimepicker@6.7.5)(@react-native-community/slider@4.5.0)(@storybook/addon-controls@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - '@storybook/addon-ondevice-notes': + version: 6.5.7(@react-native-community/datetimepicker@6.7.5)(@react-native-community/slider@4.5.0)(@storybook/addon-controls@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + "@storybook/addon-ondevice-notes": specifier: 6.5.7 - version: 6.5.7(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - '@storybook/addon-react-native-web': + version: 6.5.7(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + "@storybook/addon-react-native-web": specifier: ^0.0.21 - version: 0.0.21(babel-plugin-react-native-web@0.19.10)(metro-react-native-babel-preset@0.77.0(@babel/core@7.24.3))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(webpack@5.91.0(metro@0.80.8)) - '@storybook/blocks': + version: 0.0.21(babel-plugin-react-native-web@0.19.10)(metro-react-native-babel-preset@0.77.0(@babel/core@7.24.3))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(webpack@5.91.0(metro@0.80.12)) + "@storybook/blocks": specifier: ^7.6.18 version: 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/docs-tools': + "@storybook/docs-tools": specifier: ^7.6.18 version: 7.6.20 - '@storybook/manager-api': + "@storybook/manager-api": specifier: 7.6.18 version: 7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/react': + "@storybook/react": specifier: ^7.6.18 version: 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) - '@storybook/react-native': + "@storybook/react-native": specifier: 6.5.7 - version: 6.5.7(@react-native-async-storage/async-storage@1.17.12(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0)))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack@5.91.0(metro@0.80.8)) - '@storybook/react-webpack5': + version: 6.5.7(@react-native-async-storage/async-storage@1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0)))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react-native-safe-area-context@4.10.9(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack@5.91.0(metro@0.80.12)) + "@storybook/react-webpack5": specifier: ^7.6.18 - version: 7.6.20(@babel/core@7.24.3)(metro@0.80.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.8))) - '@svgr/core': + version: 7.6.20(@babel/core@7.24.3)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12))) + "@svgr/core": specifier: ^5.5.0 version: 5.5.0(@svgr/plugin-svgo@5.5.0) - '@svgr/plugin-jsx': + "@svgr/plugin-jsx": specifier: ^5.5.0 version: 5.5.0 - '@svgr/plugin-svgo': + "@svgr/plugin-svgo": specifier: ^5.5.0 version: 5.5.0 - '@types/color': + "@types/color": specifier: ^3.0.3 version: 3.0.6 - '@types/hoist-non-react-statics': + "@types/hoist-non-react-statics": specifier: ^3.3.1 version: 3.3.5(@types/react@18.2.73) - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 - '@types/prop-types': + "@types/prop-types": specifier: ^15.7.5 version: 15.7.12 - '@types/react': + "@types/react": specifier: ^18.2.21 version: 18.2.73 - '@types/styled-components': + "@types/styled-components": specifier: ^5.1.3 version: 5.1.34(@types/react@18.2.73) - '@types/styled-components-react-native': + "@types/styled-components-react-native": specifier: ^5.1.3 version: 5.2.5(@types/react@18.2.73) - '@types/styled-system': + "@types/styled-system": specifier: ^5.1.13 version: 5.1.22 assert: @@ -6626,7 +6610,7 @@ importers: version: 2.1.0 babel-loader: specifier: ^8.2.2 - version: 8.3.0(@babel/core@7.24.3)(webpack@5.91.0(metro@0.80.8)) + version: 8.3.0(@babel/core@7.24.3)(webpack@5.91.0(metro@0.80.12)) babel-plugin-module-resolver: specifier: ^4.1.0 version: 4.1.0 @@ -6656,19 +6640,19 @@ importers: version: 0.6.15(eslint@8.57.0)(typescript@5.4.3) expo: specifier: ^49.0.7 - version: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + version: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) expo-asset: specifier: 8.10.1 - version: 8.10.1(expo-constants@14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + version: 8.10.1(fwfwxrny4no4cg4koyqmr3oiha) expo-constants: specifier: ^14.4.2 - version: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + version: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) expo-font: specifier: ^11.4.0 - version: 11.10.3(aohfghhpfvc4boieka7amvkmgi) + version: 11.10.3(7z3muwlk7isvqku6vvnpavkrqa) expo-modules-core: specifier: 1.5.11 - version: 1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + version: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) fs-extra: specifier: ^10.0.1 version: 10.1.0 @@ -6676,14 +6660,14 @@ importers: specifier: ^7.2.0 version: 7.2.3 metro: - specifier: ^0.80.5 - version: 0.80.8 + specifier: ^0.80.12 + version: 0.80.12 metro-config: - specifier: ^0.80.5 - version: 0.80.8(metro-transform-worker@0.80.8) + specifier: ^0.80.12 + version: 0.80.12(metro-transform-worker@0.80.12) metro-core: - specifier: ^0.80.5 - version: 0.80.8 + specifier: ^0.80.12 + version: 0.80.12 metro-minify-uglify: specifier: ^0.76.8 version: 0.76.8 @@ -6694,17 +6678,17 @@ importers: specifier: ^0.77.0 version: 0.77.0(@babel/core@7.24.3) metro-resolver: - specifier: ^0.80.5 - version: 0.80.8 + specifier: ^0.80.12 + version: 0.80.12 metro-runtime: - specifier: ^0.80.5 - version: 0.80.8 + specifier: ^0.80.12 + version: 0.80.12 metro-source-map: - specifier: ^0.80.5 - version: 0.80.8 + specifier: ^0.80.12 + version: 0.80.12 metro-transform-worker: - specifier: ^0.80.5 - version: 0.80.8 + specifier: ^0.80.12 + version: 0.80.12 minimatch: specifier: ^5.1.0 version: 5.1.6 @@ -6721,17 +6705,17 @@ importers: specifier: ^18 version: 18.2.0 react-native: - specifier: 0.73.6 - version: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + specifier: 0.74.6 + version: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) react-native-reanimated: specifier: 3.8.1 - version: 3.8.1(@babel/core@7.24.3)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + version: 3.8.1(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react-native-safe-area-context: - specifier: ^4.5.0 - version: 4.9.0(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + specifier: ^4.10.9 + version: 4.10.9(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react-native-svg: specifier: 13.14.0 - version: 13.14.0(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + version: 13.14.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react-native-web: specifier: ~0.19.6 version: 0.19.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -6767,26 +6751,26 @@ importers: version: 0.12.5 webpack: specifier: ^5.76.1 - version: 5.91.0(metro@0.80.8) + version: 5.91.0(metro@0.80.12) webpack-dev-server: specifier: ^4.12.0 - version: 4.15.2(webpack@5.91.0(metro@0.80.8)) + version: 4.15.2(webpack@5.91.0(metro@0.80.12)) libs/ui/packages/react: dependencies: - '@floating-ui/react-dom': + "@floating-ui/react-dom": specifier: ^0.4.0 version: 0.4.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@ledgerhq/crypto-icons-ui': + "@ledgerhq/crypto-icons-ui": specifier: workspace:^ version: file:libs/ui/packages/crypto-icons(@types/react@18.2.73)(react@18.2.0)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0))(styled-system@5.1.5) - '@ledgerhq/icons-ui': + "@ledgerhq/icons-ui": specifier: workspace:^ version: file:libs/ui/packages/icons(@types/react@18.2.73)(react@18.2.0)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0))(styled-system@5.1.5) - '@ledgerhq/ui-shared': + "@ledgerhq/ui-shared": specifier: workspace:^ version: link:../shared - '@tippyjs/react': + "@tippyjs/react": specifier: ^4.2.6 version: 4.2.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0) color: @@ -6817,70 +6801,70 @@ importers: specifier: ^5.1.5 version: 5.1.5 devDependencies: - '@babel/core': + "@babel/core": specifier: ^7.22.8 version: 7.24.3 - '@babel/preset-env': + "@babel/preset-env": specifier: ^7.15.8 version: 7.24.3(@babel/core@7.24.3) - '@babel/preset-react': + "@babel/preset-react": specifier: ^7.23.3 version: 7.24.1(@babel/core@7.24.3) - '@babel/preset-typescript': + "@babel/preset-typescript": specifier: ^7.23.3 version: 7.24.1(@babel/core@7.24.3) - '@storybook/addon-actions': + "@storybook/addon-actions": specifier: ^7.5.3 version: 7.6.17 - '@storybook/addon-essentials': + "@storybook/addon-essentials": specifier: ^7.5.3 version: 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/addon-links': + "@storybook/addon-links": specifier: ^7.5.3 version: 7.6.17(react@18.2.0) - '@storybook/blocks': + "@storybook/blocks": specifier: ^7.5.3 version: 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/manager-api': + "@storybook/manager-api": specifier: 7.5.3 version: 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/react': + "@storybook/react": specifier: ^7.5.3 version: 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) - '@storybook/react-webpack5': + "@storybook/react-webpack5": specifier: ^7.5.3 version: 7.6.17(@babel/core@7.24.3)(esbuild@0.19.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) - '@svgr/core': + "@svgr/core": specifier: ^5.5.0 version: 5.5.0(@svgr/plugin-svgo@5.5.0) - '@svgr/plugin-svgo': - specifier: '*' + "@svgr/plugin-svgo": + specifier: "*" version: 5.5.0 - '@types/color': + "@types/color": specifier: ^3.0.2 version: 3.0.6 - '@types/hoist-non-react-statics': + "@types/hoist-non-react-statics": specifier: ^3.3.1 version: 3.3.5(@types/react@18.2.73) - '@types/react': + "@types/react": specifier: ~18.2.21 version: 18.2.73 - '@types/react-dom': + "@types/react-dom": specifier: ^18.2.13 version: 18.2.23(@types/react@18.2.73) - '@types/react-is': + "@types/react-is": specifier: ^17.0.3 version: 17.0.7(@types/react@18.2.73) - '@types/react-transition-group': + "@types/react-transition-group": specifier: ^4.4.2 version: 4.4.10(@types/react@18.2.73) - '@types/react-window': + "@types/react-window": specifier: ^1.8.5 version: 1.8.8(@types/react@18.2.73) - '@types/styled-components': + "@types/styled-components": specifier: ^5.1.14 version: 5.1.34(@types/react@18.2.73) - '@types/styled-system': + "@types/styled-system": specifier: ^5.1.12 version: 5.1.22 babel-loader: @@ -6938,12 +6922,12 @@ importers: specifier: ^0.2.9 version: 0.2.9 webpack: - specifier: '*' + specifier: "*" version: 5.91.0(esbuild@0.19.12) dependenciesMeta: - '@ledgerhq/crypto-icons-ui': + "@ledgerhq/crypto-icons-ui": injected: true - '@ledgerhq/icons-ui': + "@ledgerhq/icons-ui": injected: true libs/ui/packages/shared: @@ -6957,20 +6941,20 @@ importers: libs/wallet-api-acre-module: dependencies: - '@ledgerhq/wallet-api-client': + "@ledgerhq/wallet-api-client": specifier: ^1.6.0 version: 1.6.0 - '@ledgerhq/wallet-api-core': + "@ledgerhq/wallet-api-core": specifier: ^1.13.0 version: 1.13.0 devDependencies: - '@types/node': + "@types/node": specifier: ^20.2.5 version: 20.12.12 tests/dummy-live-app: dependencies: - '@ledgerhq/live-app-sdk': + "@ledgerhq/live-app-sdk": specifier: ^0.8.0 version: 0.8.2 react: @@ -6983,16 +6967,16 @@ importers: specifier: 5.0.1 version: 5.0.1(react@18.2.0)(typescript@5.4.3) devDependencies: - '@types/jest': + "@types/jest": specifier: ^27.0.1 version: 27.5.2 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 - '@types/react': + "@types/react": specifier: ^18.2.21 version: 18.2.73 - '@types/react-dom': + "@types/react-dom": specifier: ^18.2.13 version: 18.2.23(@types/react@18.2.73) cross-env: @@ -7010,22 +6994,22 @@ importers: tests/dummy-wallet-app: dependencies: - '@ledgerhq/hw-app-eth': + "@ledgerhq/hw-app-eth": specifier: workspace:* version: link:../../libs/ledgerjs/packages/hw-app-eth - '@ledgerhq/hw-transport': + "@ledgerhq/hw-transport": specifier: workspace:* version: link:../../libs/ledgerjs/packages/hw-transport - '@ledgerhq/live-common': + "@ledgerhq/live-common": specifier: workspace:* version: link:../../libs/ledger-live-common - '@ledgerhq/wallet-api-client': + "@ledgerhq/wallet-api-client": specifier: ^1.6.0 version: 1.6.0 - '@ledgerhq/wallet-api-client-react': + "@ledgerhq/wallet-api-client-react": specifier: ^1.3.12 version: 1.3.12(react@18.2.0) - '@ledgerhq/wallet-api-simulator': + "@ledgerhq/wallet-api-simulator": specifier: ^1.2.0 version: 1.2.0(react@18.2.0) bignumber.js: @@ -7041,25 +7025,25 @@ importers: specifier: ^18.2.0 version: 18.2.0(react@18.2.0) devDependencies: - '@types/jest': + "@types/jest": specifier: ^27.0.1 version: 27.5.2 - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 - '@types/react': + "@types/react": specifier: ^18.2.21 version: 18.2.73 - '@types/react-dom': + "@types/react-dom": specifier: ^18.2.13 version: 18.2.23(@types/react@18.2.73) - '@typescript-eslint/eslint-plugin': + "@typescript-eslint/eslint-plugin": specifier: ^6.14.0 version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) - '@typescript-eslint/parser': + "@typescript-eslint/parser": specifier: ^6.14.0 version: 6.21.0(eslint@8.57.0)(typescript@5.4.3) - '@vitejs/plugin-react': + "@vitejs/plugin-react": specifier: ^4.2.1 version: 4.2.1(vite@4.5.3(@types/node@20.12.12)) eslint: @@ -7080,22 +7064,22 @@ importers: tools/actions: devDependencies: - '@types/node': + "@types/node": specifier: ^20.8.10 version: 20.12.12 tools/actions/build-checks: devDependencies: - '@actions/core': + "@actions/core": specifier: ^1.10.1 version: 1.10.1 - '@actions/github': + "@actions/github": specifier: ^6.0.0 version: 6.0.0 - '@types/stream-json': + "@types/stream-json": specifier: ^1.7.5 version: 1.7.7 - '@types/unzipper': + "@types/unzipper": specifier: 0.10.9 version: 0.10.9 stream-json: @@ -7110,10 +7094,10 @@ importers: tools/actions/change-product-name: devDependencies: - '@actions/core': + "@actions/core": specifier: ^1.10.1 version: 1.10.1 - '@actions/github': + "@actions/github": specifier: ^6.0.0 version: 6.0.0 tsup: @@ -7122,10 +7106,10 @@ importers: tools/actions/desktop-report-build: devDependencies: - '@actions/core': + "@actions/core": specifier: ^1.10.1 version: 1.10.1 - '@actions/github': + "@actions/github": specifier: ^6.0.0 version: 6.0.0 node-fetch: @@ -7137,16 +7121,16 @@ importers: tools/actions/generate-bot-super-report: devDependencies: - '@actions/core': + "@actions/core": specifier: ^1.10.1 version: 1.10.1 - '@actions/github': + "@actions/github": specifier: ^6.0.0 version: 6.0.0 - '@types/node': + "@types/node": specifier: 20.8.10 version: 20.8.10 - '@types/unzipper': + "@types/unzipper": specifier: 0.10.9 version: 0.10.9 lodash: @@ -7167,10 +7151,10 @@ importers: tools/actions/generate-release-message: devDependencies: - '@actions/core': + "@actions/core": specifier: ^1.10.1 version: 1.10.1 - '@actions/github': + "@actions/github": specifier: ^6.0.0 version: 6.0.0 semver: @@ -7182,10 +7166,10 @@ importers: tools/actions/get-package-infos: devDependencies: - '@actions/core': + "@actions/core": specifier: ^1.10.1 version: 1.10.1 - '@actions/github': + "@actions/github": specifier: ^6.0.0 version: 6.0.0 semver: @@ -7197,10 +7181,10 @@ importers: tools/actions/get-workflow-artifacts-id: devDependencies: - '@actions/core': + "@actions/core": specifier: ^1.10.1 version: 1.10.1 - '@actions/github': + "@actions/github": specifier: ^6.0.0 version: 6.0.0 tsup: @@ -7209,10 +7193,10 @@ importers: tools/actions/live-common-affected: devDependencies: - '@actions/core': + "@actions/core": specifier: ^1.10.1 version: 1.10.1 - '@actions/github': + "@actions/github": specifier: ^6.0.0 version: 6.0.0 tsup: @@ -7221,10 +7205,10 @@ importers: tools/actions/prepare-comment-screenshots: devDependencies: - '@actions/core': + "@actions/core": specifier: ^1.10.1 version: 1.10.1 - '@actions/github': + "@actions/github": specifier: ^6.0.0 version: 6.0.0 tsup: @@ -7233,10 +7217,10 @@ importers: tools/actions/submit-bot-report: devDependencies: - '@actions/core': + "@actions/core": specifier: ^1.10.1 version: 1.10.1 - '@actions/github': + "@actions/github": specifier: ^6.0.0 version: 6.0.0 node-fetch: @@ -7248,10 +7232,10 @@ importers: tools/actions/turbo-affected: devDependencies: - '@actions/core': + "@actions/core": specifier: ^1.10.1 version: 1.10.1 - '@actions/github': + "@actions/github": specifier: ^6.0.0 version: 6.0.0 tsup: @@ -7260,16 +7244,16 @@ importers: tools/actions/turborepo-gh-cache: devDependencies: - '@actions/cache': + "@actions/cache": specifier: ^3.0.4 version: 3.2.4 - '@actions/core': + "@actions/core": specifier: ^1.10.1 version: 1.10.1 - '@actions/github': + "@actions/github": specifier: ^6.0.0 version: 6.0.0 - '@types/fs-extra': + "@types/fs-extra": specifier: ^9.0.13 version: 9.0.13 express: @@ -7284,25 +7268,25 @@ importers: tools/actions/turborepo-s3-cache: devDependencies: - '@actions/cache': + "@actions/cache": specifier: ^3.0.4 version: 3.2.4 - '@actions/core': + "@actions/core": specifier: ^1.10.1 version: 1.10.1 - '@actions/github': + "@actions/github": specifier: ^6.0.0 version: 6.0.0 - '@aws-sdk/client-s3': + "@aws-sdk/client-s3": specifier: ^3.624.0 version: 3.651.0 - '@aws-sdk/lib-storage': + "@aws-sdk/lib-storage": specifier: ^3.624.0 version: 3.651.0(@aws-sdk/client-s3@3.651.0) - '@types/express': + "@types/express": specifier: ^4.17.18 version: 4.17.21 - '@types/fs-extra': + "@types/fs-extra": specifier: ^9.0.13 version: 9.0.13 express: @@ -7317,13 +7301,13 @@ importers: tools/actions/upload-images: devDependencies: - '@actions/core': + "@actions/core": specifier: ^1.10.1 version: 1.10.1 - '@actions/github': + "@actions/github": specifier: ^6.0.0 version: 6.0.0 - '@aws-sdk/client-s3': + "@aws-sdk/client-s3": specifier: ^3.370.0 version: 3.540.0 tsup: @@ -7334,7 +7318,7 @@ importers: tools/esbuild-utils: devDependencies: - '@craftamap/esbuild-plugin-html': + "@craftamap/esbuild-plugin-html": specifier: ^0.6.0 version: 0.6.1(esbuild@0.19.12) dotenv: @@ -7356,10 +7340,10 @@ importers: specifier: ^13.1.1 version: 13.2.2 devDependencies: - '@types/jest': + "@types/jest": specifier: ^29.5.12 version: 29.5.12 - '@types/node': + "@types/node": specifier: ^20.11.30 version: 20.12.12 jest: @@ -7383,2426 +7367,4044 @@ importers: tools/pnpm-utils: {} packages: - 7zip-bin@5.2.0: - resolution: {integrity: sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A==} - - '@aashutoshrathi/word-wrap@1.2.6': - resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} - engines: {node: '>=0.10.0'} - - '@achrinza/node-ipc@9.2.9': - resolution: {integrity: sha512-7s0VcTwiK/0tNOVdSX9FWMeFdOEcsAOz9HesBldXxFMaGvIak7KC2z9tV9EgsQXn6KUsWsfIkViMNuIo0GoZDQ==} - engines: {node: 8 || 9 || 10 || 11 || 12 || 13 || 14 || 15 || 16 || 17 || 18 || 19 || 20 || 21 || 22} - - '@actions/cache@3.2.4': - resolution: {integrity: sha512-RuHnwfcDagtX+37s0ZWy7clbOfnZ7AlDJQ7k/9rzt2W4Gnwde3fa/qjSjVuz4vLcLIpc7fUob27CMrqiWZytYA==} - - '@actions/core@1.10.1': - resolution: {integrity: sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==} - - '@actions/exec@1.1.1': - resolution: {integrity: sha512-+sCcHHbVdk93a0XT19ECtO/gIXoxvdsgQLzb2fE2/5sIZmWQuluYyjPQtrtTHdU1YzTZ7bAPN4sITq2xi1679w==} - - '@actions/github@6.0.0': - resolution: {integrity: sha512-alScpSVnYmjNEXboZjarjukQEzgCRmjMv6Xj47fsdnqGS73bjJNDpiiXmp8jr0UZLdUB6d9jW63IcmddUP+l0g==} - - '@actions/glob@0.1.2': - resolution: {integrity: sha512-SclLR7Ia5sEqjkJTPs7Sd86maMDw43p769YxBOxvPvEWuPEhpAnBsQfENOpXjFYMmhCqd127bmf+YdvJqVqR4A==} - - '@actions/http-client@2.2.1': - resolution: {integrity: sha512-KhC/cZsq7f8I4LfZSJKgCvEwfkE8o1538VoBeoGzokVLLnbFDEAdFD3UhoMklxo2un9NJVBdANOresx7vTHlHw==} - - '@actions/io@1.1.3': - resolution: {integrity: sha512-wi9JjgKLYS7U/z8PPbco+PvTb/nRWjeoFlJ1Qer83k/3C5PHQi28hiVdeE2kHXmIL99mQFawx8qt/JPjZilJ8Q==} - - '@adobe/css-tools@4.3.3': - resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==} - - '@adraffy/ens-normalize@1.10.1': - resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==} - - '@agrozyme/types-tronweb@5.3.2': - resolution: {integrity: sha512-j02xjgxiHoKz779dea6Zf1zH/sDN2B0sCzb1drpW50KFPtAe3nPNN3h7ThLsMMmvZpLZgqqGiasw7YDnJOx7Zw==} - - '@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' - - '@aw-web-design/x-default-browser@1.4.126': - resolution: {integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==} + resolution: + { + integrity: sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A==, + } + + "@aashutoshrathi/word-wrap@1.2.6": + resolution: + { + integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==, + } + engines: { node: ">=0.10.0" } + + "@achrinza/node-ipc@9.2.9": + resolution: + { + integrity: sha512-7s0VcTwiK/0tNOVdSX9FWMeFdOEcsAOz9HesBldXxFMaGvIak7KC2z9tV9EgsQXn6KUsWsfIkViMNuIo0GoZDQ==, + } + engines: + { node: 8 || 9 || 10 || 11 || 12 || 13 || 14 || 15 || 16 || 17 || 18 || 19 || 20 || 21 || 22 } + + "@actions/cache@3.2.4": + resolution: + { + integrity: sha512-RuHnwfcDagtX+37s0ZWy7clbOfnZ7AlDJQ7k/9rzt2W4Gnwde3fa/qjSjVuz4vLcLIpc7fUob27CMrqiWZytYA==, + } + + "@actions/core@1.10.1": + resolution: + { + integrity: sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==, + } + + "@actions/exec@1.1.1": + resolution: + { + integrity: sha512-+sCcHHbVdk93a0XT19ECtO/gIXoxvdsgQLzb2fE2/5sIZmWQuluYyjPQtrtTHdU1YzTZ7bAPN4sITq2xi1679w==, + } + + "@actions/github@6.0.0": + resolution: + { + integrity: sha512-alScpSVnYmjNEXboZjarjukQEzgCRmjMv6Xj47fsdnqGS73bjJNDpiiXmp8jr0UZLdUB6d9jW63IcmddUP+l0g==, + } + + "@actions/glob@0.1.2": + resolution: + { + integrity: sha512-SclLR7Ia5sEqjkJTPs7Sd86maMDw43p769YxBOxvPvEWuPEhpAnBsQfENOpXjFYMmhCqd127bmf+YdvJqVqR4A==, + } + + "@actions/http-client@2.2.1": + resolution: + { + integrity: sha512-KhC/cZsq7f8I4LfZSJKgCvEwfkE8o1538VoBeoGzokVLLnbFDEAdFD3UhoMklxo2un9NJVBdANOresx7vTHlHw==, + } + + "@actions/io@1.1.3": + resolution: + { + integrity: sha512-wi9JjgKLYS7U/z8PPbco+PvTb/nRWjeoFlJ1Qer83k/3C5PHQi28hiVdeE2kHXmIL99mQFawx8qt/JPjZilJ8Q==, + } + + "@adobe/css-tools@4.3.3": + resolution: + { + integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==, + } + + "@adraffy/ens-normalize@1.10.1": + resolution: + { + integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==, + } + + "@agrozyme/types-tronweb@5.3.2": + resolution: + { + integrity: sha512-j02xjgxiHoKz779dea6Zf1zH/sDN2B0sCzb1drpW50KFPtAe3nPNN3h7ThLsMMmvZpLZgqqGiasw7YDnJOx7Zw==, + } + + "@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" + + "@aw-web-design/x-default-browser@1.4.126": + resolution: + { + integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==, + } hasBin: true - '@aws-crypto/crc32@3.0.0': - resolution: {integrity: sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==} - - '@aws-crypto/crc32@5.2.0': - resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==} - engines: {node: '>=16.0.0'} - - '@aws-crypto/crc32c@3.0.0': - resolution: {integrity: sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w==} - - '@aws-crypto/crc32c@5.2.0': - resolution: {integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==} - - '@aws-crypto/ie11-detection@3.0.0': - resolution: {integrity: sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q==} - - '@aws-crypto/sha1-browser@3.0.0': - resolution: {integrity: sha512-NJth5c997GLHs6nOYTzFKTbYdMNA6/1XlKVgnZoaZcQ7z7UJlOgj2JdbHE8tiYLS3fzXNCguct77SPGat2raSw==} - - '@aws-crypto/sha1-browser@5.2.0': - resolution: {integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==} - - '@aws-crypto/sha256-browser@3.0.0': - resolution: {integrity: sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==} - - '@aws-crypto/sha256-browser@5.2.0': - resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==} - - '@aws-crypto/sha256-js@3.0.0': - resolution: {integrity: sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==} - - '@aws-crypto/sha256-js@5.2.0': - resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==} - engines: {node: '>=16.0.0'} - - '@aws-crypto/supports-web-crypto@3.0.0': - resolution: {integrity: sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg==} - - '@aws-crypto/supports-web-crypto@5.2.0': - resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==} - - '@aws-crypto/util@3.0.0': - resolution: {integrity: sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==} - - '@aws-crypto/util@5.2.0': - resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==} - - '@aws-sdk/client-s3@3.540.0': - resolution: {integrity: sha512-rYBuNB7uqCO9xZc0OAwM2K6QJAo2Syt1L5OhEaf7zG7FulNMyrK6kJPg1WrvNE90tW6gUdDaTy3XsQ7lq6O7uA==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/client-s3@3.651.0': - resolution: {integrity: sha512-37+kxxjnlOAUCb1aHpoLakW4XRG23HrkX8X3cEjxaFLQxorPUiMvfAYQEQQkYD5yggaG+5aM5GAhxkTUTqA5xw==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/client-sso-oidc@3.540.0': - resolution: {integrity: sha512-LZYK0lBRQK8D8M3Sqc96XiXkAV2v70zhTtF6weyzEpgwxZMfSuFJjs0jFyhaeZBZbZv7BBghIdhJ5TPavNxGMQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@aws-sdk/credential-provider-node': ^3.540.0 - - '@aws-sdk/client-sso-oidc@3.650.0': - resolution: {integrity: sha512-6J7IS0f8ovhvbIAZaynOYP+jPX8344UlTjwHxjaXHgFvI8axu3+NslKtEEV5oHLhgzDvrKbinsu5lgE2n4Sqng==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@aws-sdk/client-sts': ^3.650.0 - - '@aws-sdk/client-sso@3.540.0': - resolution: {integrity: sha512-rrQZMuw4sxIo3eyAUUzPQRA336mPRnrAeSlSdVHBKZD8Fjvoy0lYry2vNhkPLpFZLso1J66KRyuIv4LzRR3v1Q==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/client-sso@3.650.0': - resolution: {integrity: sha512-YKm14gCMChD/jlCisFlsVqB8HJujR41bl4Fup2crHwNJxhD/9LTnzwMiVVlBqlXr41Sfa6fSxczX2AMP8NM14A==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/client-sts@3.540.0': - resolution: {integrity: sha512-ITHUQxvpqfQX6obfpIi3KYGzZYfe/I5Ixjfxoi5lB7ISCtmxqObKB1fzD93wonkMJytJ7LUO8panZl/ojiJ1uw==} - engines: {node: '>=14.0.0'} - peerDependencies: - '@aws-sdk/credential-provider-node': ^3.540.0 - - '@aws-sdk/client-sts@3.650.0': - resolution: {integrity: sha512-ISK0ZQYA7O5/WYgslpWy956lUBudGC9d7eL0FFbiL0j50N80Gx3RUv22ezvZgxJWE0W3DqNr4CE19sPYn4Lw8g==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/core@3.535.0': - resolution: {integrity: sha512-+Yusa9HziuaEDta1UaLEtMAtmgvxdxhPn7jgfRY6PplqAqgsfa5FR83sxy5qr2q7xjQTwHtV4MjQVuOjG9JsLw==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/core@3.649.0': - resolution: {integrity: sha512-dheG/X2y25RHE7K+TlS32kcy7TgDg1OpWV44BQRoE0OBPAWmFR1D1qjjTZ7WWrdqRPKzcnDj1qED8ncyncOX8g==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/credential-provider-env@3.535.0': - resolution: {integrity: sha512-XppwO8c0GCGSAvdzyJOhbtktSEaShg14VJKg8mpMa1XcgqzmcqqHQjtDWbx5rZheY1VdpXZhpEzJkB6LpQejpA==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/credential-provider-env@3.649.0': - resolution: {integrity: sha512-tViwzM1dauksA3fdRjsg0T8mcHklDa8EfveyiQKK6pUJopkqV6FQx+X5QNda0t/LrdEVlFZvwHNdXqOEfc83TA==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/credential-provider-http@3.535.0': - resolution: {integrity: sha512-kdj1wCmOMZ29jSlUskRqN04S6fJ4dvt0Nq9Z32SA6wO7UG8ht6Ot9h/au/eTWJM3E1somZ7D771oK7dQt9b8yw==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/credential-provider-http@3.649.0': - resolution: {integrity: sha512-ODAJ+AJJq6ozbns6ejGbicpsQ0dyMOpnGlg0J9J0jITQ05DKQZ581hdB8APDOZ9N8FstShP6dLZflSj8jb5fNA==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/credential-provider-ini@3.540.0': - resolution: {integrity: sha512-igN/RbsnulIBwqXbwsWmR3srqmtbPF1dm+JteGvUY31FW65fTVvWvSr945Y/cf1UbhPmIQXntlsqESqpkhTHwg==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/credential-provider-ini@3.650.0': - resolution: {integrity: sha512-x2M9buZxIsKuUbuDgkGHhAKYBpn0/rYdKlwuFuOhXyyAcnhvPj0lgNF2KE4ld/GF1mKr7FF/uV3G9lM6PFaYmA==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@aws-sdk/client-sts': ^3.650.0 - - '@aws-sdk/credential-provider-node@3.540.0': - resolution: {integrity: sha512-HKQZJbLHlrHX9A0B1poiYNXIIQfy8whTjuosTCYKPDBhhUyVAQfxy/KG726j0v43IhaNPLgTGZCJve4hAsazSw==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/credential-provider-node@3.650.0': - resolution: {integrity: sha512-uBra5YjzS/gWSekAogfqJfY6c+oKQkkou7Cjc4d/cpMNvQtF1IBdekJ7NaE1RfsDEz3uH1+Myd07YWZAJo/2Qw==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/credential-provider-process@3.535.0': - resolution: {integrity: sha512-9O1OaprGCnlb/kYl8RwmH7Mlg8JREZctB8r9sa1KhSsWFq/SWO0AuJTyowxD7zL5PkeS4eTvzFFHWCa3OO5epA==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/credential-provider-process@3.649.0': - resolution: {integrity: sha512-6VYPQpEVpU+6DDS/gLoI40ppuNM5RPIEprK30qZZxnhTr5wyrGOeJ7J7wbbwPOZ5dKwta290BiJDU2ipV8Y9BQ==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/credential-provider-sso@3.540.0': - resolution: {integrity: sha512-tKkFqK227LF5ajc5EL6asXS32p3nkofpP8G7NRpU7zOEOQCg01KUc4JRX+ItI0T007CiN1J19yNoFqHLT/SqHg==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/credential-provider-sso@3.650.0': - resolution: {integrity: sha512-069nkhcwximbvyGiAC6Fr2G+yrG/p1S3NQ5BZ2cMzB1hgUKo6TvgFK7nriYI4ljMQ+UWxqPwIdTqiUmn2iJmhg==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/credential-provider-web-identity@3.540.0': - resolution: {integrity: sha512-OpDm9w3A168B44hSjpnvECP4rvnFzD86rN4VYdGADuCvEa5uEcdA/JuT5WclFPDqdWEmFBqS1pxBIJBf0g2Q9Q==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/credential-provider-web-identity@3.649.0': - resolution: {integrity: sha512-XVk3WsDa0g3kQFPmnCH/LaCtGY/0R2NDv7gscYZSXiBZcG/fixasglTprgWSp8zcA0t7tEIGu9suyjz8ZwhymQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@aws-sdk/client-sts': ^3.649.0 - - '@aws-sdk/lib-storage@3.651.0': - resolution: {integrity: sha512-AK41Gn/KWtOHC4X9fPjtG63FgssT+CS8CTWIhrM2k1cw4Ut+Wt8L1C4otXfyyLqTyLs/UGEFHn7ed68mGj6nAQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@aws-sdk/client-s3': ^3.651.0 - - '@aws-sdk/middleware-bucket-endpoint@3.535.0': - resolution: {integrity: sha512-7sijlfQsc4UO9Fsl11mU26Y5f9E7g6UoNg/iJUBpC5pgvvmdBRO5UEhbB/gnqvOEPsBXyhmfzbstebq23Qdz7A==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/middleware-bucket-endpoint@3.649.0': - resolution: {integrity: sha512-ZdDICtUU4YZkrVllTUOH1Fj/F3WShLhkfNKJE3HJ/yj6pS8JS9P2lWzHiHkHiidjrHSxc6NuBo6vuZ+182XLbw==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/middleware-expect-continue@3.535.0': - resolution: {integrity: sha512-hFKyqUBky0NWCVku8iZ9+PACehx0p6vuMw5YnZf8FVgHP0fode0b/NwQY6UY7oor/GftvRsAlRUAWGNFEGUpwA==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/middleware-expect-continue@3.649.0': - resolution: {integrity: sha512-pW2id/mWNd+L0/hZKp5yL3J+8rTwsamu9E69Hc5pM3qTF4K4DTZZ+A0sQbY6duIvZvc8IbQHbSMulBOLyWNP3A==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/middleware-flexible-checksums@3.535.0': - resolution: {integrity: sha512-rBIzldY9jjRATxICDX7t77aW6ctqmVDgnuAOgbVT5xgHftt4o7PGWKoMvl/45hYqoQgxVFnCBof9bxkqSBebVA==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/middleware-flexible-checksums@3.651.0': - resolution: {integrity: sha512-mGAOIjhNDcBK5+JD+W+Ky5YJL98jTNFTENJV/GiQ9t3CdqK3p02MNr/T6VwzEpzsJvJD23amogiEZeiqSQiibg==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/middleware-host-header@3.535.0': - resolution: {integrity: sha512-0h6TWjBWtDaYwHMQJI9ulafeS4lLaw1vIxRjbpH0svFRt6Eve+Sy8NlVhECfTU2hNz/fLubvrUxsXoThaLBIew==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/middleware-host-header@3.649.0': - resolution: {integrity: sha512-PjAe2FocbicHVgNNwdSZ05upxIO7AgTPFtQLpnIAmoyzMcgv/zNB5fBn3uAnQSAeEPPCD+4SYVEUD1hw1ZBvEg==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/middleware-location-constraint@3.535.0': - resolution: {integrity: sha512-SxfS9wfidUZZ+WnlKRTCRn3h+XTsymXRXPJj8VV6hNRNeOwzNweoG3YhQbTowuuNfXf89m9v6meYkBBtkdacKw==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/middleware-location-constraint@3.649.0': - resolution: {integrity: sha512-O9AXhaFUQx34UTnp/cKCcaWW/IVk4mntlWfFjsIxvRatamKaY33b5fOiakGG+J1t0QFK0niDBSvOYUR1fdlHzw==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/middleware-logger@3.535.0': - resolution: {integrity: sha512-huNHpONOrEDrdRTvSQr1cJiRMNf0S52NDXtaPzdxiubTkP+vni2MohmZANMOai/qT0olmEVX01LhZ0ZAOgmg6A==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/middleware-logger@3.649.0': - resolution: {integrity: sha512-qdqRx6q7lYC6KL/NT9x3ShTL0TBuxdkCczGzHzY3AnOoYUjnCDH7Vlq867O6MAvb4EnGNECFzIgtkZkQ4FhY5w==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/middleware-recursion-detection@3.535.0': - resolution: {integrity: sha512-am2qgGs+gwqmR4wHLWpzlZ8PWhm4ktj5bYSgDrsOfjhdBlWNxvPoID9/pDAz5RWL48+oH7I6SQzMqxXsFDikrw==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/middleware-recursion-detection@3.649.0': - resolution: {integrity: sha512-IPnO4wlmaLRf6IYmJW2i8gJ2+UPXX0hDRv1it7Qf8DpBW+lGyF2rnoN7NrFX0WIxdGOlJF1RcOr/HjXb2QeXfQ==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/middleware-sdk-s3@3.535.0': - resolution: {integrity: sha512-/dLG/E3af6ohxkQ5GBHT8tZfuPIg6eItKxCXuulvYj0Tqgf3Mb+xTsvSkxQsJF06RS4sH7Qsg/PnB8ZfrJrXpg==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/middleware-sdk-s3@3.649.0': - resolution: {integrity: sha512-3H8735xTAD7IxNdreT6qv2YRk4CGOGfz8ufZo5pROJYZ4N5rfcdDMvb8szMSLvQHegqS4v1DqO9nrOPgc0I2Qg==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/middleware-signing@3.535.0': - resolution: {integrity: sha512-Rb4sfus1Gc5paRl9JJgymJGsb/i3gJKK/rTuFZICdd1PBBE5osIOHP5CpzWYBtc5LlyZE1a2QoxPMCyG+QUGPw==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/middleware-ssec@3.537.0': - resolution: {integrity: sha512-2QWMrbwd5eBy5KCYn9a15JEWBgrK2qFEKQN2lqb/6z0bhtevIOxIRfC99tzvRuPt6nixFQ+ynKuBjcfT4ZFrdQ==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/middleware-ssec@3.649.0': - resolution: {integrity: sha512-r/WBIpX+Kcx+AV5vJ+LbdDOuibk7spBqcFK2LytQjOZKPksZNRAM99khbFe9vr9S1+uDmCLVjAVkIfQ5seJrOw==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/middleware-user-agent@3.540.0': - resolution: {integrity: sha512-8Rd6wPeXDnOYzWj1XCmOKcx/Q87L0K1/EHqOBocGjLVbN3gmRxBvpmR1pRTjf7IsWfnnzN5btqtcAkfDPYQUMQ==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/middleware-user-agent@3.649.0': - resolution: {integrity: sha512-q6sO10dnCXoxe9thobMJxekhJumzd1j6dxcE1+qJdYKHJr6yYgWbogJqrLCpWd30w0lEvnuAHK8lN2kWLdJxJw==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/region-config-resolver@3.535.0': - resolution: {integrity: sha512-IXOznDiaItBjsQy4Fil0kzX/J3HxIOknEphqHbOfUf+LpA5ugcsxuQQONrbEQusCBnfJyymrldBvBhFmtlU9Wg==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/region-config-resolver@3.649.0': - resolution: {integrity: sha512-xURBvdQXvRvca5Du8IlC5FyCj3pkw8Z75+373J3Wb+vyg8GjD14HfKk1Je1HCCQDyIE9VB/scYDcm9ri0ppePw==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/signature-v4-multi-region@3.535.0': - resolution: {integrity: sha512-tqCsEsEj8icW0SAh3NvyhRUq54Gz2pu4NM2tOSrFp7SO55heUUaRLSzYteNZCTOupH//AAaZvbN/UUTO/DrOog==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/signature-v4-multi-region@3.649.0': - resolution: {integrity: sha512-feJfSHtCarFmTMZSE5k7/A+m4FrdCrmotljc/AmXArWy3wl8XFyxE5tFVW/PiUgbgeoVDN+ZLt3YYtItHfNUWQ==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/token-providers@3.540.0': - resolution: {integrity: sha512-9BvtiVEZe5Ev88Wa4ZIUbtT6BVcPwhxmVInQ6c12MYNb0WNL54BN6wLy/eknAfF05gpX2/NDU2pUDOyMPdm/+g==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/token-providers@3.649.0': - resolution: {integrity: sha512-ZBqr+JuXI9RiN+4DSZykMx5gxpL8Dr3exIfFhxMiwAP3DQojwl0ub8ONjMuAjq9OvmX6n+jHZL6fBnNgnNFC8w==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@aws-sdk/client-sso-oidc': ^3.649.0 - - '@aws-sdk/types@3.535.0': - resolution: {integrity: sha512-aY4MYfduNj+sRR37U7XxYR8wemfbKP6lx00ze2M2uubn7mZotuVrWYAafbMSXrdEMSToE5JDhr28vArSOoLcSg==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/types@3.649.0': - resolution: {integrity: sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/util-arn-parser@3.535.0': - resolution: {integrity: sha512-smVo29nUPAOprp8Z5Y3GHuhiOtw6c8/EtLCm5AVMtRsTPw4V414ZXL2H66tzmb5kEeSzQlbfBSBEdIFZoxO9kg==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/util-arn-parser@3.568.0': - resolution: {integrity: sha512-XUKJWWo+KOB7fbnPP0+g/o5Ulku/X53t7i/h+sPHr5xxYTJJ9CYnbToo95mzxe7xWvkLrsNtJ8L+MnNn9INs2w==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/util-endpoints@3.540.0': - resolution: {integrity: sha512-1kMyQFAWx6f8alaI6UT65/5YW/7pDWAKAdNwL6vuJLea03KrZRX3PMoONOSJpAS5m3Ot7HlWZvf3wZDNTLELZw==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/util-endpoints@3.649.0': - resolution: {integrity: sha512-bZI1Wc3R/KibdDVWFxX/N4AoJFG4VJ92Dp4WYmOrVD6VPkb8jPz7ZeiYc7YwPl8NoDjYyPneBV0lEoK/V8OKAA==} - engines: {node: '>=16.0.0'} - - '@aws-sdk/util-locate-window@3.535.0': - resolution: {integrity: sha512-PHJ3SL6d2jpcgbqdgiPxkXpu7Drc2PYViwxSIqvvMKhDwzSB1W3mMvtpzwKM4IE7zLFodZo0GKjJ9AsoXndXhA==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/util-user-agent-browser@3.535.0': - resolution: {integrity: sha512-RWMcF/xV5n+nhaA/Ff5P3yNP3Kur/I+VNZngog4TEs92oB/nwOdAg/2JL8bVAhUbMrjTjpwm7PItziYFQoqyig==} - - '@aws-sdk/util-user-agent-browser@3.649.0': - resolution: {integrity: sha512-IY43r256LhKAvdEVQO/FPdUyVpcZS5EVxh/WHVdNzuN1bNLoUK2rIzuZqVA0EGguvCxoXVmQv9m50GvG7cGktg==} - - '@aws-sdk/util-user-agent-node@3.535.0': - resolution: {integrity: sha512-dRek0zUuIT25wOWJlsRm97nTkUlh1NDcLsQZIN2Y8KxhwoXXWtJs5vaDPT+qAg+OpcNj80i1zLR/CirqlFg/TQ==} - engines: {node: '>=14.0.0'} - peerDependencies: - aws-crt: '>=1.0.0' + "@aws-crypto/crc32@3.0.0": + resolution: + { + integrity: sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==, + } + + "@aws-crypto/crc32@5.2.0": + resolution: + { + integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==, + } + engines: { node: ">=16.0.0" } + + "@aws-crypto/crc32c@3.0.0": + resolution: + { + integrity: sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w==, + } + + "@aws-crypto/crc32c@5.2.0": + resolution: + { + integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==, + } + + "@aws-crypto/ie11-detection@3.0.0": + resolution: + { + integrity: sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q==, + } + + "@aws-crypto/sha1-browser@3.0.0": + resolution: + { + integrity: sha512-NJth5c997GLHs6nOYTzFKTbYdMNA6/1XlKVgnZoaZcQ7z7UJlOgj2JdbHE8tiYLS3fzXNCguct77SPGat2raSw==, + } + + "@aws-crypto/sha1-browser@5.2.0": + resolution: + { + integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==, + } + + "@aws-crypto/sha256-browser@3.0.0": + resolution: + { + integrity: sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==, + } + + "@aws-crypto/sha256-browser@5.2.0": + resolution: + { + integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==, + } + + "@aws-crypto/sha256-js@3.0.0": + resolution: + { + integrity: sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==, + } + + "@aws-crypto/sha256-js@5.2.0": + resolution: + { + integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==, + } + engines: { node: ">=16.0.0" } + + "@aws-crypto/supports-web-crypto@3.0.0": + resolution: + { + integrity: sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg==, + } + + "@aws-crypto/supports-web-crypto@5.2.0": + resolution: + { + integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==, + } + + "@aws-crypto/util@3.0.0": + resolution: + { + integrity: sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==, + } + + "@aws-crypto/util@5.2.0": + resolution: + { + integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==, + } + + "@aws-sdk/client-s3@3.540.0": + resolution: + { + integrity: sha512-rYBuNB7uqCO9xZc0OAwM2K6QJAo2Syt1L5OhEaf7zG7FulNMyrK6kJPg1WrvNE90tW6gUdDaTy3XsQ7lq6O7uA==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/client-s3@3.651.0": + resolution: + { + integrity: sha512-37+kxxjnlOAUCb1aHpoLakW4XRG23HrkX8X3cEjxaFLQxorPUiMvfAYQEQQkYD5yggaG+5aM5GAhxkTUTqA5xw==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/client-sso-oidc@3.540.0": + resolution: + { + integrity: sha512-LZYK0lBRQK8D8M3Sqc96XiXkAV2v70zhTtF6weyzEpgwxZMfSuFJjs0jFyhaeZBZbZv7BBghIdhJ5TPavNxGMQ==, + } + engines: { node: ">=14.0.0" } + peerDependencies: + "@aws-sdk/credential-provider-node": ^3.540.0 + + "@aws-sdk/client-sso-oidc@3.650.0": + resolution: + { + integrity: sha512-6J7IS0f8ovhvbIAZaynOYP+jPX8344UlTjwHxjaXHgFvI8axu3+NslKtEEV5oHLhgzDvrKbinsu5lgE2n4Sqng==, + } + engines: { node: ">=16.0.0" } + peerDependencies: + "@aws-sdk/client-sts": ^3.650.0 + + "@aws-sdk/client-sso@3.540.0": + resolution: + { + integrity: sha512-rrQZMuw4sxIo3eyAUUzPQRA336mPRnrAeSlSdVHBKZD8Fjvoy0lYry2vNhkPLpFZLso1J66KRyuIv4LzRR3v1Q==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/client-sso@3.650.0": + resolution: + { + integrity: sha512-YKm14gCMChD/jlCisFlsVqB8HJujR41bl4Fup2crHwNJxhD/9LTnzwMiVVlBqlXr41Sfa6fSxczX2AMP8NM14A==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/client-sts@3.540.0": + resolution: + { + integrity: sha512-ITHUQxvpqfQX6obfpIi3KYGzZYfe/I5Ixjfxoi5lB7ISCtmxqObKB1fzD93wonkMJytJ7LUO8panZl/ojiJ1uw==, + } + engines: { node: ">=14.0.0" } + peerDependencies: + "@aws-sdk/credential-provider-node": ^3.540.0 + + "@aws-sdk/client-sts@3.650.0": + resolution: + { + integrity: sha512-ISK0ZQYA7O5/WYgslpWy956lUBudGC9d7eL0FFbiL0j50N80Gx3RUv22ezvZgxJWE0W3DqNr4CE19sPYn4Lw8g==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/core@3.535.0": + resolution: + { + integrity: sha512-+Yusa9HziuaEDta1UaLEtMAtmgvxdxhPn7jgfRY6PplqAqgsfa5FR83sxy5qr2q7xjQTwHtV4MjQVuOjG9JsLw==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/core@3.649.0": + resolution: + { + integrity: sha512-dheG/X2y25RHE7K+TlS32kcy7TgDg1OpWV44BQRoE0OBPAWmFR1D1qjjTZ7WWrdqRPKzcnDj1qED8ncyncOX8g==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/credential-provider-env@3.535.0": + resolution: + { + integrity: sha512-XppwO8c0GCGSAvdzyJOhbtktSEaShg14VJKg8mpMa1XcgqzmcqqHQjtDWbx5rZheY1VdpXZhpEzJkB6LpQejpA==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/credential-provider-env@3.649.0": + resolution: + { + integrity: sha512-tViwzM1dauksA3fdRjsg0T8mcHklDa8EfveyiQKK6pUJopkqV6FQx+X5QNda0t/LrdEVlFZvwHNdXqOEfc83TA==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/credential-provider-http@3.535.0": + resolution: + { + integrity: sha512-kdj1wCmOMZ29jSlUskRqN04S6fJ4dvt0Nq9Z32SA6wO7UG8ht6Ot9h/au/eTWJM3E1somZ7D771oK7dQt9b8yw==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/credential-provider-http@3.649.0": + resolution: + { + integrity: sha512-ODAJ+AJJq6ozbns6ejGbicpsQ0dyMOpnGlg0J9J0jITQ05DKQZ581hdB8APDOZ9N8FstShP6dLZflSj8jb5fNA==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/credential-provider-ini@3.540.0": + resolution: + { + integrity: sha512-igN/RbsnulIBwqXbwsWmR3srqmtbPF1dm+JteGvUY31FW65fTVvWvSr945Y/cf1UbhPmIQXntlsqESqpkhTHwg==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/credential-provider-ini@3.650.0": + resolution: + { + integrity: sha512-x2M9buZxIsKuUbuDgkGHhAKYBpn0/rYdKlwuFuOhXyyAcnhvPj0lgNF2KE4ld/GF1mKr7FF/uV3G9lM6PFaYmA==, + } + engines: { node: ">=16.0.0" } + peerDependencies: + "@aws-sdk/client-sts": ^3.650.0 + + "@aws-sdk/credential-provider-node@3.540.0": + resolution: + { + integrity: sha512-HKQZJbLHlrHX9A0B1poiYNXIIQfy8whTjuosTCYKPDBhhUyVAQfxy/KG726j0v43IhaNPLgTGZCJve4hAsazSw==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/credential-provider-node@3.650.0": + resolution: + { + integrity: sha512-uBra5YjzS/gWSekAogfqJfY6c+oKQkkou7Cjc4d/cpMNvQtF1IBdekJ7NaE1RfsDEz3uH1+Myd07YWZAJo/2Qw==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/credential-provider-process@3.535.0": + resolution: + { + integrity: sha512-9O1OaprGCnlb/kYl8RwmH7Mlg8JREZctB8r9sa1KhSsWFq/SWO0AuJTyowxD7zL5PkeS4eTvzFFHWCa3OO5epA==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/credential-provider-process@3.649.0": + resolution: + { + integrity: sha512-6VYPQpEVpU+6DDS/gLoI40ppuNM5RPIEprK30qZZxnhTr5wyrGOeJ7J7wbbwPOZ5dKwta290BiJDU2ipV8Y9BQ==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/credential-provider-sso@3.540.0": + resolution: + { + integrity: sha512-tKkFqK227LF5ajc5EL6asXS32p3nkofpP8G7NRpU7zOEOQCg01KUc4JRX+ItI0T007CiN1J19yNoFqHLT/SqHg==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/credential-provider-sso@3.650.0": + resolution: + { + integrity: sha512-069nkhcwximbvyGiAC6Fr2G+yrG/p1S3NQ5BZ2cMzB1hgUKo6TvgFK7nriYI4ljMQ+UWxqPwIdTqiUmn2iJmhg==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/credential-provider-web-identity@3.540.0": + resolution: + { + integrity: sha512-OpDm9w3A168B44hSjpnvECP4rvnFzD86rN4VYdGADuCvEa5uEcdA/JuT5WclFPDqdWEmFBqS1pxBIJBf0g2Q9Q==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/credential-provider-web-identity@3.649.0": + resolution: + { + integrity: sha512-XVk3WsDa0g3kQFPmnCH/LaCtGY/0R2NDv7gscYZSXiBZcG/fixasglTprgWSp8zcA0t7tEIGu9suyjz8ZwhymQ==, + } + engines: { node: ">=16.0.0" } + peerDependencies: + "@aws-sdk/client-sts": ^3.649.0 + + "@aws-sdk/lib-storage@3.651.0": + resolution: + { + integrity: sha512-AK41Gn/KWtOHC4X9fPjtG63FgssT+CS8CTWIhrM2k1cw4Ut+Wt8L1C4otXfyyLqTyLs/UGEFHn7ed68mGj6nAQ==, + } + engines: { node: ">=16.0.0" } + peerDependencies: + "@aws-sdk/client-s3": ^3.651.0 + + "@aws-sdk/middleware-bucket-endpoint@3.535.0": + resolution: + { + integrity: sha512-7sijlfQsc4UO9Fsl11mU26Y5f9E7g6UoNg/iJUBpC5pgvvmdBRO5UEhbB/gnqvOEPsBXyhmfzbstebq23Qdz7A==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/middleware-bucket-endpoint@3.649.0": + resolution: + { + integrity: sha512-ZdDICtUU4YZkrVllTUOH1Fj/F3WShLhkfNKJE3HJ/yj6pS8JS9P2lWzHiHkHiidjrHSxc6NuBo6vuZ+182XLbw==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/middleware-expect-continue@3.535.0": + resolution: + { + integrity: sha512-hFKyqUBky0NWCVku8iZ9+PACehx0p6vuMw5YnZf8FVgHP0fode0b/NwQY6UY7oor/GftvRsAlRUAWGNFEGUpwA==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/middleware-expect-continue@3.649.0": + resolution: + { + integrity: sha512-pW2id/mWNd+L0/hZKp5yL3J+8rTwsamu9E69Hc5pM3qTF4K4DTZZ+A0sQbY6duIvZvc8IbQHbSMulBOLyWNP3A==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/middleware-flexible-checksums@3.535.0": + resolution: + { + integrity: sha512-rBIzldY9jjRATxICDX7t77aW6ctqmVDgnuAOgbVT5xgHftt4o7PGWKoMvl/45hYqoQgxVFnCBof9bxkqSBebVA==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/middleware-flexible-checksums@3.651.0": + resolution: + { + integrity: sha512-mGAOIjhNDcBK5+JD+W+Ky5YJL98jTNFTENJV/GiQ9t3CdqK3p02MNr/T6VwzEpzsJvJD23amogiEZeiqSQiibg==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/middleware-host-header@3.535.0": + resolution: + { + integrity: sha512-0h6TWjBWtDaYwHMQJI9ulafeS4lLaw1vIxRjbpH0svFRt6Eve+Sy8NlVhECfTU2hNz/fLubvrUxsXoThaLBIew==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/middleware-host-header@3.649.0": + resolution: + { + integrity: sha512-PjAe2FocbicHVgNNwdSZ05upxIO7AgTPFtQLpnIAmoyzMcgv/zNB5fBn3uAnQSAeEPPCD+4SYVEUD1hw1ZBvEg==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/middleware-location-constraint@3.535.0": + resolution: + { + integrity: sha512-SxfS9wfidUZZ+WnlKRTCRn3h+XTsymXRXPJj8VV6hNRNeOwzNweoG3YhQbTowuuNfXf89m9v6meYkBBtkdacKw==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/middleware-location-constraint@3.649.0": + resolution: + { + integrity: sha512-O9AXhaFUQx34UTnp/cKCcaWW/IVk4mntlWfFjsIxvRatamKaY33b5fOiakGG+J1t0QFK0niDBSvOYUR1fdlHzw==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/middleware-logger@3.535.0": + resolution: + { + integrity: sha512-huNHpONOrEDrdRTvSQr1cJiRMNf0S52NDXtaPzdxiubTkP+vni2MohmZANMOai/qT0olmEVX01LhZ0ZAOgmg6A==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/middleware-logger@3.649.0": + resolution: + { + integrity: sha512-qdqRx6q7lYC6KL/NT9x3ShTL0TBuxdkCczGzHzY3AnOoYUjnCDH7Vlq867O6MAvb4EnGNECFzIgtkZkQ4FhY5w==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/middleware-recursion-detection@3.535.0": + resolution: + { + integrity: sha512-am2qgGs+gwqmR4wHLWpzlZ8PWhm4ktj5bYSgDrsOfjhdBlWNxvPoID9/pDAz5RWL48+oH7I6SQzMqxXsFDikrw==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/middleware-recursion-detection@3.649.0": + resolution: + { + integrity: sha512-IPnO4wlmaLRf6IYmJW2i8gJ2+UPXX0hDRv1it7Qf8DpBW+lGyF2rnoN7NrFX0WIxdGOlJF1RcOr/HjXb2QeXfQ==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/middleware-sdk-s3@3.535.0": + resolution: + { + integrity: sha512-/dLG/E3af6ohxkQ5GBHT8tZfuPIg6eItKxCXuulvYj0Tqgf3Mb+xTsvSkxQsJF06RS4sH7Qsg/PnB8ZfrJrXpg==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/middleware-sdk-s3@3.649.0": + resolution: + { + integrity: sha512-3H8735xTAD7IxNdreT6qv2YRk4CGOGfz8ufZo5pROJYZ4N5rfcdDMvb8szMSLvQHegqS4v1DqO9nrOPgc0I2Qg==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/middleware-signing@3.535.0": + resolution: + { + integrity: sha512-Rb4sfus1Gc5paRl9JJgymJGsb/i3gJKK/rTuFZICdd1PBBE5osIOHP5CpzWYBtc5LlyZE1a2QoxPMCyG+QUGPw==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/middleware-ssec@3.537.0": + resolution: + { + integrity: sha512-2QWMrbwd5eBy5KCYn9a15JEWBgrK2qFEKQN2lqb/6z0bhtevIOxIRfC99tzvRuPt6nixFQ+ynKuBjcfT4ZFrdQ==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/middleware-ssec@3.649.0": + resolution: + { + integrity: sha512-r/WBIpX+Kcx+AV5vJ+LbdDOuibk7spBqcFK2LytQjOZKPksZNRAM99khbFe9vr9S1+uDmCLVjAVkIfQ5seJrOw==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/middleware-user-agent@3.540.0": + resolution: + { + integrity: sha512-8Rd6wPeXDnOYzWj1XCmOKcx/Q87L0K1/EHqOBocGjLVbN3gmRxBvpmR1pRTjf7IsWfnnzN5btqtcAkfDPYQUMQ==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/middleware-user-agent@3.649.0": + resolution: + { + integrity: sha512-q6sO10dnCXoxe9thobMJxekhJumzd1j6dxcE1+qJdYKHJr6yYgWbogJqrLCpWd30w0lEvnuAHK8lN2kWLdJxJw==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/region-config-resolver@3.535.0": + resolution: + { + integrity: sha512-IXOznDiaItBjsQy4Fil0kzX/J3HxIOknEphqHbOfUf+LpA5ugcsxuQQONrbEQusCBnfJyymrldBvBhFmtlU9Wg==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/region-config-resolver@3.649.0": + resolution: + { + integrity: sha512-xURBvdQXvRvca5Du8IlC5FyCj3pkw8Z75+373J3Wb+vyg8GjD14HfKk1Je1HCCQDyIE9VB/scYDcm9ri0ppePw==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/signature-v4-multi-region@3.535.0": + resolution: + { + integrity: sha512-tqCsEsEj8icW0SAh3NvyhRUq54Gz2pu4NM2tOSrFp7SO55heUUaRLSzYteNZCTOupH//AAaZvbN/UUTO/DrOog==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/signature-v4-multi-region@3.649.0": + resolution: + { + integrity: sha512-feJfSHtCarFmTMZSE5k7/A+m4FrdCrmotljc/AmXArWy3wl8XFyxE5tFVW/PiUgbgeoVDN+ZLt3YYtItHfNUWQ==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/token-providers@3.540.0": + resolution: + { + integrity: sha512-9BvtiVEZe5Ev88Wa4ZIUbtT6BVcPwhxmVInQ6c12MYNb0WNL54BN6wLy/eknAfF05gpX2/NDU2pUDOyMPdm/+g==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/token-providers@3.649.0": + resolution: + { + integrity: sha512-ZBqr+JuXI9RiN+4DSZykMx5gxpL8Dr3exIfFhxMiwAP3DQojwl0ub8ONjMuAjq9OvmX6n+jHZL6fBnNgnNFC8w==, + } + engines: { node: ">=16.0.0" } + peerDependencies: + "@aws-sdk/client-sso-oidc": ^3.649.0 + + "@aws-sdk/types@3.535.0": + resolution: + { + integrity: sha512-aY4MYfduNj+sRR37U7XxYR8wemfbKP6lx00ze2M2uubn7mZotuVrWYAafbMSXrdEMSToE5JDhr28vArSOoLcSg==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/types@3.649.0": + resolution: + { + integrity: sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/util-arn-parser@3.535.0": + resolution: + { + integrity: sha512-smVo29nUPAOprp8Z5Y3GHuhiOtw6c8/EtLCm5AVMtRsTPw4V414ZXL2H66tzmb5kEeSzQlbfBSBEdIFZoxO9kg==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/util-arn-parser@3.568.0": + resolution: + { + integrity: sha512-XUKJWWo+KOB7fbnPP0+g/o5Ulku/X53t7i/h+sPHr5xxYTJJ9CYnbToo95mzxe7xWvkLrsNtJ8L+MnNn9INs2w==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/util-endpoints@3.540.0": + resolution: + { + integrity: sha512-1kMyQFAWx6f8alaI6UT65/5YW/7pDWAKAdNwL6vuJLea03KrZRX3PMoONOSJpAS5m3Ot7HlWZvf3wZDNTLELZw==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/util-endpoints@3.649.0": + resolution: + { + integrity: sha512-bZI1Wc3R/KibdDVWFxX/N4AoJFG4VJ92Dp4WYmOrVD6VPkb8jPz7ZeiYc7YwPl8NoDjYyPneBV0lEoK/V8OKAA==, + } + engines: { node: ">=16.0.0" } + + "@aws-sdk/util-locate-window@3.535.0": + resolution: + { + integrity: sha512-PHJ3SL6d2jpcgbqdgiPxkXpu7Drc2PYViwxSIqvvMKhDwzSB1W3mMvtpzwKM4IE7zLFodZo0GKjJ9AsoXndXhA==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/util-user-agent-browser@3.535.0": + resolution: + { + integrity: sha512-RWMcF/xV5n+nhaA/Ff5P3yNP3Kur/I+VNZngog4TEs92oB/nwOdAg/2JL8bVAhUbMrjTjpwm7PItziYFQoqyig==, + } + + "@aws-sdk/util-user-agent-browser@3.649.0": + resolution: + { + integrity: sha512-IY43r256LhKAvdEVQO/FPdUyVpcZS5EVxh/WHVdNzuN1bNLoUK2rIzuZqVA0EGguvCxoXVmQv9m50GvG7cGktg==, + } + + "@aws-sdk/util-user-agent-node@3.535.0": + resolution: + { + integrity: sha512-dRek0zUuIT25wOWJlsRm97nTkUlh1NDcLsQZIN2Y8KxhwoXXWtJs5vaDPT+qAg+OpcNj80i1zLR/CirqlFg/TQ==, + } + engines: { node: ">=14.0.0" } + peerDependencies: + aws-crt: ">=1.0.0" peerDependenciesMeta: aws-crt: optional: true - '@aws-sdk/util-user-agent-node@3.649.0': - resolution: {integrity: sha512-x5DiLpZDG/AJmCIBnE3Xhpwy35QIo3WqNiOpw6ExVs1NydbM/e90zFPSfhME0FM66D/WorigvluBxxwjxDm/GA==} - engines: {node: '>=16.0.0'} + "@aws-sdk/util-user-agent-node@3.649.0": + resolution: + { + integrity: sha512-x5DiLpZDG/AJmCIBnE3Xhpwy35QIo3WqNiOpw6ExVs1NydbM/e90zFPSfhME0FM66D/WorigvluBxxwjxDm/GA==, + } + engines: { node: ">=16.0.0" } peerDependencies: - aws-crt: '>=1.0.0' + aws-crt: ">=1.0.0" peerDependenciesMeta: aws-crt: optional: true - '@aws-sdk/util-utf8-browser@3.259.0': - resolution: {integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==} - - '@aws-sdk/xml-builder@3.535.0': - resolution: {integrity: sha512-VXAq/Jz8KIrU84+HqsOJhIKZqG0PNTdi6n6PFQ4xJf44ZQHD/5C7ouH4qCFX5XgZXcgbRIcMVVYGC6Jye0dRng==} - engines: {node: '>=14.0.0'} - - '@aws-sdk/xml-builder@3.649.0': - resolution: {integrity: sha512-XVESKkK7m5LdCVzZ3NvAja40BEyCrfPqtaiFAAhJIvW2U1Edyugf2o3XikuQY62crGT6BZagxJFgOiLKvuTiTg==} - engines: {node: '>=16.0.0'} - - '@azure/abort-controller@1.1.0': - resolution: {integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==} - engines: {node: '>=12.0.0'} - - '@azure/abort-controller@2.1.1': - resolution: {integrity: sha512-NhzeNm5zu2fPlwGXPUjzsRCRuPx5demaZyNcyNYJDqpa/Sbxzvo/RYt9IwUaAOnDW5+r7J9UOE6f22TQnb9nhQ==} - engines: {node: '>=18.0.0'} - - '@azure/core-asynciterator-polyfill@1.0.2': - resolution: {integrity: sha512-3rkP4LnnlWawl0LZptJOdXNrT/fHp2eQMadoasa6afspXdpGrtPZuAQc2PD0cpgyuoXtUWyC3tv7xfntjGS5Dw==} - engines: {node: '>=12.0.0'} - - '@azure/core-auth@1.7.1': - resolution: {integrity: sha512-dyeQwvgthqs/SlPVQbZQetpslXceHd4i5a7M/7z/lGEAVwnSluabnQOjF2/dk/hhWgMISusv1Ytp4mQ8JNy62A==} - engines: {node: '>=18.0.0'} - - '@azure/core-http@3.0.4': - resolution: {integrity: sha512-Fok9VVhMdxAFOtqiiAtg74fL0UJkt0z3D+ouUUxcRLzZNBioPRAMJFVxiWoJljYpXsRi4GDQHzQHDc9AiYaIUQ==} - engines: {node: '>=14.0.0'} - deprecated: deprecating as we migrated to core v2 - - '@azure/core-lro@2.7.1': - resolution: {integrity: sha512-kXSlrNHOCTVZMxpXNRqzgh9/j4cnNXU5Hf2YjMyjddRhCXFiFRzmNaqwN+XO9rGTsCOIaaG7M67zZdyliXZG9g==} - engines: {node: '>=18.0.0'} - - '@azure/core-paging@1.6.1': - resolution: {integrity: sha512-3tKIQXSU3mlN+ITz0m2pXLnKK3oQ6/EVcW8ud011Iq+M0rx6Wnm7NUEpoMeOAEedeKlPtemrQzO6YWoDR71O5w==} - engines: {node: '>=18.0.0'} - - '@azure/core-tracing@1.0.0-preview.13': - resolution: {integrity: sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==} - engines: {node: '>=12.0.0'} - - '@azure/core-util@1.8.1': - resolution: {integrity: sha512-L3voj0StUdJ+YKomvwnTv7gHzguJO+a6h30pmmZdRprJCM+RJlGMPxzuh4R7lhQu1jNmEtaHX5wvTgWLDAmbGQ==} - engines: {node: '>=18.0.0'} - - '@azure/logger@1.1.1': - resolution: {integrity: sha512-/+4TtokaGgC+MnThdf6HyIH9Wrjp+CnCn3Nx3ggevN7FFjjNyjqg0yLlc2i9S+Z2uAzI8GYOo35Nzb1MhQ89MA==} - engines: {node: '>=18.0.0'} - - '@azure/ms-rest-js@2.7.0': - resolution: {integrity: sha512-ngbzWbqF+NmztDOpLBVDxYM+XLcUj7nKhxGbSU9WtIsXfRB//cf2ZbAG5HkOrhU9/wd/ORRB6lM/d69RKVjiyA==} - - '@azure/storage-blob@12.17.0': - resolution: {integrity: sha512-sM4vpsCpcCApagRW5UIjQNlNylo02my2opgp0Emi8x888hZUvJ3dN69Oq20cEGXkMUWnoCrBaB0zyS3yeB87sQ==} - engines: {node: '>=14.0.0'} - - '@babel/code-frame@7.10.4': - resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==} - - '@babel/code-frame@7.24.2': - resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==} - engines: {node: '>=6.9.0'} - - '@babel/code-frame@7.24.6': - resolution: {integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==} - engines: {node: '>=6.9.0'} - - '@babel/compat-data@7.24.1': - resolution: {integrity: sha512-Pc65opHDliVpRHuKfzI+gSA4zcgr65O4cl64fFJIWEEh8JoHIHh0Oez1Eo8Arz8zq/JhgKodQaxEwUPRtZylVA==} - engines: {node: '>=6.9.0'} - - '@babel/core@7.24.3': - resolution: {integrity: sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==} - engines: {node: '>=6.9.0'} - - '@babel/eslint-parser@7.24.1': - resolution: {integrity: sha512-d5guuzMlPeDfZIbpQ8+g1NaCNuAGBBGNECh0HVqz1sjOeVLh2CEaifuOysCH18URW6R7pqXINvf5PaR/dC6jLQ==} - engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} - peerDependencies: - '@babel/core': ^7.11.0 + "@aws-sdk/util-utf8-browser@3.259.0": + resolution: + { + integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==, + } + + "@aws-sdk/xml-builder@3.535.0": + resolution: + { + integrity: sha512-VXAq/Jz8KIrU84+HqsOJhIKZqG0PNTdi6n6PFQ4xJf44ZQHD/5C7ouH4qCFX5XgZXcgbRIcMVVYGC6Jye0dRng==, + } + engines: { node: ">=14.0.0" } + + "@aws-sdk/xml-builder@3.649.0": + resolution: + { + integrity: sha512-XVESKkK7m5LdCVzZ3NvAja40BEyCrfPqtaiFAAhJIvW2U1Edyugf2o3XikuQY62crGT6BZagxJFgOiLKvuTiTg==, + } + engines: { node: ">=16.0.0" } + + "@azure/abort-controller@1.1.0": + resolution: + { + integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==, + } + engines: { node: ">=12.0.0" } + + "@azure/abort-controller@2.1.1": + resolution: + { + integrity: sha512-NhzeNm5zu2fPlwGXPUjzsRCRuPx5demaZyNcyNYJDqpa/Sbxzvo/RYt9IwUaAOnDW5+r7J9UOE6f22TQnb9nhQ==, + } + engines: { node: ">=18.0.0" } + + "@azure/core-asynciterator-polyfill@1.0.2": + resolution: + { + integrity: sha512-3rkP4LnnlWawl0LZptJOdXNrT/fHp2eQMadoasa6afspXdpGrtPZuAQc2PD0cpgyuoXtUWyC3tv7xfntjGS5Dw==, + } + engines: { node: ">=12.0.0" } + + "@azure/core-auth@1.7.1": + resolution: + { + integrity: sha512-dyeQwvgthqs/SlPVQbZQetpslXceHd4i5a7M/7z/lGEAVwnSluabnQOjF2/dk/hhWgMISusv1Ytp4mQ8JNy62A==, + } + engines: { node: ">=18.0.0" } + + "@azure/core-http@3.0.4": + resolution: + { + integrity: sha512-Fok9VVhMdxAFOtqiiAtg74fL0UJkt0z3D+ouUUxcRLzZNBioPRAMJFVxiWoJljYpXsRi4GDQHzQHDc9AiYaIUQ==, + } + engines: { node: ">=14.0.0" } + deprecated: This package is no longer supported. Please migrate to use @azure/core-rest-pipeline + + "@azure/core-lro@2.7.1": + resolution: + { + integrity: sha512-kXSlrNHOCTVZMxpXNRqzgh9/j4cnNXU5Hf2YjMyjddRhCXFiFRzmNaqwN+XO9rGTsCOIaaG7M67zZdyliXZG9g==, + } + engines: { node: ">=18.0.0" } + + "@azure/core-paging@1.6.1": + resolution: + { + integrity: sha512-3tKIQXSU3mlN+ITz0m2pXLnKK3oQ6/EVcW8ud011Iq+M0rx6Wnm7NUEpoMeOAEedeKlPtemrQzO6YWoDR71O5w==, + } + engines: { node: ">=18.0.0" } + + "@azure/core-tracing@1.0.0-preview.13": + resolution: + { + integrity: sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==, + } + engines: { node: ">=12.0.0" } + + "@azure/core-util@1.8.1": + resolution: + { + integrity: sha512-L3voj0StUdJ+YKomvwnTv7gHzguJO+a6h30pmmZdRprJCM+RJlGMPxzuh4R7lhQu1jNmEtaHX5wvTgWLDAmbGQ==, + } + engines: { node: ">=18.0.0" } + + "@azure/logger@1.1.1": + resolution: + { + integrity: sha512-/+4TtokaGgC+MnThdf6HyIH9Wrjp+CnCn3Nx3ggevN7FFjjNyjqg0yLlc2i9S+Z2uAzI8GYOo35Nzb1MhQ89MA==, + } + engines: { node: ">=18.0.0" } + + "@azure/ms-rest-js@2.7.0": + resolution: + { + integrity: sha512-ngbzWbqF+NmztDOpLBVDxYM+XLcUj7nKhxGbSU9WtIsXfRB//cf2ZbAG5HkOrhU9/wd/ORRB6lM/d69RKVjiyA==, + } + + "@azure/storage-blob@12.17.0": + resolution: + { + integrity: sha512-sM4vpsCpcCApagRW5UIjQNlNylo02my2opgp0Emi8x888hZUvJ3dN69Oq20cEGXkMUWnoCrBaB0zyS3yeB87sQ==, + } + engines: { node: ">=14.0.0" } + + "@babel/code-frame@7.10.4": + resolution: + { + integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==, + } + + "@babel/code-frame@7.24.2": + resolution: + { + integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==, + } + engines: { node: ">=6.9.0" } + + "@babel/code-frame@7.24.6": + resolution: + { + integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==, + } + engines: { node: ">=6.9.0" } + + "@babel/compat-data@7.24.1": + resolution: + { + integrity: sha512-Pc65opHDliVpRHuKfzI+gSA4zcgr65O4cl64fFJIWEEh8JoHIHh0Oez1Eo8Arz8zq/JhgKodQaxEwUPRtZylVA==, + } + engines: { node: ">=6.9.0" } + + "@babel/core@7.24.3": + resolution: + { + integrity: sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==, + } + engines: { node: ">=6.9.0" } + + "@babel/eslint-parser@7.24.1": + resolution: + { + integrity: sha512-d5guuzMlPeDfZIbpQ8+g1NaCNuAGBBGNECh0HVqz1sjOeVLh2CEaifuOysCH18URW6R7pqXINvf5PaR/dC6jLQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || >=14.0.0 } + peerDependencies: + "@babel/core": ^7.11.0 eslint: ^7.5.0 || ^8.0.0 - '@babel/generator@7.24.1': - resolution: {integrity: sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==} - engines: {node: '>=6.9.0'} - - '@babel/helper-annotate-as-pure@7.22.5': - resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} - engines: {node: '>=6.9.0'} - - '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': - resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-compilation-targets@7.23.6': - resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} - engines: {node: '>=6.9.0'} - - '@babel/helper-create-class-features-plugin@7.24.1': - resolution: {integrity: sha512-1yJa9dX9g//V6fDebXoEfEsxkZHk3Hcbm+zLhyu6qVgYFLvmTALTeV+jNU9e5RnYtioBrGEOdoI2joMSNQ/+aA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-create-regexp-features-plugin@7.22.15': - resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-define-polyfill-provider@0.6.1': - resolution: {integrity: sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==} - peerDependencies: - '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - - '@babel/helper-environment-visitor@7.22.20': - resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-function-name@7.23.0': - resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-hoist-variables@7.22.5': - resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-member-expression-to-functions@7.23.0': - resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-module-imports@7.24.3': - resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==} - engines: {node: '>=6.9.0'} - - '@babel/helper-module-transforms@7.23.3': - resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-optimise-call-expression@7.22.5': - resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-plugin-utils@7.24.0': - resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==} - engines: {node: '>=6.9.0'} - - '@babel/helper-remap-async-to-generator@7.22.20': - resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-replace-supers@7.24.1': - resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-simple-access@7.22.5': - resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} - engines: {node: '>=6.9.0'} - - '@babel/helper-skip-transparent-expression-wrappers@7.22.5': - resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} - engines: {node: '>=6.9.0'} - - '@babel/helper-split-export-declaration@7.22.6': - resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} - engines: {node: '>=6.9.0'} - - '@babel/helper-string-parser@7.24.1': - resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==} - engines: {node: '>=6.9.0'} - - '@babel/helper-validator-identifier@7.22.20': - resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} - engines: {node: '>=6.9.0'} - - '@babel/helper-validator-identifier@7.24.7': - resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} - engines: {node: '>=6.9.0'} - - '@babel/helper-validator-option@7.23.5': - resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-wrap-function@7.22.20': - resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} - engines: {node: '>=6.9.0'} - - '@babel/helpers@7.24.1': - resolution: {integrity: sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==} - engines: {node: '>=6.9.0'} - - '@babel/highlight@7.24.2': - resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==} - engines: {node: '>=6.9.0'} - - '@babel/highlight@7.24.6': - resolution: {integrity: sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==} - engines: {node: '>=6.9.0'} - - '@babel/parser@7.24.1': - resolution: {integrity: sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==} - engines: {node: '>=6.0.0'} + "@babel/generator@7.2.0": + resolution: + { + integrity: sha512-BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg==, + } + + "@babel/generator@7.24.1": + resolution: + { + integrity: sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-annotate-as-pure@7.22.5": + resolution: + { + integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-builder-binary-assignment-operator-visitor@7.22.15": + resolution: + { + integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-compilation-targets@7.23.6": + resolution: + { + integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-create-class-features-plugin@7.24.1": + resolution: + { + integrity: sha512-1yJa9dX9g//V6fDebXoEfEsxkZHk3Hcbm+zLhyu6qVgYFLvmTALTeV+jNU9e5RnYtioBrGEOdoI2joMSNQ/+aA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/helper-create-regexp-features-plugin@7.22.15": + resolution: + { + integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/helper-define-polyfill-provider@0.6.1": + resolution: + { + integrity: sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==, + } + peerDependencies: + "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 + + "@babel/helper-environment-visitor@7.22.20": + resolution: + { + integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-function-name@7.23.0": + resolution: + { + integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-hoist-variables@7.22.5": + resolution: + { + integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-member-expression-to-functions@7.23.0": + resolution: + { + integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-module-imports@7.24.3": + resolution: + { + integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-module-transforms@7.23.3": + resolution: + { + integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/helper-optimise-call-expression@7.22.5": + resolution: + { + integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-plugin-utils@7.24.0": + resolution: + { + integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-remap-async-to-generator@7.22.20": + resolution: + { + integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/helper-replace-supers@7.24.1": + resolution: + { + integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/helper-simple-access@7.22.5": + resolution: + { + integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-skip-transparent-expression-wrappers@7.22.5": + resolution: + { + integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-split-export-declaration@7.22.6": + resolution: + { + integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-string-parser@7.24.1": + resolution: + { + integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-validator-identifier@7.22.20": + resolution: + { + integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-validator-identifier@7.24.7": + resolution: + { + integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-validator-option@7.23.5": + resolution: + { + integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==, + } + engines: { node: ">=6.9.0" } + + "@babel/helper-wrap-function@7.22.20": + resolution: + { + integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==, + } + engines: { node: ">=6.9.0" } + + "@babel/helpers@7.24.1": + resolution: + { + integrity: sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==, + } + engines: { node: ">=6.9.0" } + + "@babel/highlight@7.24.2": + resolution: + { + integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==, + } + engines: { node: ">=6.9.0" } + + "@babel/highlight@7.24.6": + resolution: + { + integrity: sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==, + } + engines: { node: ">=6.9.0" } + + "@babel/parser@7.24.1": + resolution: + { + integrity: sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==, + } + engines: { node: ">=6.0.0" } hasBin: true - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1': - resolution: {integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1': - resolution: {integrity: sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.13.0 - - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1': - resolution: {integrity: sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-proposal-async-generator-functions@7.20.7': - resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} - engines: {node: '>=6.9.0'} + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1": + resolution: + { + integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1": + resolution: + { + integrity: sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.13.0 + + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1": + resolution: + { + integrity: sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/plugin-proposal-async-generator-functions@7.20.7": + resolution: + { + integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==, + } + 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-async-generator-functions instead. peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.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-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-decorators@7.24.1': - resolution: {integrity: sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==} - engines: {node: '>=6.9.0'} + "@babel/plugin-proposal-decorators@7.24.1": + resolution: + { + integrity: sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 - '@babel/plugin-proposal-export-default-from@7.24.1': - resolution: {integrity: sha512-+0hrgGGV3xyYIjOrD/bUZk/iUwOIGuoANfRfVg1cPhYBxF+TIXSEcc42DqzBICmWsnAQ+SfKedY0bj8QD+LuMg==} - engines: {node: '>=6.9.0'} + "@babel/plugin-proposal-export-default-from@7.24.1": + resolution: + { + integrity: sha512-+0hrgGGV3xyYIjOrD/bUZk/iUwOIGuoANfRfVg1cPhYBxF+TIXSEcc42DqzBICmWsnAQ+SfKedY0bj8QD+LuMg==, + } + engines: { node: ">=6.9.0" } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 - '@babel/plugin-proposal-export-namespace-from@7.18.9': - resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} - engines: {node: '>=6.9.0'} + "@babel/plugin-proposal-export-namespace-from@7.18.9": + resolution: + { + integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==, + } + 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-export-namespace-from instead. peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6': - resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} - engines: {node: '>=6.9.0'} + "@babel/plugin-proposal-logical-assignment-operators@7.20.7": + resolution: + { + integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==, + } + 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-logical-assignment-operators instead. + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-proposal-nullish-coalescing-operator@7.18.6": + resolution: + { + integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==, + } + 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-nullish-coalescing-operator instead. peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 - '@babel/plugin-proposal-numeric-separator@7.18.6': - resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} - engines: {node: '>=6.9.0'} + "@babel/plugin-proposal-numeric-separator@7.18.6": + resolution: + { + integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==, + } + 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-numeric-separator 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/core": ^7.0.0-0 - '@babel/plugin-proposal-optional-catch-binding@7.18.6': - resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} - engines: {node: '>=6.9.0'} + "@babel/plugin-proposal-optional-catch-binding@7.18.6": + resolution: + { + integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==, + } + 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-optional-catch-binding instead. peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 - '@babel/plugin-proposal-optional-chaining@7.21.0': - resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} - engines: {node: '>=6.9.0'} + "@babel/plugin-proposal-optional-chaining@7.21.0": + resolution: + { + integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==, + } + 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-optional-chaining instead. peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 - '@babel/plugin-proposal-private-methods@7.18.6': - resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} - engines: {node: '>=6.9.0'} + "@babel/plugin-proposal-private-methods@7.18.6": + resolution: + { + integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==, + } + 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-private-methods instead. peerDependencies: - '@babel/core': ^7.0.0-0 + "@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'} + "@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/core": ^7.0.0-0 - '@babel/plugin-proposal-private-property-in-object@7.21.11': - resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} - engines: {node: '>=6.9.0'} + "@babel/plugin-proposal-private-property-in-object@7.21.11": + resolution: + { + integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==, + } + 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-private-property-in-object instead. peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-async-generators@7.8.4': - resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-bigint@7.8.3': - resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} - 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-class-static-block@7.14.5': - resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-decorators@7.24.1': - resolution: {integrity: sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-dynamic-import@7.8.3': - resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-export-default-from@7.24.1': - resolution: {integrity: sha512-cNXSxv9eTkGUtd0PsNMK8Yx5xeScxfpWOUAxE+ZPAXXEcAMOC3fk7LRdXq5fvpra2pLx2p1YtkAhpUbB2SwaRA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-export-namespace-from@7.8.3': - resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-flow@7.24.1': - resolution: {integrity: sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-import-assertions@7.24.1': - resolution: {integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-import-attributes@7.24.1': - resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-import-meta@7.10.4': - resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-json-strings@7.8.3': - resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-jsx@7.24.1': - resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-logical-assignment-operators@7.10.4': - resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': - resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-numeric-separator@7.10.4': - resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} - 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-optional-catch-binding@7.8.3': - resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-optional-chaining@7.8.3': - resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-private-property-in-object@7.14.5': - resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-top-level-await@7.14.5': - resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-syntax-typescript@7.24.1': - resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==} - 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.24.1': - resolution: {integrity: sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-async-generator-functions@7.24.3': - resolution: {integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-async-to-generator@7.24.1': - resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-block-scoped-functions@7.24.1': - resolution: {integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-block-scoping@7.24.1': - resolution: {integrity: sha512-h71T2QQvDgM2SmT29UYU6ozjMlAt7s7CSs5Hvy8f8cf/GM/Z4a2zMfN+fjVGaieeCrXR3EdQl6C4gQG+OgmbKw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-class-properties@7.24.1': - resolution: {integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-class-static-block@7.24.1': - resolution: {integrity: sha512-FUHlKCn6J3ERiu8Dv+4eoz7w8+kFLSyeVG4vDAikwADGjUCoHw/JHokyGtr8OR4UjpwPVivyF+h8Q5iv/JmrtA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.12.0 - - '@babel/plugin-transform-classes@7.24.1': - resolution: {integrity: sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-computed-properties@7.24.1': - resolution: {integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-destructuring@7.24.1': - resolution: {integrity: sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-dotall-regex@7.24.1': - resolution: {integrity: sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-duplicate-keys@7.24.1': - resolution: {integrity: sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-dynamic-import@7.24.1': - resolution: {integrity: sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-exponentiation-operator@7.24.1': - resolution: {integrity: sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-export-namespace-from@7.24.1': - resolution: {integrity: sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-flow-strip-types@7.24.1': - resolution: {integrity: sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-for-of@7.24.1': - resolution: {integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-function-name@7.24.1': - resolution: {integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-json-strings@7.24.1': - resolution: {integrity: sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-literals@7.24.1': - resolution: {integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-logical-assignment-operators@7.24.1': - resolution: {integrity: sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-member-expression-literals@7.24.1': - resolution: {integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-amd@7.24.1': - resolution: {integrity: sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-commonjs@7.24.1': - resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-systemjs@7.24.1': - resolution: {integrity: sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-modules-umd@7.24.1': - resolution: {integrity: sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-named-capturing-groups-regex@7.22.5': - resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/plugin-transform-new-target@7.24.1': - resolution: {integrity: sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-nullish-coalescing-operator@7.24.1': - resolution: {integrity: sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-numeric-separator@7.24.1': - resolution: {integrity: sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-object-rest-spread@7.24.1': - resolution: {integrity: sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-object-super@7.24.1': - resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-optional-catch-binding@7.24.1': - resolution: {integrity: sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-optional-chaining@7.24.1': - resolution: {integrity: sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-parameters@7.24.1': - resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-private-methods@7.24.1': - resolution: {integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-private-property-in-object@7.24.1': - resolution: {integrity: sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-property-literals@7.24.1': - resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-constant-elements@7.24.1': - resolution: {integrity: sha512-QXp1U9x0R7tkiGB0FOk8o74jhnap0FlZ5gNkRIWdG3eP+SvMFg118e1zaWewDzgABb106QSKpVsD3Wgd8t6ifA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-display-name@7.24.1': - resolution: {integrity: sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-jsx-development@7.22.5': - resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-jsx-self@7.24.1': - resolution: {integrity: sha512-kDJgnPujTmAZ/9q2CN4m2/lRsUUPDvsG3+tSHWUJIzMGTt5U/b/fwWd3RO3n+5mjLrsBrVa5eKFRVSQbi3dF1w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-jsx-source@7.24.1': - resolution: {integrity: sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-jsx@7.23.4': - resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-pure-annotations@7.24.1': - resolution: {integrity: sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-regenerator@7.24.1': - resolution: {integrity: sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-reserved-words@7.24.1': - resolution: {integrity: sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-runtime@7.24.3': - resolution: {integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-shorthand-properties@7.24.1': - resolution: {integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-spread@7.24.1': - resolution: {integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-sticky-regex@7.24.1': - resolution: {integrity: sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-template-literals@7.24.1': - resolution: {integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-typeof-symbol@7.24.1': - resolution: {integrity: sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-typescript@7.24.1': - resolution: {integrity: sha512-liYSESjX2fZ7JyBFkYG78nfvHlMKE6IpNdTVnxmlYUR+j5ZLsitFbaAE+eJSK2zPPkNWNw4mXL51rQ8WrvdK0w==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-escapes@7.24.1': - resolution: {integrity: sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-property-regex@7.24.1': - resolution: {integrity: sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-regex@7.24.1': - resolution: {integrity: sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-unicode-sets-regex@7.24.1': - resolution: {integrity: sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/preset-env@7.24.3': - resolution: {integrity: sha512-fSk430k5c2ff8536JcPvPWK4tZDwehWLGlBp0wrsBUjZVdeQV6lePbwKWZaZfK2vnh/1kQX1PzAJWsnBmVgGJA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/preset-flow@7.24.1': - resolution: {integrity: sha512-sWCV2G9pcqZf+JHyv/RyqEIpFypxdCSxWIxQjpdaQxenNog7cN1pr76hg8u0Fz8Qgg0H4ETkGcJnXL8d4j0PPA==} - 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/core": ^7.0.0-0 - '@babel/preset-react@7.24.1': - resolution: {integrity: sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/preset-typescript@7.24.1': - resolution: {integrity: sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/register@7.23.7': - resolution: {integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/regjsgen@0.8.0': - resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} - - '@babel/runtime-corejs3@7.24.8': - resolution: {integrity: sha512-DXG/BhegtMHhnN7YPIvxWd303/9aXvYFD1TjNL3CD6tUrhI2LVsg3Lck0aql5TRH29n4sj3emcROypkZVUfSuA==} - engines: {node: '>=6.9.0'} - - '@babel/runtime@7.24.1': - resolution: {integrity: sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ==} - engines: {node: '>=6.9.0'} - - '@babel/runtime@7.25.0': - resolution: {integrity: sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==} - engines: {node: '>=6.9.0'} - - '@babel/template@7.24.0': - resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==} - engines: {node: '>=6.9.0'} - - '@babel/traverse@7.24.1': - resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==} - engines: {node: '>=6.9.0'} - - '@babel/types@7.24.0': - resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==} - engines: {node: '>=6.9.0'} - - '@base2/pretty-print-object@1.0.1': - resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} - - '@bcoe/v8-coverage@0.2.3': - resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} - - '@blooo/hw-app-acre@1.0.1': - resolution: {integrity: sha512-lLwG2abLFks6B8rHatIfj8rOSajzjCQlT6Wa4zoZnlxWqv8o3oIZ/kQzO3Mf3CgY2i3kMk3DqNKd7yBtXyfnEg==} + "@babel/plugin-syntax-async-generators@7.8.4": + resolution: + { + integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 - '@braintree/sanitize-url@6.0.4': - resolution: {integrity: sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==} + "@babel/plugin-syntax-bigint@7.8.3": + resolution: + { + integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, + } + 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-class-static-block@7.14.5": + resolution: + { + integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-decorators@7.24.1": + resolution: + { + integrity: sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-dynamic-import@7.8.3": + resolution: + { + integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-export-default-from@7.24.1": + resolution: + { + integrity: sha512-cNXSxv9eTkGUtd0PsNMK8Yx5xeScxfpWOUAxE+ZPAXXEcAMOC3fk7LRdXq5fvpra2pLx2p1YtkAhpUbB2SwaRA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 - '@braze/react-native-sdk@8.4.0': - resolution: {integrity: sha512-ypXVQD9lzIkQVgxQQoAYNZK/log/nHpPzz53iIsFelAM2hbT6NkyEEjM3SO0kO3UcZWZZvVtdR96ueX6wQep9g==} + "@babel/plugin-syntax-export-namespace-from@7.8.3": + resolution: + { + integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 - '@braze/web-sdk@4.10.2': - resolution: {integrity: sha512-S5OtBpmHDeZZVG1WjCdJ1w/SjzhGGULPkNjJONnl4YqUKK85BrGxK3beWXutduT5uoUl1Vfq4c32wx/DRsVDBw==} + "@babel/plugin-syntax-flow@7.24.1": + resolution: + { + integrity: sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 - '@bundled-es-modules/cookie@2.0.0': - resolution: {integrity: sha512-Or6YHg/kamKHpxULAdSqhGqnWFneIXu1NKvvfBBzKGwpVsYuFIQ5aBPHDnnoR3ghW1nvSkALd+EF9iMtY7Vjxw==} - - '@bundled-es-modules/statuses@1.0.1': - resolution: {integrity: sha512-yn7BklA5acgcBr+7w064fGV+SGIFySjCKpqjcWgBAIfrAkY+4GQTJJHQMeT3V/sgz23VTEVV8TtOmkvJAhFVfg==} - - '@bundled-es-modules/tough-cookie@0.1.6': - resolution: {integrity: sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==} - - '@cardano-foundation/ledgerjs-hw-app-cardano@7.1.2': - resolution: {integrity: sha512-bSR8MdKzotnf9WGO0BtDpTXsH4ObaQjCDSHA6MhJuAKoJEaLl7ASS4ctzqzGlKWoEvjdsgx+M8hJbWDLJ63TFw==} - - '@casperlabs/ts-results@3.3.5': - resolution: {integrity: sha512-ymSQqqb4mOSet592li02u1Gd28LoOFJUm6R3jkdNQ+nqsnbHvN+izBigtP4aYmNwh6gFyCwDgjYporEJgDT4eA==} - - '@celo/base@3.2.0': - resolution: {integrity: sha512-9wfZYiYv7dzt17a29fxU6sV7JssyXfpSQ9kPSpfOlsewPICXwfOMQ+25Jn6xZu20Vx9rmKebmLHiQyiuYEDOcQ==} - - '@celo/connect@3.2.0': - resolution: {integrity: sha512-iLOLo8d1OqNcX827/iCfWCeWaewUl0kyhL1xgyXrf//YaPU+ljKtruJmiLLrxkfdB/etWUdcryrbmuUhjHZmKg==} - engines: {node: '>=8.13.0'} + "@babel/plugin-syntax-import-assertions@7.24.1": + resolution: + { + integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-import-attributes@7.24.1": + resolution: + { + integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-import-meta@7.10.4": + resolution: + { + integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-json-strings@7.8.3": + resolution: + { + integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-jsx@7.24.1": + resolution: + { + integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-logical-assignment-operators@7.10.4": + resolution: + { + integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3": + resolution: + { + integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-numeric-separator@7.10.4": + resolution: + { + integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, + } + 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-optional-catch-binding@7.8.3": + resolution: + { + integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-optional-chaining@7.8.3": + resolution: + { + integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-private-property-in-object@7.14.5": + resolution: + { + integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-top-level-await@7.14.5": + resolution: + { + integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-syntax-typescript@7.24.1": + resolution: + { + integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==, + } + 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.24.1": + resolution: + { + integrity: sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-async-generator-functions@7.24.3": + resolution: + { + integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-async-to-generator@7.24.1": + resolution: + { + integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-block-scoped-functions@7.24.1": + resolution: + { + integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-block-scoping@7.24.1": + resolution: + { + integrity: sha512-h71T2QQvDgM2SmT29UYU6ozjMlAt7s7CSs5Hvy8f8cf/GM/Z4a2zMfN+fjVGaieeCrXR3EdQl6C4gQG+OgmbKw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-class-properties@7.24.1": + resolution: + { + integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-class-static-block@7.24.1": + resolution: + { + integrity: sha512-FUHlKCn6J3ERiu8Dv+4eoz7w8+kFLSyeVG4vDAikwADGjUCoHw/JHokyGtr8OR4UjpwPVivyF+h8Q5iv/JmrtA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.12.0 + + "@babel/plugin-transform-classes@7.24.1": + resolution: + { + integrity: sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-computed-properties@7.24.1": + resolution: + { + integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-destructuring@7.24.1": + resolution: + { + integrity: sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-dotall-regex@7.24.1": + resolution: + { + integrity: sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-duplicate-keys@7.24.1": + resolution: + { + integrity: sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-dynamic-import@7.24.1": + resolution: + { + integrity: sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-exponentiation-operator@7.24.1": + resolution: + { + integrity: sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-export-namespace-from@7.24.1": + resolution: + { + integrity: sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-flow-strip-types@7.24.1": + resolution: + { + integrity: sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-for-of@7.24.1": + resolution: + { + integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-function-name@7.24.1": + resolution: + { + integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-json-strings@7.24.1": + resolution: + { + integrity: sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-literals@7.24.1": + resolution: + { + integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-logical-assignment-operators@7.24.1": + resolution: + { + integrity: sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-member-expression-literals@7.24.1": + resolution: + { + integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-modules-amd@7.24.1": + resolution: + { + integrity: sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-modules-commonjs@7.24.1": + resolution: + { + integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-modules-systemjs@7.24.1": + resolution: + { + integrity: sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-modules-umd@7.24.1": + resolution: + { + integrity: sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-named-capturing-groups-regex@7.22.5": + resolution: + { + integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/plugin-transform-new-target@7.24.1": + resolution: + { + integrity: sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-nullish-coalescing-operator@7.24.1": + resolution: + { + integrity: sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-numeric-separator@7.24.1": + resolution: + { + integrity: sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-object-rest-spread@7.24.1": + resolution: + { + integrity: sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-object-super@7.24.1": + resolution: + { + integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-optional-catch-binding@7.24.1": + resolution: + { + integrity: sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-optional-chaining@7.24.1": + resolution: + { + integrity: sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-parameters@7.24.1": + resolution: + { + integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-private-methods@7.24.1": + resolution: + { + integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-private-property-in-object@7.24.1": + resolution: + { + integrity: sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-property-literals@7.24.1": + resolution: + { + integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-react-constant-elements@7.24.1": + resolution: + { + integrity: sha512-QXp1U9x0R7tkiGB0FOk8o74jhnap0FlZ5gNkRIWdG3eP+SvMFg118e1zaWewDzgABb106QSKpVsD3Wgd8t6ifA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-react-display-name@7.24.1": + resolution: + { + integrity: sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-react-jsx-development@7.22.5": + resolution: + { + integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-react-jsx-self@7.24.1": + resolution: + { + integrity: sha512-kDJgnPujTmAZ/9q2CN4m2/lRsUUPDvsG3+tSHWUJIzMGTt5U/b/fwWd3RO3n+5mjLrsBrVa5eKFRVSQbi3dF1w==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-react-jsx-source@7.24.1": + resolution: + { + integrity: sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-react-jsx@7.23.4": + resolution: + { + integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-react-pure-annotations@7.24.1": + resolution: + { + integrity: sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-regenerator@7.24.1": + resolution: + { + integrity: sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-reserved-words@7.24.1": + resolution: + { + integrity: sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-runtime@7.24.3": + resolution: + { + integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-shorthand-properties@7.24.1": + resolution: + { + integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-spread@7.24.1": + resolution: + { + integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-sticky-regex@7.24.1": + resolution: + { + integrity: sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-template-literals@7.24.1": + resolution: + { + integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-typeof-symbol@7.24.1": + resolution: + { + integrity: sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-typescript@7.24.1": + resolution: + { + integrity: sha512-liYSESjX2fZ7JyBFkYG78nfvHlMKE6IpNdTVnxmlYUR+j5ZLsitFbaAE+eJSK2zPPkNWNw4mXL51rQ8WrvdK0w==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-unicode-escapes@7.24.1": + resolution: + { + integrity: sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-unicode-property-regex@7.24.1": + resolution: + { + integrity: sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-unicode-regex@7.24.1": + resolution: + { + integrity: sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/plugin-transform-unicode-sets-regex@7.24.1": + resolution: + { + integrity: sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + + "@babel/preset-env@7.24.3": + resolution: + { + integrity: sha512-fSk430k5c2ff8536JcPvPWK4tZDwehWLGlBp0wrsBUjZVdeQV6lePbwKWZaZfK2vnh/1kQX1PzAJWsnBmVgGJA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/preset-flow@7.24.1": + resolution: + { + integrity: sha512-sWCV2G9pcqZf+JHyv/RyqEIpFypxdCSxWIxQjpdaQxenNog7cN1pr76hg8u0Fz8Qgg0H4ETkGcJnXL8d4j0PPA==, + } + 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.24.1": + resolution: + { + integrity: sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/preset-typescript@7.24.1": + resolution: + { + integrity: sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/register@7.23.7": + resolution: + { + integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0-0 + + "@babel/regjsgen@0.8.0": + resolution: + { + integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==, + } + + "@babel/runtime-corejs3@7.24.8": + resolution: + { + integrity: sha512-DXG/BhegtMHhnN7YPIvxWd303/9aXvYFD1TjNL3CD6tUrhI2LVsg3Lck0aql5TRH29n4sj3emcROypkZVUfSuA==, + } + engines: { node: ">=6.9.0" } + + "@babel/runtime@7.24.1": + resolution: + { + integrity: sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ==, + } + engines: { node: ">=6.9.0" } + + "@babel/runtime@7.25.0": + resolution: + { + integrity: sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==, + } + engines: { node: ">=6.9.0" } + + "@babel/template@7.24.0": + resolution: + { + integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==, + } + engines: { node: ">=6.9.0" } + + "@babel/traverse@7.24.1": + resolution: + { + integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==, + } + engines: { node: ">=6.9.0" } + + "@babel/types@7.24.0": + resolution: + { + integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==, + } + engines: { node: ">=6.9.0" } + + "@base2/pretty-print-object@1.0.1": + resolution: + { + integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==, + } + + "@bcoe/v8-coverage@0.2.3": + resolution: + { + integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==, + } + + "@blooo/hw-app-acre@1.0.1": + resolution: + { + integrity: sha512-lLwG2abLFks6B8rHatIfj8rOSajzjCQlT6Wa4zoZnlxWqv8o3oIZ/kQzO3Mf3CgY2i3kMk3DqNKd7yBtXyfnEg==, + } + + "@braintree/sanitize-url@6.0.4": + resolution: + { + integrity: sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==, + } + + "@braze/react-native-sdk@8.4.0": + resolution: + { + integrity: sha512-ypXVQD9lzIkQVgxQQoAYNZK/log/nHpPzz53iIsFelAM2hbT6NkyEEjM3SO0kO3UcZWZZvVtdR96ueX6wQep9g==, + } + + "@braze/web-sdk@4.10.2": + resolution: + { + integrity: sha512-S5OtBpmHDeZZVG1WjCdJ1w/SjzhGGULPkNjJONnl4YqUKK85BrGxK3beWXutduT5uoUl1Vfq4c32wx/DRsVDBw==, + } + + "@bundled-es-modules/cookie@2.0.0": + resolution: + { + integrity: sha512-Or6YHg/kamKHpxULAdSqhGqnWFneIXu1NKvvfBBzKGwpVsYuFIQ5aBPHDnnoR3ghW1nvSkALd+EF9iMtY7Vjxw==, + } + + "@bundled-es-modules/statuses@1.0.1": + resolution: + { + integrity: sha512-yn7BklA5acgcBr+7w064fGV+SGIFySjCKpqjcWgBAIfrAkY+4GQTJJHQMeT3V/sgz23VTEVV8TtOmkvJAhFVfg==, + } + + "@bundled-es-modules/tough-cookie@0.1.6": + resolution: + { + integrity: sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==, + } + + "@cardano-foundation/ledgerjs-hw-app-cardano@7.1.2": + resolution: + { + integrity: sha512-bSR8MdKzotnf9WGO0BtDpTXsH4ObaQjCDSHA6MhJuAKoJEaLl7ASS4ctzqzGlKWoEvjdsgx+M8hJbWDLJ63TFw==, + } + + "@casperlabs/ts-results@3.3.5": + resolution: + { + integrity: sha512-ymSQqqb4mOSet592li02u1Gd28LoOFJUm6R3jkdNQ+nqsnbHvN+izBigtP4aYmNwh6gFyCwDgjYporEJgDT4eA==, + } + + "@celo/base@3.2.0": + resolution: + { + integrity: sha512-9wfZYiYv7dzt17a29fxU6sV7JssyXfpSQ9kPSpfOlsewPICXwfOMQ+25Jn6xZu20Vx9rmKebmLHiQyiuYEDOcQ==, + } + + "@celo/connect@3.2.0": + resolution: + { + integrity: sha512-iLOLo8d1OqNcX827/iCfWCeWaewUl0kyhL1xgyXrf//YaPU+ljKtruJmiLLrxkfdB/etWUdcryrbmuUhjHZmKg==, + } + engines: { node: ">=8.13.0" } deprecated: Versions less than 5.1 are deprecated and will no longer be able to submit transactions to celo in a future hardfork peerDependencies: web3: 1.3.6 - '@celo/contractkit@3.2.0': - resolution: {integrity: sha512-kt4ViBRMg7ezCPi2SdcrYdDorA1Meg/qk97/u4izEIthl9GM4QSRfhhHYsbXYm0NV/MZ2BkS0cCsQ/SHcILSaA==} - engines: {node: '>=8.13.0'} + "@celo/contractkit@3.2.0": + resolution: + { + integrity: sha512-kt4ViBRMg7ezCPi2SdcrYdDorA1Meg/qk97/u4izEIthl9GM4QSRfhhHYsbXYm0NV/MZ2BkS0cCsQ/SHcILSaA==, + } + engines: { node: ">=8.13.0" } deprecated: Versions less than 5.1 are deprecated and will no longer be able to submit transactions to celo in a future hardfork - '@celo/utils@3.2.0': - resolution: {integrity: sha512-Om1mTzwsdV6FVPvraafcJeRnzz7Xv/lyGmyZaoEZ9fErRadu9ZrOsuDQniYe+lD78DQ0NATxJL04WjhEKVkn+A==} - - '@celo/wallet-base@3.2.0': - resolution: {integrity: sha512-lwhesT2BkXIyPI/ox/QbVVCRtLzTAGO25M3TlWBfSCzkRAf/AiV41lzEf9J7A1ozDKXS9s7bj8odiRkMAcelyQ==} - engines: {node: '>=8.13.0'} + "@celo/utils@3.2.0": + resolution: + { + integrity: sha512-Om1mTzwsdV6FVPvraafcJeRnzz7Xv/lyGmyZaoEZ9fErRadu9ZrOsuDQniYe+lD78DQ0NATxJL04WjhEKVkn+A==, + } + + "@celo/wallet-base@3.2.0": + resolution: + { + integrity: sha512-lwhesT2BkXIyPI/ox/QbVVCRtLzTAGO25M3TlWBfSCzkRAf/AiV41lzEf9J7A1ozDKXS9s7bj8odiRkMAcelyQ==, + } + engines: { node: ">=8.13.0" } deprecated: Versions less than 5.1 are deprecated and will no longer be able to submit transactions to celo in a future hardfork - '@celo/wallet-ledger@3.2.0': - resolution: {integrity: sha512-z/C+QPnZKdrgYgWCBf++bw9wVXcTgUBooHouWQgdCeyX12RHRJ9WpNOi5v0wx5YyG+M7aNAWHphOklA3e+XBQg==} - engines: {node: '>=8.13.0'} - - '@celo/wallet-local@3.2.0': - resolution: {integrity: sha512-hR70gzNCDHgf/GskaaLtB7Jz4AqJEW0b+1jG1rsuAyaXLJomSRADGBwUUgMy1dKU87fcQ9h7Uh+AuRAP4/5COQ==} - engines: {node: '>=8.13.0'} - - '@celo/wallet-remote@3.2.0': - resolution: {integrity: sha512-ORT5PB1M5+wKg/LXcIy4hZ4X01qoMCYlKCH/5LuIMzMb/8IxsW7/9oPwdqutG7YaM9EJoNgOn1snkmAXPeE+hg==} - engines: {node: '>=8.13.0'} - - '@changesets/apply-release-plan@7.0.4': - resolution: {integrity: sha512-HLFwhKWayKinWAul0Vj+76jVx1Pc2v55MGPVjZ924Y/ROeSsBMFutv9heHmCUj48lJyRfOTJG5+ar+29FUky/A==} - - '@changesets/assemble-release-plan@6.0.3': - resolution: {integrity: sha512-bLNh9/Lgl1VwkjWZTq8JmRqH+hj7/Yzfz0jsQ/zJJ+FTmVqmqPj3szeKOri8O/hEM8JmHW019vh2gTO9iq5Cuw==} - - '@changesets/changelog-git@0.2.0': - resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} - - '@changesets/changelog-github@0.5.0': - resolution: {integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==} - - '@changesets/cli@2.27.7': - resolution: {integrity: sha512-6lr8JltiiXPIjDeYg4iM2MeePP6VN/JkmqBsVA5XRiy01hGS3y629LtSDvKcycj/w/5Eur1rEwby/MjcYS+e2A==} + "@celo/wallet-ledger@3.2.0": + resolution: + { + integrity: sha512-z/C+QPnZKdrgYgWCBf++bw9wVXcTgUBooHouWQgdCeyX12RHRJ9WpNOi5v0wx5YyG+M7aNAWHphOklA3e+XBQg==, + } + engines: { node: ">=8.13.0" } + + "@celo/wallet-local@3.2.0": + resolution: + { + integrity: sha512-hR70gzNCDHgf/GskaaLtB7Jz4AqJEW0b+1jG1rsuAyaXLJomSRADGBwUUgMy1dKU87fcQ9h7Uh+AuRAP4/5COQ==, + } + engines: { node: ">=8.13.0" } + + "@celo/wallet-remote@3.2.0": + resolution: + { + integrity: sha512-ORT5PB1M5+wKg/LXcIy4hZ4X01qoMCYlKCH/5LuIMzMb/8IxsW7/9oPwdqutG7YaM9EJoNgOn1snkmAXPeE+hg==, + } + engines: { node: ">=8.13.0" } + + "@changesets/apply-release-plan@7.0.4": + resolution: + { + integrity: sha512-HLFwhKWayKinWAul0Vj+76jVx1Pc2v55MGPVjZ924Y/ROeSsBMFutv9heHmCUj48lJyRfOTJG5+ar+29FUky/A==, + } + + "@changesets/assemble-release-plan@6.0.3": + resolution: + { + integrity: sha512-bLNh9/Lgl1VwkjWZTq8JmRqH+hj7/Yzfz0jsQ/zJJ+FTmVqmqPj3szeKOri8O/hEM8JmHW019vh2gTO9iq5Cuw==, + } + + "@changesets/changelog-git@0.2.0": + resolution: + { + integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==, + } + + "@changesets/changelog-github@0.5.0": + resolution: + { + integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==, + } + + "@changesets/cli@2.27.7": + resolution: + { + integrity: sha512-6lr8JltiiXPIjDeYg4iM2MeePP6VN/JkmqBsVA5XRiy01hGS3y629LtSDvKcycj/w/5Eur1rEwby/MjcYS+e2A==, + } hasBin: true - '@changesets/config@3.0.2': - resolution: {integrity: sha512-cdEhS4t8woKCX2M8AotcV2BOWnBp09sqICxKapgLHf9m5KdENpWjyrFNMjkLqGJtUys9U+w93OxWT0czorVDfw==} - - '@changesets/errors@0.2.0': - resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} - - '@changesets/get-dependents-graph@2.1.1': - resolution: {integrity: sha512-LRFjjvigBSzfnPU2n/AhFsuWR5DK++1x47aq6qZ8dzYsPtS/I5mNhIGAS68IAxh1xjO9BTtz55FwefhANZ+FCA==} - - '@changesets/get-github-info@0.6.0': - resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==} - - '@changesets/get-release-plan@4.0.3': - resolution: {integrity: sha512-6PLgvOIwTSdJPTtpdcr3sLtGatT+Jr22+cQwEBJBy6wP0rjB4yJ9lv583J9fVpn1bfQlBkDa8JxbS2g/n9lIyA==} - - '@changesets/get-version-range-type@0.4.0': - resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} - - '@changesets/git@3.0.0': - resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} - - '@changesets/logger@0.1.0': - resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} - - '@changesets/parse@0.4.0': - resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} - - '@changesets/pre@2.0.0': - resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} - - '@changesets/read@0.6.0': - resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} - - '@changesets/should-skip-package@0.1.0': - resolution: {integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==} - - '@changesets/types@4.1.0': - resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} - - '@changesets/types@6.0.0': - resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} - - '@changesets/write@0.3.1': - resolution: {integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==} - - '@codemirror/autocomplete@6.16.3': - resolution: {integrity: sha512-Vl/tIeRVVUCRDuOG48lttBasNQu8usGgXQawBXI7WJAiUDSFOfzflmEsZFZo48mAvAaa4FZ/4/yLLxFtdJaKYA==} - peerDependencies: - '@codemirror/state': ^6.0.0 - '@codemirror/view': ^6.0.0 - - '@codemirror/commands@6.6.0': - resolution: {integrity: sha512-qnY+b7j1UNcTS31Eenuc/5YJB6gQOzkUoNmJQc0rznwqSRpeaWWpjkWy2C/MPTcePpsKJEM26hXrOXl1+nceXg==} - - '@codemirror/lang-json@6.0.1': - resolution: {integrity: sha512-+T1flHdgpqDDlJZ2Lkil/rLiRy684WMLc74xUnjJH48GQdfJo/pudlTRreZmKwzP8/tGdKf83wlbAdOCzlJOGQ==} - - '@codemirror/language@6.10.2': - resolution: {integrity: sha512-kgbTYTo0Au6dCSc/TFy7fK3fpJmgHDv1sG1KNQKJXVi+xBTEeBPY/M30YXiU6mMXeH+YIDLsbrT4ZwNRdtF+SA==} - - '@codemirror/lint@6.8.1': - resolution: {integrity: sha512-IZ0Y7S4/bpaunwggW2jYqwLuHj0QtESf5xcROewY6+lDNwZ/NzvR4t+vpYgg9m7V8UXLPYqG+lu3DF470E5Oxg==} - - '@codemirror/search@6.5.6': - resolution: {integrity: sha512-rpMgcsh7o0GuCDUXKPvww+muLA1pDJaFrpq/CCHtpQJYz8xopu4D1hPcKRoDD0YlF8gZaqTNIRa4VRBWyhyy7Q==} - - '@codemirror/state@6.4.1': - resolution: {integrity: sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A==} - - '@codemirror/theme-one-dark@6.1.2': - resolution: {integrity: sha512-F+sH0X16j/qFLMAfbciKTxVOwkdAS336b7AXTKOZhy8BR3eH/RelsnLgLFINrpST63mmN2OuwUt0W2ndUgYwUA==} - - '@codemirror/view@6.28.2': - resolution: {integrity: sha512-A3DmyVfjgPsGIjiJqM/zvODUAPQdQl3ci0ghehYNnbt5x+o76xq+dL5+mMBuysDXnI3kapgOkoeJ0sbtL/3qPw==} - - '@colors/colors@1.5.0': - resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} - engines: {node: '>=0.1.90'} - - '@colors/colors@1.6.0': - resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==} - engines: {node: '>=0.1.90'} - - '@commitlint/cli@17.8.1': - resolution: {integrity: sha512-ay+WbzQesE0Rv4EQKfNbSMiJJ12KdKTDzIt0tcK4k11FdsWmtwP0Kp1NWMOUswfIWo6Eb7p7Ln721Nx9FLNBjg==} - engines: {node: '>=v14'} + "@changesets/config@3.0.2": + resolution: + { + integrity: sha512-cdEhS4t8woKCX2M8AotcV2BOWnBp09sqICxKapgLHf9m5KdENpWjyrFNMjkLqGJtUys9U+w93OxWT0czorVDfw==, + } + + "@changesets/errors@0.2.0": + resolution: + { + integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==, + } + + "@changesets/get-dependents-graph@2.1.1": + resolution: + { + integrity: sha512-LRFjjvigBSzfnPU2n/AhFsuWR5DK++1x47aq6qZ8dzYsPtS/I5mNhIGAS68IAxh1xjO9BTtz55FwefhANZ+FCA==, + } + + "@changesets/get-github-info@0.6.0": + resolution: + { + integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==, + } + + "@changesets/get-release-plan@4.0.3": + resolution: + { + integrity: sha512-6PLgvOIwTSdJPTtpdcr3sLtGatT+Jr22+cQwEBJBy6wP0rjB4yJ9lv583J9fVpn1bfQlBkDa8JxbS2g/n9lIyA==, + } + + "@changesets/get-version-range-type@0.4.0": + resolution: + { + integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==, + } + + "@changesets/git@3.0.0": + resolution: + { + integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==, + } + + "@changesets/logger@0.1.0": + resolution: + { + integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==, + } + + "@changesets/parse@0.4.0": + resolution: + { + integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==, + } + + "@changesets/pre@2.0.0": + resolution: + { + integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==, + } + + "@changesets/read@0.6.0": + resolution: + { + integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==, + } + + "@changesets/should-skip-package@0.1.0": + resolution: + { + integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==, + } + + "@changesets/types@4.1.0": + resolution: + { + integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==, + } + + "@changesets/types@6.0.0": + resolution: + { + integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==, + } + + "@changesets/write@0.3.1": + resolution: + { + integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==, + } + + "@codemirror/autocomplete@6.16.3": + resolution: + { + integrity: sha512-Vl/tIeRVVUCRDuOG48lttBasNQu8usGgXQawBXI7WJAiUDSFOfzflmEsZFZo48mAvAaa4FZ/4/yLLxFtdJaKYA==, + } + peerDependencies: + "@codemirror/state": ^6.0.0 + "@codemirror/view": ^6.0.0 + + "@codemirror/commands@6.6.0": + resolution: + { + integrity: sha512-qnY+b7j1UNcTS31Eenuc/5YJB6gQOzkUoNmJQc0rznwqSRpeaWWpjkWy2C/MPTcePpsKJEM26hXrOXl1+nceXg==, + } + + "@codemirror/lang-json@6.0.1": + resolution: + { + integrity: sha512-+T1flHdgpqDDlJZ2Lkil/rLiRy684WMLc74xUnjJH48GQdfJo/pudlTRreZmKwzP8/tGdKf83wlbAdOCzlJOGQ==, + } + + "@codemirror/language@6.10.2": + resolution: + { + integrity: sha512-kgbTYTo0Au6dCSc/TFy7fK3fpJmgHDv1sG1KNQKJXVi+xBTEeBPY/M30YXiU6mMXeH+YIDLsbrT4ZwNRdtF+SA==, + } + + "@codemirror/lint@6.8.1": + resolution: + { + integrity: sha512-IZ0Y7S4/bpaunwggW2jYqwLuHj0QtESf5xcROewY6+lDNwZ/NzvR4t+vpYgg9m7V8UXLPYqG+lu3DF470E5Oxg==, + } + + "@codemirror/search@6.5.6": + resolution: + { + integrity: sha512-rpMgcsh7o0GuCDUXKPvww+muLA1pDJaFrpq/CCHtpQJYz8xopu4D1hPcKRoDD0YlF8gZaqTNIRa4VRBWyhyy7Q==, + } + + "@codemirror/state@6.4.1": + resolution: + { + integrity: sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A==, + } + + "@codemirror/theme-one-dark@6.1.2": + resolution: + { + integrity: sha512-F+sH0X16j/qFLMAfbciKTxVOwkdAS336b7AXTKOZhy8BR3eH/RelsnLgLFINrpST63mmN2OuwUt0W2ndUgYwUA==, + } + + "@codemirror/view@6.28.2": + resolution: + { + integrity: sha512-A3DmyVfjgPsGIjiJqM/zvODUAPQdQl3ci0ghehYNnbt5x+o76xq+dL5+mMBuysDXnI3kapgOkoeJ0sbtL/3qPw==, + } + + "@colors/colors@1.5.0": + resolution: + { + integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==, + } + engines: { node: ">=0.1.90" } + + "@colors/colors@1.6.0": + resolution: + { + integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==, + } + engines: { node: ">=0.1.90" } + + "@commitlint/cli@17.8.1": + resolution: + { + integrity: sha512-ay+WbzQesE0Rv4EQKfNbSMiJJ12KdKTDzIt0tcK4k11FdsWmtwP0Kp1NWMOUswfIWo6Eb7p7Ln721Nx9FLNBjg==, + } + engines: { node: ">=v14" } hasBin: true - '@commitlint/config-conventional@17.8.1': - resolution: {integrity: sha512-NxCOHx1kgneig3VLauWJcDWS40DVjg7nKOpBEEK9E5fjJpQqLCilcnKkIIjdBH98kEO1q3NpE5NSrZ2kl/QGJg==} - engines: {node: '>=v14'} - - '@commitlint/config-validator@17.8.1': - resolution: {integrity: sha512-UUgUC+sNiiMwkyiuIFR7JG2cfd9t/7MV8VB4TZ+q02ZFkHoduUS4tJGsCBWvBOGD9Btev6IecPMvlWUfJorkEA==} - engines: {node: '>=v14'} - - '@commitlint/ensure@17.8.1': - resolution: {integrity: sha512-xjafwKxid8s1K23NFpL8JNo6JnY/ysetKo8kegVM7c8vs+kWLP8VrQq+NbhgVlmCojhEDbzQKp4eRXSjVOGsow==} - engines: {node: '>=v14'} - - '@commitlint/execute-rule@17.8.1': - resolution: {integrity: sha512-JHVupQeSdNI6xzA9SqMF+p/JjrHTcrJdI02PwesQIDCIGUrv04hicJgCcws5nzaoZbROapPs0s6zeVHoxpMwFQ==} - engines: {node: '>=v14'} - - '@commitlint/format@17.8.1': - resolution: {integrity: sha512-f3oMTyZ84M9ht7fb93wbCKmWxO5/kKSbwuYvS867duVomoOsgrgljkGGIztmT/srZnaiGbaK8+Wf8Ik2tSr5eg==} - engines: {node: '>=v14'} - - '@commitlint/is-ignored@17.8.1': - resolution: {integrity: sha512-UshMi4Ltb4ZlNn4F7WtSEugFDZmctzFpmbqvpyxD3la510J+PLcnyhf9chs7EryaRFJMdAKwsEKfNK0jL/QM4g==} - engines: {node: '>=v14'} - - '@commitlint/lint@17.8.1': - resolution: {integrity: sha512-aQUlwIR1/VMv2D4GXSk7PfL5hIaFSfy6hSHV94O8Y27T5q+DlDEgd/cZ4KmVI+MWKzFfCTiTuWqjfRSfdRllCA==} - engines: {node: '>=v14'} - - '@commitlint/load@17.8.1': - resolution: {integrity: sha512-iF4CL7KDFstP1kpVUkT8K2Wl17h2yx9VaR1ztTc8vzByWWcbO/WaKwxsnCOqow9tVAlzPfo1ywk9m2oJ9ucMqA==} - engines: {node: '>=v14'} - - '@commitlint/message@17.8.1': - resolution: {integrity: sha512-6bYL1GUQsD6bLhTH3QQty8pVFoETfFQlMn2Nzmz3AOLqRVfNNtXBaSY0dhZ0dM6A2MEq4+2d7L/2LP8TjqGRkA==} - engines: {node: '>=v14'} - - '@commitlint/parse@17.8.1': - resolution: {integrity: sha512-/wLUickTo0rNpQgWwLPavTm7WbwkZoBy3X8PpkUmlSmQJyWQTj0m6bDjiykMaDt41qcUbfeFfaCvXfiR4EGnfw==} - engines: {node: '>=v14'} - - '@commitlint/prompt-cli@17.8.1': - resolution: {integrity: sha512-dkjxr0ah2R9P/vsz/s128kNEar/5zjr3TN3LOvA8kBiSrrbfF560gnoxAh+KgQ5sAc8lMrG+z4dVYvzSkXyfDQ==} - engines: {node: '>=v14'} + "@commitlint/config-conventional@17.8.1": + resolution: + { + integrity: sha512-NxCOHx1kgneig3VLauWJcDWS40DVjg7nKOpBEEK9E5fjJpQqLCilcnKkIIjdBH98kEO1q3NpE5NSrZ2kl/QGJg==, + } + engines: { node: ">=v14" } + + "@commitlint/config-validator@17.8.1": + resolution: + { + integrity: sha512-UUgUC+sNiiMwkyiuIFR7JG2cfd9t/7MV8VB4TZ+q02ZFkHoduUS4tJGsCBWvBOGD9Btev6IecPMvlWUfJorkEA==, + } + engines: { node: ">=v14" } + + "@commitlint/ensure@17.8.1": + resolution: + { + integrity: sha512-xjafwKxid8s1K23NFpL8JNo6JnY/ysetKo8kegVM7c8vs+kWLP8VrQq+NbhgVlmCojhEDbzQKp4eRXSjVOGsow==, + } + engines: { node: ">=v14" } + + "@commitlint/execute-rule@17.8.1": + resolution: + { + integrity: sha512-JHVupQeSdNI6xzA9SqMF+p/JjrHTcrJdI02PwesQIDCIGUrv04hicJgCcws5nzaoZbROapPs0s6zeVHoxpMwFQ==, + } + engines: { node: ">=v14" } + + "@commitlint/format@17.8.1": + resolution: + { + integrity: sha512-f3oMTyZ84M9ht7fb93wbCKmWxO5/kKSbwuYvS867duVomoOsgrgljkGGIztmT/srZnaiGbaK8+Wf8Ik2tSr5eg==, + } + engines: { node: ">=v14" } + + "@commitlint/is-ignored@17.8.1": + resolution: + { + integrity: sha512-UshMi4Ltb4ZlNn4F7WtSEugFDZmctzFpmbqvpyxD3la510J+PLcnyhf9chs7EryaRFJMdAKwsEKfNK0jL/QM4g==, + } + engines: { node: ">=v14" } + + "@commitlint/lint@17.8.1": + resolution: + { + integrity: sha512-aQUlwIR1/VMv2D4GXSk7PfL5hIaFSfy6hSHV94O8Y27T5q+DlDEgd/cZ4KmVI+MWKzFfCTiTuWqjfRSfdRllCA==, + } + engines: { node: ">=v14" } + + "@commitlint/load@17.8.1": + resolution: + { + integrity: sha512-iF4CL7KDFstP1kpVUkT8K2Wl17h2yx9VaR1ztTc8vzByWWcbO/WaKwxsnCOqow9tVAlzPfo1ywk9m2oJ9ucMqA==, + } + engines: { node: ">=v14" } + + "@commitlint/message@17.8.1": + resolution: + { + integrity: sha512-6bYL1GUQsD6bLhTH3QQty8pVFoETfFQlMn2Nzmz3AOLqRVfNNtXBaSY0dhZ0dM6A2MEq4+2d7L/2LP8TjqGRkA==, + } + engines: { node: ">=v14" } + + "@commitlint/parse@17.8.1": + resolution: + { + integrity: sha512-/wLUickTo0rNpQgWwLPavTm7WbwkZoBy3X8PpkUmlSmQJyWQTj0m6bDjiykMaDt41qcUbfeFfaCvXfiR4EGnfw==, + } + engines: { node: ">=v14" } + + "@commitlint/prompt-cli@17.8.1": + resolution: + { + integrity: sha512-dkjxr0ah2R9P/vsz/s128kNEar/5zjr3TN3LOvA8kBiSrrbfF560gnoxAh+KgQ5sAc8lMrG+z4dVYvzSkXyfDQ==, + } + engines: { node: ">=v14" } hasBin: true - '@commitlint/prompt@17.8.1': - resolution: {integrity: sha512-adK+6oaR/8SSSa/Lnp7KU+lu28j/jWfR2sX/5qRDFc2WTTMM59yJ+33k8FMHKZAZIU1FdyCGr11yP3btL6VdLA==} - engines: {node: '>=v14'} - - '@commitlint/read@17.8.1': - resolution: {integrity: sha512-Fd55Oaz9irzBESPCdMd8vWWgxsW3OWR99wOntBDHgf9h7Y6OOHjWEdS9Xzen1GFndqgyoaFplQS5y7KZe0kO2w==} - engines: {node: '>=v14'} - - '@commitlint/resolve-extends@17.8.1': - resolution: {integrity: sha512-W/ryRoQ0TSVXqJrx5SGkaYuAaE/BUontL1j1HsKckvM6e5ZaG0M9126zcwL6peKSuIetJi7E87PRQF8O86EW0Q==} - engines: {node: '>=v14'} - - '@commitlint/rules@17.8.1': - resolution: {integrity: sha512-2b7OdVbN7MTAt9U0vKOYKCDsOvESVXxQmrvuVUZ0rGFMCrCPJWWP1GJ7f0lAypbDAhaGb8zqtdOr47192LBrIA==} - engines: {node: '>=v14'} - - '@commitlint/to-lines@17.8.1': - resolution: {integrity: sha512-LE0jb8CuR/mj6xJyrIk8VLz03OEzXFgLdivBytoooKO5xLt5yalc8Ma5guTWobw998sbR3ogDd+2jed03CFmJA==} - engines: {node: '>=v14'} - - '@commitlint/top-level@17.8.1': - resolution: {integrity: sha512-l6+Z6rrNf5p333SHfEte6r+WkOxGlWK4bLuZKbtf/2TXRN+qhrvn1XE63VhD8Oe9oIHQ7F7W1nG2k/TJFhx2yA==} - engines: {node: '>=v14'} - - '@commitlint/types@17.8.1': - resolution: {integrity: sha512-PXDQXkAmiMEG162Bqdh9ChML/GJZo6vU+7F03ALKDK8zYc6SuAr47LjG7hGYRqUOz+WK0dU7bQ0xzuqFMdxzeQ==} - engines: {node: '>=v14'} - - '@confio/ics23@0.6.8': - resolution: {integrity: sha512-wB6uo+3A50m0sW/EWcU64xpV/8wShZ6bMTa7pF8eYsTrSkQA7oLUIJcs/wb8g4y2Oyq701BaGiO6n/ak5WXO1w==} - - '@cosmjs/amino@0.25.0-alpha.2': - resolution: {integrity: sha512-q8T4ORWB185SJ60bd/wXCEYG+65X3rMwzMZKpcbw43wBEPIYx104yqV62dR/BtlC+5IKDXPcP6kw/nTHo2QFWw==} - - '@cosmjs/amino@0.25.6': - resolution: {integrity: sha512-9dXN2W7LHjDtJUGNsQ9ok0DfxeN3ca/TXnxCR3Ikh/5YqBqxI8Gel1J9PQO9L6EheYyh045Wff4bsMaLjyEeqQ==} - - '@cosmjs/amino@0.26.8': - resolution: {integrity: sha512-cf25tg0X6FdqqLJ8gbvFJ5SRyz29oDVM21b1kVOspGzOEEs2J4bWjTBEnLK6g/BuQ5ODIfTV3JwDLIVU+eTsgw==} - - '@cosmjs/amino@0.31.3': - resolution: {integrity: sha512-36emtUq895sPRX8PTSOnG+lhJDCVyIcE0Tr5ct59sUbgQiI14y43vj/4WAlJ/utSOxy+Zhj9wxcs4AZfu0BHsw==} - - '@cosmjs/crypto@0.24.1': - resolution: {integrity: sha512-GPhaWmQO06mXldKj/b+oKF5o3jMNfRKpAw+Q8XQhrD7ItinVPDMu8Xgl6frUXWTUdgpYwqpvqOcpm85QUsYV0Q==} - - '@cosmjs/crypto@0.25.6': - resolution: {integrity: sha512-ec+YcQLrg2ibcxtNrh4FqQnG9kG9IE/Aik2NH6+OXQdFU/qFuBTxSFcKDgzzBOChwlkXwydllM9Jjbp+dgIzRw==} - - '@cosmjs/crypto@0.26.8': - resolution: {integrity: sha512-ykZWgRHuZjizQnIwG7mj6D0Jip406Z6VZLH9bs1RdNOugeX6kp/I3EYEsEO694bQPvggwNZqRT84ovqjsj2KwQ==} - - '@cosmjs/crypto@0.31.3': - resolution: {integrity: sha512-vRbvM9ZKR2017TO73dtJ50KxoGcFzKtKI7C8iO302BQ5p+DuB+AirUg1952UpSoLfv5ki9O416MFANNg8UN/EQ==} - - '@cosmjs/encoding@0.23.1': - resolution: {integrity: sha512-rP5O3vYo0k6W329J+u5uKqJNrhmR4QTngLgsDvP/qsRRBfEiirhk+TQC8gjUlgnzoiCKCtWsiOyFP1z9Me9HIw==} - - '@cosmjs/encoding@0.24.1': - resolution: {integrity: sha512-PMr+gaXAuM0XgjeXwB1zdX1QI0t+PgVhbmjgI/RSgswDzdExNH97qUopecL0/HG3p64vhIT/6ZjXYYTljZL7WA==} - - '@cosmjs/encoding@0.25.6': - resolution: {integrity: sha512-0imUOB8XkUstI216uznPaX1hqgvLQ2Xso3zJj5IV5oJuNlsfDj9nt/iQxXWbJuettc6gvrFfpf+Vw2vBZSZ75g==} - - '@cosmjs/encoding@0.26.8': - resolution: {integrity: sha512-rsqdeCHPmSXSjwE6pzbsx/drxIZKPiIxza4hYsGCaVsxrFZmgOFNmvWgtuIOIEXPS/ZoyST9XU9aMpkaYzLEVQ==} - - '@cosmjs/encoding@0.31.3': - resolution: {integrity: sha512-6IRtG0fiVYwyP7n+8e54uTx2pLYijO48V3t9TLiROERm5aUAIzIlz6Wp0NYaI5he9nh1lcEGJ1lkquVKFw3sUg==} - - '@cosmjs/json-rpc@0.25.6': - resolution: {integrity: sha512-Mn9og3/IEzC6jWoYXs0ONqFJc8HxVjXzrZPLgaRRdMZEUBvctxdhynau1wbE4LdkYQHbu4aiRu1q1jMYGFAj4A==} - - '@cosmjs/json-rpc@0.26.8': - resolution: {integrity: sha512-aTEP4kDhR3F04bYluRNOf9Hk8Eyz3L9p5P1EVJ1qhOCHaRZikSUQS9XNdZG3yryLbFTQS1b8MY9quBqrtU6UWQ==} - - '@cosmjs/launchpad@0.24.1': - resolution: {integrity: sha512-syqVGKRH6z1vw4DdAJOSu4OgUXJdkXQozqvDde0cXYwnvhb7EXGSg5CTtp+2GqTBJuNVfMZ2DSvrC2Ig8cWBQQ==} - - '@cosmjs/math@0.23.1': - resolution: {integrity: sha512-xjGGogFZXLdmRumE1Wr+GlPfKznIl5Qa6K6QyZr4IjBhfB6/ZzLUihliDJp2d8zbjBJgQt9RUwP/PaFQ/yGQNg==} - - '@cosmjs/math@0.24.1': - resolution: {integrity: sha512-eBQk8twgzmpHFCVkoNjTZhsZwWRbR+JXt0FhjXJoD85SBm4K8b2OnOyTg68uPHVKOJjLRwzyRVYgMrg5TBVgwQ==} - - '@cosmjs/math@0.25.6': - resolution: {integrity: sha512-Fmyc9FJ8KMU34n7rdapMJrT/8rx5WhMw2F7WLBu7AVLcBh0yWsXIcMSJCoPHTOnMIiABjXsnrrwEaLrOOBfu6A==} - - '@cosmjs/math@0.26.8': - resolution: {integrity: sha512-AfooIaqhOks5xPDc4kDEXje/90iPm2STu+0YWvDStEEib2xxPTtXU3OuK+KpJ3CCFfQwbKCrzEIzJWCYmTs7mw==} - - '@cosmjs/math@0.31.3': - resolution: {integrity: sha512-kZ2C6glA5HDb9hLz1WrftAjqdTBb3fWQsRR+Us2HsjAYdeE6M3VdXMsYCP5M3yiihal1WDwAY2U7HmfJw7Uh4A==} - - '@cosmjs/proto-signing@0.24.1': - resolution: {integrity: sha512-/rnyNx+FlG6b6O+igsb42eMN1/RXY+pTrNnAE8/YZaRloP9A6MXiTMO5JdYSTcjaD0mEVhejiy96bcyflKYXBg==} - - '@cosmjs/proto-signing@0.25.6': - resolution: {integrity: sha512-JpQ+Vnv9s6i3x8f3Jo0lJZ3VMnj3R5sMgX+8ti1LtB7qEYRR85qbDrEG9hDGIKqJJabvrAuCHnO6hYi0vJEJHA==} - - '@cosmjs/proto-signing@0.26.8': - resolution: {integrity: sha512-wgbOblUyv9qpMCoVCa0FDs28/OjA39is3/LgOZStBdVmtHEjsWGHIhqF8WR0rrjRGhio/e6sOLySU3fWMUVqag==} - - '@cosmjs/socket@0.25.6': - resolution: {integrity: sha512-hu+pW3Fy0IuhstXgxnZ2Iq0RUnGYoTWfqrxbTsgXBJge4MpEQs2YwGXgJZPMJXedBQivG0tU3r/Wvam0EWuRkQ==} - - '@cosmjs/socket@0.26.8': - resolution: {integrity: sha512-Yv+6aFyfnsrFiLzWPK7rABGajGIlNvlcxAeVWtKFMCVKXr0hYRe0DdzsLgW18tm4L7ezoJBQhXIJLYwpYuKZAw==} - - '@cosmjs/stargate@0.25.0-alpha.2': - resolution: {integrity: sha512-r6VT720EuF6yPwS1WGPPUAPUOfD5aVIRlVJNJHkePWGg4l+ztJtoUbr7QN1CoPrxvG3b+WflNug1EQ7dG44UsA==} - - '@cosmjs/stargate@0.26.8': - resolution: {integrity: sha512-/epKiDo1PTSJ6+Q3udxl1ZM14BvHVA445PSSGRnEHkFTeQqon9sjGhCw1eCCIIxvt2kYOM9Wpxei0+vuMVQdfg==} - - '@cosmjs/stream@0.25.6': - resolution: {integrity: sha512-2mXIzf+WaFd+GSrRaJJETVXeZoC5sosuKChFERxSY8zXQ/f3OaG9J6m+quHpPbU3nAIEtnF1jgBVqJiD+NKwGQ==} - - '@cosmjs/stream@0.26.8': - resolution: {integrity: sha512-MWfgjoe9l4292JJx7CYBgVkClQXJHvQcOYBLi9qjYCTixBL+OjmtCNs+XcjsL8tPCG+XkPh8tHagOghNIb3vWw==} - - '@cosmjs/tendermint-rpc@0.25.0-alpha.2': - resolution: {integrity: sha512-1xK8mPwFWiWnyGafZhAdwYfcYmXl1l7UxQRR3yI2Q3kDk7CQhT87mgeAd56jw9JOaZvLYKKTgCRZkLNiKjXNew==} - - '@cosmjs/tendermint-rpc@0.26.8': - resolution: {integrity: sha512-L1Zvc/bg/toB9iCu2VFlC//LNadOTmK+/LEw6HqYJ7pRbSH0vhr1GzV4hEjjp/8VgMm2D+XiZUPFIR+m2V4/dw==} - - '@cosmjs/utils@0.24.1': - resolution: {integrity: sha512-VA3WFx1lMFb7esp9BqHWkDgMvHoA3D9w+uDRvWhVRpUpDc7RYHxMbWExASjz+gNblTCg556WJGzF64tXnf9tdQ==} - - '@cosmjs/utils@0.25.0-alpha.2': - resolution: {integrity: sha512-ey+WKhnQ67L6JF1M3TLBRPXTDK8Az0uJ3m7UWWuT1p8z6K9kZfu+YiGmzJev64xuLP1kFaPJJLmBIpHH6HQ4hA==} - - '@cosmjs/utils@0.25.6': - resolution: {integrity: sha512-ofOYiuxVKNo238vCPPlaDzqPXy2AQ/5/nashBo5rvPZJkxt9LciGfUEQWPCOb1BIJDNx2Dzu0z4XCf/dwzl0Dg==} - - '@cosmjs/utils@0.26.8': - resolution: {integrity: sha512-fG7y9qUPkpCJFCK9m7qioffhACTgWNQTNpO1D7Q9AVr5V7LZJdaWRcnskSzPwAyjQkK3pkC5GuRNvNdn8kWzMg==} - - '@cosmjs/utils@0.31.3': - resolution: {integrity: sha512-VBhAgzrrYdIe0O5IbKRqwszbQa7ZyQLx9nEQuHQ3HUplQW7P44COG/ye2n6AzCudtqxmwdX7nyX8ta1J07GoqA==} - - '@craftamap/esbuild-plugin-html@0.6.1': - resolution: {integrity: sha512-FNOxFrdAozLgNbV1HZH2gVjLDax4hFxFfVH/qntvkMEkcBO2ZCIBjqlSmmmuLLi3/QyCJAaFnduBJ74jIw8zUg==} - engines: {node: '>13'} - peerDependencies: - esbuild: '>=0.15.10' - - '@crypto-org-chain/chain-jslib@1.1.2': - resolution: {integrity: sha512-30jHu5RbDtmy1uUcLf5Rf283HC0Kzs25CDGQkaT7dfd19Kl3S/DRcKtLI2wAiqahPmPIyz99B3uqRuSfw+6pKA==} - - '@cspotcode/source-map-support@0.8.1': - resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} - engines: {node: '>=12'} - peerDependencies: - source-map-support: '*' + "@commitlint/prompt@17.8.1": + resolution: + { + integrity: sha512-adK+6oaR/8SSSa/Lnp7KU+lu28j/jWfR2sX/5qRDFc2WTTMM59yJ+33k8FMHKZAZIU1FdyCGr11yP3btL6VdLA==, + } + engines: { node: ">=v14" } + + "@commitlint/read@17.8.1": + resolution: + { + integrity: sha512-Fd55Oaz9irzBESPCdMd8vWWgxsW3OWR99wOntBDHgf9h7Y6OOHjWEdS9Xzen1GFndqgyoaFplQS5y7KZe0kO2w==, + } + engines: { node: ">=v14" } + + "@commitlint/resolve-extends@17.8.1": + resolution: + { + integrity: sha512-W/ryRoQ0TSVXqJrx5SGkaYuAaE/BUontL1j1HsKckvM6e5ZaG0M9126zcwL6peKSuIetJi7E87PRQF8O86EW0Q==, + } + engines: { node: ">=v14" } + + "@commitlint/rules@17.8.1": + resolution: + { + integrity: sha512-2b7OdVbN7MTAt9U0vKOYKCDsOvESVXxQmrvuVUZ0rGFMCrCPJWWP1GJ7f0lAypbDAhaGb8zqtdOr47192LBrIA==, + } + engines: { node: ">=v14" } + + "@commitlint/to-lines@17.8.1": + resolution: + { + integrity: sha512-LE0jb8CuR/mj6xJyrIk8VLz03OEzXFgLdivBytoooKO5xLt5yalc8Ma5guTWobw998sbR3ogDd+2jed03CFmJA==, + } + engines: { node: ">=v14" } + + "@commitlint/top-level@17.8.1": + resolution: + { + integrity: sha512-l6+Z6rrNf5p333SHfEte6r+WkOxGlWK4bLuZKbtf/2TXRN+qhrvn1XE63VhD8Oe9oIHQ7F7W1nG2k/TJFhx2yA==, + } + engines: { node: ">=v14" } + + "@commitlint/types@17.8.1": + resolution: + { + integrity: sha512-PXDQXkAmiMEG162Bqdh9ChML/GJZo6vU+7F03ALKDK8zYc6SuAr47LjG7hGYRqUOz+WK0dU7bQ0xzuqFMdxzeQ==, + } + engines: { node: ">=v14" } + + "@confio/ics23@0.6.8": + resolution: + { + integrity: sha512-wB6uo+3A50m0sW/EWcU64xpV/8wShZ6bMTa7pF8eYsTrSkQA7oLUIJcs/wb8g4y2Oyq701BaGiO6n/ak5WXO1w==, + } + + "@cosmjs/amino@0.25.0-alpha.2": + resolution: + { + integrity: sha512-q8T4ORWB185SJ60bd/wXCEYG+65X3rMwzMZKpcbw43wBEPIYx104yqV62dR/BtlC+5IKDXPcP6kw/nTHo2QFWw==, + } + + "@cosmjs/amino@0.25.6": + resolution: + { + integrity: sha512-9dXN2W7LHjDtJUGNsQ9ok0DfxeN3ca/TXnxCR3Ikh/5YqBqxI8Gel1J9PQO9L6EheYyh045Wff4bsMaLjyEeqQ==, + } + + "@cosmjs/amino@0.26.8": + resolution: + { + integrity: sha512-cf25tg0X6FdqqLJ8gbvFJ5SRyz29oDVM21b1kVOspGzOEEs2J4bWjTBEnLK6g/BuQ5ODIfTV3JwDLIVU+eTsgw==, + } + + "@cosmjs/amino@0.31.3": + resolution: + { + integrity: sha512-36emtUq895sPRX8PTSOnG+lhJDCVyIcE0Tr5ct59sUbgQiI14y43vj/4WAlJ/utSOxy+Zhj9wxcs4AZfu0BHsw==, + } + + "@cosmjs/crypto@0.24.1": + resolution: + { + integrity: sha512-GPhaWmQO06mXldKj/b+oKF5o3jMNfRKpAw+Q8XQhrD7ItinVPDMu8Xgl6frUXWTUdgpYwqpvqOcpm85QUsYV0Q==, + } + + "@cosmjs/crypto@0.25.6": + resolution: + { + integrity: sha512-ec+YcQLrg2ibcxtNrh4FqQnG9kG9IE/Aik2NH6+OXQdFU/qFuBTxSFcKDgzzBOChwlkXwydllM9Jjbp+dgIzRw==, + } + + "@cosmjs/crypto@0.26.8": + resolution: + { + integrity: sha512-ykZWgRHuZjizQnIwG7mj6D0Jip406Z6VZLH9bs1RdNOugeX6kp/I3EYEsEO694bQPvggwNZqRT84ovqjsj2KwQ==, + } + + "@cosmjs/crypto@0.31.3": + resolution: + { + integrity: sha512-vRbvM9ZKR2017TO73dtJ50KxoGcFzKtKI7C8iO302BQ5p+DuB+AirUg1952UpSoLfv5ki9O416MFANNg8UN/EQ==, + } + + "@cosmjs/encoding@0.23.1": + resolution: + { + integrity: sha512-rP5O3vYo0k6W329J+u5uKqJNrhmR4QTngLgsDvP/qsRRBfEiirhk+TQC8gjUlgnzoiCKCtWsiOyFP1z9Me9HIw==, + } + + "@cosmjs/encoding@0.24.1": + resolution: + { + integrity: sha512-PMr+gaXAuM0XgjeXwB1zdX1QI0t+PgVhbmjgI/RSgswDzdExNH97qUopecL0/HG3p64vhIT/6ZjXYYTljZL7WA==, + } + + "@cosmjs/encoding@0.25.6": + resolution: + { + integrity: sha512-0imUOB8XkUstI216uznPaX1hqgvLQ2Xso3zJj5IV5oJuNlsfDj9nt/iQxXWbJuettc6gvrFfpf+Vw2vBZSZ75g==, + } + + "@cosmjs/encoding@0.26.8": + resolution: + { + integrity: sha512-rsqdeCHPmSXSjwE6pzbsx/drxIZKPiIxza4hYsGCaVsxrFZmgOFNmvWgtuIOIEXPS/ZoyST9XU9aMpkaYzLEVQ==, + } + + "@cosmjs/encoding@0.31.3": + resolution: + { + integrity: sha512-6IRtG0fiVYwyP7n+8e54uTx2pLYijO48V3t9TLiROERm5aUAIzIlz6Wp0NYaI5he9nh1lcEGJ1lkquVKFw3sUg==, + } + + "@cosmjs/json-rpc@0.25.6": + resolution: + { + integrity: sha512-Mn9og3/IEzC6jWoYXs0ONqFJc8HxVjXzrZPLgaRRdMZEUBvctxdhynau1wbE4LdkYQHbu4aiRu1q1jMYGFAj4A==, + } + + "@cosmjs/json-rpc@0.26.8": + resolution: + { + integrity: sha512-aTEP4kDhR3F04bYluRNOf9Hk8Eyz3L9p5P1EVJ1qhOCHaRZikSUQS9XNdZG3yryLbFTQS1b8MY9quBqrtU6UWQ==, + } + + "@cosmjs/launchpad@0.24.1": + resolution: + { + integrity: sha512-syqVGKRH6z1vw4DdAJOSu4OgUXJdkXQozqvDde0cXYwnvhb7EXGSg5CTtp+2GqTBJuNVfMZ2DSvrC2Ig8cWBQQ==, + } + + "@cosmjs/math@0.23.1": + resolution: + { + integrity: sha512-xjGGogFZXLdmRumE1Wr+GlPfKznIl5Qa6K6QyZr4IjBhfB6/ZzLUihliDJp2d8zbjBJgQt9RUwP/PaFQ/yGQNg==, + } + + "@cosmjs/math@0.24.1": + resolution: + { + integrity: sha512-eBQk8twgzmpHFCVkoNjTZhsZwWRbR+JXt0FhjXJoD85SBm4K8b2OnOyTg68uPHVKOJjLRwzyRVYgMrg5TBVgwQ==, + } + + "@cosmjs/math@0.25.6": + resolution: + { + integrity: sha512-Fmyc9FJ8KMU34n7rdapMJrT/8rx5WhMw2F7WLBu7AVLcBh0yWsXIcMSJCoPHTOnMIiABjXsnrrwEaLrOOBfu6A==, + } + + "@cosmjs/math@0.26.8": + resolution: + { + integrity: sha512-AfooIaqhOks5xPDc4kDEXje/90iPm2STu+0YWvDStEEib2xxPTtXU3OuK+KpJ3CCFfQwbKCrzEIzJWCYmTs7mw==, + } + + "@cosmjs/math@0.31.3": + resolution: + { + integrity: sha512-kZ2C6glA5HDb9hLz1WrftAjqdTBb3fWQsRR+Us2HsjAYdeE6M3VdXMsYCP5M3yiihal1WDwAY2U7HmfJw7Uh4A==, + } + + "@cosmjs/proto-signing@0.24.1": + resolution: + { + integrity: sha512-/rnyNx+FlG6b6O+igsb42eMN1/RXY+pTrNnAE8/YZaRloP9A6MXiTMO5JdYSTcjaD0mEVhejiy96bcyflKYXBg==, + } + + "@cosmjs/proto-signing@0.25.6": + resolution: + { + integrity: sha512-JpQ+Vnv9s6i3x8f3Jo0lJZ3VMnj3R5sMgX+8ti1LtB7qEYRR85qbDrEG9hDGIKqJJabvrAuCHnO6hYi0vJEJHA==, + } + + "@cosmjs/proto-signing@0.26.8": + resolution: + { + integrity: sha512-wgbOblUyv9qpMCoVCa0FDs28/OjA39is3/LgOZStBdVmtHEjsWGHIhqF8WR0rrjRGhio/e6sOLySU3fWMUVqag==, + } + + "@cosmjs/socket@0.25.6": + resolution: + { + integrity: sha512-hu+pW3Fy0IuhstXgxnZ2Iq0RUnGYoTWfqrxbTsgXBJge4MpEQs2YwGXgJZPMJXedBQivG0tU3r/Wvam0EWuRkQ==, + } + + "@cosmjs/socket@0.26.8": + resolution: + { + integrity: sha512-Yv+6aFyfnsrFiLzWPK7rABGajGIlNvlcxAeVWtKFMCVKXr0hYRe0DdzsLgW18tm4L7ezoJBQhXIJLYwpYuKZAw==, + } + + "@cosmjs/stargate@0.25.0-alpha.2": + resolution: + { + integrity: sha512-r6VT720EuF6yPwS1WGPPUAPUOfD5aVIRlVJNJHkePWGg4l+ztJtoUbr7QN1CoPrxvG3b+WflNug1EQ7dG44UsA==, + } + + "@cosmjs/stargate@0.26.8": + resolution: + { + integrity: sha512-/epKiDo1PTSJ6+Q3udxl1ZM14BvHVA445PSSGRnEHkFTeQqon9sjGhCw1eCCIIxvt2kYOM9Wpxei0+vuMVQdfg==, + } + + "@cosmjs/stream@0.25.6": + resolution: + { + integrity: sha512-2mXIzf+WaFd+GSrRaJJETVXeZoC5sosuKChFERxSY8zXQ/f3OaG9J6m+quHpPbU3nAIEtnF1jgBVqJiD+NKwGQ==, + } + + "@cosmjs/stream@0.26.8": + resolution: + { + integrity: sha512-MWfgjoe9l4292JJx7CYBgVkClQXJHvQcOYBLi9qjYCTixBL+OjmtCNs+XcjsL8tPCG+XkPh8tHagOghNIb3vWw==, + } + + "@cosmjs/tendermint-rpc@0.25.0-alpha.2": + resolution: + { + integrity: sha512-1xK8mPwFWiWnyGafZhAdwYfcYmXl1l7UxQRR3yI2Q3kDk7CQhT87mgeAd56jw9JOaZvLYKKTgCRZkLNiKjXNew==, + } + + "@cosmjs/tendermint-rpc@0.26.8": + resolution: + { + integrity: sha512-L1Zvc/bg/toB9iCu2VFlC//LNadOTmK+/LEw6HqYJ7pRbSH0vhr1GzV4hEjjp/8VgMm2D+XiZUPFIR+m2V4/dw==, + } + + "@cosmjs/utils@0.24.1": + resolution: + { + integrity: sha512-VA3WFx1lMFb7esp9BqHWkDgMvHoA3D9w+uDRvWhVRpUpDc7RYHxMbWExASjz+gNblTCg556WJGzF64tXnf9tdQ==, + } + + "@cosmjs/utils@0.25.0-alpha.2": + resolution: + { + integrity: sha512-ey+WKhnQ67L6JF1M3TLBRPXTDK8Az0uJ3m7UWWuT1p8z6K9kZfu+YiGmzJev64xuLP1kFaPJJLmBIpHH6HQ4hA==, + } + + "@cosmjs/utils@0.25.6": + resolution: + { + integrity: sha512-ofOYiuxVKNo238vCPPlaDzqPXy2AQ/5/nashBo5rvPZJkxt9LciGfUEQWPCOb1BIJDNx2Dzu0z4XCf/dwzl0Dg==, + } + + "@cosmjs/utils@0.26.8": + resolution: + { + integrity: sha512-fG7y9qUPkpCJFCK9m7qioffhACTgWNQTNpO1D7Q9AVr5V7LZJdaWRcnskSzPwAyjQkK3pkC5GuRNvNdn8kWzMg==, + } + + "@cosmjs/utils@0.31.3": + resolution: + { + integrity: sha512-VBhAgzrrYdIe0O5IbKRqwszbQa7ZyQLx9nEQuHQ3HUplQW7P44COG/ye2n6AzCudtqxmwdX7nyX8ta1J07GoqA==, + } + + "@craftamap/esbuild-plugin-html@0.6.1": + resolution: + { + integrity: sha512-FNOxFrdAozLgNbV1HZH2gVjLDax4hFxFfVH/qntvkMEkcBO2ZCIBjqlSmmmuLLi3/QyCJAaFnduBJ74jIw8zUg==, + } + engines: { node: ">13" } + peerDependencies: + esbuild: ">=0.15.10" + + "@crypto-org-chain/chain-jslib@1.1.2": + resolution: + { + integrity: sha512-30jHu5RbDtmy1uUcLf5Rf283HC0Kzs25CDGQkaT7dfd19Kl3S/DRcKtLI2wAiqahPmPIyz99B3uqRuSfw+6pKA==, + } + + "@cspotcode/source-map-support@0.8.1": + resolution: + { + integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==, + } + engines: { node: ">=12" } + peerDependencies: + source-map-support: "*" peerDependenciesMeta: source-map-support: optional: true - '@csstools/normalize.css@12.1.1': - resolution: {integrity: sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==} + "@csstools/normalize.css@12.1.1": + resolution: + { + integrity: sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==, + } - '@csstools/postcss-cascade-layers@1.1.1': - resolution: {integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==} - engines: {node: ^12 || ^14 || >=16} + "@csstools/postcss-cascade-layers@1.1.1": + resolution: + { + integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 - '@csstools/postcss-color-function@1.1.1': - resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} - engines: {node: ^12 || ^14 || >=16} + "@csstools/postcss-color-function@1.1.1": + resolution: + { + integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 - '@csstools/postcss-font-format-keywords@1.0.1': - resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} - engines: {node: ^12 || ^14 || >=16} + "@csstools/postcss-font-format-keywords@1.0.1": + resolution: + { + integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 - '@csstools/postcss-hwb-function@1.0.2': - resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} - engines: {node: ^12 || ^14 || >=16} + "@csstools/postcss-hwb-function@1.0.2": + resolution: + { + integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 - '@csstools/postcss-ic-unit@1.0.1': - resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} - engines: {node: ^12 || ^14 || >=16} + "@csstools/postcss-ic-unit@1.0.1": + resolution: + { + integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 - '@csstools/postcss-is-pseudo-class@2.0.7': - resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} - engines: {node: ^12 || ^14 || >=16} + "@csstools/postcss-is-pseudo-class@2.0.7": + resolution: + { + integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 - '@csstools/postcss-nested-calc@1.0.0': - resolution: {integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==} - engines: {node: ^12 || ^14 || >=16} + "@csstools/postcss-nested-calc@1.0.0": + resolution: + { + integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 - '@csstools/postcss-normalize-display-values@1.0.1': - resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} - engines: {node: ^12 || ^14 || >=16} + "@csstools/postcss-normalize-display-values@1.0.1": + resolution: + { + integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 - '@csstools/postcss-oklab-function@1.1.1': - resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} - engines: {node: ^12 || ^14 || >=16} + "@csstools/postcss-oklab-function@1.1.1": + resolution: + { + integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 - '@csstools/postcss-progressive-custom-properties@1.3.0': - resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==} - engines: {node: ^12 || ^14 || >=16} + "@csstools/postcss-progressive-custom-properties@1.3.0": + resolution: + { + integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.3 - '@csstools/postcss-stepped-value-functions@1.0.1': - resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} - engines: {node: ^12 || ^14 || >=16} + "@csstools/postcss-stepped-value-functions@1.0.1": + resolution: + { + integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 - '@csstools/postcss-text-decoration-shorthand@1.0.0': - resolution: {integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==} - engines: {node: ^12 || ^14 || >=16} + "@csstools/postcss-text-decoration-shorthand@1.0.0": + resolution: + { + integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 - '@csstools/postcss-trigonometric-functions@1.0.2': - resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==} - engines: {node: ^14 || >=16} + "@csstools/postcss-trigonometric-functions@1.0.2": + resolution: + { + integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==, + } + engines: { node: ^14 || >=16 } peerDependencies: postcss: ^8.2 - '@csstools/postcss-unset-value@1.0.2': - resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} - engines: {node: ^12 || ^14 || >=16} + "@csstools/postcss-unset-value@1.0.2": + resolution: + { + integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 - '@csstools/selector-specificity@2.2.0': - resolution: {integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==} - engines: {node: ^14 || ^16 || >=18} + "@csstools/selector-specificity@2.2.0": + resolution: + { + integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==, + } + engines: { node: ^14 || ^16 || >=18 } peerDependencies: postcss-selector-parser: ^6.0.10 - '@dabh/diagnostics@2.0.3': - resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==} - - '@develar/schema-utils@2.6.5': - resolution: {integrity: sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==} - engines: {node: '>= 8.9.0'} - - '@dfinity/agent@0.21.4': - resolution: {integrity: sha512-k5k8v1BmDE8RStC22FtuqbFzMLaQAQL3cE/wF45ZMKP4WmBBmCPss75RDgIVGiFwLGEKKKXE1muHQDy9g+m5yQ==} - peerDependencies: - '@dfinity/candid': ^0.21.4 - '@dfinity/principal': ^0.21.4 - - '@dfinity/candid@0.21.4': - resolution: {integrity: sha512-BRdgLQjPbqEZDRIR985jpy92uwhdBn4mN2D8StMKyOXQLmR6hKSD0p/P2b632Sh7zPUY8HuiA8njpMZ67JEyAg==} - peerDependencies: - '@dfinity/principal': ^0.21.4 - - '@dfinity/principal@0.15.7': - resolution: {integrity: sha512-6/AkYzpGEH6Jw/0+B/EeeQn+5u2GDDvRLt1kQPhIG4txQYFnOy04H3VvyrymmfAj6/CXUgrOrux6OxgYSLYVJg==} - - '@discoveryjs/json-ext@0.5.7': - resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} - engines: {node: '>=10.0.0'} - - '@egjs/hammerjs@2.0.17': - resolution: {integrity: sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==} - engines: {node: '>=0.8.0'} - - '@electron/asar@3.2.9': - resolution: {integrity: sha512-Vu2P3X2gcZ3MY9W7yH72X9+AMXwUQZEJBrsPIbX0JsdllLtoh62/Q8Wg370/DawIEVKOyfD6KtTLo645ezqxUA==} - engines: {node: '>=10.12.0'} + "@dabh/diagnostics@2.0.3": + resolution: + { + integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==, + } + + "@develar/schema-utils@2.6.5": + resolution: + { + integrity: sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==, + } + engines: { node: ">= 8.9.0" } + + "@dfinity/agent@0.21.4": + resolution: + { + integrity: sha512-k5k8v1BmDE8RStC22FtuqbFzMLaQAQL3cE/wF45ZMKP4WmBBmCPss75RDgIVGiFwLGEKKKXE1muHQDy9g+m5yQ==, + } + peerDependencies: + "@dfinity/candid": ^0.21.4 + "@dfinity/principal": ^0.21.4 + + "@dfinity/candid@0.21.4": + resolution: + { + integrity: sha512-BRdgLQjPbqEZDRIR985jpy92uwhdBn4mN2D8StMKyOXQLmR6hKSD0p/P2b632Sh7zPUY8HuiA8njpMZ67JEyAg==, + } + peerDependencies: + "@dfinity/principal": ^0.21.4 + + "@dfinity/principal@0.15.7": + resolution: + { + integrity: sha512-6/AkYzpGEH6Jw/0+B/EeeQn+5u2GDDvRLt1kQPhIG4txQYFnOy04H3VvyrymmfAj6/CXUgrOrux6OxgYSLYVJg==, + } + + "@discoveryjs/json-ext@0.5.7": + resolution: + { + integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==, + } + engines: { node: ">=10.0.0" } + + "@egjs/hammerjs@2.0.17": + resolution: + { + integrity: sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==, + } + engines: { node: ">=0.8.0" } + + "@electron/asar@3.2.9": + resolution: + { + integrity: sha512-Vu2P3X2gcZ3MY9W7yH72X9+AMXwUQZEJBrsPIbX0JsdllLtoh62/Q8Wg370/DawIEVKOyfD6KtTLo645ezqxUA==, + } + engines: { node: ">=10.12.0" } hasBin: true - '@electron/get@2.0.3': - resolution: {integrity: sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ==} - engines: {node: '>=12'} - - '@electron/notarize@2.2.1': - resolution: {integrity: sha512-aL+bFMIkpR0cmmj5Zgy0LMKEpgy43/hw5zadEArgmAMWWlKc5buwFvFT9G/o/YJkvXAJm5q3iuTuLaiaXW39sg==} - engines: {node: '>= 10.0.0'} - - '@electron/notarize@2.3.2': - resolution: {integrity: sha512-zfayxCe19euNwRycCty1C7lF7snk9YwfRpB5M8GLr1a4ICH63znxaPNAubrMvj0yDvVozqfgsdYpXVUnpWBDpg==} - engines: {node: '>= 10.0.0'} - - '@electron/osx-sign@1.0.5': - resolution: {integrity: sha512-k9ZzUQtamSoweGQDV2jILiRIHUu7lYlJ3c6IEmjv1hC17rclE+eb9U+f6UFlOOETo0JzY1HNlXy4YOlCvl+Lww==} - engines: {node: '>=12.0.0'} + "@electron/get@2.0.3": + resolution: + { + integrity: sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ==, + } + engines: { node: ">=12" } + + "@electron/notarize@2.2.1": + resolution: + { + integrity: sha512-aL+bFMIkpR0cmmj5Zgy0LMKEpgy43/hw5zadEArgmAMWWlKc5buwFvFT9G/o/YJkvXAJm5q3iuTuLaiaXW39sg==, + } + engines: { node: ">= 10.0.0" } + + "@electron/notarize@2.3.2": + resolution: + { + integrity: sha512-zfayxCe19euNwRycCty1C7lF7snk9YwfRpB5M8GLr1a4ICH63znxaPNAubrMvj0yDvVozqfgsdYpXVUnpWBDpg==, + } + engines: { node: ">= 10.0.0" } + + "@electron/osx-sign@1.0.5": + resolution: + { + integrity: sha512-k9ZzUQtamSoweGQDV2jILiRIHUu7lYlJ3c6IEmjv1hC17rclE+eb9U+f6UFlOOETo0JzY1HNlXy4YOlCvl+Lww==, + } + engines: { node: ">=12.0.0" } hasBin: true - '@electron/universal@1.5.1': - resolution: {integrity: sha512-kbgXxyEauPJiQQUNG2VgUeyfQNFk6hBF11ISN2PNI6agUgPl55pv4eQmaqHzTAzchBvqZ2tQuRVaPStGf0mxGw==} - engines: {node: '>=8.6'} - - '@elrondnetwork/erdjs-network-providers@1.2.0': - resolution: {integrity: sha512-ANh7tDaRohQos9WzZsZS/kyqatUqxY2NqncsKnWhDeSHqYv3RZiwcF3siKsBiWHYiP5hKqIACK1+Wsq3P0ocMg==} - deprecated: 'WARNING: This project has been moved to @multiversx/sdk-network-providers. Use @multiversx/sdk-network-providers instead.' - - '@elrondnetwork/erdjs@11.0.0': - resolution: {integrity: sha512-XUvWYcEsKp5NKf81Avz0m3yHvHRzkyyztWFH+M/XEDhsPAy7FyZAY0HCH8ri5JvDhDr45IaE3Nlh6oeXqlOc9A==} - deprecated: 'WARNING: This project has been moved to @multiversx/sdk-core. Use @multiversx/sdk-core instead.' - - '@elrondnetwork/transaction-decoder@1.0.0': - resolution: {integrity: sha512-FFUDXffwDNwo4V6Co+S9ur3OPYyAEzwgen7gh7LtQrG7SNPELFHjl+YssABXI8v1+SWmqcrSxervMggAiDDXkg==} - deprecated: 'WARNING: This project has been moved to @multiversx/sdk-transaction-decoder. Use @multiversx/sdk-transaction-decoder instead.' - - '@emotion/babel-plugin@11.11.0': - resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} - - '@emotion/cache@10.0.29': - resolution: {integrity: sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==} - - '@emotion/cache@11.11.0': - resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} - - '@emotion/core@10.3.1': - resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==} - peerDependencies: - react: '>=16.3.0' - - '@emotion/core@11.0.0': - resolution: {integrity: sha512-w4sE3AmHmyG6RDKf6mIbtHpgJUSJ2uGvPQb8VXFL7hFjMPibE8IiehG8cMX3Ztm4svfCQV6KqusQbeIOkurBcA==} - - '@emotion/css@10.0.27': - resolution: {integrity: sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==} - - '@emotion/hash@0.8.0': - resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} - - '@emotion/hash@0.9.1': - resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} - - '@emotion/is-prop-valid@1.2.1': - resolution: {integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==} - - '@emotion/is-prop-valid@1.2.2': - resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==} - - '@emotion/memoize@0.7.4': - resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} - - '@emotion/memoize@0.8.1': - resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} - - '@emotion/native@11.11.0': - resolution: {integrity: sha512-t1b5bLv+o5OUNLqXlnw+LJYU10OpmYkLC/1W873Y1ohG+vObx5TT3o3Eh1okXb2KCuZTTBPgsEnU/Sl7NNkJ9Q==} - peerDependencies: - react-native: '>=0.14.0 <1' - - '@emotion/primitives-core@11.11.0': - resolution: {integrity: sha512-cTVsAe7Y5E/RRoHnWDh6ZE3aPHOuuUDqIkSibJ+tz/wFZizkqg+VNcKvTLU6DFRMXH+NhNWdyhzldJ9PUY9/vA==} - peerDependencies: - '@emotion/react': ^11.0.0-rc.0 - react: '>=16.8.0' - - '@emotion/react@11.11.4': - resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==} - peerDependencies: - '@types/react': '*' - react: '>=16.8.0' + "@electron/universal@1.5.1": + resolution: + { + integrity: sha512-kbgXxyEauPJiQQUNG2VgUeyfQNFk6hBF11ISN2PNI6agUgPl55pv4eQmaqHzTAzchBvqZ2tQuRVaPStGf0mxGw==, + } + engines: { node: ">=8.6" } + + "@elrondnetwork/erdjs-network-providers@1.2.0": + resolution: + { + integrity: sha512-ANh7tDaRohQos9WzZsZS/kyqatUqxY2NqncsKnWhDeSHqYv3RZiwcF3siKsBiWHYiP5hKqIACK1+Wsq3P0ocMg==, + } + deprecated: "WARNING: This project has been moved to @multiversx/sdk-network-providers. Use @multiversx/sdk-network-providers instead." + + "@elrondnetwork/erdjs@11.0.0": + resolution: + { + integrity: sha512-XUvWYcEsKp5NKf81Avz0m3yHvHRzkyyztWFH+M/XEDhsPAy7FyZAY0HCH8ri5JvDhDr45IaE3Nlh6oeXqlOc9A==, + } + deprecated: "WARNING: This project has been moved to @multiversx/sdk-core. Use @multiversx/sdk-core instead." + + "@elrondnetwork/transaction-decoder@1.0.0": + resolution: + { + integrity: sha512-FFUDXffwDNwo4V6Co+S9ur3OPYyAEzwgen7gh7LtQrG7SNPELFHjl+YssABXI8v1+SWmqcrSxervMggAiDDXkg==, + } + deprecated: "WARNING: This project has been moved to @multiversx/sdk-transaction-decoder. Use @multiversx/sdk-transaction-decoder instead." + + "@emotion/babel-plugin@11.11.0": + resolution: + { + integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==, + } + + "@emotion/cache@10.0.29": + resolution: + { + integrity: sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==, + } + + "@emotion/cache@11.11.0": + resolution: + { + integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==, + } + + "@emotion/core@10.3.1": + resolution: + { + integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==, + } + peerDependencies: + react: ">=16.3.0" + + "@emotion/core@11.0.0": + resolution: + { + integrity: sha512-w4sE3AmHmyG6RDKf6mIbtHpgJUSJ2uGvPQb8VXFL7hFjMPibE8IiehG8cMX3Ztm4svfCQV6KqusQbeIOkurBcA==, + } + + "@emotion/css@10.0.27": + resolution: + { + integrity: sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==, + } + + "@emotion/hash@0.8.0": + resolution: + { + integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==, + } + + "@emotion/hash@0.9.1": + resolution: + { + integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==, + } + + "@emotion/is-prop-valid@1.2.1": + resolution: + { + integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==, + } + + "@emotion/is-prop-valid@1.2.2": + resolution: + { + integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==, + } + + "@emotion/memoize@0.7.4": + resolution: + { + integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==, + } + + "@emotion/memoize@0.8.1": + resolution: + { + integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==, + } + + "@emotion/native@11.11.0": + resolution: + { + integrity: sha512-t1b5bLv+o5OUNLqXlnw+LJYU10OpmYkLC/1W873Y1ohG+vObx5TT3o3Eh1okXb2KCuZTTBPgsEnU/Sl7NNkJ9Q==, + } + peerDependencies: + react-native: ">=0.14.0 <1" + + "@emotion/primitives-core@11.11.0": + resolution: + { + integrity: sha512-cTVsAe7Y5E/RRoHnWDh6ZE3aPHOuuUDqIkSibJ+tz/wFZizkqg+VNcKvTLU6DFRMXH+NhNWdyhzldJ9PUY9/vA==, + } + peerDependencies: + "@emotion/react": ^11.0.0-rc.0 + react: ">=16.8.0" + + "@emotion/react@11.11.4": + resolution: + { + integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==, + } + peerDependencies: + "@types/react": "*" + react: ">=16.8.0" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@emotion/serialize@0.11.16': - resolution: {integrity: sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==} - - '@emotion/serialize@1.1.3': - resolution: {integrity: sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==} - - '@emotion/sheet@0.9.4': - resolution: {integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==} - - '@emotion/sheet@1.2.2': - resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} - - '@emotion/stylis@0.8.5': - resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==} - - '@emotion/unitless@0.7.5': - resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==} - - '@emotion/unitless@0.8.0': - resolution: {integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==} - - '@emotion/unitless@0.8.1': - resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} - - '@emotion/use-insertion-effect-with-fallbacks@1.0.1': - resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} - peerDependencies: - react: '>=16.8.0' - - '@emotion/utils@0.11.3': - resolution: {integrity: sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==} - - '@emotion/utils@1.2.1': - resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} - - '@emotion/weak-memoize@0.2.5': - resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==} - - '@emotion/weak-memoize@0.3.1': - resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} - - '@esbuild/aix-ppc64@0.19.12': - resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==} - engines: {node: '>=12'} + "@emotion/serialize@0.11.16": + resolution: + { + integrity: sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==, + } + + "@emotion/serialize@1.1.3": + resolution: + { + integrity: sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==, + } + + "@emotion/sheet@0.9.4": + resolution: + { + integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==, + } + + "@emotion/sheet@1.2.2": + resolution: + { + integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==, + } + + "@emotion/stylis@0.8.5": + resolution: + { + integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==, + } + + "@emotion/unitless@0.7.5": + resolution: + { + integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==, + } + + "@emotion/unitless@0.8.0": + resolution: + { + integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==, + } + + "@emotion/unitless@0.8.1": + resolution: + { + integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==, + } + + "@emotion/use-insertion-effect-with-fallbacks@1.0.1": + resolution: + { + integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==, + } + peerDependencies: + react: ">=16.8.0" + + "@emotion/utils@0.11.3": + resolution: + { + integrity: sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==, + } + + "@emotion/utils@1.2.1": + resolution: + { + integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==, + } + + "@emotion/weak-memoize@0.2.5": + resolution: + { + integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==, + } + + "@emotion/weak-memoize@0.3.1": + resolution: + { + integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==, + } + + "@esbuild/aix-ppc64@0.19.12": + resolution: + { + integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==, + } + engines: { node: ">=12" } cpu: [ppc64] os: [aix] - '@esbuild/aix-ppc64@0.20.2': - resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==} - engines: {node: '>=12'} + "@esbuild/aix-ppc64@0.20.2": + resolution: + { + integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==, + } + engines: { node: ">=12" } cpu: [ppc64] os: [aix] - '@esbuild/android-arm64@0.18.20': - resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} - engines: {node: '>=12'} + "@esbuild/android-arm64@0.18.20": + resolution: + { + integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==, + } + engines: { node: ">=12" } cpu: [arm64] os: [android] - '@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.20.2': - resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==} - engines: {node: '>=12'} + "@esbuild/android-arm64@0.20.2": + resolution: + { + integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==, + } + engines: { node: ">=12" } cpu: [arm64] os: [android] - '@esbuild/android-arm@0.18.20': - resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} - engines: {node: '>=12'} + "@esbuild/android-arm@0.18.20": + resolution: + { + integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==, + } + engines: { node: ">=12" } cpu: [arm] 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.20.2': - resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==} - engines: {node: '>=12'} + "@esbuild/android-arm@0.20.2": + resolution: + { + integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==, + } + engines: { node: ">=12" } cpu: [arm] os: [android] - '@esbuild/android-x64@0.18.20': - resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} - engines: {node: '>=12'} + "@esbuild/android-x64@0.18.20": + resolution: + { + integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==, + } + engines: { node: ">=12" } cpu: [x64] 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.20.2': - resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==} - engines: {node: '>=12'} + "@esbuild/android-x64@0.20.2": + resolution: + { + integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==, + } + engines: { node: ">=12" } cpu: [x64] os: [android] - '@esbuild/darwin-arm64@0.18.20': - resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} - engines: {node: '>=12'} + "@esbuild/darwin-arm64@0.18.20": + resolution: + { + integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==, + } + engines: { node: ">=12" } cpu: [arm64] os: [darwin] - '@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.20.2': - resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==} - engines: {node: '>=12'} + "@esbuild/darwin-arm64@0.20.2": + resolution: + { + integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==, + } + engines: { node: ">=12" } cpu: [arm64] os: [darwin] - '@esbuild/darwin-x64@0.18.20': - resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} - engines: {node: '>=12'} + "@esbuild/darwin-x64@0.18.20": + resolution: + { + integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==, + } + engines: { node: ">=12" } cpu: [x64] 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.20.2': - resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==} - engines: {node: '>=12'} + "@esbuild/darwin-x64@0.20.2": + resolution: + { + integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==, + } + engines: { node: ">=12" } cpu: [x64] os: [darwin] - '@esbuild/freebsd-arm64@0.18.20': - resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} - engines: {node: '>=12'} + "@esbuild/freebsd-arm64@0.18.20": + resolution: + { + integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==, + } + engines: { node: ">=12" } cpu: [arm64] os: [freebsd] - '@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.20.2': - resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==} - engines: {node: '>=12'} + "@esbuild/freebsd-arm64@0.20.2": + resolution: + { + integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==, + } + engines: { node: ">=12" } cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-x64@0.18.20': - resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} - engines: {node: '>=12'} + "@esbuild/freebsd-x64@0.18.20": + resolution: + { + integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==, + } + engines: { node: ">=12" } cpu: [x64] 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.20.2': - resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==} - engines: {node: '>=12'} + "@esbuild/freebsd-x64@0.20.2": + resolution: + { + integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==, + } + engines: { node: ">=12" } cpu: [x64] os: [freebsd] - '@esbuild/linux-arm64@0.18.20': - resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} - engines: {node: '>=12'} + "@esbuild/linux-arm64@0.18.20": + resolution: + { + integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==, + } + engines: { node: ">=12" } cpu: [arm64] os: [linux] - '@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.20.2': - resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==} - engines: {node: '>=12'} + "@esbuild/linux-arm64@0.20.2": + resolution: + { + integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==, + } + engines: { node: ">=12" } cpu: [arm64] os: [linux] - '@esbuild/linux-arm@0.18.20': - resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} - engines: {node: '>=12'} + "@esbuild/linux-arm@0.18.20": + resolution: + { + integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==, + } + engines: { node: ">=12" } cpu: [arm] 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.20.2': - resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==} - engines: {node: '>=12'} + "@esbuild/linux-arm@0.20.2": + resolution: + { + integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==, + } + engines: { node: ">=12" } cpu: [arm] os: [linux] - '@esbuild/linux-ia32@0.18.20': - resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} - engines: {node: '>=12'} + "@esbuild/linux-ia32@0.18.20": + resolution: + { + integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==, + } + engines: { node: ">=12" } cpu: [ia32] 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.20.2': - resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==} - engines: {node: '>=12'} + "@esbuild/linux-ia32@0.20.2": + resolution: + { + integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==, + } + engines: { node: ">=12" } cpu: [ia32] os: [linux] - '@esbuild/linux-loong64@0.18.20': - resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} - engines: {node: '>=12'} + "@esbuild/linux-loong64@0.18.20": + resolution: + { + integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==, + } + engines: { node: ">=12" } cpu: [loong64] 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.20.2': - resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==} - engines: {node: '>=12'} + "@esbuild/linux-loong64@0.20.2": + resolution: + { + integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==, + } + engines: { node: ">=12" } cpu: [loong64] os: [linux] - '@esbuild/linux-mips64el@0.18.20': - resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} - engines: {node: '>=12'} + "@esbuild/linux-mips64el@0.18.20": + resolution: + { + integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==, + } + engines: { node: ">=12" } cpu: [mips64el] 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.20.2': - resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==} - engines: {node: '>=12'} + "@esbuild/linux-mips64el@0.20.2": + resolution: + { + integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==, + } + engines: { node: ">=12" } cpu: [mips64el] os: [linux] - '@esbuild/linux-ppc64@0.18.20': - resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} - engines: {node: '>=12'} + "@esbuild/linux-ppc64@0.18.20": + resolution: + { + integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==, + } + engines: { node: ">=12" } cpu: [ppc64] 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.20.2': - resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==} - engines: {node: '>=12'} + "@esbuild/linux-ppc64@0.20.2": + resolution: + { + integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==, + } + engines: { node: ">=12" } cpu: [ppc64] os: [linux] - '@esbuild/linux-riscv64@0.18.20': - resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} - engines: {node: '>=12'} + "@esbuild/linux-riscv64@0.18.20": + resolution: + { + integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==, + } + engines: { node: ">=12" } cpu: [riscv64] 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.20.2': - resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==} - engines: {node: '>=12'} + "@esbuild/linux-riscv64@0.20.2": + resolution: + { + integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==, + } + engines: { node: ">=12" } cpu: [riscv64] os: [linux] - '@esbuild/linux-s390x@0.18.20': - resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} - engines: {node: '>=12'} + "@esbuild/linux-s390x@0.18.20": + resolution: + { + integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==, + } + engines: { node: ">=12" } cpu: [s390x] 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.20.2': - resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==} - engines: {node: '>=12'} + "@esbuild/linux-s390x@0.20.2": + resolution: + { + integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==, + } + engines: { node: ">=12" } cpu: [s390x] os: [linux] - '@esbuild/linux-x64@0.18.20': - resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} - engines: {node: '>=12'} + "@esbuild/linux-x64@0.18.20": + resolution: + { + integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==, + } + engines: { node: ">=12" } cpu: [x64] 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.20.2': - resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==} - engines: {node: '>=12'} + "@esbuild/linux-x64@0.20.2": + resolution: + { + integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==, + } + engines: { node: ">=12" } cpu: [x64] os: [linux] - '@esbuild/netbsd-x64@0.18.20': - resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} - engines: {node: '>=12'} + "@esbuild/netbsd-x64@0.18.20": + resolution: + { + integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==, + } + engines: { node: ">=12" } cpu: [x64] 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.20.2': - resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==} - engines: {node: '>=12'} + "@esbuild/netbsd-x64@0.20.2": + resolution: + { + integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==, + } + engines: { node: ">=12" } cpu: [x64] os: [netbsd] - '@esbuild/openbsd-x64@0.18.20': - resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} - engines: {node: '>=12'} + "@esbuild/openbsd-x64@0.18.20": + resolution: + { + integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==, + } + engines: { node: ">=12" } cpu: [x64] 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.20.2': - resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==} - engines: {node: '>=12'} + "@esbuild/openbsd-x64@0.20.2": + resolution: + { + integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==, + } + engines: { node: ">=12" } cpu: [x64] os: [openbsd] - '@esbuild/sunos-x64@0.18.20': - resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} - engines: {node: '>=12'} + "@esbuild/sunos-x64@0.18.20": + resolution: + { + integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==, + } + engines: { node: ">=12" } cpu: [x64] os: [sunos] - '@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.20.2': - resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==} - engines: {node: '>=12'} + "@esbuild/sunos-x64@0.20.2": + resolution: + { + integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==, + } + engines: { node: ">=12" } cpu: [x64] os: [sunos] - '@esbuild/win32-arm64@0.18.20': - resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} - engines: {node: '>=12'} + "@esbuild/win32-arm64@0.18.20": + resolution: + { + integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==, + } + engines: { node: ">=12" } cpu: [arm64] os: [win32] - '@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.20.2': - resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==} - engines: {node: '>=12'} + "@esbuild/win32-arm64@0.20.2": + resolution: + { + integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==, + } + engines: { node: ">=12" } cpu: [arm64] os: [win32] - '@esbuild/win32-ia32@0.18.20': - resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} - engines: {node: '>=12'} + "@esbuild/win32-ia32@0.18.20": + resolution: + { + integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==, + } + engines: { node: ">=12" } cpu: [ia32] 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.20.2': - resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==} - engines: {node: '>=12'} + "@esbuild/win32-ia32@0.20.2": + resolution: + { + integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==, + } + engines: { node: ">=12" } cpu: [ia32] os: [win32] - '@esbuild/win32-x64@0.18.20': - resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} - engines: {node: '>=12'} + "@esbuild/win32-x64@0.18.20": + resolution: + { + integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==, + } + engines: { node: ">=12" } cpu: [x64] 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.20.2': - resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==} - engines: {node: '>=12'} + "@esbuild/win32-x64@0.20.2": + resolution: + { + integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==, + } + engines: { node: ">=12" } cpu: [x64] os: [win32] - '@eslint-community/eslint-utils@4.4.0': - resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + "@eslint-community/eslint-utils@4.4.0": + resolution: + { + integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==, + } + 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.10.0': - resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - - '@eslint/eslintrc@2.1.4': - resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@eslint/js@8.57.0': - resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@ethereumjs/common@2.6.5': - resolution: {integrity: sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA==} - - '@ethereumjs/tx@3.5.2': - resolution: {integrity: sha512-gQDNJWKrSDGu2w7w0PzVXVBNMzb7wwdDOmOqczmhNjqFxFuIbhVJDwiGEnxFNC2/b8ifcZzY7MLcluizohRzNw==} - - '@ethersproject/abi@5.0.7': - resolution: {integrity: sha512-Cqktk+hSIckwP/W8O47Eef60VwmoSC/L3lY0+dIBhQPCNn9E4V7rwmm2aFrNRRDJfFlGuZ1khkQUOc3oBX+niw==} - - '@ethersproject/abi@5.7.0': - resolution: {integrity: sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==} - - '@ethersproject/abstract-provider@5.7.0': - resolution: {integrity: sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==} - - '@ethersproject/abstract-signer@5.7.0': - resolution: {integrity: sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==} - - '@ethersproject/address@5.7.0': - resolution: {integrity: sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==} - - '@ethersproject/base64@5.7.0': - resolution: {integrity: sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==} - - '@ethersproject/basex@5.7.0': - resolution: {integrity: sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==} - - '@ethersproject/bignumber@5.7.0': - resolution: {integrity: sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==} - - '@ethersproject/bytes@5.7.0': - resolution: {integrity: sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==} - - '@ethersproject/constants@5.7.0': - resolution: {integrity: sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==} - - '@ethersproject/contracts@5.7.0': - resolution: {integrity: sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==} - - '@ethersproject/hash@5.7.0': - resolution: {integrity: sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==} - - '@ethersproject/hdnode@5.7.0': - resolution: {integrity: sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==} - - '@ethersproject/json-wallets@5.7.0': - resolution: {integrity: sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==} - - '@ethersproject/keccak256@5.7.0': - resolution: {integrity: sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==} - - '@ethersproject/logger@5.7.0': - resolution: {integrity: sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==} - - '@ethersproject/networks@5.7.1': - resolution: {integrity: sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==} - - '@ethersproject/pbkdf2@5.7.0': - resolution: {integrity: sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==} - - '@ethersproject/properties@5.7.0': - resolution: {integrity: sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==} - - '@ethersproject/providers@5.7.2': - resolution: {integrity: sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==} - - '@ethersproject/random@5.7.0': - resolution: {integrity: sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==} - - '@ethersproject/rlp@5.7.0': - resolution: {integrity: sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==} - - '@ethersproject/sha2@5.7.0': - resolution: {integrity: sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==} - - '@ethersproject/shims@5.7.0': - resolution: {integrity: sha512-WeDptc6oAprov5CCN2LJ/6/+dC9gTonnkdAtLepm/7P5Z+3PRxS5NpfVWmOMs1yE4Vitl2cU8bOPWC0GvGSbVg==} - - '@ethersproject/signing-key@5.7.0': - resolution: {integrity: sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==} - - '@ethersproject/solidity@5.7.0': - resolution: {integrity: sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==} - - '@ethersproject/strings@5.7.0': - resolution: {integrity: sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==} - - '@ethersproject/transactions@5.7.0': - resolution: {integrity: sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==} - - '@ethersproject/units@5.7.0': - resolution: {integrity: sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==} - - '@ethersproject/wallet@5.7.0': - resolution: {integrity: sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==} - - '@ethersproject/web@5.7.1': - resolution: {integrity: sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==} - - '@ethersproject/wordlists@5.7.0': - resolution: {integrity: sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==} - - '@expo/bunyan@4.0.0': - resolution: {integrity: sha512-Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA==} - engines: {'0': node >=0.10.0} - - '@expo/cli@0.10.17': - resolution: {integrity: sha512-HkHDvHPzq4M244hIerwnsw2IdjOo7RSsMYWGhc7ZY7DQWIMUC88b7f5+0RtD4JQfXQrgKS5Tvqm/5E6kAH0rIA==} + "@eslint-community/regexpp@4.10.0": + resolution: + { + integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==, + } + engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } + + "@eslint/eslintrc@2.1.4": + resolution: + { + integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + + "@eslint/js@8.57.0": + resolution: + { + integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + + "@ethereumjs/common@2.6.5": + resolution: + { + integrity: sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA==, + } + + "@ethereumjs/tx@3.5.2": + resolution: + { + integrity: sha512-gQDNJWKrSDGu2w7w0PzVXVBNMzb7wwdDOmOqczmhNjqFxFuIbhVJDwiGEnxFNC2/b8ifcZzY7MLcluizohRzNw==, + } + + "@ethersproject/abi@5.0.7": + resolution: + { + integrity: sha512-Cqktk+hSIckwP/W8O47Eef60VwmoSC/L3lY0+dIBhQPCNn9E4V7rwmm2aFrNRRDJfFlGuZ1khkQUOc3oBX+niw==, + } + + "@ethersproject/abi@5.7.0": + resolution: + { + integrity: sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==, + } + + "@ethersproject/abstract-provider@5.7.0": + resolution: + { + integrity: sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==, + } + + "@ethersproject/abstract-signer@5.7.0": + resolution: + { + integrity: sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==, + } + + "@ethersproject/address@5.7.0": + resolution: + { + integrity: sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==, + } + + "@ethersproject/base64@5.7.0": + resolution: + { + integrity: sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==, + } + + "@ethersproject/basex@5.7.0": + resolution: + { + integrity: sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==, + } + + "@ethersproject/bignumber@5.7.0": + resolution: + { + integrity: sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==, + } + + "@ethersproject/bytes@5.7.0": + resolution: + { + integrity: sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==, + } + + "@ethersproject/constants@5.7.0": + resolution: + { + integrity: sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==, + } + + "@ethersproject/contracts@5.7.0": + resolution: + { + integrity: sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==, + } + + "@ethersproject/hash@5.7.0": + resolution: + { + integrity: sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==, + } + + "@ethersproject/hdnode@5.7.0": + resolution: + { + integrity: sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==, + } + + "@ethersproject/json-wallets@5.7.0": + resolution: + { + integrity: sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==, + } + + "@ethersproject/keccak256@5.7.0": + resolution: + { + integrity: sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==, + } + + "@ethersproject/logger@5.7.0": + resolution: + { + integrity: sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==, + } + + "@ethersproject/networks@5.7.1": + resolution: + { + integrity: sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==, + } + + "@ethersproject/pbkdf2@5.7.0": + resolution: + { + integrity: sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==, + } + + "@ethersproject/properties@5.7.0": + resolution: + { + integrity: sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==, + } + + "@ethersproject/providers@5.7.2": + resolution: + { + integrity: sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==, + } + + "@ethersproject/random@5.7.0": + resolution: + { + integrity: sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==, + } + + "@ethersproject/rlp@5.7.0": + resolution: + { + integrity: sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==, + } + + "@ethersproject/sha2@5.7.0": + resolution: + { + integrity: sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==, + } + + "@ethersproject/shims@5.7.0": + resolution: + { + integrity: sha512-WeDptc6oAprov5CCN2LJ/6/+dC9gTonnkdAtLepm/7P5Z+3PRxS5NpfVWmOMs1yE4Vitl2cU8bOPWC0GvGSbVg==, + } + + "@ethersproject/signing-key@5.7.0": + resolution: + { + integrity: sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==, + } + + "@ethersproject/solidity@5.7.0": + resolution: + { + integrity: sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==, + } + + "@ethersproject/strings@5.7.0": + resolution: + { + integrity: sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==, + } + + "@ethersproject/transactions@5.7.0": + resolution: + { + integrity: sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==, + } + + "@ethersproject/units@5.7.0": + resolution: + { + integrity: sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==, + } + + "@ethersproject/wallet@5.7.0": + resolution: + { + integrity: sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==, + } + + "@ethersproject/web@5.7.1": + resolution: + { + integrity: sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==, + } + + "@ethersproject/wordlists@5.7.0": + resolution: + { + integrity: sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==, + } + + "@expo/bunyan@4.0.0": + resolution: + { + integrity: sha512-Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA==, + } + engines: { "0": node >=0.10.0 } + + "@expo/cli@0.10.17": + resolution: + { + integrity: sha512-HkHDvHPzq4M244hIerwnsw2IdjOo7RSsMYWGhc7ZY7DQWIMUC88b7f5+0RtD4JQfXQrgKS5Tvqm/5E6kAH0rIA==, + } hasBin: true peerDependencies: - '@expo/metro-config': '*' - glob: '*' - metro: '*' - metro-core: '*' - minimatch: '*' + "@expo/metro-config": "*" + glob: "*" + metro: "*" + metro-core: "*" + minimatch: "*" peerDependenciesMeta: - '@expo/metro-config': + "@expo/metro-config": optional: true glob: optional: true @@ -9813,860 +11415,1522 @@ packages: minimatch: optional: true - '@expo/cli@0.17.8': - resolution: {integrity: sha512-yfkoghCltbGPDbRI71Qu3puInjXx4wO82+uhW82qbWLvosfIN7ep5Gr0Lq54liJpvlUG6M0IXM1GiGqcCyP12w==} + "@expo/cli@0.18.30": + resolution: + { + integrity: sha512-V90TUJh9Ly8stYo8nwqIqNWCsYjE28GlVFWEhAFCUOp99foiQr8HSTpiiX5GIrprcPoWmlGoY+J5fQA29R4lFg==, + } hasBin: true peerDependencies: - metro: '*' - metro-core: '*' + metro: "*" + metro-core: "*" peerDependenciesMeta: metro: optional: true metro-core: optional: true - '@expo/code-signing-certificates@0.0.5': - resolution: {integrity: sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==} - - '@expo/config-plugins@4.1.5': - resolution: {integrity: sha512-RVvU40RtZt12HavuDAe+LDIq9lHj7sheOfMEHdmpJ/uTA8pgvkbc56XF6JHQD+yRr6+uhhb+JnAasGq49dsQbw==} - - '@expo/config-plugins@7.2.5': - resolution: {integrity: sha512-w+5ccu1IxBHgyQk9CPFKLZOk8yZQEyTjbJwOzESK1eR7QwosbcsLkN1c1WWUZYiCXwORu3UTwJYll4+X2xxJhQ==} - - '@expo/config-plugins@7.3.1': - resolution: {integrity: sha512-TkDtAP3P/rrjhr7GBQtyYH/l1SQUGAO/gByBCwHjfRa4RIPFs+iiq7hocytAl+oSmVsB28ipZCC3O1IPg1OZ7g==} - - '@expo/config-plugins@7.8.4': - resolution: {integrity: sha512-hv03HYxb/5kX8Gxv/BTI8TLc9L06WzqAfHRRXdbar4zkLcP2oTzvsLEF4/L/TIpD3rsnYa0KU42d0gWRxzPCJg==} - - '@expo/config-types@45.0.0': - resolution: {integrity: sha512-/QGhhLWyaGautgEyU50UJr5YqKJix5t77ePTwreOVAhmZH+ff3nrrtYTTnccx+qF08ZNQmfAyYMCD3rQfzpiJA==} - - '@expo/config-types@49.0.0': - resolution: {integrity: sha512-8eyREVi+K2acnMBe/rTIu1dOfyR2+AMnTLHlut+YpMV9OZPdeKV0Bs9BxAewGqBA2slslbQ9N39IS2CuTKpXkA==} - - '@expo/config-types@50.0.0': - resolution: {integrity: sha512-0kkhIwXRT6EdFDwn+zTg9R2MZIAEYGn1MVkyRohAd+C9cXOb5RA8WLQi7vuxKF9m1SMtNAUrf0pO+ENK0+/KSw==} - - '@expo/config@8.1.2': - resolution: {integrity: sha512-4e7hzPj50mQIlsrzOH6XZ36O094mPfPTIDIH4yv49bWNMc7GFLTofB/lcT+QyxiLaJuC0Wlk9yOLB8DIqmtwug==} - - '@expo/config@8.2.1': - resolution: {integrity: sha512-15XjV0WrSb5hChRM5pAEK5uyh55njfgFOEZpov3YKYBeMd9D6QT/azWWqnaFuuCWKzgzyxD9HaYgGo5VbnOU1g==} - - '@expo/config@8.5.4': - resolution: {integrity: sha512-ggOLJPHGzJSJHVBC1LzwXwR6qUn8Mw7hkc5zEKRIdhFRuIQ6s2FE4eOvP87LrNfDF7eZGa6tJQYsiHSmZKG+8Q==} - - '@expo/dev-server@0.5.5': - resolution: {integrity: sha512-t0fT8xH1exwYsH5hh7bAt85VF+gXxg24qrbny2rR/iKoPTWFCd2JNQV8pvfLg51hvrywQ3YCBuT3lU1w7aZxFA==} - - '@expo/devcert@1.1.0': - resolution: {integrity: sha512-ghUVhNJQOCTdQckSGTHctNp/0jzvVoMMkVh+6SHn+TZj8sU15U/npXIDt8NtQp0HedlPaCgkVdMu8Sacne0aEA==} - - '@expo/env@0.0.5': - resolution: {integrity: sha512-UXuKAqyXfhMQC3gP0OyjXmFX08Z1fkVWiGBN7bYzfoX8LHatjeHrDtI6w5nDvd8XPxPvmqaZoEDw1lW3+dz3oQ==} - - '@expo/env@0.2.2': - resolution: {integrity: sha512-m9nGuaSpzdvMzevQ1H60FWgf4PG5s4J0dfKUzdAGnDu7sMUerY/yUeDaA4+OBo3vBwGVQ+UHcQS9vPSMBNaPcg==} - - '@expo/fingerprint@0.6.0': - resolution: {integrity: sha512-KfpoVRTMwMNJ/Cf5o+Ou8M/Y0EGSTqK+rbi70M2Y0K2qgWNfMJ1gm6sYO9uc8lcTr7YSYM1Rme3dk7QXhpScNA==} + "@expo/code-signing-certificates@0.0.5": + resolution: + { + integrity: sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==, + } + + "@expo/config-plugins@4.1.5": + resolution: + { + integrity: sha512-RVvU40RtZt12HavuDAe+LDIq9lHj7sheOfMEHdmpJ/uTA8pgvkbc56XF6JHQD+yRr6+uhhb+JnAasGq49dsQbw==, + } + + "@expo/config-plugins@7.2.5": + resolution: + { + integrity: sha512-w+5ccu1IxBHgyQk9CPFKLZOk8yZQEyTjbJwOzESK1eR7QwosbcsLkN1c1WWUZYiCXwORu3UTwJYll4+X2xxJhQ==, + } + + "@expo/config-plugins@7.3.1": + resolution: + { + integrity: sha512-TkDtAP3P/rrjhr7GBQtyYH/l1SQUGAO/gByBCwHjfRa4RIPFs+iiq7hocytAl+oSmVsB28ipZCC3O1IPg1OZ7g==, + } + + "@expo/config-plugins@7.8.4": + resolution: + { + integrity: sha512-hv03HYxb/5kX8Gxv/BTI8TLc9L06WzqAfHRRXdbar4zkLcP2oTzvsLEF4/L/TIpD3rsnYa0KU42d0gWRxzPCJg==, + } + + "@expo/config-plugins@8.0.10": + resolution: + { + integrity: sha512-KG1fnSKRmsudPU9BWkl59PyE0byrE2HTnqbOrgwr2FAhqh7tfr9nRs6A9oLS/ntpGzmFxccTEcsV0L4apsuxxg==, + } + + "@expo/config-plugins@8.0.4": + resolution: + { + integrity: sha512-Hi+xuyNWE2LT4LVbGttHJgl9brnsdWAhEB42gWKb5+8ae86Nr/KwUBQJsJppirBYTeLjj5ZlY0glYnAkDa2jqw==, + } + + "@expo/config-types@45.0.0": + resolution: + { + integrity: sha512-/QGhhLWyaGautgEyU50UJr5YqKJix5t77ePTwreOVAhmZH+ff3nrrtYTTnccx+qF08ZNQmfAyYMCD3rQfzpiJA==, + } + + "@expo/config-types@49.0.0": + resolution: + { + integrity: sha512-8eyREVi+K2acnMBe/rTIu1dOfyR2+AMnTLHlut+YpMV9OZPdeKV0Bs9BxAewGqBA2slslbQ9N39IS2CuTKpXkA==, + } + + "@expo/config-types@50.0.0": + resolution: + { + integrity: sha512-0kkhIwXRT6EdFDwn+zTg9R2MZIAEYGn1MVkyRohAd+C9cXOb5RA8WLQi7vuxKF9m1SMtNAUrf0pO+ENK0+/KSw==, + } + + "@expo/config-types@51.0.3": + resolution: + { + integrity: sha512-hMfuq++b8VySb+m9uNNrlpbvGxYc8OcFCUX9yTmi9tlx6A4k8SDabWFBgmnr4ao3wEArvWrtUQIfQCVtPRdpKA==, + } + + "@expo/config@8.1.2": + resolution: + { + integrity: sha512-4e7hzPj50mQIlsrzOH6XZ36O094mPfPTIDIH4yv49bWNMc7GFLTofB/lcT+QyxiLaJuC0Wlk9yOLB8DIqmtwug==, + } + + "@expo/config@8.2.1": + resolution: + { + integrity: sha512-15XjV0WrSb5hChRM5pAEK5uyh55njfgFOEZpov3YKYBeMd9D6QT/azWWqnaFuuCWKzgzyxD9HaYgGo5VbnOU1g==, + } + + "@expo/config@9.0.1": + resolution: + { + integrity: sha512-0tjaXBstTbXmD4z+UMFBkh2SZFwilizSQhW6DlaTMnPG5ezuw93zSFEWAuEC3YzkpVtNQTmYzxAYjxwh6seOGg==, + } + + "@expo/config@9.0.4": + resolution: + { + integrity: sha512-g5ns5u1JSKudHYhjo1zaSfkJ/iZIcWmUmIQptMJZ6ag1C0ShL2sj8qdfU8MmAMuKLOgcIfSaiWlQnm4X3VJVkg==, + } + + "@expo/dev-server@0.5.5": + resolution: + { + integrity: sha512-t0fT8xH1exwYsH5hh7bAt85VF+gXxg24qrbny2rR/iKoPTWFCd2JNQV8pvfLg51hvrywQ3YCBuT3lU1w7aZxFA==, + } + + "@expo/devcert@1.1.0": + resolution: + { + integrity: sha512-ghUVhNJQOCTdQckSGTHctNp/0jzvVoMMkVh+6SHn+TZj8sU15U/npXIDt8NtQp0HedlPaCgkVdMu8Sacne0aEA==, + } + + "@expo/env@0.0.5": + resolution: + { + integrity: sha512-UXuKAqyXfhMQC3gP0OyjXmFX08Z1fkVWiGBN7bYzfoX8LHatjeHrDtI6w5nDvd8XPxPvmqaZoEDw1lW3+dz3oQ==, + } + + "@expo/env@0.3.0": + resolution: + { + integrity: sha512-OtB9XVHWaXidLbHvrVDeeXa09yvTl3+IQN884sO6PhIi2/StXfgSH/9zC7IvzrDB8kW3EBJ1PPLuCUJ2hxAT7Q==, + } + + "@expo/fingerprint@0.6.0": + resolution: + { + integrity: sha512-KfpoVRTMwMNJ/Cf5o+Ou8M/Y0EGSTqK+rbi70M2Y0K2qgWNfMJ1gm6sYO9uc8lcTr7YSYM1Rme3dk7QXhpScNA==, + } hasBin: true - '@expo/image-utils@0.3.22': - resolution: {integrity: sha512-uzq+RERAtkWypOFOLssFnXXqEqKjNj9eXN7e97d/EXUAojNcLDoXc0sL+F5B1I4qtlsnhX01kcpoIBBZD8wZNQ==} - - '@expo/image-utils@0.3.23': - resolution: {integrity: sha512-nhUVvW0TrRE4jtWzHQl8TR4ox7kcmrc2I0itaeJGjxF5A54uk7avgA0wRt7jP1rdvqQo1Ke1lXyLYREdhN9tPw==} - - '@expo/image-utils@0.4.1': - resolution: {integrity: sha512-EZb+VHSmw+a5s2hS9qksTcWylY0FDaIAVufcxoaRS9tHIXLjW5zcKW7Rhj9dSEbZbRVy9yXXdHKa3GQdUQIOFw==} - - '@expo/json-file@8.2.36': - resolution: {integrity: sha512-tOZfTiIFA5KmMpdW9KF7bc6CFiGjb0xnbieJhTGlHrLL+ps2G0OkqmuZ3pFEXBOMnJYUVpnSy++52LFxvpa5ZQ==} - - '@expo/json-file@8.2.37': - resolution: {integrity: sha512-YaH6rVg11JoTS2P6LsW7ybS2CULjf40AbnAHw2F1eDPuheprNjARZMnyHFPkKv7GuxCy+B9GPcbOKgc4cgA80Q==} - - '@expo/json-file@8.3.0': - resolution: {integrity: sha512-yROUeXJXR5goagB8c3muFLCzLmdGOvoPpR5yDNaXrnTp4euNykr9yW0wWhJx4YVRTNOPtGBnEbbJBW+a9q+S6g==} - - '@expo/metro-config@0.10.7': - resolution: {integrity: sha512-uACymEiyX0447hI4unt+2cemLQkTZXKvTev936NhtsgVnql45EP0V0pzmo/0H0WlHaAGXgvOBZJl8wFqcJ3CbQ==} - - '@expo/metro-config@0.17.6': - resolution: {integrity: sha512-WaC1C+sLX/Wa7irwUigLhng3ckmXIEQefZczB8DfYmleV6uhfWWo2kz/HijFBpV7FKs2cW6u8J/aBQpFkxlcqg==} - peerDependencies: - '@react-native/babel-preset': '*' - - '@expo/osascript@2.0.33': - resolution: {integrity: sha512-FQinlwHrTlJbntp8a7NAlCKedVXe06Va/0DSLXRO8lZVtgbEMrYYSUZWQNcOlNtc58c2elNph6z9dMOYwSo3JQ==} - engines: {node: '>=12'} - - '@expo/osascript@2.1.0': - resolution: {integrity: sha512-bOhuFnlRaS7CU33+rFFIWdcET/Vkyn1vsN8BYFwCDEF5P1fVVvYN7bFOsQLTMD3nvi35C1AGmtqUr/Wfv8Xaow==} - engines: {node: '>=12'} - - '@expo/package-manager@1.1.2': - resolution: {integrity: sha512-JI9XzrxB0QVXysyuJ996FPCJGDCYRkbUvgG4QmMTTMFA1T+mv8YzazC3T9C1pHQUAAveVCre1+Pqv0nZXN24Xg==} - - '@expo/package-manager@1.4.2': - resolution: {integrity: sha512-LKdo/6y4W7llZ6ghsg1kdx2CeH/qR/c6QI/JI8oPUvppsZoeIYjSkdflce978fAMfR8IXoi0wt0jA2w0kWpwbg==} - - '@expo/plist@0.0.18': - resolution: {integrity: sha512-+48gRqUiz65R21CZ/IXa7RNBXgAI/uPSdvJqoN9x1hfL44DNbUoWHgHiEXTx7XelcATpDwNTz6sHLfy0iNqf+w==} - - '@expo/plist@0.0.20': - resolution: {integrity: sha512-UXQ4LXCfTZ580LDHGJ5q62jSTwJFFJ1GqBu8duQMThiHKWbMJ+gajJh6rsB6EJ3aLUr9wcauxneL5LVRFxwBEA==} - - '@expo/plist@0.1.0': - resolution: {integrity: sha512-xWD+8vIFif0wKyuqe3fmnmnSouXYucciZXFzS0ZD5OV9eSAS1RGQI5FaGGJ6zxJ4mpdy/4QzbLdBjnYE5vxA0g==} - - '@expo/prebuild-config@6.2.6': - resolution: {integrity: sha512-uFVvDAm9dPg9p1qpnr4CVnpo2hmkZIL5FQz+VlIdXXJpe7ySh/qTGHtKWY/lWUshQkAJ0nwbKGPztGWdABns/Q==} - peerDependencies: - expo-modules-autolinking: '>=0.8.1' - - '@expo/prebuild-config@6.7.4': - resolution: {integrity: sha512-x8EUdCa8DTMZ/dtEXjHAdlP+ljf6oSeSKNzhycXiHhpMSMG9jEhV28ocCwc6cKsjK5GziweEiHwvrj6+vsBlhA==} - peerDependencies: - expo-modules-autolinking: '>=0.8.1' - - '@expo/rudder-sdk-node@1.1.1': - resolution: {integrity: sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==} - engines: {node: '>=12'} - - '@expo/sdk-runtime-versions@1.0.0': - resolution: {integrity: sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==} - - '@expo/spawn-async@1.5.0': - resolution: {integrity: sha512-LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew==} - engines: {node: '>=4'} - - '@expo/spawn-async@1.7.2': - resolution: {integrity: sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==} - engines: {node: '>=12'} - - '@expo/vector-icons@13.0.0': - resolution: {integrity: sha512-TI+l71+5aSKnShYclFa14Kum+hQMZ86b95SH6tQUG3qZEmLTarvWpKwqtTwQKqvlJSJrpFiSFu3eCuZokY6zWA==} - - '@expo/vector-icons@14.0.0': - resolution: {integrity: sha512-5orm59pdnBQlovhU9k4DbjMUZBHNlku7IRgFY56f7pcaaCnXq9yaLJoOQl9sMwNdFzf4gnkTyHmR5uN10mI9rA==} - - '@expo/webpack-config@18.1.4': - resolution: {integrity: sha512-lc2ZvlsxI6vDH4RHA4xnYzDl4Dir5HTiFpw8WE28kE8+33pma/DIIycv5bE/BZx+czV5NqM4103E2TvgKkccKA==} - engines: {node: '>=12'} + "@expo/image-utils@0.3.22": + resolution: + { + integrity: sha512-uzq+RERAtkWypOFOLssFnXXqEqKjNj9eXN7e97d/EXUAojNcLDoXc0sL+F5B1I4qtlsnhX01kcpoIBBZD8wZNQ==, + } + + "@expo/image-utils@0.3.23": + resolution: + { + integrity: sha512-nhUVvW0TrRE4jtWzHQl8TR4ox7kcmrc2I0itaeJGjxF5A54uk7avgA0wRt7jP1rdvqQo1Ke1lXyLYREdhN9tPw==, + } + + "@expo/image-utils@0.5.1": + resolution: + { + integrity: sha512-U/GsFfFox88lXULmFJ9Shfl2aQGcwoKPF7fawSCLixIKtMCpsI+1r0h+5i0nQnmt9tHuzXZDL8+Dg1z6OhkI9A==, + } + + "@expo/json-file@8.2.36": + resolution: + { + integrity: sha512-tOZfTiIFA5KmMpdW9KF7bc6CFiGjb0xnbieJhTGlHrLL+ps2G0OkqmuZ3pFEXBOMnJYUVpnSy++52LFxvpa5ZQ==, + } + + "@expo/json-file@8.2.37": + resolution: + { + integrity: sha512-YaH6rVg11JoTS2P6LsW7ybS2CULjf40AbnAHw2F1eDPuheprNjARZMnyHFPkKv7GuxCy+B9GPcbOKgc4cgA80Q==, + } + + "@expo/json-file@8.3.0": + resolution: + { + integrity: sha512-yROUeXJXR5goagB8c3muFLCzLmdGOvoPpR5yDNaXrnTp4euNykr9yW0wWhJx4YVRTNOPtGBnEbbJBW+a9q+S6g==, + } + + "@expo/metro-config@0.10.7": + resolution: + { + integrity: sha512-uACymEiyX0447hI4unt+2cemLQkTZXKvTev936NhtsgVnql45EP0V0pzmo/0H0WlHaAGXgvOBZJl8wFqcJ3CbQ==, + } + + "@expo/metro-config@0.18.11": + resolution: + { + integrity: sha512-/uOq55VbSf9yMbUO1BudkUM2SsGW1c5hr9BnhIqYqcsFv0Jp5D3DtJ4rljDKaUeNLbwr6m7pqIrkSMq5NrYf4Q==, + } + + "@expo/osascript@2.0.33": + resolution: + { + integrity: sha512-FQinlwHrTlJbntp8a7NAlCKedVXe06Va/0DSLXRO8lZVtgbEMrYYSUZWQNcOlNtc58c2elNph6z9dMOYwSo3JQ==, + } + engines: { node: ">=12" } + + "@expo/osascript@2.1.0": + resolution: + { + integrity: sha512-bOhuFnlRaS7CU33+rFFIWdcET/Vkyn1vsN8BYFwCDEF5P1fVVvYN7bFOsQLTMD3nvi35C1AGmtqUr/Wfv8Xaow==, + } + engines: { node: ">=12" } + + "@expo/package-manager@1.1.2": + resolution: + { + integrity: sha512-JI9XzrxB0QVXysyuJ996FPCJGDCYRkbUvgG4QmMTTMFA1T+mv8YzazC3T9C1pHQUAAveVCre1+Pqv0nZXN24Xg==, + } + + "@expo/package-manager@1.5.2": + resolution: + { + integrity: sha512-IuA9XtGBilce0q8cyxtWINqbzMB1Fia0Yrug/O53HNuRSwQguV/iqjV68bsa4z8mYerePhcFgtvISWLAlNEbUA==, + } + + "@expo/plist@0.0.18": + resolution: + { + integrity: sha512-+48gRqUiz65R21CZ/IXa7RNBXgAI/uPSdvJqoN9x1hfL44DNbUoWHgHiEXTx7XelcATpDwNTz6sHLfy0iNqf+w==, + } + + "@expo/plist@0.0.20": + resolution: + { + integrity: sha512-UXQ4LXCfTZ580LDHGJ5q62jSTwJFFJ1GqBu8duQMThiHKWbMJ+gajJh6rsB6EJ3aLUr9wcauxneL5LVRFxwBEA==, + } + + "@expo/plist@0.1.0": + resolution: + { + integrity: sha512-xWD+8vIFif0wKyuqe3fmnmnSouXYucciZXFzS0ZD5OV9eSAS1RGQI5FaGGJ6zxJ4mpdy/4QzbLdBjnYE5vxA0g==, + } + + "@expo/prebuild-config@6.2.6": + resolution: + { + integrity: sha512-uFVvDAm9dPg9p1qpnr4CVnpo2hmkZIL5FQz+VlIdXXJpe7ySh/qTGHtKWY/lWUshQkAJ0nwbKGPztGWdABns/Q==, + } + peerDependencies: + expo-modules-autolinking: ">=0.8.1" + + "@expo/prebuild-config@7.0.9": + resolution: + { + integrity: sha512-9i6Cg7jInpnGEHN0jxnW0P+0BexnePiBzmbUvzSbRXpdXihYUX2AKMu73jgzxn5P1hXOSkzNS7umaY+BZ+aBag==, + } + peerDependencies: + expo-modules-autolinking: ">=0.8.1" + + "@expo/rudder-sdk-node@1.1.1": + resolution: + { + integrity: sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==, + } + engines: { node: ">=12" } + + "@expo/sdk-runtime-versions@1.0.0": + resolution: + { + integrity: sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==, + } + + "@expo/spawn-async@1.5.0": + resolution: + { + integrity: sha512-LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew==, + } + engines: { node: ">=4" } + + "@expo/spawn-async@1.7.2": + resolution: + { + integrity: sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==, + } + engines: { node: ">=12" } + + "@expo/vector-icons@13.0.0": + resolution: + { + integrity: sha512-TI+l71+5aSKnShYclFa14Kum+hQMZ86b95SH6tQUG3qZEmLTarvWpKwqtTwQKqvlJSJrpFiSFu3eCuZokY6zWA==, + } + + "@expo/vector-icons@14.0.4": + resolution: + { + integrity: sha512-+yKshcbpDfbV4zoXOgHxCwh7lkE9VVTT5T03OUlBsqfze1PLy6Hi4jp1vSb1GVbY6eskvMIivGVc9SKzIv0oEQ==, + } + + "@expo/webpack-config@18.1.4": + resolution: + { + integrity: sha512-lc2ZvlsxI6vDH4RHA4xnYzDl4Dir5HTiFpw8WE28kE8+33pma/DIIycv5bE/BZx+czV5NqM4103E2TvgKkccKA==, + } + engines: { node: ">=12" } peerDependencies: expo: ^48.0.17 - '@expo/xcpretty@4.3.1': - resolution: {integrity: sha512-sqXgo1SCv+j4VtYEwl/bukuOIBrVgx6euIoCat3Iyx5oeoXwEA2USCoeL0IPubflMxncA2INkqJ/Wr3NGrSgzw==} + "@expo/xcpretty@4.3.1": + resolution: + { + integrity: sha512-sqXgo1SCv+j4VtYEwl/bukuOIBrVgx6euIoCat3Iyx5oeoXwEA2USCoeL0IPubflMxncA2INkqJ/Wr3NGrSgzw==, + } hasBin: true - '@faker-js/faker@8.4.1': - resolution: {integrity: sha512-XQ3cU+Q8Uqmrbf2e0cIC/QN43sTBSC8KF12u29Mb47tWrt2hAgBXSgpZMj4Ao8Uk0iJcU99QsOCaIL8934obCg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0, npm: '>=6.14.13'} - - '@fal-works/esbuild-plugin-global-externals@2.1.2': - resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} - - '@fastify/busboy@2.1.1': - resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==} - engines: {node: '>=14'} - - '@firebase/analytics-compat@0.2.6': - resolution: {integrity: sha512-4MqpVLFkGK7NJf/5wPEEP7ePBJatwYpyjgJ+wQHQGHfzaCDgntOnl9rL2vbVGGKCnRqWtZDIWhctB86UWXaX2Q==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/analytics-types@0.8.0': - resolution: {integrity: sha512-iRP+QKI2+oz3UAh4nPEq14CsEjrjD6a5+fuypjScisAh9kXKFvdJOZJDwk7kikLvWVLGEs9+kIUS4LPQV7VZVw==} - - '@firebase/analytics@0.10.0': - resolution: {integrity: sha512-Locv8gAqx0e+GX/0SI3dzmBY5e9kjVDtD+3zCFLJ0tH2hJwuCAiL+5WkHuxKj92rqQj/rvkBUCfA1ewlX2hehg==} - peerDependencies: - '@firebase/app': 0.x - - '@firebase/app-check-compat@0.3.7': - resolution: {integrity: sha512-cW682AxsyP1G+Z0/P7pO/WT2CzYlNxoNe5QejVarW2o5ZxeWSSPAiVEwpEpQR/bUlUmdeWThYTMvBWaopdBsqw==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/app-check-interop-types@0.3.0': - resolution: {integrity: sha512-xAxHPZPIgFXnI+vb4sbBjZcde7ZluzPPaSK7Lx3/nmuVk4TjZvnL8ONnkd4ERQKL8WePQySU+pRcWkh8rDf5Sg==} - - '@firebase/app-check-types@0.5.0': - resolution: {integrity: sha512-uwSUj32Mlubybw7tedRzR24RP8M8JUVR3NPiMk3/Z4bCmgEKTlQBwMXrehDAZ2wF+TsBq0SN1c6ema71U/JPyQ==} - - '@firebase/app-check@0.8.0': - resolution: {integrity: sha512-dRDnhkcaC2FspMiRK/Vbp+PfsOAEP6ZElGm9iGFJ9fDqHoPs0HOPn7dwpJ51lCFi1+2/7n5pRPGhqF/F03I97g==} - peerDependencies: - '@firebase/app': 0.x - - '@firebase/app-compat@0.2.13': - resolution: {integrity: sha512-j6ANZaWjeVy5zg6X7uiqh6lM6o3n3LD1+/SJFNs9V781xyryyZWXe+tmnWNWPkP086QfJoNkWN9pMQRqSG4vMg==} - - '@firebase/app-types@0.9.0': - resolution: {integrity: sha512-AeweANOIo0Mb8GiYm3xhTEBVCmPwTYAu9Hcd2qSkLuga/6+j9b1Jskl5bpiSQWy9eJ/j5pavxj6eYogmnuzm+Q==} - - '@firebase/app@0.9.13': - resolution: {integrity: sha512-GfiI1JxJ7ecluEmDjPzseRXk/PX31hS7+tjgBopL7XjB2hLUdR+0FTMXy2Q3/hXezypDvU6or7gVFizDESrkXw==} - - '@firebase/auth-compat@0.4.2': - resolution: {integrity: sha512-Q30e77DWXFmXEt5dg5JbqEDpjw9y3/PcP9LslDPR7fARmAOTIY9MM6HXzm9KC+dlrKH/+p6l8g9ifJiam9mc4A==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/auth-interop-types@0.2.1': - resolution: {integrity: sha512-VOaGzKp65MY6P5FI84TfYKBXEPi6LmOCSMMzys6o2BN2LOsqy7pCuZCup7NYnfbk5OkkQKzvIfHOzTm0UDpkyg==} - - '@firebase/auth-types@0.12.0': - resolution: {integrity: sha512-pPwaZt+SPOshK8xNoiQlK5XIrS97kFYc3Rc7xmy373QsOJ9MmqXxLaYssP5Kcds4wd2qK//amx/c+A8O2fVeZA==} - peerDependencies: - '@firebase/app-types': 0.x - '@firebase/util': 1.x - - '@firebase/auth@0.23.2': - resolution: {integrity: sha512-dM9iJ0R6tI1JczuGSxXmQbXAgtYie0K4WvKcuyuSTCu9V8eEDiz4tfa1sO3txsfvwg7nOY3AjoCyMYEdqZ8hdg==} - peerDependencies: - '@firebase/app': 0.x - - '@firebase/component@0.6.4': - resolution: {integrity: sha512-rLMyrXuO9jcAUCaQXCMjCMUsWrba5fzHlNK24xz5j2W6A/SRmK8mZJ/hn7V0fViLbxC0lPMtrK1eYzk6Fg03jA==} - - '@firebase/database-compat@0.3.4': - resolution: {integrity: sha512-kuAW+l+sLMUKBThnvxvUZ+Q1ZrF/vFJ58iUY9kAcbX48U03nVzIF6Tmkf0p3WVQwMqiXguSgtOPIB6ZCeF+5Gg==} - - '@firebase/database-types@0.10.4': - resolution: {integrity: sha512-dPySn0vJ/89ZeBac70T+2tWWPiJXWbmRygYv0smT5TfE3hDrQ09eKMF3Y+vMlTdrMWq7mUdYW5REWPSGH4kAZQ==} - - '@firebase/database@0.14.4': - resolution: {integrity: sha512-+Ea/IKGwh42jwdjCyzTmeZeLM3oy1h0mFPsTy6OqCWzcu/KFqRAr5Tt1HRCOBlNOdbh84JPZC47WLU18n2VbxQ==} - - '@firebase/firestore-compat@0.3.12': - resolution: {integrity: sha512-mazuNGAx5Kt9Nph0pm6ULJFp/+j7GSsx+Ncw1GrnKl+ft1CQ4q2LcUssXnjqkX2Ry0fNGqUzC1mfIUrk9bYtjQ==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/firestore-types@2.5.1': - resolution: {integrity: sha512-xG0CA6EMfYo8YeUxC8FeDzf6W3FX1cLlcAGBYV6Cku12sZRI81oWcu61RSKM66K6kUENP+78Qm8mvroBcm1whw==} - peerDependencies: - '@firebase/app-types': 0.x - '@firebase/util': 1.x - - '@firebase/firestore@3.13.0': - resolution: {integrity: sha512-NwcnU+madJXQ4fbLkGx1bWvL612IJN/qO6bZ6dlPmyf7QRyu5azUosijdAN675r+bOOJxMtP1Bv981bHBXAbUg==} - engines: {node: '>=10.10.0'} - peerDependencies: - '@firebase/app': 0.x - - '@firebase/functions-compat@0.3.5': - resolution: {integrity: sha512-uD4jwgwVqdWf6uc3NRKF8cSZ0JwGqSlyhPgackyUPe+GAtnERpS4+Vr66g0b3Gge0ezG4iyHo/EXW/Hjx7QhHw==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/functions-types@0.6.0': - resolution: {integrity: sha512-hfEw5VJtgWXIRf92ImLkgENqpL6IWpYaXVYiRkFY1jJ9+6tIhWM7IzzwbevwIIud/jaxKVdRzD7QBWfPmkwCYw==} - - '@firebase/functions@0.10.0': - resolution: {integrity: sha512-2U+fMNxTYhtwSpkkR6WbBcuNMOVaI7MaH3cZ6UAeNfj7AgEwHwMIFLPpC13YNZhno219F0lfxzTAA0N62ndWzA==} - peerDependencies: - '@firebase/app': 0.x - - '@firebase/installations-compat@0.2.4': - resolution: {integrity: sha512-LI9dYjp0aT9Njkn9U4JRrDqQ6KXeAmFbRC0E7jI7+hxl5YmRWysq5qgQl22hcWpTk+cm3es66d/apoDU/A9n6Q==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/installations-types@0.5.0': - resolution: {integrity: sha512-9DP+RGfzoI2jH7gY4SlzqvZ+hr7gYzPODrbzVD82Y12kScZ6ZpRg/i3j6rleto8vTFC8n6Len4560FnV1w2IRg==} - peerDependencies: - '@firebase/app-types': 0.x - - '@firebase/installations@0.6.4': - resolution: {integrity: sha512-u5y88rtsp7NYkCHC3ElbFBrPtieUybZluXyzl7+4BsIz4sqb4vSAuwHEUgCgCeaQhvsnxDEU6icly8U9zsJigA==} - peerDependencies: - '@firebase/app': 0.x - - '@firebase/logger@0.4.0': - resolution: {integrity: sha512-eRKSeykumZ5+cJPdxxJRgAC3G5NknY2GwEbKfymdnXtnT0Ucm4pspfR6GT4MUQEDuJwRVbVcSx85kgJulMoFFA==} - - '@firebase/messaging-compat@0.2.4': - resolution: {integrity: sha512-lyFjeUhIsPRYDPNIkYX1LcZMpoVbBWXX4rPl7c/rqc7G+EUea7IEtSt4MxTvh6fDfPuzLn7+FZADfscC+tNMfg==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/messaging-interop-types@0.2.0': - resolution: {integrity: sha512-ujA8dcRuVeBixGR9CtegfpU4YmZf3Lt7QYkcj693FFannwNuZgfAYaTmbJ40dtjB81SAu6tbFPL9YLNT15KmOQ==} - - '@firebase/messaging@0.12.4': - resolution: {integrity: sha512-6JLZct6zUaex4g7HI3QbzeUrg9xcnmDAPTWpkoMpd/GoSVWH98zDoWXMGrcvHeCAIsLpFMe4MPoZkJbrPhaASw==} - peerDependencies: - '@firebase/app': 0.x - - '@firebase/performance-compat@0.2.4': - resolution: {integrity: sha512-nnHUb8uP9G8islzcld/k6Bg5RhX62VpbAb/Anj7IXs/hp32Eb2LqFPZK4sy3pKkBUO5wcrlRWQa6wKOxqlUqsg==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/performance-types@0.2.0': - resolution: {integrity: sha512-kYrbr8e/CYr1KLrLYZZt2noNnf+pRwDq2KK9Au9jHrBMnb0/C9X9yWSXmZkFt4UIdsQknBq8uBB7fsybZdOBTA==} - - '@firebase/performance@0.6.4': - resolution: {integrity: sha512-HfTn/bd8mfy/61vEqaBelNiNnvAbUtME2S25A67Nb34zVuCSCRIX4SseXY6zBnOFj3oLisaEqhVcJmVPAej67g==} - peerDependencies: - '@firebase/app': 0.x - - '@firebase/remote-config-compat@0.2.4': - resolution: {integrity: sha512-FKiki53jZirrDFkBHglB3C07j5wBpitAaj8kLME6g8Mx+aq7u9P7qfmuSRytiOItADhWUj7O1JIv7n9q87SuwA==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/remote-config-types@0.3.0': - resolution: {integrity: sha512-RtEH4vdcbXZuZWRZbIRmQVBNsE7VDQpet2qFvq6vwKLBIQRQR5Kh58M4ok3A3US8Sr3rubYnaGqZSurCwI8uMA==} - - '@firebase/remote-config@0.4.4': - resolution: {integrity: sha512-x1ioTHGX8ZwDSTOVp8PBLv2/wfwKzb4pxi0gFezS5GCJwbLlloUH4YYZHHS83IPxnua8b6l0IXUaWd0RgbWwzQ==} - peerDependencies: - '@firebase/app': 0.x - - '@firebase/storage-compat@0.3.2': - resolution: {integrity: sha512-wvsXlLa9DVOMQJckbDNhXKKxRNNewyUhhbXev3t8kSgoCotd1v3MmqhKKz93ePhDnhHnDs7bYHy+Qa8dRY6BXw==} - peerDependencies: - '@firebase/app-compat': 0.x - - '@firebase/storage-types@0.8.0': - resolution: {integrity: sha512-isRHcGrTs9kITJC0AVehHfpraWFui39MPaU7Eo8QfWlqW7YPymBmRgjDrlOgFdURh6Cdeg07zmkLP5tzTKRSpg==} - peerDependencies: - '@firebase/app-types': 0.x - '@firebase/util': 1.x - - '@firebase/storage@0.11.2': - resolution: {integrity: sha512-CtvoFaBI4hGXlXbaCHf8humajkbXhs39Nbh6MbNxtwJiCqxPy9iH3D3CCfXAvP0QvAAwmJUTK3+z9a++Kc4nkA==} - peerDependencies: - '@firebase/app': 0.x - - '@firebase/util@1.9.3': - resolution: {integrity: sha512-DY02CRhOZwpzO36fHpuVysz6JZrscPiBXD0fXp6qSrL9oNOx5KWICKdR95C0lSITzxp0TZosVyHqzatE8JbcjA==} - - '@firebase/webchannel-wrapper@0.10.1': - resolution: {integrity: sha512-Dq5rYfEpdeel0bLVN+nfD1VWmzCkK+pJbSjIawGE+RY4+NIJqhbUDDQjvV0NUK84fMfwxvtFoCtEe70HfZjFcw==} - - '@flatten-js/interval-tree@1.1.3': - resolution: {integrity: sha512-xhFWUBoHJFF77cJO1D6REjdgJEMRf2Y2Z+eKEPav8evGKcLSnj1ud5pLXQSbGuxF3VSvT1rWhMfVpXEKJLTL+A==} - - '@floating-ui/core@0.3.1': - resolution: {integrity: sha512-ensKY7Ub59u16qsVIFEo2hwTCqZ/r9oZZFh51ivcLGHfUwTn8l1Xzng8RJUe91H/UP8PeqeBronAGx0qmzwk2g==} - - '@floating-ui/core@1.6.0': - resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==} - - '@floating-ui/dom@0.1.10': - resolution: {integrity: sha512-4kAVoogvQm2N0XE0G6APQJuCNuErjOfPW8Ux7DFxh8+AfugWflwVJ5LDlHOwrwut7z/30NUvdtHzQ3zSip4EzQ==} - - '@floating-ui/dom@1.6.3': - resolution: {integrity: sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==} - - '@floating-ui/react-dom@0.4.3': - resolution: {integrity: sha512-ZL88ryd9p6sFh9jIC/+05JZoNsogcq6U09cygQjiy757QtQqxIVLQwFag+BAWWYqpNEMO0S60fkqmh8KIAV4oA==} - peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' - - '@floating-ui/react-dom@2.0.8': - resolution: {integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==} - peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' - - '@floating-ui/utils@0.2.1': - resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==} - - '@formatjs/ecma402-abstract@1.18.2': - resolution: {integrity: sha512-+QoPW4csYALsQIl8GbN14igZzDbuwzcpWrku9nyMXlaqAlwRBgl5V+p0vWMGFqHOw37czNXaP/lEk4wbLgcmtA==} - - '@formatjs/intl-enumerator@1.4.5': - resolution: {integrity: sha512-IbEJHzJO0buoq//RqbLRDettIkZ/WYGOL+8dy5oxzefqlpTsmJFUo5t1sK0/1EoC+eOFiyhdgh5ihCH3Cehc0w==} - - '@formatjs/intl-getcanonicallocales@2.3.0': - resolution: {integrity: sha512-BOXbLwqQ7nKua/l7tKqDLRN84WupDXFDhGJQMFvsMVA2dKuOdRaWTxWpL3cJ7qPkoNw11Jf+Xpj4OSPBBvW0eQ==} - - '@formatjs/intl-locale@3.4.5': - resolution: {integrity: sha512-obUNTK0Py9sDSTlCXfNQotC7Oy5xd3iBx6dVtzd9YXProkP0NxcRrhlPmfHO9AuYNXdHuarHlozoBxZjOtM4mQ==} - - '@formatjs/intl-localematcher@0.5.4': - resolution: {integrity: sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==} - - '@formatjs/intl-pluralrules@5.2.12': - resolution: {integrity: sha512-V/namV1R/FPlsNMcO6U3saOoUqCp6DIPj4BONjj4yW78BU9gRytEJEdifOv+O1cU2Sb7AqOLOju6/qqIRRauLQ==} - - '@formatjs/intl-relativetimeformat@11.2.12': - resolution: {integrity: sha512-Pdj8DkkiuaInJUs0arW8EyluGaSDq2eHccIi4Oc2JIGEKbMmIj6NapqyjWZUjPOI3mRqV3thhEERC+lfKqJT0w==} - - '@gar/promisify@1.1.3': - resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} - - '@graphql-typed-document-node/core@3.2.0': - resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==} + "@faker-js/faker@8.4.1": + resolution: + { + integrity: sha512-XQ3cU+Q8Uqmrbf2e0cIC/QN43sTBSC8KF12u29Mb47tWrt2hAgBXSgpZMj4Ao8Uk0iJcU99QsOCaIL8934obCg==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0, npm: ">=6.14.13" } + + "@fal-works/esbuild-plugin-global-externals@2.1.2": + resolution: + { + integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==, + } + + "@fastify/busboy@2.1.1": + resolution: + { + integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==, + } + engines: { node: ">=14" } + + "@firebase/analytics-compat@0.2.6": + resolution: + { + integrity: sha512-4MqpVLFkGK7NJf/5wPEEP7ePBJatwYpyjgJ+wQHQGHfzaCDgntOnl9rL2vbVGGKCnRqWtZDIWhctB86UWXaX2Q==, + } + peerDependencies: + "@firebase/app-compat": 0.x + + "@firebase/analytics-types@0.8.0": + resolution: + { + integrity: sha512-iRP+QKI2+oz3UAh4nPEq14CsEjrjD6a5+fuypjScisAh9kXKFvdJOZJDwk7kikLvWVLGEs9+kIUS4LPQV7VZVw==, + } + + "@firebase/analytics@0.10.0": + resolution: + { + integrity: sha512-Locv8gAqx0e+GX/0SI3dzmBY5e9kjVDtD+3zCFLJ0tH2hJwuCAiL+5WkHuxKj92rqQj/rvkBUCfA1ewlX2hehg==, + } + peerDependencies: + "@firebase/app": 0.x + + "@firebase/app-check-compat@0.3.7": + resolution: + { + integrity: sha512-cW682AxsyP1G+Z0/P7pO/WT2CzYlNxoNe5QejVarW2o5ZxeWSSPAiVEwpEpQR/bUlUmdeWThYTMvBWaopdBsqw==, + } + peerDependencies: + "@firebase/app-compat": 0.x + + "@firebase/app-check-interop-types@0.3.0": + resolution: + { + integrity: sha512-xAxHPZPIgFXnI+vb4sbBjZcde7ZluzPPaSK7Lx3/nmuVk4TjZvnL8ONnkd4ERQKL8WePQySU+pRcWkh8rDf5Sg==, + } + + "@firebase/app-check-types@0.5.0": + resolution: + { + integrity: sha512-uwSUj32Mlubybw7tedRzR24RP8M8JUVR3NPiMk3/Z4bCmgEKTlQBwMXrehDAZ2wF+TsBq0SN1c6ema71U/JPyQ==, + } + + "@firebase/app-check@0.8.0": + resolution: + { + integrity: sha512-dRDnhkcaC2FspMiRK/Vbp+PfsOAEP6ZElGm9iGFJ9fDqHoPs0HOPn7dwpJ51lCFi1+2/7n5pRPGhqF/F03I97g==, + } + peerDependencies: + "@firebase/app": 0.x + + "@firebase/app-compat@0.2.13": + resolution: + { + integrity: sha512-j6ANZaWjeVy5zg6X7uiqh6lM6o3n3LD1+/SJFNs9V781xyryyZWXe+tmnWNWPkP086QfJoNkWN9pMQRqSG4vMg==, + } + + "@firebase/app-types@0.9.0": + resolution: + { + integrity: sha512-AeweANOIo0Mb8GiYm3xhTEBVCmPwTYAu9Hcd2qSkLuga/6+j9b1Jskl5bpiSQWy9eJ/j5pavxj6eYogmnuzm+Q==, + } + + "@firebase/app@0.9.13": + resolution: + { + integrity: sha512-GfiI1JxJ7ecluEmDjPzseRXk/PX31hS7+tjgBopL7XjB2hLUdR+0FTMXy2Q3/hXezypDvU6or7gVFizDESrkXw==, + } + + "@firebase/auth-compat@0.4.2": + resolution: + { + integrity: sha512-Q30e77DWXFmXEt5dg5JbqEDpjw9y3/PcP9LslDPR7fARmAOTIY9MM6HXzm9KC+dlrKH/+p6l8g9ifJiam9mc4A==, + } + peerDependencies: + "@firebase/app-compat": 0.x + + "@firebase/auth-interop-types@0.2.1": + resolution: + { + integrity: sha512-VOaGzKp65MY6P5FI84TfYKBXEPi6LmOCSMMzys6o2BN2LOsqy7pCuZCup7NYnfbk5OkkQKzvIfHOzTm0UDpkyg==, + } + + "@firebase/auth-types@0.12.0": + resolution: + { + integrity: sha512-pPwaZt+SPOshK8xNoiQlK5XIrS97kFYc3Rc7xmy373QsOJ9MmqXxLaYssP5Kcds4wd2qK//amx/c+A8O2fVeZA==, + } + peerDependencies: + "@firebase/app-types": 0.x + "@firebase/util": 1.x + + "@firebase/auth@0.23.2": + resolution: + { + integrity: sha512-dM9iJ0R6tI1JczuGSxXmQbXAgtYie0K4WvKcuyuSTCu9V8eEDiz4tfa1sO3txsfvwg7nOY3AjoCyMYEdqZ8hdg==, + } + peerDependencies: + "@firebase/app": 0.x + + "@firebase/component@0.6.4": + resolution: + { + integrity: sha512-rLMyrXuO9jcAUCaQXCMjCMUsWrba5fzHlNK24xz5j2W6A/SRmK8mZJ/hn7V0fViLbxC0lPMtrK1eYzk6Fg03jA==, + } + + "@firebase/database-compat@0.3.4": + resolution: + { + integrity: sha512-kuAW+l+sLMUKBThnvxvUZ+Q1ZrF/vFJ58iUY9kAcbX48U03nVzIF6Tmkf0p3WVQwMqiXguSgtOPIB6ZCeF+5Gg==, + } + + "@firebase/database-types@0.10.4": + resolution: + { + integrity: sha512-dPySn0vJ/89ZeBac70T+2tWWPiJXWbmRygYv0smT5TfE3hDrQ09eKMF3Y+vMlTdrMWq7mUdYW5REWPSGH4kAZQ==, + } + + "@firebase/database@0.14.4": + resolution: + { + integrity: sha512-+Ea/IKGwh42jwdjCyzTmeZeLM3oy1h0mFPsTy6OqCWzcu/KFqRAr5Tt1HRCOBlNOdbh84JPZC47WLU18n2VbxQ==, + } + + "@firebase/firestore-compat@0.3.12": + resolution: + { + integrity: sha512-mazuNGAx5Kt9Nph0pm6ULJFp/+j7GSsx+Ncw1GrnKl+ft1CQ4q2LcUssXnjqkX2Ry0fNGqUzC1mfIUrk9bYtjQ==, + } + peerDependencies: + "@firebase/app-compat": 0.x + + "@firebase/firestore-types@2.5.1": + resolution: + { + integrity: sha512-xG0CA6EMfYo8YeUxC8FeDzf6W3FX1cLlcAGBYV6Cku12sZRI81oWcu61RSKM66K6kUENP+78Qm8mvroBcm1whw==, + } + peerDependencies: + "@firebase/app-types": 0.x + "@firebase/util": 1.x + + "@firebase/firestore@3.13.0": + resolution: + { + integrity: sha512-NwcnU+madJXQ4fbLkGx1bWvL612IJN/qO6bZ6dlPmyf7QRyu5azUosijdAN675r+bOOJxMtP1Bv981bHBXAbUg==, + } + engines: { node: ">=10.10.0" } + peerDependencies: + "@firebase/app": 0.x + + "@firebase/functions-compat@0.3.5": + resolution: + { + integrity: sha512-uD4jwgwVqdWf6uc3NRKF8cSZ0JwGqSlyhPgackyUPe+GAtnERpS4+Vr66g0b3Gge0ezG4iyHo/EXW/Hjx7QhHw==, + } + peerDependencies: + "@firebase/app-compat": 0.x + + "@firebase/functions-types@0.6.0": + resolution: + { + integrity: sha512-hfEw5VJtgWXIRf92ImLkgENqpL6IWpYaXVYiRkFY1jJ9+6tIhWM7IzzwbevwIIud/jaxKVdRzD7QBWfPmkwCYw==, + } + + "@firebase/functions@0.10.0": + resolution: + { + integrity: sha512-2U+fMNxTYhtwSpkkR6WbBcuNMOVaI7MaH3cZ6UAeNfj7AgEwHwMIFLPpC13YNZhno219F0lfxzTAA0N62ndWzA==, + } + peerDependencies: + "@firebase/app": 0.x + + "@firebase/installations-compat@0.2.4": + resolution: + { + integrity: sha512-LI9dYjp0aT9Njkn9U4JRrDqQ6KXeAmFbRC0E7jI7+hxl5YmRWysq5qgQl22hcWpTk+cm3es66d/apoDU/A9n6Q==, + } + peerDependencies: + "@firebase/app-compat": 0.x + + "@firebase/installations-types@0.5.0": + resolution: + { + integrity: sha512-9DP+RGfzoI2jH7gY4SlzqvZ+hr7gYzPODrbzVD82Y12kScZ6ZpRg/i3j6rleto8vTFC8n6Len4560FnV1w2IRg==, + } + peerDependencies: + "@firebase/app-types": 0.x + + "@firebase/installations@0.6.4": + resolution: + { + integrity: sha512-u5y88rtsp7NYkCHC3ElbFBrPtieUybZluXyzl7+4BsIz4sqb4vSAuwHEUgCgCeaQhvsnxDEU6icly8U9zsJigA==, + } + peerDependencies: + "@firebase/app": 0.x + + "@firebase/logger@0.4.0": + resolution: + { + integrity: sha512-eRKSeykumZ5+cJPdxxJRgAC3G5NknY2GwEbKfymdnXtnT0Ucm4pspfR6GT4MUQEDuJwRVbVcSx85kgJulMoFFA==, + } + + "@firebase/messaging-compat@0.2.4": + resolution: + { + integrity: sha512-lyFjeUhIsPRYDPNIkYX1LcZMpoVbBWXX4rPl7c/rqc7G+EUea7IEtSt4MxTvh6fDfPuzLn7+FZADfscC+tNMfg==, + } + peerDependencies: + "@firebase/app-compat": 0.x + + "@firebase/messaging-interop-types@0.2.0": + resolution: + { + integrity: sha512-ujA8dcRuVeBixGR9CtegfpU4YmZf3Lt7QYkcj693FFannwNuZgfAYaTmbJ40dtjB81SAu6tbFPL9YLNT15KmOQ==, + } + + "@firebase/messaging@0.12.4": + resolution: + { + integrity: sha512-6JLZct6zUaex4g7HI3QbzeUrg9xcnmDAPTWpkoMpd/GoSVWH98zDoWXMGrcvHeCAIsLpFMe4MPoZkJbrPhaASw==, + } + peerDependencies: + "@firebase/app": 0.x + + "@firebase/performance-compat@0.2.4": + resolution: + { + integrity: sha512-nnHUb8uP9G8islzcld/k6Bg5RhX62VpbAb/Anj7IXs/hp32Eb2LqFPZK4sy3pKkBUO5wcrlRWQa6wKOxqlUqsg==, + } + peerDependencies: + "@firebase/app-compat": 0.x + + "@firebase/performance-types@0.2.0": + resolution: + { + integrity: sha512-kYrbr8e/CYr1KLrLYZZt2noNnf+pRwDq2KK9Au9jHrBMnb0/C9X9yWSXmZkFt4UIdsQknBq8uBB7fsybZdOBTA==, + } + + "@firebase/performance@0.6.4": + resolution: + { + integrity: sha512-HfTn/bd8mfy/61vEqaBelNiNnvAbUtME2S25A67Nb34zVuCSCRIX4SseXY6zBnOFj3oLisaEqhVcJmVPAej67g==, + } + peerDependencies: + "@firebase/app": 0.x + + "@firebase/remote-config-compat@0.2.4": + resolution: + { + integrity: sha512-FKiki53jZirrDFkBHglB3C07j5wBpitAaj8kLME6g8Mx+aq7u9P7qfmuSRytiOItADhWUj7O1JIv7n9q87SuwA==, + } + peerDependencies: + "@firebase/app-compat": 0.x + + "@firebase/remote-config-types@0.3.0": + resolution: + { + integrity: sha512-RtEH4vdcbXZuZWRZbIRmQVBNsE7VDQpet2qFvq6vwKLBIQRQR5Kh58M4ok3A3US8Sr3rubYnaGqZSurCwI8uMA==, + } + + "@firebase/remote-config@0.4.4": + resolution: + { + integrity: sha512-x1ioTHGX8ZwDSTOVp8PBLv2/wfwKzb4pxi0gFezS5GCJwbLlloUH4YYZHHS83IPxnua8b6l0IXUaWd0RgbWwzQ==, + } + peerDependencies: + "@firebase/app": 0.x + + "@firebase/storage-compat@0.3.2": + resolution: + { + integrity: sha512-wvsXlLa9DVOMQJckbDNhXKKxRNNewyUhhbXev3t8kSgoCotd1v3MmqhKKz93ePhDnhHnDs7bYHy+Qa8dRY6BXw==, + } + peerDependencies: + "@firebase/app-compat": 0.x + + "@firebase/storage-types@0.8.0": + resolution: + { + integrity: sha512-isRHcGrTs9kITJC0AVehHfpraWFui39MPaU7Eo8QfWlqW7YPymBmRgjDrlOgFdURh6Cdeg07zmkLP5tzTKRSpg==, + } + peerDependencies: + "@firebase/app-types": 0.x + "@firebase/util": 1.x + + "@firebase/storage@0.11.2": + resolution: + { + integrity: sha512-CtvoFaBI4hGXlXbaCHf8humajkbXhs39Nbh6MbNxtwJiCqxPy9iH3D3CCfXAvP0QvAAwmJUTK3+z9a++Kc4nkA==, + } + peerDependencies: + "@firebase/app": 0.x + + "@firebase/util@1.9.3": + resolution: + { + integrity: sha512-DY02CRhOZwpzO36fHpuVysz6JZrscPiBXD0fXp6qSrL9oNOx5KWICKdR95C0lSITzxp0TZosVyHqzatE8JbcjA==, + } + + "@firebase/webchannel-wrapper@0.10.1": + resolution: + { + integrity: sha512-Dq5rYfEpdeel0bLVN+nfD1VWmzCkK+pJbSjIawGE+RY4+NIJqhbUDDQjvV0NUK84fMfwxvtFoCtEe70HfZjFcw==, + } + + "@flatten-js/interval-tree@1.1.3": + resolution: + { + integrity: sha512-xhFWUBoHJFF77cJO1D6REjdgJEMRf2Y2Z+eKEPav8evGKcLSnj1ud5pLXQSbGuxF3VSvT1rWhMfVpXEKJLTL+A==, + } + + "@floating-ui/core@0.3.1": + resolution: + { + integrity: sha512-ensKY7Ub59u16qsVIFEo2hwTCqZ/r9oZZFh51ivcLGHfUwTn8l1Xzng8RJUe91H/UP8PeqeBronAGx0qmzwk2g==, + } + + "@floating-ui/core@1.6.0": + resolution: + { + integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==, + } + + "@floating-ui/dom@0.1.10": + resolution: + { + integrity: sha512-4kAVoogvQm2N0XE0G6APQJuCNuErjOfPW8Ux7DFxh8+AfugWflwVJ5LDlHOwrwut7z/30NUvdtHzQ3zSip4EzQ==, + } + + "@floating-ui/dom@1.6.3": + resolution: + { + integrity: sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==, + } + + "@floating-ui/react-dom@0.4.3": + resolution: + { + integrity: sha512-ZL88ryd9p6sFh9jIC/+05JZoNsogcq6U09cygQjiy757QtQqxIVLQwFag+BAWWYqpNEMO0S60fkqmh8KIAV4oA==, + } + peerDependencies: + react: ">=16.8.0" + react-dom: ">=16.8.0" + + "@floating-ui/react-dom@2.0.8": + resolution: + { + integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==, + } + peerDependencies: + react: ">=16.8.0" + react-dom: ">=16.8.0" + + "@floating-ui/utils@0.2.1": + resolution: + { + integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==, + } + + "@formatjs/ecma402-abstract@1.18.2": + resolution: + { + integrity: sha512-+QoPW4csYALsQIl8GbN14igZzDbuwzcpWrku9nyMXlaqAlwRBgl5V+p0vWMGFqHOw37czNXaP/lEk4wbLgcmtA==, + } + + "@formatjs/intl-enumerator@1.4.5": + resolution: + { + integrity: sha512-IbEJHzJO0buoq//RqbLRDettIkZ/WYGOL+8dy5oxzefqlpTsmJFUo5t1sK0/1EoC+eOFiyhdgh5ihCH3Cehc0w==, + } + + "@formatjs/intl-getcanonicallocales@2.3.0": + resolution: + { + integrity: sha512-BOXbLwqQ7nKua/l7tKqDLRN84WupDXFDhGJQMFvsMVA2dKuOdRaWTxWpL3cJ7qPkoNw11Jf+Xpj4OSPBBvW0eQ==, + } + + "@formatjs/intl-locale@3.4.5": + resolution: + { + integrity: sha512-obUNTK0Py9sDSTlCXfNQotC7Oy5xd3iBx6dVtzd9YXProkP0NxcRrhlPmfHO9AuYNXdHuarHlozoBxZjOtM4mQ==, + } + + "@formatjs/intl-localematcher@0.5.4": + resolution: + { + integrity: sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==, + } + + "@formatjs/intl-pluralrules@5.2.12": + resolution: + { + integrity: sha512-V/namV1R/FPlsNMcO6U3saOoUqCp6DIPj4BONjj4yW78BU9gRytEJEdifOv+O1cU2Sb7AqOLOju6/qqIRRauLQ==, + } + + "@formatjs/intl-relativetimeformat@11.2.12": + resolution: + { + integrity: sha512-Pdj8DkkiuaInJUs0arW8EyluGaSDq2eHccIi4Oc2JIGEKbMmIj6NapqyjWZUjPOI3mRqV3thhEERC+lfKqJT0w==, + } + + "@gar/promisify@1.1.3": + resolution: + { + integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==, + } + + "@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 - '@grpc/grpc-js@1.6.7': - resolution: {integrity: sha512-eBM03pu9hd3VqDQG+kHahiG1x80RGkkqqRb1Pchcwqej/KkAH95gAvKs6laqaHCycYaPK+TKuNQnOz9UXYA8qw==} - engines: {node: ^8.13.0 || >=10.10.0} - - '@grpc/grpc-js@1.7.3': - resolution: {integrity: sha512-H9l79u4kJ2PVSxUNA08HMYAnUBLj9v6KjYQ7SQ71hOZcEXhShE/y5iQCesP8+6/Ik/7i2O0a10bPquIcYfufog==} - engines: {node: ^8.13.0 || >=10.10.0} - - '@grpc/proto-loader@0.6.13': - resolution: {integrity: sha512-FjxPYDRTn6Ec3V0arm1FtSpmP6V50wuph2yILpyvTKzjc76oDdoihXqM1DzOW5ubvCC8GivfCnNtfaRE8myJ7g==} - engines: {node: '>=6'} + "@grpc/grpc-js@1.6.7": + resolution: + { + integrity: sha512-eBM03pu9hd3VqDQG+kHahiG1x80RGkkqqRb1Pchcwqej/KkAH95gAvKs6laqaHCycYaPK+TKuNQnOz9UXYA8qw==, + } + engines: { node: ^8.13.0 || >=10.10.0 } + + "@grpc/grpc-js@1.7.3": + resolution: + { + integrity: sha512-H9l79u4kJ2PVSxUNA08HMYAnUBLj9v6KjYQ7SQ71hOZcEXhShE/y5iQCesP8+6/Ik/7i2O0a10bPquIcYfufog==, + } + engines: { node: ^8.13.0 || >=10.10.0 } + + "@grpc/proto-loader@0.6.13": + resolution: + { + integrity: sha512-FjxPYDRTn6Ec3V0arm1FtSpmP6V50wuph2yILpyvTKzjc76oDdoihXqM1DzOW5ubvCC8GivfCnNtfaRE8myJ7g==, + } + engines: { node: ">=6" } hasBin: true - '@grpc/proto-loader@0.7.12': - resolution: {integrity: sha512-DCVwMxqYzpUCiDMl7hQ384FqP4T3DbNpXU8pt681l3UWCip1WUiD5JrkImUwCB9a7f2cq4CUTmi5r/xIMRPY1Q==} - engines: {node: '>=6'} + "@grpc/proto-loader@0.7.12": + resolution: + { + integrity: sha512-DCVwMxqYzpUCiDMl7hQ384FqP4T3DbNpXU8pt681l3UWCip1WUiD5JrkImUwCB9a7f2cq4CUTmi5r/xIMRPY1Q==, + } + engines: { node: ">=6" } hasBin: true - '@hapi/bourne@2.1.0': - resolution: {integrity: sha512-i1BpaNDVLJdRBEKeJWkVO6tYX6DMFBuwMhSuWqLsY4ufeTKGVuV5rBsUhxPayXqnnWHgXUAmWK16H/ykO5Wj4Q==} - - '@hapi/hoek@9.3.0': - resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} - - '@hapi/topo@5.1.0': - resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} - - '@hashgraph/cryptography@1.1.2': - resolution: {integrity: sha512-oSnDDs5foNq6Yni4kCwbA01NuVY2mewVr1jhkJG7yNDT6+xIBCztRWDeINb1JuShXe57Cuf88M1zmN5iFN7JgA==} - engines: {node: '>=12.0.0'} + "@hapi/bourne@2.1.0": + resolution: + { + integrity: sha512-i1BpaNDVLJdRBEKeJWkVO6tYX6DMFBuwMhSuWqLsY4ufeTKGVuV5rBsUhxPayXqnnWHgXUAmWK16H/ykO5Wj4Q==, + } + + "@hapi/hoek@9.3.0": + resolution: + { + integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==, + } + + "@hapi/topo@5.1.0": + resolution: + { + integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==, + } + + "@hashgraph/cryptography@1.1.2": + resolution: + { + integrity: sha512-oSnDDs5foNq6Yni4kCwbA01NuVY2mewVr1jhkJG7yNDT6+xIBCztRWDeINb1JuShXe57Cuf88M1zmN5iFN7JgA==, + } + engines: { node: ">=12.0.0" } peerDependencies: expo: ^44.0.5 - '@hashgraph/proto@2.4.1': - resolution: {integrity: sha512-tVuflDwQDbYzlXJWFGayF+cHzRV8zaBI5XdaZbkF45THyoSw2QcSSopGLr1sdCj2M2LQfxX4WDKGb2uqbOjxZA==} - engines: {node: '>=10.0.0'} + "@hashgraph/proto@2.4.1": + resolution: + { + integrity: sha512-tVuflDwQDbYzlXJWFGayF+cHzRV8zaBI5XdaZbkF45THyoSw2QcSSopGLr1sdCj2M2LQfxX4WDKGb2uqbOjxZA==, + } + engines: { node: ">=10.0.0" } - '@hashgraph/sdk@2.14.2': - resolution: {integrity: sha512-58CGz+NZvuI7VxpmvFXo7IJc60kWRGIdQeYy1b5Y2j3aO5nwElX8IJGpscB+ZiFepwkHC6gvW3dX9tRV2lWGaQ==} - engines: {node: '>=10.17.0'} + "@hashgraph/sdk@2.14.2": + resolution: + { + integrity: sha512-58CGz+NZvuI7VxpmvFXo7IJc60kWRGIdQeYy1b5Y2j3aO5nwElX8IJGpscB+ZiFepwkHC6gvW3dX9tRV2lWGaQ==, + } + engines: { node: ">=10.17.0" } peerDependencies: expo: ^45.0.3 - '@headlessui/react@1.7.18': - resolution: {integrity: sha512-4i5DOrzwN4qSgNsL4Si61VMkUcWbcSKueUV7sFhpHzQcSShdlHENE5+QBntMSRvHt8NyoFO2AGG8si9lq+w4zQ==} - engines: {node: '>=10'} + "@headlessui/react@1.7.18": + resolution: + { + integrity: sha512-4i5DOrzwN4qSgNsL4Si61VMkUcWbcSKueUV7sFhpHzQcSShdlHENE5+QBntMSRvHt8NyoFO2AGG8si9lq+w4zQ==, + } + engines: { node: ">=10" } peerDependencies: react: ^16 || ^17 || ^18 react-dom: ^16 || ^17 || ^18 - '@helium/address@4.11.1': - resolution: {integrity: sha512-QMrdBx5l5XIy0K9fL3R64Whuk556BLz/pa6yhOQtog1hb3C904m1ykAU8eg2hgiA265Yp98XZkIK3GKTHbH+0A==} - - '@helium/proto@1.6.0': - resolution: {integrity: sha512-aoVjhYDcic5g+n/iwKGXmGgMruPXTffpyr2ziGjuhAvU0phPSv6gnTbyHKY7FqBCUOYX4jHzEKJgX7M27UOGGg==} - - '@helium/transactions@4.11.1': - resolution: {integrity: sha512-uL6OKo5o8AKn7oOuuW6/T7MSwPikbYU2HsSDu2O7ZhnGiyzKcKXQMkIHSBuFKz9KT+DKVpVSwjeLXr4a6/D/eQ==} - - '@humanwhocodes/config-array@0.11.14': - resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} - engines: {node: '>=10.10.0'} + "@helium/address@4.11.1": + resolution: + { + integrity: sha512-QMrdBx5l5XIy0K9fL3R64Whuk556BLz/pa6yhOQtog1hb3C904m1ykAU8eg2hgiA265Yp98XZkIK3GKTHbH+0A==, + } + + "@helium/proto@1.6.0": + resolution: + { + integrity: sha512-aoVjhYDcic5g+n/iwKGXmGgMruPXTffpyr2ziGjuhAvU0phPSv6gnTbyHKY7FqBCUOYX4jHzEKJgX7M27UOGGg==, + } + + "@helium/transactions@4.11.1": + resolution: + { + integrity: sha512-uL6OKo5o8AKn7oOuuW6/T7MSwPikbYU2HsSDu2O7ZhnGiyzKcKXQMkIHSBuFKz9KT+DKVpVSwjeLXr4a6/D/eQ==, + } + + "@humanwhocodes/config-array@0.11.14": + resolution: + { + integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==, + } + engines: { node: ">=10.10.0" } deprecated: Use @eslint/config-array instead - '@humanwhocodes/module-importer@1.0.1': - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: '>=12.22'} - - '@humanwhocodes/object-schema@2.0.2': - resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==} + "@humanwhocodes/module-importer@1.0.1": + resolution: + { + integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==, + } + engines: { node: ">=12.22" } + + "@humanwhocodes/object-schema@2.0.2": + resolution: + { + integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==, + } deprecated: Use @eslint/object-schema instead - '@inquirer/confirm@3.1.7': - resolution: {integrity: sha512-BZjjj19W8gnh5UGFTdP5ZxpgMNRjy03Dzq3k28sB2MDlEUFrcyTkMEoGgvBmGpUw0vNBoCJkTcbHZ3e9tb+d+w==} - engines: {node: '>=18'} - - '@inquirer/core@8.2.0': - resolution: {integrity: sha512-pexNF9j2orvMMTgoQ/uKOw8V6/R7x/sIDwRwXRhl4i0pPSh6paRzFehpFKpfMbqix1/+gzCekhYTmVbQpWkVjQ==} - engines: {node: '>=18'} - - '@inquirer/figures@1.0.1': - resolution: {integrity: sha512-mtup3wVKia3ZwULPHcbs4Mor8Voi+iIXEWD7wCNbIO6lYR62oPCTQyrddi5OMYVXHzeCSoneZwJuS8sBvlEwDw==} - engines: {node: '>=18'} - - '@inquirer/type@1.3.1': - resolution: {integrity: sha512-Pe3PFccjPVJV1vtlfVvm9OnlbxqdnP5QcscFEFEnK5quChf1ufZtM0r8mR5ToWHMxZOh0s8o/qp9ANGRTo/DAw==} - engines: {node: '>=18'} - - '@ioredis/commands@1.2.0': - resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==} - - '@iov/crypto@2.1.0': - resolution: {integrity: sha512-jnb4XuK50admolm7fBxOcxfAW2TO+wYrZlhDWiMETItY/Y5gNNa1zaDSO2wNIjjfGng+8nQ1yqnNhqy7busV2Q==} - - '@iov/encoding@2.1.0': - resolution: {integrity: sha512-5IOdLO7Xg/uRykuiCqeMYghQ3IjWDtGxv7NTWXkgpHuna0aewx43mRpT2NPCpOZd1tpuorDtQ7/zbDNRaIIF/w==} - - '@iov/utils@2.0.2': - resolution: {integrity: sha512-4D8MEvTcFc/DVy5q25vHxRItmgJyeX85dixMH+MxdKr+yy71h3sYk+sVBEIn70uqGP7VqAJkGOPNFs08/XYELw==} - - '@ipld/dag-cbor@9.2.1': - resolution: {integrity: sha512-nyY48yE7r3dnJVlxrdaimrbloh4RokQaNRdI//btfTkcTEZbpmSrbYcBQ4VKTf8ZxXAOUJy4VsRpkJo+y9RTnA==} - engines: {node: '>=16.0.0', npm: '>=7.0.0'} - - '@isaacs/cliui@8.0.2': - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} - - '@isaacs/ttlcache@1.4.1': - resolution: {integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==} - engines: {node: '>=12'} - - '@istanbuljs/load-nyc-config@1.1.0': - resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} - engines: {node: '>=8'} - - '@istanbuljs/schema@0.1.3': - resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} - engines: {node: '>=8'} - - '@jest/console@27.5.1': - resolution: {integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/console@28.1.3': - resolution: {integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/console@29.7.0': - resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/core@27.5.1': - resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + "@inquirer/confirm@3.1.7": + resolution: + { + integrity: sha512-BZjjj19W8gnh5UGFTdP5ZxpgMNRjy03Dzq3k28sB2MDlEUFrcyTkMEoGgvBmGpUw0vNBoCJkTcbHZ3e9tb+d+w==, + } + engines: { node: ">=18" } + + "@inquirer/core@8.2.0": + resolution: + { + integrity: sha512-pexNF9j2orvMMTgoQ/uKOw8V6/R7x/sIDwRwXRhl4i0pPSh6paRzFehpFKpfMbqix1/+gzCekhYTmVbQpWkVjQ==, + } + engines: { node: ">=18" } + + "@inquirer/figures@1.0.1": + resolution: + { + integrity: sha512-mtup3wVKia3ZwULPHcbs4Mor8Voi+iIXEWD7wCNbIO6lYR62oPCTQyrddi5OMYVXHzeCSoneZwJuS8sBvlEwDw==, + } + engines: { node: ">=18" } + + "@inquirer/type@1.3.1": + resolution: + { + integrity: sha512-Pe3PFccjPVJV1vtlfVvm9OnlbxqdnP5QcscFEFEnK5quChf1ufZtM0r8mR5ToWHMxZOh0s8o/qp9ANGRTo/DAw==, + } + engines: { node: ">=18" } + + "@ioredis/commands@1.2.0": + resolution: + { + integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==, + } + + "@iov/crypto@2.1.0": + resolution: + { + integrity: sha512-jnb4XuK50admolm7fBxOcxfAW2TO+wYrZlhDWiMETItY/Y5gNNa1zaDSO2wNIjjfGng+8nQ1yqnNhqy7busV2Q==, + } + + "@iov/encoding@2.1.0": + resolution: + { + integrity: sha512-5IOdLO7Xg/uRykuiCqeMYghQ3IjWDtGxv7NTWXkgpHuna0aewx43mRpT2NPCpOZd1tpuorDtQ7/zbDNRaIIF/w==, + } + + "@iov/utils@2.0.2": + resolution: + { + integrity: sha512-4D8MEvTcFc/DVy5q25vHxRItmgJyeX85dixMH+MxdKr+yy71h3sYk+sVBEIn70uqGP7VqAJkGOPNFs08/XYELw==, + } + + "@ipld/dag-cbor@9.2.1": + resolution: + { + integrity: sha512-nyY48yE7r3dnJVlxrdaimrbloh4RokQaNRdI//btfTkcTEZbpmSrbYcBQ4VKTf8ZxXAOUJy4VsRpkJo+y9RTnA==, + } + engines: { node: ">=16.0.0", npm: ">=7.0.0" } + + "@isaacs/cliui@8.0.2": + resolution: + { + integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==, + } + engines: { node: ">=12" } + + "@isaacs/ttlcache@1.4.1": + resolution: + { + integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==, + } + engines: { node: ">=12" } + + "@istanbuljs/load-nyc-config@1.1.0": + resolution: + { + integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==, + } + engines: { node: ">=8" } + + "@istanbuljs/schema@0.1.3": + resolution: + { + integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==, + } + engines: { node: ">=8" } + + "@jest/console@27.5.1": + resolution: + { + integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + + "@jest/console@28.1.3": + resolution: + { + integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + + "@jest/console@29.7.0": + resolution: + { + integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + "@jest/core@27.5.1": + resolution: + { + integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - '@jest/core@28.1.3': - resolution: {integrity: sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + "@jest/core@28.1.3": + resolution: + { + integrity: sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - '@jest/core@29.7.0': - resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + "@jest/core@29.7.0": + resolution: + { + integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - '@jest/create-cache-key-function@29.7.0': - resolution: {integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/environment@27.5.1': - resolution: {integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/environment@28.1.3': - resolution: {integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/environment@29.7.0': - resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/expect-utils@28.1.3': - resolution: {integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/expect-utils@29.7.0': - resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/expect@28.1.3': - resolution: {integrity: sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/expect@29.7.0': - resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/fake-timers@27.5.1': - resolution: {integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/fake-timers@28.1.3': - resolution: {integrity: sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/fake-timers@29.7.0': - resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/globals@27.5.1': - resolution: {integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/globals@28.1.3': - resolution: {integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/globals@29.7.0': - resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/reporters@27.5.1': - resolution: {integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + "@jest/create-cache-key-function@29.7.0": + resolution: + { + integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + "@jest/environment@27.5.1": + resolution: + { + integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + + "@jest/environment@28.1.3": + resolution: + { + integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + + "@jest/environment@29.7.0": + resolution: + { + integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + "@jest/expect-utils@28.1.3": + resolution: + { + integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + + "@jest/expect-utils@29.7.0": + resolution: + { + integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + "@jest/expect@28.1.3": + resolution: + { + integrity: sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + + "@jest/expect@29.7.0": + resolution: + { + integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + "@jest/fake-timers@27.5.1": + resolution: + { + integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + + "@jest/fake-timers@28.1.3": + resolution: + { + integrity: sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + + "@jest/fake-timers@29.7.0": + resolution: + { + integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + "@jest/globals@27.5.1": + resolution: + { + integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + + "@jest/globals@28.1.3": + resolution: + { + integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + + "@jest/globals@29.7.0": + resolution: + { + integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + "@jest/reporters@27.5.1": + resolution: + { + integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - '@jest/reporters@28.1.3': - resolution: {integrity: sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + "@jest/reporters@28.1.3": + resolution: + { + integrity: sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - '@jest/reporters@29.7.0': - resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + "@jest/reporters@29.7.0": + resolution: + { + integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - '@jest/schemas@28.1.3': - resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/schemas@29.6.3': - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/source-map@27.5.1': - resolution: {integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/source-map@28.1.2': - resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/source-map@29.6.3': - resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/test-result@27.5.1': - resolution: {integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/test-result@28.1.3': - resolution: {integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/test-result@29.7.0': - resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/test-sequencer@27.5.1': - resolution: {integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/test-sequencer@28.1.3': - resolution: {integrity: sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/test-sequencer@29.7.0': - resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/transform@27.5.1': - resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/transform@28.1.3': - resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/transform@29.7.0': - resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jest/types@26.6.2': - resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} - engines: {node: '>= 10.14.2'} - - '@jest/types@27.5.1': - resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - - '@jest/types@28.1.3': - resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - - '@jest/types@29.6.3': - resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - - '@jridgewell/gen-mapping@0.3.5': - resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} - 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.4.15': - resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - - '@jridgewell/trace-mapping@0.3.25': - resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} - - '@jridgewell/trace-mapping@0.3.9': - resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} - - '@jsdoc/salty@0.2.8': - resolution: {integrity: sha512-5e+SFVavj1ORKlKaKr2BmTOekmXbelU7dC0cDkQLqag7xfuTPuGMUFx7KWJuv4bYZrTsoL2Z18VVCOKYxzoHcg==} - engines: {node: '>=v12.0.0'} - - '@juggle/resize-observer@3.4.0': - resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==} - - '@keplr-wallet/cosmos@0.9.16': - resolution: {integrity: sha512-pTbqgZdxMY/O4w37YVDTNFdfbueQUXGiYlMAVsrdtFWBQSz+s1j2UpAgtJoIoEoawYVPmlHSWXviafXr7Y7B7w==} - - '@keplr-wallet/crypto@0.9.10': - resolution: {integrity: sha512-zjoUUL5Ky72eJBm7bd9kPNBTgQL/cFO6pbvPgVa32S8UZ6GlwsPSyiHuvq0k8z0t9X9GwdpuH0nrnlL4viU4fw==} - - '@keplr-wallet/proto-types@0.12.89': - resolution: {integrity: sha512-HD1tTji/2U8PpVhHuKTywdAXw4ISRkxWPLvC5ZxMWDbUaS5NigQ1CLW/xThZCs2Oo4/7YXKExNBYN7RzKdfTfA==} - - '@keplr-wallet/types@0.9.12': - resolution: {integrity: sha512-vtAczeD3+CgGExSZCnU9Wzs9Y8BpdbOii+UjIFHwCR57OXFQphbWHh2j15QFpV4CbebpDcBzIm+/4IAyLeI0Yw==} - - '@keplr-wallet/unit@0.9.12': - resolution: {integrity: sha512-24b3lSaaOrD3/ctdz+ADZn8vhqojsV5SGGzgD8F+DklI76uw8jYmmxSNcKyUAYpVUzRzTas6nnfB+4MwHBNU/Q==} - - '@koa/cors@3.4.3': - resolution: {integrity: sha512-WPXQUaAeAMVaLTEFpoq3T2O1C+FstkjJnDQqy95Ck1UdILajsRhu6mhJ8H2f4NFPRBoCNN+qywTJfq/gGki5mw==} - engines: {node: '>= 8.0.0'} - - '@kwsites/file-exists@1.1.1': - resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==} - - '@kwsites/promise-deferred@1.1.1': - resolution: {integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==} - - '@ledgerhq/compressjs@https://codeload.github.com/LedgerHQ/compressjs/tar.gz/d9e8e4d994923e0ea76a32b97289bcccfe71b82e': - resolution: {tarball: https://codeload.github.com/LedgerHQ/compressjs/tar.gz/d9e8e4d994923e0ea76a32b97289bcccfe71b82e} + "@jest/schemas@28.1.3": + resolution: + { + integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + + "@jest/schemas@29.6.3": + resolution: + { + integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + "@jest/source-map@27.5.1": + resolution: + { + integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + + "@jest/source-map@28.1.2": + resolution: + { + integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + + "@jest/source-map@29.6.3": + resolution: + { + integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + "@jest/test-result@27.5.1": + resolution: + { + integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + + "@jest/test-result@28.1.3": + resolution: + { + integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + + "@jest/test-result@29.7.0": + resolution: + { + integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + "@jest/test-sequencer@27.5.1": + resolution: + { + integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + + "@jest/test-sequencer@28.1.3": + resolution: + { + integrity: sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + + "@jest/test-sequencer@29.7.0": + resolution: + { + integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + "@jest/transform@27.5.1": + resolution: + { + integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + + "@jest/transform@28.1.3": + resolution: + { + integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + + "@jest/transform@29.7.0": + resolution: + { + integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + "@jest/types@24.9.0": + resolution: + { + integrity: sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==, + } + engines: { node: ">= 6" } + + "@jest/types@26.6.2": + resolution: + { + integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==, + } + engines: { node: ">= 10.14.2" } + + "@jest/types@27.5.1": + resolution: + { + integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + + "@jest/types@28.1.3": + resolution: + { + integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + + "@jest/types@29.6.3": + resolution: + { + integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + + "@jridgewell/gen-mapping@0.3.5": + resolution: + { + integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==, + } + 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.4.15": + resolution: + { + integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, + } + + "@jridgewell/trace-mapping@0.3.25": + resolution: + { + integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==, + } + + "@jridgewell/trace-mapping@0.3.9": + resolution: + { + integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==, + } + + "@jsdoc/salty@0.2.8": + resolution: + { + integrity: sha512-5e+SFVavj1ORKlKaKr2BmTOekmXbelU7dC0cDkQLqag7xfuTPuGMUFx7KWJuv4bYZrTsoL2Z18VVCOKYxzoHcg==, + } + engines: { node: ">=v12.0.0" } + + "@juggle/resize-observer@3.4.0": + resolution: + { + integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==, + } + + "@keplr-wallet/cosmos@0.9.16": + resolution: + { + integrity: sha512-pTbqgZdxMY/O4w37YVDTNFdfbueQUXGiYlMAVsrdtFWBQSz+s1j2UpAgtJoIoEoawYVPmlHSWXviafXr7Y7B7w==, + } + + "@keplr-wallet/crypto@0.9.10": + resolution: + { + integrity: sha512-zjoUUL5Ky72eJBm7bd9kPNBTgQL/cFO6pbvPgVa32S8UZ6GlwsPSyiHuvq0k8z0t9X9GwdpuH0nrnlL4viU4fw==, + } + + "@keplr-wallet/proto-types@0.12.89": + resolution: + { + integrity: sha512-HD1tTji/2U8PpVhHuKTywdAXw4ISRkxWPLvC5ZxMWDbUaS5NigQ1CLW/xThZCs2Oo4/7YXKExNBYN7RzKdfTfA==, + } + + "@keplr-wallet/types@0.9.12": + resolution: + { + integrity: sha512-vtAczeD3+CgGExSZCnU9Wzs9Y8BpdbOii+UjIFHwCR57OXFQphbWHh2j15QFpV4CbebpDcBzIm+/4IAyLeI0Yw==, + } + + "@keplr-wallet/unit@0.9.12": + resolution: + { + integrity: sha512-24b3lSaaOrD3/ctdz+ADZn8vhqojsV5SGGzgD8F+DklI76uw8jYmmxSNcKyUAYpVUzRzTas6nnfB+4MwHBNU/Q==, + } + + "@koa/cors@3.4.3": + resolution: + { + integrity: sha512-WPXQUaAeAMVaLTEFpoq3T2O1C+FstkjJnDQqy95Ck1UdILajsRhu6mhJ8H2f4NFPRBoCNN+qywTJfq/gGki5mw==, + } + engines: { node: ">= 8.0.0" } + + "@kwsites/file-exists@1.1.1": + resolution: + { + integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==, + } + + "@kwsites/promise-deferred@1.1.1": + resolution: + { + integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==, + } + + "@ledgerhq/compressjs@https://codeload.github.com/LedgerHQ/compressjs/tar.gz/d9e8e4d994923e0ea76a32b97289bcccfe71b82e": + resolution: + { + tarball: https://codeload.github.com/LedgerHQ/compressjs/tar.gz/d9e8e4d994923e0ea76a32b97289bcccfe71b82e, + } version: 1.3.1 hasBin: true - '@ledgerhq/crypto-icons-ui@file:libs/ui/packages/crypto-icons': - resolution: {directory: libs/ui/packages/crypto-icons, type: directory} + "@ledgerhq/crypto-icons-ui@file:libs/ui/packages/crypto-icons": + resolution: { directory: libs/ui/packages/crypto-icons, type: directory } peerDependencies: - '@types/react': '*' - react: '*' - react-native-svg: '>=12.1.1' - styled-components: '*' - styled-system: '*' + "@types/react": "*" + react: "*" + react-native-svg: ">=12.1.1" + styled-components: "*" + styled-system: "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@ledgerhq/errors@5.50.0': - resolution: {integrity: sha512-gu6aJ/BHuRlpU7kgVpy2vcYk6atjB4iauP2ymF7Gk0ez0Y/6VSMVSJvubeEQN+IV60+OBK0JgeIZG7OiHaw8ow==} - - '@ledgerhq/errors@6.19.1': - resolution: {integrity: sha512-75yK7Nnit/Gp7gdrJAz0ipp31CCgncRp+evWt6QawQEtQKYEDfGo10QywgrrBBixeRxwnMy1DP6g2oCWRf1bjw==} - - '@ledgerhq/hw-app-eth@5.11.0': - resolution: {integrity: sha512-qgpPwZzM8UMHYMC5+9xYV2O+8kgkDAl9+38w9JiBksaGmUFqcS4najsB1nj6AWf2rGEuXdKMb2WEYRskVypJrA==} - - '@ledgerhq/hw-transport-u2f@5.36.0-deprecated': - resolution: {integrity: sha512-T/+mGHIiUK/ZQATad6DMDmobCMZ1mVST952009jKzhaE1Et2Uy2secU+QhRkx3BfEAkvwa0zSRSYCL9d20Iqjg==} - deprecated: '@ledgerhq/hw-transport-u2f is deprecated. Please use @ledgerhq/hw-transport-webusb or @ledgerhq/hw-transport-webhid. https://github.com/LedgerHQ/ledgerjs/blob/master/docs/migrate_webusb.md' - - '@ledgerhq/hw-transport@5.11.0': - resolution: {integrity: sha512-z56iwv0DZZu20T5q9sNMHFQNVuRKYqzCuNFhY9woWSpmOQkyVHCRiEgOQbN5h6kVri6fkfPkDzqqcsYjJlnT9g==} - - '@ledgerhq/hw-transport@5.51.1': - resolution: {integrity: sha512-6wDYdbWrw9VwHIcoDnqWBaDFyviyjZWv6H9vz9Vyhe4Qd7TIFmbTl/eWs6hZvtZBza9K8y7zD8ChHwRI4s9tSw==} - - '@ledgerhq/hw-transport@6.27.1': - resolution: {integrity: sha512-hnE4/Fq1YzQI4PA1W0H8tCkI99R3UWDb3pJeZd6/Xs4Qw/q1uiQO+vNLC6KIPPhK0IajUfuI/P2jk0qWcMsuAQ==} - - '@ledgerhq/hw-transport@6.28.1': - resolution: {integrity: sha512-RaZe+abn0zBIz82cE9tp7Y7aZkHWWbEaE2yJpfxT8AhFz3fx+BU0kLYzuRN9fmA7vKueNJ1MTVUCY+Ex9/CHSQ==} - - '@ledgerhq/hw-transport@6.30.6': - resolution: {integrity: sha512-fT0Z4IywiuJuZrZE/+W0blkV5UCotDPFTYKLkKCLzYzuE6javva7D/ajRaIeR+hZ4kTmKF4EqnsmDCXwElez+w==} - - '@ledgerhq/hw-transport@6.31.3': - resolution: {integrity: sha512-rFplkHWF5NXtlYwAusqLlMu298NHtRD+2q/jrTYc//uu/xJO9LkDIgKid6IVF2+e1Wj7yX6YQVrU6L0Yu1ntEw==} - - '@ledgerhq/hw-transport@6.31.4': - resolution: {integrity: sha512-6c1ir/cXWJm5dCWdq55NPgCJ3UuKuuxRvf//Xs36Bq9BwkV2YaRQhZITAkads83l07NAdR16hkTWqqpwFMaI6A==} - - '@ledgerhq/icons-ui@file:libs/ui/packages/icons': - resolution: {directory: libs/ui/packages/icons, type: directory} - peerDependencies: - '@types/react': '*' - react: '*' - react-native-svg: '>=12.1.1' - styled-components: '*' - styled-system: '*' + "@ledgerhq/errors@5.50.0": + resolution: + { + integrity: sha512-gu6aJ/BHuRlpU7kgVpy2vcYk6atjB4iauP2ymF7Gk0ez0Y/6VSMVSJvubeEQN+IV60+OBK0JgeIZG7OiHaw8ow==, + } + + "@ledgerhq/errors@6.19.1": + resolution: + { + integrity: sha512-75yK7Nnit/Gp7gdrJAz0ipp31CCgncRp+evWt6QawQEtQKYEDfGo10QywgrrBBixeRxwnMy1DP6g2oCWRf1bjw==, + } + + "@ledgerhq/hw-app-eth@5.11.0": + resolution: + { + integrity: sha512-qgpPwZzM8UMHYMC5+9xYV2O+8kgkDAl9+38w9JiBksaGmUFqcS4najsB1nj6AWf2rGEuXdKMb2WEYRskVypJrA==, + } + + "@ledgerhq/hw-transport-u2f@5.36.0-deprecated": + resolution: + { + integrity: sha512-T/+mGHIiUK/ZQATad6DMDmobCMZ1mVST952009jKzhaE1Et2Uy2secU+QhRkx3BfEAkvwa0zSRSYCL9d20Iqjg==, + } + deprecated: "@ledgerhq/hw-transport-u2f is deprecated. Please use @ledgerhq/hw-transport-webusb or @ledgerhq/hw-transport-webhid. https://github.com/LedgerHQ/ledgerjs/blob/master/docs/migrate_webusb.md" + + "@ledgerhq/hw-transport@5.11.0": + resolution: + { + integrity: sha512-z56iwv0DZZu20T5q9sNMHFQNVuRKYqzCuNFhY9woWSpmOQkyVHCRiEgOQbN5h6kVri6fkfPkDzqqcsYjJlnT9g==, + } + + "@ledgerhq/hw-transport@5.51.1": + resolution: + { + integrity: sha512-6wDYdbWrw9VwHIcoDnqWBaDFyviyjZWv6H9vz9Vyhe4Qd7TIFmbTl/eWs6hZvtZBza9K8y7zD8ChHwRI4s9tSw==, + } + + "@ledgerhq/hw-transport@6.27.1": + resolution: + { + integrity: sha512-hnE4/Fq1YzQI4PA1W0H8tCkI99R3UWDb3pJeZd6/Xs4Qw/q1uiQO+vNLC6KIPPhK0IajUfuI/P2jk0qWcMsuAQ==, + } + + "@ledgerhq/hw-transport@6.28.1": + resolution: + { + integrity: sha512-RaZe+abn0zBIz82cE9tp7Y7aZkHWWbEaE2yJpfxT8AhFz3fx+BU0kLYzuRN9fmA7vKueNJ1MTVUCY+Ex9/CHSQ==, + } + + "@ledgerhq/hw-transport@6.30.6": + resolution: + { + integrity: sha512-fT0Z4IywiuJuZrZE/+W0blkV5UCotDPFTYKLkKCLzYzuE6javva7D/ajRaIeR+hZ4kTmKF4EqnsmDCXwElez+w==, + } + + "@ledgerhq/hw-transport@6.31.3": + resolution: + { + integrity: sha512-rFplkHWF5NXtlYwAusqLlMu298NHtRD+2q/jrTYc//uu/xJO9LkDIgKid6IVF2+e1Wj7yX6YQVrU6L0Yu1ntEw==, + } + + "@ledgerhq/hw-transport@6.31.4": + resolution: + { + integrity: sha512-6c1ir/cXWJm5dCWdq55NPgCJ3UuKuuxRvf//Xs36Bq9BwkV2YaRQhZITAkads83l07NAdR16hkTWqqpwFMaI6A==, + } + + "@ledgerhq/icons-ui@file:libs/ui/packages/icons": + resolution: { directory: libs/ui/packages/icons, type: directory } + peerDependencies: + "@types/react": "*" + react: "*" + react-native-svg: ">=12.1.1" + styled-components: "*" + styled-system: "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@ledgerhq/live-app-sdk@0.8.2': - resolution: {integrity: sha512-yD+L02pAwTfjeSyixWkfqlh6Xg3yAGFnFitrcHk2WWUtKg1TVmNpWNHLS22LKYYWJ7Lflj/pLLQ0nKm1OsJB9g==} - - '@ledgerhq/logs@5.50.0': - resolution: {integrity: sha512-swKHYCOZUGyVt4ge0u8a7AwNcA//h4nx5wIi0sruGye1IJ5Cva0GyK9L2/WdX+kWVTKp92ZiEo1df31lrWGPgA==} - - '@ledgerhq/logs@6.12.0': - resolution: {integrity: sha512-ExDoj1QV5eC6TEbMdLUMMk9cfvNKhhv5gXol4SmULRVCx/3iyCPhJ74nsb3S0Vb+/f+XujBEj3vQn5+cwS0fNA==} - - '@ledgerhq/wallet-api-client-react@1.3.12': - resolution: {integrity: sha512-hf7OlhGtj6yuo42OGyKt0dMPNoIpBHm7u1vTH40yWfsabFaDtPzJFGSkWhBb19/zRtDGpbFr3Plo/WnBLFDfXQ==} + "@ledgerhq/live-app-sdk@0.8.2": + resolution: + { + integrity: sha512-yD+L02pAwTfjeSyixWkfqlh6Xg3yAGFnFitrcHk2WWUtKg1TVmNpWNHLS22LKYYWJ7Lflj/pLLQ0nKm1OsJB9g==, + } + + "@ledgerhq/logs@5.50.0": + resolution: + { + integrity: sha512-swKHYCOZUGyVt4ge0u8a7AwNcA//h4nx5wIi0sruGye1IJ5Cva0GyK9L2/WdX+kWVTKp92ZiEo1df31lrWGPgA==, + } + + "@ledgerhq/logs@6.12.0": + resolution: + { + integrity: sha512-ExDoj1QV5eC6TEbMdLUMMk9cfvNKhhv5gXol4SmULRVCx/3iyCPhJ74nsb3S0Vb+/f+XujBEj3vQn5+cwS0fNA==, + } + + "@ledgerhq/wallet-api-client-react@1.3.12": + resolution: + { + integrity: sha512-hf7OlhGtj6yuo42OGyKt0dMPNoIpBHm7u1vTH40yWfsabFaDtPzJFGSkWhBb19/zRtDGpbFr3Plo/WnBLFDfXQ==, + } peerDependencies: react: ^16.8.0 || ^17 || ^18 - '@ledgerhq/wallet-api-client@1.6.0': - resolution: {integrity: sha512-xf5g9baUB1Fn94GKYGNXtlRCKTWnqMBv1w9bE/H3+IXubwY7Cdy5zhn4rI8+iA4Llmwujp+sZciesWAa9f63gg==} + "@ledgerhq/wallet-api-client@1.6.0": + resolution: + { + integrity: sha512-xf5g9baUB1Fn94GKYGNXtlRCKTWnqMBv1w9bE/H3+IXubwY7Cdy5zhn4rI8+iA4Llmwujp+sZciesWAa9f63gg==, + } - '@ledgerhq/wallet-api-core@1.13.0': - resolution: {integrity: sha512-HGnkPcbkeoNr+XAH+5NSrgyRYD/sVD3tgCyoYPAKEs7j3W/eJyT/EvBWwV4yPKhghfSjuqMo1L+0wLCXnbt4Dw==} + "@ledgerhq/wallet-api-core@1.13.0": + resolution: + { + integrity: sha512-HGnkPcbkeoNr+XAH+5NSrgyRYD/sVD3tgCyoYPAKEs7j3W/eJyT/EvBWwV4yPKhghfSjuqMo1L+0wLCXnbt4Dw==, + } - '@ledgerhq/wallet-api-server@1.6.0': - resolution: {integrity: sha512-x2aI2wqWlt03zUMYucfqNeYkohZzROs2DYgRdwkkZbQG2Q0iUZsixUYjNkFZxPVUhxXaUA+YIgF43OeG/fyOjA==} + "@ledgerhq/wallet-api-server@1.6.0": + resolution: + { + integrity: sha512-x2aI2wqWlt03zUMYucfqNeYkohZzROs2DYgRdwkkZbQG2Q0iUZsixUYjNkFZxPVUhxXaUA+YIgF43OeG/fyOjA==, + } peerDependencies: react: ^17.x || ^18.x rxjs: ^7.x @@ -10674,738 +12938,1223 @@ packages: react: optional: true - '@ledgerhq/wallet-api-simulator@1.2.0': - resolution: {integrity: sha512-EB4rqArFWut8A+Pzoi0uK1sqlGsF5fPYDql4IGH5ghdyKgh3Mq9svi5Um8h3+33aETB3hqCR2T2itN+kGxk3Tw==} - - '@leichtgewicht/ip-codec@2.0.5': - resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} - - '@lezer/common@1.2.1': - resolution: {integrity: sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==} - - '@lezer/highlight@1.2.0': - resolution: {integrity: sha512-WrS5Mw51sGrpqjlh3d4/fOwpEV2Hd3YOkp9DBt4k8XZQcoTHZFB7sx030A6OcahF4J1nDQAa3jXlTVVYH50IFA==} - - '@lezer/json@1.0.2': - resolution: {integrity: sha512-xHT2P4S5eeCYECyKNPhr4cbEL9tc8w83SPwRC373o9uEdrvGKTZoJVAGxpOsZckMlEh9W23Pc72ew918RWQOBQ==} - - '@lezer/lr@1.4.1': - resolution: {integrity: sha512-CHsKq8DMKBf9b3yXPDIU4DbH+ZJd/sJdYOW2llbW/HudP5u0VS6Bfq1hLYfgU7uAYGFIyGGQIsSOXGPEErZiJw==} - - '@likashefqet/react-native-image-zoom@1.3.0': - resolution: {integrity: sha512-PLRd1hNMHe9LUn8b4rmLt86282geuaqP4Qd2rFWIloxMS2ePNTIaNlEUu3T3LaO8Pg9vhVV97TxfFeU8F+tcYQ==} - peerDependencies: - react: '>=16.x.x' - react-native: '>=0.62.x' - react-native-gesture-handler: '>=2.x.x' - react-native-reanimated: '>=2.x.x' - - '@malept/cross-spawn-promise@1.1.1': - resolution: {integrity: sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==} - engines: {node: '>= 10'} - - '@malept/flatpak-bundler@0.4.0': - resolution: {integrity: sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q==} - engines: {node: '>= 10.0.0'} - - '@manypkg/find-root@1.1.0': - resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} - - '@manypkg/get-packages@1.1.3': - resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} - - '@mdx-js/mdx@2.3.0': - resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==} - - '@mdx-js/react@2.3.0': - resolution: {integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==} - peerDependencies: - '@types/react': '*' - react: '>=16' + "@ledgerhq/wallet-api-simulator@1.2.0": + resolution: + { + integrity: sha512-EB4rqArFWut8A+Pzoi0uK1sqlGsF5fPYDql4IGH5ghdyKgh3Mq9svi5Um8h3+33aETB3hqCR2T2itN+kGxk3Tw==, + } + + "@leichtgewicht/ip-codec@2.0.5": + resolution: + { + integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==, + } + + "@lezer/common@1.2.1": + resolution: + { + integrity: sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==, + } + + "@lezer/highlight@1.2.0": + resolution: + { + integrity: sha512-WrS5Mw51sGrpqjlh3d4/fOwpEV2Hd3YOkp9DBt4k8XZQcoTHZFB7sx030A6OcahF4J1nDQAa3jXlTVVYH50IFA==, + } + + "@lezer/json@1.0.2": + resolution: + { + integrity: sha512-xHT2P4S5eeCYECyKNPhr4cbEL9tc8w83SPwRC373o9uEdrvGKTZoJVAGxpOsZckMlEh9W23Pc72ew918RWQOBQ==, + } + + "@lezer/lr@1.4.1": + resolution: + { + integrity: sha512-CHsKq8DMKBf9b3yXPDIU4DbH+ZJd/sJdYOW2llbW/HudP5u0VS6Bfq1hLYfgU7uAYGFIyGGQIsSOXGPEErZiJw==, + } + + "@likashefqet/react-native-image-zoom@1.3.0": + resolution: + { + integrity: sha512-PLRd1hNMHe9LUn8b4rmLt86282geuaqP4Qd2rFWIloxMS2ePNTIaNlEUu3T3LaO8Pg9vhVV97TxfFeU8F+tcYQ==, + } + peerDependencies: + react: ">=16.x.x" + react-native: ">=0.62.x" + react-native-gesture-handler: ">=2.x.x" + react-native-reanimated: ">=2.x.x" + + "@malept/cross-spawn-promise@1.1.1": + resolution: + { + integrity: sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==, + } + engines: { node: ">= 10" } + + "@malept/flatpak-bundler@0.4.0": + resolution: + { + integrity: sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q==, + } + engines: { node: ">= 10.0.0" } + + "@manypkg/find-root@1.1.0": + resolution: + { + integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==, + } + + "@manypkg/get-packages@1.1.3": + resolution: + { + integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==, + } + + "@mdx-js/mdx@2.3.0": + resolution: + { + integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==, + } + + "@mdx-js/react@2.3.0": + resolution: + { + integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==, + } + peerDependencies: + "@types/react": "*" + react: ">=16" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@mswjs/cookies@1.1.0': - resolution: {integrity: sha512-0ZcCVQxifZmhwNBoQIrystCb+2sWBY2Zw8lpfJBPCHGCA/HWqehITeCRVIv4VMy8MPlaHo2w2pTHFV2pFfqKPw==} - engines: {node: '>=18'} - - '@mswjs/interceptors@0.26.14': - resolution: {integrity: sha512-q4S8RGjOUzv3A3gCawuKkUEcNJXjdPaSqoRHFvuZPWQnc7yOw702iGBRDMJoBK+l0KSv9XN8YP5ek6duRzrpqw==} - engines: {node: '>=18'} - - '@mswjs/interceptors@0.29.1': - resolution: {integrity: sha512-3rDakgJZ77+RiQUuSK69t1F0m8BQKA8Vh5DCS5V0DWvNY67zob2JhhQrhCO0AKLGINTRSFd1tBaHcJTkhefoSw==} - engines: {node: '>=18'} - - '@multiversx/sdk-core@13.3.0': - resolution: {integrity: sha512-P8/8KzMrWL58nhtxg/Ti+18V1dg4YYCn4tY8Gw9+Ke9mErz9Q2+rvWirwBqKgv6romZDMhUB+x7fME1W2PiIng==} + "@mswjs/cookies@1.1.0": + resolution: + { + integrity: sha512-0ZcCVQxifZmhwNBoQIrystCb+2sWBY2Zw8lpfJBPCHGCA/HWqehITeCRVIv4VMy8MPlaHo2w2pTHFV2pFfqKPw==, + } + engines: { node: ">=18" } + + "@mswjs/interceptors@0.26.14": + resolution: + { + integrity: sha512-q4S8RGjOUzv3A3gCawuKkUEcNJXjdPaSqoRHFvuZPWQnc7yOw702iGBRDMJoBK+l0KSv9XN8YP5ek6duRzrpqw==, + } + engines: { node: ">=18" } + + "@mswjs/interceptors@0.29.1": + resolution: + { + integrity: sha512-3rDakgJZ77+RiQUuSK69t1F0m8BQKA8Vh5DCS5V0DWvNY67zob2JhhQrhCO0AKLGINTRSFd1tBaHcJTkhefoSw==, + } + engines: { node: ">=18" } + + "@multiversx/sdk-core@13.3.0": + resolution: + { + integrity: sha512-P8/8KzMrWL58nhtxg/Ti+18V1dg4YYCn4tY8Gw9+Ke9mErz9Q2+rvWirwBqKgv6romZDMhUB+x7fME1W2PiIng==, + } peerDependencies: bignumber.js: ^9.0.1 protobufjs: ^7.2.6 - '@multiversx/sdk-transaction-decoder@1.0.2': - resolution: {integrity: sha512-j43QsKquu8N51WLmVlJ7dV2P3A1448R7/ktvl8r3i6wRMpfdtzDPNofTdHmMRT7DdQdvs4+RNgz8hVKL11Etsw==} - - '@napi-rs/simple-git-android-arm-eabi@0.1.16': - resolution: {integrity: sha512-dbrCL0Pl5KZG7x7tXdtVsA5CO6At5ohDX3myf5xIYn9kN4jDFxsocl8bNt6Vb/hZQoJd8fI+k5VlJt+rFhbdVw==} - engines: {node: '>= 10'} + "@multiversx/sdk-transaction-decoder@1.0.2": + resolution: + { + integrity: sha512-j43QsKquu8N51WLmVlJ7dV2P3A1448R7/ktvl8r3i6wRMpfdtzDPNofTdHmMRT7DdQdvs4+RNgz8hVKL11Etsw==, + } + + "@napi-rs/simple-git-android-arm-eabi@0.1.16": + resolution: + { + integrity: sha512-dbrCL0Pl5KZG7x7tXdtVsA5CO6At5ohDX3myf5xIYn9kN4jDFxsocl8bNt6Vb/hZQoJd8fI+k5VlJt+rFhbdVw==, + } + engines: { node: ">= 10" } cpu: [arm] os: [android] - '@napi-rs/simple-git-android-arm64@0.1.16': - resolution: {integrity: sha512-xYz+TW5J09iK8SuTAKK2D5MMIsBUXVSs8nYp7HcMi8q6FCRO7yJj96YfP9PvKsc/k64hOyqGmL5DhCzY9Cu1FQ==} - engines: {node: '>= 10'} + "@napi-rs/simple-git-android-arm64@0.1.16": + resolution: + { + integrity: sha512-xYz+TW5J09iK8SuTAKK2D5MMIsBUXVSs8nYp7HcMi8q6FCRO7yJj96YfP9PvKsc/k64hOyqGmL5DhCzY9Cu1FQ==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [android] - '@napi-rs/simple-git-darwin-arm64@0.1.16': - resolution: {integrity: sha512-XfgsYqxhUE022MJobeiX563TJqyQyX4FmYCnqrtJwAfivESVeAJiH6bQIum8dDEYMHXCsG7nL8Ok0Dp8k2m42g==} - engines: {node: '>= 10'} + "@napi-rs/simple-git-darwin-arm64@0.1.16": + resolution: + { + integrity: sha512-XfgsYqxhUE022MJobeiX563TJqyQyX4FmYCnqrtJwAfivESVeAJiH6bQIum8dDEYMHXCsG7nL8Ok0Dp8k2m42g==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [darwin] - '@napi-rs/simple-git-darwin-x64@0.1.16': - resolution: {integrity: sha512-tkEVBhD6vgRCbeWsaAQqM3bTfpIVGeitamPPRVSbsq8qgzJ5Dx6ZedH27R7KSsA/uao7mZ3dsrNLXbu1Wy5MzA==} - engines: {node: '>= 10'} + "@napi-rs/simple-git-darwin-x64@0.1.16": + resolution: + { + integrity: sha512-tkEVBhD6vgRCbeWsaAQqM3bTfpIVGeitamPPRVSbsq8qgzJ5Dx6ZedH27R7KSsA/uao7mZ3dsrNLXbu1Wy5MzA==, + } + engines: { node: ">= 10" } cpu: [x64] os: [darwin] - '@napi-rs/simple-git-linux-arm-gnueabihf@0.1.16': - resolution: {integrity: sha512-R6VAyNnp/yRaT7DV1Ao3r67SqTWDa+fNq2LrNy0Z8gXk2wB9ZKlrxFtLPE1WSpWknWtyRDLpRlsorh7Evk7+7w==} - engines: {node: '>= 10'} + "@napi-rs/simple-git-linux-arm-gnueabihf@0.1.16": + resolution: + { + integrity: sha512-R6VAyNnp/yRaT7DV1Ao3r67SqTWDa+fNq2LrNy0Z8gXk2wB9ZKlrxFtLPE1WSpWknWtyRDLpRlsorh7Evk7+7w==, + } + engines: { node: ">= 10" } cpu: [arm] os: [linux] - '@napi-rs/simple-git-linux-arm64-gnu@0.1.16': - resolution: {integrity: sha512-LAGI0opFKw/HBMCV2qIBK3uWSEW9h4xd2ireZKLJy8DBPymX6NrWIamuxYNyCuACnFdPRxR4LaRFy4J5ZwuMdw==} - engines: {node: '>= 10'} + "@napi-rs/simple-git-linux-arm64-gnu@0.1.16": + resolution: + { + integrity: sha512-LAGI0opFKw/HBMCV2qIBK3uWSEW9h4xd2ireZKLJy8DBPymX6NrWIamuxYNyCuACnFdPRxR4LaRFy4J5ZwuMdw==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [linux] - '@napi-rs/simple-git-linux-arm64-musl@0.1.16': - resolution: {integrity: sha512-I57Ph0F0Yn2KW93ep+V1EzKhACqX0x49vvSiapqIsdDA2PifdEWLc1LJarBolmK7NKoPqKmf6lAKKO9lhiZzkg==} - engines: {node: '>= 10'} + "@napi-rs/simple-git-linux-arm64-musl@0.1.16": + resolution: + { + integrity: sha512-I57Ph0F0Yn2KW93ep+V1EzKhACqX0x49vvSiapqIsdDA2PifdEWLc1LJarBolmK7NKoPqKmf6lAKKO9lhiZzkg==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [linux] - '@napi-rs/simple-git-linux-x64-gnu@0.1.16': - resolution: {integrity: sha512-AZYYFY2V7hlcQASPEOWyOa3e1skzTct9QPzz0LiDM3f/hCFY/wBaU2M6NC5iG3d2Kr38heuyFS/+JqxLm5WaKA==} - engines: {node: '>= 10'} + "@napi-rs/simple-git-linux-x64-gnu@0.1.16": + resolution: + { + integrity: sha512-AZYYFY2V7hlcQASPEOWyOa3e1skzTct9QPzz0LiDM3f/hCFY/wBaU2M6NC5iG3d2Kr38heuyFS/+JqxLm5WaKA==, + } + engines: { node: ">= 10" } cpu: [x64] os: [linux] - '@napi-rs/simple-git-linux-x64-musl@0.1.16': - resolution: {integrity: sha512-9TyMcYSBJwjT8jwjY9m24BZbu7ozyWTjsmYBYNtK3B0Um1Ov6jthSNneLVvouQ6x+k3Ow+00TiFh6bvmT00r8g==} - engines: {node: '>= 10'} + "@napi-rs/simple-git-linux-x64-musl@0.1.16": + resolution: + { + integrity: sha512-9TyMcYSBJwjT8jwjY9m24BZbu7ozyWTjsmYBYNtK3B0Um1Ov6jthSNneLVvouQ6x+k3Ow+00TiFh6bvmT00r8g==, + } + engines: { node: ">= 10" } cpu: [x64] os: [linux] - '@napi-rs/simple-git-win32-arm64-msvc@0.1.16': - resolution: {integrity: sha512-uslJ1WuAHCYJWui6xjsyT47SjX6KOHDtClmNO8hqKz1pmDSNY7AjyUY8HxvD1lK9bDnWwc4JYhikS9cxCqHybw==} - engines: {node: '>= 10'} + "@napi-rs/simple-git-win32-arm64-msvc@0.1.16": + resolution: + { + integrity: sha512-uslJ1WuAHCYJWui6xjsyT47SjX6KOHDtClmNO8hqKz1pmDSNY7AjyUY8HxvD1lK9bDnWwc4JYhikS9cxCqHybw==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [win32] - '@napi-rs/simple-git-win32-x64-msvc@0.1.16': - resolution: {integrity: sha512-SoEaVeCZCDF1MP+M9bMSXsZWgEjk4On9GWADO5JOulvzR1bKjk0s9PMHwe/YztR9F0sJzrCxwtvBZowhSJsQPg==} - engines: {node: '>= 10'} + "@napi-rs/simple-git-win32-x64-msvc@0.1.16": + resolution: + { + integrity: sha512-SoEaVeCZCDF1MP+M9bMSXsZWgEjk4On9GWADO5JOulvzR1bKjk0s9PMHwe/YztR9F0sJzrCxwtvBZowhSJsQPg==, + } + engines: { node: ">= 10" } cpu: [x64] os: [win32] - '@napi-rs/simple-git@0.1.16': - resolution: {integrity: sha512-C5wRPw9waqL2jk3jEDeJv+f7ScuO3N0a39HVdyFLkwKxHH4Sya4ZbzZsu2JLi6eEqe7RuHipHL6mC7B2OfYZZw==} - engines: {node: '>= 10'} - - '@ndelangen/get-tarball@3.0.9': - resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==} - - '@near-js/accounts@1.0.2': - resolution: {integrity: sha512-KpyY9r+f55vJ0XCk17vyHeiiNbsmKY9T3ztXKLWQEr661XWJKyetQUBb3dyehf6DHXXnlxwwQNdYDK8d0x1nOQ==} - - '@near-js/crypto@1.2.0': - resolution: {integrity: sha512-iYpiynirW1cB9kNttSsbNhlN4LFR1Esq08aIFyFB/qGNy8DjLYYoe2g923YBxDbVMI6Ljk6AX3G+KDnG3S9lqg==} - - '@near-js/keystores-browser@0.0.8': - resolution: {integrity: sha512-ZWBbioO2TUdMkHbmHpwo+DC4CC9XAvS9umIBNgS1XBsY2y3NsG+dWU4bEiFC37fGBzJL9EFw+QJ6RxB+jeOfdQ==} - - '@near-js/keystores-node@0.0.8': - resolution: {integrity: sha512-wiVcKljXi7YkHyQrg1Aw7HubmSGRpC+jNgjCdNBd645Qr9YuSLr/OGTCdliO4QWalU+lUgBV63eSxzAMeUa3Aw==} - - '@near-js/keystores@0.0.8': - resolution: {integrity: sha512-H3JQroNbx0AvNpXsGiDdjVZCFPqd6Qx29XK618GhwSqvvmFQxq96sh51dmPhJ+jVxFUTt7Q9es8fujYbZceAzw==} - - '@near-js/providers@0.0.10': - resolution: {integrity: sha512-c3t2+34mL5YHn93pwPwJr6LPUZbpmBPtBoyhX105R8l8QxShy4L8IHPj5ZhBowN1+Yrq6c5Cnw57SqHHqwz9tg==} - - '@near-js/signers@0.1.0': - resolution: {integrity: sha512-EWnkzqLPcVzSXE4Y4HbtrJSqUEqVehn516PxCayRVRJ7bo6ytkas/U6e+J5Dn/vpH/Ny5Y/tcmt+A0s4vbCLZA==} - - '@near-js/transactions@1.1.0': - resolution: {integrity: sha512-0kP8unj0RND20lP67nCtDN3fz0CvO/C9AX0EqlT5dAyi4ZQBabgVQq272RtT9xnaoA7OP6OPB3GUWGJS+MwsTw==} - - '@near-js/types@0.0.4': - resolution: {integrity: sha512-8TTMbLMnmyG06R5YKWuS/qFG1tOA3/9lX4NgBqQPsvaWmDsa+D+QwOkrEHDegped0ZHQwcjAXjKML1S1TyGYKg==} - - '@near-js/utils@0.0.5': - resolution: {integrity: sha512-0YnPruP6xZc/scIAX7E3GrTrFMNAyB9bFZOoOdA60GPzHwTTfpXsdozZvsQN4LvfFuiCDN1OEhwx7EtJh43DRw==} - - '@near-js/wallet-account@1.0.2': - resolution: {integrity: sha512-bbouucpBgFtZ3bI7KvcYT8/r1q4w5UVIbbZqTUnuXpkceSQ7IxjeKCR00Iastj9EOXWAAAJBYkn0942QJjBC5w==} - - '@next/env@13.2.4': - resolution: {integrity: sha512-+Mq3TtpkeeKFZanPturjcXt+KHfKYnLlX6jMLyCrmpq6OOs4i1GqBOAauSkii9QeKCMTYzGppar21JU57b/GEA==} - - '@next/env@14.2.12': - resolution: {integrity: sha512-3fP29GIetdwVIfIRyLKM7KrvJaqepv+6pVodEbx0P5CaMLYBtx+7eEg8JYO5L9sveJO87z9eCReceZLi0hxO1Q==} - - '@next/eslint-plugin-next@13.5.6': - resolution: {integrity: sha512-ng7pU/DDsxPgT6ZPvuprxrkeew3XaRf4LAT4FabaEO/hAbvVx4P7wqnqdbTdDn1kgTvsI4tpIgT4Awn/m0bGbg==} - - '@next/swc-android-arm-eabi@13.2.4': - resolution: {integrity: sha512-DWlalTSkLjDU11MY11jg17O1gGQzpRccM9Oes2yTqj2DpHndajrXHGxj9HGtJ+idq2k7ImUdJVWS2h2l/EDJOw==} - engines: {node: '>= 10'} + "@napi-rs/simple-git@0.1.16": + resolution: + { + integrity: sha512-C5wRPw9waqL2jk3jEDeJv+f7ScuO3N0a39HVdyFLkwKxHH4Sya4ZbzZsu2JLi6eEqe7RuHipHL6mC7B2OfYZZw==, + } + engines: { node: ">= 10" } + + "@ndelangen/get-tarball@3.0.9": + resolution: + { + integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==, + } + + "@near-js/accounts@1.0.2": + resolution: + { + integrity: sha512-KpyY9r+f55vJ0XCk17vyHeiiNbsmKY9T3ztXKLWQEr661XWJKyetQUBb3dyehf6DHXXnlxwwQNdYDK8d0x1nOQ==, + } + + "@near-js/crypto@1.2.0": + resolution: + { + integrity: sha512-iYpiynirW1cB9kNttSsbNhlN4LFR1Esq08aIFyFB/qGNy8DjLYYoe2g923YBxDbVMI6Ljk6AX3G+KDnG3S9lqg==, + } + + "@near-js/keystores-browser@0.0.8": + resolution: + { + integrity: sha512-ZWBbioO2TUdMkHbmHpwo+DC4CC9XAvS9umIBNgS1XBsY2y3NsG+dWU4bEiFC37fGBzJL9EFw+QJ6RxB+jeOfdQ==, + } + + "@near-js/keystores-node@0.0.8": + resolution: + { + integrity: sha512-wiVcKljXi7YkHyQrg1Aw7HubmSGRpC+jNgjCdNBd645Qr9YuSLr/OGTCdliO4QWalU+lUgBV63eSxzAMeUa3Aw==, + } + + "@near-js/keystores@0.0.8": + resolution: + { + integrity: sha512-H3JQroNbx0AvNpXsGiDdjVZCFPqd6Qx29XK618GhwSqvvmFQxq96sh51dmPhJ+jVxFUTt7Q9es8fujYbZceAzw==, + } + + "@near-js/providers@0.0.10": + resolution: + { + integrity: sha512-c3t2+34mL5YHn93pwPwJr6LPUZbpmBPtBoyhX105R8l8QxShy4L8IHPj5ZhBowN1+Yrq6c5Cnw57SqHHqwz9tg==, + } + + "@near-js/signers@0.1.0": + resolution: + { + integrity: sha512-EWnkzqLPcVzSXE4Y4HbtrJSqUEqVehn516PxCayRVRJ7bo6ytkas/U6e+J5Dn/vpH/Ny5Y/tcmt+A0s4vbCLZA==, + } + + "@near-js/transactions@1.1.0": + resolution: + { + integrity: sha512-0kP8unj0RND20lP67nCtDN3fz0CvO/C9AX0EqlT5dAyi4ZQBabgVQq272RtT9xnaoA7OP6OPB3GUWGJS+MwsTw==, + } + + "@near-js/types@0.0.4": + resolution: + { + integrity: sha512-8TTMbLMnmyG06R5YKWuS/qFG1tOA3/9lX4NgBqQPsvaWmDsa+D+QwOkrEHDegped0ZHQwcjAXjKML1S1TyGYKg==, + } + + "@near-js/utils@0.0.5": + resolution: + { + integrity: sha512-0YnPruP6xZc/scIAX7E3GrTrFMNAyB9bFZOoOdA60GPzHwTTfpXsdozZvsQN4LvfFuiCDN1OEhwx7EtJh43DRw==, + } + + "@near-js/wallet-account@1.0.2": + resolution: + { + integrity: sha512-bbouucpBgFtZ3bI7KvcYT8/r1q4w5UVIbbZqTUnuXpkceSQ7IxjeKCR00Iastj9EOXWAAAJBYkn0942QJjBC5w==, + } + + "@next/env@13.2.4": + resolution: + { + integrity: sha512-+Mq3TtpkeeKFZanPturjcXt+KHfKYnLlX6jMLyCrmpq6OOs4i1GqBOAauSkii9QeKCMTYzGppar21JU57b/GEA==, + } + + "@next/env@14.2.12": + resolution: + { + integrity: sha512-3fP29GIetdwVIfIRyLKM7KrvJaqepv+6pVodEbx0P5CaMLYBtx+7eEg8JYO5L9sveJO87z9eCReceZLi0hxO1Q==, + } + + "@next/eslint-plugin-next@13.5.6": + resolution: + { + integrity: sha512-ng7pU/DDsxPgT6ZPvuprxrkeew3XaRf4LAT4FabaEO/hAbvVx4P7wqnqdbTdDn1kgTvsI4tpIgT4Awn/m0bGbg==, + } + + "@next/swc-android-arm-eabi@13.2.4": + resolution: + { + integrity: sha512-DWlalTSkLjDU11MY11jg17O1gGQzpRccM9Oes2yTqj2DpHndajrXHGxj9HGtJ+idq2k7ImUdJVWS2h2l/EDJOw==, + } + engines: { node: ">= 10" } cpu: [arm] os: [android] - '@next/swc-android-arm64@13.2.4': - resolution: {integrity: sha512-sRavmUImUCf332Gy+PjIfLkMhiRX1Ez4SI+3vFDRs1N5eXp+uNzjFUK/oLMMOzk6KFSkbiK/3Wt8+dHQR/flNg==} - engines: {node: '>= 10'} + "@next/swc-android-arm64@13.2.4": + resolution: + { + integrity: sha512-sRavmUImUCf332Gy+PjIfLkMhiRX1Ez4SI+3vFDRs1N5eXp+uNzjFUK/oLMMOzk6KFSkbiK/3Wt8+dHQR/flNg==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [android] - '@next/swc-darwin-arm64@13.2.4': - resolution: {integrity: sha512-S6vBl+OrInP47TM3LlYx65betocKUUlTZDDKzTiRDbsRESeyIkBtZ6Qi5uT2zQs4imqllJznVjFd1bXLx3Aa6A==} - engines: {node: '>= 10'} + "@next/swc-darwin-arm64@13.2.4": + resolution: + { + integrity: sha512-S6vBl+OrInP47TM3LlYx65betocKUUlTZDDKzTiRDbsRESeyIkBtZ6Qi5uT2zQs4imqllJznVjFd1bXLx3Aa6A==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [darwin] - '@next/swc-darwin-arm64@14.2.12': - resolution: {integrity: sha512-crHJ9UoinXeFbHYNok6VZqjKnd8rTd7K3Z2zpyzF1ch7vVNKmhjv/V7EHxep3ILoN8JB9AdRn/EtVVyG9AkCXw==} - engines: {node: '>= 10'} + "@next/swc-darwin-arm64@14.2.12": + resolution: + { + integrity: sha512-crHJ9UoinXeFbHYNok6VZqjKnd8rTd7K3Z2zpyzF1ch7vVNKmhjv/V7EHxep3ILoN8JB9AdRn/EtVVyG9AkCXw==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [darwin] - '@next/swc-darwin-x64@13.2.4': - resolution: {integrity: sha512-a6LBuoYGcFOPGd4o8TPo7wmv5FnMr+Prz+vYHopEDuhDoMSHOnC+v+Ab4D7F0NMZkvQjEJQdJS3rqgFhlZmKlw==} - engines: {node: '>= 10'} + "@next/swc-darwin-x64@13.2.4": + resolution: + { + integrity: sha512-a6LBuoYGcFOPGd4o8TPo7wmv5FnMr+Prz+vYHopEDuhDoMSHOnC+v+Ab4D7F0NMZkvQjEJQdJS3rqgFhlZmKlw==, + } + engines: { node: ">= 10" } cpu: [x64] os: [darwin] - '@next/swc-darwin-x64@14.2.12': - resolution: {integrity: sha512-JbEaGbWq18BuNBO+lCtKfxl563Uw9oy2TodnN2ioX00u7V1uzrsSUcg3Ep9ce+P0Z9es+JmsvL2/rLphz+Frcw==} - engines: {node: '>= 10'} + "@next/swc-darwin-x64@14.2.12": + resolution: + { + integrity: sha512-JbEaGbWq18BuNBO+lCtKfxl563Uw9oy2TodnN2ioX00u7V1uzrsSUcg3Ep9ce+P0Z9es+JmsvL2/rLphz+Frcw==, + } + engines: { node: ">= 10" } cpu: [x64] os: [darwin] - '@next/swc-freebsd-x64@13.2.4': - resolution: {integrity: sha512-kkbzKVZGPaXRBPisoAQkh3xh22r+TD+5HwoC5bOkALraJ0dsOQgSMAvzMXKsN3tMzJUPS0tjtRf1cTzrQ0I5vQ==} - engines: {node: '>= 10'} + "@next/swc-freebsd-x64@13.2.4": + resolution: + { + integrity: sha512-kkbzKVZGPaXRBPisoAQkh3xh22r+TD+5HwoC5bOkALraJ0dsOQgSMAvzMXKsN3tMzJUPS0tjtRf1cTzrQ0I5vQ==, + } + engines: { node: ">= 10" } cpu: [x64] os: [freebsd] - '@next/swc-linux-arm-gnueabihf@13.2.4': - resolution: {integrity: sha512-7qA1++UY0fjprqtjBZaOA6cas/7GekpjVsZn/0uHvquuITFCdKGFCsKNBx3S0Rpxmx6WYo0GcmhNRM9ru08BGg==} - engines: {node: '>= 10'} + "@next/swc-linux-arm-gnueabihf@13.2.4": + resolution: + { + integrity: sha512-7qA1++UY0fjprqtjBZaOA6cas/7GekpjVsZn/0uHvquuITFCdKGFCsKNBx3S0Rpxmx6WYo0GcmhNRM9ru08BGg==, + } + engines: { node: ">= 10" } cpu: [arm] os: [linux] - '@next/swc-linux-arm64-gnu@13.2.4': - resolution: {integrity: sha512-xzYZdAeq883MwXgcwc72hqo/F/dwUxCukpDOkx/j1HTq/J0wJthMGjinN9wH5bPR98Mfeh1MZJ91WWPnZOedOg==} - engines: {node: '>= 10'} + "@next/swc-linux-arm64-gnu@13.2.4": + resolution: + { + integrity: sha512-xzYZdAeq883MwXgcwc72hqo/F/dwUxCukpDOkx/j1HTq/J0wJthMGjinN9wH5bPR98Mfeh1MZJ91WWPnZOedOg==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-gnu@14.2.12': - resolution: {integrity: sha512-qBy7OiXOqZrdp88QEl2H4fWalMGnSCrr1agT/AVDndlyw2YJQA89f3ttR/AkEIP9EkBXXeGl6cC72/EZT5r6rw==} - engines: {node: '>= 10'} + "@next/swc-linux-arm64-gnu@14.2.12": + resolution: + { + integrity: sha512-qBy7OiXOqZrdp88QEl2H4fWalMGnSCrr1agT/AVDndlyw2YJQA89f3ttR/AkEIP9EkBXXeGl6cC72/EZT5r6rw==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-musl@13.2.4': - resolution: {integrity: sha512-8rXr3WfmqSiYkb71qzuDP6I6R2T2tpkmf83elDN8z783N9nvTJf2E7eLx86wu2OJCi4T05nuxCsh4IOU3LQ5xw==} - engines: {node: '>= 10'} + "@next/swc-linux-arm64-musl@13.2.4": + resolution: + { + integrity: sha512-8rXr3WfmqSiYkb71qzuDP6I6R2T2tpkmf83elDN8z783N9nvTJf2E7eLx86wu2OJCi4T05nuxCsh4IOU3LQ5xw==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-musl@14.2.12': - resolution: {integrity: sha512-EfD9L7o9biaQxjwP1uWXnk3vYZi64NVcKUN83hpVkKocB7ogJfyH2r7o1pPnMtir6gHZiGCeHKagJ0yrNSLNHw==} - engines: {node: '>= 10'} + "@next/swc-linux-arm64-musl@14.2.12": + resolution: + { + integrity: sha512-EfD9L7o9biaQxjwP1uWXnk3vYZi64NVcKUN83hpVkKocB7ogJfyH2r7o1pPnMtir6gHZiGCeHKagJ0yrNSLNHw==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [linux] - '@next/swc-linux-x64-gnu@13.2.4': - resolution: {integrity: sha512-Ngxh51zGSlYJ4EfpKG4LI6WfquulNdtmHg1yuOYlaAr33KyPJp4HeN/tivBnAHcZkoNy0hh/SbwDyCnz5PFJQQ==} - engines: {node: '>= 10'} + "@next/swc-linux-x64-gnu@13.2.4": + resolution: + { + integrity: sha512-Ngxh51zGSlYJ4EfpKG4LI6WfquulNdtmHg1yuOYlaAr33KyPJp4HeN/tivBnAHcZkoNy0hh/SbwDyCnz5PFJQQ==, + } + engines: { node: ">= 10" } cpu: [x64] os: [linux] - '@next/swc-linux-x64-gnu@14.2.12': - resolution: {integrity: sha512-iQ+n2pxklJew9IpE47hE/VgjmljlHqtcD5UhZVeHICTPbLyrgPehaKf2wLRNjYH75udroBNCgrSSVSVpAbNoYw==} - engines: {node: '>= 10'} + "@next/swc-linux-x64-gnu@14.2.12": + resolution: + { + integrity: sha512-iQ+n2pxklJew9IpE47hE/VgjmljlHqtcD5UhZVeHICTPbLyrgPehaKf2wLRNjYH75udroBNCgrSSVSVpAbNoYw==, + } + engines: { node: ">= 10" } cpu: [x64] os: [linux] - '@next/swc-linux-x64-musl@13.2.4': - resolution: {integrity: sha512-gOvwIYoSxd+j14LOcvJr+ekd9fwYT1RyMAHOp7znA10+l40wkFiMONPLWiZuHxfRk+Dy7YdNdDh3ImumvL6VwA==} - engines: {node: '>= 10'} + "@next/swc-linux-x64-musl@13.2.4": + resolution: + { + integrity: sha512-gOvwIYoSxd+j14LOcvJr+ekd9fwYT1RyMAHOp7znA10+l40wkFiMONPLWiZuHxfRk+Dy7YdNdDh3ImumvL6VwA==, + } + engines: { node: ">= 10" } cpu: [x64] os: [linux] - '@next/swc-linux-x64-musl@14.2.12': - resolution: {integrity: sha512-rFkUkNwcQ0ODn7cxvcVdpHlcOpYxMeyMfkJuzaT74xjAa5v4fxP4xDk5OoYmPi8QNLDs3UgZPMSBmpBuv9zKWA==} - engines: {node: '>= 10'} + "@next/swc-linux-x64-musl@14.2.12": + resolution: + { + integrity: sha512-rFkUkNwcQ0ODn7cxvcVdpHlcOpYxMeyMfkJuzaT74xjAa5v4fxP4xDk5OoYmPi8QNLDs3UgZPMSBmpBuv9zKWA==, + } + engines: { node: ">= 10" } cpu: [x64] os: [linux] - '@next/swc-win32-arm64-msvc@13.2.4': - resolution: {integrity: sha512-q3NJzcfClgBm4HvdcnoEncmztxrA5GXqKeiZ/hADvC56pwNALt3ngDC6t6qr1YW9V/EPDxCYeaX4zYxHciW4Dw==} - engines: {node: '>= 10'} + "@next/swc-win32-arm64-msvc@13.2.4": + resolution: + { + integrity: sha512-q3NJzcfClgBm4HvdcnoEncmztxrA5GXqKeiZ/hADvC56pwNALt3ngDC6t6qr1YW9V/EPDxCYeaX4zYxHciW4Dw==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [win32] - '@next/swc-win32-arm64-msvc@14.2.12': - resolution: {integrity: sha512-PQFYUvwtHs/u0K85SG4sAdDXYIPXpETf9mcEjWc0R4JmjgMKSDwIU/qfZdavtP6MPNiMjuKGXHCtyhR/M5zo8g==} - engines: {node: '>= 10'} + "@next/swc-win32-arm64-msvc@14.2.12": + resolution: + { + integrity: sha512-PQFYUvwtHs/u0K85SG4sAdDXYIPXpETf9mcEjWc0R4JmjgMKSDwIU/qfZdavtP6MPNiMjuKGXHCtyhR/M5zo8g==, + } + engines: { node: ">= 10" } cpu: [arm64] os: [win32] - '@next/swc-win32-ia32-msvc@13.2.4': - resolution: {integrity: sha512-/eZ5ncmHUYtD2fc6EUmAIZlAJnVT2YmxDsKs1Ourx0ttTtvtma/WKlMV5NoUsyOez0f9ExLyOpeCoz5aj+MPXw==} - engines: {node: '>= 10'} + "@next/swc-win32-ia32-msvc@13.2.4": + resolution: + { + integrity: sha512-/eZ5ncmHUYtD2fc6EUmAIZlAJnVT2YmxDsKs1Ourx0ttTtvtma/WKlMV5NoUsyOez0f9ExLyOpeCoz5aj+MPXw==, + } + engines: { node: ">= 10" } cpu: [ia32] os: [win32] - '@next/swc-win32-ia32-msvc@14.2.12': - resolution: {integrity: sha512-FAj2hMlcbeCV546eU2tEv41dcJb4NeqFlSXU/xL/0ehXywHnNpaYajOUvn3P8wru5WyQe6cTZ8fvckj/2XN4Vw==} - engines: {node: '>= 10'} + "@next/swc-win32-ia32-msvc@14.2.12": + resolution: + { + integrity: sha512-FAj2hMlcbeCV546eU2tEv41dcJb4NeqFlSXU/xL/0ehXywHnNpaYajOUvn3P8wru5WyQe6cTZ8fvckj/2XN4Vw==, + } + engines: { node: ">= 10" } cpu: [ia32] os: [win32] - '@next/swc-win32-x64-msvc@13.2.4': - resolution: {integrity: sha512-0MffFmyv7tBLlji01qc0IaPP/LVExzvj7/R5x1Jph1bTAIj4Vu81yFQWHHQAP6r4ff9Ukj1mBK6MDNVXm7Tcvw==} - engines: {node: '>= 10'} + "@next/swc-win32-x64-msvc@13.2.4": + resolution: + { + integrity: sha512-0MffFmyv7tBLlji01qc0IaPP/LVExzvj7/R5x1Jph1bTAIj4Vu81yFQWHHQAP6r4ff9Ukj1mBK6MDNVXm7Tcvw==, + } + engines: { node: ">= 10" } cpu: [x64] os: [win32] - '@next/swc-win32-x64-msvc@14.2.12': - resolution: {integrity: sha512-yu8QvV53sBzoIVRHsxCHqeuS8jYq6Lrmdh0briivuh+Brsp6xjg80MAozUsBTAV9KNmY08KlX0KYTWz1lbPzEg==} - engines: {node: '>= 10'} + "@next/swc-win32-x64-msvc@14.2.12": + resolution: + { + integrity: sha512-yu8QvV53sBzoIVRHsxCHqeuS8jYq6Lrmdh0briivuh+Brsp6xjg80MAozUsBTAV9KNmY08KlX0KYTWz1lbPzEg==, + } + engines: { node: ">= 10" } cpu: [x64] os: [win32] - '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': - resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} - - '@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.0': - resolution: {integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==} - - '@noble/ed25519@1.7.3': - resolution: {integrity: sha512-iR8GBkDt0Q3GyaVcIu7mSsVIqnFbkbRzGLWlvhwunacoLwt4J3swfKhfaM6rN6WY+TBGoYT1GtT1mIh2/jGbRQ==} - - '@noble/hashes@1.1.5': - resolution: {integrity: sha512-LTMZiiLc+V4v1Yi16TD6aX2gmtKszNye0pQgbaLqkvhIqP7nVsSaJsWloGQjJfJ8offaoP5GtX3yY5swbcJxxQ==} - - '@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/secp256k1@1.7.1': - resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==} - - '@node-ipc/js-queue@2.0.3': - resolution: {integrity: sha512-fL1wpr8hhD5gT2dA1qifeVaoDFlQR5es8tFuKqjHX+kdOtdNHnxkVZbtIrR2rxnMFvehkjaZRNV2H/gPXlb0hw==} - engines: {node: '>=1.0.0'} - - '@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'} - - '@npmcli/fs@1.1.1': - resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} - - '@npmcli/move-file@1.1.2': - resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} - engines: {node: '>=10'} + "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": + resolution: + { + integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==, + } + + "@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.0": + resolution: + { + integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==, + } + + "@noble/ed25519@1.7.3": + resolution: + { + integrity: sha512-iR8GBkDt0Q3GyaVcIu7mSsVIqnFbkbRzGLWlvhwunacoLwt4J3swfKhfaM6rN6WY+TBGoYT1GtT1mIh2/jGbRQ==, + } + + "@noble/hashes@1.1.5": + resolution: + { + integrity: sha512-LTMZiiLc+V4v1Yi16TD6aX2gmtKszNye0pQgbaLqkvhIqP7nVsSaJsWloGQjJfJ8offaoP5GtX3yY5swbcJxxQ==, + } + + "@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/secp256k1@1.7.1": + resolution: + { + integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==, + } + + "@node-ipc/js-queue@2.0.3": + resolution: + { + integrity: sha512-fL1wpr8hhD5gT2dA1qifeVaoDFlQR5es8tFuKqjHX+kdOtdNHnxkVZbtIrR2rxnMFvehkjaZRNV2H/gPXlb0hw==, + } + engines: { node: ">=1.0.0" } + + "@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" } + + "@npmcli/fs@1.1.1": + resolution: + { + integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==, + } + + "@npmcli/fs@3.1.1": + resolution: + { + integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + + "@npmcli/move-file@1.1.2": + resolution: + { + integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==, + } + engines: { node: ">=10" } deprecated: This functionality has been moved to @npmcli/fs - '@octokit/auth-app@6.1.1': - resolution: {integrity: sha512-VrTtzRpyuT5nYGUWeGWQqH//hqEZDV+/yb6+w5wmWpmmUA1Tx950XsAc2mBBfvusfcdF2E7w8jZ1r1WwvfZ9pA==} - engines: {node: '>= 18'} - - '@octokit/auth-oauth-app@7.1.0': - resolution: {integrity: sha512-w+SyJN/b0l/HEb4EOPRudo7uUOSW51jcK1jwLa+4r7PA8FPFpoxEnHBHMITqCsc/3Vo2qqFjgQfz/xUUvsSQnA==} - engines: {node: '>= 18'} - - '@octokit/auth-oauth-device@6.1.0': - resolution: {integrity: sha512-FNQ7cb8kASufd6Ej4gnJ3f1QB5vJitkoV1O0/g6e6lUsQ7+VsSNRHRmFScN2tV4IgKA12frrr/cegUs0t+0/Lw==} - engines: {node: '>= 18'} - - '@octokit/auth-oauth-user@4.1.0': - resolution: {integrity: sha512-FrEp8mtFuS/BrJyjpur+4GARteUCrPeR/tZJzD8YourzoVhRics7u7we/aDcKv+yywRNwNi/P4fRi631rG/OyQ==} - engines: {node: '>= 18'} - - '@octokit/auth-token@2.5.0': - resolution: {integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==} - - '@octokit/auth-token@4.0.0': - resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==} - engines: {node: '>= 18'} - - '@octokit/auth-unauthenticated@5.0.1': - resolution: {integrity: sha512-oxeWzmBFxWd+XolxKTc4zr+h3mt+yofn4r7OfoIkR/Cj/o70eEGmPsFbueyJE2iBAGpjgTnEOKM3pnuEGVmiqg==} - engines: {node: '>= 18'} - - '@octokit/core@3.6.0': - resolution: {integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==} - - '@octokit/core@5.1.0': - resolution: {integrity: sha512-BDa2VAMLSh3otEiaMJ/3Y36GU4qf6GI+VivQ/P41NC6GHcdxpKlqV0ikSZ5gdQsmS3ojXeRx5vasgNTinF0Q4g==} - engines: {node: '>= 18'} - - '@octokit/endpoint@6.0.12': - resolution: {integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==} - - '@octokit/endpoint@9.0.4': - resolution: {integrity: sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==} - engines: {node: '>= 18'} - - '@octokit/graphql@4.8.0': - resolution: {integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==} - - '@octokit/graphql@7.0.2': - resolution: {integrity: sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==} - engines: {node: '>= 18'} - - '@octokit/oauth-authorization-url@6.0.2': - resolution: {integrity: sha512-CdoJukjXXxqLNK4y/VOiVzQVjibqoj/xHgInekviUJV73y/BSIcwvJ/4aNHPBPKcPWFnd4/lO9uqRV65jXhcLA==} - engines: {node: '>= 18'} - - '@octokit/oauth-methods@4.1.0': - resolution: {integrity: sha512-4tuKnCRecJ6CG6gr0XcEXdZtkTDbfbnD5oaHBmLERTjTMZNi2CbfEHZxPU41xXLDG4DfKf+sonu00zvKI9NSbw==} - engines: {node: '>= 18'} - - '@octokit/openapi-types@12.11.0': - resolution: {integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==} - - '@octokit/openapi-types@20.0.0': - resolution: {integrity: sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==} - - '@octokit/openapi-types@22.2.0': - resolution: {integrity: sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg==} - - '@octokit/plugin-enterprise-compatibility@4.1.0': - resolution: {integrity: sha512-a8QehVu9Iy4k+m2XgG2rrF4m9vhlRIaefOMr0yJzgQCt4KpiTj5mZVrzSwagyOovkJdD0yDolQazBQZqPWTFSQ==} - engines: {node: '>= 18'} - - '@octokit/plugin-paginate-rest@2.21.3': - resolution: {integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==} - peerDependencies: - '@octokit/core': '>=2' - - '@octokit/plugin-paginate-rest@9.2.1': - resolution: {integrity: sha512-wfGhE/TAkXZRLjksFXuDZdmGnJQHvtU/joFQdweXUgzo1XwvBCD4o4+75NtFfjfLK5IwLf9vHTfSiU3sLRYpRw==} - engines: {node: '>= 18'} - peerDependencies: - '@octokit/core': '5' - - '@octokit/plugin-request-log@1.0.4': - resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} - peerDependencies: - '@octokit/core': '>=3' - - '@octokit/plugin-rest-endpoint-methods@10.4.1': - resolution: {integrity: sha512-xV1b+ceKV9KytQe3zCVqjg+8GTGfDYwaT1ATU5isiUyVtlVAO3HNdzpS4sr4GBx4hxQ46s7ITtZrAsxG22+rVg==} - engines: {node: '>= 18'} - peerDependencies: - '@octokit/core': '5' - - '@octokit/plugin-rest-endpoint-methods@5.16.2': - resolution: {integrity: sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==} - peerDependencies: - '@octokit/core': '>=3' - - '@octokit/plugin-retry@6.0.1': - resolution: {integrity: sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==} - engines: {node: '>= 18'} - peerDependencies: - '@octokit/core': '>=5' - - '@octokit/plugin-throttling@8.2.0': - resolution: {integrity: sha512-nOpWtLayKFpgqmgD0y3GqXafMFuKcA4tRPZIfu7BArd2lEZeb1988nhWhwx4aZWmjDmUfdgVf7W+Tt4AmvRmMQ==} - engines: {node: '>= 18'} - peerDependencies: - '@octokit/core': ^5.0.0 - - '@octokit/request-error@2.1.0': - resolution: {integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==} - - '@octokit/request-error@5.0.1': - resolution: {integrity: sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==} - engines: {node: '>= 18'} - - '@octokit/request-error@5.1.0': - resolution: {integrity: sha512-GETXfE05J0+7H2STzekpKObFe765O5dlAKUTLNGeH+x47z7JjXHfsHKo5z21D/o/IOZTUEI6nyWyR+bZVP/n5Q==} - engines: {node: '>= 18'} - - '@octokit/request@5.6.3': - resolution: {integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==} - - '@octokit/request@8.2.0': - resolution: {integrity: sha512-exPif6x5uwLqv1N1irkLG1zZNJkOtj8bZxuVHd71U5Ftuxf2wGNvAJyNBcPbPC+EBzwYEbBDdSFb8EPcjpYxPQ==} - engines: {node: '>= 18'} - - '@octokit/request@8.4.0': - resolution: {integrity: sha512-9Bb014e+m2TgBeEJGEbdplMVWwPmL1FPtggHQRkV+WVsMggPtEkLKPlcVYm/o8xKLkpJ7B+6N8WfQMtDLX2Dpw==} - engines: {node: '>= 18'} - - '@octokit/rest@18.12.0': - resolution: {integrity: sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==} - - '@octokit/types@12.6.0': - resolution: {integrity: sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==} - - '@octokit/types@13.5.0': - resolution: {integrity: sha512-HdqWTf5Z3qwDVlzCrP8UJquMwunpDiMPt5er+QjGzL4hqr/vBVY/MauQgS1xWxCDT1oMx1EULyqxncdCY/NVSQ==} - - '@octokit/types@6.41.0': - resolution: {integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==} - - '@octokit/webhooks-methods@4.1.0': - resolution: {integrity: sha512-zoQyKw8h9STNPqtm28UGOYFE7O6D4Il8VJwhAtMHFt2C4L0VQT1qGKLeefUOqHNs1mNRYSadVv7x0z8U2yyeWQ==} - engines: {node: '>= 18'} - - '@octokit/webhooks-types@7.4.0': - resolution: {integrity: sha512-FE2V+QZ2UYlh+9wWd5BPLNXG+J/XUD/PPq0ovS+nCcGX4+3qVbi3jYOmCTW48hg9SBBLtInx9+o7fFt4H5iP0Q==} - - '@octokit/webhooks@12.2.0': - resolution: {integrity: sha512-CyuLJ0/P7bKZ+kIYw+fnkeVdhUzNuDKgNSI7pU/m7Nod0T7kP+s4s2f0pNmG9HL8/RZN1S0ZWTDll3VTMrFLAw==} - engines: {node: '>= 18'} - - '@open-draft/deferred-promise@2.2.0': - resolution: {integrity: sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==} - - '@open-draft/logger@0.3.0': - resolution: {integrity: sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==} - - '@open-draft/until@2.1.0': - resolution: {integrity: sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==} - - '@open-rpc/client-js@1.8.1': - resolution: {integrity: sha512-vV+Hetl688nY/oWI9IFY0iKDrWuLdYhf7OIKI6U1DcnJV7r4gAgwRJjEr1QVYszUc0gjkHoQJzqevmXMGLyA0g==} - - '@opentelemetry/api-logs@0.52.1': - resolution: {integrity: sha512-qnSqB2DQ9TPP96dl8cDubDvrUyWc0/sK81xHTK8eSUspzDM3bsewX903qclQFvVhgStjRWdC5bLb3kQqMkfV5A==} - engines: {node: '>=14'} - - '@opentelemetry/api@1.8.0': - resolution: {integrity: sha512-I/s6F7yKUDdtMsoBWXJe8Qz40Tui5vsuKCWJEWVL+5q9sSWRzzx6v2KeNsOBEwd94j0eWkpWCH4yB6rZg9Mf0w==} - engines: {node: '>=8.0.0'} - - '@opentelemetry/api@1.9.0': - resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==} - engines: {node: '>=8.0.0'} - - '@opentelemetry/context-async-hooks@1.25.1': - resolution: {integrity: sha512-UW/ge9zjvAEmRWVapOP0qyCvPulWU6cQxGxDbWEFfGOj1VBBZAuOqTo3X6yWmDTD3Xe15ysCZChHncr2xFMIfQ==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': '>=1.0.0 <1.10.0' - - '@opentelemetry/core@1.25.1': - resolution: {integrity: sha512-GeT/l6rBYWVQ4XArluLVB6WWQ8flHbdb6r2FCHC3smtdOAbrJBIv35tpV/yp9bmYUJf+xmZpu9DRTIeJVhFbEQ==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': '>=1.0.0 <1.10.0' - - '@opentelemetry/instrumentation-connect@0.37.0': - resolution: {integrity: sha512-SeQktDIH5rNzjiEiazWiJAIXkmnLOnNV7wwHpahrqE0Ph+Z3heqMfxRtoMtbdJSIYLfcNZYO51AjxZ00IXufdw==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - - '@opentelemetry/instrumentation-express@0.40.1': - resolution: {integrity: sha512-+RKMvVe2zw3kIXRup9c1jFu3T4d0fs5aKy015TpiMyoCKX1UMu3Z0lfgYtuyiSTANvg5hZnDbWmQmqSPj9VTvg==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - - '@opentelemetry/instrumentation-fastify@0.37.0': - resolution: {integrity: sha512-WRjwzNZgupSzbEYvo9s+QuHJRqZJjVdNxSEpGBwWK8RKLlHGwGVAu0gcc2gPamJWUJsGqPGvahAPWM18ZkWj6A==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - - '@opentelemetry/instrumentation-graphql@0.41.0': - resolution: {integrity: sha512-R/gXeljgIhaRDKquVkKYT5QHPnFouM8ooyePZEP0kqyaVAedtR1V7NfAUJbxfTG5fBQa5wdmLjvu63+tzRXZCA==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - - '@opentelemetry/instrumentation-hapi@0.39.0': - resolution: {integrity: sha512-ik2nA9Yj2s2ay+aNY+tJsKCsEx6Tsc2g/MK0iWBW5tibwrWKTy1pdVt5sB3kd5Gkimqj23UV5+FH2JFcQLeKug==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - - '@opentelemetry/instrumentation-http@0.52.1': - resolution: {integrity: sha512-dG/aevWhaP+7OLv4BQQSEKMJv8GyeOp3Wxl31NHqE8xo9/fYMfEljiZphUHIfyg4gnZ9swMyWjfOQs5GUQe54Q==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - - '@opentelemetry/instrumentation-ioredis@0.41.0': - resolution: {integrity: sha512-rxiLloU8VyeJGm5j2fZS8ShVdB82n7VNP8wTwfUQqDwRfHCnkzGr+buKoxuhGD91gtwJ91RHkjHA1Eg6RqsUTg==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - - '@opentelemetry/instrumentation-koa@0.41.0': - resolution: {integrity: sha512-mbPnDt7ELvpM2S0vixYUsde7122lgegLOJQxx8iJQbB8YHal/xnTh9v7IfArSVzIDo+E+080hxZyUZD4boOWkw==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - - '@opentelemetry/instrumentation-mongodb@0.45.0': - resolution: {integrity: sha512-xnZP9+ayeB1JJyNE9cIiwhOJTzNEsRhXVdLgfzmrs48Chhhk026mQdM5CITfyXSCfN73FGAIB8d91+pflJEfWQ==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - - '@opentelemetry/instrumentation-mongoose@0.39.0': - resolution: {integrity: sha512-J1r66A7zJklPPhMtrFOO7/Ud2p0Pv5u8+r23Cd1JUH6fYPmftNJVsLp2urAt6PHK4jVqpP/YegN8wzjJ2mZNPQ==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - - '@opentelemetry/instrumentation-mysql2@0.39.0': - resolution: {integrity: sha512-Iypuq2z6TCfriAXCIZjRq8GTFCKhQv5SpXbmI+e60rYdXw8NHtMH4NXcGF0eKTuoCsC59IYSTUvDQYDKReaszA==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - - '@opentelemetry/instrumentation-mysql@0.39.0': - resolution: {integrity: sha512-8snHPh83rhrDf31v9Kq0Nf+ts8hdr7NguuszRqZomZBHgE0+UyXZSkXHAAFZoBPPRMGyM68uaFE5hVtFl+wOcA==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - - '@opentelemetry/instrumentation-nestjs-core@0.38.0': - resolution: {integrity: sha512-M381Df1dM8aqihZz2yK+ugvMFK5vlHG/835dc67Sx2hH4pQEQYDA2PpFPTgc9AYYOydQaj7ClFQunESimjXDgg==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - - '@opentelemetry/instrumentation-pg@0.42.0': - resolution: {integrity: sha512-sjgcM8CswYy8zxHgXv4RAZ09DlYhQ+9TdlourUs63Df/ek5RrB1ZbjznqW7PB6c3TyJJmX6AVtPTjAsROovEjA==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - - '@opentelemetry/instrumentation-redis-4@0.40.0': - resolution: {integrity: sha512-0ieQYJb6yl35kXA75LQUPhHtGjtQU9L85KlWa7d4ohBbk/iQKZ3X3CFl5jC5vNMq/GGPB3+w3IxNvALlHtrp7A==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - - '@opentelemetry/instrumentation@0.43.0': - resolution: {integrity: sha512-S1uHE+sxaepgp+t8lvIDuRgyjJWisAb733198kwQTUc9ZtYQ2V2gmyCtR1x21ePGVLoMiX/NWY7WA290hwkjJQ==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - - '@opentelemetry/instrumentation@0.52.1': - resolution: {integrity: sha512-uXJbYU/5/MBHjMp1FqrILLRuiJCs3Ofk0MeRDk8g1S1gD47U8X3JnSwcMO1rtRo1x1a7zKaQHaoYu49p/4eSKw==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.3.0 - - '@opentelemetry/redis-common@0.36.2': - resolution: {integrity: sha512-faYX1N0gpLhej/6nyp6bgRjzAKXn5GOEMYY7YhciSfCoITAktLUtQ36d24QEWNA1/WA1y6qQunCe0OhHRkVl9g==} - engines: {node: '>=14'} - - '@opentelemetry/resources@1.25.1': - resolution: {integrity: sha512-pkZT+iFYIZsVn6+GzM0kSX+u3MSLCY9md+lIJOoKl/P+gJFfxJte/60Usdp8Ce4rOs8GduUpSPNe1ddGyDT1sQ==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': '>=1.0.0 <1.10.0' - - '@opentelemetry/sdk-metrics@1.25.1': - resolution: {integrity: sha512-9Mb7q5ioFL4E4dDrc4wC/A3NTHDat44v4I3p2pLPSxRvqUbDIQyMVr9uK+EU69+HWhlET1VaSrRzwdckWqY15Q==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': '>=1.3.0 <1.10.0' - - '@opentelemetry/sdk-trace-base@1.25.1': - resolution: {integrity: sha512-C8k4hnEbc5FamuZQ92nTOp8X/diCY56XUTnMiv9UTuJitCzaNNHAVsdm5+HLCdI8SLQsLWIrG38tddMxLVoftw==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': '>=1.0.0 <1.10.0' - - '@opentelemetry/semantic-conventions@1.25.1': - resolution: {integrity: sha512-ZDjMJJQRlyk8A1KZFCc+bCbsyrn1wTwdNt56F7twdfUfnHUZUq77/WfONCj8p72NZOyP7pNTdUWSTYC3GTbuuQ==} - engines: {node: '>=14'} - - '@opentelemetry/sql-common@0.40.1': - resolution: {integrity: sha512-nSDlnHSqzC3pXn/wZEZVLuAuJ1MYMXPBwtv2qAbCa3847SaHItdE7SzUq/Jtb0KZmh1zfAbNi3AAMjztTT4Ugg==} - engines: {node: '>=14'} - peerDependencies: - '@opentelemetry/api': ^1.1.0 - - '@pkgjs/parseargs@0.11.0': - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} - - '@pkgr/core@0.1.1': - resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} - engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - - '@playwright/test@1.40.1': - resolution: {integrity: sha512-EaaawMTOeEItCRvfmkI9v6rBkF1svM8wjl/YPRrg2N2Wmp+4qJYkWtJsbew1szfKKDm6fPLy4YAanBhIlf9dWw==} - engines: {node: '>=16'} + "@octokit/auth-app@6.1.1": + resolution: + { + integrity: sha512-VrTtzRpyuT5nYGUWeGWQqH//hqEZDV+/yb6+w5wmWpmmUA1Tx950XsAc2mBBfvusfcdF2E7w8jZ1r1WwvfZ9pA==, + } + engines: { node: ">= 18" } + + "@octokit/auth-oauth-app@7.1.0": + resolution: + { + integrity: sha512-w+SyJN/b0l/HEb4EOPRudo7uUOSW51jcK1jwLa+4r7PA8FPFpoxEnHBHMITqCsc/3Vo2qqFjgQfz/xUUvsSQnA==, + } + engines: { node: ">= 18" } + + "@octokit/auth-oauth-device@6.1.0": + resolution: + { + integrity: sha512-FNQ7cb8kASufd6Ej4gnJ3f1QB5vJitkoV1O0/g6e6lUsQ7+VsSNRHRmFScN2tV4IgKA12frrr/cegUs0t+0/Lw==, + } + engines: { node: ">= 18" } + + "@octokit/auth-oauth-user@4.1.0": + resolution: + { + integrity: sha512-FrEp8mtFuS/BrJyjpur+4GARteUCrPeR/tZJzD8YourzoVhRics7u7we/aDcKv+yywRNwNi/P4fRi631rG/OyQ==, + } + engines: { node: ">= 18" } + + "@octokit/auth-token@2.5.0": + resolution: + { + integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==, + } + + "@octokit/auth-token@4.0.0": + resolution: + { + integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==, + } + engines: { node: ">= 18" } + + "@octokit/auth-unauthenticated@5.0.1": + resolution: + { + integrity: sha512-oxeWzmBFxWd+XolxKTc4zr+h3mt+yofn4r7OfoIkR/Cj/o70eEGmPsFbueyJE2iBAGpjgTnEOKM3pnuEGVmiqg==, + } + engines: { node: ">= 18" } + + "@octokit/core@3.6.0": + resolution: + { + integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==, + } + + "@octokit/core@5.1.0": + resolution: + { + integrity: sha512-BDa2VAMLSh3otEiaMJ/3Y36GU4qf6GI+VivQ/P41NC6GHcdxpKlqV0ikSZ5gdQsmS3ojXeRx5vasgNTinF0Q4g==, + } + engines: { node: ">= 18" } + + "@octokit/endpoint@6.0.12": + resolution: + { + integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==, + } + + "@octokit/endpoint@9.0.4": + resolution: + { + integrity: sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==, + } + engines: { node: ">= 18" } + + "@octokit/graphql@4.8.0": + resolution: + { + integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==, + } + + "@octokit/graphql@7.0.2": + resolution: + { + integrity: sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==, + } + engines: { node: ">= 18" } + + "@octokit/oauth-authorization-url@6.0.2": + resolution: + { + integrity: sha512-CdoJukjXXxqLNK4y/VOiVzQVjibqoj/xHgInekviUJV73y/BSIcwvJ/4aNHPBPKcPWFnd4/lO9uqRV65jXhcLA==, + } + engines: { node: ">= 18" } + + "@octokit/oauth-methods@4.1.0": + resolution: + { + integrity: sha512-4tuKnCRecJ6CG6gr0XcEXdZtkTDbfbnD5oaHBmLERTjTMZNi2CbfEHZxPU41xXLDG4DfKf+sonu00zvKI9NSbw==, + } + engines: { node: ">= 18" } + + "@octokit/openapi-types@12.11.0": + resolution: + { + integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==, + } + + "@octokit/openapi-types@20.0.0": + resolution: + { + integrity: sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==, + } + + "@octokit/openapi-types@22.2.0": + resolution: + { + integrity: sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg==, + } + + "@octokit/plugin-enterprise-compatibility@4.1.0": + resolution: + { + integrity: sha512-a8QehVu9Iy4k+m2XgG2rrF4m9vhlRIaefOMr0yJzgQCt4KpiTj5mZVrzSwagyOovkJdD0yDolQazBQZqPWTFSQ==, + } + engines: { node: ">= 18" } + + "@octokit/plugin-paginate-rest@2.21.3": + resolution: + { + integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==, + } + peerDependencies: + "@octokit/core": ">=2" + + "@octokit/plugin-paginate-rest@9.2.1": + resolution: + { + integrity: sha512-wfGhE/TAkXZRLjksFXuDZdmGnJQHvtU/joFQdweXUgzo1XwvBCD4o4+75NtFfjfLK5IwLf9vHTfSiU3sLRYpRw==, + } + engines: { node: ">= 18" } + peerDependencies: + "@octokit/core": "5" + + "@octokit/plugin-request-log@1.0.4": + resolution: + { + integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==, + } + peerDependencies: + "@octokit/core": ">=3" + + "@octokit/plugin-rest-endpoint-methods@10.4.1": + resolution: + { + integrity: sha512-xV1b+ceKV9KytQe3zCVqjg+8GTGfDYwaT1ATU5isiUyVtlVAO3HNdzpS4sr4GBx4hxQ46s7ITtZrAsxG22+rVg==, + } + engines: { node: ">= 18" } + peerDependencies: + "@octokit/core": "5" + + "@octokit/plugin-rest-endpoint-methods@5.16.2": + resolution: + { + integrity: sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==, + } + peerDependencies: + "@octokit/core": ">=3" + + "@octokit/plugin-retry@6.0.1": + resolution: + { + integrity: sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==, + } + engines: { node: ">= 18" } + peerDependencies: + "@octokit/core": ">=5" + + "@octokit/plugin-throttling@8.2.0": + resolution: + { + integrity: sha512-nOpWtLayKFpgqmgD0y3GqXafMFuKcA4tRPZIfu7BArd2lEZeb1988nhWhwx4aZWmjDmUfdgVf7W+Tt4AmvRmMQ==, + } + engines: { node: ">= 18" } + peerDependencies: + "@octokit/core": ^5.0.0 + + "@octokit/request-error@2.1.0": + resolution: + { + integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==, + } + + "@octokit/request-error@5.0.1": + resolution: + { + integrity: sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==, + } + engines: { node: ">= 18" } + + "@octokit/request-error@5.1.0": + resolution: + { + integrity: sha512-GETXfE05J0+7H2STzekpKObFe765O5dlAKUTLNGeH+x47z7JjXHfsHKo5z21D/o/IOZTUEI6nyWyR+bZVP/n5Q==, + } + engines: { node: ">= 18" } + + "@octokit/request@5.6.3": + resolution: + { + integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==, + } + + "@octokit/request@8.2.0": + resolution: + { + integrity: sha512-exPif6x5uwLqv1N1irkLG1zZNJkOtj8bZxuVHd71U5Ftuxf2wGNvAJyNBcPbPC+EBzwYEbBDdSFb8EPcjpYxPQ==, + } + engines: { node: ">= 18" } + + "@octokit/request@8.4.0": + resolution: + { + integrity: sha512-9Bb014e+m2TgBeEJGEbdplMVWwPmL1FPtggHQRkV+WVsMggPtEkLKPlcVYm/o8xKLkpJ7B+6N8WfQMtDLX2Dpw==, + } + engines: { node: ">= 18" } + + "@octokit/rest@18.12.0": + resolution: + { + integrity: sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==, + } + + "@octokit/types@12.6.0": + resolution: + { + integrity: sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==, + } + + "@octokit/types@13.5.0": + resolution: + { + integrity: sha512-HdqWTf5Z3qwDVlzCrP8UJquMwunpDiMPt5er+QjGzL4hqr/vBVY/MauQgS1xWxCDT1oMx1EULyqxncdCY/NVSQ==, + } + + "@octokit/types@6.41.0": + resolution: + { + integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==, + } + + "@octokit/webhooks-methods@4.1.0": + resolution: + { + integrity: sha512-zoQyKw8h9STNPqtm28UGOYFE7O6D4Il8VJwhAtMHFt2C4L0VQT1qGKLeefUOqHNs1mNRYSadVv7x0z8U2yyeWQ==, + } + engines: { node: ">= 18" } + + "@octokit/webhooks-types@7.4.0": + resolution: + { + integrity: sha512-FE2V+QZ2UYlh+9wWd5BPLNXG+J/XUD/PPq0ovS+nCcGX4+3qVbi3jYOmCTW48hg9SBBLtInx9+o7fFt4H5iP0Q==, + } + + "@octokit/webhooks@12.2.0": + resolution: + { + integrity: sha512-CyuLJ0/P7bKZ+kIYw+fnkeVdhUzNuDKgNSI7pU/m7Nod0T7kP+s4s2f0pNmG9HL8/RZN1S0ZWTDll3VTMrFLAw==, + } + engines: { node: ">= 18" } + + "@open-draft/deferred-promise@2.2.0": + resolution: + { + integrity: sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==, + } + + "@open-draft/logger@0.3.0": + resolution: + { + integrity: sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==, + } + + "@open-draft/until@2.1.0": + resolution: + { + integrity: sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==, + } + + "@open-rpc/client-js@1.8.1": + resolution: + { + integrity: sha512-vV+Hetl688nY/oWI9IFY0iKDrWuLdYhf7OIKI6U1DcnJV7r4gAgwRJjEr1QVYszUc0gjkHoQJzqevmXMGLyA0g==, + } + + "@opentelemetry/api-logs@0.52.1": + resolution: + { + integrity: sha512-qnSqB2DQ9TPP96dl8cDubDvrUyWc0/sK81xHTK8eSUspzDM3bsewX903qclQFvVhgStjRWdC5bLb3kQqMkfV5A==, + } + engines: { node: ">=14" } + + "@opentelemetry/api@1.8.0": + resolution: + { + integrity: sha512-I/s6F7yKUDdtMsoBWXJe8Qz40Tui5vsuKCWJEWVL+5q9sSWRzzx6v2KeNsOBEwd94j0eWkpWCH4yB6rZg9Mf0w==, + } + engines: { node: ">=8.0.0" } + + "@opentelemetry/api@1.9.0": + resolution: + { + integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==, + } + engines: { node: ">=8.0.0" } + + "@opentelemetry/context-async-hooks@1.25.1": + resolution: + { + integrity: sha512-UW/ge9zjvAEmRWVapOP0qyCvPulWU6cQxGxDbWEFfGOj1VBBZAuOqTo3X6yWmDTD3Xe15ysCZChHncr2xFMIfQ==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ">=1.0.0 <1.10.0" + + "@opentelemetry/core@1.25.1": + resolution: + { + integrity: sha512-GeT/l6rBYWVQ4XArluLVB6WWQ8flHbdb6r2FCHC3smtdOAbrJBIv35tpV/yp9bmYUJf+xmZpu9DRTIeJVhFbEQ==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ">=1.0.0 <1.10.0" + + "@opentelemetry/instrumentation-connect@0.37.0": + resolution: + { + integrity: sha512-SeQktDIH5rNzjiEiazWiJAIXkmnLOnNV7wwHpahrqE0Ph+Z3heqMfxRtoMtbdJSIYLfcNZYO51AjxZ00IXufdw==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.3.0 + + "@opentelemetry/instrumentation-express@0.40.1": + resolution: + { + integrity: sha512-+RKMvVe2zw3kIXRup9c1jFu3T4d0fs5aKy015TpiMyoCKX1UMu3Z0lfgYtuyiSTANvg5hZnDbWmQmqSPj9VTvg==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.3.0 + + "@opentelemetry/instrumentation-fastify@0.37.0": + resolution: + { + integrity: sha512-WRjwzNZgupSzbEYvo9s+QuHJRqZJjVdNxSEpGBwWK8RKLlHGwGVAu0gcc2gPamJWUJsGqPGvahAPWM18ZkWj6A==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.3.0 + + "@opentelemetry/instrumentation-graphql@0.41.0": + resolution: + { + integrity: sha512-R/gXeljgIhaRDKquVkKYT5QHPnFouM8ooyePZEP0kqyaVAedtR1V7NfAUJbxfTG5fBQa5wdmLjvu63+tzRXZCA==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.3.0 + + "@opentelemetry/instrumentation-hapi@0.39.0": + resolution: + { + integrity: sha512-ik2nA9Yj2s2ay+aNY+tJsKCsEx6Tsc2g/MK0iWBW5tibwrWKTy1pdVt5sB3kd5Gkimqj23UV5+FH2JFcQLeKug==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.3.0 + + "@opentelemetry/instrumentation-http@0.52.1": + resolution: + { + integrity: sha512-dG/aevWhaP+7OLv4BQQSEKMJv8GyeOp3Wxl31NHqE8xo9/fYMfEljiZphUHIfyg4gnZ9swMyWjfOQs5GUQe54Q==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.3.0 + + "@opentelemetry/instrumentation-ioredis@0.41.0": + resolution: + { + integrity: sha512-rxiLloU8VyeJGm5j2fZS8ShVdB82n7VNP8wTwfUQqDwRfHCnkzGr+buKoxuhGD91gtwJ91RHkjHA1Eg6RqsUTg==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.3.0 + + "@opentelemetry/instrumentation-koa@0.41.0": + resolution: + { + integrity: sha512-mbPnDt7ELvpM2S0vixYUsde7122lgegLOJQxx8iJQbB8YHal/xnTh9v7IfArSVzIDo+E+080hxZyUZD4boOWkw==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.3.0 + + "@opentelemetry/instrumentation-mongodb@0.45.0": + resolution: + { + integrity: sha512-xnZP9+ayeB1JJyNE9cIiwhOJTzNEsRhXVdLgfzmrs48Chhhk026mQdM5CITfyXSCfN73FGAIB8d91+pflJEfWQ==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.3.0 + + "@opentelemetry/instrumentation-mongoose@0.39.0": + resolution: + { + integrity: sha512-J1r66A7zJklPPhMtrFOO7/Ud2p0Pv5u8+r23Cd1JUH6fYPmftNJVsLp2urAt6PHK4jVqpP/YegN8wzjJ2mZNPQ==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.3.0 + + "@opentelemetry/instrumentation-mysql2@0.39.0": + resolution: + { + integrity: sha512-Iypuq2z6TCfriAXCIZjRq8GTFCKhQv5SpXbmI+e60rYdXw8NHtMH4NXcGF0eKTuoCsC59IYSTUvDQYDKReaszA==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.3.0 + + "@opentelemetry/instrumentation-mysql@0.39.0": + resolution: + { + integrity: sha512-8snHPh83rhrDf31v9Kq0Nf+ts8hdr7NguuszRqZomZBHgE0+UyXZSkXHAAFZoBPPRMGyM68uaFE5hVtFl+wOcA==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.3.0 + + "@opentelemetry/instrumentation-nestjs-core@0.38.0": + resolution: + { + integrity: sha512-M381Df1dM8aqihZz2yK+ugvMFK5vlHG/835dc67Sx2hH4pQEQYDA2PpFPTgc9AYYOydQaj7ClFQunESimjXDgg==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.3.0 + + "@opentelemetry/instrumentation-pg@0.42.0": + resolution: + { + integrity: sha512-sjgcM8CswYy8zxHgXv4RAZ09DlYhQ+9TdlourUs63Df/ek5RrB1ZbjznqW7PB6c3TyJJmX6AVtPTjAsROovEjA==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.3.0 + + "@opentelemetry/instrumentation-redis-4@0.40.0": + resolution: + { + integrity: sha512-0ieQYJb6yl35kXA75LQUPhHtGjtQU9L85KlWa7d4ohBbk/iQKZ3X3CFl5jC5vNMq/GGPB3+w3IxNvALlHtrp7A==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.3.0 + + "@opentelemetry/instrumentation@0.43.0": + resolution: + { + integrity: sha512-S1uHE+sxaepgp+t8lvIDuRgyjJWisAb733198kwQTUc9ZtYQ2V2gmyCtR1x21ePGVLoMiX/NWY7WA290hwkjJQ==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.3.0 + + "@opentelemetry/instrumentation@0.52.1": + resolution: + { + integrity: sha512-uXJbYU/5/MBHjMp1FqrILLRuiJCs3Ofk0MeRDk8g1S1gD47U8X3JnSwcMO1rtRo1x1a7zKaQHaoYu49p/4eSKw==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.3.0 + + "@opentelemetry/redis-common@0.36.2": + resolution: + { + integrity: sha512-faYX1N0gpLhej/6nyp6bgRjzAKXn5GOEMYY7YhciSfCoITAktLUtQ36d24QEWNA1/WA1y6qQunCe0OhHRkVl9g==, + } + engines: { node: ">=14" } + + "@opentelemetry/resources@1.25.1": + resolution: + { + integrity: sha512-pkZT+iFYIZsVn6+GzM0kSX+u3MSLCY9md+lIJOoKl/P+gJFfxJte/60Usdp8Ce4rOs8GduUpSPNe1ddGyDT1sQ==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ">=1.0.0 <1.10.0" + + "@opentelemetry/sdk-metrics@1.25.1": + resolution: + { + integrity: sha512-9Mb7q5ioFL4E4dDrc4wC/A3NTHDat44v4I3p2pLPSxRvqUbDIQyMVr9uK+EU69+HWhlET1VaSrRzwdckWqY15Q==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ">=1.3.0 <1.10.0" + + "@opentelemetry/sdk-trace-base@1.25.1": + resolution: + { + integrity: sha512-C8k4hnEbc5FamuZQ92nTOp8X/diCY56XUTnMiv9UTuJitCzaNNHAVsdm5+HLCdI8SLQsLWIrG38tddMxLVoftw==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ">=1.0.0 <1.10.0" + + "@opentelemetry/semantic-conventions@1.25.1": + resolution: + { + integrity: sha512-ZDjMJJQRlyk8A1KZFCc+bCbsyrn1wTwdNt56F7twdfUfnHUZUq77/WfONCj8p72NZOyP7pNTdUWSTYC3GTbuuQ==, + } + engines: { node: ">=14" } + + "@opentelemetry/sql-common@0.40.1": + resolution: + { + integrity: sha512-nSDlnHSqzC3pXn/wZEZVLuAuJ1MYMXPBwtv2qAbCa3847SaHItdE7SzUq/Jtb0KZmh1zfAbNi3AAMjztTT4Ugg==, + } + engines: { node: ">=14" } + peerDependencies: + "@opentelemetry/api": ^1.1.0 + + "@pkgjs/parseargs@0.11.0": + resolution: + { + integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==, + } + engines: { node: ">=14" } + + "@pkgr/core@0.1.1": + resolution: + { + integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==, + } + engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 } + + "@playwright/test@1.40.1": + resolution: + { + integrity: sha512-EaaawMTOeEItCRvfmkI9v6rBkF1svM8wjl/YPRrg2N2Wmp+4qJYkWtJsbew1szfKKDm6fPLy4YAanBhIlf9dWw==, + } + engines: { node: ">=16" } + deprecated: Please update to the latest version of Playwright to test up-to-date browsers. hasBin: true - '@playwright/test@1.45.0': - resolution: {integrity: sha512-TVYsfMlGAaxeUllNkywbwek67Ncf8FRGn8ZlRdO291OL3NjG9oMbfVhyP82HQF0CZLMrYsvesqoUekxdWuF9Qw==} - engines: {node: '>=18'} + "@playwright/test@1.45.0": + resolution: + { + integrity: sha512-TVYsfMlGAaxeUllNkywbwek67Ncf8FRGn8ZlRdO291OL3NjG9oMbfVhyP82HQF0CZLMrYsvesqoUekxdWuF9Qw==, + } + engines: { node: ">=18" } hasBin: true - '@pmmmwh/react-refresh-webpack-plugin@0.5.11': - resolution: {integrity: sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==} - engines: {node: '>= 10.13'} + "@pmmmwh/react-refresh-webpack-plugin@0.5.11": + resolution: + { + integrity: sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==, + } + engines: { node: ">= 10.13" } peerDependencies: - '@types/webpack': 4.x || 5.x - react-refresh: '>=0.10.0 <1.0.0' + "@types/webpack": 4.x || 5.x + react-refresh: ">=0.10.0 <1.0.0" sockjs-client: ^1.4.0 - type-fest: '>=0.17.0 <5.0.0' - webpack: '>=4.43.0 <6.0.0' + type-fest: ">=0.17.0 <5.0.0" + webpack: ">=4.43.0 <6.0.0" webpack-dev-server: 3.x || 4.x webpack-hot-middleware: 2.x webpack-plugin-serve: 0.x || 1.x peerDependenciesMeta: - '@types/webpack': + "@types/webpack": optional: true sockjs-client: optional: true @@ -11418,793 +14167,1353 @@ packages: webpack-plugin-serve: optional: true - '@polka/url@1.0.0-next.25': - resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} - - '@polkadot-api/json-rpc-provider-proxy@0.0.1': - resolution: {integrity: sha512-gmVDUP8LpCH0BXewbzqXF2sdHddq1H1q+XrAW2of+KZj4woQkIGBRGTJHeBEVHe30EB+UejR1N2dT4PO/RvDdg==} - - '@polkadot-api/json-rpc-provider@0.0.1': - resolution: {integrity: sha512-/SMC/l7foRjpykLTUTacIH05H3mr9ip8b5xxfwXlVezXrNVLp3Cv0GX6uItkKd+ZjzVPf3PFrDF2B2/HLSNESA==} - - '@polkadot-api/metadata-builders@0.0.1': - resolution: {integrity: sha512-GCI78BHDzXAF/L2pZD6Aod/yl82adqQ7ftNmKg51ixRL02JpWUA+SpUKTJE5MY1p8kiJJIo09P2um24SiJHxNA==} - - '@polkadot-api/observable-client@0.1.0': - resolution: {integrity: sha512-GBCGDRztKorTLna/unjl/9SWZcRmvV58o9jwU2Y038VuPXZcr01jcw/1O3x+yeAuwyGzbucI/mLTDa1QoEml3A==} - peerDependencies: - rxjs: '>=7.8.0' - - '@polkadot-api/substrate-bindings@0.0.1': - resolution: {integrity: sha512-bAe7a5bOPnuFVmpv7y4BBMRpNTnMmE0jtTqRUw/+D8ZlEHNVEJQGr4wu3QQCl7k1GnSV1wfv3mzIbYjErEBocg==} - - '@polkadot-api/substrate-client@0.0.1': - resolution: {integrity: sha512-9Bg9SGc3AwE+wXONQoW8GC00N3v6lCZLW74HQzqB6ROdcm5VAHM4CB/xRzWSUF9CXL78ugiwtHx3wBcpx4H4Wg==} - - '@polkadot-api/utils@0.0.1': - resolution: {integrity: sha512-3j+pRmlF9SgiYDabSdZsBSsN5XHbpXOAce1lWj56IEEaFZVjsiCaxDOA7C9nCcgfVXuvnbxqqEGQvnY+QfBAUw==} - - '@polkadot/api-augment@11.2.1': - resolution: {integrity: sha512-Huo457lCqeavbrf1O/2qQYGNFWURLXndW4vNkj8AP+I757WIqebhc6K3+mz+KoV1aTsX/qwaiEgeoTjrrIwcqA==} - engines: {node: '>=18'} - - '@polkadot/api-base@11.2.1': - resolution: {integrity: sha512-lVYTHQf8S4rpOJ9d1jvQjviHLE6zljl13vmgs+gXHGJwMAqhhNwKY3ZMQW/u/bRE2uKk0cAlahtsRtiFpjHAfw==} - engines: {node: '>=18'} - - '@polkadot/api-derive@11.2.1': - resolution: {integrity: sha512-ts6D6tXmvhBpHDT7E03TStXfG6+/bXCvJ7HZUVNDXi4P9cToClzJVOX5uKsPI5/MUYDEq13scxPyQK63m8SsHg==} - engines: {node: '>=18'} - - '@polkadot/api@11.2.1': - resolution: {integrity: sha512-NwcWadMt+mrJ3T7RuwpnaIYtH4x0eix+GiKRtLMtIO32uAfhwVyMnqvLtxDxa4XDJ/es2rtSMYG+t0b1BTM+xQ==} - engines: {node: '>=18'} - - '@polkadot/keyring@12.6.2': - resolution: {integrity: sha512-O3Q7GVmRYm8q7HuB3S0+Yf/q/EB2egKRRU3fv9b3B7V+A52tKzA+vIwEmNVaD1g5FKW9oB97rmpggs0zaKFqHw==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2 - - '@polkadot/networks@12.6.2': - resolution: {integrity: sha512-1oWtZm1IvPWqvMrldVH6NI2gBoCndl5GEwx7lAuQWGr7eNL+6Bdc5K3Z9T0MzFvDGoi2/CBqjX9dRKo39pDC/w==} - engines: {node: '>=18'} - - '@polkadot/rpc-augment@11.2.1': - resolution: {integrity: sha512-AbkqWTnKCi71LdqFVbCyYelf5N/Wtj4jFnpRd8z7tIbbiAnNRW61dBgdF9jZ8jd9Z0JvfAmCmG17uCEdsqfNjA==} - engines: {node: '>=18'} - - '@polkadot/rpc-core@11.2.1': - resolution: {integrity: sha512-GHNIHDvBts6HDvySfYksuLccaVnI+fc7ubY1uYcJMoyGv9pLhMtveH4Ft7NTxqkBqopbPXZHc8ca9CaIeBVr7w==} - engines: {node: '>=18'} - - '@polkadot/rpc-provider@11.2.1': - resolution: {integrity: sha512-TO9pdxNmTweK1vi9JYUAoLr/JYJUwPJTTdrSJrmGmiNPaM7txbQVgtT4suQYflVZTgXUYR7OYQ201fH+Qb9J9w==} - engines: {node: '>=18'} - - '@polkadot/types-augment@11.2.1': - resolution: {integrity: sha512-3zBsuSKjZlMEeDVqPTkLnFvjPdyGcW3UBihzCgpTmXhLSuwTbsscMwKtKwIPkOHHQPYJYyZXTMkurMXCJOz2kA==} - engines: {node: '>=18'} - - '@polkadot/types-codec@11.2.1': - resolution: {integrity: sha512-9VRRf1g/nahAC3/VSiCSUIRL7uuup04JEZLIAG2LaDgmCBOSV9dt1Yj9114bRUrHHkeUSBmiq64+YX1hZMpQzQ==} - engines: {node: '>=18'} - - '@polkadot/types-create@11.2.1': - resolution: {integrity: sha512-Y0Zri7x6/rHURVNLMi6i1+rmJDLCn8OQl8BIvRmsIBkCYh2oCzy0g9aqVoCdm+QnoUU5ZNtu+U/gj1kL5ODivQ==} - engines: {node: '>=18'} - - '@polkadot/types-known@11.2.1': - resolution: {integrity: sha512-dnbmVKagVI6ARuZaGMGc67HPeHGrR7/lcwfS7jGzEmRcoQk7p/UQjWfOk/LG9NzvQkmRVbE0Gqskn4VorqnTbA==} - engines: {node: '>=18'} - - '@polkadot/types-support@11.2.1': - resolution: {integrity: sha512-VGSUDUEQjt8K3Bv8gHYAE/nD98qPPuZ2DcikM9z9isw04qj2amxZaS26+iknJ9KSCzWgrNBHjcr5Q0o76//2yA==} - engines: {node: '>=18'} - - '@polkadot/types@11.2.1': - resolution: {integrity: sha512-NVPhO/eFPkL8arWk4xVbsJzRdGfue3gJK+A2iYzOfCr9rDHEj99B+E2Z0Or6zDN6n+thgQYwsr19rKgXvAc18Q==} - engines: {node: '>=18'} - - '@polkadot/util-crypto@12.6.2': - resolution: {integrity: sha512-FEWI/dJ7wDMNN1WOzZAjQoIcCP/3vz3wvAp5QQm+lOrzOLj0iDmaIGIcBkz8HVm3ErfSe/uKP0KS4jgV/ib+Mg==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': 12.6.2 - - '@polkadot/util@12.6.2': - resolution: {integrity: sha512-l8TubR7CLEY47240uki0TQzFvtnxFIO7uI/0GoWzpYD/O62EIAMRsuY01N4DuwgKq2ZWD59WhzsLYmA5K6ksdw==} - engines: {node: '>=18'} - - '@polkadot/wasm-bridge@7.3.2': - resolution: {integrity: sha512-AJEXChcf/nKXd5Q/YLEV5dXQMle3UNT7jcXYmIffZAo/KI394a+/24PaISyQjoNC0fkzS1Q8T5pnGGHmXiVz2g==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - - '@polkadot/wasm-crypto-asmjs@7.3.2': - resolution: {integrity: sha512-QP5eiUqUFur/2UoF2KKKYJcesc71fXhQFLT3D4ZjG28Mfk2ZPI0QNRUfpcxVQmIUpV5USHg4geCBNuCYsMm20Q==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': '*' - - '@polkadot/wasm-crypto-init@7.3.2': - resolution: {integrity: sha512-FPq73zGmvZtnuJaFV44brze3Lkrki3b4PebxCy9Fplw8nTmisKo9Xxtfew08r0njyYh+uiJRAxPCXadkC9sc8g==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - - '@polkadot/wasm-crypto-wasm@7.3.2': - resolution: {integrity: sha512-15wd0EMv9IXs5Abp1ZKpKKAVyZPhATIAHfKsyoWCEFDLSOA0/K0QGOxzrAlsrdUkiKZOq7uzSIgIDgW8okx2Mw==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': '*' - - '@polkadot/wasm-crypto@7.3.2': - resolution: {integrity: sha512-+neIDLSJ6jjVXsjyZ5oLSv16oIpwp+PxFqTUaZdZDoA2EyFRQB8pP7+qLsMNk+WJuhuJ4qXil/7XiOnZYZ+wxw==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': '*' - '@polkadot/x-randomvalues': '*' - - '@polkadot/wasm-util@7.3.2': - resolution: {integrity: sha512-bmD+Dxo1lTZyZNxbyPE380wd82QsX+43mgCm40boyKrRppXEyQmWT98v/Poc7chLuskYb6X8IQ6lvvK2bGR4Tg==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': '*' - - '@polkadot/x-bigint@12.6.2': - resolution: {integrity: sha512-HSIk60uFPX4GOFZSnIF7VYJz7WZA7tpFJsne7SzxOooRwMTWEtw3fUpFy5cYYOeLh17/kHH1Y7SVcuxzVLc74Q==} - engines: {node: '>=18'} - - '@polkadot/x-fetch@12.6.2': - resolution: {integrity: sha512-8wM/Z9JJPWN1pzSpU7XxTI1ldj/AfC8hKioBlUahZ8gUiJaOF7K9XEFCrCDLis/A1BoOu7Ne6WMx/vsJJIbDWw==} - engines: {node: '>=18'} - - '@polkadot/x-global@12.6.2': - resolution: {integrity: sha512-a8d6m+PW98jmsYDtAWp88qS4dl8DyqUBsd0S+WgyfSMtpEXu6v9nXDgPZgwF5xdDvXhm+P0ZfVkVTnIGrScb5g==} - engines: {node: '>=18'} - - '@polkadot/x-randomvalues@12.6.2': - resolution: {integrity: sha512-Vr8uG7rH2IcNJwtyf5ebdODMcr0XjoCpUbI91Zv6AlKVYOGKZlKLYJHIwpTaKKB+7KPWyQrk4Mlym/rS7v9feg==} - engines: {node: '>=18'} - peerDependencies: - '@polkadot/util': 12.6.2 - '@polkadot/wasm-util': '*' - - '@polkadot/x-textdecoder@12.6.2': - resolution: {integrity: sha512-M1Bir7tYvNappfpFWXOJcnxUhBUFWkUFIdJSyH0zs5LmFtFdbKAeiDXxSp2Swp5ddOZdZgPac294/o2TnQKN1w==} - engines: {node: '>=18'} - - '@polkadot/x-textencoder@12.6.2': - resolution: {integrity: sha512-4N+3UVCpI489tUJ6cv3uf0PjOHvgGp9Dl+SZRLgFGt9mvxnvpW/7+XBADRMtlG4xi5gaRK7bgl5bmY6OMDsNdw==} - engines: {node: '>=18'} - - '@polkadot/x-ws@12.6.2': - resolution: {integrity: sha512-cGZWo7K5eRRQCRl2LrcyCYsrc3lRbTlixZh3AzgU8uX4wASVGRlNWi/Hf4TtHNe1ExCDmxabJzdIsABIfrr7xw==} - engines: {node: '>=18'} - - '@popperjs/core@2.11.8': - resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} - - '@prisma/instrumentation@5.16.1': - resolution: {integrity: sha512-4m5gRFWnQb8s/yTyGbMZkL7A5uJgqOWcWJxapwcAD0T0kh5sGPEVSQl/zTQvE9aduXhFAxOtC3gO+R8Hb5xO1Q==} - - '@probot/get-private-key@1.1.2': - resolution: {integrity: sha512-yVgyCdTyooGX6+czDLkJahEcwgBWZsKH9xbjvjDNVFjY3QtiI/tHRiB3zjgJCQMZehXxv2CFHZQSpWRXdr6CeQ==} - - '@probot/octokit-plugin-config@2.0.1': - resolution: {integrity: sha512-aWQYzPY2xiKscTVTKveghtbglqZ+W4eBLIdK1C/cNiFIofy3AxKogWgEZj29PjIe5ZRYx0sRHAPc/pkcXyOmTQ==} - engines: {node: '>=18'} - peerDependencies: - '@octokit/core': '>=5' - - '@probot/pino@2.3.5': - resolution: {integrity: sha512-IiyiNZonMw1dHC4EAdD55y5owV733d9Gll/IKsrLikB7EJ54+eMCOtL/qo+OmgWN9XV3NTDfziEQF2og/OBKog==} + "@polka/url@1.0.0-next.25": + resolution: + { + integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==, + } + + "@polkadot-api/json-rpc-provider-proxy@0.0.1": + resolution: + { + integrity: sha512-gmVDUP8LpCH0BXewbzqXF2sdHddq1H1q+XrAW2of+KZj4woQkIGBRGTJHeBEVHe30EB+UejR1N2dT4PO/RvDdg==, + } + + "@polkadot-api/json-rpc-provider@0.0.1": + resolution: + { + integrity: sha512-/SMC/l7foRjpykLTUTacIH05H3mr9ip8b5xxfwXlVezXrNVLp3Cv0GX6uItkKd+ZjzVPf3PFrDF2B2/HLSNESA==, + } + + "@polkadot-api/metadata-builders@0.0.1": + resolution: + { + integrity: sha512-GCI78BHDzXAF/L2pZD6Aod/yl82adqQ7ftNmKg51ixRL02JpWUA+SpUKTJE5MY1p8kiJJIo09P2um24SiJHxNA==, + } + + "@polkadot-api/observable-client@0.1.0": + resolution: + { + integrity: sha512-GBCGDRztKorTLna/unjl/9SWZcRmvV58o9jwU2Y038VuPXZcr01jcw/1O3x+yeAuwyGzbucI/mLTDa1QoEml3A==, + } + peerDependencies: + rxjs: ">=7.8.0" + + "@polkadot-api/substrate-bindings@0.0.1": + resolution: + { + integrity: sha512-bAe7a5bOPnuFVmpv7y4BBMRpNTnMmE0jtTqRUw/+D8ZlEHNVEJQGr4wu3QQCl7k1GnSV1wfv3mzIbYjErEBocg==, + } + + "@polkadot-api/substrate-client@0.0.1": + resolution: + { + integrity: sha512-9Bg9SGc3AwE+wXONQoW8GC00N3v6lCZLW74HQzqB6ROdcm5VAHM4CB/xRzWSUF9CXL78ugiwtHx3wBcpx4H4Wg==, + } + + "@polkadot-api/utils@0.0.1": + resolution: + { + integrity: sha512-3j+pRmlF9SgiYDabSdZsBSsN5XHbpXOAce1lWj56IEEaFZVjsiCaxDOA7C9nCcgfVXuvnbxqqEGQvnY+QfBAUw==, + } + + "@polkadot/api-augment@11.2.1": + resolution: + { + integrity: sha512-Huo457lCqeavbrf1O/2qQYGNFWURLXndW4vNkj8AP+I757WIqebhc6K3+mz+KoV1aTsX/qwaiEgeoTjrrIwcqA==, + } + engines: { node: ">=18" } + + "@polkadot/api-base@11.2.1": + resolution: + { + integrity: sha512-lVYTHQf8S4rpOJ9d1jvQjviHLE6zljl13vmgs+gXHGJwMAqhhNwKY3ZMQW/u/bRE2uKk0cAlahtsRtiFpjHAfw==, + } + engines: { node: ">=18" } + + "@polkadot/api-derive@11.2.1": + resolution: + { + integrity: sha512-ts6D6tXmvhBpHDT7E03TStXfG6+/bXCvJ7HZUVNDXi4P9cToClzJVOX5uKsPI5/MUYDEq13scxPyQK63m8SsHg==, + } + engines: { node: ">=18" } + + "@polkadot/api@11.2.1": + resolution: + { + integrity: sha512-NwcWadMt+mrJ3T7RuwpnaIYtH4x0eix+GiKRtLMtIO32uAfhwVyMnqvLtxDxa4XDJ/es2rtSMYG+t0b1BTM+xQ==, + } + engines: { node: ">=18" } + + "@polkadot/keyring@12.6.2": + resolution: + { + integrity: sha512-O3Q7GVmRYm8q7HuB3S0+Yf/q/EB2egKRRU3fv9b3B7V+A52tKzA+vIwEmNVaD1g5FKW9oB97rmpggs0zaKFqHw==, + } + engines: { node: ">=18" } + peerDependencies: + "@polkadot/util": 12.6.2 + "@polkadot/util-crypto": 12.6.2 + + "@polkadot/networks@12.6.2": + resolution: + { + integrity: sha512-1oWtZm1IvPWqvMrldVH6NI2gBoCndl5GEwx7lAuQWGr7eNL+6Bdc5K3Z9T0MzFvDGoi2/CBqjX9dRKo39pDC/w==, + } + engines: { node: ">=18" } + + "@polkadot/rpc-augment@11.2.1": + resolution: + { + integrity: sha512-AbkqWTnKCi71LdqFVbCyYelf5N/Wtj4jFnpRd8z7tIbbiAnNRW61dBgdF9jZ8jd9Z0JvfAmCmG17uCEdsqfNjA==, + } + engines: { node: ">=18" } + + "@polkadot/rpc-core@11.2.1": + resolution: + { + integrity: sha512-GHNIHDvBts6HDvySfYksuLccaVnI+fc7ubY1uYcJMoyGv9pLhMtveH4Ft7NTxqkBqopbPXZHc8ca9CaIeBVr7w==, + } + engines: { node: ">=18" } + + "@polkadot/rpc-provider@11.2.1": + resolution: + { + integrity: sha512-TO9pdxNmTweK1vi9JYUAoLr/JYJUwPJTTdrSJrmGmiNPaM7txbQVgtT4suQYflVZTgXUYR7OYQ201fH+Qb9J9w==, + } + engines: { node: ">=18" } + + "@polkadot/types-augment@11.2.1": + resolution: + { + integrity: sha512-3zBsuSKjZlMEeDVqPTkLnFvjPdyGcW3UBihzCgpTmXhLSuwTbsscMwKtKwIPkOHHQPYJYyZXTMkurMXCJOz2kA==, + } + engines: { node: ">=18" } + + "@polkadot/types-codec@11.2.1": + resolution: + { + integrity: sha512-9VRRf1g/nahAC3/VSiCSUIRL7uuup04JEZLIAG2LaDgmCBOSV9dt1Yj9114bRUrHHkeUSBmiq64+YX1hZMpQzQ==, + } + engines: { node: ">=18" } + + "@polkadot/types-create@11.2.1": + resolution: + { + integrity: sha512-Y0Zri7x6/rHURVNLMi6i1+rmJDLCn8OQl8BIvRmsIBkCYh2oCzy0g9aqVoCdm+QnoUU5ZNtu+U/gj1kL5ODivQ==, + } + engines: { node: ">=18" } + + "@polkadot/types-known@11.2.1": + resolution: + { + integrity: sha512-dnbmVKagVI6ARuZaGMGc67HPeHGrR7/lcwfS7jGzEmRcoQk7p/UQjWfOk/LG9NzvQkmRVbE0Gqskn4VorqnTbA==, + } + engines: { node: ">=18" } + + "@polkadot/types-support@11.2.1": + resolution: + { + integrity: sha512-VGSUDUEQjt8K3Bv8gHYAE/nD98qPPuZ2DcikM9z9isw04qj2amxZaS26+iknJ9KSCzWgrNBHjcr5Q0o76//2yA==, + } + engines: { node: ">=18" } + + "@polkadot/types@11.2.1": + resolution: + { + integrity: sha512-NVPhO/eFPkL8arWk4xVbsJzRdGfue3gJK+A2iYzOfCr9rDHEj99B+E2Z0Or6zDN6n+thgQYwsr19rKgXvAc18Q==, + } + engines: { node: ">=18" } + + "@polkadot/util-crypto@12.6.2": + resolution: + { + integrity: sha512-FEWI/dJ7wDMNN1WOzZAjQoIcCP/3vz3wvAp5QQm+lOrzOLj0iDmaIGIcBkz8HVm3ErfSe/uKP0KS4jgV/ib+Mg==, + } + engines: { node: ">=18" } + peerDependencies: + "@polkadot/util": 12.6.2 + + "@polkadot/util@12.6.2": + resolution: + { + integrity: sha512-l8TubR7CLEY47240uki0TQzFvtnxFIO7uI/0GoWzpYD/O62EIAMRsuY01N4DuwgKq2ZWD59WhzsLYmA5K6ksdw==, + } + engines: { node: ">=18" } + + "@polkadot/wasm-bridge@7.3.2": + resolution: + { + integrity: sha512-AJEXChcf/nKXd5Q/YLEV5dXQMle3UNT7jcXYmIffZAo/KI394a+/24PaISyQjoNC0fkzS1Q8T5pnGGHmXiVz2g==, + } + engines: { node: ">=18" } + peerDependencies: + "@polkadot/util": "*" + "@polkadot/x-randomvalues": "*" + + "@polkadot/wasm-crypto-asmjs@7.3.2": + resolution: + { + integrity: sha512-QP5eiUqUFur/2UoF2KKKYJcesc71fXhQFLT3D4ZjG28Mfk2ZPI0QNRUfpcxVQmIUpV5USHg4geCBNuCYsMm20Q==, + } + engines: { node: ">=18" } + peerDependencies: + "@polkadot/util": "*" + + "@polkadot/wasm-crypto-init@7.3.2": + resolution: + { + integrity: sha512-FPq73zGmvZtnuJaFV44brze3Lkrki3b4PebxCy9Fplw8nTmisKo9Xxtfew08r0njyYh+uiJRAxPCXadkC9sc8g==, + } + engines: { node: ">=18" } + peerDependencies: + "@polkadot/util": "*" + "@polkadot/x-randomvalues": "*" + + "@polkadot/wasm-crypto-wasm@7.3.2": + resolution: + { + integrity: sha512-15wd0EMv9IXs5Abp1ZKpKKAVyZPhATIAHfKsyoWCEFDLSOA0/K0QGOxzrAlsrdUkiKZOq7uzSIgIDgW8okx2Mw==, + } + engines: { node: ">=18" } + peerDependencies: + "@polkadot/util": "*" + + "@polkadot/wasm-crypto@7.3.2": + resolution: + { + integrity: sha512-+neIDLSJ6jjVXsjyZ5oLSv16oIpwp+PxFqTUaZdZDoA2EyFRQB8pP7+qLsMNk+WJuhuJ4qXil/7XiOnZYZ+wxw==, + } + engines: { node: ">=18" } + peerDependencies: + "@polkadot/util": "*" + "@polkadot/x-randomvalues": "*" + + "@polkadot/wasm-util@7.3.2": + resolution: + { + integrity: sha512-bmD+Dxo1lTZyZNxbyPE380wd82QsX+43mgCm40boyKrRppXEyQmWT98v/Poc7chLuskYb6X8IQ6lvvK2bGR4Tg==, + } + engines: { node: ">=18" } + peerDependencies: + "@polkadot/util": "*" + + "@polkadot/x-bigint@12.6.2": + resolution: + { + integrity: sha512-HSIk60uFPX4GOFZSnIF7VYJz7WZA7tpFJsne7SzxOooRwMTWEtw3fUpFy5cYYOeLh17/kHH1Y7SVcuxzVLc74Q==, + } + engines: { node: ">=18" } + + "@polkadot/x-fetch@12.6.2": + resolution: + { + integrity: sha512-8wM/Z9JJPWN1pzSpU7XxTI1ldj/AfC8hKioBlUahZ8gUiJaOF7K9XEFCrCDLis/A1BoOu7Ne6WMx/vsJJIbDWw==, + } + engines: { node: ">=18" } + + "@polkadot/x-global@12.6.2": + resolution: + { + integrity: sha512-a8d6m+PW98jmsYDtAWp88qS4dl8DyqUBsd0S+WgyfSMtpEXu6v9nXDgPZgwF5xdDvXhm+P0ZfVkVTnIGrScb5g==, + } + engines: { node: ">=18" } + + "@polkadot/x-randomvalues@12.6.2": + resolution: + { + integrity: sha512-Vr8uG7rH2IcNJwtyf5ebdODMcr0XjoCpUbI91Zv6AlKVYOGKZlKLYJHIwpTaKKB+7KPWyQrk4Mlym/rS7v9feg==, + } + engines: { node: ">=18" } + peerDependencies: + "@polkadot/util": 12.6.2 + "@polkadot/wasm-util": "*" + + "@polkadot/x-textdecoder@12.6.2": + resolution: + { + integrity: sha512-M1Bir7tYvNappfpFWXOJcnxUhBUFWkUFIdJSyH0zs5LmFtFdbKAeiDXxSp2Swp5ddOZdZgPac294/o2TnQKN1w==, + } + engines: { node: ">=18" } + + "@polkadot/x-textencoder@12.6.2": + resolution: + { + integrity: sha512-4N+3UVCpI489tUJ6cv3uf0PjOHvgGp9Dl+SZRLgFGt9mvxnvpW/7+XBADRMtlG4xi5gaRK7bgl5bmY6OMDsNdw==, + } + engines: { node: ">=18" } + + "@polkadot/x-ws@12.6.2": + resolution: + { + integrity: sha512-cGZWo7K5eRRQCRl2LrcyCYsrc3lRbTlixZh3AzgU8uX4wASVGRlNWi/Hf4TtHNe1ExCDmxabJzdIsABIfrr7xw==, + } + engines: { node: ">=18" } + + "@popperjs/core@2.11.8": + resolution: + { + integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==, + } + + "@prisma/instrumentation@5.16.1": + resolution: + { + integrity: sha512-4m5gRFWnQb8s/yTyGbMZkL7A5uJgqOWcWJxapwcAD0T0kh5sGPEVSQl/zTQvE9aduXhFAxOtC3gO+R8Hb5xO1Q==, + } + + "@probot/get-private-key@1.1.2": + resolution: + { + integrity: sha512-yVgyCdTyooGX6+czDLkJahEcwgBWZsKH9xbjvjDNVFjY3QtiI/tHRiB3zjgJCQMZehXxv2CFHZQSpWRXdr6CeQ==, + } + + "@probot/octokit-plugin-config@2.0.1": + resolution: + { + integrity: sha512-aWQYzPY2xiKscTVTKveghtbglqZ+W4eBLIdK1C/cNiFIofy3AxKogWgEZj29PjIe5ZRYx0sRHAPc/pkcXyOmTQ==, + } + engines: { node: ">=18" } + peerDependencies: + "@octokit/core": ">=5" + + "@probot/pino@2.3.5": + resolution: + { + integrity: sha512-IiyiNZonMw1dHC4EAdD55y5owV733d9Gll/IKsrLikB7EJ54+eMCOtL/qo+OmgWN9XV3NTDfziEQF2og/OBKog==, + } hasBin: true - '@protobufjs/aspromise@1.1.2': - resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} - - '@protobufjs/base64@1.1.2': - resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==} - - '@protobufjs/codegen@2.0.4': - resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==} - - '@protobufjs/eventemitter@1.1.0': - resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==} - - '@protobufjs/fetch@1.1.0': - resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==} - - '@protobufjs/float@1.0.2': - resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==} - - '@protobufjs/inquire@1.1.0': - resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==} - - '@protobufjs/path@1.1.2': - resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==} - - '@protobufjs/pool@1.1.0': - resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==} - - '@protobufjs/utf8@1.1.0': - resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} - - '@radix-ui/number@1.0.1': - resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==} - - '@radix-ui/primitive@1.0.1': - resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==} - - '@radix-ui/react-arrow@1.0.3': - resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} - peerDependencies: - '@types/react': '*' - '@types/react-dom': '*' + "@protobufjs/aspromise@1.1.2": + resolution: + { + integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==, + } + + "@protobufjs/base64@1.1.2": + resolution: + { + integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==, + } + + "@protobufjs/codegen@2.0.4": + resolution: + { + integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==, + } + + "@protobufjs/eventemitter@1.1.0": + resolution: + { + integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==, + } + + "@protobufjs/fetch@1.1.0": + resolution: + { + integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==, + } + + "@protobufjs/float@1.0.2": + resolution: + { + integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==, + } + + "@protobufjs/inquire@1.1.0": + resolution: + { + integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==, + } + + "@protobufjs/path@1.1.2": + resolution: + { + integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==, + } + + "@protobufjs/pool@1.1.0": + resolution: + { + integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==, + } + + "@protobufjs/utf8@1.1.0": + resolution: + { + integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==, + } + + "@radix-ui/number@1.0.1": + resolution: + { + integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==, + } + + "@radix-ui/primitive@1.0.1": + resolution: + { + integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==, + } + + "@radix-ui/react-arrow@1.0.3": + resolution: + { + integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==, + } + peerDependencies: + "@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-collection@1.0.3': - resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} + "@radix-ui/react-collection@1.0.3": + resolution: + { + integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==, + } 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-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-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-direction@1.0.1': - resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} + "@radix-ui/react-direction@1.0.1": + resolution: + { + integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-dismissable-layer@1.0.4': - resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==} + "@radix-ui/react-dismissable-layer@1.0.4": + resolution: + { + integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==, + } 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-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-scope@1.0.3': - resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==} + "@radix-ui/react-focus-scope@1.0.3": + resolution: + { + integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==, + } 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-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-popper@1.1.2': - resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==} + "@radix-ui/react-popper@1.1.2": + resolution: + { + integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==, + } 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.0.3': - resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==} + "@radix-ui/react-portal@1.0.3": + resolution: + { + integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==, + } 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@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-roving-focus@1.0.4': - resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==} + "@radix-ui/react-roving-focus@1.0.4": + resolution: + { + integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==, + } 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-select@1.2.2': - resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==} + "@radix-ui/react-select@1.2.2": + resolution: + { + integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==, + } 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-separator@1.0.3': - resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==} + "@radix-ui/react-separator@1.0.3": + resolution: + { + integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==, + } 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-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-toggle-group@1.0.4': - resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==} + "@radix-ui/react-toggle-group@1.0.4": + resolution: + { + integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==, + } 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-toggle@1.0.3': - resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==} + "@radix-ui/react-toggle@1.0.3": + resolution: + { + integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==, + } 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-toolbar@1.0.4': - resolution: {integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==} + "@radix-ui/react-toolbar@1.0.4": + resolution: + { + integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==, + } 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-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-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-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-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-previous@1.0.1': - resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} + "@radix-ui/react-use-previous@1.0.1": + resolution: + { + integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-use-rect@1.0.1': - resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} + "@radix-ui/react-use-rect@1.0.1": + resolution: + { + integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-use-size@1.0.1': - resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} + "@radix-ui/react-use-size@1.0.1": + resolution: + { + integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@radix-ui/react-visually-hidden@1.0.3': - resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} + "@radix-ui/react-visually-hidden@1.0.3": + resolution: + { + integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==, + } 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/rect@1.0.1': - resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==} + "@radix-ui/rect@1.0.1": + resolution: + { + integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==, + } - '@react-native-async-storage/async-storage@1.17.12': - resolution: {integrity: sha512-BXg4OxFdjPTRt+8MvN6jz4muq0/2zII3s7HeT/11e4Zeh3WCgk/BleLzUcDfVqF3OzFHUqEkSrb76d6Ndjd/Nw==} + "@react-native-async-storage/async-storage@1.17.12": + resolution: + { + integrity: sha512-BXg4OxFdjPTRt+8MvN6jz4muq0/2zII3s7HeT/11e4Zeh3WCgk/BleLzUcDfVqF3OzFHUqEkSrb76d6Ndjd/Nw==, + } peerDependencies: react-native: ^0.0.0-0 || 0.60 - 0.71 || 1000.0.0 - '@react-native-async-storage/async-storage@1.23.1': - resolution: {integrity: sha512-Qd2kQ3yi6Y3+AcUlrHxSLlnBvpdCEMVGFlVBneVOjaFaPU61g1huc38g339ysXspwY1QZA2aNhrk/KlHGO+ewA==} + "@react-native-async-storage/async-storage@1.23.1": + resolution: + { + integrity: sha512-Qd2kQ3yi6Y3+AcUlrHxSLlnBvpdCEMVGFlVBneVOjaFaPU61g1huc38g339ysXspwY1QZA2aNhrk/KlHGO+ewA==, + } peerDependencies: react-native: ^0.0.0-0 || >=0.60 <1.0 - '@react-native-clipboard/clipboard@1.13.2': - resolution: {integrity: sha512-uVM55oEGc6a6ZmSATDeTcMm55A/C1km5X47g0xaoF0Zagv7N/8RGvLceA5L/izPwflIy78t7XQeJUcnGSib0nA==} - peerDependencies: - react: '>=16.0' - react-native: '>=0.57.0' - - '@react-native-community/cli-clean@12.3.6': - resolution: {integrity: sha512-gUU29ep8xM0BbnZjwz9MyID74KKwutq9x5iv4BCr2im6nly4UMf1B1D+V225wR7VcDGzbgWjaezsJShLLhC5ig==} - - '@react-native-community/cli-config@12.3.6': - resolution: {integrity: sha512-JGWSYQ9EAK6m2v0abXwFLEfsqJ1zkhzZ4CV261QZF9MoUNB6h57a274h1MLQR9mG6Tsh38wBUuNfEPUvS1vYew==} - - '@react-native-community/cli-debugger-ui@12.3.6': - resolution: {integrity: sha512-SjUKKsx5FmcK9G6Pb6UBFT0s9JexVStK5WInmANw75Hm7YokVvHEgtprQDz2Uvy5znX5g2ujzrkIU//T15KQzA==} - - '@react-native-community/cli-debugger-ui@7.0.3': - resolution: {integrity: sha512-G4SA6jFI0j22o+j+kYP8/7sxzbCDqSp2QiHA/X5E0lsGEd2o9qN2zbIjiFr8b8k+VVAYSUONhoC0+uKuINvmkA==} - - '@react-native-community/cli-doctor@12.3.6': - resolution: {integrity: sha512-fvBDv2lTthfw4WOQKkdTop2PlE9GtfrlNnpjB818MhcdEnPjfQw5YaTUcnNEGsvGomdCs1MVRMgYXXwPSN6OvQ==} - - '@react-native-community/cli-hermes@12.3.6': - resolution: {integrity: sha512-sNGwfOCl8OAIjWCkwuLpP8NZbuO0dhDI/2W7NeOGDzIBsf4/c4MptTrULWtGIH9okVPLSPX0NnRyGQ+mSwWyuQ==} - - '@react-native-community/cli-platform-android@12.3.6': - resolution: {integrity: sha512-DeDDAB8lHpuGIAPXeeD9Qu2+/wDTFPo99c8uSW49L0hkmZJixzvvvffbGQAYk32H0TmaI7rzvzH+qzu7z3891g==} - - '@react-native-community/cli-platform-ios@12.3.6': - resolution: {integrity: sha512-3eZ0jMCkKUO58wzPWlvAPRqezVKm9EPZyaPyHbRPWU8qw7JqkvnRlWIaYDGpjCJgVW4k2hKsEursLtYKb188tg==} - - '@react-native-community/cli-plugin-metro@12.3.6': - resolution: {integrity: sha512-3jxSBQt4fkS+KtHCPSyB5auIT+KKIrPCv9Dk14FbvOaEh9erUWEm/5PZWmtboW1z7CYeNbFMeXm9fM2xwtVOpg==} - - '@react-native-community/cli-server-api@12.3.6': - resolution: {integrity: sha512-80NIMzo8b2W+PL0Jd7NjiJW9mgaT8Y8wsIT/lh6mAvYH7mK0ecDJUYUTAAv79Tbo1iCGPAr3T295DlVtS8s4yQ==} - - '@react-native-community/cli-server-api@7.0.4': - resolution: {integrity: sha512-NzwLKgshx1aFJad5b972rFowEx8ueHRFFXQFnBbvEuE3KsivDOTIwO0zn7cAO1zpxlFRxUFfcI1Pe4Aymi3xZw==} - - '@react-native-community/cli-tools@12.3.6': - resolution: {integrity: sha512-FPEvZn19UTMMXUp/piwKZSh8cMEfO8G3KDtOwo53O347GTcwNrKjgZGtLSPELBX2gr+YlzEft3CoRv2Qmo83fQ==} - - '@react-native-community/cli-tools@6.2.1': - resolution: {integrity: sha512-7RbOkZLT/3YG8CAYYM70ajRKIOgVxK/b4t9KNsPq+2uen99MGezfeglC8s1cs3vBNVVxCo0a2JbXg18bUd8eqA==} - peerDependencies: - find-up: '*' + "@react-native-clipboard/clipboard@1.13.2": + resolution: + { + integrity: sha512-uVM55oEGc6a6ZmSATDeTcMm55A/C1km5X47g0xaoF0Zagv7N/8RGvLceA5L/izPwflIy78t7XQeJUcnGSib0nA==, + } + peerDependencies: + react: ">=16.0" + react-native: ">=0.57.0" + + "@react-native-community/cli-clean@13.6.1": + resolution: + { + integrity: sha512-HV0kTegCMbq9INOLUVzPFl/FDjZ2uX6kOa7cFYezkRhgApJo0a/KYTvqwQVlmdHXAjDiWLARGTUPqYQGwIef0A==, + } + + "@react-native-community/cli-clean@13.6.9": + resolution: + { + integrity: sha512-7Dj5+4p9JggxuVNOjPbduZBAP1SUgNhLKVw5noBUzT/3ZpUZkDM+RCSwyoyg8xKWoE4OrdUAXwAFlMcFDPKykA==, + } + + "@react-native-community/cli-config@13.6.1": + resolution: + { + integrity: sha512-ljqwH04RNkwv8Y67TjmJ60qgvAdS2aCCUszaD7ZPXmfqBBxkvLg5QFtja9y+1QuTGPmBuTtC55JqmCHg/UDAsg==, + } + + "@react-native-community/cli-config@13.6.9": + resolution: + { + integrity: sha512-rFfVBcNojcMm+KKHE/xqpqXg8HoKl4EC7bFHUrahMJ+y/tZll55+oX/PGG37rzB8QzP2UbMQ19DYQKC1G7kXeg==, + } + + "@react-native-community/cli-debugger-ui@13.6.1": + resolution: + { + integrity: sha512-3z1io3AsT1NqlJZOlqNFcrzlavBb7R+Vy5Orzruc3m/OIjc4TrGNtyzQmOfCC3peF8J3So3d6dH1a11YYUDfFw==, + } + + "@react-native-community/cli-debugger-ui@13.6.9": + resolution: + { + integrity: sha512-TkN7IdFmGPPvTpAo3nCAH9uwGCPxWBEAwpqEZDrq0NWllI7Tdie8vDpGdrcuCcKalmhq6OYnkXzeBah7O1Ztpw==, + } + + "@react-native-community/cli-debugger-ui@7.0.3": + resolution: + { + integrity: sha512-G4SA6jFI0j22o+j+kYP8/7sxzbCDqSp2QiHA/X5E0lsGEd2o9qN2zbIjiFr8b8k+VVAYSUONhoC0+uKuINvmkA==, + } + + "@react-native-community/cli-doctor@13.6.1": + resolution: + { + integrity: sha512-jP5otBbvcItuIy8WJT8UAA0lLB+0kKtCmcfQFmcs0/NlBy04cpTtGp7w2N3F1r2Qy9sdQWGRa20IFZn8eenieQ==, + } + + "@react-native-community/cli-doctor@13.6.9": + resolution: + { + integrity: sha512-5quFaLdWFQB+677GXh5dGU9I5eg2z6Vg4jOX9vKnc9IffwyIFAyJfCZHrxLSRPDGNXD7biDQUdoezXYGwb6P/A==, + } + + "@react-native-community/cli-hermes@13.6.1": + resolution: + { + integrity: sha512-uGzmpg3DCqXiVLArTw6LMCGoGPkdMBKUllnlvgl1Yjne6LL7NPnQ971lMVGqTX9/p3CaW5TcqYYJjnI7sxlVcA==, + } + + "@react-native-community/cli-hermes@13.6.9": + resolution: + { + integrity: sha512-GvwiwgvFw4Ws+krg2+gYj8sR3g05evmNjAHkKIKMkDTJjZ8EdyxbkifRUs1ZCq3TMZy2oeblZBXCJVOH4W7ZbA==, + } + + "@react-native-community/cli-platform-android@13.6.1": + resolution: + { + integrity: sha512-HkrV8kCbHUdWH2LMEeSsuvl0ULI+JLmBZ2eQNEyyYOT8h+tM90OwaPLRpBFtD+yvp2/DpIKo97yCVJT5cLjBzA==, + } + + "@react-native-community/cli-platform-android@13.6.9": + resolution: + { + integrity: sha512-9KsYGdr08QhdvT3Ht7e8phQB3gDX9Fs427NJe0xnoBh+PDPTI2BD5ks5ttsH8CzEw8/P6H8tJCHq6hf2nxd9cw==, + } + + "@react-native-community/cli-platform-apple@13.6.1": + resolution: + { + integrity: sha512-yv4iPewUwhy3uGg4uJwA03wSV/1bnEnAJNs7CQ0zl7DQZhqrhfJLhzPURtu34sMUN+Wt6S3KaBmny5kHRKTuwA==, + } + + "@react-native-community/cli-platform-apple@13.6.9": + resolution: + { + integrity: sha512-KoeIHfhxMhKXZPXmhQdl6EE+jGKWwoO9jUVWgBvibpVmsNjo7woaG/tfJMEWfWF3najX1EkQAoJWpCDBMYWtlA==, + } + + "@react-native-community/cli-platform-ios@13.6.1": + resolution: + { + integrity: sha512-JwXV9qMpqJWduoEcK3pbAjkOaTqg+o0IzZz/LP7EkFCfJyg5hnDRAUZhP5ffs5/zukZIGHHPY1ZEW8jl5T2j6Q==, + } + + "@react-native-community/cli-platform-ios@13.6.9": + resolution: + { + integrity: sha512-CiUcHlGs8vE0CAB4oi1f+dzniqfGuhWPNrDvae2nm8dewlahTBwIcK5CawyGezjcJoeQhjBflh9vloska+nlnw==, + } + + "@react-native-community/cli-server-api@13.6.1": + resolution: + { + integrity: sha512-64eC7NuCLenYr237LyJ1H6jf+6L4NA2eXuy+634q0CeIZsAqOe7B5VCJyy2CsWWaeeUbAsC0Oy9/2o2y8/muIw==, + } + + "@react-native-community/cli-server-api@13.6.9": + resolution: + { + integrity: sha512-W8FSlCPWymO+tlQfM3E0JmM8Oei5HZsIk5S0COOl0MRi8h0NmHI4WSTF2GCfbFZkcr2VI/fRsocoN8Au4EZAug==, + } + + "@react-native-community/cli-server-api@7.0.4": + resolution: + { + integrity: sha512-NzwLKgshx1aFJad5b972rFowEx8ueHRFFXQFnBbvEuE3KsivDOTIwO0zn7cAO1zpxlFRxUFfcI1Pe4Aymi3xZw==, + } + + "@react-native-community/cli-tools@13.6.1": + resolution: + { + integrity: sha512-mRJmI5c/Mfi/pESUPjqElv8+t81qfi0pUr1UrIX38nS1o5Ki1D8vC9vAMkPbLaIu2RuhUuzSCfs6zW8AwakUoA==, + } + + "@react-native-community/cli-tools@13.6.9": + resolution: + { + integrity: sha512-OXaSjoN0mZVw3nrAwcY1PC0uMfyTd9fz7Cy06dh+EJc+h0wikABsVRzV8cIOPrVV+PPEEXE0DBrH20T2puZzgQ==, + } + + "@react-native-community/cli-tools@6.2.1": + resolution: + { + integrity: sha512-7RbOkZLT/3YG8CAYYM70ajRKIOgVxK/b4t9KNsPq+2uen99MGezfeglC8s1cs3vBNVVxCo0a2JbXg18bUd8eqA==, + } + peerDependencies: + find-up: "*" peerDependenciesMeta: find-up: optional: true - '@react-native-community/cli-types@12.3.6': - resolution: {integrity: sha512-xPqTgcUtZowQ8WKOkI9TLGBwH2bGggOC4d2FFaIRST3gTcjrEeGRNeR5aXCzJFIgItIft8sd7p2oKEdy90+01Q==} - - '@react-native-community/cli@12.3.6': - resolution: {integrity: sha512-647OSi6xBb8FbwFqX9zsJxOzu685AWtrOUWHfOkbKD+5LOpGORw+GQo0F9rWZnB68rLQyfKUZWJeaD00pGv5fw==} - engines: {node: '>=18'} + "@react-native-community/cli-types@13.6.1": + resolution: + { + integrity: sha512-+ue0eaEnGTKsTpX7F/DVspGDVZz7OgN7uaanaGKJuG9+pJiIgVIXnVu546Ycq8XbWAbZuWR1PL4+SNbf6Ebqqw==, + } + + "@react-native-community/cli-types@13.6.9": + resolution: + { + integrity: sha512-RLxDppvRxXfs3hxceW/mShi+6o5yS+kFPnPqZTaMKKR5aSg7LwDpLQW4K2D22irEG8e6RKDkZUeH9aL3vO2O0w==, + } + + "@react-native-community/cli@13.6.1": + resolution: + { + integrity: sha512-Q3eA7xw42o8NAkztJvjVZT9WWxtRDnYYoRkv8IEIi9m2ya3p/4ZJBNlsQO6kDjasQTERkAoGQc1CveEHEv2QsA==, + } + engines: { node: ">=18" } hasBin: true peerDependencies: - metro-resolver: '*' + metro-resolver: "*" peerDependenciesMeta: metro-resolver: optional: true - '@react-native-community/datetimepicker@6.7.5': - resolution: {integrity: sha512-E2Zh6mwvZ6CFEMKP++rdxxjJiB45fYPpdZhJwdZ2vUVwqovqu1cQRDLZmz4XrcHSyuacgR4WUnkYFf0F2nnNIg==} - - '@react-native-community/netinfo@9.5.0': - resolution: {integrity: sha512-sppTBobjvIlPYXyDAyb5WJoBaQq1hprnHj1PWICsA10mVnlmwX5ZVkgO2vGjsfFtb+fmWK9XtZF+aQ6ijqQcwg==} - peerDependencies: - react-native: '>=0.59' - - '@react-native-community/slider@4.5.0': - resolution: {integrity: sha512-pyUvNTvu5IfCI5abzqRfO/dd3A009RC66RXZE6t0gyOwI/j0QDlq9VZRv3rjkpuIvNTnsYj+m5BHlh0DkSYUyA==} - - '@react-native-firebase/app@14.12.0': - resolution: {integrity: sha512-r/4eP96U3StUs9t3QSlNwCIjjZpEAzI0u8GF8VlNNgrFxUKQXmwe63dRXQXVrI03MxnHgg87OpoWgIxhRlC9Rg==} - peerDependencies: - react: '*' - react-native: '*' - - '@react-native-firebase/messaging@14.12.0': - resolution: {integrity: sha512-4JF93pYLyFiLjwU2RYlHMKSjI7DKLuqQrqCnC3M2yhgTDeYaJsqnYnTSDMfmmh9vZHfHjTztc6E2scwr/Mw8tg==} - peerDependencies: - '@react-native-firebase/app': 14.12.0 - - '@react-native-firebase/remote-config@14.12.0': - resolution: {integrity: sha512-WASOY12cwdiWUPgaaeKH2jfSpIhtDG/Xu8y0Ws5+RZYu9pox6/pTUkWUdXnJpWnR9Cg3FdOhzKxijMovsezbpw==} - peerDependencies: - '@react-native-firebase/analytics': 14.12.0 - '@react-native-firebase/app': 14.12.0 - - '@react-native-masked-view/masked-view@0.2.9': - resolution: {integrity: sha512-Hs4vKBKj+15VxHZHFtMaFWSBxXoOE5Ea8saoigWhahp8Mepssm0ezU+2pTl7DK9z8Y9s5uOl/aPb4QmBZ3R3Zw==} - peerDependencies: - react: '>=16' - react-native: '>=0.57' - - '@react-native/assets-registry@0.73.1': - resolution: {integrity: sha512-2FgAbU7uKM5SbbW9QptPPZx8N9Ke2L7bsHb+EhAanZjFZunA9PaYtyjUQ1s7HD+zDVqOQIvjkpXSv7Kejd2tqg==} - engines: {node: '>=18'} - - '@react-native/babel-plugin-codegen@0.73.2': - resolution: {integrity: sha512-PadyFZWVaWXIBP7Q5dgEL7eAd7tnsgsLjoHJB1hIRZZuVUg1Zqe3nULwC7RFAqOtr5Qx7KXChkFFcKQ3WnZzGw==} - engines: {node: '>=18'} - - '@react-native/babel-plugin-codegen@0.73.4': - resolution: {integrity: sha512-XzRd8MJGo4Zc5KsphDHBYJzS1ryOHg8I2gOZDAUCGcwLFhdyGu1zBNDJYH2GFyDrInn9TzAbRIf3d4O+eltXQQ==} - engines: {node: '>=18'} - - '@react-native/babel-preset@0.73.19': - resolution: {integrity: sha512-ujon01uMOREZecIltQxPDmJ6xlVqAUFGI/JCSpeVYdxyXBoBH5dBb0ihj7h6LKH1q1jsnO9z4MxfddtypKkIbg==} - engines: {node: '>=18'} - peerDependencies: - '@babel/core': '*' - - '@react-native/babel-preset@0.73.21': - resolution: {integrity: sha512-WlFttNnySKQMeujN09fRmrdWqh46QyJluM5jdtDNrkl/2Hx6N4XeDUGhABvConeK95OidVO7sFFf7sNebVXogA==} - engines: {node: '>=18'} - peerDependencies: - '@babel/core': '*' - - '@react-native/codegen@0.73.2': - resolution: {integrity: sha512-lfy8S7umhE3QLQG5ViC4wg5N1Z+E6RnaeIw8w1voroQsXXGPB72IBozh8dAHR3+ceTxIU0KX3A8OpJI8e1+HpQ==} - engines: {node: '>=18'} - peerDependencies: - '@babel/preset-env': ^7.1.6 - - '@react-native/codegen@0.73.3': - resolution: {integrity: sha512-sxslCAAb8kM06vGy9Jyh4TtvjhcP36k/rvj2QE2Jdhdm61KvfafCATSIsOfc0QvnduWFcpXUPvAVyYwuv7PYDg==} - engines: {node: '>=18'} - peerDependencies: - '@babel/preset-env': ^7.1.6 - - '@react-native/community-cli-plugin@0.73.17': - resolution: {integrity: sha512-F3PXZkcHg+1ARIr6FRQCQiB7ZAA+MQXGmq051metRscoLvgYJwj7dgC8pvgy0kexzUkHu5BNKrZeySzUft3xuQ==} - engines: {node: '>=18'} - - '@react-native/debugger-frontend@0.73.3': - resolution: {integrity: sha512-RgEKnWuoo54dh7gQhV7kvzKhXZEhpF9LlMdZolyhGxHsBqZ2gXdibfDlfcARFFifPIiaZ3lXuOVVa4ei+uPgTw==} - engines: {node: '>=18'} - - '@react-native/dev-middleware@0.73.7': - resolution: {integrity: sha512-BZXpn+qKp/dNdr4+TkZxXDttfx8YobDh8MFHsMk9usouLm22pKgFIPkGBV0X8Do4LBkFNPGtrnsKkWk/yuUXKg==} - engines: {node: '>=18'} - - '@react-native/dev-middleware@0.73.8': - resolution: {integrity: sha512-oph4NamCIxkMfUL/fYtSsE+JbGOnrlawfQ0kKtDQ5xbOjPKotKoXqrs1eGwozNKv7FfQ393stk1by9a6DyASSg==} - engines: {node: '>=18'} - - '@react-native/gradle-plugin@0.73.4': - resolution: {integrity: sha512-PMDnbsZa+tD55Ug+W8CfqXiGoGneSSyrBZCMb5JfiB3AFST3Uj5e6lw8SgI/B6SKZF7lG0BhZ6YHZsRZ5MlXmg==} - engines: {node: '>=18'} - - '@react-native/js-polyfills@0.73.1': - resolution: {integrity: sha512-ewMwGcumrilnF87H4jjrnvGZEaPFCAC4ebraEK+CurDDmwST/bIicI4hrOAv+0Z0F7DEK4O4H7r8q9vH7IbN4g==} - engines: {node: '>=18'} - - '@react-native/metro-babel-transformer@0.73.13': - resolution: {integrity: sha512-k9AQifogQfgUXPlqQSoMtX2KUhniw4XvJl+nZ4hphCH7qiMDAwuP8OmkJbz5E/N+Ro9OFuLE7ax4GlwxaTsAWg==} - engines: {node: '>=18'} - peerDependencies: - '@babel/core': '*' - - '@react-native/metro-babel-transformer@0.73.15': - resolution: {integrity: sha512-LlkSGaXCz+xdxc9819plmpsl4P4gZndoFtpjN3GMBIu6f7TBV0GVbyJAU4GE8fuAWPVSVL5ArOcdkWKSbI1klw==} - engines: {node: '>=18'} - peerDependencies: - '@babel/core': '*' - - '@react-native/metro-config@0.73.3': - resolution: {integrity: sha512-aIVh+lM52n7/RFDXLDiIp1vI21jc9thm2VxdkP7KwxMut7VvW+2tO38zKt74/2ker2ca0205tbf3pyCYBvV6Ww==} - engines: {node: '>=18'} - - '@react-native/normalize-color@2.1.0': - resolution: {integrity: sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==} - - '@react-native/normalize-colors@0.73.2': - resolution: {integrity: sha512-bRBcb2T+I88aG74LMVHaKms2p/T8aQd8+BZ7LuuzXlRfog1bMWWn/C5i0HVuvW4RPtXQYgIlGiXVDy9Ir1So/w==} - - '@react-native/virtualized-lists@0.73.4': - resolution: {integrity: sha512-HpmLg1FrEiDtrtAbXiwCgXFYyloK/dOIPIuWW3fsqukwJEWAiTzm1nXGJ7xPU5XTHiWZ4sKup5Ebaj8z7iyWog==} - engines: {node: '>=18'} - peerDependencies: - react-native: '*' - - '@react-navigation/bottom-tabs@6.5.20': - resolution: {integrity: sha512-ow6Z06iS4VqBO8d7FP+HsGjJLWt2xTWIvuWjpoCvsM/uQXzCRDIjBv9HaKcXbF0yTW7IMir0oDAbU5PFzEDdgA==} - peerDependencies: - '@react-navigation/native': ^6.0.0 - react: '*' - react-native: '*' - react-native-safe-area-context: '>= 3.0.0' - react-native-screens: '>= 3.0.0' - - '@react-navigation/core@6.4.16': - resolution: {integrity: sha512-UDTJBsHxnzgFETR3ZxhctP+RWr4SkyeZpbhpkQoIGOuwSCkt1SE0qjU48/u6r6w6XlX8OqVudn1Ab0QFXTHxuQ==} - peerDependencies: - react: '*' - - '@react-navigation/devtools@6.0.26': - resolution: {integrity: sha512-jbIb+678wb75Z1OiA/zP2g7ZuAviL9IFFTiadEcGog713n7XTm5xRr6uiCPWohalUJOvt8e9B8A2wRGmgELjHw==} - peerDependencies: - react: '*' - - '@react-navigation/elements@1.3.30': - resolution: {integrity: sha512-plhc8UvCZs0UkV+sI+3bisIyn78wz9O/BiWZXpounu72k/R/Sj5PuZYFJ1fi6psvriUveMCGh4LeZckAZu2qiQ==} - peerDependencies: - '@react-navigation/native': ^6.0.0 - react: '*' - react-native: '*' - react-native-safe-area-context: '>= 3.0.0' - - '@react-navigation/material-top-tabs@6.6.13': - resolution: {integrity: sha512-utwS0SLl/dq6+PHWGOz4rNNkYzveqvbffXJ6TIrUdaWDDysjBa4btHUOVvXfNADIK4LafmbuRi0xA/zd6HoCPQ==} - peerDependencies: - '@react-navigation/native': ^6.0.0 - react: '*' - react-native: '*' - react-native-pager-view: '>= 4.0.0' - react-native-tab-view: '>= 3.0.0' - - '@react-navigation/native-stack@6.9.26': - resolution: {integrity: sha512-++dueQ+FDj2XkZ902DVrK79ub1vp19nSdAZWxKRgd6+Bc0Niiesua6rMCqymYOVaYh+dagwkA9r00bpt/U5WLw==} - peerDependencies: - '@react-navigation/native': ^6.0.0 - react: '*' - react-native: '*' - react-native-safe-area-context: '>= 3.0.0' - react-native-screens: '>= 3.0.0' - - '@react-navigation/native@6.1.17': - resolution: {integrity: sha512-mer3OvfwWOHoUSMJyLa4vnBH3zpFmCwuzrBPlw7feXklurr/ZDiLjLxUScOot6jLRMz/67GyilEYMmP99LL0RQ==} + "@react-native-community/cli@13.6.9": + resolution: + { + integrity: sha512-hFJL4cgLPxncJJd/epQ4dHnMg5Jy/7Q56jFvA3MHViuKpzzfTCJCB+pGY54maZbtym53UJON9WTGpM3S81UfjQ==, + } + engines: { node: ">=18" } + hasBin: true peerDependencies: - react: '*' - react-native: '*' + metro-resolver: "*" + peerDependenciesMeta: + metro-resolver: + optional: true - '@react-navigation/routers@6.1.9': - resolution: {integrity: sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA==} + "@react-native-community/datetimepicker@6.7.5": + resolution: + { + integrity: sha512-E2Zh6mwvZ6CFEMKP++rdxxjJiB45fYPpdZhJwdZ2vUVwqovqu1cQRDLZmz4XrcHSyuacgR4WUnkYFf0F2nnNIg==, + } + + "@react-native-community/netinfo@9.5.0": + resolution: + { + integrity: sha512-sppTBobjvIlPYXyDAyb5WJoBaQq1hprnHj1PWICsA10mVnlmwX5ZVkgO2vGjsfFtb+fmWK9XtZF+aQ6ijqQcwg==, + } + peerDependencies: + react-native: ">=0.59" + + "@react-native-community/slider@4.5.0": + resolution: + { + integrity: sha512-pyUvNTvu5IfCI5abzqRfO/dd3A009RC66RXZE6t0gyOwI/j0QDlq9VZRv3rjkpuIvNTnsYj+m5BHlh0DkSYUyA==, + } + + "@react-native-firebase/app@14.12.0": + resolution: + { + integrity: sha512-r/4eP96U3StUs9t3QSlNwCIjjZpEAzI0u8GF8VlNNgrFxUKQXmwe63dRXQXVrI03MxnHgg87OpoWgIxhRlC9Rg==, + } + peerDependencies: + react: "*" + react-native: "*" + + "@react-native-firebase/messaging@14.12.0": + resolution: + { + integrity: sha512-4JF93pYLyFiLjwU2RYlHMKSjI7DKLuqQrqCnC3M2yhgTDeYaJsqnYnTSDMfmmh9vZHfHjTztc6E2scwr/Mw8tg==, + } + peerDependencies: + "@react-native-firebase/app": 14.12.0 + + "@react-native-firebase/remote-config@14.12.0": + resolution: + { + integrity: sha512-WASOY12cwdiWUPgaaeKH2jfSpIhtDG/Xu8y0Ws5+RZYu9pox6/pTUkWUdXnJpWnR9Cg3FdOhzKxijMovsezbpw==, + } + peerDependencies: + "@react-native-firebase/analytics": 14.12.0 + "@react-native-firebase/app": 14.12.0 + + "@react-native-masked-view/masked-view@0.2.9": + resolution: + { + integrity: sha512-Hs4vKBKj+15VxHZHFtMaFWSBxXoOE5Ea8saoigWhahp8Mepssm0ezU+2pTl7DK9z8Y9s5uOl/aPb4QmBZ3R3Zw==, + } + peerDependencies: + react: ">=16" + react-native: ">=0.57" + + "@react-native/assets-registry@0.74.87": + resolution: + { + integrity: sha512-1XmRhqQchN+pXPKEKYdpJlwESxVomJOxtEnIkbo7GAlaN2sym84fHEGDXAjLilih5GVPpcpSmFzTy8jx3LtaFg==, + } + engines: { node: ">=18" } + + "@react-native/assets-registry@0.74.88": + resolution: + { + integrity: sha512-tOvA+ikxa0Yxk3gLWR4+Pp4Y6Se+JEs6XXabX4/jgxIDnDfhT/czFNhqH/hdk4uOT8uVJGnilvevsia2TCFMiw==, + } + engines: { node: ">=18" } + + "@react-native/babel-plugin-codegen@0.74.87": + resolution: + { + integrity: sha512-+vJYpMnENFrwtgvDfUj+CtVJRJuUnzAUYT0/Pb68Sq9RfcZ5xdcCuUgyf7JO+akW2VTBoJY427wkcxU30qrWWw==, + } + engines: { node: ">=18" } + + "@react-native/babel-plugin-codegen@0.74.88": + resolution: + { + integrity: sha512-hul4gPU09q7K0amhzhZnG3EVxeCXjP2l1x/zdgtliRRB8Nq7Za8YkM7dy84X+Vv4UC9G1nzxIbibsKeLsY1N4A==, + } + engines: { node: ">=18" } + + "@react-native/babel-preset@0.74.87": + resolution: + { + integrity: sha512-hyKpfqzN2nxZmYYJ0tQIHG99FQO0OWXp/gVggAfEUgiT+yNKas1C60LuofUsK7cd+2o9jrpqgqW4WzEDZoBlTg==, + } + engines: { node: ">=18" } + peerDependencies: + "@babel/core": "*" + + "@react-native/babel-preset@0.74.88": + resolution: + { + integrity: sha512-SQODiFGlyblFTvdvePUDrQ+qlSzhcOm7It/yW2CVKxw5zRUf50+Cj3DBkRFhQDqF3ri2EnWsLnJ3oNE7hqDUxg==, + } + engines: { node: ">=18" } + peerDependencies: + "@babel/core": "*" + + "@react-native/codegen@0.74.87": + resolution: + { + integrity: sha512-GMSYDiD+86zLKgMMgz9z0k6FxmRn+z6cimYZKkucW4soGbxWsbjUAZoZ56sJwt2FJ3XVRgXCrnOCgXoH/Bkhcg==, + } + engines: { node: ">=18" } + peerDependencies: + "@babel/preset-env": ^7.1.6 + + "@react-native/codegen@0.74.88": + resolution: + { + integrity: sha512-HMk/LCrSdUof9DZFaB2bK0soKyAF6XiCg2LG7WFjEkUDXayeiB4p7IsHISJWY4bYg7cMPZ0fiZMRaBP2vXJxgg==, + } + engines: { node: ">=18" } + peerDependencies: + "@babel/preset-env": ^7.1.6 + + "@react-native/community-cli-plugin@0.74.87": + resolution: + { + integrity: sha512-EgJG9lSr8x3X67dHQKQvU6EkO+3ksVlJHYIVv6U/AmW9dN80BEFxgYbSJ7icXS4wri7m4kHdgeq2PQ7/3vvrTQ==, + } + engines: { node: ">=18" } + + "@react-native/community-cli-plugin@0.74.88": + resolution: + { + integrity: sha512-O8zz784kksa36nBNiULHh0rYFGr4mwtBB95YvvBOEYiYnMjFkEOUe7BPKvYmX8W29MgskXcIGNrNvfre59o4xw==, + } + engines: { node: ">=18" } + + "@react-native/debugger-frontend@0.74.85": + resolution: + { + integrity: sha512-gUIhhpsYLUTYWlWw4vGztyHaX/kNlgVspSvKe2XaPA7o3jYKUoNLc3Ov7u70u/MBWfKdcEffWq44eSe3j3s5JQ==, + } + engines: { node: ">=18" } + + "@react-native/debugger-frontend@0.74.87": + resolution: + { + integrity: sha512-MN95DJLYTv4EqJc+9JajA3AJZSBYJz2QEJ3uWlHrOky2vKrbbRVaW1ityTmaZa2OXIvNc6CZwSRSE7xCoHbXhQ==, + } + engines: { node: ">=18" } + + "@react-native/debugger-frontend@0.74.88": + resolution: + { + integrity: sha512-3xUR/uJza241ya0UFxxaxQiB/gkUx1gynMxhlgc6zFxz/zSrLG1/AcA6hpua2ZvmOMabpo09XOOR1Hqvf2qPEQ==, + } + engines: { node: ">=18" } + + "@react-native/dev-middleware@0.74.85": + resolution: + { + integrity: sha512-BRmgCK5vnMmHaKRO+h8PKJmHHH3E6JFuerrcfE3wG2eZ1bcSr+QTu8DAlpxsDWvJvHpCi8tRJGauxd+Ssj/c7w==, + } + engines: { node: ">=18" } + + "@react-native/dev-middleware@0.74.87": + resolution: + { + integrity: sha512-7TmZ3hTHwooYgIHqc/z87BMe1ryrIqAUi+AF7vsD+EHCGxHFdMjSpf1BZ2SUPXuLnF2cTiTfV2RwhbPzx0tYIA==, + } + engines: { node: ">=18" } + + "@react-native/dev-middleware@0.74.88": + resolution: + { + integrity: sha512-RYaQ72j9ggeGI712UlAfWtuY0rD4WllArlYtEybT0x1zmUtLgq5lgJcSkwg501yfG/g10XB69Q2MM8gCWK8NAw==, + } + engines: { node: ">=18" } + + "@react-native/gradle-plugin@0.74.87": + resolution: + { + integrity: sha512-T+VX0N1qP+U9V4oAtn7FTX7pfsoVkd1ocyw9swYXgJqU2fK7hC9famW7b3s3ZiufPGPr1VPJe2TVGtSopBjL6A==, + } + engines: { node: ">=18" } + + "@react-native/gradle-plugin@0.74.88": + resolution: + { + integrity: sha512-cUu4gVLFTkHe0e5/IxSycRfbBhZs/5QF8AqYcoUBsZ5o+22Im9+M4DuGFv4U5Sa2NTy2VXOCpbBTepzKsdXlgw==, + } + engines: { node: ">=18" } + + "@react-native/js-polyfills@0.74.87": + resolution: + { + integrity: sha512-M5Evdn76CuVEF0GsaXiGi95CBZ4IWubHqwXxV9vG9CC9kq0PSkoM2Pn7Lx7dgyp4vT7ccJ8a3IwHbe+5KJRnpw==, + } + engines: { node: ">=18" } + + "@react-native/js-polyfills@0.74.88": + resolution: + { + integrity: sha512-6KljxfNKAz2b2uXqxagKbytb3MvUujAmfvuubKOoCLAiLbs8CYKW0OV1FqVLYUEXXw5GEDhXcVzQxxFuDlMafQ==, + } + engines: { node: ">=18" } + + "@react-native/metro-babel-transformer@0.74.87": + resolution: + { + integrity: sha512-UsJCO24sNax2NSPBmV1zLEVVNkS88kcgAiYrZHtYSwSjpl4WZ656tIeedBfiySdJ94Hr3kQmBYLipV5zk0NI1A==, + } + engines: { node: ">=18" } + + "@react-native/metro-babel-transformer@0.74.88": + resolution: + { + integrity: sha512-r7Er162iLpQce3ODQzNVS+PnjglJoHZ4l0NeaVMB4w45DIgKM4hC2vI6a/fzyFm9C6N+QY4P2i2RSkwjXVuBlQ==, + } + engines: { node: ">=18" } + peerDependencies: + "@babel/core": "*" + + "@react-native/metro-config@0.74.88": + resolution: + { + integrity: sha512-GYBVb+987onsGcycad7jW7P4lBpeuj2TIhuOcKJcvRSID59w3OPb54hi8P04Cn9fMWGunWDxb8IvpkAbffzlCw==, + } + engines: { node: ">=18" } + + "@react-native/normalize-color@2.1.0": + resolution: + { + integrity: sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==, + } + + "@react-native/normalize-colors@0.74.85": + resolution: + { + integrity: sha512-pcE4i0X7y3hsAE0SpIl7t6dUc0B0NZLd1yv7ssm4FrLhWG+CGyIq4eFDXpmPU1XHmL5PPySxTAjEMiwv6tAmOw==, + } + + "@react-native/normalize-colors@0.74.87": + resolution: + { + integrity: sha512-Xh7Nyk/MPefkb0Itl5Z+3oOobeG9lfLb7ZOY2DKpFnoCE1TzBmib9vMNdFaLdSxLIP+Ec6icgKtdzYg8QUPYzA==, + } + + "@react-native/normalize-colors@0.74.88": + resolution: + { + integrity: sha512-He5oTwPBxvXrxJ91dZzpxR7P+VYmc9IkJfhuH8zUiU50ckrt+xWNjtVugPdUv4LuVjmZ36Vk2EX8bl1gVn2dVA==, + } + + "@react-native/virtualized-lists@0.74.87": + resolution: + { + integrity: sha512-lsGxoFMb0lyK/MiplNKJpD+A1EoEUumkLrCjH4Ht+ZlG8S0BfCxmskLZ6qXn3BiDSkLjfjI/qyZ3pnxNBvkXpQ==, + } + engines: { node: ">=18" } + peerDependencies: + "@types/react": ^18.2.6 + react: "*" + react-native: "*" + peerDependenciesMeta: + "@types/react": + optional: true - '@react-navigation/stack@6.3.29': - resolution: {integrity: sha512-tzlGkoRgB6P7vgw7rHuWo3TL7Gzu6xh5LMf+zSdCuEiKp/qASzxYfnTEr9tOLbVs/gf+qeukEDheCSAJKVpBXw==} + "@react-native/virtualized-lists@0.74.88": + resolution: + { + integrity: sha512-nZn4X9zuyinRJoE/WcgB1e/X6b3J3QPRSsNC0LOjHzP97tvW6xvBacjbCAJAaZQwD9KaqZyK86eCi61ksr350g==, + } + engines: { node: ">=18" } peerDependencies: - '@react-navigation/native': ^6.0.0 - react: '*' - react-native: '*' - react-native-gesture-handler: '>= 1.0.0' - react-native-safe-area-context: '>= 3.0.0' - react-native-screens: '>= 3.0.0' + "@types/react": ^18.2.6 + react: "*" + react-native: "*" + peerDependenciesMeta: + "@types/react": + optional: true - '@reduxjs/toolkit@2.0.1': - resolution: {integrity: sha512-fxIjrR9934cmS8YXIGd9e7s1XRsEU++aFc9DVNMFMRTM5Vtsg2DCRMj21eslGtDt43IUf9bJL3h5bwUlZleibA==} + "@react-navigation/bottom-tabs@6.5.20": + resolution: + { + integrity: sha512-ow6Z06iS4VqBO8d7FP+HsGjJLWt2xTWIvuWjpoCvsM/uQXzCRDIjBv9HaKcXbF0yTW7IMir0oDAbU5PFzEDdgA==, + } + peerDependencies: + "@react-navigation/native": ^6.0.0 + react: "*" + react-native: "*" + react-native-safe-area-context: ">= 3.0.0" + react-native-screens: ">= 3.0.0" + + "@react-navigation/core@6.4.16": + resolution: + { + integrity: sha512-UDTJBsHxnzgFETR3ZxhctP+RWr4SkyeZpbhpkQoIGOuwSCkt1SE0qjU48/u6r6w6XlX8OqVudn1Ab0QFXTHxuQ==, + } + peerDependencies: + react: "*" + + "@react-navigation/elements@1.3.30": + resolution: + { + integrity: sha512-plhc8UvCZs0UkV+sI+3bisIyn78wz9O/BiWZXpounu72k/R/Sj5PuZYFJ1fi6psvriUveMCGh4LeZckAZu2qiQ==, + } + peerDependencies: + "@react-navigation/native": ^6.0.0 + react: "*" + react-native: "*" + react-native-safe-area-context: ">= 3.0.0" + + "@react-navigation/material-top-tabs@6.6.13": + resolution: + { + integrity: sha512-utwS0SLl/dq6+PHWGOz4rNNkYzveqvbffXJ6TIrUdaWDDysjBa4btHUOVvXfNADIK4LafmbuRi0xA/zd6HoCPQ==, + } + peerDependencies: + "@react-navigation/native": ^6.0.0 + react: "*" + react-native: "*" + react-native-pager-view: ">= 4.0.0" + react-native-tab-view: ">= 3.0.0" + + "@react-navigation/native-stack@6.9.26": + resolution: + { + integrity: sha512-++dueQ+FDj2XkZ902DVrK79ub1vp19nSdAZWxKRgd6+Bc0Niiesua6rMCqymYOVaYh+dagwkA9r00bpt/U5WLw==, + } + peerDependencies: + "@react-navigation/native": ^6.0.0 + react: "*" + react-native: "*" + react-native-safe-area-context: ">= 3.0.0" + react-native-screens: ">= 3.0.0" + + "@react-navigation/native@6.1.17": + resolution: + { + integrity: sha512-mer3OvfwWOHoUSMJyLa4vnBH3zpFmCwuzrBPlw7feXklurr/ZDiLjLxUScOot6jLRMz/67GyilEYMmP99LL0RQ==, + } + peerDependencies: + react: "*" + react-native: "*" + + "@react-navigation/routers@6.1.9": + resolution: + { + integrity: sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA==, + } + + "@react-navigation/stack@6.3.29": + resolution: + { + integrity: sha512-tzlGkoRgB6P7vgw7rHuWo3TL7Gzu6xh5LMf+zSdCuEiKp/qASzxYfnTEr9tOLbVs/gf+qeukEDheCSAJKVpBXw==, + } + peerDependencies: + "@react-navigation/native": ^6.0.0 + react: "*" + react-native: "*" + react-native-gesture-handler: ">= 1.0.0" + react-native-safe-area-context: ">= 3.0.0" + react-native-screens: ">= 3.0.0" + + "@reduxjs/toolkit@2.0.1": + resolution: + { + integrity: sha512-fxIjrR9934cmS8YXIGd9e7s1XRsEU++aFc9DVNMFMRTM5Vtsg2DCRMj21eslGtDt43IUf9bJL3h5bwUlZleibA==, + } peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18 react-redux: ^7.2.1 || ^8.1.3 || ^9.0.0 @@ -12214,1569 +15523,2590 @@ packages: react-redux: optional: true - '@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 + "@rnx-kit/chromium-edge-launcher@1.0.0": + resolution: + { + integrity: sha512-lzD84av1ZQhYUS+jsGqJiCMaJO2dn9u+RTT9n9q6D3SaKVwWqv+7AoRKqBu19bkwyE+iFRl1ymr40QS90jVFYg==, + } + engines: { node: ">=14.15" } + + "@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-commonjs@25.0.7': - resolution: {integrity: sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==} - engines: {node: '>=14.0.0'} + "@rollup/plugin-commonjs@25.0.7": + resolution: + { + integrity: sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==, + } + engines: { node: ">=14.0.0" } peerDependencies: rollup: ^2.68.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - '@rollup/plugin-node-resolve@11.2.1': - resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==} - engines: {node: '>= 10.0.0'} + "@rollup/plugin-node-resolve@11.2.1": + resolution: + { + integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==, + } + engines: { node: ">= 10.0.0" } peerDependencies: rollup: ^1.20.0||^2.0.0 - '@rollup/plugin-node-resolve@15.2.3': - resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} - engines: {node: '>=14.0.0'} + "@rollup/plugin-node-resolve@15.2.3": + resolution: + { + integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==, + } + 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/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.0': - resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} - engines: {node: '>=14.0.0'} + "@rollup/pluginutils@5.1.0": + resolution: + { + integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==, + } + 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.17.2': - resolution: {integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==} + "@rollup/rollup-android-arm-eabi@4.17.2": + resolution: + { + integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==, + } cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.17.2': - resolution: {integrity: sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==} + "@rollup/rollup-android-arm64@4.17.2": + resolution: + { + integrity: sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==, + } cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.17.2': - resolution: {integrity: sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==} + "@rollup/rollup-darwin-arm64@4.17.2": + resolution: + { + integrity: sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==, + } cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.17.2': - resolution: {integrity: sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==} + "@rollup/rollup-darwin-x64@4.17.2": + resolution: + { + integrity: sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==, + } cpu: [x64] os: [darwin] - '@rollup/rollup-linux-arm-gnueabihf@4.17.2': - resolution: {integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==} + "@rollup/rollup-linux-arm-gnueabihf@4.17.2": + resolution: + { + integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==, + } cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.17.2': - resolution: {integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==} + "@rollup/rollup-linux-arm-musleabihf@4.17.2": + resolution: + { + integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==, + } cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.17.2': - resolution: {integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==} + "@rollup/rollup-linux-arm64-gnu@4.17.2": + resolution: + { + integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==, + } cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.17.2': - resolution: {integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==} + "@rollup/rollup-linux-arm64-musl@4.17.2": + resolution: + { + integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==, + } cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.17.2': - resolution: {integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==} + "@rollup/rollup-linux-powerpc64le-gnu@4.17.2": + resolution: + { + integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==, + } cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.17.2': - resolution: {integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==} + "@rollup/rollup-linux-riscv64-gnu@4.17.2": + resolution: + { + integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==, + } cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.17.2': - resolution: {integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==} + "@rollup/rollup-linux-s390x-gnu@4.17.2": + resolution: + { + integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==, + } cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.17.2': - resolution: {integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==} + "@rollup/rollup-linux-x64-gnu@4.17.2": + resolution: + { + integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==, + } cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.17.2': - resolution: {integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==} + "@rollup/rollup-linux-x64-musl@4.17.2": + resolution: + { + integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==, + } cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.17.2': - resolution: {integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==} + "@rollup/rollup-win32-arm64-msvc@4.17.2": + resolution: + { + integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==, + } cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.17.2': - resolution: {integrity: sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==} + "@rollup/rollup-win32-ia32-msvc@4.17.2": + resolution: + { + integrity: sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==, + } cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.17.2': - resolution: {integrity: sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==} + "@rollup/rollup-win32-x64-msvc@4.17.2": + resolution: + { + integrity: sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==, + } cpu: [x64] os: [win32] - '@rushstack/eslint-patch@1.10.1': - resolution: {integrity: sha512-S3Kq8e7LqxkA9s7HKLqXGTGck1uwis5vAXan3FnU5yw1Ec5hsSGnq4s/UCaSqABPOnOTg7zASLyst7+ohgWexg==} - - '@samverschueren/stream-to-observable@0.3.1': - resolution: {integrity: sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==} - engines: {node: '>=6'} - peerDependencies: - rxjs: '*' - zen-observable: '*' + "@rushstack/eslint-patch@1.10.1": + resolution: + { + integrity: sha512-S3Kq8e7LqxkA9s7HKLqXGTGck1uwis5vAXan3FnU5yw1Ec5hsSGnq4s/UCaSqABPOnOTg7zASLyst7+ohgWexg==, + } + + "@samverschueren/stream-to-observable@0.3.1": + resolution: + { + integrity: sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==, + } + engines: { node: ">=6" } + peerDependencies: + rxjs: "*" + zen-observable: "*" peerDependenciesMeta: rxjs: optional: true zen-observable: optional: true - '@scure/base@1.1.6': - resolution: {integrity: sha512-ok9AWwhcgYuGG3Zfhyqg+zwl+Wn5uE+dwC0NV/2qQkx4dABbb/bx96vWu8NSj+BNjjSjno+JRYRjle1jV08k3g==} - - '@scure/bip32@1.3.3': - resolution: {integrity: sha512-LJaN3HwRbfQK0X1xFSi0Q9amqOgzQnnDngIt+ZlsBC3Bm7/nE7K0kwshZHyaru79yIVRv/e1mQAjZyuZG6jOFQ==} - - '@scure/bip32@1.4.0': - resolution: {integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==} - - '@scure/bip39@1.2.2': - resolution: {integrity: sha512-HYf9TUXG80beW+hGAt3TRM8wU6pQoYur9iNypTROm42dorCGmLnFe3eWjz3gOq6G62H2WRh0FCzAR1PI+29zIA==} - - '@scure/bip39@1.3.0': - resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==} - - '@segment/analytics-react-native@2.19.1': - resolution: {integrity: sha512-p/FIF6s6DOrF4WF3oGoFknwB6Z8h5ZCJ02T0ICPjprQUDlsShyCFs5xc1lj0P3Exk/8t5de60VsBp7AU3T0GRg==} - engines: {node: '>=12'} - peerDependencies: - '@react-native-async-storage/async-storage': 1.x - '@segment/sovran-react-native': ^1.1.0 - react: '*' - react-native: '*' + "@scure/base@1.1.6": + resolution: + { + integrity: sha512-ok9AWwhcgYuGG3Zfhyqg+zwl+Wn5uE+dwC0NV/2qQkx4dABbb/bx96vWu8NSj+BNjjSjno+JRYRjle1jV08k3g==, + } + + "@scure/bip32@1.3.3": + resolution: + { + integrity: sha512-LJaN3HwRbfQK0X1xFSi0Q9amqOgzQnnDngIt+ZlsBC3Bm7/nE7K0kwshZHyaru79yIVRv/e1mQAjZyuZG6jOFQ==, + } + + "@scure/bip32@1.4.0": + resolution: + { + integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==, + } + + "@scure/bip39@1.2.2": + resolution: + { + integrity: sha512-HYf9TUXG80beW+hGAt3TRM8wU6pQoYur9iNypTROm42dorCGmLnFe3eWjz3gOq6G62H2WRh0FCzAR1PI+29zIA==, + } + + "@scure/bip39@1.3.0": + resolution: + { + integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==, + } + + "@segment/analytics-react-native@2.19.1": + resolution: + { + integrity: sha512-p/FIF6s6DOrF4WF3oGoFknwB6Z8h5ZCJ02T0ICPjprQUDlsShyCFs5xc1lj0P3Exk/8t5de60VsBp7AU3T0GRg==, + } + engines: { node: ">=12" } + peerDependencies: + "@react-native-async-storage/async-storage": 1.x + "@segment/sovran-react-native": ^1.1.0 + react: "*" + react-native: "*" react-native-get-random-values: 1.x peerDependenciesMeta: - '@react-native-async-storage/async-storage': + "@react-native-async-storage/async-storage": optional: true - '@segment/loosely-validate-event@2.0.0': - resolution: {integrity: sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==} - - '@segment/sovran-react-native@0.4.5': - resolution: {integrity: sha512-/dvud4hkszRNgTHdb7p822U+NXTuPxifqQzhcrfdjmFoXMafnzOUAi1KxeGV6Qdb73VAIxcnr/8hkTqdjZ3YLw==} - peerDependencies: - react: '*' - react-native: '*' - - '@segment/tsub@2.0.0': - resolution: {integrity: sha512-NzkBK8GwPsyQ74AceLjENbUoaFrObnzEKOX4ko2wZDuIyK+DnDm3B//8xZYI2LCKt+wUD55l6ygfjCoVs8RMWw==} + "@segment/loosely-validate-event@2.0.0": + resolution: + { + integrity: sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==, + } + + "@segment/sovran-react-native@0.4.5": + resolution: + { + integrity: sha512-/dvud4hkszRNgTHdb7p822U+NXTuPxifqQzhcrfdjmFoXMafnzOUAi1KxeGV6Qdb73VAIxcnr/8hkTqdjZ3YLw==, + } + peerDependencies: + react: "*" + react-native: "*" + + "@segment/tsub@2.0.0": + resolution: + { + integrity: sha512-NzkBK8GwPsyQ74AceLjENbUoaFrObnzEKOX4ko2wZDuIyK+DnDm3B//8xZYI2LCKt+wUD55l6ygfjCoVs8RMWw==, + } hasBin: true - '@sentry-internal/browser-utils@8.16.0': - resolution: {integrity: sha512-40lzNy5F6dUFCN85AGThBxHPQLSwoNhZM2hWqhAR5rZ3Yed0uBaKlm4aNJCeeUB9l4kd0sH0In+i9Nqu6TGKrw==} - engines: {node: '>=14.18'} - - '@sentry-internal/feedback@7.100.1': - resolution: {integrity: sha512-yqcRVnjf+qS+tC4NxOKLJOaSJ+csHmh/dHUzvCTkf5rLsplwXYRnny2r0tqGTQ4tuXMxwgSMKPYwicg81P+xuw==} - engines: {node: '>=12'} - - '@sentry-internal/feedback@8.16.0': - resolution: {integrity: sha512-BmRazZKl6iiVSg6eybUNOI1ve4eZqYpJYjkX48Jedn+7iZg7z12MNYl6IWPFBcN+sg+clf4wiKDr/SYS0yNemQ==} - engines: {node: '>=14.18'} - - '@sentry-internal/replay-canvas@7.100.1': - resolution: {integrity: sha512-TnqxqJGhbFhhYRhTG2WLFer+lVieV7mNGeIxFBiw1L4kuj8KGl+C0sknssKyZSRVJFSahhHIosHJGRMkkD//7g==} - engines: {node: '>=12'} - - '@sentry-internal/replay-canvas@8.16.0': - resolution: {integrity: sha512-Bjh6pCDLZIPAPU2dNvJfI7BQV16rsRtYcylJgkGamjf8IcaBu7r/Whsvt1q34xO29xc0ISlp+0xG+YAdN1690Q==} - engines: {node: '>=14.18'} - - '@sentry-internal/replay@8.16.0': - resolution: {integrity: sha512-JT/wmYU2JPtl8Ldl9oml/25Yz6C5wG+SpylDeUx4mPh728E/iI9vesIc2652J/0xots/DZXe4K6K5nYjdFtEcQ==} - engines: {node: '>=14.18'} - - '@sentry-internal/tracing@7.100.1': - resolution: {integrity: sha512-+u9RRf5eL3StiyiRyAHZmdkAR7GTSGx4Mt4Lmi5NEtCcWlTGZ1QgW2r8ZbhouVmTiJkjhQgYCyej3cojtazeJg==} - engines: {node: '>=8'} - - '@sentry/browser@7.100.1': - resolution: {integrity: sha512-IxHQ08ixf0bmaWpe4yt1J4UUsOpg02fxax9z3tOQYXw5MSzz5pDXn8M8DFUVJB3wWuyXhHXTub9yD3VIP9fnoA==} - engines: {node: '>=8'} - - '@sentry/browser@8.16.0': - resolution: {integrity: sha512-8Fxmk2aFWRixi2IKixiJR10Du34yb13HYr2iRw1haPKb5ZKa6CFA+XAnSzwpPZxO0RSHuPQR06YNkXaQ8fRAQQ==} - engines: {node: '>=14.18'} - - '@sentry/cli-darwin@2.30.0': - resolution: {integrity: sha512-JVesQ9PznbHBOOOwuej2X8/onfXdmAEjBH6fTyWxBl6K8mB4KmBX/aHunXWMBX+VR9X32XZghIqj7acwaFUMPA==} - engines: {node: '>=10'} + "@sentry-internal/browser-utils@8.16.0": + resolution: + { + integrity: sha512-40lzNy5F6dUFCN85AGThBxHPQLSwoNhZM2hWqhAR5rZ3Yed0uBaKlm4aNJCeeUB9l4kd0sH0In+i9Nqu6TGKrw==, + } + engines: { node: ">=14.18" } + + "@sentry-internal/feedback@7.117.0": + resolution: + { + integrity: sha512-4X+NnnY17W74TymgLFH7/KPTVYpEtoMMJh8HzVdCmHTOE6j32XKBeBMRaXBhmNYmEgovgyRKKf2KvtSfgw+V1Q==, + } + engines: { node: ">=12" } + + "@sentry-internal/feedback@8.16.0": + resolution: + { + integrity: sha512-BmRazZKl6iiVSg6eybUNOI1ve4eZqYpJYjkX48Jedn+7iZg7z12MNYl6IWPFBcN+sg+clf4wiKDr/SYS0yNemQ==, + } + engines: { node: ">=14.18" } + + "@sentry-internal/replay-canvas@7.117.0": + resolution: + { + integrity: sha512-7hjIhwEcoosr+BIa0AyEssB5xwvvlzUpvD5fXu4scd3I3qfX8gdnofO96a8r+LrQm3bSj+eN+4TfKEtWb7bU5A==, + } + engines: { node: ">=12" } + + "@sentry-internal/replay-canvas@8.16.0": + resolution: + { + integrity: sha512-Bjh6pCDLZIPAPU2dNvJfI7BQV16rsRtYcylJgkGamjf8IcaBu7r/Whsvt1q34xO29xc0ISlp+0xG+YAdN1690Q==, + } + engines: { node: ">=14.18" } + + "@sentry-internal/replay@8.16.0": + resolution: + { + integrity: sha512-JT/wmYU2JPtl8Ldl9oml/25Yz6C5wG+SpylDeUx4mPh728E/iI9vesIc2652J/0xots/DZXe4K6K5nYjdFtEcQ==, + } + engines: { node: ">=14.18" } + + "@sentry-internal/tracing@7.117.0": + resolution: + { + integrity: sha512-fAIyijNvKBZNA12IcKo+dOYDRTNrzNsdzbm3DP37vJRKVQu19ucqP4Y6InvKokffDP2HZPzFPDoGXYuXkDhUZg==, + } + engines: { node: ">=8" } + + "@sentry/browser@7.117.0": + resolution: + { + integrity: sha512-29X9HlvDEKIaWp6XKlNPPSNND0U6P/ede5WA2nVHfs1zJLWdZ7/ijuMc0sH/CueEkqHe/7gt94hBcI7HOU/wSw==, + } + engines: { node: ">=8" } + + "@sentry/browser@8.16.0": + resolution: + { + integrity: sha512-8Fxmk2aFWRixi2IKixiJR10Du34yb13HYr2iRw1haPKb5ZKa6CFA+XAnSzwpPZxO0RSHuPQR06YNkXaQ8fRAQQ==, + } + engines: { node: ">=14.18" } + + "@sentry/cli-darwin@2.31.0": + resolution: + { + integrity: sha512-VM5liyxMnm4K2g0WsrRPXRCMLhaT09C7gK5Fz/CxKYh9sbMZB7KA4hV/3klkyuyw1+ECF1J66cefhNkFZepUig==, + } + engines: { node: ">=10" } os: [darwin] - '@sentry/cli-darwin@2.31.0': - resolution: {integrity: sha512-VM5liyxMnm4K2g0WsrRPXRCMLhaT09C7gK5Fz/CxKYh9sbMZB7KA4hV/3klkyuyw1+ECF1J66cefhNkFZepUig==} - engines: {node: '>=10'} + "@sentry/cli-darwin@2.31.2": + resolution: + { + integrity: sha512-BHA/JJXj1dlnoZQdK4efRCtHRnbBfzbIZUKAze7oRR1RfNqERI84BVUQeKateD3jWSJXQfEuclIShc61KOpbKw==, + } + engines: { node: ">=10" } os: [darwin] - '@sentry/cli-linux-arm64@2.30.0': - resolution: {integrity: sha512-JNXPkkMubKoZVlcFIoClSmTb9C/I6Bz08DuAZm2jnjRaaOMiCBxI/l50H3dmfVZ6apjEguG9JkjFdb0kqKB90w==} - engines: {node: '>=10'} + "@sentry/cli-linux-arm64@2.31.0": + resolution: + { + integrity: sha512-eENJTmXoFX3uNr8xRW7Bua2Sw3V1tylQfdtS85pNjZPdbm3U8wYQSWu2VoZkK2ASOoC+17YC8jTQxq62KWnSeQ==, + } + engines: { node: ">=10" } cpu: [arm64] os: [linux, freebsd] - '@sentry/cli-linux-arm64@2.31.0': - resolution: {integrity: sha512-eENJTmXoFX3uNr8xRW7Bua2Sw3V1tylQfdtS85pNjZPdbm3U8wYQSWu2VoZkK2ASOoC+17YC8jTQxq62KWnSeQ==} - engines: {node: '>=10'} + "@sentry/cli-linux-arm64@2.31.2": + resolution: + { + integrity: sha512-FLVKkJ/rWvPy/ka7OrUdRW63a/z8HYI1Gt8Pr6rWs50hb7YJja8lM8IO10tYmcFE/tODICsnHO9HTeUg2g2d1w==, + } + engines: { node: ">=10" } cpu: [arm64] os: [linux, freebsd] - '@sentry/cli-linux-arm@2.30.0': - resolution: {integrity: sha512-MDB3iS31WKg4krCcLo520yxbUERPeA2DCtk9Qs9vSDbQl6Er64dteHllOdx1SDOyX/7GKcxrQEQ6SMmbnOo6wg==} - engines: {node: '>=10'} + "@sentry/cli-linux-arm@2.31.0": + resolution: + { + integrity: sha512-AZoCN3waXEfXGCd3YSrikcX/y63oQe0Tiyapkeoifq/0QhI+2MOOrAQb60gthsXwb0UDK/XeFi3PaxyUCphzxA==, + } + engines: { node: ">=10" } cpu: [arm] os: [linux, freebsd] - '@sentry/cli-linux-arm@2.31.0': - resolution: {integrity: sha512-AZoCN3waXEfXGCd3YSrikcX/y63oQe0Tiyapkeoifq/0QhI+2MOOrAQb60gthsXwb0UDK/XeFi3PaxyUCphzxA==} - engines: {node: '>=10'} + "@sentry/cli-linux-arm@2.31.2": + resolution: + { + integrity: sha512-W8k5mGYYZz/I/OxZH65YAK7dCkQAl+wbuoASGOQjUy5VDgqH0QJ8kGJufXvFPM+f3ZQGcKAnVsZ6tFqZXETBAw==, + } + engines: { node: ">=10" } cpu: [arm] os: [linux, freebsd] - '@sentry/cli-linux-i686@2.30.0': - resolution: {integrity: sha512-WhVVziFQw/fO0Cc53pY8goPAzJtIs6ORTR89fVbKwa3ZDNkX++mEOECbP7RkmD87kuRxyKzN543RPV971PcAHw==} - engines: {node: '>=10'} + "@sentry/cli-linux-i686@2.31.0": + resolution: + { + integrity: sha512-cQUFb3brhLaNSIoNzjU/YASnTM1I3TDJP9XXzH0eLK9sSopCcDcc6OrYEYvdjJXZKzFv5sbc9UNMsIDbh4+rYg==, + } + engines: { node: ">=10" } cpu: [x86, ia32] os: [linux, freebsd] - '@sentry/cli-linux-i686@2.31.0': - resolution: {integrity: sha512-cQUFb3brhLaNSIoNzjU/YASnTM1I3TDJP9XXzH0eLK9sSopCcDcc6OrYEYvdjJXZKzFv5sbc9UNMsIDbh4+rYg==} - engines: {node: '>=10'} + "@sentry/cli-linux-i686@2.31.2": + resolution: + { + integrity: sha512-A64QtzaPi3MYFpZ+Fwmi0mrSyXgeLJ0cWr4jdeTGrzNpeowSteKgd6tRKU+LVq0k5shKE7wdnHk+jXnoajulMA==, + } + engines: { node: ">=10" } cpu: [x86, ia32] os: [linux, freebsd] - '@sentry/cli-linux-x64@2.30.0': - resolution: {integrity: sha512-QkiVDeSfspotZ0Au5Yauv2DAm/BC1fL9BwPek/WwddM18I2HqnDp6l4TA4bQeEY++o0KEuNF53cPahpepltPjw==} - engines: {node: '>=10'} + "@sentry/cli-linux-x64@2.31.0": + resolution: + { + integrity: sha512-z1zTNg91nZJRdcGHC/bCU1KwIaifV0MLJteip9KrFDprzhJk1HtMxFOS0+OZ5/UH21CjAFmg9Pj6IAGqm3BYjA==, + } + engines: { node: ">=10" } cpu: [x64] os: [linux, freebsd] - '@sentry/cli-linux-x64@2.31.0': - resolution: {integrity: sha512-z1zTNg91nZJRdcGHC/bCU1KwIaifV0MLJteip9KrFDprzhJk1HtMxFOS0+OZ5/UH21CjAFmg9Pj6IAGqm3BYjA==} - engines: {node: '>=10'} + "@sentry/cli-linux-x64@2.31.2": + resolution: + { + integrity: sha512-YL/r+15R4mOEiU3mzn7iFQOeFEUB6KxeKGTTrtpeOGynVUGIdq4nV5rHow5JDbIzOuBS3SpOmcIMluvo1NCh0g==, + } + engines: { node: ">=10" } cpu: [x64] os: [linux, freebsd] - '@sentry/cli-win32-i686@2.30.0': - resolution: {integrity: sha512-xLY9B1EEGuNYPKpK6M9PMmcu2PzofdvRtbraTcU6Ck2zALS5oXB9kmWc4dDKucZ/uu9JB0m+Lo4ebaNlca45qQ==} - engines: {node: '>=10'} + "@sentry/cli-win32-i686@2.31.0": + resolution: + { + integrity: sha512-+K7fdk57aUd4CmYrQfDGYPzVyxsTnVro6IPb5QSSLpP03dL7ko5208epu4m2SyN/MkFvscy9Di3n3DTvIfDU2w==, + } + engines: { node: ">=10" } cpu: [x86, ia32] os: [win32] - '@sentry/cli-win32-i686@2.31.0': - resolution: {integrity: sha512-+K7fdk57aUd4CmYrQfDGYPzVyxsTnVro6IPb5QSSLpP03dL7ko5208epu4m2SyN/MkFvscy9Di3n3DTvIfDU2w==} - engines: {node: '>=10'} + "@sentry/cli-win32-i686@2.31.2": + resolution: + { + integrity: sha512-Az/2bmW+TFI059RE0mSBIxTBcoShIclz7BDebmIoCkZ+retrwAzpmBnBCDAHow+Yi43utOow+3/4idGa2OxcLw==, + } + engines: { node: ">=10" } cpu: [x86, ia32] os: [win32] - '@sentry/cli-win32-x64@2.30.0': - resolution: {integrity: sha512-CiXuxnpJI0zho0XE5PVqIS9CwjDEYoMnHQRIr4Jj9OzlGTJ2iSSU6Zp3Ykd7lgo2iK4P6MfxIBm30gFQPnSvVA==} - engines: {node: '>=10'} + "@sentry/cli-win32-x64@2.31.0": + resolution: + { + integrity: sha512-w5cvpZ6VVlhlyleY8TYHmrP7g48vKHnoVt5xFccfxT+HqQI/AxodvzgVvBTM2kB/sh/kHwexp6bJGWCdkGftww==, + } + engines: { node: ">=10" } cpu: [x64] os: [win32] - '@sentry/cli-win32-x64@2.31.0': - resolution: {integrity: sha512-w5cvpZ6VVlhlyleY8TYHmrP7g48vKHnoVt5xFccfxT+HqQI/AxodvzgVvBTM2kB/sh/kHwexp6bJGWCdkGftww==} - engines: {node: '>=10'} + "@sentry/cli-win32-x64@2.31.2": + resolution: + { + integrity: sha512-XIzyRnJu539NhpFa+JYkotzVwv3NrZ/4GfHB/JWA2zReRvsk39jJG8D5HOmm0B9JA63QQT7Dt39RW8g3lkmb6w==, + } + engines: { node: ">=10" } cpu: [x64] os: [win32] - '@sentry/cli@2.30.0': - resolution: {integrity: sha512-GTO5e98vy2QwEYQvhE/ZtGUiVrUu4XungLioJbazm+ZOen8cyac8YOapZfozN5mtxjWOWMOwhOqoTeCU3Q8YKQ==} - engines: {node: '>= 10'} + "@sentry/cli@2.31.0": + resolution: + { + integrity: sha512-nCESoXAG3kRUO5n3QbDYAqX6RU3z1ORjnd7a3sqijYsCGHfOpcjGdS7JYLVg5if+tXMEF5529BPXFe5Kg/J9tw==, + } + engines: { node: ">= 10" } hasBin: true - '@sentry/cli@2.31.0': - resolution: {integrity: sha512-nCESoXAG3kRUO5n3QbDYAqX6RU3z1ORjnd7a3sqijYsCGHfOpcjGdS7JYLVg5if+tXMEF5529BPXFe5Kg/J9tw==} - engines: {node: '>= 10'} + "@sentry/cli@2.31.2": + resolution: + { + integrity: sha512-2aKyUx6La2P+pplL8+2vO67qJ+c1C79KYWAyQBE0JIT5kvKK9JpwtdNoK1F0/2mRpwhhYPADCz3sVIRqmL8cQQ==, + } + engines: { node: ">= 10" } hasBin: true - '@sentry/core@6.19.7': - resolution: {integrity: sha512-tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw==} - engines: {node: '>=6'} - - '@sentry/core@7.100.1': - resolution: {integrity: sha512-f+ItUge/o9AjlveQq0ZUbQauKlPH1FIJbC1TRaYLJ4KNfOdrsh8yZ29RmWv0cFJ/e+FGTr603gWpRPObF5rM8Q==} - engines: {node: '>=8'} - - '@sentry/core@8.16.0': - resolution: {integrity: sha512-l9mQgm5OqnykvZMh6PmJ/9ygW4qLyEFop+pQH/uM5zQCZQvEa7rvAd9QXKHdbVKq1CxJa/nJiByc8wPWxsftGQ==} - engines: {node: '>=14.18'} - - '@sentry/electron@5.2.0': - resolution: {integrity: sha512-KXwY/JB/6GfD5GdYVtiORXaBJ3WQNKeTDMQFKIwnDv4SpzNsbG0luk71K1iOXFWbboOhom/QITatSgoE7f3TSw==} - - '@sentry/hub@6.19.7': - resolution: {integrity: sha512-y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA==} - engines: {node: '>=6'} - - '@sentry/hub@7.100.1': - resolution: {integrity: sha512-zdt7f1k+5JE5FAunzBZUEFbvK5YP/LekLMeogTonaRObB07J6fJ9FD4mtNk7pV0utrTDwR+n942qmp+LbWauWA==} - engines: {node: '>=8'} - - '@sentry/integrations@7.100.1': - resolution: {integrity: sha512-RUyZHcsN3Plc8G4hJN3BCMdbwS8ljUY3E3iLjzucA4HroBsGk5AMc6n7Pp/QqFIRgxrPjKEgA52Wgy5Nq6dSvw==} - engines: {node: '>=8'} - - '@sentry/minimal@6.19.7': - resolution: {integrity: sha512-wcYmSJOdvk6VAPx8IcmZgN08XTXRwRtB1aOLZm+MVHjIZIhHoBGZJYTVQS/BWjldsamj2cX3YGbGXNunaCfYJQ==} - engines: {node: '>=6'} - - '@sentry/node@6.19.7': - resolution: {integrity: sha512-gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg==} - engines: {node: '>=6'} - - '@sentry/node@8.16.0': - resolution: {integrity: sha512-MIc09ECfTcJ5Vqo0QUJ9MUVSQZU6IDqIzPj2QsRDnRVU5QnghNgZcK7raovNz8vByFEWoFuMwPpKabf1pN4pWA==} - engines: {node: '>=14.18'} - - '@sentry/opentelemetry@8.16.0': - resolution: {integrity: sha512-x5yXEpv6flmNMcghTdgKd7zktWqnjG0H2g90j+XAetvsLxVGzmQkwn4XR4YDoL5qFJ08DxcWdXs4B5oplOtsVA==} - engines: {node: '>=14.18'} - peerDependencies: - '@opentelemetry/api': ^1.9.0 - '@opentelemetry/core': ^1.25.1 - '@opentelemetry/instrumentation': ^0.52.1 - '@opentelemetry/sdk-trace-base': ^1.25.1 - '@opentelemetry/semantic-conventions': ^1.25.1 - - '@sentry/react-native@5.20.0': - resolution: {integrity: sha512-1jWqQFRvQeFgYrEXfvr0TTG/kXIGV2KgtkNqlInTTuXFXo6qInFhuu4Ak4zNuitFlfr6Soh2ASlJrpkBKf2pAg==} + "@sentry/core@6.19.7": + resolution: + { + integrity: sha512-tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw==, + } + engines: { node: ">=6" } + + "@sentry/core@7.117.0": + resolution: + { + integrity: sha512-1XZ4/d/DEwnfM2zBMloXDwX+W7s76lGKQMgd8bwgPJZjjEztMJ7X0uopKAGwlQcjn242q+hsCBR6C+fSuI5kvg==, + } + engines: { node: ">=8" } + + "@sentry/core@8.16.0": + resolution: + { + integrity: sha512-l9mQgm5OqnykvZMh6PmJ/9ygW4qLyEFop+pQH/uM5zQCZQvEa7rvAd9QXKHdbVKq1CxJa/nJiByc8wPWxsftGQ==, + } + engines: { node: ">=14.18" } + + "@sentry/electron@5.2.0": + resolution: + { + integrity: sha512-KXwY/JB/6GfD5GdYVtiORXaBJ3WQNKeTDMQFKIwnDv4SpzNsbG0luk71K1iOXFWbboOhom/QITatSgoE7f3TSw==, + } + + "@sentry/hub@6.19.7": + resolution: + { + integrity: sha512-y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA==, + } + engines: { node: ">=6" } + + "@sentry/hub@7.117.0": + resolution: + { + integrity: sha512-pQrXnbzsRHCUsVIqz/sZ0vggnxuuHqsmyjoy2Ha1qn1Ya4QbyAWEEGoZTnZx6I/Vt3dzVvRnR3YCywatdkaFxg==, + } + engines: { node: ">=8" } + + "@sentry/integrations@7.117.0": + resolution: + { + integrity: sha512-U3suSZysmU9EiQqg0ga5CxveAyNbi9IVdsapMDq5EQGNcVDvheXtULs+BOc11WYP3Kw2yWB38VDqLepfc/Fg2g==, + } + engines: { node: ">=8" } + + "@sentry/minimal@6.19.7": + resolution: + { + integrity: sha512-wcYmSJOdvk6VAPx8IcmZgN08XTXRwRtB1aOLZm+MVHjIZIhHoBGZJYTVQS/BWjldsamj2cX3YGbGXNunaCfYJQ==, + } + engines: { node: ">=6" } + + "@sentry/node@6.19.7": + resolution: + { + integrity: sha512-gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg==, + } + engines: { node: ">=6" } + + "@sentry/node@8.16.0": + resolution: + { + integrity: sha512-MIc09ECfTcJ5Vqo0QUJ9MUVSQZU6IDqIzPj2QsRDnRVU5QnghNgZcK7raovNz8vByFEWoFuMwPpKabf1pN4pWA==, + } + engines: { node: ">=14.18" } + + "@sentry/opentelemetry@8.16.0": + resolution: + { + integrity: sha512-x5yXEpv6flmNMcghTdgKd7zktWqnjG0H2g90j+XAetvsLxVGzmQkwn4XR4YDoL5qFJ08DxcWdXs4B5oplOtsVA==, + } + engines: { node: ">=14.18" } + peerDependencies: + "@opentelemetry/api": ^1.9.0 + "@opentelemetry/core": ^1.25.1 + "@opentelemetry/instrumentation": ^0.52.1 + "@opentelemetry/sdk-trace-base": ^1.25.1 + "@opentelemetry/semantic-conventions": ^1.25.1 + + "@sentry/react-native@5.24.3": + resolution: + { + integrity: sha512-KBtXSYzk4Ge9GX4e7520oHhmo6UqGl3rH627Xpl3Gxmh9psQsLDmYXVKiMOFBZrSBAv7FAV0jf6zERK8lNY/Gg==, + } hasBin: true peerDependencies: - expo: '>=49.0.0' - react: '>=17.0.0' - react-native: '>=0.65.0' + expo: ">=49.0.0" + react: ">=17.0.0" + react-native: ">=0.65.0" peerDependenciesMeta: expo: optional: true - '@sentry/react@7.100.1': - resolution: {integrity: sha512-EdrBtrXVLK2LSx4Rvz/nQP7HZUZQmr+t3GHV8436RAhF6vs5mntACVMBoQJRWiUvtZ1iRo3rIsIdah7DLiFPgQ==} - engines: {node: '>=8'} + "@sentry/react@7.117.0": + resolution: + { + integrity: sha512-aK+yaEP2esBhaczGU96Y7wkqB4umSIlRAzobv7ER88EGHzZulRaocTpQO8HJJGDHm4D8rD+E893BHnghkoqp4Q==, + } + engines: { node: ">=8" } peerDependencies: react: 15.x || 16.x || 17.x || 18.x - '@sentry/replay@7.100.1': - resolution: {integrity: sha512-B1NFjzGEFaqejxBRdUyEzH8ChXc2kfiqlA/W/Lg0aoWIl2/7nuMk+l4ld9gW5F5bIAXDTVd5vYltb1lWEbpr7w==} - engines: {node: '>=12'} - - '@sentry/types@6.19.7': - resolution: {integrity: sha512-jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg==} - engines: {node: '>=6'} - - '@sentry/types@7.100.1': - resolution: {integrity: sha512-fLM+LedHuKzOd8IhXBqaQuym+AA519MGjeczBa5kGakes/BbAsUMwsNfjsKQedp7Kh44RgYF99jwoRPK2oDrXw==} - engines: {node: '>=8'} - - '@sentry/types@8.16.0': - resolution: {integrity: sha512-cIRsn7gWGVaWHgCniBWA0N8PNwzDYibhjyjPRTMxUjuZCT37i7zxByKKmd9u4TpRIJ64MyirNyM0O6T0A26fpg==} - engines: {node: '>=14.18'} - - '@sentry/utils@6.19.7': - resolution: {integrity: sha512-z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA==} - engines: {node: '>=6'} - - '@sentry/utils@7.100.1': - resolution: {integrity: sha512-Ve6dXr1o6xiBe3VCoJgiutmBKrugryI65EZAbYto5XI+t+PjiLLf9wXtEMF24ZrwImo4Lv3E9Uqza+fWkEbw6A==} - engines: {node: '>=8'} - - '@sentry/utils@8.16.0': - resolution: {integrity: sha512-tltCf2DVzz5TiYjxu/Rxbc9Qmm04893MFshV97jOTBcQeO2AAZBEl5rAoTCv1P08y7Yg+KiVwCx9Zj2x5U80/g==} - engines: {node: '>=14.18'} - - '@shopify/flash-list@1.6.4': - resolution: {integrity: sha512-M2momcnY7swsvmpHIFDVbdOaFw4aQocJXA/lFP0Gpz+alQjFylqVKvszxl4atYO2SNbjxlb2L6hEP9WEcAknGQ==} - peerDependencies: - '@babel/runtime': '*' - react: '*' - react-native: '*' - - '@shopify/react-native-performance-navigation@3.0.0': - resolution: {integrity: sha512-KhXXi3Rau2KWqwAXnW77gGuKEvWcMEmh+B5mdfRd9+oJ9QIoCkLPnnGcZYsMh0t3jFrmLFNmWTqScEB3CxkopQ==} - peerDependencies: - '@babel/runtime': '*' - '@react-navigation/core': ^6.2.1 - '@react-navigation/native': ^6.0.10 - '@react-navigation/stack': ^6.2.1 - '@shopify/react-native-performance': ^2.0.0 - react: '*' - react-native: '*' - - '@shopify/react-native-performance@4.1.2': - resolution: {integrity: sha512-1Xu2xo+hAxg75iuX5akVqAgc3h/J1ohfi7JKXlGsprP4ylpW7kHMfq/7AstL7FoUC8xcHsTUvUFhoZ94ot8g6Q==} - peerDependencies: - '@babel/runtime': '*' - react: '*' - react-native: '*' - - '@sideway/address@4.1.5': - resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} - - '@sideway/formula@3.0.1': - resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} - - '@sideway/pinpoint@2.0.0': - resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} - - '@sinclair/typebox@0.24.51': - resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==} - - '@sinclair/typebox@0.27.8': - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} - - '@sindresorhus/is@0.14.0': - resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} - engines: {node: '>=6'} - - '@sindresorhus/is@4.6.0': - resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} - engines: {node: '>=10'} - - '@sinonjs/commons@1.8.6': - resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} - - '@sinonjs/commons@3.0.1': - resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} - - '@sinonjs/fake-timers@10.3.0': - resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} - - '@sinonjs/fake-timers@8.1.0': - resolution: {integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==} - - '@sinonjs/fake-timers@9.1.2': - resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==} - - '@smithy/abort-controller@2.2.0': - resolution: {integrity: sha512-wRlta7GuLWpTqtFfGo+nZyOO1vEvewdNR1R4rTxpC8XU6vG/NDyrFBhwLZsqg1NUoR1noVaXJPC/7ZK47QCySw==} - engines: {node: '>=14.0.0'} - - '@smithy/abort-controller@3.1.2': - resolution: {integrity: sha512-b5g+PNujlfqIib9BjkNB108NyO5aZM/RXjfOCXRCqXQ1oPnIkfvdORrztbGgCZdPe/BN/MKDlrGA7PafKPM2jw==} - engines: {node: '>=16.0.0'} - - '@smithy/chunked-blob-reader-native@2.2.0': - resolution: {integrity: sha512-VNB5+1oCgX3Fzs072yuRsUoC2N4Zg/LJ11DTxX3+Qu+Paa6AmbIF0E9sc2wthz9Psrk/zcOlTCyuposlIhPjZQ==} - - '@smithy/chunked-blob-reader-native@3.0.0': - resolution: {integrity: sha512-VDkpCYW+peSuM4zJip5WDfqvg2Mo/e8yxOv3VF1m11y7B8KKMKVFtmZWDe36Fvk8rGuWrPZHHXZ7rR7uM5yWyg==} - - '@smithy/chunked-blob-reader@2.2.0': - resolution: {integrity: sha512-3GJNvRwXBGdkDZZOGiziVYzDpn4j6zfyULHMDKAGIUo72yHALpE9CbhfQp/XcLNVoc1byfMpn6uW5H2BqPjgaQ==} - - '@smithy/chunked-blob-reader@3.0.0': - resolution: {integrity: sha512-sbnURCwjF0gSToGlsBiAmd1lRCmSn72nu9axfJu5lIx6RUEgHu6GwTMbqCdhQSi0Pumcm5vFxsi9XWXb2mTaoA==} - - '@smithy/config-resolver@2.2.0': - resolution: {integrity: sha512-fsiMgd8toyUba6n1WRmr+qACzXltpdDkPTAaDqc8QqPBUzO+/JKwL6bUBseHVi8tu9l+3JOK+tSf7cay+4B3LA==} - engines: {node: '>=14.0.0'} - - '@smithy/config-resolver@3.0.6': - resolution: {integrity: sha512-j7HuVNoRd8EhcFp0MzcUb4fG40C7BcyshH+fAd3Jhd8bINNFvEQYBrZoS/SK6Pun9WPlfoI8uuU2SMz8DsEGlA==} - engines: {node: '>=16.0.0'} - - '@smithy/core@1.4.0': - resolution: {integrity: sha512-uu9ZDI95Uij4qk+L6kyFjdk11zqBkcJ3Lv0sc6jZrqHvLyr0+oeekD3CnqMafBn/5PRI6uv6ulW3kNLRBUHeVw==} - engines: {node: '>=14.0.0'} - - '@smithy/core@2.4.1': - resolution: {integrity: sha512-7cts7/Oni7aCHebHGiBeWoz5z+vmH+Vx2Z/UW3XtXMslcxI3PEwBZxNinepwZjixS3n12fPc247PHWmjU7ndsQ==} - engines: {node: '>=16.0.0'} - - '@smithy/credential-provider-imds@2.3.0': - resolution: {integrity: sha512-BWB9mIukO1wjEOo1Ojgl6LrG4avcaC7T/ZP6ptmAaW4xluhSIPZhY+/PI5YKzlk+jsm+4sQZB45Bt1OfMeQa3w==} - engines: {node: '>=14.0.0'} - - '@smithy/credential-provider-imds@3.2.1': - resolution: {integrity: sha512-4z/oTWpRF2TqQI3aCM89/PWu3kim58XU4kOCTtuTJnoaS4KT95cPWMxbQfTN2vzcOe96SOKO8QouQW/+ESB1fQ==} - engines: {node: '>=16.0.0'} - - '@smithy/eventstream-codec@2.2.0': - resolution: {integrity: sha512-8janZoJw85nJmQZc4L8TuePp2pk1nxLgkxIR0TUjKJ5Dkj5oelB9WtiSSGXCQvNsJl0VSTvK/2ueMXxvpa9GVw==} - - '@smithy/eventstream-codec@3.1.3': - resolution: {integrity: sha512-mKBrmhg6Zd3j07G9dkKTGmrU7pdJGTNz8LbZtIOR3QoodS5yDNqEqoXU4Eg38snZcnCAh7NPBsw5ndxtJPLiCg==} - - '@smithy/eventstream-serde-browser@2.2.0': - resolution: {integrity: sha512-UaPf8jKbcP71BGiO0CdeLmlg+RhWnlN8ipsMSdwvqBFigl5nil3rHOI/5GE3tfiuX8LvY5Z9N0meuU7Rab7jWw==} - engines: {node: '>=14.0.0'} - - '@smithy/eventstream-serde-browser@3.0.7': - resolution: {integrity: sha512-UC4RQqyM8B0g5cX/xmWtsNgSBmZ13HrzCqoe5Ulcz6R462/egbIdfTXnayik7jkjvwOrCPL1N11Q9S+n68jPLA==} - engines: {node: '>=16.0.0'} - - '@smithy/eventstream-serde-config-resolver@2.2.0': - resolution: {integrity: sha512-RHhbTw/JW3+r8QQH7PrganjNCiuiEZmpi6fYUAetFfPLfZ6EkiA08uN3EFfcyKubXQxOwTeJRZSQmDDCdUshaA==} - engines: {node: '>=14.0.0'} - - '@smithy/eventstream-serde-config-resolver@3.0.4': - resolution: {integrity: sha512-saIs5rtAMpifqL7u7nc5YeE/6gkenzXpSz5NwEyhIesRWtHK+zEuYn9KY8SArZEbPSHyGxvvgKk1z86VzfUGHw==} - engines: {node: '>=16.0.0'} - - '@smithy/eventstream-serde-node@2.2.0': - resolution: {integrity: sha512-zpQMtJVqCUMn+pCSFcl9K/RPNtQE0NuMh8sKpCdEHafhwRsjP50Oq/4kMmvxSRy6d8Jslqd8BLvDngrUtmN9iA==} - engines: {node: '>=14.0.0'} - - '@smithy/eventstream-serde-node@3.0.6': - resolution: {integrity: sha512-gRKGBdZah3EjZZgWcsTpShq4cZ4Q4JTTe1OPob+jrftmbYj6CvpeydZbH0roO5SvBG8SI3aBZIet9TGN3zUxUw==} - engines: {node: '>=16.0.0'} - - '@smithy/eventstream-serde-universal@2.2.0': - resolution: {integrity: sha512-pvoe/vvJY0mOpuF84BEtyZoYfbehiFj8KKWk1ds2AT0mTLYFVs+7sBJZmioOFdBXKd48lfrx1vumdPdmGlCLxA==} - engines: {node: '>=14.0.0'} - - '@smithy/eventstream-serde-universal@3.0.6': - resolution: {integrity: sha512-1jvXd4sFG+zKaL6WqrJXpL6E+oAMafuM5GPd4qF0+ccenZTX3DZugoCCjlooQyTh+TZho2FpdVYUf5J/bB/j6Q==} - engines: {node: '>=16.0.0'} - - '@smithy/fetch-http-handler@2.5.0': - resolution: {integrity: sha512-BOWEBeppWhLn/no/JxUL/ghTfANTjT7kg3Ww2rPqTUY9R4yHPXxJ9JhMe3Z03LN3aPwiwlpDIUcVw1xDyHqEhw==} - - '@smithy/fetch-http-handler@3.2.5': - resolution: {integrity: sha512-DjRtGmK8pKQMIo9+JlAKUt14Z448bg8nAN04yKIvlrrpmpRSG57s5d2Y83npks1r4gPtTRNbAFdQCoj9l3P2KQ==} - - '@smithy/hash-blob-browser@2.2.0': - resolution: {integrity: sha512-SGPoVH8mdXBqrkVCJ1Hd1X7vh1zDXojNN1yZyZTZsCno99hVue9+IYzWDjq/EQDDXxmITB0gBmuyPh8oAZSTcg==} - - '@smithy/hash-blob-browser@3.1.3': - resolution: {integrity: sha512-im9wAU9mANWW0OP0YGqwX3lw0nXG0ngyIcKQ8V/MUz1r7A6uO2lpPqKmAsH4VPGNLP2JPUhj4aW/m5UKkxX/IA==} - - '@smithy/hash-node@2.2.0': - resolution: {integrity: sha512-zLWaC/5aWpMrHKpoDF6nqpNtBhlAYKF/7+9yMN7GpdR8CzohnWfGtMznPybnwSS8saaXBMxIGwJqR4HmRp6b3g==} - engines: {node: '>=14.0.0'} - - '@smithy/hash-node@3.0.4': - resolution: {integrity: sha512-6FgTVqEfCr9z/7+Em8BwSkJKA2y3krf1em134x3yr2NHWVCo2KYI8tcA53cjeO47y41jwF84ntsEE0Pe6pNKlg==} - engines: {node: '>=16.0.0'} - - '@smithy/hash-stream-node@2.2.0': - resolution: {integrity: sha512-aT+HCATOSRMGpPI7bi7NSsTNVZE/La9IaxLXWoVAYMxHT5hGO3ZOGEMZQg8A6nNL+pdFGtZQtND1eoY084HgHQ==} - engines: {node: '>=14.0.0'} - - '@smithy/hash-stream-node@3.1.3': - resolution: {integrity: sha512-Tz/eTlo1ffqYn+19VaMjDDbmEWqYe4DW1PAWaS8HvgRdO6/k9hxNPt8Wv5laXoilxE20YzKugiHvxHyO6J7kGA==} - engines: {node: '>=16.0.0'} - - '@smithy/invalid-dependency@2.2.0': - resolution: {integrity: sha512-nEDASdbKFKPXN2O6lOlTgrEEOO9NHIeO+HVvZnkqc8h5U9g3BIhWsvzFo+UcUbliMHvKNPD/zVxDrkP1Sbgp8Q==} - - '@smithy/invalid-dependency@3.0.4': - resolution: {integrity: sha512-MJBUrojC4SEXi9aJcnNOE3oNAuYNphgCGFXscaCj2TA/59BTcXhzHACP8jnnEU3n4yir/NSLKzxqez0T4x4tjA==} - - '@smithy/is-array-buffer@2.2.0': - resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==} - engines: {node: '>=14.0.0'} - - '@smithy/is-array-buffer@3.0.0': - resolution: {integrity: sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==} - engines: {node: '>=16.0.0'} - - '@smithy/md5-js@2.2.0': - resolution: {integrity: sha512-M26XTtt9IIusVMOWEAhIvFIr9jYj4ISPPGJROqw6vXngO3IYJCnVVSMFn4Tx1rUTG5BiKJNg9u2nxmBiZC5IlQ==} - - '@smithy/md5-js@3.0.4': - resolution: {integrity: sha512-qSlqr/+hybufIJgxQW2gYzGE6ywfOxkjjJVojbbmv4MtxfdDFfzRew+NOIOXcYgazW0f8OYBTIKsmNsjxpvnng==} - - '@smithy/middleware-content-length@2.2.0': - resolution: {integrity: sha512-5bl2LG1Ah/7E5cMSC+q+h3IpVHMeOkG0yLRyQT1p2aMJkSrZG7RlXHPuAgb7EyaFeidKEnnd/fNaLLaKlHGzDQ==} - engines: {node: '>=14.0.0'} - - '@smithy/middleware-content-length@3.0.6': - resolution: {integrity: sha512-AFyHCfe8rumkJkz+hCOVJmBagNBj05KypyDwDElA4TgMSA4eYDZRjVePFZuyABrJZFDc7uVj3dpFIDCEhf59SA==} - engines: {node: '>=16.0.0'} - - '@smithy/middleware-endpoint@2.5.0': - resolution: {integrity: sha512-OBhI9ZEAG8Xen0xsFJwwNOt44WE2CWkfYIxTognC8x42Lfsdf0VN/wCMqpdkySMDio/vts10BiovAxQp0T0faA==} - engines: {node: '>=14.0.0'} - - '@smithy/middleware-endpoint@3.1.1': - resolution: {integrity: sha512-Irv+soW8NKluAtFSEsF8O3iGyLxa5oOevJb/e1yNacV9H7JP/yHyJuKST5YY2ORS1+W34VR8EuUrOF+K29Pl4g==} - engines: {node: '>=16.0.0'} - - '@smithy/middleware-retry@2.2.0': - resolution: {integrity: sha512-PsjDOLpbevgn37yJbawmfVoanru40qVA8UEf2+YA1lvOefmhuhL6ZbKtGsLAWDRnE1OlAmedsbA/htH6iSZjNA==} - engines: {node: '>=14.0.0'} - - '@smithy/middleware-retry@3.0.16': - resolution: {integrity: sha512-08kI36p1yB4CWO3Qi+UQxjzobt8iQJpnruF0K5BkbZmA/N/sJ51A1JJGJ36GgcbFyPfWw2FU48S5ZoqXt0h0jw==} - engines: {node: '>=16.0.0'} - - '@smithy/middleware-serde@2.3.0': - resolution: {integrity: sha512-sIADe7ojwqTyvEQBe1nc/GXB9wdHhi9UwyX0lTyttmUWDJLP655ZYE1WngnNyXREme8I27KCaUhyhZWRXL0q7Q==} - engines: {node: '>=14.0.0'} - - '@smithy/middleware-serde@3.0.4': - resolution: {integrity: sha512-1lPDB2O6IJ50Ucxgn7XrvZXbbuI48HmPCcMTuSoXT1lDzuTUfIuBjgAjpD8YLVMfnrjdepi/q45556LA51Pubw==} - engines: {node: '>=16.0.0'} - - '@smithy/middleware-stack@2.2.0': - resolution: {integrity: sha512-Qntc3jrtwwrsAC+X8wms8zhrTr0sFXnyEGhZd9sLtsJ/6gGQKFzNB+wWbOcpJd7BR8ThNCoKt76BuQahfMvpeA==} - engines: {node: '>=14.0.0'} - - '@smithy/middleware-stack@3.0.4': - resolution: {integrity: sha512-sLMRjtMCqtVcrOqaOZ10SUnlFE25BSlmLsi4bRSGFD7dgR54eqBjfqkVkPBQyrKBortfGM0+2DJoUPcGECR+nQ==} - engines: {node: '>=16.0.0'} - - '@smithy/node-config-provider@2.3.0': - resolution: {integrity: sha512-0elK5/03a1JPWMDPaS726Iw6LpQg80gFut1tNpPfxFuChEEklo2yL823V94SpTZTxmKlXFtFgsP55uh3dErnIg==} - engines: {node: '>=14.0.0'} - - '@smithy/node-config-provider@3.1.5': - resolution: {integrity: sha512-dq/oR3/LxgCgizVk7in7FGTm0w9a3qM4mg3IIXLTCHeW3fV+ipssSvBZ2bvEx1+asfQJTyCnVLeYf7JKfd9v3Q==} - engines: {node: '>=16.0.0'} - - '@smithy/node-http-handler@2.5.0': - resolution: {integrity: sha512-mVGyPBzkkGQsPoxQUbxlEfRjrj6FPyA3u3u2VXGr9hT8wilsoQdZdvKpMBFMB8Crfhv5dNkKHIW0Yyuc7eABqA==} - engines: {node: '>=14.0.0'} - - '@smithy/node-http-handler@3.2.0': - resolution: {integrity: sha512-5TFqaABbiY7uJMKbqR4OARjwI/l4TRoysDJ75pLpVQyO3EcmeloKYwDGyCtgB9WJniFx3BMkmGCB9+j+QiB+Ww==} - engines: {node: '>=16.0.0'} - - '@smithy/property-provider@2.2.0': - resolution: {integrity: sha512-+xiil2lFhtTRzXkx8F053AV46QnIw6e7MV8od5Mi68E1ICOjCeCHw2XfLnDEUHnT9WGUIkwcqavXjfwuJbGlpg==} - engines: {node: '>=14.0.0'} - - '@smithy/property-provider@3.1.4': - resolution: {integrity: sha512-BmhefQbfkSl9DeU0/e6k9N4sT5bya5etv2epvqLUz3eGyfRBhtQq60nDkc1WPp4c+KWrzK721cUc/3y0f2psPQ==} - engines: {node: '>=16.0.0'} - - '@smithy/protocol-http@3.3.0': - resolution: {integrity: sha512-Xy5XK1AFWW2nlY/biWZXu6/krgbaf2dg0q492D8M5qthsnU2H+UgFeZLbM76FnH7s6RO/xhQRkj+T6KBO3JzgQ==} - engines: {node: '>=14.0.0'} - - '@smithy/protocol-http@4.1.1': - resolution: {integrity: sha512-Fm5+8LkeIus83Y8jTL1XHsBGP8sPvE1rEVyKf/87kbOPTbzEDMcgOlzcmYXat2h+nC3wwPtRy8hFqtJS71+Wow==} - engines: {node: '>=16.0.0'} - - '@smithy/querystring-builder@2.2.0': - resolution: {integrity: sha512-L1kSeviUWL+emq3CUVSgdogoM/D9QMFaqxL/dd0X7PCNWmPXqt+ExtrBjqT0V7HLN03Vs9SuiLrG3zy3JGnE5A==} - engines: {node: '>=14.0.0'} - - '@smithy/querystring-builder@3.0.4': - resolution: {integrity: sha512-NEoPAsZPdpfVbF98qm8i5k1XMaRKeEnO47CaL5ja6Y1Z2DgJdwIJuJkTJypKm/IKfp8gc0uimIFLwhml8+/pAw==} - engines: {node: '>=16.0.0'} - - '@smithy/querystring-parser@2.2.0': - resolution: {integrity: sha512-BvHCDrKfbG5Yhbpj4vsbuPV2GgcpHiAkLeIlcA1LtfpMz3jrqizP1+OguSNSj1MwBHEiN+jwNisXLGdajGDQJA==} - engines: {node: '>=14.0.0'} - - '@smithy/querystring-parser@3.0.4': - resolution: {integrity: sha512-7CHPXffFcakFzhO0OZs/rn6fXlTHrSDdLhIT6/JIk1u2bvwguTL3fMCc1+CfcbXA7TOhjWXu3TcB1EGMqJQwHg==} - engines: {node: '>=16.0.0'} - - '@smithy/service-error-classification@2.1.5': - resolution: {integrity: sha512-uBDTIBBEdAQryvHdc5W8sS5YX7RQzF683XrHePVdFmAgKiMofU15FLSM0/HU03hKTnazdNRFa0YHS7+ArwoUSQ==} - engines: {node: '>=14.0.0'} - - '@smithy/service-error-classification@3.0.4': - resolution: {integrity: sha512-KciDHHKFVTb9A1KlJHBt2F26PBaDtoE23uTZy5qRvPzHPqrooXFi6fmx98lJb3Jl38PuUTqIuCUmmY3pacuMBQ==} - engines: {node: '>=16.0.0'} - - '@smithy/shared-ini-file-loader@2.4.0': - resolution: {integrity: sha512-WyujUJL8e1B6Z4PBfAqC/aGY1+C7T0w20Gih3yrvJSk97gpiVfB+y7c46T4Nunk+ZngLq0rOIdeVeIklk0R3OA==} - engines: {node: '>=14.0.0'} - - '@smithy/shared-ini-file-loader@3.1.5': - resolution: {integrity: sha512-6jxsJ4NOmY5Du4FD0enYegNJl4zTSuKLiChIMqIkh+LapxiP7lmz5lYUNLE9/4cvA65mbBmtdzZ8yxmcqM5igg==} - engines: {node: '>=16.0.0'} - - '@smithy/signature-v4@2.2.0': - resolution: {integrity: sha512-+B5TNzj/fRZzVW3z8UUJOkNx15+4E0CLuvJmJUA1JUIZFp3rdJ/M2H5r2SqltaVPXL0oIxv/6YK92T9TsFGbFg==} - engines: {node: '>=14.0.0'} - - '@smithy/signature-v4@4.1.1': - resolution: {integrity: sha512-SH9J9be81TMBNGCmjhrgMWu4YSpQ3uP1L06u/K9SDrE2YibUix1qxedPCxEQu02At0P0SrYDjvz+y91vLG0KRQ==} - engines: {node: '>=16.0.0'} - - '@smithy/smithy-client@2.5.0': - resolution: {integrity: sha512-DDXWHWdimtS3y/Kw1Jo46KQ0ZYsDKcldFynQERUGBPDpkW1lXOTHy491ALHjwfiBQvzsVKVxl5+ocXNIgJuX4g==} - engines: {node: '>=14.0.0'} - - '@smithy/smithy-client@3.3.0': - resolution: {integrity: sha512-H32nVo8tIX82kB0xI2LBrIcj8jx/3/ITotNLbeG1UL0b3b440YPR/hUvqjFJiaB24pQrMjRbU8CugqH5sV0hkw==} - engines: {node: '>=16.0.0'} - - '@smithy/types@2.12.0': - resolution: {integrity: sha512-QwYgloJ0sVNBeBuBs65cIkTbfzV/Q6ZNPCJ99EICFEdJYG50nGIY/uYXp+TbsdJReIuPr0a0kXmCvren3MbRRw==} - engines: {node: '>=14.0.0'} - - '@smithy/types@3.4.0': - resolution: {integrity: sha512-0shOWSg/pnFXPcsSU8ZbaJ4JBHZJPPzLCJxafJvbMVFo9l1w81CqpgUqjlKGNHVrVB7fhIs+WS82JDTyzaLyLA==} - engines: {node: '>=16.0.0'} - - '@smithy/url-parser@2.2.0': - resolution: {integrity: sha512-hoA4zm61q1mNTpksiSWp2nEl1dt3j726HdRhiNgVJQMj7mLp7dprtF57mOB6JvEk/x9d2bsuL5hlqZbBuHQylQ==} - - '@smithy/url-parser@3.0.4': - resolution: {integrity: sha512-XdXfObA8WrloavJYtDuzoDhJAYc5rOt+FirFmKBRKaihu7QtU/METAxJgSo7uMK6hUkx0vFnqxV75urtRaLkLg==} - - '@smithy/util-base64@2.3.0': - resolution: {integrity: sha512-s3+eVwNeJuXUwuMbusncZNViuhv2LjVJ1nMwTqSA0XAC7gjKhqqxRdJPhR8+YrkoZ9IiIbFk/yK6ACe/xlF+hw==} - engines: {node: '>=14.0.0'} - - '@smithy/util-base64@3.0.0': - resolution: {integrity: sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==} - engines: {node: '>=16.0.0'} - - '@smithy/util-body-length-browser@2.2.0': - resolution: {integrity: sha512-dtpw9uQP7W+n3vOtx0CfBD5EWd7EPdIdsQnWTDoFf77e3VUf05uA7R7TGipIo8e4WL2kuPdnsr3hMQn9ziYj5w==} - - '@smithy/util-body-length-browser@3.0.0': - resolution: {integrity: sha512-cbjJs2A1mLYmqmyVl80uoLTJhAcfzMOyPgjwAYusWKMdLeNtzmMz9YxNl3/jRLoxSS3wkqkf0jwNdtXWtyEBaQ==} - - '@smithy/util-body-length-node@2.3.0': - resolution: {integrity: sha512-ITWT1Wqjubf2CJthb0BuT9+bpzBfXeMokH/AAa5EJQgbv9aPMVfnM76iFIZVFf50hYXGbtiV71BHAthNWd6+dw==} - engines: {node: '>=14.0.0'} - - '@smithy/util-body-length-node@3.0.0': - resolution: {integrity: sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==} - engines: {node: '>=16.0.0'} - - '@smithy/util-buffer-from@2.2.0': - resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==} - engines: {node: '>=14.0.0'} - - '@smithy/util-buffer-from@3.0.0': - resolution: {integrity: sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==} - engines: {node: '>=16.0.0'} - - '@smithy/util-config-provider@2.3.0': - resolution: {integrity: sha512-HZkzrRcuFN1k70RLqlNK4FnPXKOpkik1+4JaBoHNJn+RnJGYqaa3c5/+XtLOXhlKzlRgNvyaLieHTW2VwGN0VQ==} - engines: {node: '>=14.0.0'} - - '@smithy/util-config-provider@3.0.0': - resolution: {integrity: sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==} - engines: {node: '>=16.0.0'} - - '@smithy/util-defaults-mode-browser@2.2.0': - resolution: {integrity: sha512-2okTdZaCBvOJszAPU/KSvlimMe35zLOKbQpHhamFJmR7t95HSe0K3C92jQPjKY3PmDBD+7iMkOnuW05F5OlF4g==} - engines: {node: '>= 10.0.0'} - - '@smithy/util-defaults-mode-browser@3.0.16': - resolution: {integrity: sha512-Os8ddfNBe7hmc5UMWZxygIHCyAqY0aWR8Wnp/aKbti3f8Df/r0J9ttMZIxeMjsFgtVjEryB0q7SGcwBsHk8WEw==} - engines: {node: '>= 10.0.0'} - - '@smithy/util-defaults-mode-node@2.3.0': - resolution: {integrity: sha512-hfKXnNLmsW9cmLb/JXKIvtuO6Cf4SuqN5PN1C2Ru/TBIws+m1wSgb+A53vo0r66xzB6E82inKG2J7qtwdi+Kkw==} - engines: {node: '>= 10.0.0'} - - '@smithy/util-defaults-mode-node@3.0.16': - resolution: {integrity: sha512-rNhFIYRtrOrrhRlj6RL8jWA6/dcwrbGYAmy8+OAHjjzQ6zdzUBB1P+3IuJAgwWN6Y5GxI+mVXlM/pOjaoIgHow==} - engines: {node: '>= 10.0.0'} - - '@smithy/util-endpoints@1.2.0': - resolution: {integrity: sha512-BuDHv8zRjsE5zXd3PxFXFknzBG3owCpjq8G3FcsXW3CykYXuEqM3nTSsmLzw5q+T12ZYuDlVUZKBdpNbhVtlrQ==} - engines: {node: '>= 14.0.0'} - - '@smithy/util-endpoints@2.1.0': - resolution: {integrity: sha512-ilS7/0jcbS2ELdg0fM/4GVvOiuk8/U3bIFXUW25xE1Vh1Ol4DP6vVHQKqM40rCMizCLmJ9UxK+NeJrKlhI3HVA==} - engines: {node: '>=16.0.0'} - - '@smithy/util-hex-encoding@2.2.0': - resolution: {integrity: sha512-7iKXR+/4TpLK194pVjKiasIyqMtTYJsgKgM242Y9uzt5dhHnUDvMNb+3xIhRJ9QhvqGii/5cRUt4fJn3dtXNHQ==} - engines: {node: '>=14.0.0'} - - '@smithy/util-hex-encoding@3.0.0': - resolution: {integrity: sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==} - engines: {node: '>=16.0.0'} - - '@smithy/util-middleware@2.2.0': - resolution: {integrity: sha512-L1qpleXf9QD6LwLCJ5jddGkgWyuSvWBkJwWAZ6kFkdifdso+sk3L3O1HdmPvCdnCK3IS4qWyPxev01QMnfHSBw==} - engines: {node: '>=14.0.0'} - - '@smithy/util-middleware@3.0.4': - resolution: {integrity: sha512-uSXHTBhstb1c4nHdmQEdkNMv9LiRNaJ/lWV2U/GO+5F236YFpdPw+hyWI9Zc0Rp9XKzwD9kVZvhZmEgp0UCVnA==} - engines: {node: '>=16.0.0'} - - '@smithy/util-retry@2.2.0': - resolution: {integrity: sha512-q9+pAFPTfftHXRytmZ7GzLFFrEGavqapFc06XxzZFcSIGERXMerXxCitjOG1prVDR9QdjqotF40SWvbqcCpf8g==} - engines: {node: '>= 14.0.0'} - - '@smithy/util-retry@3.0.4': - resolution: {integrity: sha512-JJr6g0tO1qO2tCQyK+n3J18r34ZpvatlFN5ULcLranFIBZPxqoivb77EPyNTVwTGMEvvq2qMnyjm4jMIxjdLFg==} - engines: {node: '>=16.0.0'} - - '@smithy/util-stream@2.2.0': - resolution: {integrity: sha512-17faEXbYWIRst1aU9SvPZyMdWmqIrduZjVOqCPMIsWFNxs5yQQgFrJL6b2SdiCzyW9mJoDjFtgi53xx7EH+BXA==} - engines: {node: '>=14.0.0'} - - '@smithy/util-stream@3.1.4': - resolution: {integrity: sha512-txU3EIDLhrBZdGfon6E9V6sZz/irYnKFMblz4TLVjyq8hObNHNS2n9a2t7GIrl7d85zgEPhwLE0gANpZsvpsKg==} - engines: {node: '>=16.0.0'} - - '@smithy/util-uri-escape@2.2.0': - resolution: {integrity: sha512-jtmJMyt1xMD/d8OtbVJ2gFZOSKc+ueYJZPW20ULW1GOp/q/YIM0wNh+u8ZFao9UaIGz4WoPW8hC64qlWLIfoDA==} - engines: {node: '>=14.0.0'} - - '@smithy/util-uri-escape@3.0.0': - resolution: {integrity: sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==} - engines: {node: '>=16.0.0'} - - '@smithy/util-utf8@2.3.0': - resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==} - engines: {node: '>=14.0.0'} - - '@smithy/util-utf8@3.0.0': - resolution: {integrity: sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==} - engines: {node: '>=16.0.0'} - - '@smithy/util-waiter@2.2.0': - resolution: {integrity: sha512-IHk53BVw6MPMi2Gsn+hCng8rFA3ZmR3Rk7GllxDUW9qFJl/hiSvskn7XldkECapQVkIg/1dHpMAxI9xSTaLLSA==} - engines: {node: '>=14.0.0'} - - '@smithy/util-waiter@3.1.3': - resolution: {integrity: sha512-OU0YllH51/CxD8iyr3UHSMwYqTGTyuxFdCMH/0F978t+iDmJseC/ttrWPb22zmYkhkrjqtipzC1xaMuax5QKIA==} - engines: {node: '>=16.0.0'} - - '@soda/friendly-errors-webpack-plugin@1.8.1': - resolution: {integrity: sha512-h2ooWqP8XuFqTXT+NyAFbrArzfQA7R6HTezADrvD9Re8fxMLTPPniLdqVTdDaO0eIoLaAwKT+d6w+5GeTk7Vbg==} - engines: {node: '>=8.0.0'} + "@sentry/replay@7.117.0": + resolution: + { + integrity: sha512-V4DfU+x4UsA4BsufbQ8jHYa5H0q5PYUgso2X1PR31g1fpx7yiYguSmCfz1UryM6KkH92dfTnqXapDB44kXOqzQ==, + } + engines: { node: ">=12" } + + "@sentry/types@6.19.7": + resolution: + { + integrity: sha512-jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg==, + } + engines: { node: ">=6" } + + "@sentry/types@7.117.0": + resolution: + { + integrity: sha512-5dtdulcUttc3F0Te7ekZmpSp/ebt/CA71ELx0uyqVGjWsSAINwskFD77sdcjqvZWek//WjiYX1+GRKlpJ1QqsA==, + } + engines: { node: ">=8" } + + "@sentry/types@8.16.0": + resolution: + { + integrity: sha512-cIRsn7gWGVaWHgCniBWA0N8PNwzDYibhjyjPRTMxUjuZCT37i7zxByKKmd9u4TpRIJ64MyirNyM0O6T0A26fpg==, + } + engines: { node: ">=14.18" } + + "@sentry/utils@6.19.7": + resolution: + { + integrity: sha512-z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA==, + } + engines: { node: ">=6" } + + "@sentry/utils@7.117.0": + resolution: + { + integrity: sha512-KkcLY8643SGBiDyPvMQOubBkwVX5IPknMHInc7jYC8pDVncGp7C65Wi506bCNPpKCWspUd/0VDNWOOen51/qKA==, + } + engines: { node: ">=8" } + + "@sentry/utils@8.16.0": + resolution: + { + integrity: sha512-tltCf2DVzz5TiYjxu/Rxbc9Qmm04893MFshV97jOTBcQeO2AAZBEl5rAoTCv1P08y7Yg+KiVwCx9Zj2x5U80/g==, + } + engines: { node: ">=14.18" } + + "@shopify/flash-list@1.6.4": + resolution: + { + integrity: sha512-M2momcnY7swsvmpHIFDVbdOaFw4aQocJXA/lFP0Gpz+alQjFylqVKvszxl4atYO2SNbjxlb2L6hEP9WEcAknGQ==, + } + peerDependencies: + "@babel/runtime": "*" + react: "*" + react-native: "*" + + "@shopify/react-native-performance-navigation@3.0.0": + resolution: + { + integrity: sha512-KhXXi3Rau2KWqwAXnW77gGuKEvWcMEmh+B5mdfRd9+oJ9QIoCkLPnnGcZYsMh0t3jFrmLFNmWTqScEB3CxkopQ==, + } + peerDependencies: + "@babel/runtime": "*" + "@react-navigation/core": ^6.2.1 + "@react-navigation/native": ^6.0.10 + "@react-navigation/stack": ^6.2.1 + "@shopify/react-native-performance": ^2.0.0 + react: "*" + react-native: "*" + + "@shopify/react-native-performance@4.1.2": + resolution: + { + integrity: sha512-1Xu2xo+hAxg75iuX5akVqAgc3h/J1ohfi7JKXlGsprP4ylpW7kHMfq/7AstL7FoUC8xcHsTUvUFhoZ94ot8g6Q==, + } + peerDependencies: + "@babel/runtime": "*" + react: "*" + react-native: "*" + + "@sideway/address@4.1.5": + resolution: + { + integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==, + } + + "@sideway/formula@3.0.1": + resolution: + { + integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==, + } + + "@sideway/pinpoint@2.0.0": + resolution: + { + integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==, + } + + "@sinclair/typebox@0.24.51": + resolution: + { + integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==, + } + + "@sinclair/typebox@0.27.8": + resolution: + { + integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==, + } + + "@sindresorhus/is@0.14.0": + resolution: + { + integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==, + } + engines: { node: ">=6" } + + "@sindresorhus/is@4.6.0": + resolution: + { + integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==, + } + engines: { node: ">=10" } + + "@sinonjs/commons@1.8.6": + resolution: + { + integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==, + } + + "@sinonjs/commons@3.0.1": + resolution: + { + integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==, + } + + "@sinonjs/fake-timers@10.3.0": + resolution: + { + integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==, + } + + "@sinonjs/fake-timers@8.1.0": + resolution: + { + integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==, + } + + "@sinonjs/fake-timers@9.1.2": + resolution: + { + integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==, + } + + "@smithy/abort-controller@2.2.0": + resolution: + { + integrity: sha512-wRlta7GuLWpTqtFfGo+nZyOO1vEvewdNR1R4rTxpC8XU6vG/NDyrFBhwLZsqg1NUoR1noVaXJPC/7ZK47QCySw==, + } + engines: { node: ">=14.0.0" } + + "@smithy/abort-controller@3.1.2": + resolution: + { + integrity: sha512-b5g+PNujlfqIib9BjkNB108NyO5aZM/RXjfOCXRCqXQ1oPnIkfvdORrztbGgCZdPe/BN/MKDlrGA7PafKPM2jw==, + } + engines: { node: ">=16.0.0" } + + "@smithy/chunked-blob-reader-native@2.2.0": + resolution: + { + integrity: sha512-VNB5+1oCgX3Fzs072yuRsUoC2N4Zg/LJ11DTxX3+Qu+Paa6AmbIF0E9sc2wthz9Psrk/zcOlTCyuposlIhPjZQ==, + } + + "@smithy/chunked-blob-reader-native@3.0.0": + resolution: + { + integrity: sha512-VDkpCYW+peSuM4zJip5WDfqvg2Mo/e8yxOv3VF1m11y7B8KKMKVFtmZWDe36Fvk8rGuWrPZHHXZ7rR7uM5yWyg==, + } + + "@smithy/chunked-blob-reader@2.2.0": + resolution: + { + integrity: sha512-3GJNvRwXBGdkDZZOGiziVYzDpn4j6zfyULHMDKAGIUo72yHALpE9CbhfQp/XcLNVoc1byfMpn6uW5H2BqPjgaQ==, + } + + "@smithy/chunked-blob-reader@3.0.0": + resolution: + { + integrity: sha512-sbnURCwjF0gSToGlsBiAmd1lRCmSn72nu9axfJu5lIx6RUEgHu6GwTMbqCdhQSi0Pumcm5vFxsi9XWXb2mTaoA==, + } + + "@smithy/config-resolver@2.2.0": + resolution: + { + integrity: sha512-fsiMgd8toyUba6n1WRmr+qACzXltpdDkPTAaDqc8QqPBUzO+/JKwL6bUBseHVi8tu9l+3JOK+tSf7cay+4B3LA==, + } + engines: { node: ">=14.0.0" } + + "@smithy/config-resolver@3.0.6": + resolution: + { + integrity: sha512-j7HuVNoRd8EhcFp0MzcUb4fG40C7BcyshH+fAd3Jhd8bINNFvEQYBrZoS/SK6Pun9WPlfoI8uuU2SMz8DsEGlA==, + } + engines: { node: ">=16.0.0" } + + "@smithy/core@1.4.0": + resolution: + { + integrity: sha512-uu9ZDI95Uij4qk+L6kyFjdk11zqBkcJ3Lv0sc6jZrqHvLyr0+oeekD3CnqMafBn/5PRI6uv6ulW3kNLRBUHeVw==, + } + engines: { node: ">=14.0.0" } + + "@smithy/core@2.4.1": + resolution: + { + integrity: sha512-7cts7/Oni7aCHebHGiBeWoz5z+vmH+Vx2Z/UW3XtXMslcxI3PEwBZxNinepwZjixS3n12fPc247PHWmjU7ndsQ==, + } + engines: { node: ">=16.0.0" } + + "@smithy/credential-provider-imds@2.3.0": + resolution: + { + integrity: sha512-BWB9mIukO1wjEOo1Ojgl6LrG4avcaC7T/ZP6ptmAaW4xluhSIPZhY+/PI5YKzlk+jsm+4sQZB45Bt1OfMeQa3w==, + } + engines: { node: ">=14.0.0" } + + "@smithy/credential-provider-imds@3.2.1": + resolution: + { + integrity: sha512-4z/oTWpRF2TqQI3aCM89/PWu3kim58XU4kOCTtuTJnoaS4KT95cPWMxbQfTN2vzcOe96SOKO8QouQW/+ESB1fQ==, + } + engines: { node: ">=16.0.0" } + + "@smithy/eventstream-codec@2.2.0": + resolution: + { + integrity: sha512-8janZoJw85nJmQZc4L8TuePp2pk1nxLgkxIR0TUjKJ5Dkj5oelB9WtiSSGXCQvNsJl0VSTvK/2ueMXxvpa9GVw==, + } + + "@smithy/eventstream-codec@3.1.3": + resolution: + { + integrity: sha512-mKBrmhg6Zd3j07G9dkKTGmrU7pdJGTNz8LbZtIOR3QoodS5yDNqEqoXU4Eg38snZcnCAh7NPBsw5ndxtJPLiCg==, + } + + "@smithy/eventstream-serde-browser@2.2.0": + resolution: + { + integrity: sha512-UaPf8jKbcP71BGiO0CdeLmlg+RhWnlN8ipsMSdwvqBFigl5nil3rHOI/5GE3tfiuX8LvY5Z9N0meuU7Rab7jWw==, + } + engines: { node: ">=14.0.0" } + + "@smithy/eventstream-serde-browser@3.0.7": + resolution: + { + integrity: sha512-UC4RQqyM8B0g5cX/xmWtsNgSBmZ13HrzCqoe5Ulcz6R462/egbIdfTXnayik7jkjvwOrCPL1N11Q9S+n68jPLA==, + } + engines: { node: ">=16.0.0" } + + "@smithy/eventstream-serde-config-resolver@2.2.0": + resolution: + { + integrity: sha512-RHhbTw/JW3+r8QQH7PrganjNCiuiEZmpi6fYUAetFfPLfZ6EkiA08uN3EFfcyKubXQxOwTeJRZSQmDDCdUshaA==, + } + engines: { node: ">=14.0.0" } + + "@smithy/eventstream-serde-config-resolver@3.0.4": + resolution: + { + integrity: sha512-saIs5rtAMpifqL7u7nc5YeE/6gkenzXpSz5NwEyhIesRWtHK+zEuYn9KY8SArZEbPSHyGxvvgKk1z86VzfUGHw==, + } + engines: { node: ">=16.0.0" } + + "@smithy/eventstream-serde-node@2.2.0": + resolution: + { + integrity: sha512-zpQMtJVqCUMn+pCSFcl9K/RPNtQE0NuMh8sKpCdEHafhwRsjP50Oq/4kMmvxSRy6d8Jslqd8BLvDngrUtmN9iA==, + } + engines: { node: ">=14.0.0" } + + "@smithy/eventstream-serde-node@3.0.6": + resolution: + { + integrity: sha512-gRKGBdZah3EjZZgWcsTpShq4cZ4Q4JTTe1OPob+jrftmbYj6CvpeydZbH0roO5SvBG8SI3aBZIet9TGN3zUxUw==, + } + engines: { node: ">=16.0.0" } + + "@smithy/eventstream-serde-universal@2.2.0": + resolution: + { + integrity: sha512-pvoe/vvJY0mOpuF84BEtyZoYfbehiFj8KKWk1ds2AT0mTLYFVs+7sBJZmioOFdBXKd48lfrx1vumdPdmGlCLxA==, + } + engines: { node: ">=14.0.0" } + + "@smithy/eventstream-serde-universal@3.0.6": + resolution: + { + integrity: sha512-1jvXd4sFG+zKaL6WqrJXpL6E+oAMafuM5GPd4qF0+ccenZTX3DZugoCCjlooQyTh+TZho2FpdVYUf5J/bB/j6Q==, + } + engines: { node: ">=16.0.0" } + + "@smithy/fetch-http-handler@2.5.0": + resolution: + { + integrity: sha512-BOWEBeppWhLn/no/JxUL/ghTfANTjT7kg3Ww2rPqTUY9R4yHPXxJ9JhMe3Z03LN3aPwiwlpDIUcVw1xDyHqEhw==, + } + + "@smithy/fetch-http-handler@3.2.5": + resolution: + { + integrity: sha512-DjRtGmK8pKQMIo9+JlAKUt14Z448bg8nAN04yKIvlrrpmpRSG57s5d2Y83npks1r4gPtTRNbAFdQCoj9l3P2KQ==, + } + + "@smithy/hash-blob-browser@2.2.0": + resolution: + { + integrity: sha512-SGPoVH8mdXBqrkVCJ1Hd1X7vh1zDXojNN1yZyZTZsCno99hVue9+IYzWDjq/EQDDXxmITB0gBmuyPh8oAZSTcg==, + } + + "@smithy/hash-blob-browser@3.1.3": + resolution: + { + integrity: sha512-im9wAU9mANWW0OP0YGqwX3lw0nXG0ngyIcKQ8V/MUz1r7A6uO2lpPqKmAsH4VPGNLP2JPUhj4aW/m5UKkxX/IA==, + } + + "@smithy/hash-node@2.2.0": + resolution: + { + integrity: sha512-zLWaC/5aWpMrHKpoDF6nqpNtBhlAYKF/7+9yMN7GpdR8CzohnWfGtMznPybnwSS8saaXBMxIGwJqR4HmRp6b3g==, + } + engines: { node: ">=14.0.0" } + + "@smithy/hash-node@3.0.4": + resolution: + { + integrity: sha512-6FgTVqEfCr9z/7+Em8BwSkJKA2y3krf1em134x3yr2NHWVCo2KYI8tcA53cjeO47y41jwF84ntsEE0Pe6pNKlg==, + } + engines: { node: ">=16.0.0" } + + "@smithy/hash-stream-node@2.2.0": + resolution: + { + integrity: sha512-aT+HCATOSRMGpPI7bi7NSsTNVZE/La9IaxLXWoVAYMxHT5hGO3ZOGEMZQg8A6nNL+pdFGtZQtND1eoY084HgHQ==, + } + engines: { node: ">=14.0.0" } + + "@smithy/hash-stream-node@3.1.3": + resolution: + { + integrity: sha512-Tz/eTlo1ffqYn+19VaMjDDbmEWqYe4DW1PAWaS8HvgRdO6/k9hxNPt8Wv5laXoilxE20YzKugiHvxHyO6J7kGA==, + } + engines: { node: ">=16.0.0" } + + "@smithy/invalid-dependency@2.2.0": + resolution: + { + integrity: sha512-nEDASdbKFKPXN2O6lOlTgrEEOO9NHIeO+HVvZnkqc8h5U9g3BIhWsvzFo+UcUbliMHvKNPD/zVxDrkP1Sbgp8Q==, + } + + "@smithy/invalid-dependency@3.0.4": + resolution: + { + integrity: sha512-MJBUrojC4SEXi9aJcnNOE3oNAuYNphgCGFXscaCj2TA/59BTcXhzHACP8jnnEU3n4yir/NSLKzxqez0T4x4tjA==, + } + + "@smithy/is-array-buffer@2.2.0": + resolution: + { + integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==, + } + engines: { node: ">=14.0.0" } + + "@smithy/is-array-buffer@3.0.0": + resolution: + { + integrity: sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==, + } + engines: { node: ">=16.0.0" } + + "@smithy/md5-js@2.2.0": + resolution: + { + integrity: sha512-M26XTtt9IIusVMOWEAhIvFIr9jYj4ISPPGJROqw6vXngO3IYJCnVVSMFn4Tx1rUTG5BiKJNg9u2nxmBiZC5IlQ==, + } + + "@smithy/md5-js@3.0.4": + resolution: + { + integrity: sha512-qSlqr/+hybufIJgxQW2gYzGE6ywfOxkjjJVojbbmv4MtxfdDFfzRew+NOIOXcYgazW0f8OYBTIKsmNsjxpvnng==, + } + + "@smithy/middleware-content-length@2.2.0": + resolution: + { + integrity: sha512-5bl2LG1Ah/7E5cMSC+q+h3IpVHMeOkG0yLRyQT1p2aMJkSrZG7RlXHPuAgb7EyaFeidKEnnd/fNaLLaKlHGzDQ==, + } + engines: { node: ">=14.0.0" } + + "@smithy/middleware-content-length@3.0.6": + resolution: + { + integrity: sha512-AFyHCfe8rumkJkz+hCOVJmBagNBj05KypyDwDElA4TgMSA4eYDZRjVePFZuyABrJZFDc7uVj3dpFIDCEhf59SA==, + } + engines: { node: ">=16.0.0" } + + "@smithy/middleware-endpoint@2.5.0": + resolution: + { + integrity: sha512-OBhI9ZEAG8Xen0xsFJwwNOt44WE2CWkfYIxTognC8x42Lfsdf0VN/wCMqpdkySMDio/vts10BiovAxQp0T0faA==, + } + engines: { node: ">=14.0.0" } + + "@smithy/middleware-endpoint@3.1.1": + resolution: + { + integrity: sha512-Irv+soW8NKluAtFSEsF8O3iGyLxa5oOevJb/e1yNacV9H7JP/yHyJuKST5YY2ORS1+W34VR8EuUrOF+K29Pl4g==, + } + engines: { node: ">=16.0.0" } + + "@smithy/middleware-retry@2.2.0": + resolution: + { + integrity: sha512-PsjDOLpbevgn37yJbawmfVoanru40qVA8UEf2+YA1lvOefmhuhL6ZbKtGsLAWDRnE1OlAmedsbA/htH6iSZjNA==, + } + engines: { node: ">=14.0.0" } + + "@smithy/middleware-retry@3.0.16": + resolution: + { + integrity: sha512-08kI36p1yB4CWO3Qi+UQxjzobt8iQJpnruF0K5BkbZmA/N/sJ51A1JJGJ36GgcbFyPfWw2FU48S5ZoqXt0h0jw==, + } + engines: { node: ">=16.0.0" } + + "@smithy/middleware-serde@2.3.0": + resolution: + { + integrity: sha512-sIADe7ojwqTyvEQBe1nc/GXB9wdHhi9UwyX0lTyttmUWDJLP655ZYE1WngnNyXREme8I27KCaUhyhZWRXL0q7Q==, + } + engines: { node: ">=14.0.0" } + + "@smithy/middleware-serde@3.0.4": + resolution: + { + integrity: sha512-1lPDB2O6IJ50Ucxgn7XrvZXbbuI48HmPCcMTuSoXT1lDzuTUfIuBjgAjpD8YLVMfnrjdepi/q45556LA51Pubw==, + } + engines: { node: ">=16.0.0" } + + "@smithy/middleware-stack@2.2.0": + resolution: + { + integrity: sha512-Qntc3jrtwwrsAC+X8wms8zhrTr0sFXnyEGhZd9sLtsJ/6gGQKFzNB+wWbOcpJd7BR8ThNCoKt76BuQahfMvpeA==, + } + engines: { node: ">=14.0.0" } + + "@smithy/middleware-stack@3.0.4": + resolution: + { + integrity: sha512-sLMRjtMCqtVcrOqaOZ10SUnlFE25BSlmLsi4bRSGFD7dgR54eqBjfqkVkPBQyrKBortfGM0+2DJoUPcGECR+nQ==, + } + engines: { node: ">=16.0.0" } + + "@smithy/node-config-provider@2.3.0": + resolution: + { + integrity: sha512-0elK5/03a1JPWMDPaS726Iw6LpQg80gFut1tNpPfxFuChEEklo2yL823V94SpTZTxmKlXFtFgsP55uh3dErnIg==, + } + engines: { node: ">=14.0.0" } + + "@smithy/node-config-provider@3.1.5": + resolution: + { + integrity: sha512-dq/oR3/LxgCgizVk7in7FGTm0w9a3qM4mg3IIXLTCHeW3fV+ipssSvBZ2bvEx1+asfQJTyCnVLeYf7JKfd9v3Q==, + } + engines: { node: ">=16.0.0" } + + "@smithy/node-http-handler@2.5.0": + resolution: + { + integrity: sha512-mVGyPBzkkGQsPoxQUbxlEfRjrj6FPyA3u3u2VXGr9hT8wilsoQdZdvKpMBFMB8Crfhv5dNkKHIW0Yyuc7eABqA==, + } + engines: { node: ">=14.0.0" } + + "@smithy/node-http-handler@3.2.0": + resolution: + { + integrity: sha512-5TFqaABbiY7uJMKbqR4OARjwI/l4TRoysDJ75pLpVQyO3EcmeloKYwDGyCtgB9WJniFx3BMkmGCB9+j+QiB+Ww==, + } + engines: { node: ">=16.0.0" } + + "@smithy/property-provider@2.2.0": + resolution: + { + integrity: sha512-+xiil2lFhtTRzXkx8F053AV46QnIw6e7MV8od5Mi68E1ICOjCeCHw2XfLnDEUHnT9WGUIkwcqavXjfwuJbGlpg==, + } + engines: { node: ">=14.0.0" } + + "@smithy/property-provider@3.1.4": + resolution: + { + integrity: sha512-BmhefQbfkSl9DeU0/e6k9N4sT5bya5etv2epvqLUz3eGyfRBhtQq60nDkc1WPp4c+KWrzK721cUc/3y0f2psPQ==, + } + engines: { node: ">=16.0.0" } + + "@smithy/protocol-http@3.3.0": + resolution: + { + integrity: sha512-Xy5XK1AFWW2nlY/biWZXu6/krgbaf2dg0q492D8M5qthsnU2H+UgFeZLbM76FnH7s6RO/xhQRkj+T6KBO3JzgQ==, + } + engines: { node: ">=14.0.0" } + + "@smithy/protocol-http@4.1.1": + resolution: + { + integrity: sha512-Fm5+8LkeIus83Y8jTL1XHsBGP8sPvE1rEVyKf/87kbOPTbzEDMcgOlzcmYXat2h+nC3wwPtRy8hFqtJS71+Wow==, + } + engines: { node: ">=16.0.0" } + + "@smithy/querystring-builder@2.2.0": + resolution: + { + integrity: sha512-L1kSeviUWL+emq3CUVSgdogoM/D9QMFaqxL/dd0X7PCNWmPXqt+ExtrBjqT0V7HLN03Vs9SuiLrG3zy3JGnE5A==, + } + engines: { node: ">=14.0.0" } + + "@smithy/querystring-builder@3.0.4": + resolution: + { + integrity: sha512-NEoPAsZPdpfVbF98qm8i5k1XMaRKeEnO47CaL5ja6Y1Z2DgJdwIJuJkTJypKm/IKfp8gc0uimIFLwhml8+/pAw==, + } + engines: { node: ">=16.0.0" } + + "@smithy/querystring-parser@2.2.0": + resolution: + { + integrity: sha512-BvHCDrKfbG5Yhbpj4vsbuPV2GgcpHiAkLeIlcA1LtfpMz3jrqizP1+OguSNSj1MwBHEiN+jwNisXLGdajGDQJA==, + } + engines: { node: ">=14.0.0" } + + "@smithy/querystring-parser@3.0.4": + resolution: + { + integrity: sha512-7CHPXffFcakFzhO0OZs/rn6fXlTHrSDdLhIT6/JIk1u2bvwguTL3fMCc1+CfcbXA7TOhjWXu3TcB1EGMqJQwHg==, + } + engines: { node: ">=16.0.0" } + + "@smithy/service-error-classification@2.1.5": + resolution: + { + integrity: sha512-uBDTIBBEdAQryvHdc5W8sS5YX7RQzF683XrHePVdFmAgKiMofU15FLSM0/HU03hKTnazdNRFa0YHS7+ArwoUSQ==, + } + engines: { node: ">=14.0.0" } + + "@smithy/service-error-classification@3.0.4": + resolution: + { + integrity: sha512-KciDHHKFVTb9A1KlJHBt2F26PBaDtoE23uTZy5qRvPzHPqrooXFi6fmx98lJb3Jl38PuUTqIuCUmmY3pacuMBQ==, + } + engines: { node: ">=16.0.0" } + + "@smithy/shared-ini-file-loader@2.4.0": + resolution: + { + integrity: sha512-WyujUJL8e1B6Z4PBfAqC/aGY1+C7T0w20Gih3yrvJSk97gpiVfB+y7c46T4Nunk+ZngLq0rOIdeVeIklk0R3OA==, + } + engines: { node: ">=14.0.0" } + + "@smithy/shared-ini-file-loader@3.1.5": + resolution: + { + integrity: sha512-6jxsJ4NOmY5Du4FD0enYegNJl4zTSuKLiChIMqIkh+LapxiP7lmz5lYUNLE9/4cvA65mbBmtdzZ8yxmcqM5igg==, + } + engines: { node: ">=16.0.0" } + + "@smithy/signature-v4@2.2.0": + resolution: + { + integrity: sha512-+B5TNzj/fRZzVW3z8UUJOkNx15+4E0CLuvJmJUA1JUIZFp3rdJ/M2H5r2SqltaVPXL0oIxv/6YK92T9TsFGbFg==, + } + engines: { node: ">=14.0.0" } + + "@smithy/signature-v4@4.1.1": + resolution: + { + integrity: sha512-SH9J9be81TMBNGCmjhrgMWu4YSpQ3uP1L06u/K9SDrE2YibUix1qxedPCxEQu02At0P0SrYDjvz+y91vLG0KRQ==, + } + engines: { node: ">=16.0.0" } + + "@smithy/smithy-client@2.5.0": + resolution: + { + integrity: sha512-DDXWHWdimtS3y/Kw1Jo46KQ0ZYsDKcldFynQERUGBPDpkW1lXOTHy491ALHjwfiBQvzsVKVxl5+ocXNIgJuX4g==, + } + engines: { node: ">=14.0.0" } + + "@smithy/smithy-client@3.3.0": + resolution: + { + integrity: sha512-H32nVo8tIX82kB0xI2LBrIcj8jx/3/ITotNLbeG1UL0b3b440YPR/hUvqjFJiaB24pQrMjRbU8CugqH5sV0hkw==, + } + engines: { node: ">=16.0.0" } + + "@smithy/types@2.12.0": + resolution: + { + integrity: sha512-QwYgloJ0sVNBeBuBs65cIkTbfzV/Q6ZNPCJ99EICFEdJYG50nGIY/uYXp+TbsdJReIuPr0a0kXmCvren3MbRRw==, + } + engines: { node: ">=14.0.0" } + + "@smithy/types@3.4.0": + resolution: + { + integrity: sha512-0shOWSg/pnFXPcsSU8ZbaJ4JBHZJPPzLCJxafJvbMVFo9l1w81CqpgUqjlKGNHVrVB7fhIs+WS82JDTyzaLyLA==, + } + engines: { node: ">=16.0.0" } + + "@smithy/url-parser@2.2.0": + resolution: + { + integrity: sha512-hoA4zm61q1mNTpksiSWp2nEl1dt3j726HdRhiNgVJQMj7mLp7dprtF57mOB6JvEk/x9d2bsuL5hlqZbBuHQylQ==, + } + + "@smithy/url-parser@3.0.4": + resolution: + { + integrity: sha512-XdXfObA8WrloavJYtDuzoDhJAYc5rOt+FirFmKBRKaihu7QtU/METAxJgSo7uMK6hUkx0vFnqxV75urtRaLkLg==, + } + + "@smithy/util-base64@2.3.0": + resolution: + { + integrity: sha512-s3+eVwNeJuXUwuMbusncZNViuhv2LjVJ1nMwTqSA0XAC7gjKhqqxRdJPhR8+YrkoZ9IiIbFk/yK6ACe/xlF+hw==, + } + engines: { node: ">=14.0.0" } + + "@smithy/util-base64@3.0.0": + resolution: + { + integrity: sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==, + } + engines: { node: ">=16.0.0" } + + "@smithy/util-body-length-browser@2.2.0": + resolution: + { + integrity: sha512-dtpw9uQP7W+n3vOtx0CfBD5EWd7EPdIdsQnWTDoFf77e3VUf05uA7R7TGipIo8e4WL2kuPdnsr3hMQn9ziYj5w==, + } + + "@smithy/util-body-length-browser@3.0.0": + resolution: + { + integrity: sha512-cbjJs2A1mLYmqmyVl80uoLTJhAcfzMOyPgjwAYusWKMdLeNtzmMz9YxNl3/jRLoxSS3wkqkf0jwNdtXWtyEBaQ==, + } + + "@smithy/util-body-length-node@2.3.0": + resolution: + { + integrity: sha512-ITWT1Wqjubf2CJthb0BuT9+bpzBfXeMokH/AAa5EJQgbv9aPMVfnM76iFIZVFf50hYXGbtiV71BHAthNWd6+dw==, + } + engines: { node: ">=14.0.0" } + + "@smithy/util-body-length-node@3.0.0": + resolution: + { + integrity: sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==, + } + engines: { node: ">=16.0.0" } + + "@smithy/util-buffer-from@2.2.0": + resolution: + { + integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==, + } + engines: { node: ">=14.0.0" } + + "@smithy/util-buffer-from@3.0.0": + resolution: + { + integrity: sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==, + } + engines: { node: ">=16.0.0" } + + "@smithy/util-config-provider@2.3.0": + resolution: + { + integrity: sha512-HZkzrRcuFN1k70RLqlNK4FnPXKOpkik1+4JaBoHNJn+RnJGYqaa3c5/+XtLOXhlKzlRgNvyaLieHTW2VwGN0VQ==, + } + engines: { node: ">=14.0.0" } + + "@smithy/util-config-provider@3.0.0": + resolution: + { + integrity: sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==, + } + engines: { node: ">=16.0.0" } + + "@smithy/util-defaults-mode-browser@2.2.0": + resolution: + { + integrity: sha512-2okTdZaCBvOJszAPU/KSvlimMe35zLOKbQpHhamFJmR7t95HSe0K3C92jQPjKY3PmDBD+7iMkOnuW05F5OlF4g==, + } + engines: { node: ">= 10.0.0" } + + "@smithy/util-defaults-mode-browser@3.0.16": + resolution: + { + integrity: sha512-Os8ddfNBe7hmc5UMWZxygIHCyAqY0aWR8Wnp/aKbti3f8Df/r0J9ttMZIxeMjsFgtVjEryB0q7SGcwBsHk8WEw==, + } + engines: { node: ">= 10.0.0" } + + "@smithy/util-defaults-mode-node@2.3.0": + resolution: + { + integrity: sha512-hfKXnNLmsW9cmLb/JXKIvtuO6Cf4SuqN5PN1C2Ru/TBIws+m1wSgb+A53vo0r66xzB6E82inKG2J7qtwdi+Kkw==, + } + engines: { node: ">= 10.0.0" } + + "@smithy/util-defaults-mode-node@3.0.16": + resolution: + { + integrity: sha512-rNhFIYRtrOrrhRlj6RL8jWA6/dcwrbGYAmy8+OAHjjzQ6zdzUBB1P+3IuJAgwWN6Y5GxI+mVXlM/pOjaoIgHow==, + } + engines: { node: ">= 10.0.0" } + + "@smithy/util-endpoints@1.2.0": + resolution: + { + integrity: sha512-BuDHv8zRjsE5zXd3PxFXFknzBG3owCpjq8G3FcsXW3CykYXuEqM3nTSsmLzw5q+T12ZYuDlVUZKBdpNbhVtlrQ==, + } + engines: { node: ">= 14.0.0" } + + "@smithy/util-endpoints@2.1.0": + resolution: + { + integrity: sha512-ilS7/0jcbS2ELdg0fM/4GVvOiuk8/U3bIFXUW25xE1Vh1Ol4DP6vVHQKqM40rCMizCLmJ9UxK+NeJrKlhI3HVA==, + } + engines: { node: ">=16.0.0" } + + "@smithy/util-hex-encoding@2.2.0": + resolution: + { + integrity: sha512-7iKXR+/4TpLK194pVjKiasIyqMtTYJsgKgM242Y9uzt5dhHnUDvMNb+3xIhRJ9QhvqGii/5cRUt4fJn3dtXNHQ==, + } + engines: { node: ">=14.0.0" } + + "@smithy/util-hex-encoding@3.0.0": + resolution: + { + integrity: sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==, + } + engines: { node: ">=16.0.0" } + + "@smithy/util-middleware@2.2.0": + resolution: + { + integrity: sha512-L1qpleXf9QD6LwLCJ5jddGkgWyuSvWBkJwWAZ6kFkdifdso+sk3L3O1HdmPvCdnCK3IS4qWyPxev01QMnfHSBw==, + } + engines: { node: ">=14.0.0" } + + "@smithy/util-middleware@3.0.4": + resolution: + { + integrity: sha512-uSXHTBhstb1c4nHdmQEdkNMv9LiRNaJ/lWV2U/GO+5F236YFpdPw+hyWI9Zc0Rp9XKzwD9kVZvhZmEgp0UCVnA==, + } + engines: { node: ">=16.0.0" } + + "@smithy/util-retry@2.2.0": + resolution: + { + integrity: sha512-q9+pAFPTfftHXRytmZ7GzLFFrEGavqapFc06XxzZFcSIGERXMerXxCitjOG1prVDR9QdjqotF40SWvbqcCpf8g==, + } + engines: { node: ">= 14.0.0" } + + "@smithy/util-retry@3.0.4": + resolution: + { + integrity: sha512-JJr6g0tO1qO2tCQyK+n3J18r34ZpvatlFN5ULcLranFIBZPxqoivb77EPyNTVwTGMEvvq2qMnyjm4jMIxjdLFg==, + } + engines: { node: ">=16.0.0" } + + "@smithy/util-stream@2.2.0": + resolution: + { + integrity: sha512-17faEXbYWIRst1aU9SvPZyMdWmqIrduZjVOqCPMIsWFNxs5yQQgFrJL6b2SdiCzyW9mJoDjFtgi53xx7EH+BXA==, + } + engines: { node: ">=14.0.0" } + + "@smithy/util-stream@3.1.4": + resolution: + { + integrity: sha512-txU3EIDLhrBZdGfon6E9V6sZz/irYnKFMblz4TLVjyq8hObNHNS2n9a2t7GIrl7d85zgEPhwLE0gANpZsvpsKg==, + } + engines: { node: ">=16.0.0" } + + "@smithy/util-uri-escape@2.2.0": + resolution: + { + integrity: sha512-jtmJMyt1xMD/d8OtbVJ2gFZOSKc+ueYJZPW20ULW1GOp/q/YIM0wNh+u8ZFao9UaIGz4WoPW8hC64qlWLIfoDA==, + } + engines: { node: ">=14.0.0" } + + "@smithy/util-uri-escape@3.0.0": + resolution: + { + integrity: sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==, + } + engines: { node: ">=16.0.0" } + + "@smithy/util-utf8@2.3.0": + resolution: + { + integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==, + } + engines: { node: ">=14.0.0" } + + "@smithy/util-utf8@3.0.0": + resolution: + { + integrity: sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==, + } + engines: { node: ">=16.0.0" } + + "@smithy/util-waiter@2.2.0": + resolution: + { + integrity: sha512-IHk53BVw6MPMi2Gsn+hCng8rFA3ZmR3Rk7GllxDUW9qFJl/hiSvskn7XldkECapQVkIg/1dHpMAxI9xSTaLLSA==, + } + engines: { node: ">=14.0.0" } + + "@smithy/util-waiter@3.1.3": + resolution: + { + integrity: sha512-OU0YllH51/CxD8iyr3UHSMwYqTGTyuxFdCMH/0F978t+iDmJseC/ttrWPb22zmYkhkrjqtipzC1xaMuax5QKIA==, + } + engines: { node: ">=16.0.0" } + + "@soda/friendly-errors-webpack-plugin@1.8.1": + resolution: + { + integrity: sha512-h2ooWqP8XuFqTXT+NyAFbrArzfQA7R6HTezADrvD9Re8fxMLTPPniLdqVTdDaO0eIoLaAwKT+d6w+5GeTk7Vbg==, + } + engines: { node: ">=8.0.0" } peerDependencies: webpack: ^4.0.0 || ^5.0.0 - '@soda/get-current-script@1.0.2': - resolution: {integrity: sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w==} - - '@solana/buffer-layout-utils@0.2.0': - resolution: {integrity: sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g==} - engines: {node: '>= 10'} - - '@solana/buffer-layout@4.0.1': - resolution: {integrity: sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA==} - engines: {node: '>=5.10'} - - '@solana/spl-token@0.3.8': - resolution: {integrity: sha512-ogwGDcunP9Lkj+9CODOWMiVJEdRtqHAtX2rWF62KxnnSWtMZtV9rDhTrZFshiyJmxDnRL/1nKE1yJHg4jjs3gg==} - engines: {node: '>=16'} - peerDependencies: - '@solana/web3.js': ^1.47.4 - - '@solana/web3.js@1.77.3': - resolution: {integrity: sha512-PHaO0BdoiQRPpieC1p31wJsBaxwIOWLh8j2ocXNKX8boCQVldt26Jqm2tZE4KlrvnCIV78owPLv1pEUgqhxZ3w==} - - '@stablelib/binary@1.0.1': - resolution: {integrity: sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==} - - '@stablelib/blake2b@1.0.1': - resolution: {integrity: sha512-B3KyKoBAjkIFeH7romcF96i+pVFYk7K2SBQ1pZvaxV+epSBXJ+n0C66esUhyz6FF+5FbdQVm77C5fzGFcEZpKA==} - - '@stablelib/ed25519@1.0.3': - resolution: {integrity: sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==} - - '@stablelib/hash@1.0.1': - resolution: {integrity: sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg==} - - '@stablelib/int@1.0.1': - resolution: {integrity: sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w==} - - '@stablelib/random@1.0.2': - resolution: {integrity: sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==} - - '@stablelib/sha512@1.0.1': - resolution: {integrity: sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw==} - - '@stablelib/wipe@1.0.1': - resolution: {integrity: sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg==} - - '@stacks/common@4.3.5': - resolution: {integrity: sha512-UuViiQ7fn3vdtTe3739aRzbl+wbukekeQuXgqt8d7nB2HC2HodD7GcHhpUga165cO35CD6lQUtj3vXxJb5Ga+A==} - - '@stacks/common@6.13.0': - resolution: {integrity: sha512-wwzyihjaSdmL6NxKvDeayy3dqM0L0Q2sawmdNtzJDi0FnXuJGm5PeapJj7bEfcI9XwI7Bw5jZoC6mCn9nc5YIw==} - - '@stacks/network@4.3.5': - resolution: {integrity: sha512-TC4+AkuT6qi3MoEGxTftA+4BNp99QvGnI+qtKQkoA1m0KDr8b9hSBUhugJHRhQbWuo7D6q0+JagYEGxLID29Kw==} - - '@stacks/network@6.10.0': - resolution: {integrity: sha512-mbiZ8nlsyy77ndmBdaqhHXii22IFdK4ThRcOQs9j/O00DkAr04jCM4GV5Q+VLUnZ9OBoJq7yOV7Pf6jglh+0hw==} - - '@stacks/transactions@4.3.8': - resolution: {integrity: sha512-5xYYv2TdXXM9PVixB79Pr99symQ8fhbVATjempGUxtL23/XUiRiLvJZohDxIE4VQ2EzbB4g4j8Y7oqPjj0h09Q==} - - '@stacks/transactions@6.11.0': - resolution: {integrity: sha512-+zIDqn9j4H/+o1ER8C9rFpig1fyrQcj2hVGNIrp+YbpPyja+cxv3fPk6kI/gePzwggzxRgUkIWhBc+mZAXuXyQ==} - - '@stdlib/array-float32@0.0.6': - resolution: {integrity: sha512-QgKT5UaE92Rv7cxfn7wBKZAlwFFHPla8eXsMFsTGt5BiL4yUy36lwinPUh4hzybZ11rw1vifS3VAPuk6JP413Q==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@soda/get-current-script@1.0.2": + resolution: + { + integrity: sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w==, + } + + "@solana/buffer-layout-utils@0.2.0": + resolution: + { + integrity: sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g==, + } + engines: { node: ">= 10" } + + "@solana/buffer-layout@4.0.1": + resolution: + { + integrity: sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA==, + } + engines: { node: ">=5.10" } + + "@solana/spl-token@0.3.8": + resolution: + { + integrity: sha512-ogwGDcunP9Lkj+9CODOWMiVJEdRtqHAtX2rWF62KxnnSWtMZtV9rDhTrZFshiyJmxDnRL/1nKE1yJHg4jjs3gg==, + } + engines: { node: ">=16" } + peerDependencies: + "@solana/web3.js": ^1.47.4 + + "@solana/web3.js@1.77.3": + resolution: + { + integrity: sha512-PHaO0BdoiQRPpieC1p31wJsBaxwIOWLh8j2ocXNKX8boCQVldt26Jqm2tZE4KlrvnCIV78owPLv1pEUgqhxZ3w==, + } + + "@stablelib/binary@1.0.1": + resolution: + { + integrity: sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==, + } + + "@stablelib/blake2b@1.0.1": + resolution: + { + integrity: sha512-B3KyKoBAjkIFeH7romcF96i+pVFYk7K2SBQ1pZvaxV+epSBXJ+n0C66esUhyz6FF+5FbdQVm77C5fzGFcEZpKA==, + } + + "@stablelib/ed25519@1.0.3": + resolution: + { + integrity: sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==, + } + + "@stablelib/hash@1.0.1": + resolution: + { + integrity: sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg==, + } + + "@stablelib/int@1.0.1": + resolution: + { + integrity: sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w==, + } + + "@stablelib/random@1.0.2": + resolution: + { + integrity: sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==, + } + + "@stablelib/sha512@1.0.1": + resolution: + { + integrity: sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw==, + } + + "@stablelib/wipe@1.0.1": + resolution: + { + integrity: sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg==, + } + + "@stacks/common@4.3.5": + resolution: + { + integrity: sha512-UuViiQ7fn3vdtTe3739aRzbl+wbukekeQuXgqt8d7nB2HC2HodD7GcHhpUga165cO35CD6lQUtj3vXxJb5Ga+A==, + } + + "@stacks/common@6.13.0": + resolution: + { + integrity: sha512-wwzyihjaSdmL6NxKvDeayy3dqM0L0Q2sawmdNtzJDi0FnXuJGm5PeapJj7bEfcI9XwI7Bw5jZoC6mCn9nc5YIw==, + } + + "@stacks/network@4.3.5": + resolution: + { + integrity: sha512-TC4+AkuT6qi3MoEGxTftA+4BNp99QvGnI+qtKQkoA1m0KDr8b9hSBUhugJHRhQbWuo7D6q0+JagYEGxLID29Kw==, + } + + "@stacks/network@6.10.0": + resolution: + { + integrity: sha512-mbiZ8nlsyy77ndmBdaqhHXii22IFdK4ThRcOQs9j/O00DkAr04jCM4GV5Q+VLUnZ9OBoJq7yOV7Pf6jglh+0hw==, + } + + "@stacks/transactions@4.3.8": + resolution: + { + integrity: sha512-5xYYv2TdXXM9PVixB79Pr99symQ8fhbVATjempGUxtL23/XUiRiLvJZohDxIE4VQ2EzbB4g4j8Y7oqPjj0h09Q==, + } + + "@stacks/transactions@6.11.0": + resolution: + { + integrity: sha512-+zIDqn9j4H/+o1ER8C9rFpig1fyrQcj2hVGNIrp+YbpPyja+cxv3fPk6kI/gePzwggzxRgUkIWhBc+mZAXuXyQ==, + } + + "@stdlib/array-float32@0.0.6": + resolution: + { + integrity: sha512-QgKT5UaE92Rv7cxfn7wBKZAlwFFHPla8eXsMFsTGt5BiL4yUy36lwinPUh4hzybZ11rw1vifS3VAPuk6JP413Q==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/array-float64@0.0.6': - resolution: {integrity: sha512-oE8y4a84LyBF1goX5//sU1mOjet8gLI0/6wucZcjg+j/yMmNV1xFu84Az9GOGmFSE6Ze6lirGOhfBeEWNNNaJg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/array-float64@0.0.6": + resolution: + { + integrity: sha512-oE8y4a84LyBF1goX5//sU1mOjet8gLI0/6wucZcjg+j/yMmNV1xFu84Az9GOGmFSE6Ze6lirGOhfBeEWNNNaJg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/array-uint16@0.0.6': - resolution: {integrity: sha512-/A8Tr0CqJ4XScIDRYQawosko8ha1Uy+50wsTgJhjUtXDpPRp7aUjmxvYkbe7Rm+ImYYbDQVix/uCiPAFQ8ed4Q==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/array-uint16@0.0.6": + resolution: + { + integrity: sha512-/A8Tr0CqJ4XScIDRYQawosko8ha1Uy+50wsTgJhjUtXDpPRp7aUjmxvYkbe7Rm+ImYYbDQVix/uCiPAFQ8ed4Q==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/array-uint32@0.0.6': - resolution: {integrity: sha512-2hFPK1Fg7obYPZWlGDjW9keiIB6lXaM9dKmJubg/ergLQCsJQJZpYsG6mMAfTJi4NT1UF4jTmgvyKD+yf0D9cA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/array-uint32@0.0.6": + resolution: + { + integrity: sha512-2hFPK1Fg7obYPZWlGDjW9keiIB6lXaM9dKmJubg/ergLQCsJQJZpYsG6mMAfTJi4NT1UF4jTmgvyKD+yf0D9cA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/array-uint8@0.0.7': - resolution: {integrity: sha512-qYJQQfGKIcky6TzHFIGczZYTuVlut7oO+V8qUBs7BJC9TwikVnnOmb3hY3jToY4xaoi5p9OvgdJKPInhyIhzFg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/array-uint8@0.0.7": + resolution: + { + integrity: sha512-qYJQQfGKIcky6TzHFIGczZYTuVlut7oO+V8qUBs7BJC9TwikVnnOmb3hY3jToY4xaoi5p9OvgdJKPInhyIhzFg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/assert-has-float32array-support@0.0.8': - resolution: {integrity: sha512-Yrg7K6rBqwCzDWZ5bN0VWLS5dNUWcoSfUeU49vTERdUmZID06J069CDc07UUl8vfQWhFgBWGocH3rrpKm1hi9w==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-has-float32array-support@0.0.8": + resolution: + { + integrity: sha512-Yrg7K6rBqwCzDWZ5bN0VWLS5dNUWcoSfUeU49vTERdUmZID06J069CDc07UUl8vfQWhFgBWGocH3rrpKm1hi9w==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/assert-has-float64array-support@0.0.8': - resolution: {integrity: sha512-UVQcoeWqgMw9b8PnAmm/sgzFnuWkZcNhJoi7xyMjbiDV/SP1qLCrvi06mq86cqS3QOCma1fEayJdwgteoXyyuw==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-has-float64array-support@0.0.8": + resolution: + { + integrity: sha512-UVQcoeWqgMw9b8PnAmm/sgzFnuWkZcNhJoi7xyMjbiDV/SP1qLCrvi06mq86cqS3QOCma1fEayJdwgteoXyyuw==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/assert-has-node-buffer-support@0.0.8': - resolution: {integrity: sha512-fgI+hW4Yg4ciiv4xVKH+1rzdV7e5+6UKgMnFbc1XDXHcxLub3vOr8+H6eDECdAIfgYNA7X0Dxa/DgvX9dwDTAQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-has-node-buffer-support@0.0.8": + resolution: + { + integrity: sha512-fgI+hW4Yg4ciiv4xVKH+1rzdV7e5+6UKgMnFbc1XDXHcxLub3vOr8+H6eDECdAIfgYNA7X0Dxa/DgvX9dwDTAQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/assert-has-own-property@0.0.7': - resolution: {integrity: sha512-3YHwSWiUqGlTLSwxAWxrqaD1PkgcJniGyotJeIt5X0tSNmSW0/c9RWroCImTUUB3zBkyBJ79MyU9Nf4Qgm59fQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-has-own-property@0.0.7": + resolution: + { + integrity: sha512-3YHwSWiUqGlTLSwxAWxrqaD1PkgcJniGyotJeIt5X0tSNmSW0/c9RWroCImTUUB3zBkyBJ79MyU9Nf4Qgm59fQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/assert-has-symbol-support@0.0.8': - resolution: {integrity: sha512-PoQ9rk8DgDCuBEkOIzGGQmSnjtcdagnUIviaP5YskB45/TJHXseh4NASWME8FV77WFW9v/Wt1MzKFKMzpDFu4Q==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-has-symbol-support@0.0.8": + resolution: + { + integrity: sha512-PoQ9rk8DgDCuBEkOIzGGQmSnjtcdagnUIviaP5YskB45/TJHXseh4NASWME8FV77WFW9v/Wt1MzKFKMzpDFu4Q==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/assert-has-tostringtag-support@0.0.9': - resolution: {integrity: sha512-UTsqdkrnQ7eufuH5BeyWOJL3ska3u5nvDWKqw3onNNZ2mvdgkfoFD7wHutVGzAA2rkTsSJAMBHVwWLsm5SbKgw==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-has-tostringtag-support@0.0.9": + resolution: + { + integrity: sha512-UTsqdkrnQ7eufuH5BeyWOJL3ska3u5nvDWKqw3onNNZ2mvdgkfoFD7wHutVGzAA2rkTsSJAMBHVwWLsm5SbKgw==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/assert-has-uint16array-support@0.0.8': - resolution: {integrity: sha512-vqFDn30YrtzD+BWnVqFhB130g3cUl2w5AdOxhIkRkXCDYAM5v7YwdNMJEON+D4jI8YB4D5pEYjqKweYaCq4nyg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-has-uint16array-support@0.0.8": + resolution: + { + integrity: sha512-vqFDn30YrtzD+BWnVqFhB130g3cUl2w5AdOxhIkRkXCDYAM5v7YwdNMJEON+D4jI8YB4D5pEYjqKweYaCq4nyg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/assert-has-uint32array-support@0.0.8': - resolution: {integrity: sha512-tJtKuiFKwFSQQUfRXEReOVGXtfdo6+xlshSfwwNWXL1WPP2LrceoiUoQk7zMCMT6VdbXgGH92LDjVcPmSbH4Xw==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-has-uint32array-support@0.0.8": + resolution: + { + integrity: sha512-tJtKuiFKwFSQQUfRXEReOVGXtfdo6+xlshSfwwNWXL1WPP2LrceoiUoQk7zMCMT6VdbXgGH92LDjVcPmSbH4Xw==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/assert-has-uint8array-support@0.0.8': - resolution: {integrity: sha512-ie4vGTbAS/5Py+LLjoSQi0nwtYBp+WKk20cMYCzilT0rCsBI/oez0RqHrkYYpmt4WaJL4eJqC+/vfQ5NsI7F5w==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-has-uint8array-support@0.0.8": + resolution: + { + integrity: sha512-ie4vGTbAS/5Py+LLjoSQi0nwtYBp+WKk20cMYCzilT0rCsBI/oez0RqHrkYYpmt4WaJL4eJqC+/vfQ5NsI7F5w==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/assert-is-array@0.0.7': - resolution: {integrity: sha512-/o6KclsGkNcZ5hiROarsD9XUs6xQMb4lTwF6O71UHbKWTtomEF/jD0rxLvlvj0BiCxfKrReddEYd2CnhUyskMA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-array@0.0.7": + resolution: + { + integrity: sha512-/o6KclsGkNcZ5hiROarsD9XUs6xQMb4lTwF6O71UHbKWTtomEF/jD0rxLvlvj0BiCxfKrReddEYd2CnhUyskMA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/assert-is-big-endian@0.0.7': - resolution: {integrity: sha512-BvutsX84F76YxaSIeS5ZQTl536lz+f+P7ew68T1jlFqxBhr4v7JVYFmuf24U040YuK1jwZ2sAq+bPh6T09apwQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-big-endian@0.0.7": + resolution: + { + integrity: sha512-BvutsX84F76YxaSIeS5ZQTl536lz+f+P7ew68T1jlFqxBhr4v7JVYFmuf24U040YuK1jwZ2sAq+bPh6T09apwQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/assert-is-boolean@0.0.8': - resolution: {integrity: sha512-PRCpslMXSYqFMz1Yh4dG2K/WzqxTCtlKbgJQD2cIkAtXux4JbYiXCtepuoV7l4Wv1rm0a1eU8EqNPgnOmWajGw==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-boolean@0.0.8": + resolution: + { + integrity: sha512-PRCpslMXSYqFMz1Yh4dG2K/WzqxTCtlKbgJQD2cIkAtXux4JbYiXCtepuoV7l4Wv1rm0a1eU8EqNPgnOmWajGw==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/assert-is-buffer@0.0.8': - resolution: {integrity: sha512-SYmGwOXkzZVidqUyY1IIx6V6QnSL36v3Lcwj8Rvne/fuW0bU2OomsEBzYCFMvcNgtY71vOvgZ9VfH3OppvV6eA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-buffer@0.0.8": + resolution: + { + integrity: sha512-SYmGwOXkzZVidqUyY1IIx6V6QnSL36v3Lcwj8Rvne/fuW0bU2OomsEBzYCFMvcNgtY71vOvgZ9VfH3OppvV6eA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/assert-is-float32array@0.0.8': - resolution: {integrity: sha512-Phk0Ze7Vj2/WLv5Wy8Oo7poZIDMSTiTrEnc1t4lBn3Svz2vfBXlvCufi/i5d93vc4IgpkdrOEwfry6nldABjNQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-float32array@0.0.8": + resolution: + { + integrity: sha512-Phk0Ze7Vj2/WLv5Wy8Oo7poZIDMSTiTrEnc1t4lBn3Svz2vfBXlvCufi/i5d93vc4IgpkdrOEwfry6nldABjNQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/assert-is-float64array@0.0.8': - resolution: {integrity: sha512-UC0Av36EEYIgqBbCIz1lj9g7qXxL5MqU1UrWun+n91lmxgdJ+Z77fHy75efJbJlXBf6HXhcYXECIsc0u3SzyDQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-float64array@0.0.8": + resolution: + { + integrity: sha512-UC0Av36EEYIgqBbCIz1lj9g7qXxL5MqU1UrWun+n91lmxgdJ+Z77fHy75efJbJlXBf6HXhcYXECIsc0u3SzyDQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/assert-is-function@0.0.8': - resolution: {integrity: sha512-M55Dt2njp5tnY8oePdbkKBRIypny+LpCMFZhEjJIxjLE4rA6zSlHs1yRMqD4PmW+Wl9WTeEM1GYO4AQHl1HAjA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-function@0.0.8": + resolution: + { + integrity: sha512-M55Dt2njp5tnY8oePdbkKBRIypny+LpCMFZhEjJIxjLE4rA6zSlHs1yRMqD4PmW+Wl9WTeEM1GYO4AQHl1HAjA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/assert-is-little-endian@0.0.7': - resolution: {integrity: sha512-SPObC73xXfDXY0dOewXR0LDGN3p18HGzm+4K8azTj6wug0vpRV12eB3hbT28ybzRCa6TAKUjwM/xY7Am5QzIlA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-little-endian@0.0.7": + resolution: + { + integrity: sha512-SPObC73xXfDXY0dOewXR0LDGN3p18HGzm+4K8azTj6wug0vpRV12eB3hbT28ybzRCa6TAKUjwM/xY7Am5QzIlA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/assert-is-number@0.0.7': - resolution: {integrity: sha512-mNV4boY1cUOmoWWfA2CkdEJfXA6YvhcTvwKC0Fzq+HoFFOuTK/scpTd9HanUyN6AGBlWA8IW+cQ1ZwOT3XMqag==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-number@0.0.7": + resolution: + { + integrity: sha512-mNV4boY1cUOmoWWfA2CkdEJfXA6YvhcTvwKC0Fzq+HoFFOuTK/scpTd9HanUyN6AGBlWA8IW+cQ1ZwOT3XMqag==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/assert-is-object-like@0.0.8': - resolution: {integrity: sha512-pe9selDPYAu/lYTFV5Rj4BStepgbzQCr36b/eC8EGSJh6gMgRXgHVv0R+EbdJ69KNkHvKKRjnWj0A/EmCwW+OA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-object-like@0.0.8": + resolution: + { + integrity: sha512-pe9selDPYAu/lYTFV5Rj4BStepgbzQCr36b/eC8EGSJh6gMgRXgHVv0R+EbdJ69KNkHvKKRjnWj0A/EmCwW+OA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/assert-is-object@0.0.8': - resolution: {integrity: sha512-ooPfXDp9c7w+GSqD2NBaZ/Du1JRJlctv+Abj2vRJDcDPyrnRTb1jmw+AuPgcW7Ca7op39JTbArI+RVHm/FPK+Q==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-object@0.0.8": + resolution: + { + integrity: sha512-ooPfXDp9c7w+GSqD2NBaZ/Du1JRJlctv+Abj2vRJDcDPyrnRTb1jmw+AuPgcW7Ca7op39JTbArI+RVHm/FPK+Q==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/assert-is-plain-object@0.0.7': - resolution: {integrity: sha512-t/CEq2a083ajAgXgSa5tsH8l3kSoEqKRu1qUwniVLFYL4RGv3615CrpJUDQKVtEX5S/OKww5q0Byu3JidJ4C5w==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-plain-object@0.0.7": + resolution: + { + integrity: sha512-t/CEq2a083ajAgXgSa5tsH8l3kSoEqKRu1qUwniVLFYL4RGv3615CrpJUDQKVtEX5S/OKww5q0Byu3JidJ4C5w==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/assert-is-regexp-string@0.0.9': - resolution: {integrity: sha512-FYRJJtH7XwXEf//X6UByUC0Eqd0ZYK5AC8or5g5m5efQrgr2lOaONHyDQ3Scj1A2D6QLIJKZc9XBM4uq5nOPXA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-regexp-string@0.0.9": + resolution: + { + integrity: sha512-FYRJJtH7XwXEf//X6UByUC0Eqd0ZYK5AC8or5g5m5efQrgr2lOaONHyDQ3Scj1A2D6QLIJKZc9XBM4uq5nOPXA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/assert-is-regexp@0.0.7': - resolution: {integrity: sha512-ty5qvLiqkDq6AibHlNJe0ZxDJ9Mg896qolmcHb69mzp64vrsORnPPOTzVapAq0bEUZbXoypeijypLPs9sCGBSQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-regexp@0.0.7": + resolution: + { + integrity: sha512-ty5qvLiqkDq6AibHlNJe0ZxDJ9Mg896qolmcHb69mzp64vrsORnPPOTzVapAq0bEUZbXoypeijypLPs9sCGBSQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/assert-is-string@0.0.8': - resolution: {integrity: sha512-Uk+bR4cglGBbY0q7O7HimEJiW/DWnO1tSzr4iAGMxYgf+VM2PMYgI5e0TLy9jOSOzWon3YS39lc63eR3a9KqeQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-string@0.0.8": + resolution: + { + integrity: sha512-Uk+bR4cglGBbY0q7O7HimEJiW/DWnO1tSzr4iAGMxYgf+VM2PMYgI5e0TLy9jOSOzWon3YS39lc63eR3a9KqeQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/assert-is-uint16array@0.0.8': - resolution: {integrity: sha512-M+qw7au+qglRXcXHjvoUZVLlGt1mPjuKudrVRto6KL4+tDsP2j+A89NDP3Fz8/XIUD+5jhj+65EOKHSMvDYnng==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-uint16array@0.0.8": + resolution: + { + integrity: sha512-M+qw7au+qglRXcXHjvoUZVLlGt1mPjuKudrVRto6KL4+tDsP2j+A89NDP3Fz8/XIUD+5jhj+65EOKHSMvDYnng==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/assert-is-uint32array@0.0.8': - resolution: {integrity: sha512-cnZi2DicYcplMnkJ3dBxBVKsRNFjzoGpmG9A6jXq4KH5rFl52SezGAXSVY9o5ZV7bQGaF5JLyCLp6n9Y74hFGg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-uint32array@0.0.8": + resolution: + { + integrity: sha512-cnZi2DicYcplMnkJ3dBxBVKsRNFjzoGpmG9A6jXq4KH5rFl52SezGAXSVY9o5ZV7bQGaF5JLyCLp6n9Y74hFGg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/assert-is-uint8array@0.0.8': - resolution: {integrity: sha512-8cqpDQtjnJAuVtRkNAktn45ixq0JHaGJxVsSiK79k7GRggvMI6QsbzO6OvcLnZ/LimD42FmgbLd13Yc2esDmZw==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-is-uint8array@0.0.8": + resolution: + { + integrity: sha512-8cqpDQtjnJAuVtRkNAktn45ixq0JHaGJxVsSiK79k7GRggvMI6QsbzO6OvcLnZ/LimD42FmgbLd13Yc2esDmZw==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/assert-tools-array-function@0.0.7': - resolution: {integrity: sha512-3lqkaCIBMSJ/IBHHk4NcCnk2NYU52tmwTYbbqhAmv7vim8rZPNmGfj3oWkzrCsyCsyTF7ooD+In2x+qTmUbCtQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/assert-tools-array-function@0.0.7": + resolution: + { + integrity: sha512-3lqkaCIBMSJ/IBHHk4NcCnk2NYU52tmwTYbbqhAmv7vim8rZPNmGfj3oWkzrCsyCsyTF7ooD+In2x+qTmUbCtQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/buffer-ctor@0.0.7': - resolution: {integrity: sha512-4IyTSGijKUQ8+DYRaKnepf9spvKLZ+nrmZ+JrRcB3FrdTX/l9JDpggcUcC/Fe+A4KIZOnClfxLn6zfIlkCZHNA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/buffer-ctor@0.0.7": + resolution: + { + integrity: sha512-4IyTSGijKUQ8+DYRaKnepf9spvKLZ+nrmZ+JrRcB3FrdTX/l9JDpggcUcC/Fe+A4KIZOnClfxLn6zfIlkCZHNA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/buffer-from-string@0.0.8': - resolution: {integrity: sha512-Dws5ZbK2M9l4Bkn/ODHFm3lNZ8tWko+NYXqGS/UH/RIQv3PGp+1tXFUSvjwjDneM6ppjQVExzVedUH1ftABs9A==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/buffer-from-string@0.0.8": + resolution: + { + integrity: sha512-Dws5ZbK2M9l4Bkn/ODHFm3lNZ8tWko+NYXqGS/UH/RIQv3PGp+1tXFUSvjwjDneM6ppjQVExzVedUH1ftABs9A==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/cli-ctor@0.0.3': - resolution: {integrity: sha512-0zCuZnzFyxj66GoF8AyIOhTX5/mgGczFvr6T9h4mXwegMZp8jBC/ZkOGMwmp+ODLBTvlcnnDNpNFkDDyR6/c2g==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/cli-ctor@0.0.3": + resolution: + { + integrity: sha512-0zCuZnzFyxj66GoF8AyIOhTX5/mgGczFvr6T9h4mXwegMZp8jBC/ZkOGMwmp+ODLBTvlcnnDNpNFkDDyR6/c2g==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/complex-float32@0.0.7': - resolution: {integrity: sha512-POCtQcBZnPm4IrFmTujSaprR1fcOFr/MRw2Mt7INF4oed6b1nzeG647K+2tk1m4mMrMPiuXCdvwJod4kJ0SXxQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/complex-float32@0.0.7": + resolution: + { + integrity: sha512-POCtQcBZnPm4IrFmTujSaprR1fcOFr/MRw2Mt7INF4oed6b1nzeG647K+2tk1m4mMrMPiuXCdvwJod4kJ0SXxQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/complex-float64@0.0.8': - resolution: {integrity: sha512-lUJwsXtGEziOWAqCcnKnZT4fcVoRsl6t6ECaCJX45Z7lAc70yJLiwUieLWS5UXmyoADHuZyUXkxtI4oClfpnaw==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/complex-float64@0.0.8": + resolution: + { + integrity: sha512-lUJwsXtGEziOWAqCcnKnZT4fcVoRsl6t6ECaCJX45Z7lAc70yJLiwUieLWS5UXmyoADHuZyUXkxtI4oClfpnaw==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/complex-reim@0.0.6': - resolution: {integrity: sha512-28WXfPSIFMtHb0YgdatkGS4yxX5sPYea5MiNgqPv3E78+tFcg8JJG52NQ/MviWP2wsN9aBQAoCPeu8kXxSPdzA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/complex-reim@0.0.6": + resolution: + { + integrity: sha512-28WXfPSIFMtHb0YgdatkGS4yxX5sPYea5MiNgqPv3E78+tFcg8JJG52NQ/MviWP2wsN9aBQAoCPeu8kXxSPdzA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/complex-reimf@0.0.1': - resolution: {integrity: sha512-P9zu05ZW2i68Oppp3oHelP7Tk0D7tGBL0hGl1skJppr2vY9LltuNbeYI3C96tQe/7Enw/5GyAWgxoQI4cWccQA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/complex-reimf@0.0.1": + resolution: + { + integrity: sha512-P9zu05ZW2i68Oppp3oHelP7Tk0D7tGBL0hGl1skJppr2vY9LltuNbeYI3C96tQe/7Enw/5GyAWgxoQI4cWccQA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/constants-float64-exponent-bias@0.0.8': - resolution: {integrity: sha512-IzBJQw9hYgWCki7VoC/zJxEA76Nmf8hmY+VkOWnJ8IyfgTXClgY8tfDGS1cc4l/hCOEllxGp9FRvVdn24A5tKQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/constants-float64-exponent-bias@0.0.8": + resolution: + { + integrity: sha512-IzBJQw9hYgWCki7VoC/zJxEA76Nmf8hmY+VkOWnJ8IyfgTXClgY8tfDGS1cc4l/hCOEllxGp9FRvVdn24A5tKQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/constants-float64-high-word-abs-mask@0.0.1': - resolution: {integrity: sha512-1vy8SUyMHFBwqUUVaZFA7r4/E3cMMRKSwsaa/EZ15w7Kmc01W/ZmaaTLevRcIdACcNgK+8i8813c8H7LScXNcQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/constants-float64-high-word-abs-mask@0.0.1": + resolution: + { + integrity: sha512-1vy8SUyMHFBwqUUVaZFA7r4/E3cMMRKSwsaa/EZ15w7Kmc01W/ZmaaTLevRcIdACcNgK+8i8813c8H7LScXNcQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/constants-float64-high-word-exponent-mask@0.0.8': - resolution: {integrity: sha512-z28/EQERc0VG7N36bqdvtrRWjFc8600PKkwvl/nqx6TpKAzMXNw55BS1xT4C28Sa9Z7uBWeUj3UbIFedbkoyMw==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/constants-float64-high-word-exponent-mask@0.0.8": + resolution: + { + integrity: sha512-z28/EQERc0VG7N36bqdvtrRWjFc8600PKkwvl/nqx6TpKAzMXNw55BS1xT4C28Sa9Z7uBWeUj3UbIFedbkoyMw==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/constants-float64-high-word-sign-mask@0.0.1': - resolution: {integrity: sha512-hmTr5caK1lh1m0eyaQqt2Vt3y+eEdAx57ndbADEbXhxC9qSGd0b4bLSzt/Xp4MYBYdQkHAE/BlkgUiRThswhCg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/constants-float64-high-word-sign-mask@0.0.1": + resolution: + { + integrity: sha512-hmTr5caK1lh1m0eyaQqt2Vt3y+eEdAx57ndbADEbXhxC9qSGd0b4bLSzt/Xp4MYBYdQkHAE/BlkgUiRThswhCg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/constants-float64-max-base2-exponent-subnormal@0.0.8': - resolution: {integrity: sha512-YGBZykSiXFebznnJfWFDwhho2Q9xhUWOL+X0lZJ4ItfTTo40W6VHAyNYz98tT/gJECFype0seNzzo1nUxCE7jQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/constants-float64-max-base2-exponent-subnormal@0.0.8": + resolution: + { + integrity: sha512-YGBZykSiXFebznnJfWFDwhho2Q9xhUWOL+X0lZJ4ItfTTo40W6VHAyNYz98tT/gJECFype0seNzzo1nUxCE7jQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/constants-float64-max-base2-exponent@0.0.8': - resolution: {integrity: sha512-xBAOtso1eiy27GnTut2difuSdpsGxI8dJhXupw0UukGgvy/3CSsyNm+a1Suz/dhqK4tPOTe5QboIdNMw5IgXKQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/constants-float64-max-base2-exponent@0.0.8": + resolution: + { + integrity: sha512-xBAOtso1eiy27GnTut2difuSdpsGxI8dJhXupw0UukGgvy/3CSsyNm+a1Suz/dhqK4tPOTe5QboIdNMw5IgXKQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/constants-float64-min-base2-exponent-subnormal@0.0.8': - resolution: {integrity: sha512-bt81nBus/91aEqGRQBenEFCyWNsf8uaxn4LN1NjgkvY92S1yVxXFlC65fJHsj9FTqvyZ+uj690/gdMKUDV3NjQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/constants-float64-min-base2-exponent-subnormal@0.0.8": + resolution: + { + integrity: sha512-bt81nBus/91aEqGRQBenEFCyWNsf8uaxn4LN1NjgkvY92S1yVxXFlC65fJHsj9FTqvyZ+uj690/gdMKUDV3NjQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/constants-float64-ninf@0.0.8': - resolution: {integrity: sha512-bn/uuzCne35OSLsQZJlNrkvU1/40spGTm22g1+ZI1LL19J8XJi/o4iupIHRXuLSTLFDBqMoJlUNphZlWQ4l8zw==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/constants-float64-ninf@0.0.8": + resolution: + { + integrity: sha512-bn/uuzCne35OSLsQZJlNrkvU1/40spGTm22g1+ZI1LL19J8XJi/o4iupIHRXuLSTLFDBqMoJlUNphZlWQ4l8zw==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/constants-float64-pinf@0.0.8': - resolution: {integrity: sha512-I3R4rm2cemoMuiDph07eo5oWZ4ucUtpuK73qBJiJPDQKz8fSjSe4wJBAigq2AmWYdd7yJHsl5NJd8AgC6mP5Qw==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/constants-float64-pinf@0.0.8": + resolution: + { + integrity: sha512-I3R4rm2cemoMuiDph07eo5oWZ4ucUtpuK73qBJiJPDQKz8fSjSe4wJBAigq2AmWYdd7yJHsl5NJd8AgC6mP5Qw==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/constants-float64-smallest-normal@0.0.8': - resolution: {integrity: sha512-Qwxpn5NA3RXf+mQcffCWRcsHSPTUQkalsz0+JDpblDszuz2XROcXkOdDr5LKgTAUPIXsjOgZzTsuRONENhsSEg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/constants-float64-smallest-normal@0.0.8": + resolution: + { + integrity: sha512-Qwxpn5NA3RXf+mQcffCWRcsHSPTUQkalsz0+JDpblDszuz2XROcXkOdDr5LKgTAUPIXsjOgZzTsuRONENhsSEg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/constants-uint16-max@0.0.7': - resolution: {integrity: sha512-7TPoku7SlskA67mAm7mykIAjeEnkQJemw1cnKZur0mT5W4ryvDR6iFfL9xBiByVnWYq/+ei7DHbOv6/2b2jizw==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/constants-uint16-max@0.0.7": + resolution: + { + integrity: sha512-7TPoku7SlskA67mAm7mykIAjeEnkQJemw1cnKZur0mT5W4ryvDR6iFfL9xBiByVnWYq/+ei7DHbOv6/2b2jizw==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/constants-uint32-max@0.0.7': - resolution: {integrity: sha512-8+NK0ewqc1vnEZNqzwFJgFSy3S543Eft7i8WyW/ygkofiqEiLAsujvYMHzPAB8/3D+PYvjTSe37StSwRwvQ6uw==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/constants-uint32-max@0.0.7": + resolution: + { + integrity: sha512-8+NK0ewqc1vnEZNqzwFJgFSy3S543Eft7i8WyW/ygkofiqEiLAsujvYMHzPAB8/3D+PYvjTSe37StSwRwvQ6uw==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/constants-uint8-max@0.0.7': - resolution: {integrity: sha512-fqV+xds4jgwFxwWu08b8xDuIoW6/D4/1dtEjZ1sXVeWR7nf0pjj1cHERq4kdkYxsvOGu+rjoR3MbjzpFc4fvSw==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/constants-uint8-max@0.0.7": + resolution: + { + integrity: sha512-fqV+xds4jgwFxwWu08b8xDuIoW6/D4/1dtEjZ1sXVeWR7nf0pjj1cHERq4kdkYxsvOGu+rjoR3MbjzpFc4fvSw==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/fs-exists@0.0.8': - resolution: {integrity: sha512-mZktcCxiLmycCJefm1+jbMTYkmhK6Jk1ShFmUVqJvs+Ps9/2EEQXfPbdEniLoVz4HeHLlcX90JWobUEghOOnAQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/fs-exists@0.0.8": + resolution: + { + integrity: sha512-mZktcCxiLmycCJefm1+jbMTYkmhK6Jk1ShFmUVqJvs+Ps9/2EEQXfPbdEniLoVz4HeHLlcX90JWobUEghOOnAQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/fs-read-file@0.0.8': - resolution: {integrity: sha512-pIZID/G91+q7ep4x9ECNC45+JT2j0+jdz/ZQVjCHiEwXCwshZPEvxcPQWb9bXo6coOY+zJyX5TwBIpXBxomWFg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/fs-read-file@0.0.8": + resolution: + { + integrity: sha512-pIZID/G91+q7ep4x9ECNC45+JT2j0+jdz/ZQVjCHiEwXCwshZPEvxcPQWb9bXo6coOY+zJyX5TwBIpXBxomWFg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/fs-resolve-parent-path@0.0.8': - resolution: {integrity: sha512-ok1bTWsAziChibQE3u7EoXwbCQUDkFjjRAHSxh7WWE5JEYVJQg1F0o3bbjRr4D/wfYYPWLAt8AFIKBUDmWghpg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/fs-resolve-parent-path@0.0.8": + resolution: + { + integrity: sha512-ok1bTWsAziChibQE3u7EoXwbCQUDkFjjRAHSxh7WWE5JEYVJQg1F0o3bbjRr4D/wfYYPWLAt8AFIKBUDmWghpg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/math-base-assert-is-infinite@0.0.9': - resolution: {integrity: sha512-JuPDdmxd+AtPWPHu9uaLvTsnEPaZODZk+zpagziNbDKy8DRiU1cy+t+QEjB5WizZt0A5MkuxDTjZ/8/sG5GaYQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/math-base-assert-is-infinite@0.0.9": + resolution: + { + integrity: sha512-JuPDdmxd+AtPWPHu9uaLvTsnEPaZODZk+zpagziNbDKy8DRiU1cy+t+QEjB5WizZt0A5MkuxDTjZ/8/sG5GaYQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/math-base-assert-is-nan@0.0.8': - resolution: {integrity: sha512-m+gCVBxLFW8ZdAfdkATetYMvM7sPFoMKboacHjb1pe21jHQqVb+/4bhRSDg6S7HGX7/8/bSzEUm9zuF7vqK5rQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/math-base-assert-is-nan@0.0.8": + resolution: + { + integrity: sha512-m+gCVBxLFW8ZdAfdkATetYMvM7sPFoMKboacHjb1pe21jHQqVb+/4bhRSDg6S7HGX7/8/bSzEUm9zuF7vqK5rQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/math-base-napi-binary@0.0.8': - resolution: {integrity: sha512-B8d0HBPhfXefbdl/h0h5c+lM2sE+/U7Fb7hY/huVeoQtBtEx0Jbx/qKvPSVxMjmWCKfWlbPpbgKpN5GbFgLiAg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/math-base-napi-binary@0.0.8": + resolution: + { + integrity: sha512-B8d0HBPhfXefbdl/h0h5c+lM2sE+/U7Fb7hY/huVeoQtBtEx0Jbx/qKvPSVxMjmWCKfWlbPpbgKpN5GbFgLiAg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/math-base-napi-unary@0.0.9': - resolution: {integrity: sha512-2WNKhjCygkGMp0RgjaD7wAHJTqPZmuVW7yPOc62Tnz2U+Ad8q/tcOcN+uvq2dtKsAGr1HDMIQxZ/XrrThMePyA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/math-base-napi-unary@0.0.9": + resolution: + { + integrity: sha512-2WNKhjCygkGMp0RgjaD7wAHJTqPZmuVW7yPOc62Tnz2U+Ad8q/tcOcN+uvq2dtKsAGr1HDMIQxZ/XrrThMePyA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/math-base-special-abs@0.0.6': - resolution: {integrity: sha512-FaaMUnYs2qIVN3kI5m/qNlBhDnjszhDOzEhxGEoQWR/k0XnxbCsTyjNesR2DkpiKuoAXAr9ojoDe2qBYdirWoQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/math-base-special-abs@0.0.6": + resolution: + { + integrity: sha512-FaaMUnYs2qIVN3kI5m/qNlBhDnjszhDOzEhxGEoQWR/k0XnxbCsTyjNesR2DkpiKuoAXAr9ojoDe2qBYdirWoQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/math-base-special-copysign@0.0.7': - resolution: {integrity: sha512-7Br7oeuVJSBKG8BiSk/AIRFTBd2sbvHdV3HaqRj8tTZHX8BQomZ3Vj4Qsiz3kPyO4d6PpBLBTYlGTkSDlGOZJA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/math-base-special-copysign@0.0.7": + resolution: + { + integrity: sha512-7Br7oeuVJSBKG8BiSk/AIRFTBd2sbvHdV3HaqRj8tTZHX8BQomZ3Vj4Qsiz3kPyO4d6PpBLBTYlGTkSDlGOZJA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/math-base-special-ldexp@0.0.5': - resolution: {integrity: sha512-RLRsPpCdcJZMhwb4l4B/FsmGfEPEWAsik6KYUkUSSHb7ok/gZWt8LgVScxGMpJMpl5IV0v9qG4ZINVONKjX5KA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/math-base-special-ldexp@0.0.5": + resolution: + { + integrity: sha512-RLRsPpCdcJZMhwb4l4B/FsmGfEPEWAsik6KYUkUSSHb7ok/gZWt8LgVScxGMpJMpl5IV0v9qG4ZINVONKjX5KA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/number-ctor@0.0.7': - resolution: {integrity: sha512-kXNwKIfnb10Ro3RTclhAYqbE3DtIXax+qpu0z1/tZpI2vkmTfYDQLno2QJrzJsZZgdeFtXIws+edONN9kM34ow==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/number-ctor@0.0.7": + resolution: + { + integrity: sha512-kXNwKIfnb10Ro3RTclhAYqbE3DtIXax+qpu0z1/tZpI2vkmTfYDQLno2QJrzJsZZgdeFtXIws+edONN9kM34ow==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/number-float64-base-exponent@0.0.6': - resolution: {integrity: sha512-wLXsG+cvynmapoffmj5hVNDH7BuHIGspBcTCdjPaD+tnqPDIm03qV5Z9YBhDh91BdOCuPZQ8Ovu2WBpX+ySeGg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/number-float64-base-exponent@0.0.6": + resolution: + { + integrity: sha512-wLXsG+cvynmapoffmj5hVNDH7BuHIGspBcTCdjPaD+tnqPDIm03qV5Z9YBhDh91BdOCuPZQ8Ovu2WBpX+ySeGg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/number-float64-base-from-words@0.0.6': - resolution: {integrity: sha512-r0elnekypCN831aw9Gp8+08br8HHAqvqtc5uXaxEh3QYIgBD/QM5qSb3b7WSAQ0ZxJJKdoykupODWWBkWQTijg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/number-float64-base-from-words@0.0.6": + resolution: + { + integrity: sha512-r0elnekypCN831aw9Gp8+08br8HHAqvqtc5uXaxEh3QYIgBD/QM5qSb3b7WSAQ0ZxJJKdoykupODWWBkWQTijg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/number-float64-base-get-high-word@0.0.6': - resolution: {integrity: sha512-jSFSYkgiG/IzDurbwrDKtWiaZeSEJK8iJIsNtbPG1vOIdQMRyw+t0bf3Kf3vuJu/+bnSTvYZLqpCO6wzT/ve9g==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/number-float64-base-get-high-word@0.0.6": + resolution: + { + integrity: sha512-jSFSYkgiG/IzDurbwrDKtWiaZeSEJK8iJIsNtbPG1vOIdQMRyw+t0bf3Kf3vuJu/+bnSTvYZLqpCO6wzT/ve9g==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/number-float64-base-normalize@0.0.9': - resolution: {integrity: sha512-+rm7RQJEj8zHkqYFE2a6DgNQSB5oKE/IydHAajgZl40YB91BoYRYf/ozs5/tTwfy2Fc04+tIpSfFtzDr4ZY19Q==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/number-float64-base-normalize@0.0.9": + resolution: + { + integrity: sha512-+rm7RQJEj8zHkqYFE2a6DgNQSB5oKE/IydHAajgZl40YB91BoYRYf/ozs5/tTwfy2Fc04+tIpSfFtzDr4ZY19Q==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/number-float64-base-to-float32@0.0.7': - resolution: {integrity: sha512-PNUSi6+cqfFiu4vgFljUKMFY2O9PxI6+T+vqtIoh8cflf+PjSGj3v4QIlstK9+6qU40eGR5SHZyLTWdzmNqLTQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/number-float64-base-to-float32@0.0.7": + resolution: + { + integrity: sha512-PNUSi6+cqfFiu4vgFljUKMFY2O9PxI6+T+vqtIoh8cflf+PjSGj3v4QIlstK9+6qU40eGR5SHZyLTWdzmNqLTQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/number-float64-base-to-words@0.0.7': - resolution: {integrity: sha512-7wsYuq+2MGp9rAkTnQ985rah7EJI9TfgHrYSSd4UIu4qIjoYmWIKEhIDgu7/69PfGrls18C3PxKg1pD/v7DQTg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/number-float64-base-to-words@0.0.7": + resolution: + { + integrity: sha512-7wsYuq+2MGp9rAkTnQ985rah7EJI9TfgHrYSSd4UIu4qIjoYmWIKEhIDgu7/69PfGrls18C3PxKg1pD/v7DQTg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/os-byte-order@0.0.7': - resolution: {integrity: sha512-rRJWjFM9lOSBiIX4zcay7BZsqYBLoE32Oz/Qfim8cv1cN1viS5D4d3DskRJcffw7zXDnG3oZAOw5yZS0FnlyUg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/os-byte-order@0.0.7": + resolution: + { + integrity: sha512-rRJWjFM9lOSBiIX4zcay7BZsqYBLoE32Oz/Qfim8cv1cN1viS5D4d3DskRJcffw7zXDnG3oZAOw5yZS0FnlyUg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/os-float-word-order@0.0.7': - resolution: {integrity: sha512-gXIcIZf+ENKP7E41bKflfXmPi+AIfjXW/oU+m8NbP3DQasqHaZa0z5758qvnbO8L1lRJb/MzLOkIY8Bx/0cWEA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/os-float-word-order@0.0.7": + resolution: + { + integrity: sha512-gXIcIZf+ENKP7E41bKflfXmPi+AIfjXW/oU+m8NbP3DQasqHaZa0z5758qvnbO8L1lRJb/MzLOkIY8Bx/0cWEA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/process-cwd@0.0.8': - resolution: {integrity: sha512-GHINpJgSlKEo9ODDWTHp0/Zc/9C/qL92h5Mc0QlIFBXAoUjy6xT4FB2U16wCNZMG3eVOzt5+SjmCwvGH0Wbg3Q==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/process-cwd@0.0.8": + resolution: + { + integrity: sha512-GHINpJgSlKEo9ODDWTHp0/Zc/9C/qL92h5Mc0QlIFBXAoUjy6xT4FB2U16wCNZMG3eVOzt5+SjmCwvGH0Wbg3Q==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/process-read-stdin@0.0.7': - resolution: {integrity: sha512-nep9QZ5iDGrRtrZM2+pYAvyCiYG4HfO0/9+19BiLJepjgYq4GKeumPAQo22+1xawYDL7Zu62uWzYszaVZcXuyw==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/process-read-stdin@0.0.7": + resolution: + { + integrity: sha512-nep9QZ5iDGrRtrZM2+pYAvyCiYG4HfO0/9+19BiLJepjgYq4GKeumPAQo22+1xawYDL7Zu62uWzYszaVZcXuyw==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/regexp-eol@0.0.7': - resolution: {integrity: sha512-BTMpRWrmlnf1XCdTxOrb8o6caO2lmu/c80XSyhYCi1DoizVIZnqxOaN5yUJNCr50g28vQ47PpsT3Yo7J3SdlRA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/regexp-eol@0.0.7": + resolution: + { + integrity: sha512-BTMpRWrmlnf1XCdTxOrb8o6caO2lmu/c80XSyhYCi1DoizVIZnqxOaN5yUJNCr50g28vQ47PpsT3Yo7J3SdlRA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/regexp-extended-length-path@0.0.7': - resolution: {integrity: sha512-z6uqzMWq3WPDKbl4MIZJoNA5ZsYLQI9G3j2TIvhU8X2hnhlku8p4mvK9F+QmoVvgPxKliwNnx/DAl7ltutSDKw==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/regexp-extended-length-path@0.0.7": + resolution: + { + integrity: sha512-z6uqzMWq3WPDKbl4MIZJoNA5ZsYLQI9G3j2TIvhU8X2hnhlku8p4mvK9F+QmoVvgPxKliwNnx/DAl7ltutSDKw==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/regexp-function-name@0.0.7': - resolution: {integrity: sha512-MaiyFUUqkAUpUoz/9F6AMBuMQQfA9ssQfK16PugehLQh4ZtOXV1LhdY8e5Md7SuYl9IrvFVg1gSAVDysrv5ZMg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/regexp-function-name@0.0.7": + resolution: + { + integrity: sha512-MaiyFUUqkAUpUoz/9F6AMBuMQQfA9ssQfK16PugehLQh4ZtOXV1LhdY8e5Md7SuYl9IrvFVg1gSAVDysrv5ZMg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/regexp-regexp@0.0.8': - resolution: {integrity: sha512-S5PZICPd/XRcn1dncVojxIDzJsHtEleuJHHD7ji3o981uPHR7zI2Iy9a1eV2u7+ABeUswbI1Yuix6fXJfcwV1w==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/regexp-regexp@0.0.8": + resolution: + { + integrity: sha512-S5PZICPd/XRcn1dncVojxIDzJsHtEleuJHHD7ji3o981uPHR7zI2Iy9a1eV2u7+ABeUswbI1Yuix6fXJfcwV1w==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/streams-node-stdin@0.0.7': - resolution: {integrity: sha512-gg4lgrjuoG3V/L29wNs32uADMCqepIcmoOFHJCTAhVe0GtHDLybUVnLljaPfdvmpPZmTvmusPQtIcscbyWvAyg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/streams-node-stdin@0.0.7": + resolution: + { + integrity: sha512-gg4lgrjuoG3V/L29wNs32uADMCqepIcmoOFHJCTAhVe0GtHDLybUVnLljaPfdvmpPZmTvmusPQtIcscbyWvAyg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/string-base-format-interpolate@0.0.4': - resolution: {integrity: sha512-8FC8+/ey+P5hf1B50oXpXzRzoAgKI1rikpyKZ98Xmjd5rcbSq3NWYi8TqOF8mUHm9hVZ2CXWoNCtEe2wvMQPMg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/string-base-format-interpolate@0.0.4": + resolution: + { + integrity: sha512-8FC8+/ey+P5hf1B50oXpXzRzoAgKI1rikpyKZ98Xmjd5rcbSq3NWYi8TqOF8mUHm9hVZ2CXWoNCtEe2wvMQPMg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/string-base-format-tokenize@0.0.4': - resolution: {integrity: sha512-+vMIkheqAhDeT/iF5hIQo95IMkt5IzC68eR3CxW1fhc48NMkKFE2UfN73ET8fmLuOanLo/5pO2E90c2G7PExow==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/string-base-format-tokenize@0.0.4": + resolution: + { + integrity: sha512-+vMIkheqAhDeT/iF5hIQo95IMkt5IzC68eR3CxW1fhc48NMkKFE2UfN73ET8fmLuOanLo/5pO2E90c2G7PExow==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/string-format@0.0.3': - resolution: {integrity: sha512-1jiElUQXlI/tTkgRuzJi9jUz/EjrO9kzS8VWHD3g7gdc3ZpxlA5G9JrIiPXGw/qmZTi0H1pXl6KmX+xWQEQJAg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/string-format@0.0.3": + resolution: + { + integrity: sha512-1jiElUQXlI/tTkgRuzJi9jUz/EjrO9kzS8VWHD3g7gdc3ZpxlA5G9JrIiPXGw/qmZTi0H1pXl6KmX+xWQEQJAg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/string-lowercase@0.0.9': - resolution: {integrity: sha512-tXFFjbhIlDak4jbQyV1DhYiSTO8b1ozS2g/LELnsKUjIXECDKxGFyWYcz10KuyAWmFotHnCJdIm8/blm2CfDIA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/string-lowercase@0.0.9": + resolution: + { + integrity: sha512-tXFFjbhIlDak4jbQyV1DhYiSTO8b1ozS2g/LELnsKUjIXECDKxGFyWYcz10KuyAWmFotHnCJdIm8/blm2CfDIA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/string-replace@0.0.11': - resolution: {integrity: sha512-F0MY4f9mRE5MSKpAUfL4HLbJMCbG6iUTtHAWnNeAXIvUX1XYIw/eItkA58R9kNvnr1l5B08bavnjrgTJGIKFFQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/string-replace@0.0.11": + resolution: + { + integrity: sha512-F0MY4f9mRE5MSKpAUfL4HLbJMCbG6iUTtHAWnNeAXIvUX1XYIw/eItkA58R9kNvnr1l5B08bavnjrgTJGIKFFQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/types@0.0.14': - resolution: {integrity: sha512-AP3EI9/il/xkwUazcoY+SbjtxHRrheXgSbWZdEGD+rWpEgj6n2i63hp6hTOpAB5NipE0tJwinQlDGOuQ1lCaCw==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/types@0.0.14": + resolution: + { + integrity: sha512-AP3EI9/il/xkwUazcoY+SbjtxHRrheXgSbWZdEGD+rWpEgj6n2i63hp6hTOpAB5NipE0tJwinQlDGOuQ1lCaCw==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/utils-constructor-name@0.0.8': - resolution: {integrity: sha512-GXpyNZwjN8u3tyYjL2GgGfrsxwvfogUC3gg7L7NRZ1i86B6xmgfnJUYHYOUnSfB+R531ET7NUZlK52GxL7P82Q==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/utils-constructor-name@0.0.8": + resolution: + { + integrity: sha512-GXpyNZwjN8u3tyYjL2GgGfrsxwvfogUC3gg7L7NRZ1i86B6xmgfnJUYHYOUnSfB+R531ET7NUZlK52GxL7P82Q==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/utils-convert-path@0.0.8': - resolution: {integrity: sha512-GNd8uIswrcJCctljMbmjtE4P4oOjhoUIfMvdkqfSrRLRY+ZqPB2xM+yI0MQFfUq/0Rnk/xtESlGSVLz9ZDtXfA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/utils-convert-path@0.0.8": + resolution: + { + integrity: sha512-GNd8uIswrcJCctljMbmjtE4P4oOjhoUIfMvdkqfSrRLRY+ZqPB2xM+yI0MQFfUq/0Rnk/xtESlGSVLz9ZDtXfA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/utils-define-nonenumerable-read-only-property@0.0.7': - resolution: {integrity: sha512-c7dnHDYuS4Xn3XBRWIQBPcROTtP/4lkcFyq0FrQzjXUjimfMgHF7cuFIIob6qUTnU8SOzY9p0ydRR2QJreWE6g==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/utils-define-nonenumerable-read-only-property@0.0.7": + resolution: + { + integrity: sha512-c7dnHDYuS4Xn3XBRWIQBPcROTtP/4lkcFyq0FrQzjXUjimfMgHF7cuFIIob6qUTnU8SOzY9p0ydRR2QJreWE6g==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/utils-define-property@0.0.9': - resolution: {integrity: sha512-pIzVvHJvVfU/Lt45WwUAcodlvSPDDSD4pIPc9WmIYi4vnEBA9U7yHtiNz2aTvfGmBMTaLYTVVFIXwkFp+QotMA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/utils-define-property@0.0.9": + resolution: + { + integrity: sha512-pIzVvHJvVfU/Lt45WwUAcodlvSPDDSD4pIPc9WmIYi4vnEBA9U7yHtiNz2aTvfGmBMTaLYTVVFIXwkFp+QotMA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/utils-escape-regexp-string@0.0.9': - resolution: {integrity: sha512-E+9+UDzf2mlMLgb+zYrrPy2FpzbXh189dzBJY6OG+XZqEJAXcjWs7DURO5oGffkG39EG5KXeaQwDXUavcMDCIw==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/utils-escape-regexp-string@0.0.9": + resolution: + { + integrity: sha512-E+9+UDzf2mlMLgb+zYrrPy2FpzbXh189dzBJY6OG+XZqEJAXcjWs7DURO5oGffkG39EG5KXeaQwDXUavcMDCIw==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/utils-get-prototype-of@0.0.7': - resolution: {integrity: sha512-fCUk9lrBO2ELrq+/OPJws1/hquI4FtwG0SzVRH6UJmJfwb1zoEFnjcwyDAy+HWNVmo3xeRLsrz6XjHrJwer9pg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/utils-get-prototype-of@0.0.7": + resolution: + { + integrity: sha512-fCUk9lrBO2ELrq+/OPJws1/hquI4FtwG0SzVRH6UJmJfwb1zoEFnjcwyDAy+HWNVmo3xeRLsrz6XjHrJwer9pg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/utils-global@0.0.7': - resolution: {integrity: sha512-BBNYBdDUz1X8Lhfw9nnnXczMv9GztzGpQ88J/6hnY7PHJ71av5d41YlijWeM9dhvWjnH9I7HNE3LL7R07yw0kA==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/utils-global@0.0.7": + resolution: + { + integrity: sha512-BBNYBdDUz1X8Lhfw9nnnXczMv9GztzGpQ88J/6hnY7PHJ71av5d41YlijWeM9dhvWjnH9I7HNE3LL7R07yw0kA==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/utils-library-manifest@0.0.8': - resolution: {integrity: sha512-IOQSp8skSRQn9wOyMRUX9Hi0j/P5v5TvD8DJWTqtE8Lhr8kVVluMBjHfvheoeKHxfWAbNHSVpkpFY/Bdh/SHgQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/utils-library-manifest@0.0.8": + resolution: + { + integrity: sha512-IOQSp8skSRQn9wOyMRUX9Hi0j/P5v5TvD8DJWTqtE8Lhr8kVVluMBjHfvheoeKHxfWAbNHSVpkpFY/Bdh/SHgQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - '@stdlib/utils-native-class@0.0.8': - resolution: {integrity: sha512-0Zl9me2V9rSrBw/N8o8/9XjmPUy8zEeoMM0sJmH3N6C9StDsYTjXIAMPGzYhMEWaWHvGeYyNteFK2yDOVGtC3w==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/utils-native-class@0.0.8": + resolution: + { + integrity: sha512-0Zl9me2V9rSrBw/N8o8/9XjmPUy8zEeoMM0sJmH3N6C9StDsYTjXIAMPGzYhMEWaWHvGeYyNteFK2yDOVGtC3w==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/utils-next-tick@0.0.8': - resolution: {integrity: sha512-l+hPl7+CgLPxk/gcWOXRxX/lNyfqcFCqhzzV/ZMvFCYLY/wI9lcWO4xTQNMALY2rp+kiV+qiAiO9zcO+hewwUg==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/utils-next-tick@0.0.8": + resolution: + { + integrity: sha512-l+hPl7+CgLPxk/gcWOXRxX/lNyfqcFCqhzzV/ZMvFCYLY/wI9lcWO4xTQNMALY2rp+kiV+qiAiO9zcO+hewwUg==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/utils-noop@0.0.14': - resolution: {integrity: sha512-A5faFEUfszMgd93RCyB+aWb62hQxgP+dZ/l9rIOwNWbIrCYNwSuL4z50lNJuatnwwU4BQ4EjQr+AmBsnvuLcyQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/utils-noop@0.0.14": + resolution: + { + integrity: sha512-A5faFEUfszMgd93RCyB+aWb62hQxgP+dZ/l9rIOwNWbIrCYNwSuL4z50lNJuatnwwU4BQ4EjQr+AmBsnvuLcyQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/utils-regexp-from-string@0.0.9': - resolution: {integrity: sha512-3rN0Mcyiarl7V6dXRjFAUMacRwe0/sYX7ThKYurf0mZkMW9tjTP+ygak9xmL9AL0QQZtbrFFwWBrDO+38Vnavw==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/utils-regexp-from-string@0.0.9": + resolution: + { + integrity: sha512-3rN0Mcyiarl7V6dXRjFAUMacRwe0/sYX7ThKYurf0mZkMW9tjTP+ygak9xmL9AL0QQZtbrFFwWBrDO+38Vnavw==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stdlib/utils-type-of@0.0.8': - resolution: {integrity: sha512-b4xqdy3AnnB7NdmBBpoiI67X4vIRxvirjg3a8BfhM5jPr2k0njby1jAbG9dUxJvgAV6o32S4kjUgfIdjEYpTNQ==} - engines: {node: '>=0.10.0', npm: '>2.7.0'} + "@stdlib/utils-type-of@0.0.8": + resolution: + { + integrity: sha512-b4xqdy3AnnB7NdmBBpoiI67X4vIRxvirjg3a8BfhM5jPr2k0njby1jAbG9dUxJvgAV6o32S4kjUgfIdjEYpTNQ==, + } + engines: { node: ">=0.10.0", npm: ">2.7.0" } os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - '@stellar/js-xdr@3.1.1': - resolution: {integrity: sha512-3gnPjAz78htgqsNEDkEsKHKosV2BF2iZkoHCNxpmZwUxiPsw+2VaXMed8RRMe0rGk3d5GZe7RrSba8zV80J3Ag==} - - '@stellar/stellar-base@11.0.1': - resolution: {integrity: sha512-VQh+1KEtFjegD6spx08+lENt8tQOkQQQZoLtqExjpRXyWlqDhEe+bXMlBTYKDc5MIynHyD42RPEib27UG17trA==} - - '@stellar/stellar-sdk@11.3.0': - resolution: {integrity: sha512-i+heopibJNRA7iM8rEPz0AXphBPYvy2HDo8rxbDwWpozwCfw8kglP9cLkkhgJe8YicgLrdExz/iQZaLpqLC+6w==} - - '@storybook/addon-actions@7.6.17': - resolution: {integrity: sha512-TBphs4v6LRfyTpFo/WINF0TkMaE3rrNog7wW5mbz6n0j8o53kDN4o9ZEcygSL5zQX43CAaghQTeDCss7ueG7ZQ==} - - '@storybook/addon-actions@7.6.20': - resolution: {integrity: sha512-c/GkEQ2U9BC/Ew/IMdh+zvsh4N6y6n7Zsn2GIhJgcu9YEAa5aF2a9/pNgEGBMOABH959XE8DAOMERw/5qiLR8g==} - - '@storybook/addon-backgrounds@7.6.17': - resolution: {integrity: sha512-7dize7x8+37PH77kmt69b0xSaeDqOcZ4fpzW6+hk53hIaCVU26eGs4+j+743Xva31eOgZWNLupUhOpUDc6SqZw==} - - '@storybook/addon-backgrounds@7.6.20': - resolution: {integrity: sha512-a7ukoaXT42vpKsMxkseIeO3GqL0Zst2IxpCTq5dSlXiADrcemSF/8/oNpNW9C4L6F1Zdt+WDtECXslEm017FvQ==} - - '@storybook/addon-controls@7.6.17': - resolution: {integrity: sha512-zR0aLaUF7FtV/nMRyfniFbCls/e0DAAoXACuOAUAwNAv0lbIS8AyZZiHSmKucCvziUQ6WceeCC7+du3C+9y0rQ==} - - '@storybook/addon-controls@7.6.20': - resolution: {integrity: sha512-06ZT5Ce1sZW52B0s6XuokwjkKO9GqHlTUHvuflvd8wifxKlCmRvNUxjBvwh+ccGJ49ZS73LbMSLFgtmBEkCxbg==} - - '@storybook/addon-docs@7.6.17': - resolution: {integrity: sha512-FKa4Mdy7nhgvEVZJHpMkHriDzpVHbohn87zv9NCL+Ctjs1iAmzGwxEm0culszyDS1HN2ToVoY0h8CSi2RSSZqA==} + "@stellar/js-xdr@3.1.1": + resolution: + { + integrity: sha512-3gnPjAz78htgqsNEDkEsKHKosV2BF2iZkoHCNxpmZwUxiPsw+2VaXMed8RRMe0rGk3d5GZe7RrSba8zV80J3Ag==, + } + + "@stellar/stellar-base@11.0.1": + resolution: + { + integrity: sha512-VQh+1KEtFjegD6spx08+lENt8tQOkQQQZoLtqExjpRXyWlqDhEe+bXMlBTYKDc5MIynHyD42RPEib27UG17trA==, + } + + "@stellar/stellar-sdk@11.3.0": + resolution: + { + integrity: sha512-i+heopibJNRA7iM8rEPz0AXphBPYvy2HDo8rxbDwWpozwCfw8kglP9cLkkhgJe8YicgLrdExz/iQZaLpqLC+6w==, + } + + "@storybook/addon-actions@7.6.17": + resolution: + { + integrity: sha512-TBphs4v6LRfyTpFo/WINF0TkMaE3rrNog7wW5mbz6n0j8o53kDN4o9ZEcygSL5zQX43CAaghQTeDCss7ueG7ZQ==, + } + + "@storybook/addon-actions@7.6.20": + resolution: + { + integrity: sha512-c/GkEQ2U9BC/Ew/IMdh+zvsh4N6y6n7Zsn2GIhJgcu9YEAa5aF2a9/pNgEGBMOABH959XE8DAOMERw/5qiLR8g==, + } + + "@storybook/addon-backgrounds@7.6.17": + resolution: + { + integrity: sha512-7dize7x8+37PH77kmt69b0xSaeDqOcZ4fpzW6+hk53hIaCVU26eGs4+j+743Xva31eOgZWNLupUhOpUDc6SqZw==, + } + + "@storybook/addon-backgrounds@7.6.20": + resolution: + { + integrity: sha512-a7ukoaXT42vpKsMxkseIeO3GqL0Zst2IxpCTq5dSlXiADrcemSF/8/oNpNW9C4L6F1Zdt+WDtECXslEm017FvQ==, + } + + "@storybook/addon-controls@7.6.17": + resolution: + { + integrity: sha512-zR0aLaUF7FtV/nMRyfniFbCls/e0DAAoXACuOAUAwNAv0lbIS8AyZZiHSmKucCvziUQ6WceeCC7+du3C+9y0rQ==, + } + + "@storybook/addon-controls@7.6.20": + resolution: + { + integrity: sha512-06ZT5Ce1sZW52B0s6XuokwjkKO9GqHlTUHvuflvd8wifxKlCmRvNUxjBvwh+ccGJ49ZS73LbMSLFgtmBEkCxbg==, + } + + "@storybook/addon-docs@7.6.17": + resolution: + { + integrity: sha512-FKa4Mdy7nhgvEVZJHpMkHriDzpVHbohn87zv9NCL+Ctjs1iAmzGwxEm0culszyDS1HN2ToVoY0h8CSi2RSSZqA==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/addon-docs@7.6.20': - resolution: {integrity: sha512-XNfYRhbxH5JP7B9Lh4W06PtMefNXkfpV39Gaoih5HuqngV3eoSL4RikZYOMkvxRGQ738xc6axySU3+JKcP1OZg==} + "@storybook/addon-docs@7.6.20": + resolution: + { + integrity: sha512-XNfYRhbxH5JP7B9Lh4W06PtMefNXkfpV39Gaoih5HuqngV3eoSL4RikZYOMkvxRGQ738xc6axySU3+JKcP1OZg==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/addon-essentials@7.6.17': - resolution: {integrity: sha512-qlSpamxuYfT2taF953nC9QijGF2pSbg1ewMNpdwLTj16PTZvR/d8NCDMTJujI1bDwM2m18u8Yc43ibh5LEmxCw==} + "@storybook/addon-essentials@7.6.17": + resolution: + { + integrity: sha512-qlSpamxuYfT2taF953nC9QijGF2pSbg1ewMNpdwLTj16PTZvR/d8NCDMTJujI1bDwM2m18u8Yc43ibh5LEmxCw==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/addon-essentials@7.6.20': - resolution: {integrity: sha512-hCupSOiJDeOxJKZSgH0x5Mb2Xqii6mps21g5hpxac1XjhQtmGflShxi/xOHhK3sNqrbgTSbScfpUP3hUlZO/2Q==} + "@storybook/addon-essentials@7.6.20": + resolution: + { + integrity: sha512-hCupSOiJDeOxJKZSgH0x5Mb2Xqii6mps21g5hpxac1XjhQtmGflShxi/xOHhK3sNqrbgTSbScfpUP3hUlZO/2Q==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/addon-highlight@7.6.17': - resolution: {integrity: sha512-R1yBPUUqGn+60aJakn8q+5Zt34E/gU3n3VmgPdryP0LJUdZ5q1/RZShoVDV+yYQ40htMH6oaCv3OyyPzFAGJ6A==} + "@storybook/addon-highlight@7.6.17": + resolution: + { + integrity: sha512-R1yBPUUqGn+60aJakn8q+5Zt34E/gU3n3VmgPdryP0LJUdZ5q1/RZShoVDV+yYQ40htMH6oaCv3OyyPzFAGJ6A==, + } - '@storybook/addon-highlight@7.6.20': - resolution: {integrity: sha512-7/x7xFdFyqCki5Dm3uBePldUs9l98/WxJ7rTHQuYqlX7kASwyN5iXPzuhmMRUhlMm/6G6xXtLabIpzwf1sFurA==} + "@storybook/addon-highlight@7.6.20": + resolution: + { + integrity: sha512-7/x7xFdFyqCki5Dm3uBePldUs9l98/WxJ7rTHQuYqlX7kASwyN5iXPzuhmMRUhlMm/6G6xXtLabIpzwf1sFurA==, + } - '@storybook/addon-links@7.6.17': - resolution: {integrity: sha512-iFUwKObRn0EKI0zMETsil2p9a/81rCuSMEWECsi+khkCAs1FUnD2cT6Ag5ydcNcBXsdtdfDJdtXQrkw+TSoStQ==} + "@storybook/addon-links@7.6.17": + resolution: + { + integrity: sha512-iFUwKObRn0EKI0zMETsil2p9a/81rCuSMEWECsi+khkCAs1FUnD2cT6Ag5ydcNcBXsdtdfDJdtXQrkw+TSoStQ==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: react: optional: true - '@storybook/addon-links@7.6.20': - resolution: {integrity: sha512-iomSnBD90CA4MinesYiJkFX2kb3P1Psd/a1Y0ghlFEsHD4uMId9iT6sx2s16DYMja0SlPkrbWYnGukqaCjZpRw==} + "@storybook/addon-links@7.6.20": + resolution: + { + integrity: sha512-iomSnBD90CA4MinesYiJkFX2kb3P1Psd/a1Y0ghlFEsHD4uMId9iT6sx2s16DYMja0SlPkrbWYnGukqaCjZpRw==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: react: optional: true - '@storybook/addon-measure@7.6.17': - resolution: {integrity: sha512-O5vnHZNkduvZ95jf1UssbOl6ivIxzl5tv+4EpScPYId7w700bxWsJH+QX7ip6KlrCf2o3iUhmPe8bm05ghG2KA==} - - '@storybook/addon-measure@7.6.20': - resolution: {integrity: sha512-i2Iq08bGfI7gZbG6Lb8uF/L287tnaGUR+2KFEmdBjH6+kgjWLiwfpanoPQpy4drm23ar0gUjX+L3Ri03VI5/Xg==} - - '@storybook/addon-ondevice-actions@6.5.7': - resolution: {integrity: sha512-Zrk75yQbJ3fOf/e5XROeBYfT/UYz24he+LWNicIajNTPRz+YhnOmWedWYF/vEVQ+exnAi3U4cFkX3qUq9blI3w==} - peerDependencies: - '@storybook/addon-actions': ^6.5.14 - react: '*' - react-native: '*' - - '@storybook/addon-ondevice-backgrounds@6.5.7': - resolution: {integrity: sha512-JY+kLkI+VGV9ry3oIdn9bNHzd/dE1X5F//LXppx8pcbqswgCrwIkuZJJQ3A7ppPr34YxtnGJptKdAId7FFpB3w==} - peerDependencies: - '@emotion/native': '*' - react: '*' - react-native: '*' + "@storybook/addon-measure@7.6.17": + resolution: + { + integrity: sha512-O5vnHZNkduvZ95jf1UssbOl6ivIxzl5tv+4EpScPYId7w700bxWsJH+QX7ip6KlrCf2o3iUhmPe8bm05ghG2KA==, + } + + "@storybook/addon-measure@7.6.20": + resolution: + { + integrity: sha512-i2Iq08bGfI7gZbG6Lb8uF/L287tnaGUR+2KFEmdBjH6+kgjWLiwfpanoPQpy4drm23ar0gUjX+L3Ri03VI5/Xg==, + } + + "@storybook/addon-ondevice-actions@6.5.7": + resolution: + { + integrity: sha512-Zrk75yQbJ3fOf/e5XROeBYfT/UYz24he+LWNicIajNTPRz+YhnOmWedWYF/vEVQ+exnAi3U4cFkX3qUq9blI3w==, + } + peerDependencies: + "@storybook/addon-actions": ^6.5.14 + react: "*" + react-native: "*" + + "@storybook/addon-ondevice-backgrounds@6.5.7": + resolution: + { + integrity: sha512-JY+kLkI+VGV9ry3oIdn9bNHzd/dE1X5F//LXppx8pcbqswgCrwIkuZJJQ3A7ppPr34YxtnGJptKdAId7FFpB3w==, + } + peerDependencies: + "@emotion/native": "*" + react: "*" + react-native: "*" peerDependenciesMeta: - '@emotion/native': + "@emotion/native": optional: true - '@storybook/addon-ondevice-controls@6.5.7': - resolution: {integrity: sha512-dy3d2D8TzEIGaEufS3mB3X7K0Wa5qBc6QEGE1b0S8ra9pa9Hw5YD43fk7xvwSJ1QIbOFCr7QWbfnB1c2QwyFSQ==} - peerDependencies: - '@react-native-community/datetimepicker': '*' - '@react-native-community/slider': '*' - '@storybook/addon-controls': ^6.5.14 - react: '*' - react-native: '*' - - '@storybook/addon-ondevice-notes@6.5.7': - resolution: {integrity: sha512-qs84AdYlWwEb6/B4HnujV0+bqK70Lz5aLn+B4vyeU0154ebF40b2R7PS0bDeWVOwsEu3mLK3sRF6lDRfaUn8OQ==} - peerDependencies: - react: '*' - react-native: '*' - - '@storybook/addon-outline@7.6.17': - resolution: {integrity: sha512-9o9JXDsYjNaDgz/cY5+jv694+aik/1aiRGGvsCv68e1p/ob0glkGKav4lnJe2VJqD+gCmaARoD8GOJlhoQl8JQ==} - - '@storybook/addon-outline@7.6.20': - resolution: {integrity: sha512-TdsIQZf/TcDsGoZ1XpO+9nBc4OKqcMIzY4SrI8Wj9dzyFLQ37s08gnZr9POci8AEv62NTUOVavsxcafllkzqDQ==} - - '@storybook/addon-react-native-web@0.0.21': - resolution: {integrity: sha512-qEDUe1gbY2o0x8QCN7TbTBQGMhJP7FMbYVsJ357ApvsySQwog3tJqU6zHt5YJ0X41dteBfdrDL9ziwirHdl7GA==} - peerDependencies: - '@babel/preset-react': '*' - babel-plugin-react-native-web: '*' - metro-react-native-babel-preset: '*' + "@storybook/addon-ondevice-controls@6.5.7": + resolution: + { + integrity: sha512-dy3d2D8TzEIGaEufS3mB3X7K0Wa5qBc6QEGE1b0S8ra9pa9Hw5YD43fk7xvwSJ1QIbOFCr7QWbfnB1c2QwyFSQ==, + } + peerDependencies: + "@react-native-community/datetimepicker": "*" + "@react-native-community/slider": "*" + "@storybook/addon-controls": ^6.5.14 + react: "*" + react-native: "*" + + "@storybook/addon-ondevice-notes@6.5.7": + resolution: + { + integrity: sha512-qs84AdYlWwEb6/B4HnujV0+bqK70Lz5aLn+B4vyeU0154ebF40b2R7PS0bDeWVOwsEu3mLK3sRF6lDRfaUn8OQ==, + } + peerDependencies: + react: "*" + react-native: "*" + + "@storybook/addon-outline@7.6.17": + resolution: + { + integrity: sha512-9o9JXDsYjNaDgz/cY5+jv694+aik/1aiRGGvsCv68e1p/ob0glkGKav4lnJe2VJqD+gCmaARoD8GOJlhoQl8JQ==, + } + + "@storybook/addon-outline@7.6.20": + resolution: + { + integrity: sha512-TdsIQZf/TcDsGoZ1XpO+9nBc4OKqcMIzY4SrI8Wj9dzyFLQ37s08gnZr9POci8AEv62NTUOVavsxcafllkzqDQ==, + } + + "@storybook/addon-react-native-web@0.0.21": + resolution: + { + integrity: sha512-qEDUe1gbY2o0x8QCN7TbTBQGMhJP7FMbYVsJ357ApvsySQwog3tJqU6zHt5YJ0X41dteBfdrDL9ziwirHdl7GA==, + } + peerDependencies: + "@babel/preset-react": "*" + babel-plugin-react-native-web: "*" + metro-react-native-babel-preset: "*" react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - webpack: '*' + webpack: "5" peerDependenciesMeta: react: optional: true @@ -13785,1881 +18115,3261 @@ packages: webpack: optional: true - '@storybook/addon-toolbars@7.6.17': - resolution: {integrity: sha512-UMrchbUHiyWrh6WuGnpy34Jqzkx/63B+MSgb3CW7YsQaXz64kE0Rol0TNSznnB+mYXplcqH+ndI4r4kFsmgwDg==} - - '@storybook/addon-toolbars@7.6.20': - resolution: {integrity: sha512-5Btg4i8ffWTDHsU72cqxC8nIv9N3E3ObJAc6k0llrmPBG/ybh3jxmRfs8fNm44LlEXaZ5qrK/petsXX3UbpIFg==} - - '@storybook/addon-viewport@7.6.17': - resolution: {integrity: sha512-sA0QCcf4QAMixWvn8uvRYPfkKCSl6JajJaAspoPqXSxHEpK7uwOlpg3kqFU5XJJPXD0X957M+ONgNvBzYqSpEw==} - - '@storybook/addon-viewport@7.6.20': - resolution: {integrity: sha512-i8mIw8BjLWAVHEQsOTE6UPuEGQvJDpsu1XZnOCkpfTfPMz73m+3td/PmLG7mMT2wPnLu9IZncKLCKTAZRbt/YQ==} - - '@storybook/addons@6.5.16': - resolution: {integrity: sha512-p3DqQi+8QRL5k7jXhXmJZLsE/GqHqyY6PcoA1oNTJr0try48uhTGUOYkgzmqtDaa/qPFO5LP+xCPzZXckGtquQ==} + "@storybook/addon-toolbars@7.6.17": + resolution: + { + integrity: sha512-UMrchbUHiyWrh6WuGnpy34Jqzkx/63B+MSgb3CW7YsQaXz64kE0Rol0TNSznnB+mYXplcqH+ndI4r4kFsmgwDg==, + } + + "@storybook/addon-toolbars@7.6.20": + resolution: + { + integrity: sha512-5Btg4i8ffWTDHsU72cqxC8nIv9N3E3ObJAc6k0llrmPBG/ybh3jxmRfs8fNm44LlEXaZ5qrK/petsXX3UbpIFg==, + } + + "@storybook/addon-viewport@7.6.17": + resolution: + { + integrity: sha512-sA0QCcf4QAMixWvn8uvRYPfkKCSl6JajJaAspoPqXSxHEpK7uwOlpg3kqFU5XJJPXD0X957M+ONgNvBzYqSpEw==, + } + + "@storybook/addon-viewport@7.6.20": + resolution: + { + integrity: sha512-i8mIw8BjLWAVHEQsOTE6UPuEGQvJDpsu1XZnOCkpfTfPMz73m+3td/PmLG7mMT2wPnLu9IZncKLCKTAZRbt/YQ==, + } + + "@storybook/addons@6.5.16": + resolution: + { + integrity: sha512-p3DqQi+8QRL5k7jXhXmJZLsE/GqHqyY6PcoA1oNTJr0try48uhTGUOYkgzmqtDaa/qPFO5LP+xCPzZXckGtquQ==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/addons@7.6.17': - resolution: {integrity: sha512-Ok18Y698Ccyg++MoUNJNHY0cXUvo8ETFIRLJk1g9ElJ70j6kPgNnzW2pAtZkBNmswHtofZ7pT156cj96k/LgfA==} + "@storybook/addons@7.6.17": + resolution: + { + integrity: sha512-Ok18Y698Ccyg++MoUNJNHY0cXUvo8ETFIRLJk1g9ElJ70j6kPgNnzW2pAtZkBNmswHtofZ7pT156cj96k/LgfA==, + } - '@storybook/api@6.5.16': - resolution: {integrity: sha512-HOsuT8iomqeTMQJrRx5U8nsC7lJTwRr1DhdD0SzlqL4c80S/7uuCy4IZvOt4sYQjOzW5fOo/kamcoBXyLproTA==} + "@storybook/api@6.5.16": + resolution: + { + integrity: sha512-HOsuT8iomqeTMQJrRx5U8nsC7lJTwRr1DhdD0SzlqL4c80S/7uuCy4IZvOt4sYQjOzW5fOo/kamcoBXyLproTA==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/blocks@7.6.17': - resolution: {integrity: sha512-PsNVoe0bX1mMn4Kk3nbKZ0ItDZZ0YJnYAFJ6toAbsyBAbgzg1sce88sQinzvbn58/RT9MPKeWMPB45ZS7ggiNg==} + "@storybook/blocks@7.6.17": + resolution: + { + integrity: sha512-PsNVoe0bX1mMn4Kk3nbKZ0ItDZZ0YJnYAFJ6toAbsyBAbgzg1sce88sQinzvbn58/RT9MPKeWMPB45ZS7ggiNg==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/blocks@7.6.20': - resolution: {integrity: sha512-xADKGEOJWkG0UD5jbY4mBXRlmj2C+CIupDL0/hpzvLvwobxBMFPKZIkcZIMvGvVnI/Ui+tJxQxLSuJ5QsPthUw==} + "@storybook/blocks@7.6.20": + resolution: + { + integrity: sha512-xADKGEOJWkG0UD5jbY4mBXRlmj2C+CIupDL0/hpzvLvwobxBMFPKZIkcZIMvGvVnI/Ui+tJxQxLSuJ5QsPthUw==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/builder-manager@7.6.17': - resolution: {integrity: sha512-Sj8hcDYiPCCMfeLzus37czl0zdrAxAz4IyYam2jBjVymrIrcDAFyL1OCZvnq33ft179QYQWhUs9qwzVmlR/ZWg==} - - '@storybook/builder-manager@7.6.20': - resolution: {integrity: sha512-e2GzpjLaw6CM/XSmc4qJRzBF8GOoOyotyu3JrSPTYOt4RD8kjUsK4QlismQM1DQRu8i39aIexxmRbiJyD74xzQ==} - - '@storybook/builder-webpack5@7.6.17': - resolution: {integrity: sha512-GMaBd8/RzivuAmWrYSt9Rga3j8WLcu5LCMYiPVs+XKXsKAC8lTkV0WRWh8Nk6wTmfzsRQ2acwFjSG5oE4ClZKA==} - peerDependencies: - typescript: '*' + "@storybook/builder-manager@7.6.17": + resolution: + { + integrity: sha512-Sj8hcDYiPCCMfeLzus37czl0zdrAxAz4IyYam2jBjVymrIrcDAFyL1OCZvnq33ft179QYQWhUs9qwzVmlR/ZWg==, + } + + "@storybook/builder-manager@7.6.20": + resolution: + { + integrity: sha512-e2GzpjLaw6CM/XSmc4qJRzBF8GOoOyotyu3JrSPTYOt4RD8kjUsK4QlismQM1DQRu8i39aIexxmRbiJyD74xzQ==, + } + + "@storybook/builder-webpack5@7.6.17": + resolution: + { + integrity: sha512-GMaBd8/RzivuAmWrYSt9Rga3j8WLcu5LCMYiPVs+XKXsKAC8lTkV0WRWh8Nk6wTmfzsRQ2acwFjSG5oE4ClZKA==, + } + peerDependencies: + typescript: "*" peerDependenciesMeta: typescript: optional: true - '@storybook/builder-webpack5@7.6.20': - resolution: {integrity: sha512-kUcMZHVo/jybwsje03MFN1ZucdjyH6QB+jlw9dzHrAhM6N1IItwHzhlixvxmseA5OB7jk1b0WcCN8tfD2qByFA==} + "@storybook/builder-webpack5@7.6.20": + resolution: + { + integrity: sha512-kUcMZHVo/jybwsje03MFN1ZucdjyH6QB+jlw9dzHrAhM6N1IItwHzhlixvxmseA5OB7jk1b0WcCN8tfD2qByFA==, + } peerDependencies: - typescript: '*' + typescript: "*" peerDependenciesMeta: typescript: optional: true - '@storybook/channel-postmessage@6.5.16': - resolution: {integrity: sha512-fZZSN29dsUArWOx7e7lTdMA9+7zijVwCwbvi2Fo4fqhRLh1DsTb/VXfz1FKMCWAjNlcX7QQvV25tnxbqsD6lyw==} - - '@storybook/channel-websocket@6.5.16': - resolution: {integrity: sha512-wJg2lpBjmRC2GJFzmhB9kxlh109VE58r/0WhFtLbwKvPqsvGf82xkBEl6BtBCvIQ4stzYnj/XijjA8qSi2zpOg==} - - '@storybook/channels@6.5.16': - resolution: {integrity: sha512-VylzaWQZaMozEwZPJdyJoz+0jpDa8GRyaqu9TGG6QGv+KU5POoZaGLDkRE7TzWkyyP0KQLo80K99MssZCpgSeg==} - - '@storybook/channels@7.5.3': - resolution: {integrity: sha512-dhWuV2o2lmxH0RKuzND8jxYzvSQTSmpE13P0IT/k8+I1up/rSNYOBQJT6SalakcNWXFAMXguo/8E7ApmnKKcEw==} - - '@storybook/channels@7.6.17': - resolution: {integrity: sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==} - - '@storybook/channels@7.6.18': - resolution: {integrity: sha512-ayMJ6GJot81URJySXcwZG1mLacblUVdLgAMIhU7oSW1K1v4KvQPxv3FqjNN+48g/1s+2A9UraCDqN0qzO3wznQ==} - - '@storybook/channels@7.6.20': - resolution: {integrity: sha512-4hkgPSH6bJclB2OvLnkZOGZW1WptJs09mhQ6j6qLjgBZzL/ZdD6priWSd7iXrmPiN5TzUobkG4P4Dp7FjkiO7A==} - - '@storybook/cli@7.6.17': - resolution: {integrity: sha512-1sCo+nCqyR+nKfTcEidVu8XzNoECC7Y1l+uW38/r7s2f/TdDorXaIGAVrpjbSaXSoQpx5DxYJVaKCcQuOgqwcA==} + "@storybook/channel-postmessage@6.5.16": + resolution: + { + integrity: sha512-fZZSN29dsUArWOx7e7lTdMA9+7zijVwCwbvi2Fo4fqhRLh1DsTb/VXfz1FKMCWAjNlcX7QQvV25tnxbqsD6lyw==, + } + + "@storybook/channel-websocket@6.5.16": + resolution: + { + integrity: sha512-wJg2lpBjmRC2GJFzmhB9kxlh109VE58r/0WhFtLbwKvPqsvGf82xkBEl6BtBCvIQ4stzYnj/XijjA8qSi2zpOg==, + } + + "@storybook/channels@6.5.16": + resolution: + { + integrity: sha512-VylzaWQZaMozEwZPJdyJoz+0jpDa8GRyaqu9TGG6QGv+KU5POoZaGLDkRE7TzWkyyP0KQLo80K99MssZCpgSeg==, + } + + "@storybook/channels@7.5.3": + resolution: + { + integrity: sha512-dhWuV2o2lmxH0RKuzND8jxYzvSQTSmpE13P0IT/k8+I1up/rSNYOBQJT6SalakcNWXFAMXguo/8E7ApmnKKcEw==, + } + + "@storybook/channels@7.6.17": + resolution: + { + integrity: sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==, + } + + "@storybook/channels@7.6.18": + resolution: + { + integrity: sha512-ayMJ6GJot81URJySXcwZG1mLacblUVdLgAMIhU7oSW1K1v4KvQPxv3FqjNN+48g/1s+2A9UraCDqN0qzO3wznQ==, + } + + "@storybook/channels@7.6.20": + resolution: + { + integrity: sha512-4hkgPSH6bJclB2OvLnkZOGZW1WptJs09mhQ6j6qLjgBZzL/ZdD6priWSd7iXrmPiN5TzUobkG4P4Dp7FjkiO7A==, + } + + "@storybook/cli@7.6.17": + resolution: + { + integrity: sha512-1sCo+nCqyR+nKfTcEidVu8XzNoECC7Y1l+uW38/r7s2f/TdDorXaIGAVrpjbSaXSoQpx5DxYJVaKCcQuOgqwcA==, + } hasBin: true - '@storybook/cli@7.6.20': - resolution: {integrity: sha512-ZlP+BJyqg7HlnXf7ypjG2CKMI/KVOn03jFIiClItE/jQfgR6kRFgtjRU7uajh427HHfjv9DRiur8nBzuO7vapA==} + "@storybook/cli@7.6.20": + resolution: + { + integrity: sha512-ZlP+BJyqg7HlnXf7ypjG2CKMI/KVOn03jFIiClItE/jQfgR6kRFgtjRU7uajh427HHfjv9DRiur8nBzuO7vapA==, + } hasBin: true - '@storybook/client-api@6.5.16': - resolution: {integrity: sha512-i3UwkzzUFw8I+E6fOcgB5sc4oU2fhvaKnqC1mpd9IYGJ9JN9MnGIaVl3Ko28DtFItu/QabC9JsLIJVripFLktQ==} + "@storybook/client-api@6.5.16": + resolution: + { + integrity: sha512-i3UwkzzUFw8I+E6fOcgB5sc4oU2fhvaKnqC1mpd9IYGJ9JN9MnGIaVl3Ko28DtFItu/QabC9JsLIJVripFLktQ==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/client-logger@6.5.16': - resolution: {integrity: sha512-pxcNaCj3ItDdicPTXTtmYJE3YC1SjxFrBmHcyrN+nffeNyiMuViJdOOZzzzucTUG0wcOOX8jaSyak+nnHg5H1Q==} - - '@storybook/client-logger@7.5.3': - resolution: {integrity: sha512-vUFYALypjix5FoJ5M/XUP6KmyTnQJNW1poHdW7WXUVSg+lBM6E5eAtjTm0hdxNNDH8KSrdy24nCLra5h0X0BWg==} - - '@storybook/client-logger@7.6.17': - resolution: {integrity: sha512-6WBYqixAXNAXlSaBWwgljWpAu10tPRBJrcFvx2gPUne58EeMM20Gi/iHYBz2kMCY+JLAgeIH7ZxInqwO8vDwiQ==} - - '@storybook/client-logger@7.6.18': - resolution: {integrity: sha512-/mSKa968G++M7RTW1XLM0jgNMUATxKv/vggLyQ9Oo2UpQhRaXX8dKRl7GVu2yFDRm9sDKs7rg+KSsstrEjQcSg==} - - '@storybook/client-logger@7.6.20': - resolution: {integrity: sha512-NwG0VIJQCmKrSaN5GBDFyQgTAHLNishUPLW1NrzqTDNAhfZUoef64rPQlinbopa0H4OXmlB+QxbQIb3ubeXmSQ==} - - '@storybook/codemod@7.6.17': - resolution: {integrity: sha512-JuTmf2u3C4fCnjO7o3dqRgrq3ozNYfWlrRP8xuIdvT7niMap7a396hJtSKqS10FxCgKFcMAOsRgrCalH1dWxUg==} - - '@storybook/codemod@7.6.20': - resolution: {integrity: sha512-8vmSsksO4XukNw0TmqylPmk7PxnfNfE21YsxFa7mnEBmEKQcZCQsNil4ZgWfG0IzdhTfhglAN4r++Ew0WE+PYA==} - - '@storybook/components@6.5.16': - resolution: {integrity: sha512-LzBOFJKITLtDcbW9jXl0/PaG+4xAz25PK8JxPZpIALbmOpYWOAPcO6V9C2heX6e6NgWFMUxjplkULEk9RCQMNA==} + "@storybook/client-logger@6.5.16": + resolution: + { + integrity: sha512-pxcNaCj3ItDdicPTXTtmYJE3YC1SjxFrBmHcyrN+nffeNyiMuViJdOOZzzzucTUG0wcOOX8jaSyak+nnHg5H1Q==, + } + + "@storybook/client-logger@7.5.3": + resolution: + { + integrity: sha512-vUFYALypjix5FoJ5M/XUP6KmyTnQJNW1poHdW7WXUVSg+lBM6E5eAtjTm0hdxNNDH8KSrdy24nCLra5h0X0BWg==, + } + + "@storybook/client-logger@7.6.17": + resolution: + { + integrity: sha512-6WBYqixAXNAXlSaBWwgljWpAu10tPRBJrcFvx2gPUne58EeMM20Gi/iHYBz2kMCY+JLAgeIH7ZxInqwO8vDwiQ==, + } + + "@storybook/client-logger@7.6.18": + resolution: + { + integrity: sha512-/mSKa968G++M7RTW1XLM0jgNMUATxKv/vggLyQ9Oo2UpQhRaXX8dKRl7GVu2yFDRm9sDKs7rg+KSsstrEjQcSg==, + } + + "@storybook/client-logger@7.6.20": + resolution: + { + integrity: sha512-NwG0VIJQCmKrSaN5GBDFyQgTAHLNishUPLW1NrzqTDNAhfZUoef64rPQlinbopa0H4OXmlB+QxbQIb3ubeXmSQ==, + } + + "@storybook/codemod@7.6.17": + resolution: + { + integrity: sha512-JuTmf2u3C4fCnjO7o3dqRgrq3ozNYfWlrRP8xuIdvT7niMap7a396hJtSKqS10FxCgKFcMAOsRgrCalH1dWxUg==, + } + + "@storybook/codemod@7.6.20": + resolution: + { + integrity: sha512-8vmSsksO4XukNw0TmqylPmk7PxnfNfE21YsxFa7mnEBmEKQcZCQsNil4ZgWfG0IzdhTfhglAN4r++Ew0WE+PYA==, + } + + "@storybook/components@6.5.16": + resolution: + { + integrity: sha512-LzBOFJKITLtDcbW9jXl0/PaG+4xAz25PK8JxPZpIALbmOpYWOAPcO6V9C2heX6e6NgWFMUxjplkULEk9RCQMNA==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/components@7.6.17': - resolution: {integrity: sha512-lbh7GynMidA+CZcJnstVku6Nhs+YkqjYaZ+mKPugvlVhGVWv0DaaeQFVuZ8cJtUGJ/5FFU4Y+n+gylYUHkGBMA==} + "@storybook/components@7.6.17": + resolution: + { + integrity: sha512-lbh7GynMidA+CZcJnstVku6Nhs+YkqjYaZ+mKPugvlVhGVWv0DaaeQFVuZ8cJtUGJ/5FFU4Y+n+gylYUHkGBMA==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/components@7.6.20': - resolution: {integrity: sha512-0d8u4m558R+W5V+rseF/+e9JnMciADLXTpsILrG+TBhwECk0MctIWW18bkqkujdCm8kDZr5U2iM/5kS1Noy7Ug==} + "@storybook/components@7.6.20": + resolution: + { + integrity: sha512-0d8u4m558R+W5V+rseF/+e9JnMciADLXTpsILrG+TBhwECk0MctIWW18bkqkujdCm8kDZr5U2iM/5kS1Noy7Ug==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/core-client@6.5.16': - resolution: {integrity: sha512-14IRaDrVtKrQ+gNWC0wPwkCNfkZOKghYV/swCUnQX3rP99defsZK8Hc7xHIYoAiOP5+sc3sweRAxgmFiJeQ1Ig==} + "@storybook/core-client@6.5.16": + resolution: + { + integrity: sha512-14IRaDrVtKrQ+gNWC0wPwkCNfkZOKghYV/swCUnQX3rP99defsZK8Hc7xHIYoAiOP5+sc3sweRAxgmFiJeQ1Ig==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' - webpack: '*' + typescript: "*" + webpack: "*" peerDependenciesMeta: typescript: optional: true - '@storybook/core-client@7.6.17': - resolution: {integrity: sha512-LuDbADK+DPNAOOCXOlvY09hdGVueXlDetsdOJ/DgYnSa9QSWv9Uv+F8QcEgR3QckZJbPlztKJIVLgP2n/Xkijw==} - - '@storybook/core-client@7.6.20': - resolution: {integrity: sha512-upQuQQinLmlOPKcT8yqXNtwIucZ4E4qegYZXH5HXRWoLAL6GQtW7sUVSIuFogdki8OXRncr/dz8OA+5yQyYS4w==} - - '@storybook/core-common@7.6.17': - resolution: {integrity: sha512-me2TP3Q9/qzqCLoDHUSsUF+VS1MHxfHbTVF6vAz0D/COTxzsxLpu9TxTbzJoBCxse6XRb6wWI1RgF1mIcjic7g==} - - '@storybook/core-common@7.6.20': - resolution: {integrity: sha512-8H1zPWPjcmeD4HbDm4FDD0WLsfAKGVr566IZ4hG+h3iWVW57II9JW9MLBtiR2LPSd8u7o0kw64lwRGmtCO1qAw==} - - '@storybook/core-events@6.5.16': - resolution: {integrity: sha512-qMZQwmvzpH5F2uwNUllTPg6eZXr2OaYZQRRN8VZJiuorZzDNdAFmiVWMWdkThwmyLEJuQKXxqCL8lMj/7PPM+g==} - - '@storybook/core-events@7.5.3': - resolution: {integrity: sha512-DFOpyQ22JD5C1oeOFzL8wlqSWZzrqgDfDbUGP8xdO4wJu+FVTxnnWN6ZYLdTPB1u27DOhd7TzjQMfLDHLu7kbQ==} - - '@storybook/core-events@7.6.17': - resolution: {integrity: sha512-AriWMCm/k1cxlv10f+jZ1wavThTRpLaN3kY019kHWbYT9XgaSuLU67G7GPr3cGnJ6HuA6uhbzu8qtqVCd6OfXA==} - - '@storybook/core-events@7.6.18': - resolution: {integrity: sha512-K4jrHedFRfokvkIfKfNtQTcguPzeWF3oiuyXQR4gv4bnMCndCoiSRKfCE5zesgGmfml/Krt2zb4nNz/UPLbDeA==} - - '@storybook/core-events@7.6.20': - resolution: {integrity: sha512-tlVDuVbDiNkvPDFAu+0ou3xBBYbx9zUURQz4G9fAq0ScgBOs/bpzcRrFb4mLpemUViBAd47tfZKdH4MAX45KVQ==} - - '@storybook/core-server@7.6.17': - resolution: {integrity: sha512-KWGhTTaL1Q14FolcoKKZgytlPJUbH6sbJ1Ptj/84EYWFewcnEgVs0Zlnh1VStRZg+Rd1WC1V4yVd/bbDzxrvQA==} - - '@storybook/core-server@7.6.20': - resolution: {integrity: sha512-qC5BdbqqwMLTdCwMKZ1Hbc3+3AaxHYWLiJaXL9e8s8nJw89xV8c8l30QpbJOGvcDmsgY6UTtXYaJ96OsTr7MrA==} - - '@storybook/core-webpack@7.6.17': - resolution: {integrity: sha512-PyGrFhRM8sTONGwwLWLqBQ1HO+LBnVZ+5TOQO7ejQfdV2FWyNOzjBXm2e5jL/C6XlqiEhmL5pyHEyDBaQJQ3KA==} - - '@storybook/core-webpack@7.6.20': - resolution: {integrity: sha512-pGYhKQhMYQ76HPL336L5n7eiJGk1sjWFkA+xRRRmQ9q6VUlqtEPuRHjKBQwrrTb1nA33BQX58Be06OtlbsFkjg==} - - '@storybook/csf-plugin@7.6.17': - resolution: {integrity: sha512-xTHv9BUh3bkDVCvcbmdfVF0/e96BdrEgqPJ3G3RmKbSzWLOkQ2U9yiPfHzT0KJWPhVwj12fjfZp0zunu+pcS6Q==} - - '@storybook/csf-plugin@7.6.20': - resolution: {integrity: sha512-dzBzq0dN+8WLDp6NxYS4G7BCe8+vDeDRBRjHmM0xb0uJ6xgQViL8SDplYVSGnk3bXE/1WmtvyRzQyTffBnaj9Q==} - - '@storybook/csf-tools@7.6.17': - resolution: {integrity: sha512-dAQtam0EBPeTJYcQPLxXgz4L9JFqD+HWbLFG9CmNIhMMjticrB0mpk1EFIS6vPXk/VsVWpBgMLD7dZlD6YMKcQ==} - - '@storybook/csf-tools@7.6.20': - resolution: {integrity: sha512-rwcwzCsAYh/m/WYcxBiEtLpIW5OH1ingxNdF/rK9mtGWhJxXRDV8acPkFrF8rtFWIVKoOCXu5USJYmc3f2gdYQ==} - - '@storybook/csf@0.0.1': - resolution: {integrity: sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==} - - '@storybook/csf@0.0.2--canary.4566f4d.1': - resolution: {integrity: sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==} - - '@storybook/csf@0.1.3': - resolution: {integrity: sha512-IPZvXXo4b3G+gpmgBSBqVM81jbp2ePOKsvhgJdhyZJtkYQCII7rg9KKLQhvBQM5sLaF1eU6r0iuwmyynC9d9SA==} - - '@storybook/docs-mdx@0.1.0': - resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==} - - '@storybook/docs-tools@7.6.17': - resolution: {integrity: sha512-bYrLoj06adqklyLkEwD32C0Ww6t+9ZVvrJHiVT42bIhTRpFiFPAetl1a9KPHtFLnfduh4n2IxIr1jv32ThPDTA==} - - '@storybook/docs-tools@7.6.20': - resolution: {integrity: sha512-Bw2CcCKQ5xGLQgtexQsI1EGT6y5epoFzOINi0FSTGJ9Wm738nRp5LH3dLk1GZLlywIXcYwOEThb2pM+pZeRQxQ==} - - '@storybook/global@5.0.0': - resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} - - '@storybook/manager-api@7.5.3': - resolution: {integrity: sha512-d8mVLr/5BEG4bAS2ZeqYTy/aX4jPEpZHdcLaWoB4mAM+PAL9wcWsirUyApKtDVYLITJf/hd8bb2Dm2ok6E45gA==} + "@storybook/core-client@7.6.17": + resolution: + { + integrity: sha512-LuDbADK+DPNAOOCXOlvY09hdGVueXlDetsdOJ/DgYnSa9QSWv9Uv+F8QcEgR3QckZJbPlztKJIVLgP2n/Xkijw==, + } + + "@storybook/core-client@7.6.20": + resolution: + { + integrity: sha512-upQuQQinLmlOPKcT8yqXNtwIucZ4E4qegYZXH5HXRWoLAL6GQtW7sUVSIuFogdki8OXRncr/dz8OA+5yQyYS4w==, + } + + "@storybook/core-common@7.6.17": + resolution: + { + integrity: sha512-me2TP3Q9/qzqCLoDHUSsUF+VS1MHxfHbTVF6vAz0D/COTxzsxLpu9TxTbzJoBCxse6XRb6wWI1RgF1mIcjic7g==, + } + + "@storybook/core-common@7.6.20": + resolution: + { + integrity: sha512-8H1zPWPjcmeD4HbDm4FDD0WLsfAKGVr566IZ4hG+h3iWVW57II9JW9MLBtiR2LPSd8u7o0kw64lwRGmtCO1qAw==, + } + + "@storybook/core-events@6.5.16": + resolution: + { + integrity: sha512-qMZQwmvzpH5F2uwNUllTPg6eZXr2OaYZQRRN8VZJiuorZzDNdAFmiVWMWdkThwmyLEJuQKXxqCL8lMj/7PPM+g==, + } + + "@storybook/core-events@7.5.3": + resolution: + { + integrity: sha512-DFOpyQ22JD5C1oeOFzL8wlqSWZzrqgDfDbUGP8xdO4wJu+FVTxnnWN6ZYLdTPB1u27DOhd7TzjQMfLDHLu7kbQ==, + } + + "@storybook/core-events@7.6.17": + resolution: + { + integrity: sha512-AriWMCm/k1cxlv10f+jZ1wavThTRpLaN3kY019kHWbYT9XgaSuLU67G7GPr3cGnJ6HuA6uhbzu8qtqVCd6OfXA==, + } + + "@storybook/core-events@7.6.18": + resolution: + { + integrity: sha512-K4jrHedFRfokvkIfKfNtQTcguPzeWF3oiuyXQR4gv4bnMCndCoiSRKfCE5zesgGmfml/Krt2zb4nNz/UPLbDeA==, + } + + "@storybook/core-events@7.6.20": + resolution: + { + integrity: sha512-tlVDuVbDiNkvPDFAu+0ou3xBBYbx9zUURQz4G9fAq0ScgBOs/bpzcRrFb4mLpemUViBAd47tfZKdH4MAX45KVQ==, + } + + "@storybook/core-server@7.6.17": + resolution: + { + integrity: sha512-KWGhTTaL1Q14FolcoKKZgytlPJUbH6sbJ1Ptj/84EYWFewcnEgVs0Zlnh1VStRZg+Rd1WC1V4yVd/bbDzxrvQA==, + } + + "@storybook/core-server@7.6.20": + resolution: + { + integrity: sha512-qC5BdbqqwMLTdCwMKZ1Hbc3+3AaxHYWLiJaXL9e8s8nJw89xV8c8l30QpbJOGvcDmsgY6UTtXYaJ96OsTr7MrA==, + } + + "@storybook/core-webpack@7.6.17": + resolution: + { + integrity: sha512-PyGrFhRM8sTONGwwLWLqBQ1HO+LBnVZ+5TOQO7ejQfdV2FWyNOzjBXm2e5jL/C6XlqiEhmL5pyHEyDBaQJQ3KA==, + } + + "@storybook/core-webpack@7.6.20": + resolution: + { + integrity: sha512-pGYhKQhMYQ76HPL336L5n7eiJGk1sjWFkA+xRRRmQ9q6VUlqtEPuRHjKBQwrrTb1nA33BQX58Be06OtlbsFkjg==, + } + + "@storybook/csf-plugin@7.6.17": + resolution: + { + integrity: sha512-xTHv9BUh3bkDVCvcbmdfVF0/e96BdrEgqPJ3G3RmKbSzWLOkQ2U9yiPfHzT0KJWPhVwj12fjfZp0zunu+pcS6Q==, + } + + "@storybook/csf-plugin@7.6.20": + resolution: + { + integrity: sha512-dzBzq0dN+8WLDp6NxYS4G7BCe8+vDeDRBRjHmM0xb0uJ6xgQViL8SDplYVSGnk3bXE/1WmtvyRzQyTffBnaj9Q==, + } + + "@storybook/csf-tools@7.6.17": + resolution: + { + integrity: sha512-dAQtam0EBPeTJYcQPLxXgz4L9JFqD+HWbLFG9CmNIhMMjticrB0mpk1EFIS6vPXk/VsVWpBgMLD7dZlD6YMKcQ==, + } + + "@storybook/csf-tools@7.6.20": + resolution: + { + integrity: sha512-rwcwzCsAYh/m/WYcxBiEtLpIW5OH1ingxNdF/rK9mtGWhJxXRDV8acPkFrF8rtFWIVKoOCXu5USJYmc3f2gdYQ==, + } + + "@storybook/csf@0.0.1": + resolution: + { + integrity: sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==, + } + + "@storybook/csf@0.0.2--canary.4566f4d.1": + resolution: + { + integrity: sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==, + } + + "@storybook/csf@0.1.3": + resolution: + { + integrity: sha512-IPZvXXo4b3G+gpmgBSBqVM81jbp2ePOKsvhgJdhyZJtkYQCII7rg9KKLQhvBQM5sLaF1eU6r0iuwmyynC9d9SA==, + } + + "@storybook/docs-mdx@0.1.0": + resolution: + { + integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==, + } + + "@storybook/docs-tools@7.6.17": + resolution: + { + integrity: sha512-bYrLoj06adqklyLkEwD32C0Ww6t+9ZVvrJHiVT42bIhTRpFiFPAetl1a9KPHtFLnfduh4n2IxIr1jv32ThPDTA==, + } + + "@storybook/docs-tools@7.6.20": + resolution: + { + integrity: sha512-Bw2CcCKQ5xGLQgtexQsI1EGT6y5epoFzOINi0FSTGJ9Wm738nRp5LH3dLk1GZLlywIXcYwOEThb2pM+pZeRQxQ==, + } + + "@storybook/global@5.0.0": + resolution: + { + integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==, + } + + "@storybook/manager-api@7.5.3": + resolution: + { + integrity: sha512-d8mVLr/5BEG4bAS2ZeqYTy/aX4jPEpZHdcLaWoB4mAM+PAL9wcWsirUyApKtDVYLITJf/hd8bb2Dm2ok6E45gA==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/manager-api@7.6.17': - resolution: {integrity: sha512-IJIV1Yc6yw1dhCY4tReHCfBnUKDqEBnMyHp3mbXpsaHxnxJZrXO45WjRAZIKlQKhl/Ge1CrnznmHRCmYgqmrWg==} - - '@storybook/manager-api@7.6.18': - resolution: {integrity: sha512-4c2japUMjnHiel38wQoNWh5RVac6ATMcWxvzPhOKx3I19gbSoUF1CcDg+1piRMWuSyzUBIBlIrBB3s4/02gnnA==} - - '@storybook/manager-api@7.6.20': - resolution: {integrity: sha512-gOB3m8hO3gBs9cBoN57T7jU0wNKDh+hi06gLcyd2awARQlAlywnLnr3s1WH5knih6Aq+OpvGBRVKkGLOkaouCQ==} - - '@storybook/manager@7.6.17': - resolution: {integrity: sha512-A1LDDIqMpwRzq/dqkbbiza0QI04o4ZHCl2a3UMDZUV/+QLc2nsr2DAaLk4CVL4/cIc5zGqmIcaOTvprx2YKVBw==} - - '@storybook/manager@7.6.20': - resolution: {integrity: sha512-0Cf6WN0t7yEG2DR29tN5j+i7H/TH5EfPppg9h9/KiQSoFHk+6KLoy2p5do94acFU+Ro4+zzxvdCGbcYGKuArpg==} - - '@storybook/mdx2-csf@1.1.0': - resolution: {integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==} - - '@storybook/node-logger@7.6.17': - resolution: {integrity: sha512-w59MQuXhhUNrUVmVkXhMwIg2nvFWjdDczLTwYLorhfsE36CWeUOY5QCZWQy0Qf/h+jz8Uo7Evy64qn18v9C4wA==} - - '@storybook/node-logger@7.6.20': - resolution: {integrity: sha512-l2i4qF1bscJkOplNffcRTsgQWYR7J51ewmizj5YrTM8BK6rslWT1RntgVJWB1RgPqvx6VsCz1gyP3yW1oKxvYw==} - - '@storybook/postinstall@7.6.17': - resolution: {integrity: sha512-WaWqB8o9vUc9aaVls+povQSVirf1Xd1LZcVhUKfAocAF3mzYUsnJsVqvnbjRj/F96UFVihOyDt9Zjl/9OvrCvQ==} - - '@storybook/postinstall@7.6.20': - resolution: {integrity: sha512-AN4WPeNma2xC2/K/wP3I/GMbBUyeSGD3+86ZFFJFO1QmE/Zea6E+1aVlTd1iKHQUcNkZ9bZTrqkhPGVYx10pIw==} - - '@storybook/preset-react-webpack@7.6.17': - resolution: {integrity: sha512-gn/LvIbll9loOkzwbFlxzOZGmJ6t1vF2/gfi+p/N/AifDYe8+LVM1QV4KRVKt6UEJwsQd79lKf7vPH92AQaKKQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@babel/core': ^7.22.0 + "@storybook/manager-api@7.6.17": + resolution: + { + integrity: sha512-IJIV1Yc6yw1dhCY4tReHCfBnUKDqEBnMyHp3mbXpsaHxnxJZrXO45WjRAZIKlQKhl/Ge1CrnznmHRCmYgqmrWg==, + } + + "@storybook/manager-api@7.6.18": + resolution: + { + integrity: sha512-4c2japUMjnHiel38wQoNWh5RVac6ATMcWxvzPhOKx3I19gbSoUF1CcDg+1piRMWuSyzUBIBlIrBB3s4/02gnnA==, + } + + "@storybook/manager-api@7.6.20": + resolution: + { + integrity: sha512-gOB3m8hO3gBs9cBoN57T7jU0wNKDh+hi06gLcyd2awARQlAlywnLnr3s1WH5knih6Aq+OpvGBRVKkGLOkaouCQ==, + } + + "@storybook/manager@7.6.17": + resolution: + { + integrity: sha512-A1LDDIqMpwRzq/dqkbbiza0QI04o4ZHCl2a3UMDZUV/+QLc2nsr2DAaLk4CVL4/cIc5zGqmIcaOTvprx2YKVBw==, + } + + "@storybook/manager@7.6.20": + resolution: + { + integrity: sha512-0Cf6WN0t7yEG2DR29tN5j+i7H/TH5EfPppg9h9/KiQSoFHk+6KLoy2p5do94acFU+Ro4+zzxvdCGbcYGKuArpg==, + } + + "@storybook/mdx2-csf@1.1.0": + resolution: + { + integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==, + } + + "@storybook/node-logger@7.6.17": + resolution: + { + integrity: sha512-w59MQuXhhUNrUVmVkXhMwIg2nvFWjdDczLTwYLorhfsE36CWeUOY5QCZWQy0Qf/h+jz8Uo7Evy64qn18v9C4wA==, + } + + "@storybook/node-logger@7.6.20": + resolution: + { + integrity: sha512-l2i4qF1bscJkOplNffcRTsgQWYR7J51ewmizj5YrTM8BK6rslWT1RntgVJWB1RgPqvx6VsCz1gyP3yW1oKxvYw==, + } + + "@storybook/postinstall@7.6.17": + resolution: + { + integrity: sha512-WaWqB8o9vUc9aaVls+povQSVirf1Xd1LZcVhUKfAocAF3mzYUsnJsVqvnbjRj/F96UFVihOyDt9Zjl/9OvrCvQ==, + } + + "@storybook/postinstall@7.6.20": + resolution: + { + integrity: sha512-AN4WPeNma2xC2/K/wP3I/GMbBUyeSGD3+86ZFFJFO1QmE/Zea6E+1aVlTd1iKHQUcNkZ9bZTrqkhPGVYx10pIw==, + } + + "@storybook/preset-react-webpack@7.6.17": + resolution: + { + integrity: sha512-gn/LvIbll9loOkzwbFlxzOZGmJ6t1vF2/gfi+p/N/AifDYe8+LVM1QV4KRVKt6UEJwsQd79lKf7vPH92AQaKKQ==, + } + engines: { node: ">=16.0.0" } + peerDependencies: + "@babel/core": ^7.22.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' + typescript: "*" peerDependenciesMeta: - '@babel/core': + "@babel/core": optional: true typescript: optional: true - '@storybook/preset-react-webpack@7.6.20': - resolution: {integrity: sha512-z5/NF+HI9zN/ONocNyxQwewaG5G/1ChCeWfi5m5E1mwKQxxJbFUgE8oiAFhe90A1R7lAEsGFKd8WxdefY2JvEg==} - engines: {node: '>=16.0.0'} + "@storybook/preset-react-webpack@7.6.20": + resolution: + { + integrity: sha512-z5/NF+HI9zN/ONocNyxQwewaG5G/1ChCeWfi5m5E1mwKQxxJbFUgE8oiAFhe90A1R7lAEsGFKd8WxdefY2JvEg==, + } + engines: { node: ">=16.0.0" } peerDependencies: - '@babel/core': ^7.22.0 + "@babel/core": ^7.22.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' + typescript: "*" peerDependenciesMeta: - '@babel/core': + "@babel/core": optional: true typescript: optional: true - '@storybook/preview-api@7.6.17': - resolution: {integrity: sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==} + "@storybook/preview-api@7.6.17": + resolution: + { + integrity: sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==, + } - '@storybook/preview-api@7.6.20': - resolution: {integrity: sha512-3ic2m9LDZEPwZk02wIhNc3n3rNvbi7VDKn52hDXfAxnL5EYm7yDICAkaWcVaTfblru2zn0EDJt7ROpthscTW5w==} + "@storybook/preview-api@7.6.20": + resolution: + { + integrity: sha512-3ic2m9LDZEPwZk02wIhNc3n3rNvbi7VDKn52hDXfAxnL5EYm7yDICAkaWcVaTfblru2zn0EDJt7ROpthscTW5w==, + } - '@storybook/preview-web@6.5.16': - resolution: {integrity: sha512-IJnvfe2sKCfk7apN9Fu9U8qibbarrPX5JB55ZzK1amSHVmSDuYk5MIMc/U3NnSQNnvd1DO5v/zMcGgj563hrtg==} + "@storybook/preview-web@6.5.16": + resolution: + { + integrity: sha512-IJnvfe2sKCfk7apN9Fu9U8qibbarrPX5JB55ZzK1amSHVmSDuYk5MIMc/U3NnSQNnvd1DO5v/zMcGgj563hrtg==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/preview@7.6.17': - resolution: {integrity: sha512-LvkMYK/y6alGjwRVNDIKL1lFlbyZ0H0c8iAbcQkiMoaFiujMQyVswMDKlWcj42Upfr/B1igydiruomc+eUt0mw==} - - '@storybook/preview@7.6.20': - resolution: {integrity: sha512-cxYlZ5uKbCYMHoFpgleZqqGWEnqHrk5m5fT8bYSsDsdQ+X5wPcwI/V+v8dxYAdQcMphZVIlTjo6Dno9WG8qmVA==} - - '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0': - resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==} - peerDependencies: - typescript: '>= 4.x' - webpack: '>= 4' - - '@storybook/react-dom-shim@7.6.17': - resolution: {integrity: sha512-32Sa/G+WnvaPiQ1Wvjjw5UM9rr2c4GDohwCcWVv3/LJuiFPqNS6zglAtmnsrlIBnUwRBMLMh/ekCTdqMiUmfDw==} + "@storybook/preview@7.6.17": + resolution: + { + integrity: sha512-LvkMYK/y6alGjwRVNDIKL1lFlbyZ0H0c8iAbcQkiMoaFiujMQyVswMDKlWcj42Upfr/B1igydiruomc+eUt0mw==, + } + + "@storybook/preview@7.6.20": + resolution: + { + integrity: sha512-cxYlZ5uKbCYMHoFpgleZqqGWEnqHrk5m5fT8bYSsDsdQ+X5wPcwI/V+v8dxYAdQcMphZVIlTjo6Dno9WG8qmVA==, + } + + "@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0": + resolution: + { + integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==, + } + peerDependencies: + typescript: ">= 4.x" + webpack: ">= 4" + + "@storybook/react-dom-shim@7.6.17": + resolution: + { + integrity: sha512-32Sa/G+WnvaPiQ1Wvjjw5UM9rr2c4GDohwCcWVv3/LJuiFPqNS6zglAtmnsrlIBnUwRBMLMh/ekCTdqMiUmfDw==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/react-dom-shim@7.6.20': - resolution: {integrity: sha512-SRvPDr9VWcS24ByQOVmbfZ655y5LvjXRlsF1I6Pr9YZybLfYbu3L5IicfEHT4A8lMdghzgbPFVQaJez46DTrkg==} + "@storybook/react-dom-shim@7.6.20": + resolution: + { + integrity: sha512-SRvPDr9VWcS24ByQOVmbfZ655y5LvjXRlsF1I6Pr9YZybLfYbu3L5IicfEHT4A8lMdghzgbPFVQaJez46DTrkg==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/react-native-theming@6.5.7': - resolution: {integrity: sha512-wvNQvpmSFwnuH4VSLKlS4z/YFiRf+CuCMpxnRWrnrbXtah8HtsWzP2sYNrtGadhneA/jS0zkHXPCsDx/lIjw9A==} - peerDependencies: - react: '*' - react-native: '>=0.57.0' - - '@storybook/react-native@6.5.7': - resolution: {integrity: sha512-6uB/Yc2gkOGz4Amf2hikjy4L7HnWIVfOqoADE4PpIMZzRCnm6+gTaUXsuTOHr3gZ5NFH1bN1YXjpSly2d4I0Kw==} - engines: {node: '>=8.0.0'} + "@storybook/react-native-theming@6.5.7": + resolution: + { + integrity: sha512-wvNQvpmSFwnuH4VSLKlS4z/YFiRf+CuCMpxnRWrnrbXtah8HtsWzP2sYNrtGadhneA/jS0zkHXPCsDx/lIjw9A==, + } + peerDependencies: + react: "*" + react-native: ">=0.57.0" + + "@storybook/react-native@6.5.7": + resolution: + { + integrity: sha512-6uB/Yc2gkOGz4Amf2hikjy4L7HnWIVfOqoADE4PpIMZzRCnm6+gTaUXsuTOHr3gZ5NFH1bN1YXjpSly2d4I0Kw==, + } + engines: { node: ">=8.0.0" } hasBin: true peerDependencies: - '@react-native-async-storage/async-storage': '>=1' - react: '*' - react-native: '>=0.57.0' - react-native-safe-area-context: '*' + "@react-native-async-storage/async-storage": ">=1" + react: "*" + react-native: ">=0.57.0" + react-native-safe-area-context: "*" - '@storybook/react-webpack5@7.6.17': - resolution: {integrity: sha512-qGc2JxaSmvPXV7ndxA/8qPtPLK7lAwejL/QdrzLXhxEmVdZLMew640FBYgOV/zWnehV3BnivThln/8PsQyst/g==} - engines: {node: '>=16.0.0'} + "@storybook/react-webpack5@7.6.17": + resolution: + { + integrity: sha512-qGc2JxaSmvPXV7ndxA/8qPtPLK7lAwejL/QdrzLXhxEmVdZLMew640FBYgOV/zWnehV3BnivThln/8PsQyst/g==, + } + engines: { node: ">=16.0.0" } peerDependencies: - '@babel/core': ^7.22.0 + "@babel/core": ^7.22.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' + typescript: "*" peerDependenciesMeta: - '@babel/core': + "@babel/core": optional: true typescript: optional: true - '@storybook/react-webpack5@7.6.20': - resolution: {integrity: sha512-xaLtadKczfUdpyPMk/e49qGnRpjMDtTwFq4RqkS7q+Z+EO72kTCUPGtK3jJXyv70pp/qbzM5OfjFLjXjMezvYw==} - engines: {node: '>=16.0.0'} + "@storybook/react-webpack5@7.6.20": + resolution: + { + integrity: sha512-xaLtadKczfUdpyPMk/e49qGnRpjMDtTwFq4RqkS7q+Z+EO72kTCUPGtK3jJXyv70pp/qbzM5OfjFLjXjMezvYw==, + } + engines: { node: ">=16.0.0" } peerDependencies: - '@babel/core': ^7.22.0 + "@babel/core": ^7.22.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' + typescript: "*" peerDependenciesMeta: - '@babel/core': + "@babel/core": optional: true typescript: optional: true - '@storybook/react@7.6.17': - resolution: {integrity: sha512-lVqzQSU03rRJWYW+gK2gq6mSo3/qtnVICY8B8oP7gc36jVu4ksDIu45bTfukM618ODkUZy0vZe6T4engK3azjA==} - engines: {node: '>=16.0.0'} + "@storybook/react@7.6.17": + resolution: + { + integrity: sha512-lVqzQSU03rRJWYW+gK2gq6mSo3/qtnVICY8B8oP7gc36jVu4ksDIu45bTfukM618ODkUZy0vZe6T4engK3azjA==, + } + engines: { node: ">=16.0.0" } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' + typescript: "*" peerDependenciesMeta: typescript: optional: true - '@storybook/react@7.6.20': - resolution: {integrity: sha512-i5tKNgUbTNwlqBWGwPveDhh9ktlS0wGtd97A1ZgKZc3vckLizunlAFc7PRC1O/CMq5PTyxbuUb4RvRD2jWKwDA==} - engines: {node: '>=16.0.0'} + "@storybook/react@7.6.20": + resolution: + { + integrity: sha512-i5tKNgUbTNwlqBWGwPveDhh9ktlS0wGtd97A1ZgKZc3vckLizunlAFc7PRC1O/CMq5PTyxbuUb4RvRD2jWKwDA==, + } + engines: { node: ">=16.0.0" } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: '*' + typescript: "*" peerDependenciesMeta: typescript: optional: true - '@storybook/router@6.5.16': - resolution: {integrity: sha512-ZgeP8a5YV/iuKbv31V8DjPxlV4AzorRiR8OuSt/KqaiYXNXlOoQDz/qMmiNcrshrfLpmkzoq7fSo4T8lWo2UwQ==} + "@storybook/router@6.5.16": + resolution: + { + integrity: sha512-ZgeP8a5YV/iuKbv31V8DjPxlV4AzorRiR8OuSt/KqaiYXNXlOoQDz/qMmiNcrshrfLpmkzoq7fSo4T8lWo2UwQ==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/router@7.5.3': - resolution: {integrity: sha512-/iNYCFore7R5n6eFHbBYoB0P2/sybTVpA+uXTNUd3UEt7Ro6CEslTaFTEiH2RVQwOkceBp/NpyWon74xZuXhMg==} + "@storybook/router@7.5.3": + resolution: + { + integrity: sha512-/iNYCFore7R5n6eFHbBYoB0P2/sybTVpA+uXTNUd3UEt7Ro6CEslTaFTEiH2RVQwOkceBp/NpyWon74xZuXhMg==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/router@7.6.17': - resolution: {integrity: sha512-GnyC0j6Wi5hT4qRhSyT8NPtJfGmf82uZw97LQRWeyYu5gWEshUdM7aj40XlNiScd5cZDp0owO1idduVF2k2l2A==} - - '@storybook/router@7.6.18': - resolution: {integrity: sha512-Kw6nAPWRAFE9DM//pnyjL7Xnxt+yQIONdERDnPrdEmHG5mErXGtO18aFMsb/7GiAD50J/i5ObTp7FJsWffAnbg==} - - '@storybook/router@7.6.20': - resolution: {integrity: sha512-mCzsWe6GrH47Xb1++foL98Zdek7uM5GhaSlrI7blWVohGa0qIUYbfJngqR4ZsrXmJeeEvqowobh+jlxg3IJh+w==} - - '@storybook/semver@7.3.2': - resolution: {integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==} - engines: {node: '>=10'} + "@storybook/router@7.6.17": + resolution: + { + integrity: sha512-GnyC0j6Wi5hT4qRhSyT8NPtJfGmf82uZw97LQRWeyYu5gWEshUdM7aj40XlNiScd5cZDp0owO1idduVF2k2l2A==, + } + + "@storybook/router@7.6.18": + resolution: + { + integrity: sha512-Kw6nAPWRAFE9DM//pnyjL7Xnxt+yQIONdERDnPrdEmHG5mErXGtO18aFMsb/7GiAD50J/i5ObTp7FJsWffAnbg==, + } + + "@storybook/router@7.6.20": + resolution: + { + integrity: sha512-mCzsWe6GrH47Xb1++foL98Zdek7uM5GhaSlrI7blWVohGa0qIUYbfJngqR4ZsrXmJeeEvqowobh+jlxg3IJh+w==, + } + + "@storybook/semver@7.3.2": + resolution: + { + integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==, + } + engines: { node: ">=10" } hasBin: true - '@storybook/store@6.5.16': - resolution: {integrity: sha512-g+bVL5hmMq/9cM51K04e37OviUPHT0rHHrRm5wj/hrf18Kd9120b3sxdQ5Dc+HZ292yuME0n+cyrQPTYx9Epmw==} + "@storybook/store@6.5.16": + resolution: + { + integrity: sha512-g+bVL5hmMq/9cM51K04e37OviUPHT0rHHrRm5wj/hrf18Kd9120b3sxdQ5Dc+HZ292yuME0n+cyrQPTYx9Epmw==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/telemetry@7.6.17': - resolution: {integrity: sha512-WOcOAmmengYnGInH98Px44F47DSpLyk20BM+Z/IIQDzfttGOLlxNqBBG1XTEhNRn+AYuk4aZ2JEed2lCjVIxcA==} + "@storybook/telemetry@7.6.17": + resolution: + { + integrity: sha512-WOcOAmmengYnGInH98Px44F47DSpLyk20BM+Z/IIQDzfttGOLlxNqBBG1XTEhNRn+AYuk4aZ2JEed2lCjVIxcA==, + } - '@storybook/telemetry@7.6.20': - resolution: {integrity: sha512-dmAOCWmOscYN6aMbhCMmszQjoycg7tUPRVy2kTaWg6qX10wtMrvEtBV29W4eMvqdsoRj5kcvoNbzRdYcWBUOHQ==} + "@storybook/telemetry@7.6.20": + resolution: + { + integrity: sha512-dmAOCWmOscYN6aMbhCMmszQjoycg7tUPRVy2kTaWg6qX10wtMrvEtBV29W4eMvqdsoRj5kcvoNbzRdYcWBUOHQ==, + } - '@storybook/theming@6.5.16': - resolution: {integrity: sha512-hNLctkjaYLRdk1+xYTkC1mg4dYz2wSv6SqbLpcKMbkPHTE0ElhddGPHQqB362md/w9emYXNkt1LSMD8Xk9JzVQ==} + "@storybook/theming@6.5.16": + resolution: + { + integrity: sha512-hNLctkjaYLRdk1+xYTkC1mg4dYz2wSv6SqbLpcKMbkPHTE0ElhddGPHQqB362md/w9emYXNkt1LSMD8Xk9JzVQ==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/theming@7.5.3': - resolution: {integrity: sha512-Cjmthe1MAk0z4RKCZ7m72gAD8YD0zTAH97z5ryM1Qv84QXjiCQ143fGOmYz1xEQdNFpOThPcwW6FEccLHTkVcg==} + "@storybook/theming@7.5.3": + resolution: + { + integrity: sha512-Cjmthe1MAk0z4RKCZ7m72gAD8YD0zTAH97z5ryM1Qv84QXjiCQ143fGOmYz1xEQdNFpOThPcwW6FEccLHTkVcg==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/theming@7.6.17': - resolution: {integrity: sha512-ZbaBt3KAbmBtfjNqgMY7wPMBshhSJlhodyMNQypv+95xLD/R+Az6aBYbpVAOygLaUQaQk4ar7H/Ww6lFIoiFbA==} + "@storybook/theming@7.6.17": + resolution: + { + integrity: sha512-ZbaBt3KAbmBtfjNqgMY7wPMBshhSJlhodyMNQypv+95xLD/R+Az6aBYbpVAOygLaUQaQk4ar7H/Ww6lFIoiFbA==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/theming@7.6.18': - resolution: {integrity: sha512-5nwqV/rAVzS8wZ6DbsX5/ugDLV189hn2m3K9JlJmhVW9b2mSDYW5i1cTjpoChh1t9gMZl82VPnEhgPRMx5bXgw==} + "@storybook/theming@7.6.18": + resolution: + { + integrity: sha512-5nwqV/rAVzS8wZ6DbsX5/ugDLV189hn2m3K9JlJmhVW9b2mSDYW5i1cTjpoChh1t9gMZl82VPnEhgPRMx5bXgw==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/theming@7.6.20': - resolution: {integrity: sha512-iT1pXHkSkd35JsCte6Qbanmprx5flkqtSHC6Gi6Umqoxlg9IjiLPmpHbaIXzoC06DSW93hPj5Zbi1lPlTvRC7Q==} + "@storybook/theming@7.6.20": + resolution: + { + integrity: sha512-iT1pXHkSkd35JsCte6Qbanmprx5flkqtSHC6Gi6Umqoxlg9IjiLPmpHbaIXzoC06DSW93hPj5Zbi1lPlTvRC7Q==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@storybook/types@7.5.3': - resolution: {integrity: sha512-iu5W0Kdd6nysN5CPkY4GRl+0BpxRTdSfBIJak7mb6xCIHSB5t1tw4BOuqMQ5EgpikRY3MWJ4gY647QkWBX3MNQ==} - - '@storybook/types@7.6.17': - resolution: {integrity: sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==} - - '@storybook/types@7.6.18': - resolution: {integrity: sha512-W7/8kUtMhEopZhwXFMOKlXwQCrz0PBJ5wQwmJNZ4i0YPTVfFzb+/6pgpkzUNtbXiTp6dfxi3ERoAF9wz9Zyt7w==} - - '@storybook/types@7.6.20': - resolution: {integrity: sha512-GncdY3x0LpbhmUAAJwXYtJDUQEwfF175gsjH0/fxPkxPoV7Sef9TM41jQLJW/5+6TnZoCZP/+aJZTJtq3ni23Q==} - - '@storybook/ui@6.5.16': - resolution: {integrity: sha512-rHn/n12WM8BaXtZ3IApNZCiS+C4Oc5+Lkl4MoctX8V7QSml0SxZBB5hsJ/AiWkgbRxjQpa/L/Nt7/Qw0FjTH/A==} + "@storybook/types@7.5.3": + resolution: + { + integrity: sha512-iu5W0Kdd6nysN5CPkY4GRl+0BpxRTdSfBIJak7mb6xCIHSB5t1tw4BOuqMQ5EgpikRY3MWJ4gY647QkWBX3MNQ==, + } + + "@storybook/types@7.6.17": + resolution: + { + integrity: sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==, + } + + "@storybook/types@7.6.18": + resolution: + { + integrity: sha512-W7/8kUtMhEopZhwXFMOKlXwQCrz0PBJ5wQwmJNZ4i0YPTVfFzb+/6pgpkzUNtbXiTp6dfxi3ERoAF9wz9Zyt7w==, + } + + "@storybook/types@7.6.20": + resolution: + { + integrity: sha512-GncdY3x0LpbhmUAAJwXYtJDUQEwfF175gsjH0/fxPkxPoV7Sef9TM41jQLJW/5+6TnZoCZP/+aJZTJtq3ni23Q==, + } + + "@storybook/ui@6.5.16": + resolution: + { + integrity: sha512-rHn/n12WM8BaXtZ3IApNZCiS+C4Oc5+Lkl4MoctX8V7QSml0SxZBB5hsJ/AiWkgbRxjQpa/L/Nt7/Qw0FjTH/A==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@stricahq/bip32ed25519@1.0.4': - resolution: {integrity: sha512-b+4+aTRF9QY19auN4oBmZxv/7lJIBPBfAIU9wOTzc9Wxb0ifWpVcM4qt+qZuRNlMQofSlSa6lUet6CwaNyDEuA==} - - '@stricahq/cbors@1.0.2': - resolution: {integrity: sha512-6ePsEiq7EGHA5IiPn9poA7sF5iXPqt30kKw3pjR/BhP7S+XHZNu/OPumESWnVl4AM+IEYC2x9eL+4qRPsTPVww==} - - '@stricahq/typhonjs@2.0.0': - resolution: {integrity: sha512-4EdoVAht+hKDaBT1m0qCBQsi5unP9ghM4eUUKGcQcQQiEUZGsP8CgxcGuQbsXL1/LU5wNKoBnxWXUiylZD9uRQ==} - - '@styled-system/background@5.1.2': - resolution: {integrity: sha512-jtwH2C/U6ssuGSvwTN3ri/IyjdHb8W9X/g8Y0JLcrH02G+BW3OS8kZdHphF1/YyRklnrKrBT2ngwGUK6aqqV3A==} - - '@styled-system/border@5.1.5': - resolution: {integrity: sha512-JvddhNrnhGigtzWRCVuAHepniyVi6hBlimxWDVAdcTuk7aRn9BYJUwfHslURtwYFsF5FoEs8Zmr1oZq2M1AP0A==} - - '@styled-system/color@5.1.2': - resolution: {integrity: sha512-1kCkeKDZkt4GYkuFNKc7vJQMcOmTl3bJY3YBUs7fCNM6mMYJeT1pViQ2LwBSBJytj3AB0o4IdLBoepgSgGl5MA==} - - '@styled-system/core@5.1.2': - resolution: {integrity: sha512-XclBDdNIy7OPOsN4HBsawG2eiWfCcuFt6gxKn1x4QfMIgeO6TOlA2pZZ5GWZtIhCUqEPTgIBta6JXsGyCkLBYw==} - - '@styled-system/css@5.1.5': - resolution: {integrity: sha512-XkORZdS5kypzcBotAMPBoeckDs9aSZVkvrAlq5K3xP8IMAUek+x2O4NtwoSgkYkWWzVBu6DGdFZLR790QWGG+A==} - - '@styled-system/flexbox@5.1.2': - resolution: {integrity: sha512-6hHV52+eUk654Y1J2v77B8iLeBNtc+SA3R4necsu2VVinSD7+XY5PCCEzBFaWs42dtOEDIa2lMrgL0YBC01mDQ==} - - '@styled-system/grid@5.1.2': - resolution: {integrity: sha512-K3YiV1KyHHzgdNuNlaw8oW2ktMuGga99o1e/NAfTEi5Zsa7JXxzwEnVSDSBdJC+z6R8WYTCYRQC6bkVFcvdTeg==} - - '@styled-system/layout@5.1.2': - resolution: {integrity: sha512-wUhkMBqSeacPFhoE9S6UF3fsMEKFv91gF4AdDWp0Aym1yeMPpqz9l9qS/6vjSsDPF7zOb5cOKC3tcKKOMuDCPw==} - - '@styled-system/position@5.1.2': - resolution: {integrity: sha512-60IZfMXEOOZe3l1mCu6sj/2NAyUmES2kR9Kzp7s2D3P4qKsZWxD1Se1+wJvevb+1TP+ZMkGPEYYXRyU8M1aF5A==} - - '@styled-system/shadow@5.1.2': - resolution: {integrity: sha512-wqniqYb7XuZM7K7C0d1Euxc4eGtqEe/lvM0WjuAFsQVImiq6KGT7s7is+0bNI8O4Dwg27jyu4Lfqo/oIQXNzAg==} - - '@styled-system/space@5.1.2': - resolution: {integrity: sha512-+zzYpR8uvfhcAbaPXhH8QgDAV//flxqxSjHiS9cDFQQUSznXMQmxJegbhcdEF7/eNnJgHeIXv1jmny78kipgBA==} - - '@styled-system/typography@5.1.2': - resolution: {integrity: sha512-BxbVUnN8N7hJ4aaPOd7wEsudeT7CxarR+2hns8XCX1zp0DFfbWw4xYa/olA0oQaqx7F1hzDg+eRaGzAJbF+jOg==} - - '@styled-system/variant@5.1.5': - resolution: {integrity: sha512-Yn8hXAFoWIro8+Q5J8YJd/mP85Teiut3fsGVR9CAxwgNfIAiqlYxsk5iHU7VHJks/0KjL4ATSjmbtCDC/4l1qw==} - - '@substrate/connect-extension-protocol@2.0.0': - resolution: {integrity: sha512-nKu8pDrE3LNCEgJjZe1iGXzaD6OSIDD4Xzz/yo4KO9mQ6LBvf49BVrt4qxBFGL6++NneLiWUZGoh+VSd4PyVIg==} - - '@substrate/connect-known-chains@1.1.6': - resolution: {integrity: sha512-JwtdGbnK3ZqrY1qp3Ifr/p648sp9hG0Q715h4nRghnqZJnMQIiLKaFkcLnvrAiYQD3zNTYDztHidy5Q/u0TcbQ==} - - '@substrate/connect@0.8.10': - resolution: {integrity: sha512-DIyQ13DDlXqVFnLV+S6/JDgiGowVRRrh18kahieJxhgvzcWicw5eLc6jpfQ0moVVLBYkO7rctB5Wreldwpva8w==} + "@stricahq/bip32ed25519@1.0.4": + resolution: + { + integrity: sha512-b+4+aTRF9QY19auN4oBmZxv/7lJIBPBfAIU9wOTzc9Wxb0ifWpVcM4qt+qZuRNlMQofSlSa6lUet6CwaNyDEuA==, + } + + "@stricahq/cbors@1.0.2": + resolution: + { + integrity: sha512-6ePsEiq7EGHA5IiPn9poA7sF5iXPqt30kKw3pjR/BhP7S+XHZNu/OPumESWnVl4AM+IEYC2x9eL+4qRPsTPVww==, + } + + "@stricahq/typhonjs@2.0.0": + resolution: + { + integrity: sha512-4EdoVAht+hKDaBT1m0qCBQsi5unP9ghM4eUUKGcQcQQiEUZGsP8CgxcGuQbsXL1/LU5wNKoBnxWXUiylZD9uRQ==, + } + + "@styled-system/background@5.1.2": + resolution: + { + integrity: sha512-jtwH2C/U6ssuGSvwTN3ri/IyjdHb8W9X/g8Y0JLcrH02G+BW3OS8kZdHphF1/YyRklnrKrBT2ngwGUK6aqqV3A==, + } + + "@styled-system/border@5.1.5": + resolution: + { + integrity: sha512-JvddhNrnhGigtzWRCVuAHepniyVi6hBlimxWDVAdcTuk7aRn9BYJUwfHslURtwYFsF5FoEs8Zmr1oZq2M1AP0A==, + } + + "@styled-system/color@5.1.2": + resolution: + { + integrity: sha512-1kCkeKDZkt4GYkuFNKc7vJQMcOmTl3bJY3YBUs7fCNM6mMYJeT1pViQ2LwBSBJytj3AB0o4IdLBoepgSgGl5MA==, + } + + "@styled-system/core@5.1.2": + resolution: + { + integrity: sha512-XclBDdNIy7OPOsN4HBsawG2eiWfCcuFt6gxKn1x4QfMIgeO6TOlA2pZZ5GWZtIhCUqEPTgIBta6JXsGyCkLBYw==, + } + + "@styled-system/css@5.1.5": + resolution: + { + integrity: sha512-XkORZdS5kypzcBotAMPBoeckDs9aSZVkvrAlq5K3xP8IMAUek+x2O4NtwoSgkYkWWzVBu6DGdFZLR790QWGG+A==, + } + + "@styled-system/flexbox@5.1.2": + resolution: + { + integrity: sha512-6hHV52+eUk654Y1J2v77B8iLeBNtc+SA3R4necsu2VVinSD7+XY5PCCEzBFaWs42dtOEDIa2lMrgL0YBC01mDQ==, + } + + "@styled-system/grid@5.1.2": + resolution: + { + integrity: sha512-K3YiV1KyHHzgdNuNlaw8oW2ktMuGga99o1e/NAfTEi5Zsa7JXxzwEnVSDSBdJC+z6R8WYTCYRQC6bkVFcvdTeg==, + } + + "@styled-system/layout@5.1.2": + resolution: + { + integrity: sha512-wUhkMBqSeacPFhoE9S6UF3fsMEKFv91gF4AdDWp0Aym1yeMPpqz9l9qS/6vjSsDPF7zOb5cOKC3tcKKOMuDCPw==, + } + + "@styled-system/position@5.1.2": + resolution: + { + integrity: sha512-60IZfMXEOOZe3l1mCu6sj/2NAyUmES2kR9Kzp7s2D3P4qKsZWxD1Se1+wJvevb+1TP+ZMkGPEYYXRyU8M1aF5A==, + } + + "@styled-system/shadow@5.1.2": + resolution: + { + integrity: sha512-wqniqYb7XuZM7K7C0d1Euxc4eGtqEe/lvM0WjuAFsQVImiq6KGT7s7is+0bNI8O4Dwg27jyu4Lfqo/oIQXNzAg==, + } + + "@styled-system/space@5.1.2": + resolution: + { + integrity: sha512-+zzYpR8uvfhcAbaPXhH8QgDAV//flxqxSjHiS9cDFQQUSznXMQmxJegbhcdEF7/eNnJgHeIXv1jmny78kipgBA==, + } + + "@styled-system/typography@5.1.2": + resolution: + { + integrity: sha512-BxbVUnN8N7hJ4aaPOd7wEsudeT7CxarR+2hns8XCX1zp0DFfbWw4xYa/olA0oQaqx7F1hzDg+eRaGzAJbF+jOg==, + } + + "@styled-system/variant@5.1.5": + resolution: + { + integrity: sha512-Yn8hXAFoWIro8+Q5J8YJd/mP85Teiut3fsGVR9CAxwgNfIAiqlYxsk5iHU7VHJks/0KjL4ATSjmbtCDC/4l1qw==, + } + + "@substrate/connect-extension-protocol@2.0.0": + resolution: + { + integrity: sha512-nKu8pDrE3LNCEgJjZe1iGXzaD6OSIDD4Xzz/yo4KO9mQ6LBvf49BVrt4qxBFGL6++NneLiWUZGoh+VSd4PyVIg==, + } + + "@substrate/connect-known-chains@1.1.6": + resolution: + { + integrity: sha512-JwtdGbnK3ZqrY1qp3Ifr/p648sp9hG0Q715h4nRghnqZJnMQIiLKaFkcLnvrAiYQD3zNTYDztHidy5Q/u0TcbQ==, + } + + "@substrate/connect@0.8.10": + resolution: + { + integrity: sha512-DIyQ13DDlXqVFnLV+S6/JDgiGowVRRrh18kahieJxhgvzcWicw5eLc6jpfQ0moVVLBYkO7rctB5Wreldwpva8w==, + } deprecated: versions below 1.x are no longer maintained - '@substrate/light-client-extension-helpers@0.0.6': - resolution: {integrity: sha512-girltEuxQ1BvkJWmc8JJlk4ZxnlGXc/wkLcNguhY+UoDEMBK0LsdtfzQKIfrIehi4QdeSBlFEFBoI4RqPmsZzA==} + "@substrate/light-client-extension-helpers@0.0.6": + resolution: + { + integrity: sha512-girltEuxQ1BvkJWmc8JJlk4ZxnlGXc/wkLcNguhY+UoDEMBK0LsdtfzQKIfrIehi4QdeSBlFEFBoI4RqPmsZzA==, + } peerDependencies: smoldot: 2.x - '@substrate/ss58-registry@1.47.0': - resolution: {integrity: sha512-6kuIJedRcisUJS2pgksEH2jZf3hfSIVzqtFzs/AyjTW3ETbMg5q1Bb7VWa0WYaT6dTrEXp/6UoXM5B9pSIUmcw==} - - '@surma/rollup-plugin-off-main-thread@2.2.3': - resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==} - - '@svgr/babel-plugin-add-jsx-attribute@5.4.0': - resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-remove-jsx-attribute@5.4.0': - resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1': - resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1': - resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-svg-dynamic-title@5.4.0': - resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-svg-em-dimensions@5.4.0': - resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-transform-react-native-svg@5.4.0': - resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==} - engines: {node: '>=10'} - - '@svgr/babel-plugin-transform-svg-component@5.5.0': - resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==} - engines: {node: '>=10'} - - '@svgr/babel-preset@5.5.0': - resolution: {integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==} - engines: {node: '>=10'} - - '@svgr/core@5.5.0': - resolution: {integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==} - engines: {node: '>=10'} - peerDependencies: - '@svgr/plugin-svgo': '*' + "@substrate/ss58-registry@1.47.0": + resolution: + { + integrity: sha512-6kuIJedRcisUJS2pgksEH2jZf3hfSIVzqtFzs/AyjTW3ETbMg5q1Bb7VWa0WYaT6dTrEXp/6UoXM5B9pSIUmcw==, + } + + "@surma/rollup-plugin-off-main-thread@2.2.3": + resolution: + { + integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==, + } + + "@svgr/babel-plugin-add-jsx-attribute@5.4.0": + resolution: + { + integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==, + } + engines: { node: ">=10" } + + "@svgr/babel-plugin-remove-jsx-attribute@5.4.0": + resolution: + { + integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==, + } + engines: { node: ">=10" } + + "@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1": + resolution: + { + integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==, + } + engines: { node: ">=10" } + + "@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1": + resolution: + { + integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==, + } + engines: { node: ">=10" } + + "@svgr/babel-plugin-svg-dynamic-title@5.4.0": + resolution: + { + integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==, + } + engines: { node: ">=10" } + + "@svgr/babel-plugin-svg-em-dimensions@5.4.0": + resolution: + { + integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==, + } + engines: { node: ">=10" } + + "@svgr/babel-plugin-transform-react-native-svg@5.4.0": + resolution: + { + integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==, + } + engines: { node: ">=10" } + + "@svgr/babel-plugin-transform-svg-component@5.5.0": + resolution: + { + integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==, + } + engines: { node: ">=10" } + + "@svgr/babel-preset@5.5.0": + resolution: + { + integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==, + } + engines: { node: ">=10" } + + "@svgr/core@5.5.0": + resolution: + { + integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==, + } + engines: { node: ">=10" } + peerDependencies: + "@svgr/plugin-svgo": "*" peerDependenciesMeta: - '@svgr/plugin-svgo': + "@svgr/plugin-svgo": optional: true - '@svgr/hast-util-to-babel-ast@5.5.0': - resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} - engines: {node: '>=10'} - - '@svgr/plugin-jsx@5.5.0': - resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} - engines: {node: '>=10'} - - '@svgr/plugin-svgo@5.5.0': - resolution: {integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==} - engines: {node: '>=10'} - - '@svgr/webpack@5.5.0': - resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==} - engines: {node: '>=10'} - - '@swc/core-darwin-arm64@1.4.11': - resolution: {integrity: sha512-C1j1Qp/IHSelVWdEnT7f0iONWxQz6FAqzjCF2iaL+0vFg4V5f2nlgrueY8vj5pNNzSGhrAlxsMxEIp4dj1MXkg==} - engines: {node: '>=10'} + "@svgr/hast-util-to-babel-ast@5.5.0": + resolution: + { + integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==, + } + engines: { node: ">=10" } + + "@svgr/plugin-jsx@5.5.0": + resolution: + { + integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==, + } + engines: { node: ">=10" } + + "@svgr/plugin-svgo@5.5.0": + resolution: + { + integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==, + } + engines: { node: ">=10" } + + "@svgr/webpack@5.5.0": + resolution: + { + integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==, + } + engines: { node: ">=10" } + + "@swc/core-darwin-arm64@1.4.11": + resolution: + { + integrity: sha512-C1j1Qp/IHSelVWdEnT7f0iONWxQz6FAqzjCF2iaL+0vFg4V5f2nlgrueY8vj5pNNzSGhrAlxsMxEIp4dj1MXkg==, + } + engines: { node: ">=10" } cpu: [arm64] os: [darwin] - '@swc/core-darwin-x64@1.4.11': - resolution: {integrity: sha512-0TTy3Ni8ncgaMCchSQ7FK8ZXQLlamy0FXmGWbR58c+pVZWYZltYPTmheJUvVcR0H2+gPAymRKyfC0iLszDALjg==} - engines: {node: '>=10'} + "@swc/core-darwin-x64@1.4.11": + resolution: + { + integrity: sha512-0TTy3Ni8ncgaMCchSQ7FK8ZXQLlamy0FXmGWbR58c+pVZWYZltYPTmheJUvVcR0H2+gPAymRKyfC0iLszDALjg==, + } + engines: { node: ">=10" } cpu: [x64] os: [darwin] - '@swc/core-linux-arm-gnueabihf@1.4.11': - resolution: {integrity: sha512-XJLB71uw0rog4DjYAPxFGAuGCBQpgJDlPZZK6MTmZOvI/1t0+DelJ24IjHIxk500YYM26Yv47xPabqFPD7I2zQ==} - engines: {node: '>=10'} + "@swc/core-linux-arm-gnueabihf@1.4.11": + resolution: + { + integrity: sha512-XJLB71uw0rog4DjYAPxFGAuGCBQpgJDlPZZK6MTmZOvI/1t0+DelJ24IjHIxk500YYM26Yv47xPabqFPD7I2zQ==, + } + engines: { node: ">=10" } cpu: [arm] os: [linux] - '@swc/core-linux-arm64-gnu@1.4.11': - resolution: {integrity: sha512-vYQwzJvm/iu052d5Iw27UFALIN5xSrGkPZXxLNMHPySVko2QMNNBv35HLatkEQHbQ3X+VKSW9J9SkdtAvAVRAQ==} - engines: {node: '>=10'} + "@swc/core-linux-arm64-gnu@1.4.11": + resolution: + { + integrity: sha512-vYQwzJvm/iu052d5Iw27UFALIN5xSrGkPZXxLNMHPySVko2QMNNBv35HLatkEQHbQ3X+VKSW9J9SkdtAvAVRAQ==, + } + engines: { node: ">=10" } cpu: [arm64] os: [linux] - '@swc/core-linux-arm64-musl@1.4.11': - resolution: {integrity: sha512-eV+KduiRYUFjPsvbZuJ9aknQH9Tj0U2/G9oIZSzLx/18WsYi+upzHbgxmIIHJ2VJgfd7nN40RI/hMtxNsUzR/g==} - engines: {node: '>=10'} + "@swc/core-linux-arm64-musl@1.4.11": + resolution: + { + integrity: sha512-eV+KduiRYUFjPsvbZuJ9aknQH9Tj0U2/G9oIZSzLx/18WsYi+upzHbgxmIIHJ2VJgfd7nN40RI/hMtxNsUzR/g==, + } + engines: { node: ">=10" } cpu: [arm64] os: [linux] - '@swc/core-linux-x64-gnu@1.4.11': - resolution: {integrity: sha512-WA1iGXZ2HpqM1OR9VCQZJ8sQ1KP2or9O4bO8vWZo6HZJIeoQSo7aa9waaCLRpkZvkng1ct/TF/l6ymqSNFXIzQ==} - engines: {node: '>=10'} + "@swc/core-linux-x64-gnu@1.4.11": + resolution: + { + integrity: sha512-WA1iGXZ2HpqM1OR9VCQZJ8sQ1KP2or9O4bO8vWZo6HZJIeoQSo7aa9waaCLRpkZvkng1ct/TF/l6ymqSNFXIzQ==, + } + engines: { node: ">=10" } cpu: [x64] os: [linux] - '@swc/core-linux-x64-musl@1.4.11': - resolution: {integrity: sha512-UkVJToKf0owwQYRnGvjHAeYVDfeimCEcx0VQSbJoN7Iy0ckRZi7YPlmWJU31xtKvikE2bQWCOVe0qbSDqqcWXA==} - engines: {node: '>=10'} + "@swc/core-linux-x64-musl@1.4.11": + resolution: + { + integrity: sha512-UkVJToKf0owwQYRnGvjHAeYVDfeimCEcx0VQSbJoN7Iy0ckRZi7YPlmWJU31xtKvikE2bQWCOVe0qbSDqqcWXA==, + } + engines: { node: ">=10" } cpu: [x64] os: [linux] - '@swc/core-win32-arm64-msvc@1.4.11': - resolution: {integrity: sha512-35khwkyly7lF5NDSyvIrukBMzxPorgc5iTSDfVO/LvnmN5+fm4lTlrDr4tUfTdOhv3Emy7CsKlsNAeFRJ+Pm+w==} - engines: {node: '>=10'} + "@swc/core-win32-arm64-msvc@1.4.11": + resolution: + { + integrity: sha512-35khwkyly7lF5NDSyvIrukBMzxPorgc5iTSDfVO/LvnmN5+fm4lTlrDr4tUfTdOhv3Emy7CsKlsNAeFRJ+Pm+w==, + } + engines: { node: ">=10" } cpu: [arm64] os: [win32] - '@swc/core-win32-ia32-msvc@1.4.11': - resolution: {integrity: sha512-Wx8/6f0ufgQF2pbVPsJ2dAmFLwIOW+xBE5fxnb7VnEbGkTgP1qMDWiiAtD9rtvDSuODG3i1AEmAak/2HAc6i6A==} - engines: {node: '>=10'} + "@swc/core-win32-ia32-msvc@1.4.11": + resolution: + { + integrity: sha512-Wx8/6f0ufgQF2pbVPsJ2dAmFLwIOW+xBE5fxnb7VnEbGkTgP1qMDWiiAtD9rtvDSuODG3i1AEmAak/2HAc6i6A==, + } + engines: { node: ">=10" } cpu: [ia32] os: [win32] - '@swc/core-win32-x64-msvc@1.4.11': - resolution: {integrity: sha512-0xRFW6K9UZQH2NVC/0pVB0GJXS45lY24f+6XaPBF1YnMHd8A8GoHl7ugyM5yNUTe2AKhSgk5fJV00EJt/XBtdQ==} - engines: {node: '>=10'} + "@swc/core-win32-x64-msvc@1.4.11": + resolution: + { + integrity: sha512-0xRFW6K9UZQH2NVC/0pVB0GJXS45lY24f+6XaPBF1YnMHd8A8GoHl7ugyM5yNUTe2AKhSgk5fJV00EJt/XBtdQ==, + } + engines: { node: ">=10" } cpu: [x64] os: [win32] - '@swc/core@1.4.11': - resolution: {integrity: sha512-WKEakMZxkVwRdgMN4AMJ9K5nysY8g8npgQPczmjBeNK5In7QEAZAJwnyccrWwJZU0XjVeHn2uj+XbOKdDW17rg==} - engines: {node: '>=10'} + "@swc/core@1.4.11": + resolution: + { + integrity: sha512-WKEakMZxkVwRdgMN4AMJ9K5nysY8g8npgQPczmjBeNK5In7QEAZAJwnyccrWwJZU0XjVeHn2uj+XbOKdDW17rg==, + } + engines: { node: ">=10" } peerDependencies: - '@swc/helpers': ^0.5.0 + "@swc/helpers": ^0.5.0 peerDependenciesMeta: - '@swc/helpers': + "@swc/helpers": optional: true - '@swc/counter@0.1.3': - resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} - - '@swc/helpers@0.4.14': - resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} - - '@swc/helpers@0.5.5': - resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==} - - '@swc/jest@0.2.36': - resolution: {integrity: sha512-8X80dp81ugxs4a11z1ka43FPhP+/e+mJNXJSxiNYk8gIX/jPBtY4gQTrKu/KIoco8bzKuPI5lUxjfLiGsfvnlw==} - engines: {npm: '>= 7.0.0'} - peerDependencies: - '@swc/core': '*' - - '@swc/types@0.1.6': - resolution: {integrity: sha512-/JLo/l2JsT/LRd80C3HfbmVpxOAJ11FO2RCEslFrgzLltoP9j8XIbsyDcfCt2WWyX+CM96rBoNM+IToAkFOugg==} - - '@szmarczak/http-timer@1.1.2': - resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} - engines: {node: '>=6'} - - '@szmarczak/http-timer@4.0.6': - resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} - engines: {node: '>=10'} - - '@tanstack/query-core@5.28.9': - resolution: {integrity: sha512-hNlfCiqZevr3GRVPXS3MhaGW5hjcxvCsIQ4q6ff7EPlvFwYZaS+0d9EIIgofnegDaU2BbCDlyURoYfRl5rmzow==} - - '@tanstack/query-devtools@5.28.10': - resolution: {integrity: sha512-5UN629fKa5/1K/2Pd26gaU7epxRrYiT1gy+V+pW5K6hnf1DeUKK3pANSb2eHKlecjIKIhTwyF7k9XdyE2gREvQ==} - - '@tanstack/react-query-devtools@5.28.14': - resolution: {integrity: sha512-4CrFBI1O5wibV1ZdGAnBMmTuc7SiShhxWubxRMyIloeEioxs3DQkFbouGBea5nexuwIxAkvhUB8khpPnNjhxMw==} - peerDependencies: - '@tanstack/react-query': ^5.28.14 + "@swc/counter@0.1.3": + resolution: + { + integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==, + } + + "@swc/helpers@0.4.14": + resolution: + { + integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==, + } + + "@swc/helpers@0.5.5": + resolution: + { + integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==, + } + + "@swc/jest@0.2.36": + resolution: + { + integrity: sha512-8X80dp81ugxs4a11z1ka43FPhP+/e+mJNXJSxiNYk8gIX/jPBtY4gQTrKu/KIoco8bzKuPI5lUxjfLiGsfvnlw==, + } + engines: { npm: ">= 7.0.0" } + peerDependencies: + "@swc/core": "*" + + "@swc/types@0.1.6": + resolution: + { + integrity: sha512-/JLo/l2JsT/LRd80C3HfbmVpxOAJ11FO2RCEslFrgzLltoP9j8XIbsyDcfCt2WWyX+CM96rBoNM+IToAkFOugg==, + } + + "@szmarczak/http-timer@1.1.2": + resolution: + { + integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==, + } + engines: { node: ">=6" } + + "@szmarczak/http-timer@4.0.6": + resolution: + { + integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==, + } + engines: { node: ">=10" } + + "@tanstack/query-core@5.28.9": + resolution: + { + integrity: sha512-hNlfCiqZevr3GRVPXS3MhaGW5hjcxvCsIQ4q6ff7EPlvFwYZaS+0d9EIIgofnegDaU2BbCDlyURoYfRl5rmzow==, + } + + "@tanstack/query-devtools@5.28.10": + resolution: + { + integrity: sha512-5UN629fKa5/1K/2Pd26gaU7epxRrYiT1gy+V+pW5K6hnf1DeUKK3pANSb2eHKlecjIKIhTwyF7k9XdyE2gREvQ==, + } + + "@tanstack/react-query-devtools@5.28.14": + resolution: + { + integrity: sha512-4CrFBI1O5wibV1ZdGAnBMmTuc7SiShhxWubxRMyIloeEioxs3DQkFbouGBea5nexuwIxAkvhUB8khpPnNjhxMw==, + } + peerDependencies: + "@tanstack/react-query": ^5.28.14 react: ^18.0.0 - '@tanstack/react-query@5.28.9': - resolution: {integrity: sha512-vwifBkGXsydsLxFOBMe3+f8kvtDoqDRDwUNjPHVDDt+FoBetCbOWAUHgZn4k+CVeZgLmy7bx6aKeDbe3e8koOQ==} + "@tanstack/react-query@5.28.9": + resolution: + { + integrity: sha512-vwifBkGXsydsLxFOBMe3+f8kvtDoqDRDwUNjPHVDDt+FoBetCbOWAUHgZn4k+CVeZgLmy7bx6aKeDbe3e8koOQ==, + } peerDependencies: react: ^18.0.0 - '@tanstack/react-virtual@3.2.0': - resolution: {integrity: sha512-OEdMByf2hEfDa6XDbGlZN8qO6bTjlNKqjM3im9JG+u3mCL8jALy0T/67oDI001raUUPh1Bdmfn4ZvPOV5knpcg==} + "@tanstack/react-virtual@3.2.0": + resolution: + { + integrity: sha512-OEdMByf2hEfDa6XDbGlZN8qO6bTjlNKqjM3im9JG+u3mCL8jALy0T/67oDI001raUUPh1Bdmfn4ZvPOV5knpcg==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - '@tanstack/virtual-core@3.2.0': - resolution: {integrity: sha512-P5XgYoAw/vfW65byBbJQCw+cagdXDT/qH6wmABiLt4v4YBT2q2vqCOhihe+D1Nt325F/S/0Tkv6C5z0Lv+VBQQ==} - - '@taquito/core@20.0.0': - resolution: {integrity: sha512-JSDWLaVeaSqI98Xwd2TQwNy/fznSLEhikUxM7da6WbGJGtH8lG9SI9q6N9LLPfOFNGlP5RVQLO9HK/Pcmn4H8Q==} - engines: {node: '>=18'} - - '@taquito/core@20.0.1': - resolution: {integrity: sha512-/NvTkS8Enz5zxm481h7Ld5+MTa3/q84PMqtQ+HN3Mniv4EshnX5uIGfbdXdCQoaAeVdJOCeNIZDgeP6ZnkomRA==} - engines: {node: '>=18'} - - '@taquito/http-utils@20.0.1': - resolution: {integrity: sha512-belYNmWoT49IF8o51gEB5je5Wz54+C7Q5hmvh7modl7fG0qE8VD1ulSH+WjuZsFTPJdNEAfCe0O50Vb5tNzw2w==} - engines: {node: '>=18'} - - '@taquito/ledger-signer@20.0.0': - resolution: {integrity: sha512-wfl1plx/uAIbmHsYxwsO2pXKDa9aMOmuuw25rjwsniBP36hM0Ly9GSrQ0z1CozteQF9ThP+OwrNMCwlfqXx43Q==} - engines: {node: '>=18'} - - '@taquito/ledger-signer@20.0.1': - resolution: {integrity: sha512-w8PM2tmBGK7FaQnifDJr43Gt+xt5AApiMr8rh7PV5v+uyHfmaqudNBK0SdlbTKpS7GkERs4X8CBojpeGAage8Q==} - engines: {node: '>=18'} - - '@taquito/local-forging@20.0.1': - resolution: {integrity: sha512-+XYHnoAYXpOYA4WbUvUO86F6uoUh1anaNQGD544ySaonJW1ZgwhylrGvvTVjQfFSqqP3TRWn69EqINco+hX7gA==} - engines: {node: '>=18'} - - '@taquito/michel-codec@20.0.1': - resolution: {integrity: sha512-TB6fJS4ArW4p1mqR28cjKbYs4cbLz/wnf8bHI/4ubxpiPcARZkja7r4U89D+Lb6Kn1Er+USPIMdbRTkP011e0w==} - engines: {node: '>=18'} - - '@taquito/michelson-encoder@20.0.1': - resolution: {integrity: sha512-YfMLpxDL/Qd9AlIfjlCsXYiE07ReZRAqvj+mI/Q8sPsKpqrkjvhyieNUQDLVqMDRcWLBWUSIqccr7UVRlQ/+BQ==} - engines: {node: '>=18'} - - '@taquito/rpc@20.0.1': - resolution: {integrity: sha512-Ec6fXoehjLpfILpVAHZ1NJz6cAaguEFs9McK2Ct4RRKmVhModgrVPAGXn17rb7fLXwOLP3MCzqSgFPToY7ZIFA==} - engines: {node: '>=18'} - - '@taquito/taquito@20.0.1': - resolution: {integrity: sha512-BcRNWcUGOWfthFPgPf12U1ZIf1xSyy1ZS4xU5TciuxI395LnKTz6I3WfmMggsZzWxqEgi/Lj8GXjji7DCtaZRg==} - engines: {node: '>=18'} - - '@taquito/utils@20.0.1': - resolution: {integrity: sha512-aJaKukIW9thzU/WZ7p9ARRIDoXLQZ8TsB0brtbf48GqBFoGXDNAsDo72lkeTpehEcgYItSjdBuWEKH/lyTMr+w==} - engines: {node: '>=18'} - - '@testing-library/dom@9.3.4': - resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} - engines: {node: '>=14'} - - '@testing-library/jest-dom@6.4.2': - resolution: {integrity: sha512-CzqH0AFymEMG48CpzXFriYYkOjk6ZGPCLMhW9e9jg3KMCn5OfJecF8GtGW7yGfR/IgCe3SX8BSwjdzI6BBbZLw==} - engines: {node: '>=14', npm: '>=6', yarn: '>=1'} - peerDependencies: - '@jest/globals': '>= 28' - '@types/bun': latest - '@types/jest': '>= 28' - jest: '>= 28' - vitest: '>= 0.32' + "@tanstack/virtual-core@3.2.0": + resolution: + { + integrity: sha512-P5XgYoAw/vfW65byBbJQCw+cagdXDT/qH6wmABiLt4v4YBT2q2vqCOhihe+D1Nt325F/S/0Tkv6C5z0Lv+VBQQ==, + } + + "@taquito/core@20.0.0": + resolution: + { + integrity: sha512-JSDWLaVeaSqI98Xwd2TQwNy/fznSLEhikUxM7da6WbGJGtH8lG9SI9q6N9LLPfOFNGlP5RVQLO9HK/Pcmn4H8Q==, + } + engines: { node: ">=18" } + + "@taquito/core@20.0.1": + resolution: + { + integrity: sha512-/NvTkS8Enz5zxm481h7Ld5+MTa3/q84PMqtQ+HN3Mniv4EshnX5uIGfbdXdCQoaAeVdJOCeNIZDgeP6ZnkomRA==, + } + engines: { node: ">=18" } + + "@taquito/http-utils@20.0.1": + resolution: + { + integrity: sha512-belYNmWoT49IF8o51gEB5je5Wz54+C7Q5hmvh7modl7fG0qE8VD1ulSH+WjuZsFTPJdNEAfCe0O50Vb5tNzw2w==, + } + engines: { node: ">=18" } + + "@taquito/ledger-signer@20.0.0": + resolution: + { + integrity: sha512-wfl1plx/uAIbmHsYxwsO2pXKDa9aMOmuuw25rjwsniBP36hM0Ly9GSrQ0z1CozteQF9ThP+OwrNMCwlfqXx43Q==, + } + engines: { node: ">=18" } + + "@taquito/ledger-signer@20.0.1": + resolution: + { + integrity: sha512-w8PM2tmBGK7FaQnifDJr43Gt+xt5AApiMr8rh7PV5v+uyHfmaqudNBK0SdlbTKpS7GkERs4X8CBojpeGAage8Q==, + } + engines: { node: ">=18" } + + "@taquito/local-forging@20.0.1": + resolution: + { + integrity: sha512-+XYHnoAYXpOYA4WbUvUO86F6uoUh1anaNQGD544ySaonJW1ZgwhylrGvvTVjQfFSqqP3TRWn69EqINco+hX7gA==, + } + engines: { node: ">=18" } + + "@taquito/michel-codec@20.0.1": + resolution: + { + integrity: sha512-TB6fJS4ArW4p1mqR28cjKbYs4cbLz/wnf8bHI/4ubxpiPcARZkja7r4U89D+Lb6Kn1Er+USPIMdbRTkP011e0w==, + } + engines: { node: ">=18" } + + "@taquito/michelson-encoder@20.0.1": + resolution: + { + integrity: sha512-YfMLpxDL/Qd9AlIfjlCsXYiE07ReZRAqvj+mI/Q8sPsKpqrkjvhyieNUQDLVqMDRcWLBWUSIqccr7UVRlQ/+BQ==, + } + engines: { node: ">=18" } + + "@taquito/rpc@20.0.1": + resolution: + { + integrity: sha512-Ec6fXoehjLpfILpVAHZ1NJz6cAaguEFs9McK2Ct4RRKmVhModgrVPAGXn17rb7fLXwOLP3MCzqSgFPToY7ZIFA==, + } + engines: { node: ">=18" } + + "@taquito/taquito@20.0.1": + resolution: + { + integrity: sha512-BcRNWcUGOWfthFPgPf12U1ZIf1xSyy1ZS4xU5TciuxI395LnKTz6I3WfmMggsZzWxqEgi/Lj8GXjji7DCtaZRg==, + } + engines: { node: ">=18" } + + "@taquito/utils@20.0.1": + resolution: + { + integrity: sha512-aJaKukIW9thzU/WZ7p9ARRIDoXLQZ8TsB0brtbf48GqBFoGXDNAsDo72lkeTpehEcgYItSjdBuWEKH/lyTMr+w==, + } + engines: { node: ">=18" } + + "@testing-library/dom@9.3.4": + resolution: + { + integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==, + } + engines: { node: ">=14" } + + "@testing-library/jest-dom@6.4.2": + resolution: + { + integrity: sha512-CzqH0AFymEMG48CpzXFriYYkOjk6ZGPCLMhW9e9jg3KMCn5OfJecF8GtGW7yGfR/IgCe3SX8BSwjdzI6BBbZLw==, + } + engines: { node: ">=14", npm: ">=6", yarn: ">=1" } + peerDependencies: + "@jest/globals": ">= 28" + "@types/bun": latest + "@types/jest": ">= 28" + jest: ">= 28" + vitest: ">= 0.32" peerDependenciesMeta: - '@jest/globals': + "@jest/globals": optional: true - '@types/bun': + "@types/bun": optional: true - '@types/jest': + "@types/jest": optional: true jest: optional: true vitest: optional: true - '@testing-library/jest-native@5.4.3': - resolution: {integrity: sha512-/sSDGaOuE+PJ1Z9Kp4u7PQScSVVXGud59I/qsBFFJvIbcn4P6yYw6cBnBmbPF+X9aRIsTJRDl6gzw5ZkJNm66w==} - peerDependencies: - react: '>=16.0.0' - react-native: '>=0.59' - react-test-renderer: '>=16.0.0' - - '@testing-library/react-native@12.4.5': - resolution: {integrity: sha512-SfwFwV1MrnvL//9T4C4UyusnZfWy2IOftNU7mG+bspk23bDM9HH1TxsMvec7JVZleraicDO7tP1odFqwb4KPcg==} - peerDependencies: - jest: '>=28.0.0' - react: '>=16.8.0' - react-native: '>=0.59' - react-test-renderer: '>=16.8.0' + "@testing-library/jest-native@5.4.3": + resolution: + { + integrity: sha512-/sSDGaOuE+PJ1Z9Kp4u7PQScSVVXGud59I/qsBFFJvIbcn4P6yYw6cBnBmbPF+X9aRIsTJRDl6gzw5ZkJNm66w==, + } + peerDependencies: + react: ">=16.0.0" + react-native: ">=0.59" + react-test-renderer: ">=16.0.0" + + "@testing-library/react-native@12.4.5": + resolution: + { + integrity: sha512-SfwFwV1MrnvL//9T4C4UyusnZfWy2IOftNU7mG+bspk23bDM9HH1TxsMvec7JVZleraicDO7tP1odFqwb4KPcg==, + } + peerDependencies: + jest: ">=28.0.0" + react: ">=16.8.0" + react-native: ">=0.59" + react-test-renderer: ">=16.8.0" peerDependenciesMeta: jest: optional: true - '@testing-library/react@14.2.2': - resolution: {integrity: sha512-SOUuM2ysCvjUWBXTNfQ/ztmnKDmqaiPV3SvoIuyxMUca45rbSWWAT/qB8CUs/JQ/ux/8JFs9DNdFQ3f6jH3crA==} - engines: {node: '>=14'} + "@testing-library/react@14.2.2": + resolution: + { + integrity: sha512-SOUuM2ysCvjUWBXTNfQ/ztmnKDmqaiPV3SvoIuyxMUca45rbSWWAT/qB8CUs/JQ/ux/8JFs9DNdFQ3f6jH3crA==, + } + engines: { node: ">=14" } peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - '@testing-library/user-event@14.5.2': - resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==} - engines: {node: '>=12', npm: '>=6'} + "@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' + "@testing-library/dom": ">=7.21.4" - '@theguild/remark-mermaid@0.0.5': - resolution: {integrity: sha512-e+ZIyJkEv9jabI4m7q29wZtZv+2iwPGsXJ2d46Zi7e+QcFudiyuqhLhHG/3gX3ZEB+hxTch+fpItyMS8jwbIcw==} + "@theguild/remark-mermaid@0.0.5": + resolution: + { + integrity: sha512-e+ZIyJkEv9jabI4m7q29wZtZv+2iwPGsXJ2d46Zi7e+QcFudiyuqhLhHG/3gX3ZEB+hxTch+fpItyMS8jwbIcw==, + } peerDependencies: react: ^18.2.0 - '@theguild/remark-npm2yarn@0.2.1': - resolution: {integrity: sha512-jUTFWwDxtLEFtGZh/TW/w30ySaDJ8atKWH8dq2/IiQF61dPrGfETpl0WxD0VdBfuLOeU14/kop466oBSRO/5CA==} - - '@tippyjs/react@4.2.6': - resolution: {integrity: sha512-91RicDR+H7oDSyPycI13q3b7o4O60wa2oRbjlz2fyRLmHImc4vyDwuUP8NtZaN0VARJY5hybvDYrFzhY9+Lbyw==} - peerDependencies: - react: '>=16.8' - react-dom: '>=16.8' - - '@ton-community/ton-ledger@7.0.1': - resolution: {integrity: sha512-4QDjG9D/c3vKyApKa36KfqyE0UcPn/ExSJvCb8Cd03BdhMiZQNvm7tJsKg12lslPCIbl1dW9ZC6fg1RvqAAqnQ==} - peerDependencies: - '@ton/core': '>=0.52.2' - - '@ton/core@0.56.3': - resolution: {integrity: sha512-HVkalfqw8zqLLPehtq0CNhu5KjVzc7IrbDwDHPjGoOSXmnqSobiWj8a5F+YuWnZnEbQKtrnMGNOOjVw4LG37rg==} - peerDependencies: - '@ton/crypto': '>=3.2.0' - - '@ton/crypto-primitives@2.1.0': - resolution: {integrity: sha512-PQesoyPgqyI6vzYtCXw4/ZzevePc4VGcJtFwf08v10OevVJHVfW238KBdpj1kEDQkxWLeuNHEpTECNFKnP6tow==} - - '@ton/crypto@3.3.0': - resolution: {integrity: sha512-/A6CYGgA/H36OZ9BbTaGerKtzWp50rg67ZCH2oIjV1NcrBaCK9Z343M+CxedvM7Haf3f/Ee9EhxyeTp0GKMUpA==} - - '@ton/ton@13.11.2': - resolution: {integrity: sha512-EPqW+ZTe0MmfqguJEIGMuAqTAFRKMEce95HlDx8h6CGn2y3jiMgV1/oO+WpDIOiX+1wnTu+xtajk8JTWr8nKRQ==} - peerDependencies: - '@ton/core': '>=0.56.0' - '@ton/crypto': '>=3.2.0' - - '@tootallnate/once@1.1.2': - resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} - engines: {node: '>= 6'} - - '@tootallnate/once@2.0.0': - resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} - engines: {node: '>= 10'} - - '@tronweb3/google-protobuf@3.21.2': - resolution: {integrity: sha512-IVcT2GfWX3K6tHUVhs14NP5uzKhQt4KeDya1g9ACxuZsUzsaoGUIGzceK2Ltu7xp1YV94AaHOf4yxLAivlvEkQ==} - - '@trust/keyto@1.0.1': - resolution: {integrity: sha512-OXTmKkrnkwktCX86XA7eWs1TQ6u64enm0syzAfNhjigbuGLy5aLhbhRYWtjt4zzdG/irWudluheRZ9Ic9pCwsA==} - - '@trysound/sax@0.2.0': - resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} - engines: {node: '>=10.13.0'} - - '@tsconfig/node10@1.0.11': - resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} - - '@tsconfig/node12@1.0.11': - resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} - - '@tsconfig/node14@1.0.3': - resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} - - '@tsconfig/node16@1.0.4': - resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} - - '@tsconfig/recommended@1.0.6': - resolution: {integrity: sha512-0IKu9GHYF1NGTJiYgfWwqnOQSlnE9V9R7YohHNNf0/fj/SyOZWzdd06JFr0fLpg1Mqw0kGbYg8w5xdkSqLKM9g==} - - '@types/accepts@1.3.7': - resolution: {integrity: sha512-Pay9fq2lM2wXPWbteBsRAGiWH2hig4ZE2asK+mm7kUzlxRTfL961rj89I6zV/E3PcIkDqyuBEcMxFT7rccugeQ==} - - '@types/acorn@4.0.6': - resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} - - '@types/aria-query@5.0.4': - resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} - - '@types/axios@0.14.0': - resolution: {integrity: sha512-KqQnQbdYE54D7oa/UmYVMZKq7CO4l8DEENzOKc4aBRwxCXSlJXGz83flFx5L7AWrOQnmuN3kVsRdt+GZPPjiVQ==} + "@theguild/remark-npm2yarn@0.2.1": + resolution: + { + integrity: sha512-jUTFWwDxtLEFtGZh/TW/w30ySaDJ8atKWH8dq2/IiQF61dPrGfETpl0WxD0VdBfuLOeU14/kop466oBSRO/5CA==, + } + + "@tippyjs/react@4.2.6": + resolution: + { + integrity: sha512-91RicDR+H7oDSyPycI13q3b7o4O60wa2oRbjlz2fyRLmHImc4vyDwuUP8NtZaN0VARJY5hybvDYrFzhY9+Lbyw==, + } + peerDependencies: + react: ">=16.8" + react-dom: ">=16.8" + + "@ton-community/ton-ledger@7.0.1": + resolution: + { + integrity: sha512-4QDjG9D/c3vKyApKa36KfqyE0UcPn/ExSJvCb8Cd03BdhMiZQNvm7tJsKg12lslPCIbl1dW9ZC6fg1RvqAAqnQ==, + } + peerDependencies: + "@ton/core": ">=0.52.2" + + "@ton/core@0.56.3": + resolution: + { + integrity: sha512-HVkalfqw8zqLLPehtq0CNhu5KjVzc7IrbDwDHPjGoOSXmnqSobiWj8a5F+YuWnZnEbQKtrnMGNOOjVw4LG37rg==, + } + peerDependencies: + "@ton/crypto": ">=3.2.0" + + "@ton/crypto-primitives@2.1.0": + resolution: + { + integrity: sha512-PQesoyPgqyI6vzYtCXw4/ZzevePc4VGcJtFwf08v10OevVJHVfW238KBdpj1kEDQkxWLeuNHEpTECNFKnP6tow==, + } + + "@ton/crypto@3.3.0": + resolution: + { + integrity: sha512-/A6CYGgA/H36OZ9BbTaGerKtzWp50rg67ZCH2oIjV1NcrBaCK9Z343M+CxedvM7Haf3f/Ee9EhxyeTp0GKMUpA==, + } + + "@ton/ton@13.11.2": + resolution: + { + integrity: sha512-EPqW+ZTe0MmfqguJEIGMuAqTAFRKMEce95HlDx8h6CGn2y3jiMgV1/oO+WpDIOiX+1wnTu+xtajk8JTWr8nKRQ==, + } + peerDependencies: + "@ton/core": ">=0.56.0" + "@ton/crypto": ">=3.2.0" + + "@tootallnate/once@1.1.2": + resolution: + { + integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==, + } + engines: { node: ">= 6" } + + "@tootallnate/once@2.0.0": + resolution: + { + integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==, + } + engines: { node: ">= 10" } + + "@tronweb3/google-protobuf@3.21.2": + resolution: + { + integrity: sha512-IVcT2GfWX3K6tHUVhs14NP5uzKhQt4KeDya1g9ACxuZsUzsaoGUIGzceK2Ltu7xp1YV94AaHOf4yxLAivlvEkQ==, + } + + "@trust/keyto@1.0.1": + resolution: + { + integrity: sha512-OXTmKkrnkwktCX86XA7eWs1TQ6u64enm0syzAfNhjigbuGLy5aLhbhRYWtjt4zzdG/irWudluheRZ9Ic9pCwsA==, + } + + "@trysound/sax@0.2.0": + resolution: + { + integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==, + } + engines: { node: ">=10.13.0" } + + "@tsconfig/node10@1.0.11": + resolution: + { + integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==, + } + + "@tsconfig/node12@1.0.11": + resolution: + { + integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==, + } + + "@tsconfig/node14@1.0.3": + resolution: + { + integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==, + } + + "@tsconfig/node16@1.0.4": + resolution: + { + integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==, + } + + "@tsconfig/recommended@1.0.6": + resolution: + { + integrity: sha512-0IKu9GHYF1NGTJiYgfWwqnOQSlnE9V9R7YohHNNf0/fj/SyOZWzdd06JFr0fLpg1Mqw0kGbYg8w5xdkSqLKM9g==, + } + + "@types/accepts@1.3.7": + resolution: + { + integrity: sha512-Pay9fq2lM2wXPWbteBsRAGiWH2hig4ZE2asK+mm7kUzlxRTfL961rj89I6zV/E3PcIkDqyuBEcMxFT7rccugeQ==, + } + + "@types/acorn@4.0.6": + resolution: + { + integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==, + } + + "@types/aria-query@5.0.4": + resolution: + { + integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==, + } + + "@types/axios@0.14.0": + resolution: + { + integrity: sha512-KqQnQbdYE54D7oa/UmYVMZKq7CO4l8DEENzOKc4aBRwxCXSlJXGz83flFx5L7AWrOQnmuN3kVsRdt+GZPPjiVQ==, + } deprecated: This is a stub types definition for axios (https://github.com/mzabriskie/axios). axios provides its own type definitions, so you don't need @types/axios installed! - '@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.5': - resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==} - - '@types/bchaddrjs@0.4.3': - resolution: {integrity: sha512-KJT+Tz39T/Y8/WMijiL4DXhaaUODytoXxvLpwIvI+WwLzfKR4kLrnzLyuIId245GjsVSvK3T9qz/fbvK+//b5w==} - - '@types/blake2b@2.1.3': - resolution: {integrity: sha512-MFCdX0MNxFBP/xEILO5Td0kv6nI7+Q2iRWZbTL/yzH2/eDVZS5Wd1LHdsmXClvsCyzqaZfHFzZaN6BUeUCfSDA==} - - '@types/bluebird@3.5.42': - resolution: {integrity: sha512-Jhy+MWRlro6UjVi578V/4ZGNfeCOcNCp0YaFNIUGFKlImowqwb1O/22wDVk3FDGMLqxdpOV3qQHD5fPEH4hK6A==} - - '@types/bn.js@4.11.6': - resolution: {integrity: sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==} - - '@types/bn.js@5.1.5': - resolution: {integrity: sha512-V46N0zwKRF5Q00AZ6hWtN0T8gGmDUaUzLWQvHFo5yThtVwK/VCenFY3wXVbOvNfajEpsTfQM4IN9k/d6gUVX3A==} - - '@types/body-parser@1.19.5': - resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} - - '@types/bonjour@3.5.13': - resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} - - '@types/bs58@4.0.4': - resolution: {integrity: sha512-0IEpMFXXQi2zXaXl9GJ3sRwQo0uEkD+yFOv+FnAU5lkPtcu6h61xb7jc2CFPEZ5BUOaiP13ThuGc9HD4R8lR5g==} - - '@types/bs58check@2.1.2': - resolution: {integrity: sha512-xpXaQlOIY1KoXlA/ytHGHpEIU87PJt+g9SH7nC6HdCgaBwT2IEZIwBMHbjuX6BpnfbiUMlmwqurdLDwXpcdmSA==} - - '@types/btoa-lite@1.0.2': - resolution: {integrity: sha512-ZYbcE2x7yrvNFJiU7xJGrpF/ihpkM7zKgw8bha3LNJSesvTtUNxbpzaT7WXBIryf6jovisrxTBvymxMeLLj1Mg==} - - '@types/cacheable-request@6.0.3': - resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} - - '@types/cashaddrjs@0.3.3': - resolution: {integrity: sha512-eZ4NOd1bR5SCccmb3y76BSTPfFGHNe6G7dcJq4OuGV5mt7NNnLhl/UCWz5WJNdpqochsm09czLJY+I+/OsKv2g==} - - '@types/cbor@6.0.0': - resolution: {integrity: sha512-mGQ1lbYOwVti5Xlarn1bTeBZqgY0kstsdjnkoEovgohYKdBjGejHyNGXHdMBeqyQazIv32Jjp33+5pBEaSRy2w==} + "@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.5": + resolution: + { + integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==, + } + + "@types/bchaddrjs@0.4.3": + resolution: + { + integrity: sha512-KJT+Tz39T/Y8/WMijiL4DXhaaUODytoXxvLpwIvI+WwLzfKR4kLrnzLyuIId245GjsVSvK3T9qz/fbvK+//b5w==, + } + + "@types/blake2b@2.1.3": + resolution: + { + integrity: sha512-MFCdX0MNxFBP/xEILO5Td0kv6nI7+Q2iRWZbTL/yzH2/eDVZS5Wd1LHdsmXClvsCyzqaZfHFzZaN6BUeUCfSDA==, + } + + "@types/bluebird@3.5.42": + resolution: + { + integrity: sha512-Jhy+MWRlro6UjVi578V/4ZGNfeCOcNCp0YaFNIUGFKlImowqwb1O/22wDVk3FDGMLqxdpOV3qQHD5fPEH4hK6A==, + } + + "@types/bn.js@4.11.6": + resolution: + { + integrity: sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==, + } + + "@types/bn.js@5.1.5": + resolution: + { + integrity: sha512-V46N0zwKRF5Q00AZ6hWtN0T8gGmDUaUzLWQvHFo5yThtVwK/VCenFY3wXVbOvNfajEpsTfQM4IN9k/d6gUVX3A==, + } + + "@types/body-parser@1.19.5": + resolution: + { + integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==, + } + + "@types/bonjour@3.5.13": + resolution: + { + integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==, + } + + "@types/bs58@4.0.4": + resolution: + { + integrity: sha512-0IEpMFXXQi2zXaXl9GJ3sRwQo0uEkD+yFOv+FnAU5lkPtcu6h61xb7jc2CFPEZ5BUOaiP13ThuGc9HD4R8lR5g==, + } + + "@types/bs58check@2.1.2": + resolution: + { + integrity: sha512-xpXaQlOIY1KoXlA/ytHGHpEIU87PJt+g9SH7nC6HdCgaBwT2IEZIwBMHbjuX6BpnfbiUMlmwqurdLDwXpcdmSA==, + } + + "@types/btoa-lite@1.0.2": + resolution: + { + integrity: sha512-ZYbcE2x7yrvNFJiU7xJGrpF/ihpkM7zKgw8bha3LNJSesvTtUNxbpzaT7WXBIryf6jovisrxTBvymxMeLLj1Mg==, + } + + "@types/cacheable-request@6.0.3": + resolution: + { + integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==, + } + + "@types/cashaddrjs@0.3.3": + resolution: + { + integrity: sha512-eZ4NOd1bR5SCccmb3y76BSTPfFGHNe6G7dcJq4OuGV5mt7NNnLhl/UCWz5WJNdpqochsm09czLJY+I+/OsKv2g==, + } + + "@types/cbor@6.0.0": + resolution: + { + integrity: sha512-mGQ1lbYOwVti5Xlarn1bTeBZqgY0kstsdjnkoEovgohYKdBjGejHyNGXHdMBeqyQazIv32Jjp33+5pBEaSRy2w==, + } deprecated: This is a stub types definition. cbor provides its own type definitions, so you do not need this installed. - '@types/chart.js@2.9.41': - resolution: {integrity: sha512-3dvkDvueckY83UyUXtJMalYoH6faOLkWQoaTlJgB4Djde3oORmNP0Jw85HtzTuXyliUHcdp704s0mZFQKio/KQ==} - - '@types/color-convert@2.0.3': - resolution: {integrity: sha512-2Q6wzrNiuEvYxVQqhh7sXM2mhIhvZR/Paq4FdsQkOMgWsCIkKvSGj8Le1/XalulrmgOzPMqNa0ix+ePY4hTrfg==} - - '@types/color-name@1.1.3': - resolution: {integrity: sha512-87W6MJCKZYDhLAx/J1ikW8niMvmGRyY+rpUxWpL1cO7F8Uu5CHuQoFv+R0/L5pgNdW4jTyda42kv60uwVIPjLw==} - - '@types/color@3.0.6': - resolution: {integrity: sha512-NMiNcZFRUAiUUCCf7zkAelY8eV3aKqfbzyFQlXpPIEeoNDbsEHGpb854V3gzTsGKYj830I5zPuOwU/TP5/cW6A==} - - '@types/command-line-args@5.2.3': - resolution: {integrity: sha512-uv0aG6R0Y8WHZLTamZwtfsDLVRnOa+n+n5rEvFWL5Na5gZ8V2Teab/duDPFzIIIhs9qizDpcavCusCLJZu62Kw==} - - '@types/connect-history-api-fallback@1.5.4': - resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} - - '@types/connect@3.4.36': - resolution: {integrity: sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==} - - '@types/connect@3.4.38': - resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} - - '@types/content-disposition@0.5.8': - resolution: {integrity: sha512-QVSSvno3dE0MgO76pJhmv4Qyi/j0Yk9pBp0Y7TJ2Tlj+KCgJWY6qX7nnxCOLkZ3VYRSIk1WTxCvwUSdx6CCLdg==} - - '@types/cookie@0.6.0': - resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} - - '@types/cookies@0.9.0': - resolution: {integrity: sha512-40Zk8qR147RABiQ7NQnBzWzDcjKzNrntB5BAmeGCb2p/MIyOE+4BVvc17wumsUqUw00bJYqoXFHYygQnEFh4/Q==} - - '@types/cors@2.8.17': - resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==} - - '@types/create-hmac@1.1.3': - resolution: {integrity: sha512-oDDSoBrAfdEPQuBpQp14y/ygUVU1IC6gq8Arm8IPP8TRC11AnLLYmpE3VvNUhPK/Ax3USGDjdE1Sc1LCIpf0NQ==} - - '@types/cross-spawn@6.0.6': - resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==} - - '@types/crypto-js@4.2.2': - resolution: {integrity: sha512-sDOLlVbHhXpAUAL0YHDUUwDZf3iN4Bwi4W6a0W0b+QcAezUbRtH4FVb+9J4h+XFPW7l/gQ9F8qC7P+Ec4k8QVQ==} - - '@types/d3-array@2.3.0': - resolution: {integrity: sha512-eBQLBDq0bcXW9K14ktZDL/oeTzhS7BIoyEb0ZQb7gq4kTI/nZD+OISrpmxFll9LIXp7gOmYk+yPPoxt3GeXtQg==} - - '@types/d3-path@3.1.0': - resolution: {integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==} - - '@types/d3-scale-chromatic@3.0.3': - resolution: {integrity: sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==} - - '@types/d3-scale@3.3.5': - resolution: {integrity: sha512-YOpKj0kIEusRf7ofeJcSZQsvKbnTwpe1DUF+P2qsotqG53kEsjm7EzzliqQxMkAWdkZcHrg5rRhB4JiDOQPX+A==} - - '@types/d3-scale@4.0.8': - resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==} - - '@types/d3-shape@3.1.6': - resolution: {integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==} - - '@types/d3-time@2.1.4': - resolution: {integrity: sha512-BTfLsxTeo7yFxI/haOOf1ZwJ6xKgQLT9dCp+EcmQv87Gox6X+oKl4mLKfO6fnWm3P22+A6DknMNEZany8ql2Rw==} - - '@types/d3-time@3.0.3': - resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==} - - '@types/debug@4.1.12': - resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} - - '@types/detect-port@1.3.5': - resolution: {integrity: sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==} - - '@types/doctrine@0.0.3': - resolution: {integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==} - - '@types/doctrine@0.0.9': - resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} - - '@types/ejs@3.1.5': - resolution: {integrity: sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==} - - '@types/elliptic@6.4.18': - resolution: {integrity: sha512-UseG6H5vjRiNpQvrhy4VF/JXdA3V/Fp5amvveaL+fs28BZ6xIKJBPnUPRlEaZpysD9MbpfaLi8lbl7PGUAkpWw==} - - '@types/emscripten@1.39.10': - resolution: {integrity: sha512-TB/6hBkYQJxsZHSqyeuO1Jt0AB/bW6G7rHt9g7lML7SOF6lbgcHvw/Lr+69iqN0qxgXLhWKScAon73JNnptuDw==} - - '@types/escodegen@0.0.6': - resolution: {integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==} - - '@types/eslint-scope@3.7.7': - resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} - - '@types/eslint@8.56.6': - resolution: {integrity: sha512-ymwc+qb1XkjT/gfoQwxIeHZ6ixH23A+tCT2ADSA/DPVKzAjwYkTXBMCQ/f6fe4wEa85Lhp26VPeUxI7wMhAi7A==} - - '@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@0.0.51': - resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} - - '@types/estree@1.0.5': - resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} - - '@types/ethereumjs-util@5.2.0': - resolution: {integrity: sha512-qwQgQqXXTRv2h2AlJef+tMEszLFkCB9dWnrJYIdAwqjubERXEc/geB+S3apRw0yQyTVnsBf8r6BhlrE8vx+3WQ==} - - '@types/events@3.0.3': - resolution: {integrity: sha512-trOc4AAUThEz9hapPtSd7wf5tiQKvTtu5b371UxXdTuqzIh0ArcRspRP0i0Viu+LXstIQ1z96t1nsPxT9ol01g==} - - '@types/express-serve-static-core@4.17.43': - resolution: {integrity: sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==} - - '@types/express@4.17.21': - resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} - - '@types/extend@3.0.4': - resolution: {integrity: sha512-ArMouDUTJEz1SQRpFsT2rIw7DeqICFv5aaVzLSIYMYQSLcwcGOfT3VyglQs/p7K3F7fT4zxr0NWxYZIdifD6dA==} - - '@types/find-cache-dir@3.2.1': - resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==} - - '@types/fs-extra@11.0.4': - resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==} - - '@types/fs-extra@9.0.13': - resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} - - '@types/glob@7.2.0': - resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} - - '@types/graceful-fs@4.1.9': - resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} - - '@types/hammerjs@2.0.45': - resolution: {integrity: sha512-qkcUlZmX6c4J8q45taBKTL3p+LbITgyx7qhlPYOdOHZB7B31K0mXbP5YA7i7SgDeEGuI9MnumiKPEMrxg8j3KQ==} - - '@types/hast@2.3.10': - resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} - - '@types/hast@3.0.4': - resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} - - '@types/history@4.7.11': - resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==} - - '@types/hoist-non-react-statics@3.3.5': - resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==} - peerDependencies: - '@types/react': '*' + "@types/chart.js@2.9.41": + resolution: + { + integrity: sha512-3dvkDvueckY83UyUXtJMalYoH6faOLkWQoaTlJgB4Djde3oORmNP0Jw85HtzTuXyliUHcdp704s0mZFQKio/KQ==, + } + + "@types/color-convert@2.0.3": + resolution: + { + integrity: sha512-2Q6wzrNiuEvYxVQqhh7sXM2mhIhvZR/Paq4FdsQkOMgWsCIkKvSGj8Le1/XalulrmgOzPMqNa0ix+ePY4hTrfg==, + } + + "@types/color-name@1.1.3": + resolution: + { + integrity: sha512-87W6MJCKZYDhLAx/J1ikW8niMvmGRyY+rpUxWpL1cO7F8Uu5CHuQoFv+R0/L5pgNdW4jTyda42kv60uwVIPjLw==, + } + + "@types/color@3.0.6": + resolution: + { + integrity: sha512-NMiNcZFRUAiUUCCf7zkAelY8eV3aKqfbzyFQlXpPIEeoNDbsEHGpb854V3gzTsGKYj830I5zPuOwU/TP5/cW6A==, + } + + "@types/command-line-args@5.2.3": + resolution: + { + integrity: sha512-uv0aG6R0Y8WHZLTamZwtfsDLVRnOa+n+n5rEvFWL5Na5gZ8V2Teab/duDPFzIIIhs9qizDpcavCusCLJZu62Kw==, + } + + "@types/connect-history-api-fallback@1.5.4": + resolution: + { + integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==, + } + + "@types/connect@3.4.36": + resolution: + { + integrity: sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==, + } + + "@types/connect@3.4.38": + resolution: + { + integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==, + } + + "@types/content-disposition@0.5.8": + resolution: + { + integrity: sha512-QVSSvno3dE0MgO76pJhmv4Qyi/j0Yk9pBp0Y7TJ2Tlj+KCgJWY6qX7nnxCOLkZ3VYRSIk1WTxCvwUSdx6CCLdg==, + } + + "@types/cookie@0.6.0": + resolution: + { + integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==, + } + + "@types/cookies@0.9.0": + resolution: + { + integrity: sha512-40Zk8qR147RABiQ7NQnBzWzDcjKzNrntB5BAmeGCb2p/MIyOE+4BVvc17wumsUqUw00bJYqoXFHYygQnEFh4/Q==, + } + + "@types/cors@2.8.17": + resolution: + { + integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==, + } + + "@types/create-hmac@1.1.3": + resolution: + { + integrity: sha512-oDDSoBrAfdEPQuBpQp14y/ygUVU1IC6gq8Arm8IPP8TRC11AnLLYmpE3VvNUhPK/Ax3USGDjdE1Sc1LCIpf0NQ==, + } + + "@types/cross-spawn@6.0.6": + resolution: + { + integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==, + } + + "@types/crypto-js@4.2.2": + resolution: + { + integrity: sha512-sDOLlVbHhXpAUAL0YHDUUwDZf3iN4Bwi4W6a0W0b+QcAezUbRtH4FVb+9J4h+XFPW7l/gQ9F8qC7P+Ec4k8QVQ==, + } + + "@types/d3-array@2.3.0": + resolution: + { + integrity: sha512-eBQLBDq0bcXW9K14ktZDL/oeTzhS7BIoyEb0ZQb7gq4kTI/nZD+OISrpmxFll9LIXp7gOmYk+yPPoxt3GeXtQg==, + } + + "@types/d3-path@3.1.0": + resolution: + { + integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==, + } + + "@types/d3-scale-chromatic@3.0.3": + resolution: + { + integrity: sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==, + } + + "@types/d3-scale@3.3.5": + resolution: + { + integrity: sha512-YOpKj0kIEusRf7ofeJcSZQsvKbnTwpe1DUF+P2qsotqG53kEsjm7EzzliqQxMkAWdkZcHrg5rRhB4JiDOQPX+A==, + } + + "@types/d3-scale@4.0.8": + resolution: + { + integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==, + } + + "@types/d3-shape@3.1.6": + resolution: + { + integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==, + } + + "@types/d3-time@2.1.4": + resolution: + { + integrity: sha512-BTfLsxTeo7yFxI/haOOf1ZwJ6xKgQLT9dCp+EcmQv87Gox6X+oKl4mLKfO6fnWm3P22+A6DknMNEZany8ql2Rw==, + } + + "@types/d3-time@3.0.3": + resolution: + { + integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==, + } + + "@types/debug@4.1.12": + resolution: + { + integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==, + } + + "@types/detect-port@1.3.5": + resolution: + { + integrity: sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==, + } + + "@types/doctrine@0.0.3": + resolution: + { + integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==, + } + + "@types/doctrine@0.0.9": + resolution: + { + integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==, + } + + "@types/ejs@3.1.5": + resolution: + { + integrity: sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==, + } + + "@types/elliptic@6.4.18": + resolution: + { + integrity: sha512-UseG6H5vjRiNpQvrhy4VF/JXdA3V/Fp5amvveaL+fs28BZ6xIKJBPnUPRlEaZpysD9MbpfaLi8lbl7PGUAkpWw==, + } + + "@types/emscripten@1.39.10": + resolution: + { + integrity: sha512-TB/6hBkYQJxsZHSqyeuO1Jt0AB/bW6G7rHt9g7lML7SOF6lbgcHvw/Lr+69iqN0qxgXLhWKScAon73JNnptuDw==, + } + + "@types/escodegen@0.0.6": + resolution: + { + integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==, + } + + "@types/eslint-scope@3.7.7": + resolution: + { + integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==, + } + + "@types/eslint@8.56.6": + resolution: + { + integrity: sha512-ymwc+qb1XkjT/gfoQwxIeHZ6ixH23A+tCT2ADSA/DPVKzAjwYkTXBMCQ/f6fe4wEa85Lhp26VPeUxI7wMhAi7A==, + } + + "@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@0.0.51": + resolution: + { + integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==, + } + + "@types/estree@1.0.5": + resolution: + { + integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==, + } + + "@types/ethereumjs-util@5.2.0": + resolution: + { + integrity: sha512-qwQgQqXXTRv2h2AlJef+tMEszLFkCB9dWnrJYIdAwqjubERXEc/geB+S3apRw0yQyTVnsBf8r6BhlrE8vx+3WQ==, + } + + "@types/events@3.0.3": + resolution: + { + integrity: sha512-trOc4AAUThEz9hapPtSd7wf5tiQKvTtu5b371UxXdTuqzIh0ArcRspRP0i0Viu+LXstIQ1z96t1nsPxT9ol01g==, + } + + "@types/express-serve-static-core@4.17.43": + resolution: + { + integrity: sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==, + } + + "@types/express@4.17.21": + resolution: + { + integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==, + } + + "@types/extend@3.0.4": + resolution: + { + integrity: sha512-ArMouDUTJEz1SQRpFsT2rIw7DeqICFv5aaVzLSIYMYQSLcwcGOfT3VyglQs/p7K3F7fT4zxr0NWxYZIdifD6dA==, + } + + "@types/find-cache-dir@3.2.1": + resolution: + { + integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==, + } + + "@types/fs-extra@11.0.4": + resolution: + { + integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==, + } + + "@types/fs-extra@9.0.13": + resolution: + { + integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==, + } + + "@types/glob@7.2.0": + resolution: + { + integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==, + } + + "@types/graceful-fs@4.1.9": + resolution: + { + integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==, + } + + "@types/hammerjs@2.0.45": + resolution: + { + integrity: sha512-qkcUlZmX6c4J8q45taBKTL3p+LbITgyx7qhlPYOdOHZB7B31K0mXbP5YA7i7SgDeEGuI9MnumiKPEMrxg8j3KQ==, + } + + "@types/hast@2.3.10": + resolution: + { + integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==, + } + + "@types/hast@3.0.4": + resolution: + { + integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==, + } + + "@types/history@4.7.11": + resolution: + { + integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==, + } + + "@types/hoist-non-react-statics@3.3.5": + resolution: + { + integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==, + } + peerDependencies: + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/html-minifier-terser@6.1.0': - resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} - - '@types/http-assert@1.5.5': - resolution: {integrity: sha512-4+tE/lwdAahgZT1g30Jkdm9PzFRde0xwxBNUyRsCitRvCQB90iuA2uJYdUnhnANRcqGXaWOGY4FEoxeElNAK2g==} - - '@types/http-cache-semantics@4.0.4': - resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} - - '@types/http-errors@2.0.4': - resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} - - '@types/http-proxy@1.17.14': - resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} - - '@types/imurmurhash@0.1.4': - resolution: {integrity: sha512-Zo/QlTiAvOP3pd9nuPOw33k0l/QssLOBrriShWzUE4qhIZByIF3rCoyF8ZTxdyFTUM2mYljYLqMUeLvA3NJUmQ==} - - '@types/invariant@2.2.37': - resolution: {integrity: sha512-IwpIMieE55oGWiXkQPSBY1nw1nFs6bsKXTFskNY8sdS17K24vyEBRQZEwlRS7ZmXCWnJcQtbxWzly+cODWGs2A==} - - '@types/is-function@1.0.3': - resolution: {integrity: sha512-/CLhCW79JUeLKznI6mbVieGbl4QU5Hfn+6udw1YHZoofASjbQ5zaP5LzAUZYDpRYEjS4/P+DhEgyJ/PQmGGTWw==} - - '@types/istanbul-lib-coverage@2.0.6': - resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} - - '@types/istanbul-lib-report@3.0.3': - resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} - - '@types/istanbul-reports@3.0.4': - resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} - - '@types/jest@27.5.2': - resolution: {integrity: sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==} - - '@types/jest@28.1.8': - resolution: {integrity: sha512-8TJkV++s7B6XqnDrzR1m/TT0A0h948Pnl/097veySPN67VRAgQ4gZ7n2KfJo2rVq6njQjdxU3GCCyDvAeuHoiw==} - - '@types/jest@29.5.12': - resolution: {integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==} - - '@types/js-yaml@4.0.9': - resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==} - - '@types/jsdom@16.2.15': - resolution: {integrity: sha512-nwF87yjBKuX/roqGYerZZM0Nv1pZDMAT5YhOHYeM/72Fic+VEqJh4nyoqoapzJnW3pUlfxPY5FhgsJtM+dRnQQ==} - - '@types/jsdom@20.0.1': - resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} - - '@types/json-schema@7.0.15': - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} - - '@types/json5@0.0.29': - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} - - '@types/jsonfile@6.1.4': - resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==} - - '@types/jsonwebtoken@9.0.6': - resolution: {integrity: sha512-/5hndP5dCjloafCXns6SZyESp3Ldq7YjH3zwzwczYnjxIT0Fqzk5ROSYVGfFyczIue7IUEj8hkvLbPoLQ18vQw==} - - '@types/katex@0.16.7': - resolution: {integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==} - - '@types/keygrip@1.0.6': - resolution: {integrity: sha512-lZuNAY9xeJt7Bx4t4dx0rYCDqGPW8RXhQZK1td7d4H6E9zYbLoOtjBvfwdTKpsyxQI/2jv+armjX/RW+ZNpXOQ==} - - '@types/keyv@3.1.4': - resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} - - '@types/koa-compose@3.2.8': - resolution: {integrity: sha512-4Olc63RY+MKvxMwVknCUDhRQX1pFQoBZ/lXcRLP69PQkEpze/0cr8LNqJQe5NFb/b19DWi2a5bTi2VAlQzhJuA==} - - '@types/koa@2.14.0': - resolution: {integrity: sha512-DTDUyznHGNHAl+wd1n0z1jxNajduyTh8R53xoewuerdBzGo6Ogj6F2299BFtrexJw4NtgjsI5SMPCmV9gZwGXA==} - - '@types/koa__router@12.0.3': - resolution: {integrity: sha512-5YUJVv6NwM1z7m6FuYpKfNLTZ932Z6EF6xy2BbtpJSyn13DKNQEkXVffFVSnJHxvwwWh2SAeumpjAYUELqgjyw==} - - '@types/ledgerhq__hw-transport@4.21.8': - resolution: {integrity: sha512-uO2AJYZUVCwgyqgyy2/KW+JsQaO0hcwDdubRaHgF2ehO0ngGAY41PbE8qnPnmUw1uerMXONvL68QFioA7Y6C5g==} - - '@types/libsodium-wrappers@0.7.13': - resolution: {integrity: sha512-KeAKtlObirLJk/na6jHBFEdTDjDfFS6Vcr0eG2FjiHKn3Nw8axJFfIu0Y9TpwaauRldQBj/pZm/MHtK76r6OWg==} - - '@types/linkify-it@5.0.0': - resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==} - - '@types/lodash@4.17.0': - resolution: {integrity: sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==} - - '@types/lodash@4.17.4': - resolution: {integrity: sha512-wYCP26ZLxaT3R39kiN2+HcJ4kTd3U1waI/cY7ivWYqFP6pW3ZNpvi6Wd6PHZx7T/t8z0vlkXMg3QYLa7DZ/IJQ==} - - '@types/lodash@4.17.7': - resolution: {integrity: sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==} - - '@types/long@4.0.2': - resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==} - - '@types/markdown-it@14.1.1': - resolution: {integrity: sha512-4NpsnpYl2Gt1ljyBGrKMxFYAYvpqbnnkgP/i/g+NLpjEUa3obn1XJCur9YbEXKDAkaXqsR1LbDnGEJ0MmKFxfg==} - - '@types/mdast@3.0.15': - resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} - - '@types/mdast@4.0.4': - resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} - - '@types/mdurl@2.0.0': - resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==} - - '@types/mdx@2.0.12': - resolution: {integrity: sha512-H9VZ9YqE+H28FQVchC83RCs5xQ2J7mAAv6qdDEaWmXEVl3OpdH+xfrSUzQ1lp7U7oSTRZ0RvW08ASPJsYBi7Cw==} - - '@types/mime-types@2.1.4': - resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==} - - '@types/mime@1.3.5': - resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} - - '@types/mime@3.0.4': - resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==} - - '@types/minimatch@5.1.2': - resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} - - '@types/minimist@1.2.5': - resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} - - '@types/ms@0.7.34': - resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} - - '@types/mute-stream@0.0.4': - resolution: {integrity: sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==} - - '@types/mysql@2.15.22': - resolution: {integrity: sha512-wK1pzsJVVAjYCSZWQoWHziQZbNggXFDUEIGf54g4ZM/ERuP86uGdWeKZWMYlqTPMZfHJJvLPyogXGvCOg87yLQ==} - - '@types/node-fetch@2.6.11': - resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==} - - '@types/node-forge@1.3.11': - resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} - - '@types/node-hid@1.3.4': - resolution: {integrity: sha512-0ootpsYetN9vjqkDSwm/cA4fk/9yGM/PO0X8SLPE/BzXlUaBelImMWMymtF9QEoEzxY0pnhcROIJM0CNSUqO8w==} - - '@types/node@10.12.18': - resolution: {integrity: sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ==} - - '@types/node@10.17.60': - resolution: {integrity: sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==} - - '@types/node@11.11.6': - resolution: {integrity: sha512-Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ==} - - '@types/node@12.20.55': - resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} - - '@types/node@13.13.52': - resolution: {integrity: sha512-s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ==} - - '@types/node@18.15.13': - resolution: {integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==} - - '@types/node@18.19.26': - resolution: {integrity: sha512-+wiMJsIwLOYCvUqSdKTrfkS8mpTp+MPINe6+Np4TAGFWWRWiBQ5kSq9nZGCSPkzx9mvT+uEukzpX4MOSCydcvw==} - - '@types/node@20.12.12': - resolution: {integrity: sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==} - - '@types/node@20.5.1': - resolution: {integrity: sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==} - - '@types/node@20.8.10': - resolution: {integrity: sha512-TlgT8JntpcbmKUFzjhsyhGfP2fsiz1Mv56im6enJ905xG1DAYesxJaeSbGqQmAw8OWPdhyJGhGSQGKRNJ45u9w==} - - '@types/normalize-package-data@2.4.4': - resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} - - '@types/numeral@2.0.5': - resolution: {integrity: sha512-kH8I7OSSwQu9DS9JYdFWbuvhVzvFRoCPCkGxNwoGgaPeDfEPJlcxNvEOypZhQ3XXHsGbfIuYcxcJxKUfJHnRfw==} - - '@types/object-hash@2.2.1': - resolution: {integrity: sha512-i/rtaJFCsPljrZvP/akBqEwUP2y5cZLOmvO+JaYnz01aPknrQ+hB5MRcO7iqCUsFaYfTG8kGfKUyboA07xeDHQ==} - - '@types/pako@2.0.3': - resolution: {integrity: sha512-bq0hMV9opAcrmE0Byyo0fY3Ew4tgOevJmQ9grUhpXQhYfyLJ1Kqg3P33JT5fdbT2AjeAjR51zqqVjAL/HMkx7Q==} - - '@types/parse-json@4.0.2': - resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} - - '@types/parse5@6.0.3': - resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==} - - '@types/pbkdf2@3.1.2': - resolution: {integrity: sha512-uRwJqmiXmh9++aSu1VNEn3iIxWOhd8AHXNSdlaLfdAAdSTY9jYVeGWnzejM3dvrkbqE3/hyQkQQ29IFATEGlew==} - - '@types/pg-pool@2.0.4': - resolution: {integrity: sha512-qZAvkv1K3QbmHHFYSNRYPkRjOWRLBYrL4B9c+wG0GSVGBw0NtJwPcgx/DSddeDJvRGMHCEQ4VMEVfuJ/0gZ3XQ==} - - '@types/pg@8.6.1': - resolution: {integrity: sha512-1Kc4oAGzAl7uqUStZCDvaLFqZrW9qWSjXOmBfdgyBP5La7Us6Mg4GBvRlSoaZMhQF/zSj1C8CtKMBkoiT8eL8w==} - - '@types/plist@3.0.2': - resolution: {integrity: sha512-ULqvZNGMv0zRFvqn8/4LSPtnmN4MfhlPNtJCTpKuIIxGVGZ2rYWzFXrvEBoh9CVyqSE7D6YFRJ1hydLHI6kbWw==} - - '@types/prettier@2.7.3': - resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} - - '@types/pretty-hrtime@1.0.3': - resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} - - '@types/prop-types@15.7.12': - resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} - - '@types/ps-tree@1.1.6': - resolution: {integrity: sha512-PtrlVaOaI44/3pl3cvnlK+GxOM3re2526TJvPvh7W+keHIXdV4TE0ylpPBAcvFQCbGitaTXwL9u+RF7qtVeazQ==} - - '@types/q@1.5.8': - resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==} - - '@types/qrcode@1.5.5': - resolution: {integrity: sha512-CdfBi/e3Qk+3Z/fXYShipBT13OJ2fDO2Q2w5CIP5anLTLIndQG9z6P1cnm+8zCWSpm5dnxMFd/uREtb0EXuQzg==} - - '@types/qs@6.9.14': - resolution: {integrity: sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==} - - '@types/range-parser@1.2.7': - resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - - '@types/react-dom@18.2.23': - resolution: {integrity: sha512-ZQ71wgGOTmDYpnav2knkjr3qXdAFu0vsk8Ci5w3pGAIdj7/kKAyn+VsQDhXsmzzzepAiI9leWMmubXz690AI/A==} - peerDependencies: - '@types/react': '*' + "@types/html-minifier-terser@6.1.0": + resolution: + { + integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==, + } + + "@types/http-assert@1.5.5": + resolution: + { + integrity: sha512-4+tE/lwdAahgZT1g30Jkdm9PzFRde0xwxBNUyRsCitRvCQB90iuA2uJYdUnhnANRcqGXaWOGY4FEoxeElNAK2g==, + } + + "@types/http-cache-semantics@4.0.4": + resolution: + { + integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==, + } + + "@types/http-errors@2.0.4": + resolution: + { + integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==, + } + + "@types/http-proxy@1.17.14": + resolution: + { + integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==, + } + + "@types/imurmurhash@0.1.4": + resolution: + { + integrity: sha512-Zo/QlTiAvOP3pd9nuPOw33k0l/QssLOBrriShWzUE4qhIZByIF3rCoyF8ZTxdyFTUM2mYljYLqMUeLvA3NJUmQ==, + } + + "@types/invariant@2.2.37": + resolution: + { + integrity: sha512-IwpIMieE55oGWiXkQPSBY1nw1nFs6bsKXTFskNY8sdS17K24vyEBRQZEwlRS7ZmXCWnJcQtbxWzly+cODWGs2A==, + } + + "@types/is-function@1.0.3": + resolution: + { + integrity: sha512-/CLhCW79JUeLKznI6mbVieGbl4QU5Hfn+6udw1YHZoofASjbQ5zaP5LzAUZYDpRYEjS4/P+DhEgyJ/PQmGGTWw==, + } + + "@types/istanbul-lib-coverage@2.0.6": + resolution: + { + integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==, + } + + "@types/istanbul-lib-report@3.0.3": + resolution: + { + integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==, + } + + "@types/istanbul-reports@1.1.2": + resolution: + { + integrity: sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==, + } + + "@types/istanbul-reports@3.0.4": + resolution: + { + integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==, + } + + "@types/jest@27.5.2": + resolution: + { + integrity: sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==, + } + + "@types/jest@28.1.8": + resolution: + { + integrity: sha512-8TJkV++s7B6XqnDrzR1m/TT0A0h948Pnl/097veySPN67VRAgQ4gZ7n2KfJo2rVq6njQjdxU3GCCyDvAeuHoiw==, + } + + "@types/jest@29.5.12": + resolution: + { + integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==, + } + + "@types/js-yaml@4.0.9": + resolution: + { + integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==, + } + + "@types/jsdom@16.2.15": + resolution: + { + integrity: sha512-nwF87yjBKuX/roqGYerZZM0Nv1pZDMAT5YhOHYeM/72Fic+VEqJh4nyoqoapzJnW3pUlfxPY5FhgsJtM+dRnQQ==, + } + + "@types/jsdom@20.0.1": + resolution: + { + integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==, + } + + "@types/json-schema@7.0.15": + resolution: + { + integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==, + } + + "@types/json5@0.0.29": + resolution: + { + integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, + } + + "@types/jsonfile@6.1.4": + resolution: + { + integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==, + } + + "@types/jsonwebtoken@9.0.6": + resolution: + { + integrity: sha512-/5hndP5dCjloafCXns6SZyESp3Ldq7YjH3zwzwczYnjxIT0Fqzk5ROSYVGfFyczIue7IUEj8hkvLbPoLQ18vQw==, + } + + "@types/katex@0.16.7": + resolution: + { + integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==, + } + + "@types/keygrip@1.0.6": + resolution: + { + integrity: sha512-lZuNAY9xeJt7Bx4t4dx0rYCDqGPW8RXhQZK1td7d4H6E9zYbLoOtjBvfwdTKpsyxQI/2jv+armjX/RW+ZNpXOQ==, + } + + "@types/keyv@3.1.4": + resolution: + { + integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==, + } + + "@types/koa-compose@3.2.8": + resolution: + { + integrity: sha512-4Olc63RY+MKvxMwVknCUDhRQX1pFQoBZ/lXcRLP69PQkEpze/0cr8LNqJQe5NFb/b19DWi2a5bTi2VAlQzhJuA==, + } + + "@types/koa@2.14.0": + resolution: + { + integrity: sha512-DTDUyznHGNHAl+wd1n0z1jxNajduyTh8R53xoewuerdBzGo6Ogj6F2299BFtrexJw4NtgjsI5SMPCmV9gZwGXA==, + } + + "@types/koa__router@12.0.3": + resolution: + { + integrity: sha512-5YUJVv6NwM1z7m6FuYpKfNLTZ932Z6EF6xy2BbtpJSyn13DKNQEkXVffFVSnJHxvwwWh2SAeumpjAYUELqgjyw==, + } + + "@types/ledgerhq__hw-transport@4.21.8": + resolution: + { + integrity: sha512-uO2AJYZUVCwgyqgyy2/KW+JsQaO0hcwDdubRaHgF2ehO0ngGAY41PbE8qnPnmUw1uerMXONvL68QFioA7Y6C5g==, + } + + "@types/libsodium-wrappers@0.7.13": + resolution: + { + integrity: sha512-KeAKtlObirLJk/na6jHBFEdTDjDfFS6Vcr0eG2FjiHKn3Nw8axJFfIu0Y9TpwaauRldQBj/pZm/MHtK76r6OWg==, + } + + "@types/linkify-it@5.0.0": + resolution: + { + integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==, + } + + "@types/lodash@4.17.0": + resolution: + { + integrity: sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==, + } + + "@types/lodash@4.17.4": + resolution: + { + integrity: sha512-wYCP26ZLxaT3R39kiN2+HcJ4kTd3U1waI/cY7ivWYqFP6pW3ZNpvi6Wd6PHZx7T/t8z0vlkXMg3QYLa7DZ/IJQ==, + } + + "@types/lodash@4.17.7": + resolution: + { + integrity: sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==, + } + + "@types/long@4.0.2": + resolution: + { + integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==, + } + + "@types/markdown-it@14.1.1": + resolution: + { + integrity: sha512-4NpsnpYl2Gt1ljyBGrKMxFYAYvpqbnnkgP/i/g+NLpjEUa3obn1XJCur9YbEXKDAkaXqsR1LbDnGEJ0MmKFxfg==, + } + + "@types/mdast@3.0.15": + resolution: + { + integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==, + } + + "@types/mdast@4.0.4": + resolution: + { + integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==, + } + + "@types/mdurl@2.0.0": + resolution: + { + integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==, + } + + "@types/mdx@2.0.12": + resolution: + { + integrity: sha512-H9VZ9YqE+H28FQVchC83RCs5xQ2J7mAAv6qdDEaWmXEVl3OpdH+xfrSUzQ1lp7U7oSTRZ0RvW08ASPJsYBi7Cw==, + } + + "@types/mime-types@2.1.4": + resolution: + { + integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==, + } + + "@types/mime@1.3.5": + resolution: + { + integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==, + } + + "@types/mime@3.0.4": + resolution: + { + integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==, + } + + "@types/minimatch@5.1.2": + resolution: + { + integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==, + } + + "@types/minimist@1.2.5": + resolution: + { + integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==, + } + + "@types/ms@0.7.34": + resolution: + { + integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==, + } + + "@types/mute-stream@0.0.4": + resolution: + { + integrity: sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==, + } + + "@types/mysql@2.15.22": + resolution: + { + integrity: sha512-wK1pzsJVVAjYCSZWQoWHziQZbNggXFDUEIGf54g4ZM/ERuP86uGdWeKZWMYlqTPMZfHJJvLPyogXGvCOg87yLQ==, + } + + "@types/node-fetch@2.6.11": + resolution: + { + integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==, + } + + "@types/node-forge@1.3.11": + resolution: + { + integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==, + } + + "@types/node-hid@1.3.4": + resolution: + { + integrity: sha512-0ootpsYetN9vjqkDSwm/cA4fk/9yGM/PO0X8SLPE/BzXlUaBelImMWMymtF9QEoEzxY0pnhcROIJM0CNSUqO8w==, + } + + "@types/node@10.12.18": + resolution: + { + integrity: sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ==, + } + + "@types/node@10.17.60": + resolution: + { + integrity: sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==, + } + + "@types/node@11.11.6": + resolution: + { + integrity: sha512-Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ==, + } + + "@types/node@12.20.55": + resolution: + { + integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==, + } + + "@types/node@13.13.52": + resolution: + { + integrity: sha512-s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ==, + } + + "@types/node@18.15.13": + resolution: + { + integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==, + } + + "@types/node@18.19.26": + resolution: + { + integrity: sha512-+wiMJsIwLOYCvUqSdKTrfkS8mpTp+MPINe6+Np4TAGFWWRWiBQ5kSq9nZGCSPkzx9mvT+uEukzpX4MOSCydcvw==, + } + + "@types/node@20.12.12": + resolution: + { + integrity: sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==, + } + + "@types/node@20.5.1": + resolution: + { + integrity: sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==, + } + + "@types/node@20.8.10": + resolution: + { + integrity: sha512-TlgT8JntpcbmKUFzjhsyhGfP2fsiz1Mv56im6enJ905xG1DAYesxJaeSbGqQmAw8OWPdhyJGhGSQGKRNJ45u9w==, + } + + "@types/normalize-package-data@2.4.4": + resolution: + { + integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==, + } + + "@types/numeral@2.0.5": + resolution: + { + integrity: sha512-kH8I7OSSwQu9DS9JYdFWbuvhVzvFRoCPCkGxNwoGgaPeDfEPJlcxNvEOypZhQ3XXHsGbfIuYcxcJxKUfJHnRfw==, + } + + "@types/object-hash@2.2.1": + resolution: + { + integrity: sha512-i/rtaJFCsPljrZvP/akBqEwUP2y5cZLOmvO+JaYnz01aPknrQ+hB5MRcO7iqCUsFaYfTG8kGfKUyboA07xeDHQ==, + } + + "@types/pako@2.0.3": + resolution: + { + integrity: sha512-bq0hMV9opAcrmE0Byyo0fY3Ew4tgOevJmQ9grUhpXQhYfyLJ1Kqg3P33JT5fdbT2AjeAjR51zqqVjAL/HMkx7Q==, + } + + "@types/parse-json@4.0.2": + resolution: + { + integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==, + } + + "@types/parse5@6.0.3": + resolution: + { + integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==, + } + + "@types/pbkdf2@3.1.2": + resolution: + { + integrity: sha512-uRwJqmiXmh9++aSu1VNEn3iIxWOhd8AHXNSdlaLfdAAdSTY9jYVeGWnzejM3dvrkbqE3/hyQkQQ29IFATEGlew==, + } + + "@types/pg-pool@2.0.4": + resolution: + { + integrity: sha512-qZAvkv1K3QbmHHFYSNRYPkRjOWRLBYrL4B9c+wG0GSVGBw0NtJwPcgx/DSddeDJvRGMHCEQ4VMEVfuJ/0gZ3XQ==, + } + + "@types/pg@8.6.1": + resolution: + { + integrity: sha512-1Kc4oAGzAl7uqUStZCDvaLFqZrW9qWSjXOmBfdgyBP5La7Us6Mg4GBvRlSoaZMhQF/zSj1C8CtKMBkoiT8eL8w==, + } + + "@types/plist@3.0.2": + resolution: + { + integrity: sha512-ULqvZNGMv0zRFvqn8/4LSPtnmN4MfhlPNtJCTpKuIIxGVGZ2rYWzFXrvEBoh9CVyqSE7D6YFRJ1hydLHI6kbWw==, + } + + "@types/prettier@2.7.3": + resolution: + { + integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==, + } + + "@types/pretty-hrtime@1.0.3": + resolution: + { + integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==, + } + + "@types/prop-types@15.7.12": + resolution: + { + integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==, + } + + "@types/ps-tree@1.1.6": + resolution: + { + integrity: sha512-PtrlVaOaI44/3pl3cvnlK+GxOM3re2526TJvPvh7W+keHIXdV4TE0ylpPBAcvFQCbGitaTXwL9u+RF7qtVeazQ==, + } + + "@types/q@1.5.8": + resolution: + { + integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==, + } + + "@types/qrcode@1.5.5": + resolution: + { + integrity: sha512-CdfBi/e3Qk+3Z/fXYShipBT13OJ2fDO2Q2w5CIP5anLTLIndQG9z6P1cnm+8zCWSpm5dnxMFd/uREtb0EXuQzg==, + } + + "@types/qs@6.9.14": + resolution: + { + integrity: sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==, + } + + "@types/range-parser@1.2.7": + resolution: + { + integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==, + } + + "@types/react-dom@18.2.23": + resolution: + { + integrity: sha512-ZQ71wgGOTmDYpnav2knkjr3qXdAFu0vsk8Ci5w3pGAIdj7/kKAyn+VsQDhXsmzzzepAiI9leWMmubXz690AI/A==, + } + peerDependencies: + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-dom@18.3.0': - resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} + "@types/react-dom@18.3.0": + resolution: + { + integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-inspector@4.0.6': - resolution: {integrity: sha512-fTOzxjP+Cve6TVfmmslm+qoD5x0L9aaeX23RONHSWr8pkMFNl5xadXH0oS3S0t3up8lCxmdb9FUCgesCndxn1A==} + "@types/react-inspector@4.0.6": + resolution: + { + integrity: sha512-fTOzxjP+Cve6TVfmmslm+qoD5x0L9aaeX23RONHSWr8pkMFNl5xadXH0oS3S0t3up8lCxmdb9FUCgesCndxn1A==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-is@17.0.7': - resolution: {integrity: sha512-WrTEiT+c6rgq36QApoy0063uAOdltCrhF0QMXLIgYPaTvIdQhAB8hPb5oGGqX18xToElNILS9UprwU6GyINcJg==} + "@types/react-is@17.0.7": + resolution: + { + integrity: sha512-WrTEiT+c6rgq36QApoy0063uAOdltCrhF0QMXLIgYPaTvIdQhAB8hPb5oGGqX18xToElNILS9UprwU6GyINcJg==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-key-handler@1.2.4': - resolution: {integrity: sha512-MgxXP5FfW9PqqbzhZ9P2p06MXdSAobuvFMmolnK0BPL8t5cxIR6gu4XCslnrANgRX3/qYHnWuZNzD/HlvG9CPA==} + "@types/react-key-handler@1.2.4": + resolution: + { + integrity: sha512-MgxXP5FfW9PqqbzhZ9P2p06MXdSAobuvFMmolnK0BPL8t5cxIR6gu4XCslnrANgRX3/qYHnWuZNzD/HlvG9CPA==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-lottie@1.2.10': - resolution: {integrity: sha512-rCd1p3US4ELKJlqwVnP0h5b24zt5p9OCvKUoNpYExLqwbFZMWEiJ6EGLMmH7nmq5V7KomBIbWO2X/XRFsL0vCA==} + "@types/react-lottie@1.2.10": + resolution: + { + integrity: sha512-rCd1p3US4ELKJlqwVnP0h5b24zt5p9OCvKUoNpYExLqwbFZMWEiJ6EGLMmH7nmq5V7KomBIbWO2X/XRFsL0vCA==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-motion@0.0.40': - resolution: {integrity: sha512-Bp6i9WTvW6QFN2E/XQPm8HPGMx1SVJ7H1DPsvptwWWh1XBymDZ7N7SK4nSZT/4tP4bTGvp1KHSAsswWZKO/WHA==} + "@types/react-motion@0.0.40": + resolution: + { + integrity: sha512-Bp6i9WTvW6QFN2E/XQPm8HPGMx1SVJ7H1DPsvptwWWh1XBymDZ7N7SK4nSZT/4tP4bTGvp1KHSAsswWZKO/WHA==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-native-extra-dimensions-android@1.2.3': - resolution: {integrity: sha512-g+Jkc+idhsqzUMWQZlcj132CUKdw/KG+NuGEoRAsWUwQDRVCnY/H4n0xdGxwf7GSdlSuoyjqb8ps7/quHihmRA==} + "@types/react-native-extra-dimensions-android@1.2.3": + resolution: + { + integrity: sha512-g+Jkc+idhsqzUMWQZlcj132CUKdw/KG+NuGEoRAsWUwQDRVCnY/H4n0xdGxwf7GSdlSuoyjqb8ps7/quHihmRA==, + } - '@types/react-native-vector-icons@6.4.18': - resolution: {integrity: sha512-YGlNWb+k5laTBHd7+uZowB9DpIK3SXUneZqAiKQaj1jnJCZM0x71GDim5JCTMi4IFkhc9m8H/Gm28T5BjyivUw==} + "@types/react-native-vector-icons@6.4.18": + resolution: + { + integrity: sha512-YGlNWb+k5laTBHd7+uZowB9DpIK3SXUneZqAiKQaj1jnJCZM0x71GDim5JCTMi4IFkhc9m8H/Gm28T5BjyivUw==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-native-video@5.0.20': - resolution: {integrity: sha512-CdD4T43uEKzTNJ/RylTDViNuGuyOPWQUEuA1Y9GY8T+HiE9cwYw1zQNqk8a7zz9GHamlPfJQ+bYoEE9OWjZ/6g==} + "@types/react-native-video@5.0.20": + resolution: + { + integrity: sha512-CdD4T43uEKzTNJ/RylTDViNuGuyOPWQUEuA1Y9GY8T+HiE9cwYw1zQNqk8a7zz9GHamlPfJQ+bYoEE9OWjZ/6g==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-native@0.70.19': - resolution: {integrity: sha512-c6WbyCgWTBgKKMESj/8b4w+zWcZSsCforson7UdXtXMecG3MxCinYi6ihhrHVPyUrVzORsvEzK8zg32z4pK6Sg==} + "@types/react-native@0.70.19": + resolution: + { + integrity: sha512-c6WbyCgWTBgKKMESj/8b4w+zWcZSsCforson7UdXtXMecG3MxCinYi6ihhrHVPyUrVzORsvEzK8zg32z4pK6Sg==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-redux@7.1.33': - resolution: {integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==} + "@types/react-redux@7.1.33": + resolution: + { + integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-router-dom@5.3.3': - resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} + "@types/react-router-dom@5.3.3": + resolution: + { + integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-router@5.1.20': - resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==} + "@types/react-router@5.1.20": + resolution: + { + integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-select@4.0.18': - resolution: {integrity: sha512-uCPRMPshd96BwHuT7oCrFduiv5d6km3VwmtW7rVl9g4XetS3VoJ9nZo540LiwtQgaFcW96POwaxQDZDAyYaepg==} + "@types/react-select@4.0.18": + resolution: + { + integrity: sha512-uCPRMPshd96BwHuT7oCrFduiv5d6km3VwmtW7rVl9g4XetS3VoJ9nZo540LiwtQgaFcW96POwaxQDZDAyYaepg==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-table@6.8.15': - resolution: {integrity: sha512-5+1Fv5aqvjEvfmjDhGyJgtA/spUSuTcUWSP8e2QS6vdFUdDeRiQmqDK+2619mm9htlmWMgb8vUMUlpsKXmUgRg==} + "@types/react-table@6.8.15": + resolution: + { + integrity: sha512-5+1Fv5aqvjEvfmjDhGyJgtA/spUSuTcUWSP8e2QS6vdFUdDeRiQmqDK+2619mm9htlmWMgb8vUMUlpsKXmUgRg==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-table@7.7.20': - resolution: {integrity: sha512-ahMp4pmjVlnExxNwxyaDrFgmKxSbPwU23sGQw2gJK4EhCvnvmib2s/O/+y1dfV57dXOwpr2plfyBol+vEHbi2w==} + "@types/react-table@7.7.20": + resolution: + { + integrity: sha512-ahMp4pmjVlnExxNwxyaDrFgmKxSbPwU23sGQw2gJK4EhCvnvmib2s/O/+y1dfV57dXOwpr2plfyBol+vEHbi2w==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-test-renderer@18.0.7': - resolution: {integrity: sha512-1+ANPOWc6rB3IkSnElhjv6VLlKg2dSv/OWClUyZimbLsQyBn8Js9Vtdsi3UICJ2rIQ3k2la06dkB+C92QfhKmg==} + "@types/react-test-renderer@18.0.7": + resolution: + { + integrity: sha512-1+ANPOWc6rB3IkSnElhjv6VLlKg2dSv/OWClUyZimbLsQyBn8Js9Vtdsi3UICJ2rIQ3k2la06dkB+C92QfhKmg==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-transition-group@4.4.10': - resolution: {integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==} + "@types/react-transition-group@4.4.10": + resolution: + { + integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-virtualized-auto-sizer@1.0.4': - resolution: {integrity: sha512-nhYwlFiYa8M3S+O2T9QO/e1FQUYMr/wJENUdf/O0dhRi1RS/93rjrYQFYdbUqtdFySuhrtnEDX29P6eKOttY+A==} + "@types/react-virtualized-auto-sizer@1.0.4": + resolution: + { + integrity: sha512-nhYwlFiYa8M3S+O2T9QO/e1FQUYMr/wJENUdf/O0dhRi1RS/93rjrYQFYdbUqtdFySuhrtnEDX29P6eKOttY+A==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-window-infinite-loader@1.0.9': - resolution: {integrity: sha512-gEInTjQwURCnDOFyIEK2+fWB5gTjqwx30O62QfxA9stE5aiB6EWkGj4UMhc0axq7/FV++Gs/TGW8FtgEx0S6Tw==} + "@types/react-window-infinite-loader@1.0.9": + resolution: + { + integrity: sha512-gEInTjQwURCnDOFyIEK2+fWB5gTjqwx30O62QfxA9stE5aiB6EWkGj4UMhc0axq7/FV++Gs/TGW8FtgEx0S6Tw==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react-window@1.8.8': - resolution: {integrity: sha512-8Ls660bHR1AUA2kuRvVG9D/4XpRC6wjAaPT9dil7Ckc76eP9TKWZwwmgfq8Q1LANX3QNDnoU4Zp48A3w+zK69Q==} + "@types/react-window@1.8.8": + resolution: + { + integrity: sha512-8Ls660bHR1AUA2kuRvVG9D/4XpRC6wjAaPT9dil7Ckc76eP9TKWZwwmgfq8Q1LANX3QNDnoU4Zp48A3w+zK69Q==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/react@18.2.73': - resolution: {integrity: sha512-XcGdod0Jjv84HOC7N5ziY3x+qL0AfmubvKOZ9hJjJ2yd5EE+KYjWhdOjt387e9HPheHkdggF9atTifMRtyAaRA==} - - '@types/react@18.3.5': - resolution: {integrity: sha512-WeqMfGJLGuLCqHGYRGHxnKrXcTitc6L/nBUWfWPcTarG3t9PsquqUMuVeXZeca+mglY4Vo5GZjCi0A3Or2lnxA==} - - '@types/redux-actions@2.6.5': - resolution: {integrity: sha512-RgXOigay5cNweP+xH1ru+Vaaj1xXYLpWIfSVO8cSA8Ii2xvR+HRfWYdLe1UVOA8X0kIklalGOa0DTDyld0obkg==} - - '@types/resolve@1.17.1': - resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} - - '@types/resolve@1.20.2': - resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} - - '@types/resolve@1.20.6': - resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} - - '@types/responselike@1.0.3': - resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} - - '@types/retry@0.12.0': - resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} - - '@types/retry@0.12.2': - resolution: {integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==} - - '@types/ripemd160@2.0.3': - resolution: {integrity: sha512-/GrtUuorXQGl4/qCgo0YhzHaDbWc6i2kIBt5q7gA0np+/5GmLMK6aYb0pUYFfJ4Y2oraKkrDW4falfLip3Hzdw==} - - '@types/secp256k1@4.0.6': - resolution: {integrity: sha512-hHxJU6PAEUn0TP4S/ZOzuTUvJWuZ6eIKeNKb5RBpODvSl6hp1Wrw4s7ATY50rklRCScUDpHzVA/DQdSjJ3UoYQ==} - - '@types/semver@7.5.7': - resolution: {integrity: sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg==} - - '@types/semver@7.5.8': - resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} - - '@types/send@0.17.4': - resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} - - '@types/serve-handler@6.1.4': - resolution: {integrity: sha512-aXy58tNie0NkuSCY291xUxl0X+kGYy986l4kqW6Gi4kEXgr6Tx0fpSH7YwUSa5usPpG3s9DBeIR6hHcDtL2IvQ==} - - '@types/serve-index@1.9.4': - resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} - - '@types/serve-static@1.15.5': - resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==} - - '@types/sha.js@2.4.4': - resolution: {integrity: sha512-Qukd+D6S2Hm0wLVt2Vh+/eWBIoUt+wF8jWjBsG4F8EFQRwKtYvtXCPcNl2OEUQ1R+eTr3xuSaBYUyM3WD1x/Qw==} - - '@types/shimmer@1.2.0': - resolution: {integrity: sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==} - - '@types/sockjs@0.3.36': - resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} - - '@types/stack-utils@2.0.3': - resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} - - '@types/statuses@2.0.5': - resolution: {integrity: sha512-jmIUGWrAiwu3dZpxntxieC+1n/5c3mjrImkmOSQ2NC5uP6cYO4aAZDdSmRcI5C1oiTmqlZGHC+/NmJrKogbP5A==} - - '@types/stream-chain@2.0.4': - resolution: {integrity: sha512-V7TsWLHrx79KumkHqSD7F8eR6POpEuWb6PuXJ7s/dRHAf3uVst3Jkp1yZ5XqIfECZLQ4a28vBVstTErmsMBvaQ==} - - '@types/stream-json@1.7.7': - resolution: {integrity: sha512-hHG7cLQ09H/m9i0jzL6UJAeLLxIWej90ECn0svO4T8J0nGcl89xZDQ2ujT4WKlvg0GWkcxJbjIDzW/v7BYUM6Q==} - - '@types/styled-components-react-native@5.2.5': - resolution: {integrity: sha512-hDYioy4gAusO9NJI0n1e0Dwne4zofRVjou8i+FdNNz4vOG/iEBS99Rl87ybytjx/WD3NXqZQJ5g98AA+ZW7JKA==} - peerDependencies: - '@types/react': '*' + "@types/react@18.2.73": + resolution: + { + integrity: sha512-XcGdod0Jjv84HOC7N5ziY3x+qL0AfmubvKOZ9hJjJ2yd5EE+KYjWhdOjt387e9HPheHkdggF9atTifMRtyAaRA==, + } + + "@types/react@18.3.5": + resolution: + { + integrity: sha512-WeqMfGJLGuLCqHGYRGHxnKrXcTitc6L/nBUWfWPcTarG3t9PsquqUMuVeXZeca+mglY4Vo5GZjCi0A3Or2lnxA==, + } + + "@types/redux-actions@2.6.5": + resolution: + { + integrity: sha512-RgXOigay5cNweP+xH1ru+Vaaj1xXYLpWIfSVO8cSA8Ii2xvR+HRfWYdLe1UVOA8X0kIklalGOa0DTDyld0obkg==, + } + + "@types/resolve@1.17.1": + resolution: + { + integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==, + } + + "@types/resolve@1.20.2": + resolution: + { + integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==, + } + + "@types/resolve@1.20.6": + resolution: + { + integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==, + } + + "@types/responselike@1.0.3": + resolution: + { + integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==, + } + + "@types/retry@0.12.0": + resolution: + { + integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==, + } + + "@types/retry@0.12.2": + resolution: + { + integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==, + } + + "@types/ripemd160@2.0.3": + resolution: + { + integrity: sha512-/GrtUuorXQGl4/qCgo0YhzHaDbWc6i2kIBt5q7gA0np+/5GmLMK6aYb0pUYFfJ4Y2oraKkrDW4falfLip3Hzdw==, + } + + "@types/secp256k1@4.0.6": + resolution: + { + integrity: sha512-hHxJU6PAEUn0TP4S/ZOzuTUvJWuZ6eIKeNKb5RBpODvSl6hp1Wrw4s7ATY50rklRCScUDpHzVA/DQdSjJ3UoYQ==, + } + + "@types/semver@7.5.7": + resolution: + { + integrity: sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg==, + } + + "@types/semver@7.5.8": + resolution: + { + integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==, + } + + "@types/send@0.17.4": + resolution: + { + integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==, + } + + "@types/serve-handler@6.1.4": + resolution: + { + integrity: sha512-aXy58tNie0NkuSCY291xUxl0X+kGYy986l4kqW6Gi4kEXgr6Tx0fpSH7YwUSa5usPpG3s9DBeIR6hHcDtL2IvQ==, + } + + "@types/serve-index@1.9.4": + resolution: + { + integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==, + } + + "@types/serve-static@1.15.5": + resolution: + { + integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==, + } + + "@types/sha.js@2.4.4": + resolution: + { + integrity: sha512-Qukd+D6S2Hm0wLVt2Vh+/eWBIoUt+wF8jWjBsG4F8EFQRwKtYvtXCPcNl2OEUQ1R+eTr3xuSaBYUyM3WD1x/Qw==, + } + + "@types/shimmer@1.2.0": + resolution: + { + integrity: sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==, + } + + "@types/sockjs@0.3.36": + resolution: + { + integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==, + } + + "@types/stack-utils@2.0.3": + resolution: + { + integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==, + } + + "@types/statuses@2.0.5": + resolution: + { + integrity: sha512-jmIUGWrAiwu3dZpxntxieC+1n/5c3mjrImkmOSQ2NC5uP6cYO4aAZDdSmRcI5C1oiTmqlZGHC+/NmJrKogbP5A==, + } + + "@types/stream-chain@2.0.4": + resolution: + { + integrity: sha512-V7TsWLHrx79KumkHqSD7F8eR6POpEuWb6PuXJ7s/dRHAf3uVst3Jkp1yZ5XqIfECZLQ4a28vBVstTErmsMBvaQ==, + } + + "@types/stream-json@1.7.7": + resolution: + { + integrity: sha512-hHG7cLQ09H/m9i0jzL6UJAeLLxIWej90ECn0svO4T8J0nGcl89xZDQ2ujT4WKlvg0GWkcxJbjIDzW/v7BYUM6Q==, + } + + "@types/styled-components-react-native@5.2.5": + resolution: + { + integrity: sha512-hDYioy4gAusO9NJI0n1e0Dwne4zofRVjou8i+FdNNz4vOG/iEBS99Rl87ybytjx/WD3NXqZQJ5g98AA+ZW7JKA==, + } + peerDependencies: + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/styled-components@5.1.34': - resolution: {integrity: sha512-mmiVvwpYklFIv9E8qfxuPyIt/OuyIrn6gMOAMOFUO3WJfSrSE+sGUoa4PiZj77Ut7bKZpaa6o1fBKS/4TOEvnA==} + "@types/styled-components@5.1.34": + resolution: + { + integrity: sha512-mmiVvwpYklFIv9E8qfxuPyIt/OuyIrn6gMOAMOFUO3WJfSrSE+sGUoa4PiZj77Ut7bKZpaa6o1fBKS/4TOEvnA==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true - '@types/styled-system@5.1.22': - resolution: {integrity: sha512-NbRp37zWcrf/+Qf2NumdyZfhSx1dzJ50zgfKvnezYJx1HTRUMVYY8jtWvK1eoIAa6F5sXwHLhE8oXNu15ThBAA==} - - '@types/stylis@4.2.0': - resolution: {integrity: sha512-n4sx2bqL0mW1tvDf/loQ+aMX7GQD3lc3fkCMC55VFNDu/vBOabO+LTIeXKM14xK0ppk5TUGcWRjiSpIlUpghKw==} - - '@types/supports-color@8.1.3': - resolution: {integrity: sha512-Hy6UMpxhE3j1tLpl27exp1XqHD7n8chAiNPzWfz16LPZoMMoSc4dzLl6w9qijkEb/r5O1ozdu1CWGA2L83ZeZg==} - - '@types/testing-library__jest-dom@5.14.9': - resolution: {integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==} - - '@types/tough-cookie@4.0.5': - resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} - - '@types/triple-beam@1.3.5': - resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==} - - '@types/trust__keyto@1.0.4': - resolution: {integrity: sha512-qUfZR9LG8txSmbYCGBWiy27yhr1aj7l8JVe8ocdSPnTmeVzslYNBHwRLUu5ITyvqAaQARgB7rA3gDOgph3vQTw==} - - '@types/trusted-types@2.0.7': - resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} - - '@types/tunnel@0.0.3': - resolution: {integrity: sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==} - - '@types/unist@2.0.10': - resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} - - '@types/unist@3.0.2': - resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} - - '@types/unzipper@0.10.9': - resolution: {integrity: sha512-vHbmFZAw8emNAOVkHVbS3qBnbr0x/qHQZ+ei1HE7Oy6Tyrptl+jpqnOX+BF5owcu/HZLOV0nJK+K9sjs1Ox2JA==} - - '@types/utf8@2.1.6': - resolution: {integrity: sha512-pRs2gYF5yoKYrgSaira0DJqVg2tFuF+Qjp838xS7K+mJyY2jJzjsrl6y17GbIa4uMRogMbxs+ghNCvKg6XyNrA==} - - '@types/uuid@8.3.4': - resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==} - - '@types/uuid@9.0.8': - resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==} - - '@types/verror@1.10.10': - resolution: {integrity: sha512-l4MM0Jppn18hb9xmM6wwD1uTdShpf9Pn80aXTStnK1C94gtPvJcV2FrDmbOQUAQfJ1cKZHktkQUDwEqaAKXMMg==} - - '@types/w3c-web-hid@1.0.6': - resolution: {integrity: sha512-IWyssXmRDo6K7s31dxf+U+x/XUWuVsl9qUIYbJmpUHPcTv/COfBCKw/F0smI45+gPV34brjyP30BFcIsHgYWLA==} - - '@types/w3c-web-usb@1.0.10': - resolution: {integrity: sha512-CHgUI5kTc/QLMP8hODUHhge0D4vx+9UiAwIGiT0sTy/B2XpdX1U5rJt6JSISgr6ikRT7vxV9EVAFeYZqUnl1gQ==} - - '@types/web-bluetooth@0.0.20': - resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==} - - '@types/webpack-env@1.18.4': - resolution: {integrity: sha512-I6e+9+HtWADAWeeJWDFQtdk4EVSAbj6Rtz4q8fJ7mSr1M0jzlFcs8/HZ+Xb5SHzVm1dxH7aUiI+A8kA8Gcrm0A==} - - '@types/which@3.0.3': - resolution: {integrity: sha512-2C1+XoY0huExTbs8MQv1DuS5FS86+SEjdM9F/+GS61gg5Hqbtj8ZiDSx8MfWcyei907fIPbfPGCOrNUTnVHY1g==} - - '@types/wrap-ansi@3.0.0': - resolution: {integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==} - - '@types/write-file-atomic@4.0.3': - resolution: {integrity: sha512-qdo+vZRchyJIHNeuI1nrpsLw+hnkgqP/8mlaN6Wle/NKhydHmUN9l4p3ZE8yP90AJNJW4uB8HQhedb4f1vNayQ==} - - '@types/ws@7.4.7': - resolution: {integrity: sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==} - - '@types/ws@8.5.10': - resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} - - '@types/yargs-parser@21.0.3': - resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} - - '@types/yargs@15.0.19': - resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} - - '@types/yargs@16.0.9': - resolution: {integrity: sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==} - - '@types/yargs@17.0.32': - resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} - - '@types/yauzl@2.10.3': - resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} - - '@typescript-eslint/eslint-plugin@5.62.0': - resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - '@typescript-eslint/parser': ^5.0.0 + "@types/styled-system@5.1.22": + resolution: + { + integrity: sha512-NbRp37zWcrf/+Qf2NumdyZfhSx1dzJ50zgfKvnezYJx1HTRUMVYY8jtWvK1eoIAa6F5sXwHLhE8oXNu15ThBAA==, + } + + "@types/stylis@4.2.0": + resolution: + { + integrity: sha512-n4sx2bqL0mW1tvDf/loQ+aMX7GQD3lc3fkCMC55VFNDu/vBOabO+LTIeXKM14xK0ppk5TUGcWRjiSpIlUpghKw==, + } + + "@types/supports-color@8.1.3": + resolution: + { + integrity: sha512-Hy6UMpxhE3j1tLpl27exp1XqHD7n8chAiNPzWfz16LPZoMMoSc4dzLl6w9qijkEb/r5O1ozdu1CWGA2L83ZeZg==, + } + + "@types/testing-library__jest-dom@5.14.9": + resolution: + { + integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==, + } + + "@types/tough-cookie@4.0.5": + resolution: + { + integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==, + } + + "@types/triple-beam@1.3.5": + resolution: + { + integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==, + } + + "@types/trust__keyto@1.0.4": + resolution: + { + integrity: sha512-qUfZR9LG8txSmbYCGBWiy27yhr1aj7l8JVe8ocdSPnTmeVzslYNBHwRLUu5ITyvqAaQARgB7rA3gDOgph3vQTw==, + } + + "@types/trusted-types@2.0.7": + resolution: + { + integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==, + } + + "@types/tunnel@0.0.3": + resolution: + { + integrity: sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==, + } + + "@types/unist@2.0.10": + resolution: + { + integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==, + } + + "@types/unist@3.0.2": + resolution: + { + integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==, + } + + "@types/unzipper@0.10.9": + resolution: + { + integrity: sha512-vHbmFZAw8emNAOVkHVbS3qBnbr0x/qHQZ+ei1HE7Oy6Tyrptl+jpqnOX+BF5owcu/HZLOV0nJK+K9sjs1Ox2JA==, + } + + "@types/utf8@2.1.6": + resolution: + { + integrity: sha512-pRs2gYF5yoKYrgSaira0DJqVg2tFuF+Qjp838xS7K+mJyY2jJzjsrl6y17GbIa4uMRogMbxs+ghNCvKg6XyNrA==, + } + + "@types/uuid@8.3.4": + resolution: + { + integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==, + } + + "@types/uuid@9.0.8": + resolution: + { + integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==, + } + + "@types/verror@1.10.10": + resolution: + { + integrity: sha512-l4MM0Jppn18hb9xmM6wwD1uTdShpf9Pn80aXTStnK1C94gtPvJcV2FrDmbOQUAQfJ1cKZHktkQUDwEqaAKXMMg==, + } + + "@types/w3c-web-hid@1.0.6": + resolution: + { + integrity: sha512-IWyssXmRDo6K7s31dxf+U+x/XUWuVsl9qUIYbJmpUHPcTv/COfBCKw/F0smI45+gPV34brjyP30BFcIsHgYWLA==, + } + + "@types/w3c-web-usb@1.0.10": + resolution: + { + integrity: sha512-CHgUI5kTc/QLMP8hODUHhge0D4vx+9UiAwIGiT0sTy/B2XpdX1U5rJt6JSISgr6ikRT7vxV9EVAFeYZqUnl1gQ==, + } + + "@types/web-bluetooth@0.0.20": + resolution: + { + integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==, + } + + "@types/webpack-env@1.18.4": + resolution: + { + integrity: sha512-I6e+9+HtWADAWeeJWDFQtdk4EVSAbj6Rtz4q8fJ7mSr1M0jzlFcs8/HZ+Xb5SHzVm1dxH7aUiI+A8kA8Gcrm0A==, + } + + "@types/which@3.0.3": + resolution: + { + integrity: sha512-2C1+XoY0huExTbs8MQv1DuS5FS86+SEjdM9F/+GS61gg5Hqbtj8ZiDSx8MfWcyei907fIPbfPGCOrNUTnVHY1g==, + } + + "@types/wrap-ansi@3.0.0": + resolution: + { + integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==, + } + + "@types/write-file-atomic@4.0.3": + resolution: + { + integrity: sha512-qdo+vZRchyJIHNeuI1nrpsLw+hnkgqP/8mlaN6Wle/NKhydHmUN9l4p3ZE8yP90AJNJW4uB8HQhedb4f1vNayQ==, + } + + "@types/ws@7.4.7": + resolution: + { + integrity: sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==, + } + + "@types/ws@8.5.10": + resolution: + { + integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==, + } + + "@types/yargs-parser@21.0.3": + resolution: + { + integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==, + } + + "@types/yargs@13.0.12": + resolution: + { + integrity: sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==, + } + + "@types/yargs@15.0.19": + resolution: + { + integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==, + } + + "@types/yargs@16.0.9": + resolution: + { + integrity: sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==, + } + + "@types/yargs@17.0.32": + resolution: + { + integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==, + } + + "@types/yauzl@2.10.3": + resolution: + { + integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==, + } + + "@typescript-eslint/eslint-plugin@5.62.0": + resolution: + { + integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + "@typescript-eslint/parser": ^5.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' + typescript: "*" peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/eslint-plugin@6.21.0': - resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==} - engines: {node: ^16.0.0 || >=18.0.0} + "@typescript-eslint/eslint-plugin@6.21.0": + resolution: + { + integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==, + } + engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: - '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha + "@typescript-eslint/parser": ^6.0.0 || ^6.0.0-alpha eslint: ^7.0.0 || ^8.0.0 - typescript: '*' + typescript: "*" peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/experimental-utils@5.62.0': - resolution: {integrity: sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + "@typescript-eslint/experimental-utils@5.62.0": + resolution: + { + integrity: sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - '@typescript-eslint/parser@5.62.0': - resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + "@typescript-eslint/parser@5.62.0": + resolution: + { + integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: '*' + typescript: "*" peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/parser@6.21.0': - resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==} - engines: {node: ^16.0.0 || >=18.0.0} + "@typescript-eslint/parser@6.21.0": + resolution: + { + integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==, + } + engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: eslint: ^7.0.0 || ^8.0.0 - typescript: '*' + typescript: "*" peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/scope-manager@5.62.0': - resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@typescript-eslint/scope-manager@6.21.0': - resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==} - engines: {node: ^16.0.0 || >=18.0.0} - - '@typescript-eslint/type-utils@5.62.0': - resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: '*' - typescript: '*' + "@typescript-eslint/scope-manager@5.62.0": + resolution: + { + integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + + "@typescript-eslint/scope-manager@6.21.0": + resolution: + { + integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==, + } + engines: { node: ^16.0.0 || >=18.0.0 } + + "@typescript-eslint/type-utils@5.62.0": + resolution: + { + integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: "*" + typescript: "*" peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/type-utils@6.21.0': - resolution: {integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==} - engines: {node: ^16.0.0 || >=18.0.0} + "@typescript-eslint/type-utils@6.21.0": + resolution: + { + integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==, + } + engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: eslint: ^7.0.0 || ^8.0.0 - typescript: '*' + typescript: "*" peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/types@5.62.0': - resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@typescript-eslint/types@6.21.0': - resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==} - engines: {node: ^16.0.0 || >=18.0.0} - - '@typescript-eslint/typescript-estree@5.62.0': - resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' + "@typescript-eslint/types@5.62.0": + resolution: + { + integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + + "@typescript-eslint/types@6.21.0": + resolution: + { + integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==, + } + engines: { node: ^16.0.0 || >=18.0.0 } + + "@typescript-eslint/typescript-estree@5.62.0": + resolution: + { + integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + typescript: "*" peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/typescript-estree@6.21.0': - resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} - engines: {node: ^16.0.0 || >=18.0.0} + "@typescript-eslint/typescript-estree@6.21.0": + resolution: + { + integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==, + } + engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: - typescript: '*' + typescript: "*" peerDependenciesMeta: typescript: optional: true - '@typescript-eslint/utils@5.62.0': - resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + "@typescript-eslint/utils@5.62.0": + resolution: + { + integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - '@typescript-eslint/utils@6.21.0': - resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==} - engines: {node: ^16.0.0 || >=18.0.0} + "@typescript-eslint/utils@6.21.0": + resolution: + { + integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==, + } + engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: eslint: ^7.0.0 || ^8.0.0 - '@typescript-eslint/visitor-keys@5.62.0': - resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - - '@typescript-eslint/visitor-keys@6.21.0': - resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==} - engines: {node: ^16.0.0 || >=18.0.0} - - '@uiw/codemirror-extensions-basic-setup@4.22.2': - resolution: {integrity: sha512-zcHGkldLFN3cGoI5XdOGAkeW24yaAgrDEYoyPyWHODmPiNwybQQoZGnH3qUdzZwUaXtAcLWoAeOPzfNRW2yGww==} - peerDependencies: - '@codemirror/view': '>=6.0.0' - - '@uiw/react-codemirror@4.22.2': - resolution: {integrity: sha512-okCSl+WJG63gRx8Fdz7v0C6RakBQnbb3pHhuzIgDB+fwhipgFodSnu2n9oOsQesJ5YQ7mSOcKMgX0JEsu4nnfQ==} - peerDependencies: - '@codemirror/view': '>=6.0.0' - react: '>=16.8.0' - react-dom: '>=16.8.0' - - '@ungap/structured-clone@1.2.0': - resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} - - '@urql/core@2.3.6': - resolution: {integrity: sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==} + "@typescript-eslint/visitor-keys@5.62.0": + resolution: + { + integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + + "@typescript-eslint/visitor-keys@6.21.0": + resolution: + { + integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==, + } + engines: { node: ^16.0.0 || >=18.0.0 } + + "@uiw/codemirror-extensions-basic-setup@4.22.2": + resolution: + { + integrity: sha512-zcHGkldLFN3cGoI5XdOGAkeW24yaAgrDEYoyPyWHODmPiNwybQQoZGnH3qUdzZwUaXtAcLWoAeOPzfNRW2yGww==, + } + peerDependencies: + "@codemirror/view": ">=6.0.0" + + "@uiw/react-codemirror@4.22.2": + resolution: + { + integrity: sha512-okCSl+WJG63gRx8Fdz7v0C6RakBQnbb3pHhuzIgDB+fwhipgFodSnu2n9oOsQesJ5YQ7mSOcKMgX0JEsu4nnfQ==, + } + peerDependencies: + "@codemirror/view": ">=6.0.0" + react: ">=16.8.0" + react-dom: ">=16.8.0" + + "@ungap/structured-clone@1.2.0": + resolution: + { + integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==, + } + + "@urql/core@2.3.6": + resolution: + { + integrity: sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==, + } peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - '@urql/exchange-retry@0.3.0': - resolution: {integrity: sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg==} + "@urql/exchange-retry@0.3.0": + resolution: + { + integrity: sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg==, + } peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 - '@vechain/ethers@4.0.27-5': - resolution: {integrity: sha512-dR+rTUauPJpqHNBdEgV6Xh+o009uCRPCvN2HWYIAzZP2SvgsPHLxNUzeRbRKhNzz/HC8HjWNvECRxODF88B03Q==} + "@vechain/ethers@4.0.27-5": + resolution: + { + integrity: sha512-dR+rTUauPJpqHNBdEgV6Xh+o009uCRPCvN2HWYIAzZP2SvgsPHLxNUzeRbRKhNzz/HC8HjWNvECRxODF88B03Q==, + } - '@vitejs/plugin-react@3.1.0': - resolution: {integrity: sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==} - engines: {node: ^14.18.0 || >=16.0.0} + "@vitejs/plugin-react@3.1.0": + resolution: + { + integrity: sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==, + } + engines: { node: ^14.18.0 || >=16.0.0 } peerDependencies: vite: ^4.1.0-beta.0 - '@vitejs/plugin-react@4.2.1': - resolution: {integrity: sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==} - engines: {node: ^14.18.0 || >=16.0.0} + "@vitejs/plugin-react@4.2.1": + resolution: + { + integrity: sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==, + } + engines: { node: ^14.18.0 || >=16.0.0 } peerDependencies: vite: ^4.2.0 || ^5.0.0 - '@vue/cli-overlay@5.0.8': - resolution: {integrity: sha512-KmtievE/B4kcXp6SuM2gzsnSd8WebkQpg3XaB6GmFh1BJGRqa1UiW9up7L/Q67uOdTigHxr5Ar2lZms4RcDjwQ==} + "@vue/cli-overlay@5.0.8": + resolution: + { + integrity: sha512-KmtievE/B4kcXp6SuM2gzsnSd8WebkQpg3XaB6GmFh1BJGRqa1UiW9up7L/Q67uOdTigHxr5Ar2lZms4RcDjwQ==, + } - '@vue/cli-plugin-router@5.0.8': - resolution: {integrity: sha512-Gmv4dsGdAsWPqVijz3Ux2OS2HkMrWi1ENj2cYL75nUeL+Xj5HEstSqdtfZ0b1q9NCce+BFB6QnHfTBXc/fCvMg==} + "@vue/cli-plugin-router@5.0.8": + resolution: + { + integrity: sha512-Gmv4dsGdAsWPqVijz3Ux2OS2HkMrWi1ENj2cYL75nUeL+Xj5HEstSqdtfZ0b1q9NCce+BFB6QnHfTBXc/fCvMg==, + } peerDependencies: - '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 + "@vue/cli-service": ^3.0.0 || ^4.0.0 || ^5.0.0-0 - '@vue/cli-plugin-typescript@5.0.8': - resolution: {integrity: sha512-JKJOwzJshBqsmp4yLBexwVMebOZ4VGJgbnYvmHVxasJOStF2RxwyW28ZF+zIvASGdat4sAUuo/3mAQyVhm7JHg==} + "@vue/cli-plugin-typescript@5.0.8": + resolution: + { + integrity: sha512-JKJOwzJshBqsmp4yLBexwVMebOZ4VGJgbnYvmHVxasJOStF2RxwyW28ZF+zIvASGdat4sAUuo/3mAQyVhm7JHg==, + } peerDependencies: - '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 + "@vue/cli-service": ^3.0.0 || ^4.0.0 || ^5.0.0-0 cache-loader: ^4.1.0 - typescript: '>=2' + typescript: ">=2" vue: ^2 || ^3.2.13 vue-template-compiler: ^2.0.0 peerDependenciesMeta: @@ -15668,24 +21378,30 @@ packages: vue-template-compiler: optional: true - '@vue/cli-plugin-vuex@5.0.8': - resolution: {integrity: sha512-HSYWPqrunRE5ZZs8kVwiY6oWcn95qf/OQabwLfprhdpFWAGtLStShjsGED2aDpSSeGAskQETrtR/5h7VqgIlBA==} + "@vue/cli-plugin-vuex@5.0.8": + resolution: + { + integrity: sha512-HSYWPqrunRE5ZZs8kVwiY6oWcn95qf/OQabwLfprhdpFWAGtLStShjsGED2aDpSSeGAskQETrtR/5h7VqgIlBA==, + } peerDependencies: - '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 + "@vue/cli-service": ^3.0.0 || ^4.0.0 || ^5.0.0-0 - '@vue/cli-service@5.0.8': - resolution: {integrity: sha512-nV7tYQLe7YsTtzFrfOMIHc5N2hp5lHG2rpYr0aNja9rNljdgcPZLyQRb2YRivTHqTv7lI962UXFURcpStHgyFw==} - engines: {node: ^12.0.0 || >= 14.0.0} + "@vue/cli-service@5.0.8": + resolution: + { + integrity: sha512-nV7tYQLe7YsTtzFrfOMIHc5N2hp5lHG2rpYr0aNja9rNljdgcPZLyQRb2YRivTHqTv7lI962UXFURcpStHgyFw==, + } + engines: { node: ^12.0.0 || >= 14.0.0 } hasBin: true peerDependencies: - cache-loader: '*' - less-loader: '*' - pug-plain-loader: '*' - raw-loader: '*' - sass-loader: '*' - stylus-loader: '*' + cache-loader: "*" + less-loader: "*" + pug-plain-loader: "*" + raw-loader: "*" + sass-loader: "*" + stylus-loader: "*" vue-template-compiler: ^2.0.0 - webpack-sources: '*' + webpack-sources: "*" peerDependenciesMeta: cache-loader: optional: true @@ -15704,400 +21420,712 @@ packages: webpack-sources: optional: true - '@vue/cli-shared-utils@5.0.8': - resolution: {integrity: sha512-uK2YB7bBVuQhjOJF+O52P9yFMXeJVj7ozqJkwYE9PlMHL1LMHjtCYm4cSdOebuPzyP+/9p0BimM/OqxsevIopQ==} - - '@vue/compiler-core@3.4.21': - resolution: {integrity: sha512-MjXawxZf2SbZszLPYxaFCjxfibYrzr3eYbKxwpLR9EQN+oaziSu3qKVbwBERj1IFIB8OLUewxB5m/BFzi613og==} - - '@vue/compiler-dom@3.4.21': - resolution: {integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==} - - '@vue/compiler-sfc@2.7.16': - resolution: {integrity: sha512-KWhJ9k5nXuNtygPU7+t1rX6baZeqOYLEforUPjgNDBnLicfHCoi48H87Q8XyLZOrNNsmhuwKqtpDQWjEFe6Ekg==} - - '@vue/compiler-sfc@3.4.21': - resolution: {integrity: sha512-me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ==} - - '@vue/compiler-ssr@3.4.21': - resolution: {integrity: sha512-M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q==} - - '@vue/component-compiler-utils@3.3.0': - resolution: {integrity: sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==} - - '@vue/shared@3.4.21': - resolution: {integrity: sha512-PuJe7vDIi6VYSinuEbUIQgMIRZGgM8e4R+G+/dQTk0X1NEdvgvvgv7m+rfmDH1gZzyA1OjjoWskvHlfRNfQf3g==} - - '@vue/web-component-wrapper@1.3.0': - resolution: {integrity: sha512-Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA==} - - '@webassemblyjs/ast@1.12.1': - resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} - - '@webassemblyjs/floating-point-hex-parser@1.11.6': - resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} - - '@webassemblyjs/helper-api-error@1.11.6': - resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} - - '@webassemblyjs/helper-buffer@1.12.1': - resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==} - - '@webassemblyjs/helper-numbers@1.11.6': - resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} - - '@webassemblyjs/helper-wasm-bytecode@1.11.6': - resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} - - '@webassemblyjs/helper-wasm-section@1.12.1': - resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==} - - '@webassemblyjs/ieee754@1.11.6': - resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} - - '@webassemblyjs/leb128@1.11.6': - resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} - - '@webassemblyjs/utf8@1.11.6': - resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} - - '@webassemblyjs/wasm-edit@1.12.1': - resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==} - - '@webassemblyjs/wasm-gen@1.12.1': - resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==} - - '@webassemblyjs/wasm-opt@1.12.1': - resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==} - - '@webassemblyjs/wasm-parser@1.12.1': - resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==} - - '@webassemblyjs/wast-printer@1.12.1': - resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==} - - '@webpack-cli/configtest@1.2.0': - resolution: {integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==} + "@vue/cli-shared-utils@5.0.8": + resolution: + { + integrity: sha512-uK2YB7bBVuQhjOJF+O52P9yFMXeJVj7ozqJkwYE9PlMHL1LMHjtCYm4cSdOebuPzyP+/9p0BimM/OqxsevIopQ==, + } + + "@vue/compiler-core@3.4.21": + resolution: + { + integrity: sha512-MjXawxZf2SbZszLPYxaFCjxfibYrzr3eYbKxwpLR9EQN+oaziSu3qKVbwBERj1IFIB8OLUewxB5m/BFzi613og==, + } + + "@vue/compiler-dom@3.4.21": + resolution: + { + integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==, + } + + "@vue/compiler-sfc@2.7.16": + resolution: + { + integrity: sha512-KWhJ9k5nXuNtygPU7+t1rX6baZeqOYLEforUPjgNDBnLicfHCoi48H87Q8XyLZOrNNsmhuwKqtpDQWjEFe6Ekg==, + } + + "@vue/compiler-sfc@3.4.21": + resolution: + { + integrity: sha512-me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ==, + } + + "@vue/compiler-ssr@3.4.21": + resolution: + { + integrity: sha512-M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q==, + } + + "@vue/component-compiler-utils@3.3.0": + resolution: + { + integrity: sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==, + } + + "@vue/shared@3.4.21": + resolution: + { + integrity: sha512-PuJe7vDIi6VYSinuEbUIQgMIRZGgM8e4R+G+/dQTk0X1NEdvgvvgv7m+rfmDH1gZzyA1OjjoWskvHlfRNfQf3g==, + } + + "@vue/web-component-wrapper@1.3.0": + resolution: + { + integrity: sha512-Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA==, + } + + "@webassemblyjs/ast@1.12.1": + resolution: + { + integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==, + } + + "@webassemblyjs/floating-point-hex-parser@1.11.6": + resolution: + { + integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==, + } + + "@webassemblyjs/helper-api-error@1.11.6": + resolution: + { + integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==, + } + + "@webassemblyjs/helper-buffer@1.12.1": + resolution: + { + integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==, + } + + "@webassemblyjs/helper-numbers@1.11.6": + resolution: + { + integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==, + } + + "@webassemblyjs/helper-wasm-bytecode@1.11.6": + resolution: + { + integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==, + } + + "@webassemblyjs/helper-wasm-section@1.12.1": + resolution: + { + integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==, + } + + "@webassemblyjs/ieee754@1.11.6": + resolution: + { + integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==, + } + + "@webassemblyjs/leb128@1.11.6": + resolution: + { + integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==, + } + + "@webassemblyjs/utf8@1.11.6": + resolution: + { + integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==, + } + + "@webassemblyjs/wasm-edit@1.12.1": + resolution: + { + integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==, + } + + "@webassemblyjs/wasm-gen@1.12.1": + resolution: + { + integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==, + } + + "@webassemblyjs/wasm-opt@1.12.1": + resolution: + { + integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==, + } + + "@webassemblyjs/wasm-parser@1.12.1": + resolution: + { + integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==, + } + + "@webassemblyjs/wast-printer@1.12.1": + resolution: + { + integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==, + } + + "@webpack-cli/configtest@1.2.0": + resolution: + { + integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==, + } peerDependencies: webpack: 4.x.x || 5.x.x webpack-cli: 4.x.x - '@webpack-cli/info@1.5.0': - resolution: {integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==} + "@webpack-cli/info@1.5.0": + resolution: + { + integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==, + } peerDependencies: webpack-cli: 4.x.x - '@webpack-cli/serve@1.7.0': - resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==} + "@webpack-cli/serve@1.7.0": + resolution: + { + integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==, + } peerDependencies: webpack-cli: 4.x.x - webpack-dev-server: '*' + webpack-dev-server: "*" peerDependenciesMeta: webpack-dev-server: optional: true - '@xmldom/xmldom@0.7.13': - resolution: {integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==} - engines: {node: '>=10.0.0'} - - '@xmldom/xmldom@0.8.10': - resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==} - engines: {node: '>=10.0.0'} - - '@xrplf/isomorphic@1.0.0': - resolution: {integrity: sha512-IyMsxyjkJK8YWq566KyuFuh/PUiLzQ02RbUO5qa+vEQb6zIAR9MzFwN7wBmBy7wmKkjligcdNDMG5EaBRH8FxQ==} - engines: {node: '>=16.0.0'} - - '@xstate/react@1.6.3': - resolution: {integrity: sha512-NCUReRHPGvvCvj2yLZUTfR0qVp6+apc8G83oXSjN4rl89ZjyujiKrTff55bze/HrsvCsP/sUJASf2n0nzMF1KQ==} - peerDependencies: - '@xstate/fsm': ^1.0.0 + "@xmldom/xmldom@0.7.13": + resolution: + { + integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==, + } + engines: { node: ">=10.0.0" } + + "@xmldom/xmldom@0.8.10": + resolution: + { + integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==, + } + engines: { node: ">=10.0.0" } + + "@xrplf/isomorphic@1.0.0": + resolution: + { + integrity: sha512-IyMsxyjkJK8YWq566KyuFuh/PUiLzQ02RbUO5qa+vEQb6zIAR9MzFwN7wBmBy7wmKkjligcdNDMG5EaBRH8FxQ==, + } + engines: { node: ">=16.0.0" } + + "@xstate/react@1.6.3": + resolution: + { + integrity: sha512-NCUReRHPGvvCvj2yLZUTfR0qVp6+apc8G83oXSjN4rl89ZjyujiKrTff55bze/HrsvCsP/sUJASf2n0nzMF1KQ==, + } + peerDependencies: + "@xstate/fsm": ^1.0.0 react: ^16.8.0 || ^17.0.0 xstate: ^4.11.0 peerDependenciesMeta: - '@xstate/fsm': + "@xstate/fsm": optional: true xstate: optional: true - '@xtuc/ieee754@1.2.0': - resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} - - '@xtuc/long@4.2.2': - resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} - - '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15': - resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==} - engines: {node: '>=14.15.0'} - peerDependencies: - esbuild: '>=0.10.0' - - '@yarnpkg/fslib@2.10.3': - resolution: {integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==} - engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} - - '@yarnpkg/libzip@2.3.0': - resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==} - engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} - - '@zondax/cbor@8.1.0-zondax-no-bigint': - resolution: {integrity: sha512-dFjJxSIZH2aaiG35iIUqKr3OXnZwy1XVYP5yx78UJP7ftOBxmN3OWX8k+pt4I2l/gjYONW/XMkG+RtTkxvFzlw==} - engines: {node: '>=12.19'} - - '@zondax/ledger-casper@2.6.1': - resolution: {integrity: sha512-Zk+DOVK9G9Gyt7ua9x/G5iVVSlNfp1l+Tek+7+MoqP5aTr4YznBJIhdnPD8yYSxEEZZLs8Q0tV0TyfsXeRokQw==} - - '@zondax/ledger-cosmos-js@3.0.3': - resolution: {integrity: sha512-riIAlv8BcPXADIXaIrU8FSVtSlkFHcI9qVMD6eMqVtttynDdTt24ddn6UcgpTk4QiSjMI63n5k4M1T7GomKFgw==} - peerDependencies: - '@babel/core': ^7.17.5 - '@types/node': ^17.0.21 - - '@zondax/ledger-filecoin@0.11.2': - resolution: {integrity: sha512-S7dTCxSiB9cBQQc2zhLKQolU3EPVQD2tozXKnd5XTfIqBMkFP8Hi/6f7u3a196V3knMR62Sf4gsEM/cVV5QhAg==} - - '@zondax/ledger-icp@0.7.0': - resolution: {integrity: sha512-kJhGUQJZGA0iRYmUag5PMkcQyG0zFFn3nCfvhhV6E+J9aYJ2KgCGJE+2lbnoeKMhsy1EOJrIKPvpG23Pt4l0Qg==} - - '@zondax/ledger-js@0.2.2': - resolution: {integrity: sha512-7wOUlRF2+kRaRU2KSzKb7XjPfScwEg3Cjg6NH/p+ikQLJ9eMkGC45NhSxYn8lixIIk+TgZ4yzTNOzFvF836gQw==} - - '@zondax/ledger-js@0.8.2': - resolution: {integrity: sha512-U/lzNzcJwfYGhhpwUviazihXzIv8w3rM31HbgKWOwF/xVS4/hHSLCGpONEGVwtgYUNDF7L0YfSy95/0H+tGtFA==} - - '@zondax/ledger-stacks@1.0.4': - resolution: {integrity: sha512-R8CB0CZ2poTzpcG0jhzzXZvXF7axIsmZFhp06aHCUjgz+1df63YbC4tUzyzmseekwqNWnaebWFejQKJ99WiHZA==} - - '@zondax/ledger-substrate@0.44.2': - resolution: {integrity: sha512-9KSagJVEh2YNtkKsVLZdHM++AGYGRDSdGV2H46sy4qhjGh/p/R4h5amM4OzlQhMTdxc9EW13lHZwoucliosbxw==} + "@xtuc/ieee754@1.2.0": + resolution: + { + integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==, + } + + "@xtuc/long@4.2.2": + resolution: + { + integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==, + } + + "@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15": + resolution: + { + integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==, + } + engines: { node: ">=14.15.0" } + peerDependencies: + esbuild: ">=0.10.0" + + "@yarnpkg/fslib@2.10.3": + resolution: + { + integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==, + } + engines: { node: ">=12 <14 || 14.2 - 14.9 || >14.10.0" } + + "@yarnpkg/libzip@2.3.0": + resolution: + { + integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==, + } + engines: { node: ">=12 <14 || 14.2 - 14.9 || >14.10.0" } + + "@zondax/cbor@8.1.0-zondax-no-bigint": + resolution: + { + integrity: sha512-dFjJxSIZH2aaiG35iIUqKr3OXnZwy1XVYP5yx78UJP7ftOBxmN3OWX8k+pt4I2l/gjYONW/XMkG+RtTkxvFzlw==, + } + engines: { node: ">=12.19" } + + "@zondax/ledger-casper@2.6.1": + resolution: + { + integrity: sha512-Zk+DOVK9G9Gyt7ua9x/G5iVVSlNfp1l+Tek+7+MoqP5aTr4YznBJIhdnPD8yYSxEEZZLs8Q0tV0TyfsXeRokQw==, + } + + "@zondax/ledger-cosmos-js@3.0.3": + resolution: + { + integrity: sha512-riIAlv8BcPXADIXaIrU8FSVtSlkFHcI9qVMD6eMqVtttynDdTt24ddn6UcgpTk4QiSjMI63n5k4M1T7GomKFgw==, + } + peerDependencies: + "@babel/core": ^7.17.5 + "@types/node": ^17.0.21 + + "@zondax/ledger-filecoin@0.11.2": + resolution: + { + integrity: sha512-S7dTCxSiB9cBQQc2zhLKQolU3EPVQD2tozXKnd5XTfIqBMkFP8Hi/6f7u3a196V3knMR62Sf4gsEM/cVV5QhAg==, + } + + "@zondax/ledger-icp@0.7.0": + resolution: + { + integrity: sha512-kJhGUQJZGA0iRYmUag5PMkcQyG0zFFn3nCfvhhV6E+J9aYJ2KgCGJE+2lbnoeKMhsy1EOJrIKPvpG23Pt4l0Qg==, + } + + "@zondax/ledger-js@0.2.2": + resolution: + { + integrity: sha512-7wOUlRF2+kRaRU2KSzKb7XjPfScwEg3Cjg6NH/p+ikQLJ9eMkGC45NhSxYn8lixIIk+TgZ4yzTNOzFvF836gQw==, + } + + "@zondax/ledger-js@0.8.2": + resolution: + { + integrity: sha512-U/lzNzcJwfYGhhpwUviazihXzIv8w3rM31HbgKWOwF/xVS4/hHSLCGpONEGVwtgYUNDF7L0YfSy95/0H+tGtFA==, + } + + "@zondax/ledger-stacks@1.0.4": + resolution: + { + integrity: sha512-R8CB0CZ2poTzpcG0jhzzXZvXF7axIsmZFhp06aHCUjgz+1df63YbC4tUzyzmseekwqNWnaebWFejQKJ99WiHZA==, + } + + "@zondax/ledger-substrate@0.44.2": + resolution: + { + integrity: sha512-9KSagJVEh2YNtkKsVLZdHM++AGYGRDSdGV2H46sy4qhjGh/p/R4h5amM4OzlQhMTdxc9EW13lHZwoucliosbxw==, + } JSONStream@1.3.5: - resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + resolution: + { + integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==, + } hasBin: true abab@2.0.6: - resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} + resolution: + { + integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==, + } deprecated: Use your platform's native atob() and btoa() methods instead abbrev@1.1.1: - resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} + resolution: + { + integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==, + } abort-controller@3.0.0: - resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} - engines: {node: '>=6.5'} + resolution: + { + integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==, + } + engines: { node: ">=6.5" } abstract-leveldown@0.12.4: - resolution: {integrity: sha512-TOod9d5RDExo6STLMGa+04HGkl+TlMfbDnTyN93/ETJ9DpQ0DaYLqcMZlbXvdc4W3vVo1Qrl+WhSp8zvDsJ+jA==} + resolution: + { + integrity: sha512-TOod9d5RDExo6STLMGa+04HGkl+TlMfbDnTyN93/ETJ9DpQ0DaYLqcMZlbXvdc4W3vVo1Qrl+WhSp8zvDsJ+jA==, + } abstract-leveldown@2.6.1: - resolution: {integrity: sha512-z3y8+/Y5i90z+viZGYIg7Tu+muVO4qGHAeug7QQ7oQcMaS1RY+3ccwHTISI/vkVAK9r7snv8lMICNdmrYM/LkA==} + resolution: + { + integrity: sha512-z3y8+/Y5i90z+viZGYIg7Tu+muVO4qGHAeug7QQ7oQcMaS1RY+3ccwHTISI/vkVAK9r7snv8lMICNdmrYM/LkA==, + } accepts@1.3.8: - resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==, + } + engines: { node: ">= 0.6" } acorn-globals@6.0.0: - resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} + resolution: + { + integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==, + } acorn-globals@7.0.1: - resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} + resolution: + { + integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==, + } acorn-import-assertions@1.9.0: - resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} + resolution: + { + integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==, + } peerDependencies: acorn: ^8 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@7.2.0: - resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==, + } + engines: { node: ">=0.4.0" } acorn-walk@8.3.2: - resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==, + } + engines: { node: ">=0.4.0" } acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==, + } + engines: { node: ">=0.4.0" } hasBin: true acorn@8.11.3: - resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==, + } + engines: { node: ">=0.4.0" } hasBin: true address@1.2.2: - resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} - engines: {node: '>= 10.0.0'} + resolution: + { + integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==, + } + engines: { node: ">= 10.0.0" } adjust-sourcemap-loader@4.0.0: - resolution: {integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==} - engines: {node: '>=8.9'} + resolution: + { + integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==, + } + engines: { node: ">=8.9" } aes-js@3.0.0: - resolution: {integrity: sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==} + resolution: + { + integrity: sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==, + } aes-js@3.1.2: - resolution: {integrity: sha512-e5pEa2kBnBOgR4Y/p20pskXI74UEz7de8ZGVo58asOtvSVG5YAbJeELPZxOmt+Bnz3rX753YKhfIn4X4l1PPRQ==} + resolution: + { + integrity: sha512-e5pEa2kBnBOgR4Y/p20pskXI74UEz7de8ZGVo58asOtvSVG5YAbJeELPZxOmt+Bnz3rX753YKhfIn4X4l1PPRQ==, + } aes-js@4.0.0-beta.5: - resolution: {integrity: sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==} + resolution: + { + integrity: sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==, + } agent-base@5.1.1: - resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==} - engines: {node: '>= 6.0.0'} + resolution: + { + integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==, + } + engines: { node: ">= 6.0.0" } agent-base@6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: '>= 6.0.0'} + resolution: + { + integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==, + } + engines: { node: ">= 6.0.0" } agentkeepalive@4.5.0: - resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} - engines: {node: '>= 8.0.0'} + resolution: + { + integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==, + } + engines: { node: ">= 8.0.0" } aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==, + } + engines: { node: ">=8" } airbnb-js-shims@2.2.1: - resolution: {integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==} + resolution: + { + integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==, + } ajv-formats@2.1.1: - resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} + resolution: + { + integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==, + } ajv-keywords@3.5.2: - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} + resolution: + { + integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==, + } peerDependencies: ajv: ^6.9.1 ajv-keywords@5.1.0: - resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} + resolution: + { + integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==, + } peerDependencies: ajv: ^8.8.2 ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + resolution: + { + integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, + } ajv@8.11.2: - resolution: {integrity: sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==} + resolution: + { + integrity: sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==, + } ajv@8.16.0: - resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==} + resolution: + { + integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==, + } ajv@8.17.1: - resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} + resolution: + { + integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==, + } algo-msgpack-with-bigint@2.1.1: - resolution: {integrity: sha512-F1tGh056XczEaEAqu7s+hlZUDWwOBT70Eq0lfMpBP2YguSQVyxRbprLq5rELXKQOyOaixTWYhMeMQMzP0U5FoQ==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-F1tGh056XczEaEAqu7s+hlZUDWwOBT70Eq0lfMpBP2YguSQVyxRbprLq5rELXKQOyOaixTWYhMeMQMzP0U5FoQ==, + } + engines: { node: ">= 10" } algosdk@1.13.1: - resolution: {integrity: sha512-htyJI1/zVcOzpNZVT8PHn4K0yXXTS+b7RXplc7nmFqGVThbM8+ufbnBLChxVPh3BVxqqpqS13VTsQcNArK10jg==} + resolution: + { + integrity: sha512-htyJI1/zVcOzpNZVT8PHn4K0yXXTS+b7RXplc7nmFqGVThbM8+ufbnBLChxVPh3BVxqqpqS13VTsQcNArK10jg==, + } allure-commandline@2.28.0: - resolution: {integrity: sha512-TZ3oxop0zseJp2bRKb8Zzkxa4/aB+RvKEMnhylbY6UiOkqhNAHovRJx03bFA9bbvE/nsR70sX+ktU5xI2WJiqQ==} + resolution: + { + integrity: sha512-TZ3oxop0zseJp2bRKb8Zzkxa4/aB+RvKEMnhylbY6UiOkqhNAHovRJx03bFA9bbvE/nsR70sX+ktU5xI2WJiqQ==, + } hasBin: true allure-js-commons@2.15.1: - resolution: {integrity: sha512-5V/VINplbu0APnfSZOkYpKOzucO36Q2EtTD1kqjWjl7n6tj7Hh+IHCZsH3Vpk/LXRDfj9RuXugBBvwYKV5YMJw==} + resolution: + { + integrity: sha512-5V/VINplbu0APnfSZOkYpKOzucO36Q2EtTD1kqjWjl7n6tj7Hh+IHCZsH3Vpk/LXRDfj9RuXugBBvwYKV5YMJw==, + } allure-playwright@2.15.1: - resolution: {integrity: sha512-P1Uu1j/ptDHdYp3V5ZAeBZyt33+L+OQu0otUIEl/zkOcv0KRycHqlHwC0GEJmpgnLKvVP7s+K37LcLoSUUj3Cg==} + resolution: + { + integrity: sha512-P1Uu1j/ptDHdYp3V5ZAeBZyt33+L+OQu0otUIEl/zkOcv0KRycHqlHwC0GEJmpgnLKvVP7s+K37LcLoSUUj3Cg==, + } anser@1.4.10: - resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==} + resolution: + { + integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==, + } ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==, + } + engines: { node: ">=6" } ansi-escape-sequences@5.1.2: - resolution: {integrity: sha512-JcpoVp1W1bl1Qn4cVuiXEhD6+dyXKSOgCn2zlzE8inYgCJCBy1aPnUhlz6I4DFum8D4ovb9Qi/iAjUcGvG2lqw==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-JcpoVp1W1bl1Qn4cVuiXEhD6+dyXKSOgCn2zlzE8inYgCJCBy1aPnUhlz6I4DFum8D4ovb9Qi/iAjUcGvG2lqw==, + } + engines: { node: ">=8.0.0" } ansi-escapes@3.2.0: - resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==, + } + engines: { node: ">=4" } 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-escapes@5.0.0: - resolution: {integrity: sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==, + } + engines: { node: ">=12" } ansi-fragments@0.2.1: - resolution: {integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==} + resolution: + { + integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==, + } ansi-html-community@0.0.8: - resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} - engines: {'0': node >= 0.8.0} + resolution: + { + integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==, + } + engines: { "0": node >= 0.8.0 } hasBin: true ansi-regex@2.1.1: - resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==, + } + engines: { node: ">=0.10.0" } ansi-regex@3.0.1: - resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==, + } + engines: { node: ">=4" } ansi-regex@4.1.1: - resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==, + } + engines: { node: ">=6" } ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, + } + engines: { node: ">=8" } ansi-regex@6.0.1: - resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==, + } + engines: { node: ">=12" } ansi-sequence-parser@1.1.1: - resolution: {integrity: sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==} + resolution: + { + integrity: sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==, + } ansi-styles@2.2.1: - resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==, + } + engines: { node: ">=0.10.0" } ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, + } + engines: { node: ">=4" } 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" } ansi-to-html@0.6.15: - resolution: {integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==, + } + engines: { node: ">=8.0.0" } hasBin: true any-observable@0.3.0: - resolution: {integrity: sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==} - engines: {node: '>=6'} - peerDependencies: - rxjs: '*' - zenObservable: '*' + resolution: + { + integrity: sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==, + } + engines: { node: ">=6" } + peerDependencies: + rxjs: ^5.5.10 + zenObservable: "*" peerDependenciesMeta: rxjs: optional: true @@ -16105,1513 +22133,2759 @@ packages: optional: true 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" } app-builder-bin@4.0.0: - resolution: {integrity: sha512-xwdG0FJPQMe0M0UA4Tz0zEB8rBJTRA5a476ZawAqiBkMv16GRK5xpXThOjMaEOFnZ6zabejjG4J3da0SXG63KA==} + resolution: + { + integrity: sha512-xwdG0FJPQMe0M0UA4Tz0zEB8rBJTRA5a476ZawAqiBkMv16GRK5xpXThOjMaEOFnZ6zabejjG4J3da0SXG63KA==, + } app-builder-lib@24.13.3: - resolution: {integrity: sha512-FAzX6IBit2POXYGnTCT8YHFO/lr5AapAII6zzhQO3Rw4cEDOgK+t1xhLc5tNcKlicTHlo9zxIwnYCX9X2DLkig==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-FAzX6IBit2POXYGnTCT8YHFO/lr5AapAII6zzhQO3Rw4cEDOgK+t1xhLc5tNcKlicTHlo9zxIwnYCX9X2DLkig==, + } + engines: { node: ">=14.0.0" } peerDependencies: dmg-builder: 24.13.3 electron-builder-squirrel-windows: 24.13.3 - lodash: '*' + lodash: "*" peerDependenciesMeta: lodash: optional: true app-root-dir@1.0.2: - resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==} + resolution: + { + integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==, + } appdirsjs@1.2.7: - resolution: {integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==} + resolution: + { + integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==, + } append-transform@2.0.0: - resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==, + } + engines: { node: ">=8" } application-config-path@0.1.1: - resolution: {integrity: sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==} + resolution: + { + integrity: sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==, + } arch@2.2.0: - resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} + resolution: + { + integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==, + } archiver-utils@4.0.1: - resolution: {integrity: sha512-Q4Q99idbvzmgCTEAAhi32BkOyq8iVI5EwdO0PmBDSGIzzjYNdcFn7Q7k3OzbLy4kLUPXfJtG6fO2RjftXbobBg==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-Q4Q99idbvzmgCTEAAhi32BkOyq8iVI5EwdO0PmBDSGIzzjYNdcFn7Q7k3OzbLy4kLUPXfJtG6fO2RjftXbobBg==, + } + engines: { node: ">= 12.0.0" } archiver@6.0.2: - resolution: {integrity: sha512-UQ/2nW7NMl1G+1UnrLypQw1VdT9XZg/ECcKPq7l+STzStrSivFIXIp34D8M5zeNGW5NoOupdYCHv6VySCPNNlw==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-UQ/2nW7NMl1G+1UnrLypQw1VdT9XZg/ECcKPq7l+STzStrSivFIXIp34D8M5zeNGW5NoOupdYCHv6VySCPNNlw==, + } + engines: { node: ">= 12.0.0" } archy@1.0.0: - resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} + resolution: + { + integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==, + } arg@1.0.0: - resolution: {integrity: sha512-Wk7TEzl1KqvTGs/uyhmHO/3XLd3t1UeU4IstvPXVzGPM522cTjqjNZ99esCkcL52sjqjo8e8CTBcWhkxvGzoAw==} + resolution: + { + integrity: sha512-Wk7TEzl1KqvTGs/uyhmHO/3XLd3t1UeU4IstvPXVzGPM522cTjqjNZ99esCkcL52sjqjo8e8CTBcWhkxvGzoAw==, + } arg@4.1.0: - resolution: {integrity: sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg==} + resolution: + { + integrity: sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg==, + } arg@4.1.3: - resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + resolution: + { + integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==, + } arg@5.0.2: - resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + resolution: + { + integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==, + } argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + resolution: + { + integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, + } argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + resolution: + { + integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, + } args@5.0.3: - resolution: {integrity: sha512-h6k/zfFgusnv3i5TU08KQkVKuCPBtL/PWQbWkHUxvJrZ2nAyeaUupneemcrgn1xmqxPQsPIzwkUhOpoqPDRZuA==} - engines: {node: '>= 6.0.0'} + resolution: + { + integrity: sha512-h6k/zfFgusnv3i5TU08KQkVKuCPBtL/PWQbWkHUxvJrZ2nAyeaUupneemcrgn1xmqxPQsPIzwkUhOpoqPDRZuA==, + } + engines: { node: ">= 6.0.0" } argsarray@0.0.1: - resolution: {integrity: sha512-u96dg2GcAKtpTrBdDoFIM7PjcBA+6rSP0OR94MOReNRyUECL6MtQt5XXmRr4qrftYaef9+l5hcpO5te7sML1Cg==} + resolution: + { + integrity: sha512-u96dg2GcAKtpTrBdDoFIM7PjcBA+6rSP0OR94MOReNRyUECL6MtQt5XXmRr4qrftYaef9+l5hcpO5te7sML1Cg==, + } 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.1.3: - resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} + resolution: + { + integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==, + } aria-query@5.3.0: - resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + resolution: + { + integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==, + } array-back@3.1.0: - resolution: {integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==, + } + engines: { node: ">=6" } array-back@4.0.2: - resolution: {integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==, + } + engines: { node: ">=8" } array-buffer-byte-length@1.0.1: - resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==, + } + engines: { node: ">= 0.4" } array-flatten@1.1.1: - resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} + resolution: + { + integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==, + } array-ify@1.0.0: - resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + resolution: + { + integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==, + } 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@1.0.2: - resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==, + } + engines: { node: ">=0.10.0" } 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-union@3.0.1: - resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==, + } + engines: { node: ">=12" } array-uniq@1.0.3: - resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==, + } + engines: { node: ">=0.10.0" } array.prototype.findlast@1.2.5: - resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==, + } + engines: { node: ">= 0.4" } 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.2: - resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==, + } + engines: { node: ">= 0.4" } array.prototype.flatmap@1.3.2: - resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==, + } + engines: { node: ">= 0.4" } array.prototype.map@1.0.7: - resolution: {integrity: sha512-XpcFfLoBEAhezrrNw1V+yLXkE7M6uR7xJEsxbG6c/V9v043qurwVJB9r9UTnoSioFDoz1i1VOydpWGmJpfVZbg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-XpcFfLoBEAhezrrNw1V+yLXkE7M6uR7xJEsxbG6c/V9v043qurwVJB9r9UTnoSioFDoz1i1VOydpWGmJpfVZbg==, + } + engines: { node: ">= 0.4" } array.prototype.reduce@1.0.7: - resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==, + } + engines: { node: ">= 0.4" } array.prototype.toreversed@1.1.2: - resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} + resolution: + { + integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==, + } array.prototype.tosorted@1.1.3: - resolution: {integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==} + resolution: + { + integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==, + } arraybuffer.prototype.slice@1.0.3: - resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==, + } + engines: { node: ">= 0.4" } arrify@1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==, + } + engines: { node: ">=0.10.0" } asap@2.0.6: - resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} + resolution: + { + integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==, + } asciichart@1.5.25: - resolution: {integrity: sha512-PNxzXIPPOtWq8T7bgzBtk9cI2lgS4SJZthUHEiQ1aoIc3lNzGfUvIvo9LiAnq26TACo9t1/4qP6KTGAUbzX9Xg==} + resolution: + { + integrity: sha512-PNxzXIPPOtWq8T7bgzBtk9cI2lgS4SJZthUHEiQ1aoIc3lNzGfUvIvo9LiAnq26TACo9t1/4qP6KTGAUbzX9Xg==, + } asn1.js@4.10.1: - resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==} + resolution: + { + integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==, + } asn1.js@5.4.1: - resolution: {integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==} + resolution: + { + integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==, + } asn1@0.2.6: - resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} + resolution: + { + integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==, + } assert-plus@1.0.0: - resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} - engines: {node: '>=0.8'} + resolution: + { + integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==, + } + engines: { node: ">=0.8" } assert@1.5.1: - resolution: {integrity: sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==} + resolution: + { + integrity: sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==, + } assert@2.1.0: - resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} + resolution: + { + integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==, + } assertion-error@1.1.0: - resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} + resolution: + { + integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==, + } ast-types-flow@0.0.8: - resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} + resolution: + { + integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==, + } ast-types@0.15.2: - resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==, + } + engines: { node: ">=4" } 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@1.0.0: - resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==, + } + 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.8.6: - resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} + resolution: + { + integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==, + } hasBin: true async-exit-hook@2.0.1: - resolution: {integrity: sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==} - engines: {node: '>=0.12.0'} + resolution: + { + integrity: sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==, + } + engines: { node: ">=0.12.0" } async-limiter@1.0.1: - resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} + resolution: + { + integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==, + } async@2.6.4: - resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} + resolution: + { + integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==, + } async@3.2.5: - resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} + resolution: + { + integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==, + } asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + resolution: + { + integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, + } asyncstorage-down@4.2.0: - resolution: {integrity: sha512-xTljBjicpnxsoA7yEs6duXFXWEZC0V1Q/PeKcUM7Cd2k2W1XPGfyBY1kPXBxTqR++u6ZuDa5egnU8/E/WkJv4Q==} + resolution: + { + integrity: sha512-xTljBjicpnxsoA7yEs6duXFXWEZC0V1Q/PeKcUM7Cd2k2W1XPGfyBY1kPXBxTqR++u6ZuDa5egnU8/E/WkJv4Q==, + } peerDependencies: - '@react-native-async-storage/async-storage': '*' + "@react-native-async-storage/async-storage": "*" peerDependenciesMeta: - '@react-native-async-storage/async-storage': + "@react-native-async-storage/async-storage": optional: true 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" } atomic-sleep@1.0.0: - resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==, + } + engines: { node: ">=8.0.0" } atomically@1.7.0: - resolution: {integrity: sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w==} - engines: {node: '>=10.12.0'} + resolution: + { + integrity: sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w==, + } + engines: { node: ">=10.12.0" } atomically@2.0.2: - resolution: {integrity: sha512-Xfmb4q5QV7uqTlVdMSTtO5eF4DCHfNOdaPyKlbFShkzeNP+3lj3yjjcbdjSmEY4+pDBKJ9g26aP+ImTe88UHoQ==} + resolution: + { + integrity: sha512-Xfmb4q5QV7uqTlVdMSTtO5eF4DCHfNOdaPyKlbFShkzeNP+3lj3yjjcbdjSmEY4+pDBKJ9g26aP+ImTe88UHoQ==, + } attr-accept@2.2.2: - resolution: {integrity: sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg==, + } + engines: { node: ">=4" } autoprefixer@10.4.19: - resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==, + } + 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" } aws-sign2@0.7.0: - resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} + resolution: + { + integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==, + } aws4@1.12.0: - resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==} + resolution: + { + integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==, + } axe-core@4.7.0: - resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==, + } + engines: { node: ">=4" } axios@0.21.1: - resolution: {integrity: sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==} + resolution: + { + integrity: sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==, + } axios@0.21.2: - resolution: {integrity: sha512-87otirqUw3e8CzHTMO+/9kh/FSgXt/eVDvipijwDtEuwbkySWZ9SBm6VEubmJ/kLKEoLQV/POhxXFb66bfekfg==} + resolution: + { + integrity: sha512-87otirqUw3e8CzHTMO+/9kh/FSgXt/eVDvipijwDtEuwbkySWZ9SBm6VEubmJ/kLKEoLQV/POhxXFb66bfekfg==, + } axios@0.21.4: - resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} + resolution: + { + integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==, + } axios@0.24.0: - resolution: {integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==} + resolution: + { + integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==, + } axios@1.7.7: - resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==} + resolution: + { + integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==, + } axobject-query@3.2.1: - resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} + resolution: + { + integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==, + } b4a@1.6.6: - resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==} + resolution: + { + integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==, + } babel-core@7.0.0-bridge.0: - resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} + resolution: + { + integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==, + } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 babel-jest@27.5.1: - resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } peerDependencies: - '@babel/core': ^7.8.0 + "@babel/core": ^7.8.0 babel-jest@28.1.3: - resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } peerDependencies: - '@babel/core': ^7.8.0 + "@babel/core": ^7.8.0 babel-jest@29.7.0: - resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: - '@babel/core': ^7.8.0 + "@babel/core": ^7.8.0 babel-loader@8.3.0: - resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} - engines: {node: '>= 8.9'} + resolution: + { + integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==, + } + engines: { node: ">= 8.9" } peerDependencies: - '@babel/core': ^7.0.0 - webpack: '>=2' + "@babel/core": ^7.0.0 + webpack: ">=2" babel-loader@9.1.3: - resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} - engines: {node: '>= 14.15.0'} + resolution: + { + integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==, + } + engines: { node: ">= 14.15.0" } peerDependencies: - '@babel/core': ^7.12.0 - webpack: '>=5' + "@babel/core": ^7.12.0 + webpack: ">=5" babel-plugin-add-react-displayname@0.0.5: - resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} + resolution: + { + integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==, + } babel-plugin-emotion@10.2.2: - resolution: {integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==} + resolution: + { + integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==, + } babel-plugin-istanbul@6.1.1: - resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==, + } + engines: { node: ">=8" } babel-plugin-jest-hoist@27.5.1: - resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } babel-plugin-jest-hoist@28.1.3: - resolution: {integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } babel-plugin-jest-hoist@29.6.3: - resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } babel-plugin-macros@2.8.0: - resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} + resolution: + { + integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==, + } babel-plugin-macros@3.1.0: - resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} - engines: {node: '>=10', npm: '>=6'} + resolution: + { + integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==, + } + engines: { node: ">=10", npm: ">=6" } babel-plugin-module-resolver@4.1.0: - resolution: {integrity: sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA==} - engines: {node: '>= 8.0.0'} + resolution: + { + integrity: sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA==, + } + engines: { node: ">= 8.0.0" } babel-plugin-module-resolver@5.0.0: - resolution: {integrity: sha512-g0u+/ChLSJ5+PzYwLwP8Rp8Rcfowz58TJNCe+L/ui4rpzE/mg//JVX0EWBUYoxaextqnwuGHzfGp2hh0PPV25Q==} - engines: {node: '>= 16'} + resolution: + { + integrity: sha512-g0u+/ChLSJ5+PzYwLwP8Rp8Rcfowz58TJNCe+L/ui4rpzE/mg//JVX0EWBUYoxaextqnwuGHzfGp2hh0PPV25Q==, + } + engines: { node: ">= 16" } babel-plugin-named-asset-import@0.3.8: - resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==} + resolution: + { + integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==, + } peerDependencies: - '@babel/core': ^7.1.0 + "@babel/core": ^7.1.0 babel-plugin-polyfill-corejs2@0.4.10: - resolution: {integrity: sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==} + resolution: + { + integrity: sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==, + } 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.4: - resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} + resolution: + { + integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==, + } 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.1: - resolution: {integrity: sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==} + resolution: + { + integrity: sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==, + } 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-react-compiler@0.0.0-experimental-592953e-20240517: + resolution: + { + integrity: sha512-OjG1SVaeQZaJrqkMFJatg8W/MTow8Ak5rx2SI0ETQBO1XvOk/XZGMbltNCPdFJLKghBYoBjC+Y3Ap/Xr7B01mA==, + } babel-plugin-react-docgen-typescript@1.5.1: - resolution: {integrity: sha512-gcC2Fw19ooW8U1AvyfuHTqvWOb6xi3IMNuuOgIjf0pfJwkuJFHsGW+JxWF1SKz4rFyQyWnQg3YkxMrJh45n7nA==} + resolution: + { + integrity: sha512-gcC2Fw19ooW8U1AvyfuHTqvWOb6xi3IMNuuOgIjf0pfJwkuJFHsGW+JxWF1SKz4rFyQyWnQg3YkxMrJh45n7nA==, + } peerDependencies: - '@babel/core': ^7.0.0-0 + "@babel/core": ^7.0.0-0 babel-plugin-react-native-web@0.18.12: - resolution: {integrity: sha512-4djr9G6fMdwQoD6LQ7hOKAm39+y12flWgovAqS1k5O8f42YQ3A1FFMyV5kKfetZuGhZO5BmNmOdRRZQ1TixtDw==} + resolution: + { + integrity: sha512-4djr9G6fMdwQoD6LQ7hOKAm39+y12flWgovAqS1k5O8f42YQ3A1FFMyV5kKfetZuGhZO5BmNmOdRRZQ1TixtDw==, + } babel-plugin-react-native-web@0.19.10: - resolution: {integrity: sha512-NshrsILJNbNbnMz7Ms14fa5PBJErYablPkCbSvbg0qn5rmruD2WzQqD+Dg8F45yG7i2nENDvKSwsa+1XPLcg4w==} + resolution: + { + integrity: sha512-NshrsILJNbNbnMz7Ms14fa5PBJErYablPkCbSvbg0qn5rmruD2WzQqD+Dg8F45yG7i2nENDvKSwsa+1XPLcg4w==, + } babel-plugin-styled-components@2.1.4: - resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==} + resolution: + { + integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==, + } peerDependencies: - styled-components: '>= 2' + styled-components: ">= 2" babel-plugin-syntax-jsx@6.18.0: - resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==} + resolution: + { + integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==, + } babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: - resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} + resolution: + { + integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==, + } babel-plugin-transform-flow-enums@0.0.2: - resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==} + resolution: + { + integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==, + } babel-plugin-transform-react-remove-prop-types@0.4.24: - resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} + resolution: + { + integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==, + } babel-preset-current-node-syntax@1.0.1: - resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} + resolution: + { + integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==, + } peerDependencies: - '@babel/core': ^7.0.0 + "@babel/core": ^7.0.0 - babel-preset-expo@10.0.1: - resolution: {integrity: sha512-uWIGmLfbP3dS5+8nesxaW6mQs41d4iP7X82ZwRdisB/wAhKQmuJM9Y1jQe4006uNYkw6Phf2TT03ykLVro7KuQ==} + babel-preset-expo@11.0.15: + resolution: + { + integrity: sha512-rgiMTYwqIPULaO7iZdqyL7aAff9QLOX6OWUtLZBlOrOTreGY1yHah/5+l8MvI6NVc/8Zj5LY4Y5uMSnJIuzTLw==, + } babel-preset-expo@9.5.2: - resolution: {integrity: sha512-hU1G1TDiikuXV6UDZjPnX+WdbjbtidDiYhftMEVrZQSst45pDPVBWbM41TUKrpJMwv4FypsLzK+378gnMPRVWQ==} + resolution: + { + integrity: sha512-hU1G1TDiikuXV6UDZjPnX+WdbjbtidDiYhftMEVrZQSst45pDPVBWbM41TUKrpJMwv4FypsLzK+378gnMPRVWQ==, + } babel-preset-expo@9.9.0: - resolution: {integrity: sha512-Mg5euDpBPi2/N/3eao+hJ0vYONAUVB9qhziGDnTf4MotBDrT4qEOBYdvN1HVBkoL8FtEHTlZ8tU8eAyeScynZw==} + resolution: + { + integrity: sha512-Mg5euDpBPi2/N/3eao+hJ0vYONAUVB9qhziGDnTf4MotBDrT4qEOBYdvN1HVBkoL8FtEHTlZ8tU8eAyeScynZw==, + } 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 babel-preset-jest@27.5.1: - resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } peerDependencies: - '@babel/core': ^7.0.0 + "@babel/core": ^7.0.0 babel-preset-jest@28.1.3: - resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } peerDependencies: - '@babel/core': ^7.0.0 + "@babel/core": ^7.0.0 babel-preset-jest@29.6.3: - resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: - '@babel/core': ^7.0.0 + "@babel/core": ^7.0.0 babel-preset-react-app@10.0.1: - resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==} + resolution: + { + integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==, + } babel-runtime@6.26.0: - resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} + resolution: + { + integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==, + } backslash@0.2.0: - resolution: {integrity: sha512-Avs+8FUZ1HF/VFP4YWwHQZSGzRPm37ukU1JQYQWijuHhtXdOuAzcZ8PcAzfIw898a8PyBzdn+RtnKA6MzW0X2A==} + resolution: + { + integrity: sha512-Avs+8FUZ1HF/VFP4YWwHQZSGzRPm37ukU1JQYQWijuHhtXdOuAzcZ8PcAzfIw898a8PyBzdn+RtnKA6MzW0X2A==, + } bail@1.0.5: - resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} + resolution: + { + integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==, + } 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==, + } balanced-match@2.0.0: - resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==} + resolution: + { + integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==, + } bare-events@2.4.2: - resolution: {integrity: sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==} + resolution: + { + integrity: sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==, + } base-64@0.1.0: - resolution: {integrity: sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==} + resolution: + { + integrity: sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==, + } base-x@2.0.6: - resolution: {integrity: sha512-UAmjxz9KbK+YIi66xej+pZVo/vxUOh49ubEvZW5egCbxhur05pBb+hwuireQwKO4nDpsNm64/jEei17LEpsr5g==} - engines: {node: '>=4.5.0'} + resolution: + { + integrity: sha512-UAmjxz9KbK+YIi66xej+pZVo/vxUOh49ubEvZW5egCbxhur05pBb+hwuireQwKO4nDpsNm64/jEei17LEpsr5g==, + } + engines: { node: ">=4.5.0" } deprecated: use 3.0.0 instead, safe-buffer has been merged and release for compatability base-x@3.0.9: - resolution: {integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==} + resolution: + { + integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==, + } base-x@4.0.0: - resolution: {integrity: sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw==} + resolution: + { + integrity: sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw==, + } base32.js@0.1.0: - resolution: {integrity: sha512-n3TkB02ixgBOhTvANakDb4xaMXnYUVkNoRFJjQflcqMQhyEKxEHdj3E6N8t8sUQ0mjH/3/JxzlXuz3ul/J90pQ==} - engines: {node: '>=0.12.0'} + resolution: + { + integrity: sha512-n3TkB02ixgBOhTvANakDb4xaMXnYUVkNoRFJjQflcqMQhyEKxEHdj3E6N8t8sUQ0mjH/3/JxzlXuz3ul/J90pQ==, + } + engines: { node: ">=0.12.0" } base64-arraybuffer@0.2.0: - resolution: {integrity: sha512-7emyCsu1/xiBXgQZrscw/8KPRT44I4Yq9Pe6EGs3aPRTsWuggML1/1DTuZUuIaJPIm1FTDUVXl4x/yW8s0kQDQ==} - engines: {node: '>= 0.6.0'} + resolution: + { + integrity: sha512-7emyCsu1/xiBXgQZrscw/8KPRT44I4Yq9Pe6EGs3aPRTsWuggML1/1DTuZUuIaJPIm1FTDUVXl4x/yW8s0kQDQ==, + } + engines: { node: ">= 0.6.0" } 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" } basic-auth@2.0.1: - resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==, + } + engines: { node: ">= 0.8" } batch@0.6.1: - resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} + resolution: + { + integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==, + } bchaddrjs@0.5.2: - resolution: {integrity: sha512-OO7gIn3m7ea4FVx4cT8gdlWQR2+++EquhdpWQJH9BQjK63tJJ6ngB3QMZDO6DiBoXiIGUsTPHjlrHVxPGcGxLQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-OO7gIn3m7ea4FVx4cT8gdlWQR2+++EquhdpWQJH9BQjK63tJJ6ngB3QMZDO6DiBoXiIGUsTPHjlrHVxPGcGxLQ==, + } + engines: { node: ">=8.0.0" } bcrypt-pbkdf@1.0.2: - resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + resolution: + { + integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==, + } bech32@1.1.4: - resolution: {integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==} + resolution: + { + integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==, + } bech32@2.0.0: - resolution: {integrity: sha512-LcknSilhIGatDAsY1ak2I8VtGaHNhgMSYVxFrGLXv+xLHytaKZKcaUJJUE7qmBr7h33o5YQwP55pMI0xmkpJwg==} + resolution: + { + integrity: sha512-LcknSilhIGatDAsY1ak2I8VtGaHNhgMSYVxFrGLXv+xLHytaKZKcaUJJUE7qmBr7h33o5YQwP55pMI0xmkpJwg==, + } before-after-hook@2.2.3: - resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} + resolution: + { + integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==, + } benchmark@2.1.4: - resolution: {integrity: sha512-l9MlfN4M1K/H2fbhfMy3B7vJd6AGKJVQn2h6Sg/Yx+KckoUA7ewS5Vv6TjSq18ooE1kS9hhAlQRH3AkXIh/aOQ==} + resolution: + { + integrity: sha512-l9MlfN4M1K/H2fbhfMy3B7vJd6AGKJVQn2h6Sg/Yx+KckoUA7ewS5Vv6TjSq18ooE1kS9hhAlQRH3AkXIh/aOQ==, + } 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" } better-path-resolve@1.0.0: - resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==, + } + engines: { node: ">=4" } bfj@7.1.0: - resolution: {integrity: sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==} - engines: {node: '>= 8.0.0'} + resolution: + { + integrity: sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==, + } + engines: { node: ">= 8.0.0" } big-integer@1.6.36: - resolution: {integrity: sha512-t70bfa7HYEA1D9idDbmuv7YbsbVkQ+Hp+8KFSul4aE5e/i1bjCNIRYJZlA8Q8p0r9T8cF/RVvwUgRA//FydEyg==} - engines: {node: '>=0.6'} + resolution: + { + integrity: sha512-t70bfa7HYEA1D9idDbmuv7YbsbVkQ+Hp+8KFSul4aE5e/i1bjCNIRYJZlA8Q8p0r9T8cF/RVvwUgRA//FydEyg==, + } + engines: { node: ">=0.6" } big-integer@1.6.52: - resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} - engines: {node: '>=0.6'} + resolution: + { + integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==, + } + engines: { node: ">=0.6" } big.js@5.2.2: - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + resolution: + { + integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==, + } big.js@6.0.0: - resolution: {integrity: sha512-PGsJX+jhBY5qaGOymm4V1QMM2oOCtfGdW8CxgbDTg17C/qHeW89jhx6Kpda3vS0uPHFT6sEhwbb5tlc0wmA+wQ==} + resolution: + { + integrity: sha512-PGsJX+jhBY5qaGOymm4V1QMM2oOCtfGdW8CxgbDTg17C/qHeW89jhx6Kpda3vS0uPHFT6sEhwbb5tlc0wmA+wQ==, + } deprecated: Strict mode bug fixed in v6.0.3 bigint-buffer@1.1.5: - resolution: {integrity: sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA==} - engines: {node: '>= 10.0.0'} + resolution: + { + integrity: sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA==, + } + engines: { node: ">= 10.0.0" } bigint-mod-arith@3.3.1: - resolution: {integrity: sha512-pX/cYW3dCa87Jrzv6DAr8ivbbJRzEX5yGhdt8IutnX/PCIXfpx+mabWNK/M8qqh+zQ0J3thftUBHW0ByuUlG0w==} - engines: {node: '>=10.4.0'} + resolution: + { + integrity: sha512-pX/cYW3dCa87Jrzv6DAr8ivbbJRzEX5yGhdt8IutnX/PCIXfpx+mabWNK/M8qqh+zQ0J3thftUBHW0ByuUlG0w==, + } + engines: { node: ">=10.4.0" } bignumber.js@7.2.1: - resolution: {integrity: sha512-S4XzBk5sMB+Rcb/LNcpzXr57VRTxgAvaAEDAl1AwRx27j00hT84O6OkteE7u8UB3NuaaygCRrEpqox4uDOrbdQ==} + resolution: + { + integrity: sha512-S4XzBk5sMB+Rcb/LNcpzXr57VRTxgAvaAEDAl1AwRx27j00hT84O6OkteE7u8UB3NuaaygCRrEpqox4uDOrbdQ==, + } bignumber.js@9.0.1: - resolution: {integrity: sha512-IdZR9mh6ahOBv/hYGiXyVuyCetmGJhtYkqLBpTStdhEGjegpPlUawydyaF3pbIOFynJTpllEs+NP+CS9jKFLjA==} + resolution: + { + integrity: sha512-IdZR9mh6ahOBv/hYGiXyVuyCetmGJhtYkqLBpTStdhEGjegpPlUawydyaF3pbIOFynJTpllEs+NP+CS9jKFLjA==, + } bignumber.js@9.1.2: - resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==} + resolution: + { + integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==, + } binary-extensions@2.3.0: - resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==, + } + engines: { node: ">=8" } binary@0.3.0: - resolution: {integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==} + resolution: + { + integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==, + } bindings@1.5.0: - resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + resolution: + { + integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==, + } bip174@2.1.1: - resolution: {integrity: sha512-mdFV5+/v0XyNYXjBS6CQPLo9ekCx4gtKZFnJm5PMto7Fs9hTTDpkkzOB7/FtluRI6JbUUAu+snTYfJRgHLZbZQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-mdFV5+/v0XyNYXjBS6CQPLo9ekCx4gtKZFnJm5PMto7Fs9hTTDpkkzOB7/FtluRI6JbUUAu+snTYfJRgHLZbZQ==, + } + engines: { node: ">=8.0.0" } bip32-path@0.4.2: - resolution: {integrity: sha512-ZBMCELjJfcNMkz5bDuJ1WrYvjlhEF5k6mQ8vUr4N7MbVRsXei7ZOg8VhhwMfNiW68NWmLkgkc6WvTickrLGprQ==} + resolution: + { + integrity: sha512-ZBMCELjJfcNMkz5bDuJ1WrYvjlhEF5k6mQ8vUr4N7MbVRsXei7ZOg8VhhwMfNiW68NWmLkgkc6WvTickrLGprQ==, + } bip32@2.0.6: - resolution: {integrity: sha512-HpV5OMLLGTjSVblmrtYRfFFKuQB+GArM0+XP8HGWfJ5vxYBqo+DesvJwOdC2WJ3bCkZShGf0QIfoIpeomVzVdA==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-HpV5OMLLGTjSVblmrtYRfFFKuQB+GArM0+XP8HGWfJ5vxYBqo+DesvJwOdC2WJ3bCkZShGf0QIfoIpeomVzVdA==, + } + engines: { node: ">=6.0.0" } bip32@4.0.0: - resolution: {integrity: sha512-aOGy88DDlVUhspIXJN+dVEtclhIsfAUppD43V0j40cPTld3pv/0X/MlrZSZ6jowIaQQzFwP8M6rFU2z2mVYjDQ==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-aOGy88DDlVUhspIXJN+dVEtclhIsfAUppD43V0j40cPTld3pv/0X/MlrZSZ6jowIaQQzFwP8M6rFU2z2mVYjDQ==, + } + engines: { node: ">=6.0.0" } bip39@3.0.2: - resolution: {integrity: sha512-J4E1r2N0tUylTKt07ibXvhpT2c5pyAFgvuA5q1H9uDy6dEGpjV8jmymh3MTYJDLCNbIVClSB9FbND49I6N24MQ==} + resolution: + { + integrity: sha512-J4E1r2N0tUylTKt07ibXvhpT2c5pyAFgvuA5q1H9uDy6dEGpjV8jmymh3MTYJDLCNbIVClSB9FbND49I6N24MQ==, + } bip39@3.1.0: - resolution: {integrity: sha512-c9kiwdk45Do5GL0vJMe7tS95VjCii65mYAH7DfWl3uW8AVzXKQVUm64i3hzVybBDMp9r7j9iNxR85+ul8MdN/A==} + resolution: + { + integrity: sha512-c9kiwdk45Do5GL0vJMe7tS95VjCii65mYAH7DfWl3uW8AVzXKQVUm64i3hzVybBDMp9r7j9iNxR85+ul8MdN/A==, + } bip66@1.1.5: - resolution: {integrity: sha512-nemMHz95EmS38a26XbbdxIYj5csHd3RMP3H5bwQknX0WYHF01qhpufP42mLOwVICuH2JmhIhXiWs89MfUGL7Xw==} + resolution: + { + integrity: sha512-nemMHz95EmS38a26XbbdxIYj5csHd3RMP3H5bwQknX0WYHF01qhpufP42mLOwVICuH2JmhIhXiWs89MfUGL7Xw==, + } bitcoin-ops@1.4.1: - resolution: {integrity: sha512-pef6gxZFztEhaE9RY9HmWVmiIHqCb2OyS4HPKkpc6CIiiOa3Qmuoylxc5P2EkU3w+5eTSifI9SEZC88idAIGow==} + resolution: + { + integrity: sha512-pef6gxZFztEhaE9RY9HmWVmiIHqCb2OyS4HPKkpc6CIiiOa3Qmuoylxc5P2EkU3w+5eTSifI9SEZC88idAIGow==, + } bitcoinjs-lib@5.2.0: - resolution: {integrity: sha512-5DcLxGUDejgNBYcieMIUfjORtUeNWl828VWLHJGVKZCb4zIS1oOySTUr0LGmcqJBQgTBz3bGbRQla4FgrdQEIQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-5DcLxGUDejgNBYcieMIUfjORtUeNWl828VWLHJGVKZCb4zIS1oOySTUr0LGmcqJBQgTBz3bGbRQla4FgrdQEIQ==, + } + engines: { node: ">=8.0.0" } bl@0.8.2: - resolution: {integrity: sha512-pfqikmByp+lifZCS0p6j6KreV6kNU6Apzpm2nKOk+94cZb/jvle55+JxWiByUQ0Wo/+XnDXEy5MxxKMb6r0VIw==} + resolution: + { + integrity: sha512-pfqikmByp+lifZCS0p6j6KreV6kNU6Apzpm2nKOk+94cZb/jvle55+JxWiByUQ0Wo/+XnDXEy5MxxKMb6r0VIw==, + } bl@4.1.0: - resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + resolution: + { + integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==, + } blake-hash@2.0.0: - resolution: {integrity: sha512-Igj8YowDu1PRkRsxZA7NVkdFNxH5rKv5cpLxQ0CVXSIA77pVYwCPRQJ2sMew/oneUpfuYRyjG6r8SmmmnbZb1w==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-Igj8YowDu1PRkRsxZA7NVkdFNxH5rKv5cpLxQ0CVXSIA77pVYwCPRQJ2sMew/oneUpfuYRyjG6r8SmmmnbZb1w==, + } + engines: { node: ">= 10" } blake2b-wasm@1.1.7: - resolution: {integrity: sha512-oFIHvXhlz/DUgF0kq5B1CqxIDjIJwh9iDeUUGQUcvgiGz7Wdw03McEO7CfLBy7QKGdsydcMCgO9jFNBAFCtFcA==} + resolution: + { + integrity: sha512-oFIHvXhlz/DUgF0kq5B1CqxIDjIJwh9iDeUUGQUcvgiGz7Wdw03McEO7CfLBy7QKGdsydcMCgO9jFNBAFCtFcA==, + } blake2b-wasm@2.4.0: - resolution: {integrity: sha512-S1kwmW2ZhZFFFOghcx73+ZajEfKBqhP82JMssxtLVMxlaPea1p9uoLiUZ5WYyHn0KddwbLc+0vh4wR0KBNoT5w==} + resolution: + { + integrity: sha512-S1kwmW2ZhZFFFOghcx73+ZajEfKBqhP82JMssxtLVMxlaPea1p9uoLiUZ5WYyHn0KddwbLc+0vh4wR0KBNoT5w==, + } blake2b@2.1.3: - resolution: {integrity: sha512-pkDss4xFVbMb4270aCyGD3qLv92314Et+FsKzilCLxDz5DuZ2/1g3w4nmBbu6nKApPspnjG7JcwTjGZnduB1yg==} + resolution: + { + integrity: sha512-pkDss4xFVbMb4270aCyGD3qLv92314Et+FsKzilCLxDz5DuZ2/1g3w4nmBbu6nKApPspnjG7JcwTjGZnduB1yg==, + } blake2b@2.1.4: - resolution: {integrity: sha512-AyBuuJNI64gIvwx13qiICz6H6hpmjvYS5DGkG6jbXMOT8Z3WUJ3V1X0FlhIoT1b/5JtHE3ki+xjtMvu1nn+t9A==} + resolution: + { + integrity: sha512-AyBuuJNI64gIvwx13qiICz6H6hpmjvYS5DGkG6jbXMOT8Z3WUJ3V1X0FlhIoT1b/5JtHE3ki+xjtMvu1nn+t9A==, + } blakejs@1.2.1: - resolution: {integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==} + resolution: + { + integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==, + } bluebird-lst@1.0.9: - resolution: {integrity: sha512-7B1Rtx82hjnSD4PGLAjVWeYH3tHAcVUmChh85a3lltKQm6FresXh9ErQo6oAv6CqxttczC3/kEg8SY5NluPuUw==} + resolution: + { + integrity: sha512-7B1Rtx82hjnSD4PGLAjVWeYH3tHAcVUmChh85a3lltKQm6FresXh9ErQo6oAv6CqxttczC3/kEg8SY5NluPuUw==, + } bluebird@3.4.7: - resolution: {integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==} + resolution: + { + integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==, + } bluebird@3.7.2: - resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} + resolution: + { + integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==, + } blueimp-md5@2.19.0: - resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==} + resolution: + { + integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==, + } bn.js@4.11.6: - resolution: {integrity: sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==} + resolution: + { + integrity: sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==, + } bn.js@4.12.0: - resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==} + resolution: + { + integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==, + } bn.js@5.2.1: - resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==} + resolution: + { + integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==, + } body-parser@1.20.2: - resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + resolution: + { + integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==, + } + engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 } bonjour-service@1.2.1: - resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==} + resolution: + { + integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==, + } boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + resolution: + { + integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==, + } boolean@3.2.0: - resolution: {integrity: sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==} + resolution: + { + integrity: sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==, + } borc@2.1.2: - resolution: {integrity: sha512-Sy9eoUi4OiKzq7VovMn246iTo17kzuyHJKomCfpWMlI6RpfN1gk95w7d7gH264nApVLg0HZfcpz62/g4VH1Y4w==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-Sy9eoUi4OiKzq7VovMn246iTo17kzuyHJKomCfpWMlI6RpfN1gk95w7d7gH264nApVLg0HZfcpz62/g4VH1Y4w==, + } + engines: { node: ">=4" } borsh@0.7.0: - resolution: {integrity: sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA==} + resolution: + { + integrity: sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA==, + } borsh@1.0.0: - resolution: {integrity: sha512-fSVWzzemnyfF89EPwlUNsrS5swF5CrtiN4e+h0/lLf4dz2he4L3ndM20PS9wj7ICSkXJe/TQUHdaPTq15b1mNQ==} + resolution: + { + integrity: sha512-fSVWzzemnyfF89EPwlUNsrS5swF5CrtiN4e+h0/lLf4dz2he4L3ndM20PS9wj7ICSkXJe/TQUHdaPTq15b1mNQ==, + } bottleneck@2.19.5: - resolution: {integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==} + resolution: + { + integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==, + } bowser@2.11.0: - resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==} + resolution: + { + integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==, + } + + bplist-creator@0.0.7: + resolution: + { + integrity: sha512-xp/tcaV3T5PCiaY04mXga7o/TE+t95gqeLmADeBI1CvZtdWTbgBt3uLpvh4UWtenKeBhCV6oVxGk38yZr2uYEA==, + } bplist-creator@0.1.0: - resolution: {integrity: sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==} + resolution: + { + integrity: sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==, + } bplist-parser@0.2.0: - resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} - engines: {node: '>= 5.10.0'} + resolution: + { + integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==, + } + engines: { node: ">= 5.10.0" } bplist-parser@0.3.1: - resolution: {integrity: sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==} - engines: {node: '>= 5.10.0'} + resolution: + { + integrity: sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==, + } + engines: { node: ">= 5.10.0" } bplist-parser@0.3.2: - resolution: {integrity: sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==} - engines: {node: '>= 5.10.0'} + resolution: + { + integrity: sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==, + } + engines: { node: ">= 5.10.0" } 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" } brorand@1.1.0: - resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} + resolution: + { + integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==, + } browser-assert@1.2.1: - resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} + resolution: + { + integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==, + } browser-process-hrtime@1.0.0: - resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} + resolution: + { + integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==, + } browserify-aes@1.2.0: - resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} + resolution: + { + integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==, + } browserify-cipher@1.0.1: - resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==} + resolution: + { + integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==, + } browserify-des@1.0.2: - resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==} + resolution: + { + integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==, + } browserify-rsa@4.1.0: - resolution: {integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==} + resolution: + { + integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==, + } browserify-sign@4.2.3: - resolution: {integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==} - engines: {node: '>= 0.12'} + resolution: + { + integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==, + } + engines: { node: ">= 0.12" } browserify-zlib@0.1.4: - resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==} + resolution: + { + integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==, + } browserify-zlib@0.2.0: - resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==} + resolution: + { + integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==, + } browserslist@4.23.0: - resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + resolution: + { + integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==, + } + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true bs-logger@0.2.6: - resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==, + } + engines: { node: ">= 6" } bs58@4.0.0: - resolution: {integrity: sha512-/jcGuUuSebyxwLLfKrbKnCJttxRf9PM51EnHTwmFKBxl4z1SGkoAhrfd6uZKE0dcjQTfm6XzTP8DPr1tzE4KIw==} + resolution: + { + integrity: sha512-/jcGuUuSebyxwLLfKrbKnCJttxRf9PM51EnHTwmFKBxl4z1SGkoAhrfd6uZKE0dcjQTfm6XzTP8DPr1tzE4KIw==, + } bs58@4.0.1: - resolution: {integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==} + resolution: + { + integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==, + } bs58@5.0.0: - resolution: {integrity: sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==} + resolution: + { + integrity: sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==, + } bs58check@2.1.2: - resolution: {integrity: sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==} + resolution: + { + integrity: sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==, + } bs58check@3.0.1: - resolution: {integrity: sha512-hjuuJvoWEybo7Hn/0xOrczQKKEKD63WguEjlhLExYs2wUBcebDC1jDNK17eEAD2lYfw82d5ASC1d7K3SWszjaQ==} + resolution: + { + integrity: sha512-hjuuJvoWEybo7Hn/0xOrczQKKEKD63WguEjlhLExYs2wUBcebDC1jDNK17eEAD2lYfw82d5ASC1d7K3SWszjaQ==, + } bser@2.1.1: - resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} + resolution: + { + integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==, + } btoa-lite@1.0.0: - resolution: {integrity: sha512-gvW7InbIyF8AicrqWoptdW08pUxuhq8BEgowNajy9RhiE86fmGAGl+bLKo6oB8QP0CkqHLowfN0oJdKC/J6LbA==} + resolution: + { + integrity: sha512-gvW7InbIyF8AicrqWoptdW08pUxuhq8BEgowNajy9RhiE86fmGAGl+bLKo6oB8QP0CkqHLowfN0oJdKC/J6LbA==, + } btoa@1.2.1: - resolution: {integrity: sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==} - engines: {node: '>= 0.4.0'} + resolution: + { + integrity: sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==, + } + engines: { node: ">= 0.4.0" } hasBin: true buffer-alloc-unsafe@1.1.0: - resolution: {integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==} + resolution: + { + integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==, + } buffer-alloc@1.2.0: - resolution: {integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==} + resolution: + { + integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==, + } buffer-crc32@0.2.13: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + resolution: + { + integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==, + } buffer-equal-constant-time@1.0.1: - resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} + resolution: + { + integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==, + } buffer-equal@1.0.1: - resolution: {integrity: sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==} - engines: {node: '>=0.4'} + resolution: + { + integrity: sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==, + } + engines: { node: ">=0.4" } buffer-fill@1.0.0: - resolution: {integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==} + resolution: + { + integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==, + } buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + resolution: + { + integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, + } buffer-indexof-polyfill@1.0.2: - resolution: {integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==, + } + engines: { node: ">=0.10" } buffer-to-arraybuffer@0.0.5: - resolution: {integrity: sha512-3dthu5CYiVB1DEJp61FtApNnNndTckcqe4pFcLdvHtrpG+kcyekCJKg4MRiDcFW7A6AODnXB9U4dwQiCW5kzJQ==} + resolution: + { + integrity: sha512-3dthu5CYiVB1DEJp61FtApNnNndTckcqe4pFcLdvHtrpG+kcyekCJKg4MRiDcFW7A6AODnXB9U4dwQiCW5kzJQ==, + } buffer-xor@1.0.3: - resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} + resolution: + { + integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==, + } buffer@4.9.2: - resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==} + resolution: + { + integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==, + } buffer@5.4.3: - resolution: {integrity: sha512-zvj65TkFeIt3i6aj5bIvJDzjjQQGs4o/sNoezg1F1kYap9Nu2jcUdpwzRSJTHMMzG0H7bZkn4rNQpImhuxWX2A==} + resolution: + { + integrity: sha512-zvj65TkFeIt3i6aj5bIvJDzjjQQGs4o/sNoezg1F1kYap9Nu2jcUdpwzRSJTHMMzG0H7bZkn4rNQpImhuxWX2A==, + } buffer@5.6.0: - resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==} + resolution: + { + integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==, + } buffer@5.6.1: - resolution: {integrity: sha512-2z15UUHpS9/3tk9mY/q+Rl3rydOi7yMp5XWNQnRvoz+mJwiv8brqYwp9a+nOCtma6dwuEIxljD8W3ysVBZ05Vg==} + resolution: + { + integrity: sha512-2z15UUHpS9/3tk9mY/q+Rl3rydOi7yMp5XWNQnRvoz+mJwiv8brqYwp9a+nOCtma6dwuEIxljD8W3ysVBZ05Vg==, + } 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==, + } buffers@0.1.1: - resolution: {integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==} - engines: {node: '>=0.2.0'} + resolution: + { + integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==, + } + engines: { node: ">=0.2.0" } bufferutil@4.0.8: - resolution: {integrity: sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==} - engines: {node: '>=6.14.2'} + resolution: + { + integrity: sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==, + } + engines: { node: ">=6.14.2" } builder-util-runtime@9.2.3: - resolution: {integrity: sha512-FGhkqXdFFZ5dNC4C+yuQB9ak311rpGAw+/ASz8ZdxwODCv1GGMWgLDeofRkdi0F3VCHQEWy/aXcJQozx2nOPiw==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-FGhkqXdFFZ5dNC4C+yuQB9ak311rpGAw+/ASz8ZdxwODCv1GGMWgLDeofRkdi0F3VCHQEWy/aXcJQozx2nOPiw==, + } + engines: { node: ">=12.0.0" } builder-util-runtime@9.2.4: - resolution: {integrity: sha512-upp+biKpN/XZMLim7aguUyW8s0FUpDvOtK6sbanMFDAMBzpHDqdhgVYm6zc9HJ6nWo7u2Lxk60i2M6Jd3aiNrA==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-upp+biKpN/XZMLim7aguUyW8s0FUpDvOtK6sbanMFDAMBzpHDqdhgVYm6zc9HJ6nWo7u2Lxk60i2M6Jd3aiNrA==, + } + engines: { node: ">=12.0.0" } builder-util@24.13.1: - resolution: {integrity: sha512-NhbCSIntruNDTOVI9fdXz0dihaqX2YuE1D6zZMrwiErzH4ELZHE6mdiB40wEgZNprDia+FghRFgKoAqMZRRjSA==} + resolution: + { + integrity: sha512-NhbCSIntruNDTOVI9fdXz0dihaqX2YuE1D6zZMrwiErzH4ELZHE6mdiB40wEgZNprDia+FghRFgKoAqMZRRjSA==, + } builtin-modules@3.3.0: - resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==, + } + engines: { node: ">=6" } builtin-status-codes@3.0.0: - resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==} + resolution: + { + integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==, + } builtins@1.0.3: - resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} + resolution: + { + integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==, + } bundle-require@4.0.2: - resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } peerDependencies: - esbuild: '>=0.17' + esbuild: ">=0.17" bunyamin@1.5.2: - resolution: {integrity: sha512-Xp2nfqk33zt3nX90OSTkLVOc5N+1zdR3MWvfLHoIrm3cGRkdxPTPYB9CCgrDV8oum5rbghJjAbmXFXOrRXvMtg==} - engines: {node: '>=14.18.2'} + resolution: + { + integrity: sha512-Xp2nfqk33zt3nX90OSTkLVOc5N+1zdR3MWvfLHoIrm3cGRkdxPTPYB9CCgrDV8oum5rbghJjAbmXFXOrRXvMtg==, + } + engines: { node: ">=14.18.2" } peerDependencies: - '@types/bunyan': ^1.8.8 + "@types/bunyan": ^1.8.8 bunyan: ^1.8.15 || ^2.0.0 peerDependenciesMeta: - '@types/bunyan': + "@types/bunyan": optional: true bunyan: optional: true bunyamin@1.6.3: - resolution: {integrity: sha512-m1hAijFhu8pFiidsVc0XEDic46uxPK+mKNLqkb5mluNx0nTolNzx/DjwMqHChQWCgfOLMjKYJJ2uPTQLE6t4Ng==} - engines: {node: '>=14.18.2'} + resolution: + { + integrity: sha512-m1hAijFhu8pFiidsVc0XEDic46uxPK+mKNLqkb5mluNx0nTolNzx/DjwMqHChQWCgfOLMjKYJJ2uPTQLE6t4Ng==, + } + engines: { node: ">=14.18.2" } peerDependencies: - '@types/bunyan': ^1.8.8 + "@types/bunyan": ^1.8.8 bunyan: ^1.8.15 || ^2.0.0 peerDependenciesMeta: - '@types/bunyan': + "@types/bunyan": optional: true bunyan: optional: true bunyan-debug-stream@3.1.0: - resolution: {integrity: sha512-VaFYbDVdiSn3ZpdozrjZ8mFpxHXl26t11C1DKRQtbo0EgffqeFNrRLOGIESKVeGEvVu4qMxMSSxzNlSw7oTj7w==} - engines: {node: '>=0.12.0'} + resolution: + { + integrity: sha512-VaFYbDVdiSn3ZpdozrjZ8mFpxHXl26t11C1DKRQtbo0EgffqeFNrRLOGIESKVeGEvVu4qMxMSSxzNlSw7oTj7w==, + } + engines: { node: ">=0.12.0" } peerDependencies: - bunyan: '*' + bunyan: "*" bunyan@1.8.15: - resolution: {integrity: sha512-0tECWShh6wUysgucJcBAoYegf3JJoZWibxdqhTm7OHPeT42qdjkZ29QCMcKwbgU1kiH+auSIasNRXMLWXafXig==} - engines: {'0': node >=0.10.0} + resolution: + { + integrity: sha512-0tECWShh6wUysgucJcBAoYegf3JJoZWibxdqhTm7OHPeT42qdjkZ29QCMcKwbgU1kiH+auSIasNRXMLWXafXig==, + } + engines: { "0": node >=0.10.0 } hasBin: true bunyan@2.0.5: - resolution: {integrity: sha512-Jvl74TdxCN6rSP9W1I6+UOUtwslTDqsSFkDqZlFb/ilaSvQ+bZAnXT/GT97IZ5L+Vph0joPZPhxUyn6FLNmFAA==} - engines: {'0': node >=0.10.0} + resolution: + { + integrity: sha512-Jvl74TdxCN6rSP9W1I6+UOUtwslTDqsSFkDqZlFb/ilaSvQ+bZAnXT/GT97IZ5L+Vph0joPZPhxUyn6FLNmFAA==, + } + engines: { "0": node >=0.10.0 } hasBin: true 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" } byte-size@6.2.0: - resolution: {integrity: sha512-6EspYUCAPMc7E2rltBgKwhG+Cmk0pDm9zDtF1Awe2dczNUL3YpZ8mTs/dueOTS1hqGWBOatqef4jYMGjln7WmA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-6EspYUCAPMc7E2rltBgKwhG+Cmk0pDm9zDtF1Awe2dczNUL3YpZ8mTs/dueOTS1hqGWBOatqef4jYMGjln7WmA==, + } + engines: { node: ">=8" } bytes@3.0.0: - resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==, + } + engines: { node: ">= 0.8" } bytes@3.1.2: - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==, + } + engines: { node: ">= 0.8" } c32check@1.1.3: - resolution: {integrity: sha512-ADADE/PjAbJRlwpG3ShaOMbBUlJJZO7xaYSRD5Tub6PixQlgR4s36y9cvMf/YRGpkqX+QOxIdMw216iC320q9A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ADADE/PjAbJRlwpG3ShaOMbBUlJJZO7xaYSRD5Tub6PixQlgR4s36y9cvMf/YRGpkqX+QOxIdMw216iC320q9A==, + } + engines: { node: ">=8" } c32check@2.0.0: - resolution: {integrity: sha512-rpwfAcS/CMqo0oCqDf3r9eeLgScRE3l/xHDCXhM3UyrfvIn7PrLq63uHh7yYbv8NzaZn5MVsVhIRpQ+5GZ5HyA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-rpwfAcS/CMqo0oCqDf3r9eeLgScRE3l/xHDCXhM3UyrfvIn7PrLq63uHh7yYbv8NzaZn5MVsVhIRpQ+5GZ5HyA==, + } + engines: { node: ">=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" } cacache@15.3.0: - resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==, + } + engines: { node: ">= 10" } + + cacache@18.0.4: + resolution: + { + integrity: sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==, + } + engines: { node: ^16.14.0 || >=18.0.0 } cache-content-type@1.0.1: - resolution: {integrity: sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==} - engines: {node: '>= 6.0.0'} + resolution: + { + integrity: sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==, + } + engines: { node: ">= 6.0.0" } cacheable-lookup@5.0.4: - resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} - engines: {node: '>=10.6.0'} + resolution: + { + integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==, + } + engines: { node: ">=10.6.0" } cacheable-request@6.1.0: - resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==, + } + engines: { node: ">=8" } cacheable-request@7.0.4: - resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==, + } + engines: { node: ">=8" } caching-transform@4.0.0: - resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==, + } + engines: { node: ">=8" } caf@15.0.1: - resolution: {integrity: sha512-Xp/IK6vMwujxWZXra7djdYzPdPnEQKa7Mudu2wZgDQ3TJry1I0TgtjEgwZHpoBcMp68j4fb0/FZ1SJyMEgJrXQ==} + resolution: + { + integrity: sha512-Xp/IK6vMwujxWZXra7djdYzPdPnEQKa7Mudu2wZgDQ3TJry1I0TgtjEgwZHpoBcMp68j4fb0/FZ1SJyMEgJrXQ==, + } call-bind@1.0.7: - resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==, + } + engines: { node: ">= 0.4" } caller-callsite@2.0.0: - resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==, + } + engines: { node: ">=4" } caller-path@2.0.0: - resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==, + } + engines: { node: ">=4" } callsites@2.0.0: - resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==, + } + engines: { node: ">=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-keys@6.2.2: - resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==, + } + engines: { node: ">=8" } camelcase@5.0.0: - resolution: {integrity: sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==, + } + 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" } camelize@1.0.1: - resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} + resolution: + { + integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==, + } caniuse-api@3.0.0: - resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} + resolution: + { + integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==, + } caniuse-lite@1.0.30001600: - resolution: {integrity: sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ==} + resolution: + { + integrity: sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ==, + } canvas-confetti@1.9.2: - resolution: {integrity: sha512-6Xi7aHHzKwxZsem4mCKoqP6YwUG3HamaHHAlz1hTNQPCqXhARFpSXnkC9TWlahHY5CG6hSL5XexNjxK8irVErg==} + resolution: + { + integrity: sha512-6Xi7aHHzKwxZsem4mCKoqP6YwUG3HamaHHAlz1hTNQPCqXhARFpSXnkC9TWlahHY5CG6hSL5XexNjxK8irVErg==, + } case-sensitive-paths-webpack-plugin@2.4.0: - resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==, + } + engines: { node: ">=4" } caseless@0.12.0: - resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + resolution: + { + integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==, + } cashaddrjs@0.4.4: - resolution: {integrity: sha512-xZkuWdNOh0uq/mxJIng6vYWfTowZLd9F4GMAlp2DwFHlcCqCm91NtuAc47RuV4L7r4PYcY5p6Cr2OKNb4hnkWA==} + resolution: + { + integrity: sha512-xZkuWdNOh0uq/mxJIng6vYWfTowZLd9F4GMAlp2DwFHlcCqCm91NtuAc47RuV4L7r4PYcY5p6Cr2OKNb4hnkWA==, + } casper-js-sdk@2.15.4: - resolution: {integrity: sha512-mdd8IBTW3g4RIfQ8YOWIijXPTf5oumWJLoAH1YvYKJ9R2sI9eqJCXjAFo7ragnhiqoR07J3IYNFYYwXMvGwUDA==} + resolution: + { + integrity: sha512-mdd8IBTW3g4RIfQ8YOWIijXPTf5oumWJLoAH1YvYKJ9R2sI9eqJCXjAFo7ragnhiqoR07J3IYNFYYwXMvGwUDA==, + } catharsis@0.9.0: - resolution: {integrity: sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==, + } + engines: { node: ">= 10" } cbor@9.0.2: - resolution: {integrity: sha512-JPypkxsB10s9QOWwa6zwPzqE1Md3vqpPc+cai4sAecuCsRyAtAl/pMyhPlMbT/xtPnm2dznJZYRLui57qiRhaQ==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-JPypkxsB10s9QOWwa6zwPzqE1Md3vqpPc+cai4sAecuCsRyAtAl/pMyhPlMbT/xtPnm2dznJZYRLui57qiRhaQ==, + } + engines: { node: ">=16" } cborg@4.1.4: - resolution: {integrity: sha512-cCw4IuvCnwjsrgrCQoreyLZDETsfw+AtFz+OFwWbWgA1yALo4nHC3Vv+zhgcVB2bor6GFRZVxrZ7Yt/3hBFAkA==} + resolution: + { + integrity: sha512-cCw4IuvCnwjsrgrCQoreyLZDETsfw+AtFz+OFwWbWgA1yALo4nHC3Vv+zhgcVB2bor6GFRZVxrZ7Yt/3hBFAkA==, + } hasBin: true ccount@2.0.1: - resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + resolution: + { + integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==, + } chai@4.4.1: - resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==, + } + engines: { node: ">=4" } chainsaw@0.1.0: - resolution: {integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==} + resolution: + { + integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==, + } chalk@1.1.3: - resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==, + } + engines: { node: ">=0.10.0" } chalk@2.3.0: - resolution: {integrity: sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==, + } + engines: { node: ">=4" } chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, + } + engines: { node: ">=4" } 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.3.0: - resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + resolution: + { + integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==, + } + engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } char-regex@1.0.2: - resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==, + } + engines: { node: ">=10" } char-regex@2.0.1: - resolution: {integrity: sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==} - engines: {node: '>=12.20'} + resolution: + { + integrity: sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==, + } + engines: { node: ">=12.20" } character-entities-html4@2.1.0: - resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + resolution: + { + integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==, + } character-entities-legacy@1.1.4: - resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} + resolution: + { + integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==, + } 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@1.2.4: - resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} + resolution: + { + integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==, + } 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@1.1.4: - resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} + resolution: + { + integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==, + } 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==, + } charenc@0.0.2: - resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==} + resolution: + { + integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==, + } chart.js@2.9.4: - resolution: {integrity: sha512-B07aAzxcrikjAPyV+01j7BmOpxtQETxTSlQ26BEYJ+3iUkbNKaOJ/nDbT6JjyqYxseM0ON12COHYdU2cTIjC7A==} + resolution: + { + integrity: sha512-B07aAzxcrikjAPyV+01j7BmOpxtQETxTSlQ26BEYJ+3iUkbNKaOJ/nDbT6JjyqYxseM0ON12COHYdU2cTIjC7A==, + } chartjs-color-string@0.6.0: - resolution: {integrity: sha512-TIB5OKn1hPJvO7JcteW4WY/63v6KwEdt6udfnDE9iCAZgy+V4SrbSxoIbTw/xkUIapjEI4ExGtD0+6D3KyFd7A==} + resolution: + { + integrity: sha512-TIB5OKn1hPJvO7JcteW4WY/63v6KwEdt6udfnDE9iCAZgy+V4SrbSxoIbTw/xkUIapjEI4ExGtD0+6D3KyFd7A==, + } chartjs-color@2.4.1: - resolution: {integrity: sha512-haqOg1+Yebys/Ts/9bLo/BqUcONQOdr/hoEr2LLTRl6C5LXctUdHxsCYfvQVg5JIxITrfCNUDr4ntqmQk9+/0w==} + resolution: + { + integrity: sha512-haqOg1+Yebys/Ts/9bLo/BqUcONQOdr/hoEr2LLTRl6C5LXctUdHxsCYfvQVg5JIxITrfCNUDr4ntqmQk9+/0w==, + } check-error@1.0.3: - resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} + resolution: + { + integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==, + } check-types@11.2.3: - resolution: {integrity: sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==} + resolution: + { + integrity: sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==, + } child-process-promise@2.2.1: - resolution: {integrity: sha512-Fi4aNdqBsr0mv+jgWxcZ/7rAIC2mgihrptyVI4foh/rrjY/3BNjfP9+oaiFx/fzim+1ZyCNBae0DlyfQhSugog==} + resolution: + { + integrity: sha512-Fi4aNdqBsr0mv+jgWxcZ/7rAIC2mgihrptyVI4foh/rrjY/3BNjfP9+oaiFx/fzim+1ZyCNBae0DlyfQhSugog==, + } 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" } chownr@1.1.4: - resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + resolution: + { + integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==, + } chownr@2.0.0: - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==, + } + engines: { node: ">=10" } chrome-launcher@0.15.2: - resolution: {integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==} - engines: {node: '>=12.13.0'} + resolution: + { + integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==, + } + engines: { node: ">=12.13.0" } hasBin: true chrome-trace-event@1.0.3: - resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} - engines: {node: '>=6.0'} - - chromium-edge-launcher@1.0.0: - resolution: {integrity: sha512-pgtgjNKZ7i5U++1g1PWv75umkHvhVTDOQIZ+sjeUX9483S7Y6MUvO0lrd7ShGlQlFHMN4SwKTCq/X8hWrbv2KA==} + resolution: + { + integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==, + } + engines: { node: ">=6.0" } chromium-pickle-js@0.2.0: - resolution: {integrity: sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==} + resolution: + { + integrity: sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==, + } ci-info@2.0.0: - resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} + resolution: + { + integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==, + } ci-info@3.9.0: - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==, + } + engines: { node: ">=8" } cids@0.7.5: - resolution: {integrity: sha512-zT7mPeghoWAu+ppn8+BS1tQ5qGmbMfB4AregnQjA/qHY3GC1m1ptI9GkWNlgeu38r7CuRdXB47uY2XgAYt6QVA==} - engines: {node: '>=4.0.0', npm: '>=3.0.0'} + resolution: + { + integrity: sha512-zT7mPeghoWAu+ppn8+BS1tQ5qGmbMfB4AregnQjA/qHY3GC1m1ptI9GkWNlgeu38r7CuRdXB47uY2XgAYt6QVA==, + } + engines: { node: ">=4.0.0", npm: ">=3.0.0" } deprecated: This module has been superseded by the multiformats module cipher-base@1.0.4: - resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==} + resolution: + { + integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==, + } citty@0.1.6: - resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} + resolution: + { + integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==, + } cjs-module-lexer@1.2.3: - resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==} + resolution: + { + integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==, + } class-is@1.1.0: - resolution: {integrity: sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw==} + resolution: + { + integrity: sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw==, + } classnames@2.5.1: - resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} + resolution: + { + integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==, + } clean-css@5.3.3: - resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} - engines: {node: '>= 10.0'} + resolution: + { + integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==, + } + engines: { node: ">= 10.0" } clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==, + } + engines: { node: ">=6" } clean-webpack-plugin@4.0.0: - resolution: {integrity: sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==, + } + engines: { node: ">=10.0.0" } peerDependencies: - webpack: '>=4.0.0 <6.0.0' + webpack: ">=4.0.0 <6.0.0" cli-cursor@2.1.0: - resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==, + } + engines: { node: ">=4" } 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-highlight@2.1.11: - resolution: {integrity: sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==} - engines: {node: '>=8.0.0', npm: '>=5.0.0'} + resolution: + { + integrity: sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==, + } + engines: { node: ">=8.0.0", npm: ">=5.0.0" } hasBin: true cli-spinners@2.9.2: - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==, + } + engines: { node: ">=6" } cli-table3@0.6.4: - resolution: {integrity: sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==} - engines: {node: 10.* || >= 12.*} + resolution: + { + integrity: sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==, + } + engines: { node: 10.* || >= 12.* } cli-truncate@0.2.1: - resolution: {integrity: sha512-f4r4yJnbT++qUPI9NR4XLDLq41gQ+uqnPItWG0F5ZkehuNiTTa3EY0S4AqTSUOeJ7/zU41oWPQSNkW5BqPL9bg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-f4r4yJnbT++qUPI9NR4XLDLq41gQ+uqnPItWG0F5ZkehuNiTTa3EY0S4AqTSUOeJ7/zU41oWPQSNkW5BqPL9bg==, + } + engines: { node: ">=0.10.0" } 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-truncate@3.1.0: - resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } cli-width@2.2.1: - resolution: {integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==} + resolution: + { + integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==, + } cli-width@4.1.0: - resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} - engines: {node: '>= 12'} + resolution: + { + integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==, + } + engines: { node: ">= 12" } client-only@0.0.1: - resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + resolution: + { + integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==, + } clipboardy@1.2.2: - resolution: {integrity: sha512-16KrBOV7bHmHdxcQiCvfUFYVFyEah4FI8vYT1Fr7CGSA4G+xBWMEfUEQJS1hxeHGtI9ju1Bzs9uXSbj5HZKArw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-16KrBOV7bHmHdxcQiCvfUFYVFyEah4FI8vYT1Fr7CGSA4G+xBWMEfUEQJS1hxeHGtI9ju1Bzs9uXSbj5HZKArw==, + } + engines: { node: ">=4" } clipboardy@2.3.0: - resolution: {integrity: sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==, + } + engines: { node: ">=8" } cliui@6.0.0: - resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} + resolution: + { + integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==, + } cliui@7.0.4: - resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} + resolution: + { + integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==, + } 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-deep@2.0.2: - resolution: {integrity: sha512-SZegPTKjCgpQH63E+eN6mVEEPdQBOUzjyJm5Pora4lrwWRFS8I0QAxV/KD6vV/i0WuijHZWQC1fMsPEdxfdVCQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-SZegPTKjCgpQH63E+eN6mVEEPdQBOUzjyJm5Pora4lrwWRFS8I0QAxV/KD6vV/i0WuijHZWQC1fMsPEdxfdVCQ==, + } + engines: { node: ">=0.10.0" } clone-deep@4.0.1: - resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==, + } + engines: { node: ">=6" } clone-response@1.0.3: - resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} + resolution: + { + integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==, + } clone@0.1.19: - resolution: {integrity: sha512-IO78I0y6JcSpEPHzK4obKdsL7E7oLdRVDVOLwr2Hkbjsb+Eoz0dxW6tef0WizoKu0gLC4oZSZuEF4U2K6w1WQw==} + resolution: + { + integrity: sha512-IO78I0y6JcSpEPHzK4obKdsL7E7oLdRVDVOLwr2Hkbjsb+Eoz0dxW6tef0WizoKu0gLC4oZSZuEF4U2K6w1WQw==, + } 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" } clone@2.1.2: - resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} - engines: {node: '>=0.8'} + resolution: + { + integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==, + } + engines: { node: ">=0.8" } clsx@2.1.1: - resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==, + } + engines: { node: ">=6" } cluster-key-slot@1.1.2: - resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==, + } + engines: { node: ">=0.10.0" } co-body@6.1.0: - resolution: {integrity: sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ==} + resolution: + { + integrity: sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ==, + } co@4.6.0: - resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} - engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} + resolution: + { + integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==, + } + engines: { iojs: ">= 1.0.0", node: ">= 0.12.0" } coa@2.0.2: - resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} - engines: {node: '>= 4.0'} + resolution: + { + integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==, + } + engines: { node: ">= 4.0" } code-point-at@1.1.0: - resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==, + } + engines: { node: ">=0.10.0" } codemirror@6.0.1: - resolution: {integrity: sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==} + resolution: + { + integrity: sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==, + } coininfo@5.2.1: - resolution: {integrity: sha512-mqSQIhAMgeiySzS0Ei33qno0oN/JQt9X3I6J1zx4eIYUnObGPuoLOrpssoqU84ZQoIpJGt3mQdEd2dL3sZJADw==} + resolution: + { + integrity: sha512-mqSQIhAMgeiySzS0Ei33qno0oN/JQt9X3I6J1zx4eIYUnObGPuoLOrpssoqU84ZQoIpJGt3mQdEd2dL3sZJADw==, + } collapse-white-space@1.0.6: - resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==} + resolution: + { + integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==, + } collect-v8-coverage@1.0.2: - resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} + resolution: + { + integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==, + } color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + resolution: + { + integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, + } 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.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + resolution: + { + integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, + } color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + resolution: + { + integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, + } color-string@1.9.1: - resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} + resolution: + { + integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==, + } color@3.2.1: - resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==} + resolution: + { + integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==, + } color@4.2.3: - resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} - engines: {node: '>=12.5.0'} + resolution: + { + integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==, + } + engines: { node: ">=12.5.0" } colord@2.9.3: - resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} + resolution: + { + integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==, + } colorette@1.4.0: - resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + resolution: + { + integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==, + } colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + resolution: + { + integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==, + } colorspace@1.1.4: - resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==} + resolution: + { + integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==, + } 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==, + } command-exists@1.2.9: - resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==} + resolution: + { + integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==, + } command-line-args@5.2.1: - resolution: {integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==, + } + engines: { node: ">=4.0.0" } command-line-usage@6.1.3: - resolution: {integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==, + } + engines: { node: ">=8.0.0" } commander@11.0.0: - resolution: {integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==, + } + engines: { node: ">=16" } commander@12.0.0: - resolution: {integrity: sha512-MwVNWlYjDTtOjX5PiD7o5pK0UrFU/OYgcJfjjK4RaHZETNtjJqrZa9Y9ds88+A+f+d5lv+561eZ+yCKoS3gbAA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-MwVNWlYjDTtOjX5PiD7o5pK0UrFU/OYgcJfjjK4RaHZETNtjJqrZa9Y9ds88+A+f+d5lv+561eZ+yCKoS3gbAA==, + } + engines: { node: ">=18" } commander@2.13.0: - resolution: {integrity: sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==} + resolution: + { + integrity: sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==, + } commander@2.20.0: - resolution: {integrity: sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==} + resolution: + { + integrity: sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==, + } 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@5.1.0: - resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==, + } + engines: { node: ">= 6" } commander@6.2.1: - resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==, + } + 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" } commander@8.3.0: - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} - engines: {node: '>= 12'} + resolution: + { + integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==, + } + engines: { node: ">= 12" } commander@9.5.0: - resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} - engines: {node: ^12.20.0 || >=14} + resolution: + { + integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==, + } + engines: { node: ^12.20.0 || >=14 } common-log-format@1.0.0: - resolution: {integrity: sha512-fFn/WPNbsTCGTTwdCpZfVZSa5mgqMEkA0gMTRApFSlEsYN+9B2FPfiqch5FT+jsv5IV1RHV3GeZvCa7Qg+jssw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-fFn/WPNbsTCGTTwdCpZfVZSa5mgqMEkA0gMTRApFSlEsYN+9B2FPfiqch5FT+jsv5IV1RHV3GeZvCa7Qg+jssw==, + } + engines: { node: ">=8" } hasBin: true common-path-prefix@3.0.0: - resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} + resolution: + { + integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==, + } 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" } commondir@1.0.1: - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + resolution: + { + integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==, + } compare-func@2.0.0: - resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + resolution: + { + integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==, + } compare-version@0.1.2: - resolution: {integrity: sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==, + } + engines: { node: ">=0.10.0" } compare-versions@3.6.0: - resolution: {integrity: sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==} + resolution: + { + integrity: sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==, + } component-emitter@1.3.1: - resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==} + resolution: + { + integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==, + } component-type@1.2.2: - resolution: {integrity: sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA==} + resolution: + { + integrity: sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA==, + } compress-commons@5.0.3: - resolution: {integrity: sha512-/UIcLWvwAQyVibgpQDPtfNM3SvqN7G9elAPAV7GM0L53EbNWwWiCsWtK8Fwed/APEbptPHXs5PuW+y8Bq8lFTA==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-/UIcLWvwAQyVibgpQDPtfNM3SvqN7G9elAPAV7GM0L53EbNWwWiCsWtK8Fwed/APEbptPHXs5PuW+y8Bq8lFTA==, + } + engines: { node: ">= 12.0.0" } compressible@2.0.18: - resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==, + } + engines: { node: ">= 0.6" } compression@1.7.4: - resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==, + } + engines: { node: ">= 0.8.0" } compute-scroll-into-view@3.1.0: - resolution: {integrity: sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==} + resolution: + { + integrity: sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==, + } concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + resolution: + { + integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, + } concat-stream@1.6.2: - resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} - engines: {'0': node >= 0.8} + resolution: + { + integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==, + } + engines: { "0": node >= 0.8 } concurrently@8.2.2: - resolution: {integrity: sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==} - engines: {node: ^14.13.0 || >=16.0.0} + resolution: + { + integrity: sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==, + } + engines: { node: ^14.13.0 || >=16.0.0 } hasBin: true conf@10.2.0: - resolution: {integrity: sha512-8fLl9F04EJqjSqH+QjITQfJF8BrOVaYr1jewVgSRAEWePfxT0sku4w2hrGQ60BC/TNLGQ2pgxNlTbWQmMPFvXg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-8fLl9F04EJqjSqH+QjITQfJF8BrOVaYr1jewVgSRAEWePfxT0sku4w2hrGQ60BC/TNLGQ2pgxNlTbWQmMPFvXg==, + } + engines: { node: ">=12" } conf@12.0.0: - resolution: {integrity: sha512-fIWyWUXrJ45cHCIQX+Ck1hrZDIf/9DR0P0Zewn3uNht28hbt5OfGUq8rRWsxi96pZWPyBEd0eY9ama01JTaknA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-fIWyWUXrJ45cHCIQX+Ck1hrZDIf/9DR0P0Zewn3uNht28hbt5OfGUq8rRWsxi96pZWPyBEd0eY9ama01JTaknA==, + } + engines: { node: ">=18" } config-file-ts@0.2.6: - resolution: {integrity: sha512-6boGVaglwblBgJqGyxm4+xCmEGcWgnWHSWHY5jad58awQhB6gftq0G8HbzU39YqCIYHMLAiL1yjwiZ36m/CL8w==} + resolution: + { + integrity: sha512-6boGVaglwblBgJqGyxm4+xCmEGcWgnWHSWHY5jad58awQhB6gftq0G8HbzU39YqCIYHMLAiL1yjwiZ36m/CL8w==, + } confusing-browser-globals@1.0.11: - resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} + resolution: + { + integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==, + } connect-history-api-fallback@2.0.0: - resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} - engines: {node: '>=0.8'} + resolution: + { + integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==, + } + engines: { node: ">=0.8" } connect@3.7.0: - resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} - engines: {node: '>= 0.10.0'} + resolution: + { + integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==, + } + engines: { node: ">= 0.10.0" } consola@3.2.3: - resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} - engines: {node: ^14.18.0 || >=16.10.0} + resolution: + { + integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==, + } + engines: { node: ^14.18.0 || >=16.10.0 } console-browserify@1.2.0: - resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==} + resolution: + { + integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==, + } consolidate@0.15.1: - resolution: {integrity: sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==} - engines: {node: '>= 0.10.0'} + resolution: + { + integrity: sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==, + } + engines: { node: ">= 0.10.0" } deprecated: Please upgrade to consolidate v1.0.0+ as it has been modernized with several long-awaited fixes implemented. Maintenance is supported by Forward Email at https://forwardemail.net ; follow/watch https://github.com/ladjs/consolidate for updates and release changelog peerDependencies: arc-templates: ^0.5.3 - atpl: '>=0.7.6' + atpl: ">=0.7.6" babel-core: ^6.26.3 bracket-template: ^1.1.5 coffee-script: ^1.12.7 @@ -17651,9 +24925,9 @@ packages: swig: ^1.4.2 swig-templates: ^2.0.3 teacup: ^2.0.0 - templayed: '>=0.2.3' - then-jade: '*' - then-pug: '*' + templayed: ">=0.2.3" + then-jade: "*" + then-pug: "*" tinyliquid: ^0.2.34 toffee: ^0.3.6 twig: ^1.15.2 @@ -17772,277 +25046,472 @@ packages: optional: true constants-browserify@1.0.0: - resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} + resolution: + { + integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==, + } content-disposition@0.5.2: - resolution: {integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==, + } + engines: { node: ">= 0.6" } content-disposition@0.5.4: - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==, + } + engines: { node: ">= 0.6" } content-hash@2.5.2: - resolution: {integrity: sha512-FvIQKy0S1JaWV10sMsA7TRx8bpU+pqPkhbsfvOJAdjRXvYxEckAwQWGwtRjiaJfh+E0DvcWUGqcdjwMGFjsSdw==} + resolution: + { + integrity: sha512-FvIQKy0S1JaWV10sMsA7TRx8bpU+pqPkhbsfvOJAdjRXvYxEckAwQWGwtRjiaJfh+E0DvcWUGqcdjwMGFjsSdw==, + } content-type@1.0.5: - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==, + } + engines: { node: ">= 0.6" } conventional-changelog-angular@6.0.0: - resolution: {integrity: sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==, + } + engines: { node: ">=14" } conventional-changelog-conventionalcommits@6.1.0: - resolution: {integrity: sha512-3cS3GEtR78zTfMzk0AizXKKIdN4OvSh7ibNz6/DPbhWWQu7LqE/8+/GqSodV+sywUR2gpJAdP/1JFf4XtN7Zpw==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-3cS3GEtR78zTfMzk0AizXKKIdN4OvSh7ibNz6/DPbhWWQu7LqE/8+/GqSodV+sywUR2gpJAdP/1JFf4XtN7Zpw==, + } + engines: { node: ">=14" } conventional-commits-parser@4.0.0: - resolution: {integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==, + } + engines: { node: ">=14" } hasBin: true convert-source-map@1.9.0: - resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} + resolution: + { + integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==, + } convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + resolution: + { + integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, + } cookie-signature@1.0.6: - resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + resolution: + { + integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==, + } cookie@0.4.2: - resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==, + } + engines: { node: ">= 0.6" } cookie@0.5.0: - resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==, + } + engines: { node: ">= 0.6" } cookie@0.6.0: - resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==, + } + engines: { node: ">= 0.6" } cookiejar@2.1.4: - resolution: {integrity: sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==} + resolution: + { + integrity: sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==, + } cookies@0.9.1: - resolution: {integrity: sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==, + } + engines: { node: ">= 0.8" } copy-to@2.0.1: - resolution: {integrity: sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==} + resolution: + { + integrity: sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==, + } copy-webpack-plugin@10.2.4: - resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==} - engines: {node: '>= 12.20.0'} + resolution: + { + integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==, + } + engines: { node: ">= 12.20.0" } peerDependencies: webpack: ^5.1.0 copy-webpack-plugin@9.1.0: - resolution: {integrity: sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==} - engines: {node: '>= 12.13.0'} + resolution: + { + integrity: sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==, + } + engines: { node: ">= 12.13.0" } peerDependencies: webpack: ^5.1.0 core-js-compat@3.36.1: - resolution: {integrity: sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==} + resolution: + { + integrity: sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==, + } core-js-pure@3.36.1: - resolution: {integrity: sha512-NXCvHvSVYSrewP0L5OhltzXeWFJLo2AL2TYnj6iLV3Bw8mM62wAQMNgUCRI6EBu6hVVpbCxmOPlxh1Ikw2PfUA==} + resolution: + { + integrity: sha512-NXCvHvSVYSrewP0L5OhltzXeWFJLo2AL2TYnj6iLV3Bw8mM62wAQMNgUCRI6EBu6hVVpbCxmOPlxh1Ikw2PfUA==, + } core-js@2.6.12: - resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} + resolution: + { + integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==, + } deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. core-js@3.36.1: - resolution: {integrity: sha512-BTvUrwxVBezj5SZ3f10ImnX2oRByMxql3EimVqMysepbC9EeMUOpLwdy6Eoili2x6E4kf+ZUB5k/+Jv55alPfA==} + resolution: + { + integrity: sha512-BTvUrwxVBezj5SZ3f10ImnX2oRByMxql3EimVqMysepbC9EeMUOpLwdy6Eoili2x6E4kf+ZUB5k/+Jv55alPfA==, + } core-util-is@1.0.2: - resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + resolution: + { + integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==, + } core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + resolution: + { + integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==, + } cors@2.8.5: - resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==, + } + engines: { node: ">= 0.10" } corser@2.0.1: - resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==} - engines: {node: '>= 0.4.0'} + resolution: + { + integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==, + } + engines: { node: ">= 0.4.0" } cose-base@1.0.3: - resolution: {integrity: sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==} + resolution: + { + integrity: sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==, + } cosmiconfig-typescript-loader@4.4.0: - resolution: {integrity: sha512-BabizFdC3wBHhbI4kJh0VkQP9GkBfoHPydD0COMce1nJ1kJAB3F2TmJ/I7diULBKtmEWSwEbuN/KDtgnmUUVmw==} - engines: {node: '>=v14.21.3'} + resolution: + { + integrity: sha512-BabizFdC3wBHhbI4kJh0VkQP9GkBfoHPydD0COMce1nJ1kJAB3F2TmJ/I7diULBKtmEWSwEbuN/KDtgnmUUVmw==, + } + engines: { node: ">=v14.21.3" } peerDependencies: - '@types/node': '*' - cosmiconfig: '>=7' - ts-node: '>=10' - typescript: '>=4' + "@types/node": "*" + cosmiconfig: ">=7" + ts-node: ">=10" + typescript: ">=4" cosmiconfig@5.2.1: - resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==, + } + engines: { node: ">=4" } cosmiconfig@6.0.0: - resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==, + } + engines: { node: ">=8" } cosmiconfig@7.1.0: - resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==, + } + engines: { node: ">=10" } 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 cosmjs-types@0.2.1: - resolution: {integrity: sha512-EUG6TgdWkYHBzXjo5tZ82L+0QLijTu/rZGNIbJ/n07ST30GmptYkPmO+REX7qF4YUtli//Rfy0rrNzH9IMrMmw==} + resolution: + { + integrity: sha512-EUG6TgdWkYHBzXjo5tZ82L+0QLijTu/rZGNIbJ/n07ST30GmptYkPmO+REX7qF4YUtli//Rfy0rrNzH9IMrMmw==, + } cosmjs-types@0.4.1: - resolution: {integrity: sha512-I7E/cHkIgoJzMNQdFF0YVqPlaTqrqKHrskuSTIqlEyxfB5Lf3WKCajSXVK2yHOfOFfSux/RxEdpMzw/eO4DIog==} + resolution: + { + integrity: sha512-I7E/cHkIgoJzMNQdFF0YVqPlaTqrqKHrskuSTIqlEyxfB5Lf3WKCajSXVK2yHOfOFfSux/RxEdpMzw/eO4DIog==, + } crc-32@1.2.2: - resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} - engines: {node: '>=0.8'} + resolution: + { + integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==, + } + engines: { node: ">=0.8" } hasBin: true crc32-stream@5.0.1: - resolution: {integrity: sha512-lO1dFui+CEUh/ztYIpgpKItKW9Bb4NWakCRJrnqAbFIYD+OZAwb2VfD5T5eXMw2FNcsDHkQcNl/Wh3iVXYwU6g==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-lO1dFui+CEUh/ztYIpgpKItKW9Bb4NWakCRJrnqAbFIYD+OZAwb2VfD5T5eXMw2FNcsDHkQcNl/Wh3iVXYwU6g==, + } + engines: { node: ">= 12.0.0" } crc@3.8.0: - resolution: {integrity: sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==} + resolution: + { + integrity: sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==, + } create-ecdh@4.0.4: - resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==} + resolution: + { + integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==, + } create-hash@1.2.0: - resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} + resolution: + { + integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==, + } create-hmac@1.1.7: - resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==} + resolution: + { + integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==, + } create-jest@29.7.0: - resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } hasBin: true create-mixin@3.0.0: - resolution: {integrity: sha512-LkdMqnWT9LaqBN4huqpUnMz56Yr1mVSoCduAd2xXefgH/YZP2sXCMAyztXjk4q8hTF/TlcDa+zQW2aTgGdjjKQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-LkdMqnWT9LaqBN4huqpUnMz56Yr1mVSoCduAd2xXefgH/YZP2sXCMAyztXjk4q8hTF/TlcDa+zQW2aTgGdjjKQ==, + } + engines: { node: ">=10" } create-require@1.1.1: - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + resolution: + { + integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==, + } crelt@1.0.6: - resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==} + resolution: + { + integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==, + } cross-env@7.0.3: - resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==} - engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'} + resolution: + { + integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==, + } + engines: { node: ">=10.14", npm: ">=6", yarn: ">=1" } hasBin: true cross-fetch@3.1.8: - resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==} + resolution: + { + integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==, + } cross-sha256@1.2.0: - resolution: {integrity: sha512-KViLNMDZKV7jwFqjFx+rNhG26amnFYYQ0S+VaFlVvpk8tM+2XbFia/don/SjGHg9WQxnFVi6z64CGPuF3T+nNw==} + resolution: + { + integrity: sha512-KViLNMDZKV7jwFqjFx+rNhG26amnFYYQ0S+VaFlVvpk8tM+2XbFia/don/SjGHg9WQxnFVi6z64CGPuF3T+nNw==, + } cross-spawn@4.0.2: - resolution: {integrity: sha512-yAXz/pA1tD8Gtg2S98Ekf/sewp3Lcp3YoFKJ4Hkp5h5yLWnKVTDU0kwjKJ8NDCYcfTLfyGkzTikst+jWypT1iA==} + resolution: + { + integrity: sha512-yAXz/pA1tD8Gtg2S98Ekf/sewp3Lcp3YoFKJ4Hkp5h5yLWnKVTDU0kwjKJ8NDCYcfTLfyGkzTikst+jWypT1iA==, + } cross-spawn@5.1.0: - resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} + resolution: + { + integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==, + } cross-spawn@6.0.5: - resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} - engines: {node: '>=4.8'} + resolution: + { + integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==, + } + engines: { node: ">=4.8" } cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, + } + engines: { node: ">= 8" } crypt@0.0.2: - resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==} + resolution: + { + integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==, + } crypto-browserify@3.12.0: - resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==} + resolution: + { + integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==, + } crypto-js@4.2.0: - resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==} + resolution: + { + integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==, + } crypto-random-string@1.0.0: - resolution: {integrity: sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==, + } + engines: { node: ">=4" } 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-blank-pseudo@3.0.3: - resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==, + } + engines: { node: ^12 || ^14 || >=16 } hasBin: true peerDependencies: postcss: ^8.4 css-color-keywords@1.0.0: - resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==, + } + engines: { node: ">=4" } css-declaration-sorter@6.4.1: - resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==, + } + engines: { node: ^10 || ^12 || >=14 } peerDependencies: postcss: ^8.0.9 css-functions-list@3.2.1: - resolution: {integrity: sha512-Nj5YcaGgBtuUmn1D7oHqPW0c9iui7xsTsj5lIX8ZgevdfhmjFfKB3r8moHJtNJnctnYXJyYX5I1pp90HM4TPgQ==} - engines: {node: '>=12 || >=16'} + resolution: + { + integrity: sha512-Nj5YcaGgBtuUmn1D7oHqPW0c9iui7xsTsj5lIX8ZgevdfhmjFfKB3r8moHJtNJnctnYXJyYX5I1pp90HM4TPgQ==, + } + engines: { node: ">=12 || >=16" } css-has-pseudo@3.0.4: - resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==, + } + engines: { node: ^12 || ^14 || >=16 } hasBin: true peerDependencies: postcss: ^8.4 css-in-js-utils@3.1.0: - resolution: {integrity: sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==} + resolution: + { + integrity: sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==, + } css-loader@6.10.0: - resolution: {integrity: sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==} - engines: {node: '>= 12.13.0'} + resolution: + { + integrity: sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==, + } + engines: { node: ">= 12.13.0" } peerDependencies: - '@rspack/core': 0.x || 1.x + "@rspack/core": 0.x || 1.x webpack: ^5.0.0 peerDependenciesMeta: - '@rspack/core': + "@rspack/core": optional: true webpack: optional: true css-minimizer-webpack-plugin@3.4.1: - resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} - engines: {node: '>= 12.13.0'} - peerDependencies: - '@parcel/css': '*' - clean-css: '*' - csso: '*' - esbuild: '*' + resolution: + { + integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==, + } + engines: { node: ">= 12.13.0" } + peerDependencies: + "@parcel/css": "*" + clean-css: "*" + csso: "*" + esbuild: "*" webpack: ^5.0.0 peerDependenciesMeta: - '@parcel/css': + "@parcel/css": optional: true clean-css: optional: true @@ -18052,415 +25521,726 @@ packages: optional: true css-prefers-color-scheme@6.0.3: - resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==, + } + engines: { node: ^12 || ^14 || >=16 } hasBin: true peerDependencies: postcss: ^8.4 css-select-base-adapter@0.1.1: - resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} + resolution: + { + integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==, + } css-select@2.1.0: - resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} + resolution: + { + integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==, + } css-select@4.3.0: - resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} + resolution: + { + integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==, + } css-select@5.1.0: - resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + resolution: + { + integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==, + } css-to-react-native@3.2.0: - resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==} + resolution: + { + integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==, + } css-tree@1.0.0-alpha.37: - resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==, + } + engines: { node: ">=8.0.0" } css-tree@1.1.3: - resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==, + } + engines: { node: ">=8.0.0" } css-what@3.4.2: - resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==, + } + engines: { node: ">= 6" } 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==, + } cssdb@7.11.2: - resolution: {integrity: sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A==} + resolution: + { + integrity: sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A==, + } 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 cssfontparser@1.2.1: - resolution: {integrity: sha512-6tun4LoZnj7VN6YeegOVb67KBX/7JJsqvj+pv3ZA7F878/eN33AbGa5b/S/wXxS/tcp8nc40xRUrsPlxIyNUPg==} + resolution: + { + integrity: sha512-6tun4LoZnj7VN6YeegOVb67KBX/7JJsqvj+pv3ZA7F878/eN33AbGa5b/S/wXxS/tcp8nc40xRUrsPlxIyNUPg==, + } cssnano-preset-default@5.2.14: - resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 cssnano-utils@3.1.0: - resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 cssnano@5.1.15: - resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 csso@4.2.0: - resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==, + } + engines: { node: ">=8.0.0" } cssom@0.3.8: - resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} + resolution: + { + integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==, + } cssom@0.4.4: - resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} + resolution: + { + integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==, + } cssom@0.5.0: - resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} + resolution: + { + integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==, + } cssstyle@2.3.0: - resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==, + } + engines: { node: ">=8" } csstype@2.6.21: - resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==} + resolution: + { + integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==, + } csstype@3.1.2: - resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} + resolution: + { + integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==, + } csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + resolution: + { + integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==, + } curve25519-js@0.0.4: - resolution: {integrity: sha512-axn2UMEnkhyDUPWOwVKBMVIzSQy2ejH2xRGy1wq81dqRwApXfIzfbE3hIX0ZRFBIihf/KDqK158DLwESu4AK1w==} - - cycle@1.0.3: - resolution: {integrity: sha512-TVF6svNzeQCOpjCqsy0/CSy8VgObG3wXusJ73xW2GbG5rGx7lC8zxDSURicsXI2UsGdi2L0QNRCi745/wUDvsA==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-axn2UMEnkhyDUPWOwVKBMVIzSQy2ejH2xRGy1wq81dqRwApXfIzfbE3hIX0ZRFBIihf/KDqK158DLwESu4AK1w==, + } cytoscape-cose-bilkent@4.1.0: - resolution: {integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==} + resolution: + { + integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==, + } peerDependencies: cytoscape: ^3.2.0 cytoscape@3.28.1: - resolution: {integrity: sha512-xyItz4O/4zp9/239wCcH8ZcFuuZooEeF8KHRmzjDfGdXsj3OG9MFSMA0pJE0uX3uCN/ygof6hHf4L7lst+JaDg==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-xyItz4O/4zp9/239wCcH8ZcFuuZooEeF8KHRmzjDfGdXsj3OG9MFSMA0pJE0uX3uCN/ygof6hHf4L7lst+JaDg==, + } + engines: { node: ">=0.10" } d3-array@2.3.3: - resolution: {integrity: sha512-syv3wp0U5aB6toP2zb2OdBkhTy1MWDsCAaYk6OXJZv+G4u7bSWEmYgxLoFyc88RQUhZYGCebW9a9UD1gFi5+MQ==} + resolution: + { + integrity: sha512-syv3wp0U5aB6toP2zb2OdBkhTy1MWDsCAaYk6OXJZv+G4u7bSWEmYgxLoFyc88RQUhZYGCebW9a9UD1gFi5+MQ==, + } d3-array@3.2.4: - resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==, + } + engines: { node: ">=12" } d3-axis@3.0.0: - resolution: {integrity: sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==, + } + engines: { node: ">=12" } d3-brush@3.0.0: - resolution: {integrity: sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==, + } + engines: { node: ">=12" } d3-chord@3.0.1: - resolution: {integrity: sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==, + } + engines: { node: ">=12" } d3-color@2.0.0: - resolution: {integrity: sha512-SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ==} + resolution: + { + integrity: sha512-SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ==, + } d3-color@3.1.0: - resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==, + } + engines: { node: ">=12" } d3-contour@4.0.2: - resolution: {integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==, + } + engines: { node: ">=12" } d3-delaunay@6.0.4: - resolution: {integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==, + } + engines: { node: ">=12" } d3-dispatch@3.0.1: - resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==, + } + engines: { node: ">=12" } d3-drag@3.0.0: - resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==, + } + engines: { node: ">=12" } d3-dsv@3.0.1: - resolution: {integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==, + } + engines: { node: ">=12" } hasBin: true d3-ease@3.0.1: - resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==, + } + engines: { node: ">=12" } d3-fetch@3.0.1: - resolution: {integrity: sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==, + } + engines: { node: ">=12" } d3-force@3.0.0: - resolution: {integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==, + } + engines: { node: ">=12" } d3-format@2.0.0: - resolution: {integrity: sha512-Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA==} + resolution: + { + integrity: sha512-Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA==, + } d3-format@3.1.0: - resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==, + } + engines: { node: ">=12" } d3-geo@3.1.1: - resolution: {integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==, + } + engines: { node: ">=12" } d3-hierarchy@3.1.2: - resolution: {integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==, + } + engines: { node: ">=12" } d3-interpolate@2.0.1: - resolution: {integrity: sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ==} + resolution: + { + integrity: sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ==, + } d3-interpolate@3.0.1: - resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==, + } + engines: { node: ">=12" } d3-path@1.0.9: - resolution: {integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==} + resolution: + { + integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==, + } d3-path@3.1.0: - resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==, + } + engines: { node: ">=12" } d3-polygon@3.0.1: - resolution: {integrity: sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==, + } + engines: { node: ">=12" } d3-quadtree@3.0.1: - resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==, + } + engines: { node: ">=12" } d3-random@3.0.1: - resolution: {integrity: sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==, + } + engines: { node: ">=12" } d3-sankey@0.12.3: - resolution: {integrity: sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==} + resolution: + { + integrity: sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==, + } d3-scale-chromatic@3.1.0: - resolution: {integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==, + } + engines: { node: ">=12" } d3-scale@3.3.0: - resolution: {integrity: sha512-1JGp44NQCt5d1g+Yy+GeOnZP7xHo0ii8zsQp6PGzd+C1/dl0KGsp9A7Mxwp+1D1o4unbTTxVdU/ZOIEBoeZPbQ==} + resolution: + { + integrity: sha512-1JGp44NQCt5d1g+Yy+GeOnZP7xHo0ii8zsQp6PGzd+C1/dl0KGsp9A7Mxwp+1D1o4unbTTxVdU/ZOIEBoeZPbQ==, + } d3-scale@4.0.2: - resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==, + } + engines: { node: ">=12" } d3-selection@3.0.0: - resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==, + } + engines: { node: ">=12" } d3-shape@1.3.7: - resolution: {integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==} + resolution: + { + integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==, + } d3-shape@3.2.0: - resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==, + } + engines: { node: ">=12" } d3-time-format@3.0.0: - resolution: {integrity: sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==} + resolution: + { + integrity: sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==, + } d3-time-format@4.1.0: - resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==, + } + engines: { node: ">=12" } d3-time@2.1.1: - resolution: {integrity: sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ==} + resolution: + { + integrity: sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ==, + } d3-time@3.1.0: - resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==, + } + engines: { node: ">=12" } d3-timer@3.0.1: - resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==, + } + engines: { node: ">=12" } d3-transition@3.0.1: - resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==, + } + engines: { node: ">=12" } peerDependencies: d3-selection: 2 - 3 d3-zoom@3.0.0: - resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==, + } + engines: { node: ">=12" } d3@7.9.0: - resolution: {integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==, + } + engines: { node: ">=12" } d64@1.0.0: - resolution: {integrity: sha512-5eNy3WZziVYnrogqgXhcdEmqcDB2IHurTqLcrgssJsfkMVCUoUaZpK6cJjxxvLV2dUm5SuJMNcYfVGoin9UIRw==} + resolution: + { + integrity: sha512-5eNy3WZziVYnrogqgXhcdEmqcDB2IHurTqLcrgssJsfkMVCUoUaZpK6cJjxxvLV2dUm5SuJMNcYfVGoin9UIRw==, + } d@1.0.2: - resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==} - engines: {node: '>=0.12'} + resolution: + { + integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==, + } + engines: { node: ">=0.12" } dag-map@1.0.2: - resolution: {integrity: sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw==} + resolution: + { + integrity: sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw==, + } dagre-d3-es@7.0.10: - resolution: {integrity: sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A==} + resolution: + { + integrity: sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A==, + } damerau-levenshtein@1.0.8: - resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + resolution: + { + integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==, + } dargs@7.0.0: - resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==, + } + engines: { node: ">=8" } dashdash@1.14.1: - resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==, + } + engines: { node: ">=0.10" } data-uri-to-buffer@4.0.1: - resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} - engines: {node: '>= 12'} + resolution: + { + integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==, + } + engines: { node: ">= 12" } data-urls@2.0.0: - resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==, + } + engines: { node: ">=10" } data-urls@3.0.2: - resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==, + } + engines: { node: ">=12" } data-view-buffer@1.0.1: - resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==, + } + engines: { node: ">= 0.4" } data-view-byte-length@1.0.1: - resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==, + } + engines: { node: ">= 0.4" } data-view-byte-offset@1.0.0: - resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==, + } + engines: { node: ">= 0.4" } dataloader@1.4.0: - resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} + resolution: + { + integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==, + } dataloader@2.2.2: - resolution: {integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==} + resolution: + { + integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==, + } date-fns@1.30.1: - resolution: {integrity: sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==} + resolution: + { + integrity: sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==, + } date-fns@2.30.0: - resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} - engines: {node: '>=0.11'} + resolution: + { + integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==, + } + engines: { node: ">=0.11" } dateformat@4.6.3: - resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==} + resolution: + { + integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==, + } dayjs@1.11.10: - resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==} + resolution: + { + integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==, + } de-indent@1.0.2: - resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} + resolution: + { + integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==, + } debounce-fn@4.0.0: - resolution: {integrity: sha512-8pYCQiL9Xdcg0UPSD3d+0KMlOjp+KGU5EPwYddgzQ7DATsg4fuUDjQtsYLmWjnk2obnNHgV3vE2Y4jejSOJVBQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-8pYCQiL9Xdcg0UPSD3d+0KMlOjp+KGU5EPwYddgzQ7DATsg4fuUDjQtsYLmWjnk2obnNHgV3vE2Y4jejSOJVBQ==, + } + engines: { node: ">=10" } debounce-fn@5.1.2: - resolution: {integrity: sha512-Sr4SdOZ4vw6eQDvPYNxHogvrxmCIld/VenC5JbNrFwMiwd7lY/Z18ZFfo+EWNG4DD9nFlAujWAo/wGuOPHmy5A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Sr4SdOZ4vw6eQDvPYNxHogvrxmCIld/VenC5JbNrFwMiwd7lY/Z18ZFfo+EWNG4DD9nFlAujWAo/wGuOPHmy5A==, + } + engines: { node: ">=12" } 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.3.4: - resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, + } + engines: { node: ">=6.0" } peerDependencies: - supports-color: '*' + supports-color: "*" peerDependenciesMeta: supports-color: optional: true decamelize-keys@1.1.1: - resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==, + } + engines: { node: ">=0.10.0" } 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" } decamelize@4.0.0: - resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==, + } + engines: { node: ">=10" } 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" } decompress-response@3.3.0: - resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==, + } + engines: { node: ">=4" } decompress-response@6.0.0: - resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==, + } + engines: { node: ">=10" } dedent@0.7.0: - resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} + resolution: + { + integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==, + } dedent@1.5.1: - resolution: {integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==} + resolution: + { + integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==, + } peerDependencies: babel-plugin-macros: ^3.1.0 peerDependenciesMeta: @@ -18468,193 +26248,336 @@ packages: optional: true deep-eql@4.1.3: - resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==, + } + engines: { node: ">=6" } deep-equal@1.0.1: - resolution: {integrity: sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==} + resolution: + { + integrity: sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==, + } deep-equal@1.1.2: - resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==, + } + engines: { node: ">= 0.4" } deep-equal@2.2.3: - resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==, + } + engines: { node: ">= 0.4" } deep-extend@0.6.0: - resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==, + } + engines: { node: ">=4.0.0" } 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==, + } deepmerge@1.5.2: - resolution: {integrity: sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==, + } + engines: { node: ">=0.10.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" } default-browser-id@3.0.0: - resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==, + } + engines: { node: ">=12" } default-gateway@4.2.0: - resolution: {integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==, + } + engines: { node: ">=6" } default-gateway@6.0.3: - resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==, + } + engines: { node: ">= 10" } default-require-extensions@3.0.1: - resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==, + } + engines: { node: ">=8" } defaults@1.0.4: - resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} + resolution: + { + integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==, + } defer-to-connect@1.1.3: - resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} + resolution: + { + integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==, + } defer-to-connect@2.0.1: - resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==, + } + engines: { node: ">=10" } deferred-leveldown@0.2.0: - resolution: {integrity: sha512-+WCbb4+ez/SZ77Sdy1iadagFiVzMB89IKOBhglgnUkVxOxRWmmFsz8UDSNWh4Rhq+3wr/vMFlYj+rdEwWUDdng==} + resolution: + { + integrity: sha512-+WCbb4+ez/SZ77Sdy1iadagFiVzMB89IKOBhglgnUkVxOxRWmmFsz8UDSNWh4Rhq+3wr/vMFlYj+rdEwWUDdng==, + } 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" } defu@6.1.4: - resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} + resolution: + { + integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==, + } del@4.1.1: - resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==, + } + engines: { node: ">=6" } del@6.1.1: - resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==, + } + engines: { node: ">=10" } delaunator@5.0.1: - resolution: {integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==} + resolution: + { + integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==, + } delay@5.0.0: - resolution: {integrity: sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==, + } + engines: { node: ">=10" } delay@6.0.0: - resolution: {integrity: sha512-2NJozoOHQ4NuZuVIr5CWd0iiLVIRSDepakaovIN+9eIDHEhdCAEvSy2cuf1DCrPPQLvHmbqTHODlhHg8UCy4zw==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-2NJozoOHQ4NuZuVIr5CWd0iiLVIRSDepakaovIN+9eIDHEhdCAEvSy2cuf1DCrPPQLvHmbqTHODlhHg8UCy4zw==, + } + engines: { node: ">=16" } delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, + } + engines: { node: ">=0.4.0" } delegates@1.0.0: - resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} + resolution: + { + integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==, + } delimit-stream@0.1.0: - resolution: {integrity: sha512-a02fiQ7poS5CnjiJBAsjGLPp5EwVoGHNeu9sziBd9huppRfsAFIpv5zNLv0V1gbop53ilngAf5Kf331AwcoRBQ==} + resolution: + { + integrity: sha512-a02fiQ7poS5CnjiJBAsjGLPp5EwVoGHNeu9sziBd9huppRfsAFIpv5zNLv0V1gbop53ilngAf5Kf331AwcoRBQ==, + } denodeify@1.2.1: - resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==} + resolution: + { + integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==, + } denque@2.1.0: - resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==, + } + engines: { node: ">=0.10" } depd@1.1.2: - resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==, + } + engines: { node: ">= 0.6" } 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" } deprecated-react-native-prop-types@2.3.0: - resolution: {integrity: sha512-pWD0voFtNYxrVqvBMYf5gq3NA2GCpfodS1yNynTPc93AYA/KEMGeWDqqeUB6R2Z9ZofVhks2aeJXiuQqKNpesA==} - - deprecated-react-native-prop-types@5.0.0: - resolution: {integrity: sha512-cIK8KYiiGVOFsKdPMmm1L3tA/Gl+JopXL6F5+C7x39MyPsQYnP57Im/D6bNUzcborD7fcMwiwZqcBdBXXZucYQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-pWD0voFtNYxrVqvBMYf5gq3NA2GCpfodS1yNynTPc93AYA/KEMGeWDqqeUB6R2Z9ZofVhks2aeJXiuQqKNpesA==, + } 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" } des.js@1.1.0: - resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==} + resolution: + { + integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==, + } 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-newline@3.1.0: - resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==, + } + engines: { node: ">=8" } detect-node-es@1.1.0: - resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} + resolution: + { + integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==, + } detect-node@2.1.0: - resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} + resolution: + { + integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==, + } detect-package-manager@2.0.1: - resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==, + } + engines: { node: ">=12" } detect-port-alt@1.1.6: - resolution: {integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==} - engines: {node: '>= 4.2.1'} + resolution: + { + integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==, + } + engines: { node: ">= 4.2.1" } hasBin: true detect-port@1.5.1: - resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==} + resolution: + { + integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==, + } hasBin: true detox-allure2-adapter@1.0.0-alpha.12: - resolution: {integrity: sha512-rmPZ+Xcw/0bAI/g2qHTYPVclun2xcgf0/yr0ShEY6miTINsirG2jhVkvJ/kFD2KxukJZK+9qvETjyRABzzi9BQ==} - engines: {node: '>=16.14.0'} + resolution: + { + integrity: sha512-rmPZ+Xcw/0bAI/g2qHTYPVclun2xcgf0/yr0ShEY6miTINsirG2jhVkvJ/kFD2KxukJZK+9qvETjyRABzzi9BQ==, + } + engines: { node: ">=16.14.0" } peerDependencies: detox: 20.14.2-smoke.0 || >20.14.5 jest-allure2-reporter: ^2.0.0-beta.15 detox-copilot@0.0.0: - resolution: {integrity: sha512-BasCw/JXlplL1UZfe19xJYT0i0JU4tdGPWutsmybGy6166Jvj2ryikbgoE1ls44F+41p9Y0Yei0cdBC7KawXeQ==} + resolution: + { + integrity: sha512-BasCw/JXlplL1UZfe19xJYT0i0JU4tdGPWutsmybGy6166Jvj2ryikbgoE1ls44F+41p9Y0Yei0cdBC7KawXeQ==, + } detox@20.26.2: - resolution: {integrity: sha512-pJU8WHD7GuoGlCuDzZxCD784mQfOO/ihRxe2/EebnesniWnV6FOwbC+32J1kGivhAdyvvPawfMQ7PoD4FwkxfA==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-pJU8WHD7GuoGlCuDzZxCD784mQfOO/ihRxe2/EebnesniWnV6FOwbC+32J1kGivhAdyvvPawfMQ7PoD4FwkxfA==, + } + engines: { node: ">=14" } hasBin: true peerDependencies: jest: 29.x.x || 28.x.x || ^27.2.5 @@ -18663,595 +26586,1067 @@ packages: optional: true devlop@1.1.0: - resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + resolution: + { + integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==, + } dezalgo@1.0.4: - resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==} + resolution: + { + integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==, + } didyoumean@1.2.2: - resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} + resolution: + { + integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==, + } diff-sequences@26.6.2: - resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==} - engines: {node: '>= 10.14.2'} + resolution: + { + integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==, + } + engines: { node: ">= 10.14.2" } diff-sequences@27.5.1: - resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } diff-sequences@28.1.1: - resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } 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 } diff@4.0.2: - resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} - engines: {node: '>=0.3.1'} + resolution: + { + integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==, + } + engines: { node: ">=0.3.1" } diff@5.2.0: - resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} - engines: {node: '>=0.3.1'} + resolution: + { + integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==, + } + engines: { node: ">=0.3.1" } diffie-hellman@5.0.3: - resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==} + resolution: + { + integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==, + } dijkstrajs@1.0.3: - resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==} + resolution: + { + integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==, + } dir-compare@3.3.0: - resolution: {integrity: sha512-J7/et3WlGUCxjdnD3HAAzQ6nsnc0WL6DD7WcwJb7c39iH1+AWfg+9OqzJNaI6PkBwBvm1mhZNL9iY/nRiZXlPg==} + resolution: + { + integrity: sha512-J7/et3WlGUCxjdnD3HAAzQ6nsnc0WL6DD7WcwJb7c39iH1+AWfg+9OqzJNaI6PkBwBvm1mhZNL9iY/nRiZXlPg==, + } dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, + } + engines: { node: ">=8" } dlv@1.1.3: - resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + resolution: + { + integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==, + } dmg-builder@24.13.3: - resolution: {integrity: sha512-rcJUkMfnJpfCboZoOOPf4L29TRtEieHNOeAbYPWPxlaBw/Z1RKrRA86dOI9rwaI4tQSc/RD82zTNHprfUHXsoQ==} + resolution: + { + integrity: sha512-rcJUkMfnJpfCboZoOOPf4L29TRtEieHNOeAbYPWPxlaBw/Z1RKrRA86dOI9rwaI4tQSc/RD82zTNHprfUHXsoQ==, + } dmg-license@1.0.11: - resolution: {integrity: sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q==, + } + engines: { node: ">=8" } os: [darwin] hasBin: true dns-packet@5.6.1: - resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==, + } + engines: { node: ">=6" } docker-compose@0.24.8: - resolution: {integrity: sha512-plizRs/Vf15H+GCVxq2EUvyPK7ei9b/cVesHvjnX4xaXjM9spHe2Ytq0BitndFgvTJ3E3NljPNUEl7BAN43iZw==} - engines: {node: '>= 6.0.0'} + resolution: + { + integrity: sha512-plizRs/Vf15H+GCVxq2EUvyPK7ei9b/cVesHvjnX4xaXjM9spHe2Ytq0BitndFgvTJ3E3NljPNUEl7BAN43iZw==, + } + engines: { node: ">= 6.0.0" } doctrine-temporary-fork@2.1.0: - resolution: {integrity: sha512-nliqOv5NkE4zMON4UA6AMJE6As35afs8aYXATpU4pTUdIKiARZwrJVEP1boA3Rx1ZXHVkwxkhcq4VkqvsuRLsA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-nliqOv5NkE4zMON4UA6AMJE6As35afs8aYXATpU4pTUdIKiARZwrJVEP1boA3Rx1ZXHVkwxkhcq4VkqvsuRLsA==, + } + engines: { node: ">=0.10.0" } 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" } documentation@14.0.2: - resolution: {integrity: sha512-hWoTf8/u4pOjib02L7w94hwmhPfcSwyJNGtlPdGVe8GFyq8HkzcFzQQltaaikKunHEp0YSwDAbwBAO7nxrWIfA==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-hWoTf8/u4pOjib02L7w94hwmhPfcSwyJNGtlPdGVe8GFyq8HkzcFzQQltaaikKunHEp0YSwDAbwBAO7nxrWIfA==, + } + engines: { node: ">=14" } hasBin: true 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-converter@0.2.0: - resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} + resolution: + { + integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==, + } dom-helpers@5.2.1: - resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} + resolution: + { + integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==, + } dom-serializer@0.2.2: - resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} + resolution: + { + integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==, + } dom-serializer@1.4.1: - resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} + resolution: + { + integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==, + } dom-serializer@2.0.0: - resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + resolution: + { + integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==, + } dom-walk@0.1.2: - resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==} + resolution: + { + integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==, + } dom7@4.0.6: - resolution: {integrity: sha512-emjdpPLhpNubapLFdjNL9tP06Sr+GZkrIHEXLWvOGsytACUrkbeIdjO5g77m00BrHTznnlcNqgmn7pCN192TBA==} + resolution: + { + integrity: sha512-emjdpPLhpNubapLFdjNL9tP06Sr+GZkrIHEXLWvOGsytACUrkbeIdjO5g77m00BrHTznnlcNqgmn7pCN192TBA==, + } domain-browser@1.2.0: - resolution: {integrity: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==} - engines: {node: '>=0.4', npm: '>=1.2'} + resolution: + { + integrity: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==, + } + engines: { node: ">=0.4", npm: ">=1.2" } domelementtype@1.3.1: - resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} + resolution: + { + integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==, + } domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + resolution: + { + integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==, + } domexception@2.0.1: - resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==, + } + engines: { node: ">=8" } deprecated: Use your platform's native DOMException instead domexception@4.0.0: - resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==, + } + engines: { node: ">=12" } deprecated: Use your platform's native DOMException instead domhandler@4.3.1: - resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==, + } + engines: { node: ">= 4" } domhandler@5.0.3: - resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==, + } + engines: { node: ">= 4" } dompurify@3.0.11: - resolution: {integrity: sha512-Fan4uMuyB26gFV3ovPoEoQbxRRPfTu3CvImyZnhGq5fsIEO+gEFLp45ISFt+kQBWsK5ulDdT0oV28jS1UrwQLg==} + resolution: + { + integrity: sha512-Fan4uMuyB26gFV3ovPoEoQbxRRPfTu3CvImyZnhGq5fsIEO+gEFLp45ISFt+kQBWsK5ulDdT0oV28jS1UrwQLg==, + } domutils@1.7.0: - resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} + resolution: + { + integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==, + } domutils@2.8.0: - resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} + resolution: + { + integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==, + } domutils@3.1.0: - resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + resolution: + { + integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==, + } dot-case@3.0.4: - resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} + resolution: + { + integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==, + } dot-prop@5.3.0: - resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==, + } + engines: { node: ">=8" } dot-prop@6.0.1: - resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==, + } + engines: { node: ">=10" } dot-prop@8.0.2: - resolution: {integrity: sha512-xaBe6ZT4DHPkg0k4Ytbvn5xoxgpG0jOS1dYxSOwAHPuNLjP3/OzN0gH55SrLqpx8cBfSaVt91lXYkApjb+nYdQ==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-xaBe6ZT4DHPkg0k4Ytbvn5xoxgpG0jOS1dYxSOwAHPuNLjP3/OzN0gH55SrLqpx8cBfSaVt91lXYkApjb+nYdQ==, + } + engines: { node: ">=16" } dotenv-expand@10.0.0: - resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==, + } + engines: { node: ">=12" } + + dotenv-expand@11.0.6: + resolution: + { + integrity: sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==, + } + engines: { node: ">=12" } dotenv-expand@5.1.0: - resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} + resolution: + { + integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==, + } dotenv@10.0.0: - resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==, + } + engines: { node: ">=10" } dotenv@16.0.3: - resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==, + } + engines: { node: ">=12" } dotenv@16.4.5: - resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==, + } + engines: { node: ">=12" } dotenv@8.6.0: - resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==, + } + engines: { node: ">=10" } dotenv@9.0.2: - resolution: {integrity: sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg==, + } + engines: { node: ">=10" } dset@3.1.3: - resolution: {integrity: sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==, + } + engines: { node: ">=4" } dtrace-provider@0.8.8: - resolution: {integrity: sha512-b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg==, + } + engines: { node: ">=0.10" } duplexer2@0.1.4: - resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==} + resolution: + { + integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==, + } duplexer3@0.1.5: - resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} + resolution: + { + integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==, + } duplexer@0.1.2: - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + resolution: + { + integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==, + } duplexify@3.7.1: - resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} + resolution: + { + integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==, + } eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + resolution: + { + integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, + } easy-stack@1.0.1: - resolution: {integrity: sha512-wK2sCs4feiiJeFXn3zvY0p41mdU5VUgbgs1rNsc/y5ngFUijdWd+iIN8eoyuZHKB8xN6BL4PdWmzqFmxNg6V2w==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-wK2sCs4feiiJeFXn3zvY0p41mdU5VUgbgs1rNsc/y5ngFUijdWd+iIN8eoyuZHKB8xN6BL4PdWmzqFmxNg6V2w==, + } + engines: { node: ">=6.0.0" } ecc-jsbn@0.1.2: - resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} + resolution: + { + integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==, + } ecdsa-sig-formatter@1.0.11: - resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==} + resolution: + { + integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==, + } ee-first@1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + resolution: + { + integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==, + } eip55@2.1.1: - resolution: {integrity: sha512-WcagVAmNu2Ww2cDUfzuWVntYwFxbvZ5MvIyLZpMjTTkjD6sCvkGOiS86jTppzu9/gWsc8isLHAeMBWK02OnZmA==} + resolution: + { + integrity: sha512-WcagVAmNu2Ww2cDUfzuWVntYwFxbvZ5MvIyLZpMjTTkjD6sCvkGOiS86jTppzu9/gWsc8isLHAeMBWK02OnZmA==, + } ejs@3.1.9: - resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==, + } + engines: { node: ">=0.10.0" } hasBin: true electron-app-universal-protocol-client@1.3.0: - resolution: {integrity: sha512-8txI5+PP4sFIYooTmBOP1imsMx1Mov7ouEebT+mwikoENq70e6tflOOXBCNJVxsbp93+BQ/l/+WT5BiPvRFXZA==} + resolution: + { + integrity: sha512-8txI5+PP4sFIYooTmBOP1imsMx1Mov7ouEebT+mwikoENq70e6tflOOXBCNJVxsbp93+BQ/l/+WT5BiPvRFXZA==, + } peerDependencies: - electron: '>12.0.0' + electron: ">12.0.0" electron-builder@24.13.3: - resolution: {integrity: sha512-yZSgVHft5dNVlo31qmJAe4BVKQfFdwpRw7sFp1iQglDRCDD6r22zfRJuZlhtB5gp9FHUxCMEoWGq10SkCnMAIg==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-yZSgVHft5dNVlo31qmJAe4BVKQfFdwpRw7sFp1iQglDRCDD6r22zfRJuZlhtB5gp9FHUxCMEoWGq10SkCnMAIg==, + } + engines: { node: ">=14.0.0" } hasBin: true electron-context-menu@3.6.1: - resolution: {integrity: sha512-lcpO6tzzKUROeirhzBjdBWNqayEThmdW+2I2s6H6QMrwqTVyT3EK47jW3Nxm60KTxl5/bWfEoIruoUNn57/QkQ==} + resolution: + { + integrity: sha512-lcpO6tzzKUROeirhzBjdBWNqayEThmdW+2I2s6H6QMrwqTVyT3EK47jW3Nxm60KTxl5/bWfEoIruoUNn57/QkQ==, + } electron-devtools-installer@3.2.0: - resolution: {integrity: sha512-t3UczsYugm4OAbqvdImMCImIMVdFzJAHgbwHpkl5jmfu1izVgUcP/mnrPqJIpEeCK1uZGpt+yHgWEN+9EwoYhQ==} + resolution: + { + integrity: sha512-t3UczsYugm4OAbqvdImMCImIMVdFzJAHgbwHpkl5jmfu1izVgUcP/mnrPqJIpEeCK1uZGpt+yHgWEN+9EwoYhQ==, + } electron-dl@3.5.2: - resolution: {integrity: sha512-i104cl+u8yJ0lhpRAtUWfeGuWuL1PL6TBiw2gLf0MMIBjfgE485Ags2mcySx4uWU9P9uj/vsD3jd7X+w1lzZxw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-i104cl+u8yJ0lhpRAtUWfeGuWuL1PL6TBiw2gLf0MMIBjfgE485Ags2mcySx4uWU9P9uj/vsD3jd7X+w1lzZxw==, + } + engines: { node: ">=12" } electron-is-dev@2.0.0: - resolution: {integrity: sha512-3X99K852Yoqu9AcW50qz3ibYBWY79/pBhlMCab8ToEWS48R0T9tyxRiQhwylE7zQdXrMnx2JKqUJyMPmt5FBqA==} + resolution: + { + integrity: sha512-3X99K852Yoqu9AcW50qz3ibYBWY79/pBhlMCab8ToEWS48R0T9tyxRiQhwylE7zQdXrMnx2JKqUJyMPmt5FBqA==, + } electron-publish@24.13.1: - resolution: {integrity: sha512-2ZgdEqJ8e9D17Hwp5LEq5mLQPjqU3lv/IALvgp+4W8VeNhryfGhYEQC/PgDPMrnWUp+l60Ou5SJLsu+k4mhQ8A==} + resolution: + { + integrity: sha512-2ZgdEqJ8e9D17Hwp5LEq5mLQPjqU3lv/IALvgp+4W8VeNhryfGhYEQC/PgDPMrnWUp+l60Ou5SJLsu+k4mhQ8A==, + } electron-store@8.2.0: - resolution: {integrity: sha512-ukLL5Bevdil6oieAOXz3CMy+OgaItMiVBg701MNlG6W5RaC0AHN7rvlqTCmeb6O7jP0Qa1KKYTE0xV0xbhF4Hw==} + resolution: + { + integrity: sha512-ukLL5Bevdil6oieAOXz3CMy+OgaItMiVBg701MNlG6W5RaC0AHN7rvlqTCmeb6O7jP0Qa1KKYTE0xV0xbhF4Hw==, + } electron-to-chromium@1.4.721: - resolution: {integrity: sha512-k1x2r6foI8iJOp+1qTxbbrrWMsOiHkzGBYwYigaq+apO1FSqtn44KTo3Sy69qt7CRr7149zTcsDvH7MUKsOuIQ==} + resolution: + { + integrity: sha512-k1x2r6foI8iJOp+1qTxbbrrWMsOiHkzGBYwYigaq+apO1FSqtn44KTo3Sy69qt7CRr7149zTcsDvH7MUKsOuIQ==, + } electron-updater@6.1.8: - resolution: {integrity: sha512-hhOTfaFAd6wRHAfUaBhnAOYc+ymSGCWJLtFkw4xJqOvtpHmIdNHnXDV9m1MHC+A6q08Abx4Ykgyz/R5DGKNAMQ==} + resolution: + { + integrity: sha512-hhOTfaFAd6wRHAfUaBhnAOYc+ymSGCWJLtFkw4xJqOvtpHmIdNHnXDV9m1MHC+A6q08Abx4Ykgyz/R5DGKNAMQ==, + } electron@32.0.2: - resolution: {integrity: sha512-nmZblq8wW3HZ17MAyaUuiMI9Mb0Cgc7UR3To85h/rVopbfyF5s34NxtK4gvyRfYPxpDGP4k+HoQIPniPPrdE3w==} - engines: {node: '>= 12.20.55'} + resolution: + { + integrity: sha512-nmZblq8wW3HZ17MAyaUuiMI9Mb0Cgc7UR3To85h/rVopbfyF5s34NxtK4gvyRfYPxpDGP4k+HoQIPniPPrdE3w==, + } + engines: { node: ">= 12.20.55" } hasBin: true elegant-spinner@1.0.1: - resolution: {integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==, + } + engines: { node: ">=0.10.0" } elkjs@0.9.2: - resolution: {integrity: sha512-2Y/RaA1pdgSHpY0YG4TYuYCD2wh97CRvu22eLG3Kz0pgQ/6KbIFTxsTnDc4MH/6hFlg2L/9qXrDMG0nMjP63iw==} + resolution: + { + integrity: sha512-2Y/RaA1pdgSHpY0YG4TYuYCD2wh97CRvu22eLG3Kz0pgQ/6KbIFTxsTnDc4MH/6hFlg2L/9qXrDMG0nMjP63iw==, + } elliptic@6.5.4: - resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==} + resolution: + { + integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==, + } elliptic@6.5.5: - resolution: {integrity: sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==} + resolution: + { + integrity: sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==, + } embla-carousel-react@8.0.0-rc17: - resolution: {integrity: sha512-x4aFprwFB+PQO9EsHHZsrDxARb0uYNBYn9mr5oDFdBdPez4M8G1r5yidWbUcT9pNUc8AQXC9sGzlfauBfBxVOw==} + resolution: + { + integrity: sha512-x4aFprwFB+PQO9EsHHZsrDxARb0uYNBYn9mr5oDFdBdPez4M8G1r5yidWbUcT9pNUc8AQXC9sGzlfauBfBxVOw==, + } peerDependencies: react: ^16.8.0 || ^17.0.1 || ^18.0.0 embla-carousel-reactive-utils@8.0.0-rc17: - resolution: {integrity: sha512-eluEOK/u5HdjYaTLC4bUG3iTCnyX7RsYix3il0aH4ZECOKa5fS+pVK2vrM17Mgw6C5Hyjcr3r3lfJtGerVzVsQ==} + resolution: + { + integrity: sha512-eluEOK/u5HdjYaTLC4bUG3iTCnyX7RsYix3il0aH4ZECOKa5fS+pVK2vrM17Mgw6C5Hyjcr3r3lfJtGerVzVsQ==, + } peerDependencies: embla-carousel: 8.0.0-rc17 embla-carousel@8.0.0-rc17: - resolution: {integrity: sha512-evF49b88VOitvqFtlvhvKVSu96Y8A+QSFdhok87Bfm8R7OYuk95FT+o8+M1GQLi/EhGDUlT193HTVAR0Wt2neQ==} + resolution: + { + integrity: sha512-evF49b88VOitvqFtlvhvKVSu96Y8A+QSFdhok87Bfm8R7OYuk95FT+o8+M1GQLi/EhGDUlT193HTVAR0Wt2neQ==, + } eme-encryption-scheme-polyfill@2.1.1: - resolution: {integrity: sha512-njD17wcUrbqCj0ArpLu5zWXtaiupHb/2fIUQGdInf83GlI+Q6mmqaPGLdrke4savKAu15J/z1Tg/ivDgl14g0g==} + resolution: + { + integrity: sha512-njD17wcUrbqCj0ArpLu5zWXtaiupHb/2fIUQGdInf83GlI+Q6mmqaPGLdrke4savKAu15J/z1Tg/ivDgl14g0g==, + } emittery@0.10.2: - resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==, + } + engines: { node: ">=12" } emittery@0.13.1: - resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==, + } + engines: { node: ">=12" } emittery@0.8.1: - resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==, + } + engines: { node: ">=10" } 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==, + } emojis-list@3.0.0: - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==, + } + engines: { node: ">= 4" } enabled@2.0.0: - resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==} + resolution: + { + integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==, + } encode-utf8@1.0.3: - resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==} + resolution: + { + integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==, + } 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" } encoding@0.1.13: - resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} + resolution: + { + integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==, + } end-of-stream@1.4.4: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + resolution: + { + integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==, + } endent@2.1.0: - resolution: {integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==} + resolution: + { + integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==, + } enhanced-resolve@5.16.0: - resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==, + } + engines: { node: ">=10.13.0" } enhanced-resolve@5.17.1: - resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==, + } + engines: { node: ">=10.13.0" } enquirer@2.4.1: - resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==, + } + engines: { node: ">=8.6" } entities@2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + resolution: + { + integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==, + } entities@4.5.0: - resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} - engines: {node: '>=0.12'} + resolution: + { + integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==, + } + engines: { node: ">=0.12" } env-cmd@10.1.0: - resolution: {integrity: sha512-mMdWTT9XKN7yNth/6N6g2GuKuJTsKMDHlQFUDacb/heQRRWOTIZ42t1rMHnQu4jYxU1ajdTeJM+9eEETlqToMA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-mMdWTT9XKN7yNth/6N6g2GuKuJTsKMDHlQFUDacb/heQRRWOTIZ42t1rMHnQu4jYxU1ajdTeJM+9eEETlqToMA==, + } + engines: { node: ">=8.0.0" } hasBin: true env-editor@0.4.2: - resolution: {integrity: sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==, + } + engines: { node: ">=8" } env-paths@2.2.1: - resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==, + } + engines: { node: ">=6" } env-paths@3.0.0: - resolution: {integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } envinfo@7.11.1: - resolution: {integrity: sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg==, + } + engines: { node: ">=4" } hasBin: true eol@0.9.1: - resolution: {integrity: sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==} + resolution: + { + integrity: sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==, + } err-code@2.0.3: - resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} + resolution: + { + integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==, + } errno@0.1.8: - resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} + resolution: + { + integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==, + } hasBin: true error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + resolution: + { + integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, + } error-stack-parser@2.1.4: - resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} + resolution: + { + integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==, + } errorhandler@1.5.1: - resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==, + } + engines: { node: ">= 0.8" } es-abstract@1.23.2: - resolution: {integrity: sha512-60s3Xv2T2p1ICykc7c+DNDPLDMm9t4QxCOUU0K9JxiLjM3C1zB9YVdN7tjxrFd4+AkZ8CdX1ovUga4P2+1e+/w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-60s3Xv2T2p1ICykc7c+DNDPLDMm9t4QxCOUU0K9JxiLjM3C1zB9YVdN7tjxrFd4+AkZ8CdX1ovUga4P2+1e+/w==, + } + engines: { node: ">= 0.4" } es-array-method-boxes-properly@1.0.0: - resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} + resolution: + { + integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==, + } es-define-property@1.0.0: - resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==, + } + 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-get-iterator@1.1.3: - resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} + resolution: + { + integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==, + } es-iterator-helpers@1.0.18: - resolution: {integrity: sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==, + } + engines: { node: ">= 0.4" } es-module-lexer@1.5.0: - resolution: {integrity: sha512-pqrTKmwEIgafsYZAGw9kszYzmagcE/n4dbgwGWLEXg7J4QFJVQRBld8j3Q3GNez79jzxZshq0bcT962QHOghjw==} + resolution: + { + integrity: sha512-pqrTKmwEIgafsYZAGw9kszYzmagcE/n4dbgwGWLEXg7J4QFJVQRBld8j3Q3GNez79jzxZshq0bcT962QHOghjw==, + } 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.0.3: - resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==, + } + 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.2.1: - resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, + } + engines: { node: ">= 0.4" } es5-ext@0.10.64: - resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==, + } + engines: { node: ">=0.10" } es5-shim@4.6.7: - resolution: {integrity: sha512-jg21/dmlrNQI7JyyA2w7n+yifSxBng0ZralnSfVZjoCawgNTCnS+yBCyVM9DL5itm7SUnDGgv7hcq2XCZX4iRQ==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-jg21/dmlrNQI7JyyA2w7n+yifSxBng0ZralnSfVZjoCawgNTCnS+yBCyVM9DL5itm7SUnDGgv7hcq2XCZX4iRQ==, + } + engines: { node: ">=0.4.0" } es6-error@4.1.1: - resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} + resolution: + { + integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==, + } es6-iterator@2.0.3: - resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} + resolution: + { + integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==, + } es6-promise@4.2.8: - resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==} + resolution: + { + integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==, + } es6-promisify@5.0.0: - resolution: {integrity: sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==} + resolution: + { + integrity: sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==, + } es6-shim@0.35.8: - resolution: {integrity: sha512-Twf7I2v4/1tLoIXMT8HlqaBSS5H2wQTs2wx3MNYCI8K1R1/clXyCazrcVCPm/FuO9cyV8+leEaZOWD5C253NDg==} + resolution: + { + integrity: sha512-Twf7I2v4/1tLoIXMT8HlqaBSS5H2wQTs2wx3MNYCI8K1R1/clXyCazrcVCPm/FuO9cyV8+leEaZOWD5C253NDg==, + } es6-symbol@3.1.4: - resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==} - engines: {node: '>=0.12'} + resolution: + { + integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==, + } + engines: { node: ">=0.12" } es6-template-regex@0.1.1: - resolution: {integrity: sha512-sCeu9DOYhaSlKG7ry2y384bwxxaxPPdqWS0Jj45lv1MeQSpRK7mYlLO0jZdqwDLHViDWMsMikOkSIXuXpf4DiQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-sCeu9DOYhaSlKG7ry2y384bwxxaxPPdqWS0Jj45lv1MeQSpRK7mYlLO0jZdqwDLHViDWMsMikOkSIXuXpf4DiQ==, + } + engines: { node: ">=0.10.0" } es6-template@1.0.4: - resolution: {integrity: sha512-91S2Zl/xHps/4gYIOFTl6xIEZgkCYSmyH6Nmw3uZUD89EEjj7YjK4m8C9RbjSHwCw94ENLOJJQjxZ6eEM4JanQ==} + resolution: + { + integrity: sha512-91S2Zl/xHps/4gYIOFTl6xIEZgkCYSmyH6Nmw3uZUD89EEjj7YjK4m8C9RbjSHwCw94ENLOJJQjxZ6eEM4JanQ==, + } esbuild-plugin-alias@0.2.1: - resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==} + resolution: + { + integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==, + } esbuild-plugin-import-glob@0.1.1: - resolution: {integrity: sha512-yAFH+9AoIcsQkODSx0KUPRv1FeJUN6Tef8vkPQMcuVkc2vXYneYKsHhOiFS/yIsg5bQ70HHtAlXVA1uTjgoJXg==} + resolution: + { + integrity: sha512-yAFH+9AoIcsQkODSx0KUPRv1FeJUN6Tef8vkPQMcuVkc2vXYneYKsHhOiFS/yIsg5bQ70HHtAlXVA1uTjgoJXg==, + } esbuild-register@3.5.0: - resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==} + resolution: + { + integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==, + } peerDependencies: - esbuild: '>=0.12 <1' + esbuild: ">=0.12 <1" esbuild@0.18.20: - resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==, + } + engines: { node: ">=12" } hasBin: true 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.20.2: - resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==, + } + engines: { node: ">=12" } hasBin: true escalade@3.1.2: - resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==, + } + engines: { node: ">=6" } escape-goat@2.1.1: - resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==, + } + engines: { node: ">=8" } escape-html@1.0.3: - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} + resolution: + { + integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==, + } 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@2.0.0: - resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==, + } + engines: { node: ">=8" } 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" } escodegen@1.14.3: - resolution: {integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==, + } + engines: { node: ">=4.0" } hasBin: true escodegen@2.1.0: - resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==, + } + engines: { node: ">=6.0" } hasBin: true eslint-config-next@13.5.6: - resolution: {integrity: sha512-o8pQsUHTo9aHqJ2YiZDym5gQAMRf7O2HndHo/JZeY7TDD+W4hk6Ma8Vw54RHiBeb7OWWO5dPirQB+Is/aVQ7Kg==} + resolution: + { + integrity: sha512-o8pQsUHTo9aHqJ2YiZDym5gQAMRf7O2HndHo/JZeY7TDD+W4hk6Ma8Vw54RHiBeb7OWWO5dPirQB+Is/aVQ7Kg==, + } peerDependencies: eslint: ^7.23.0 || ^8.0.0 - typescript: '>=3.3.1' + typescript: ">=3.3.1" peerDependenciesMeta: typescript: optional: true eslint-config-prettier@9.1.0: - resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} + resolution: + { + integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==, + } hasBin: true peerDependencies: - eslint: '>=7.0.0' + eslint: ">=7.0.0" eslint-config-react-app@7.0.1: - resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==, + } + engines: { node: ">=14.0.0" } peerDependencies: eslint: ^8.0.0 - typescript: '*' + typescript: "*" peerDependenciesMeta: typescript: optional: true eslint-import-resolver-node@0.3.9: - resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + resolution: + { + integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==, + } eslint-import-resolver-typescript@3.6.1: - resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} - engines: {node: ^14.18.0 || >=16.0.0} + resolution: + { + integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==, + } + engines: { node: ^14.18.0 || >=16.0.0 } peerDependencies: - eslint: '*' - eslint-plugin-import: '*' + eslint: "*" + eslint-plugin-import: "*" eslint-module-utils@2.8.1: - resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} - engines: {node: '>=4'} - peerDependencies: - '@typescript-eslint/parser': '*' - eslint: '*' - eslint-import-resolver-node: '*' - eslint-import-resolver-typescript: '*' - eslint-import-resolver-webpack: '*' + resolution: + { + integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==, + } + 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 @@ -19263,368 +27658,614 @@ packages: optional: true eslint-plugin-detox@1.0.0: - resolution: {integrity: sha512-Dd+Cwyap5IO9DBKXOKrQTE1RQk9hvSSi+qsS1cMVPZY37mojz2PvriEOfGhKj5XN1G14lJ8TArf+6Y+Np2ZsoQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Dd+Cwyap5IO9DBKXOKrQTE1RQk9hvSSi+qsS1cMVPZY37mojz2PvriEOfGhKj5XN1G14lJ8TArf+6Y+Np2ZsoQ==, + } + engines: { node: ">=0.10.0" } eslint-plugin-flowtype@2.50.3: - resolution: {integrity: sha512-X+AoKVOr7Re0ko/yEXyM5SSZ0tazc6ffdIOocp2fFUlWoDt7DV0Bz99mngOkAFLOAWjqRA5jPwqUCbrx13XoxQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-X+AoKVOr7Re0ko/yEXyM5SSZ0tazc6ffdIOocp2fFUlWoDt7DV0Bz99mngOkAFLOAWjqRA5jPwqUCbrx13XoxQ==, + } + engines: { node: ">=4" } peerDependencies: - eslint: '>=2.0.0' + eslint: ">=2.0.0" eslint-plugin-flowtype@8.0.3: - resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==} - engines: {node: '>=12.0.0'} - peerDependencies: - '@babel/plugin-syntax-flow': ^7.14.5 - '@babel/plugin-transform-react-jsx': ^7.14.9 + resolution: + { + integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==, + } + engines: { node: ">=12.0.0" } + peerDependencies: + "@babel/plugin-syntax-flow": ^7.14.5 + "@babel/plugin-transform-react-jsx": ^7.14.9 eslint: ^8.1.0 eslint-plugin-i18next@6.0.3: - resolution: {integrity: sha512-RtQXYfg6PZCjejIQ/YG+dUj/x15jPhufJ9hUDGH0kCpJ6CkVMAWOQ9exU1CrbPmzeykxLjrXkjAaOZF/V7+DOA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-RtQXYfg6PZCjejIQ/YG+dUj/x15jPhufJ9hUDGH0kCpJ6CkVMAWOQ9exU1CrbPmzeykxLjrXkjAaOZF/V7+DOA==, + } + engines: { node: ">=0.10.0" } eslint-plugin-import@2.29.1: - resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==, + } + engines: { node: ">=4" } peerDependencies: - '@typescript-eslint/parser': '*' + "@typescript-eslint/parser": "*" eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 peerDependenciesMeta: - '@typescript-eslint/parser': + "@typescript-eslint/parser": optional: true eslint-plugin-jest@25.7.0: - resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + resolution: + { + integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==, + } + engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } peerDependencies: - '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0 + "@typescript-eslint/eslint-plugin": ^4.0.0 || ^5.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - jest: '*' + jest: ^27.0.0 peerDependenciesMeta: - '@typescript-eslint/eslint-plugin': + "@typescript-eslint/eslint-plugin": optional: true jest: optional: true eslint-plugin-jest@27.9.0: - resolution: {integrity: sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: - '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0 || ^7.0.0 + "@typescript-eslint/eslint-plugin": ^5.0.0 || ^6.0.0 || ^7.0.0 eslint: ^7.0.0 || ^8.0.0 - jest: '*' + jest: "*" peerDependenciesMeta: - '@typescript-eslint/eslint-plugin': + "@typescript-eslint/eslint-plugin": optional: true jest: optional: true eslint-plugin-json@3.1.0: - resolution: {integrity: sha512-MrlG2ynFEHe7wDGwbUuFPsaT2b1uhuEFhJ+W1f1u+1C2EkXmTYJp4B1aAdQQ8M+CC3t//N/oRKiIVw14L2HR1g==} - engines: {node: '>=12.0'} + resolution: + { + integrity: sha512-MrlG2ynFEHe7wDGwbUuFPsaT2b1uhuEFhJ+W1f1u+1C2EkXmTYJp4B1aAdQQ8M+CC3t//N/oRKiIVw14L2HR1g==, + } + engines: { node: ">=12.0" } eslint-plugin-jsx-a11y@6.8.0: - resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==, + } + engines: { node: ">=4.0" } peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 eslint-plugin-prettier@5.1.3: - resolution: {integrity: sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==} - engines: {node: ^14.18.0 || >=16.0.0} - peerDependencies: - '@types/eslint': '>=8.0.0' - eslint: '>=8.0.0' - eslint-config-prettier: '*' - prettier: '>=3.0.0' + resolution: + { + integrity: sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==, + } + engines: { node: ^14.18.0 || >=16.0.0 } + peerDependencies: + "@types/eslint": ">=8.0.0" + eslint: ">=8.0.0" + eslint-config-prettier: "*" + prettier: ">=3.0.0" peerDependenciesMeta: - '@types/eslint': + "@types/eslint": optional: true eslint-config-prettier: optional: true eslint-plugin-react-hooks@4.6.0: - resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==, + } + engines: { node: ">=10" } peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 eslint-plugin-react-refresh@0.4.6: - resolution: {integrity: sha512-NjGXdm7zgcKRkKMua34qVO9doI7VOxZ6ancSvBELJSSoX97jyndXcSoa8XBh69JoB31dNz3EEzlMcizZl7LaMA==} + resolution: + { + integrity: sha512-NjGXdm7zgcKRkKMua34qVO9doI7VOxZ6ancSvBELJSSoX97jyndXcSoa8XBh69JoB31dNz3EEzlMcizZl7LaMA==, + } peerDependencies: - eslint: '>=7' + eslint: ">=7" eslint-plugin-react@7.34.1: - resolution: {integrity: sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==, + } + engines: { node: ">=4" } peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 eslint-plugin-storybook@0.6.15: - resolution: {integrity: sha512-lAGqVAJGob47Griu29KXYowI4G7KwMoJDOkEip8ujikuDLxU+oWJ1l0WL6F2oDO4QiyUFXvtDkEkISMOPzo+7w==} - engines: {node: 12.x || 14.x || >= 16} + resolution: + { + integrity: sha512-lAGqVAJGob47Griu29KXYowI4G7KwMoJDOkEip8ujikuDLxU+oWJ1l0WL6F2oDO4QiyUFXvtDkEkISMOPzo+7w==, + } + engines: { node: 12.x || 14.x || >= 16 } peerDependencies: - eslint: '>=6' + eslint: ">=6" eslint-plugin-testing-library@5.11.1: - resolution: {integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} + resolution: + { + integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: ">=6" } peerDependencies: eslint: ^7.5.0 || ^8.0.0 eslint-scope@5.1.1: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==, + } + engines: { node: ">=8.0.0" } eslint-scope@7.2.2: - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } eslint-visitor-keys@2.1.0: - resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==, + } + engines: { node: ">=10" } 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-webpack-plugin@3.2.0: - resolution: {integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==} - engines: {node: '>= 12.13.0'} + resolution: + { + integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==, + } + engines: { node: ">= 12.13.0" } peerDependencies: eslint: ^7.0.0 || ^8.0.0 webpack: ^5.0.0 eslint@8.57.0: - resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } hasBin: true esniff@2.0.1: - resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==, + } + engines: { node: ">=0.10" } espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } esprima@1.2.2: - resolution: {integrity: sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==, + } + engines: { node: ">=0.4.0" } hasBin: true 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.5.0: - resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==, + } + 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@4.3.0: - resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==, + } + 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@2.1.1: - resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==} + resolution: + { + integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==, + } estree-util-build-jsx@2.2.2: - resolution: {integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==} + resolution: + { + integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==, + } estree-util-is-identifier-name@2.1.0: - resolution: {integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==} + resolution: + { + integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==, + } estree-util-to-js@1.2.0: - resolution: {integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==} + resolution: + { + integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==, + } estree-util-value-to-estree@1.3.0: - resolution: {integrity: sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==, + } + engines: { node: ">=12.0.0" } estree-util-visit@1.2.1: - resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==} + resolution: + { + integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==, + } 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" } eth-ens-namehash@2.0.8: - resolution: {integrity: sha512-VWEI1+KJfz4Km//dadyvBBoBeSQ0MHTXPvr8UIXiLW6IanxvAV+DmlZAijZwAyggqGUfwQBeHf7tc9wzc1piSw==} + resolution: + { + integrity: sha512-VWEI1+KJfz4Km//dadyvBBoBeSQ0MHTXPvr8UIXiLW6IanxvAV+DmlZAijZwAyggqGUfwQBeHf7tc9wzc1piSw==, + } eth-lib@0.1.29: - resolution: {integrity: sha512-bfttrr3/7gG4E02HoWTDUcDDslN003OlOoBxk9virpAZQ1ja/jDgwkWB8QfJF7ojuEowrqy+lzp9VcJG7/k5bQ==} + resolution: + { + integrity: sha512-bfttrr3/7gG4E02HoWTDUcDDslN003OlOoBxk9virpAZQ1ja/jDgwkWB8QfJF7ojuEowrqy+lzp9VcJG7/k5bQ==, + } eth-lib@0.2.8: - resolution: {integrity: sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==} + resolution: + { + integrity: sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==, + } ethereum-bloom-filters@1.0.10: - resolution: {integrity: sha512-rxJ5OFN3RwjQxDcFP2Z5+Q9ho4eIdEmSc2ht0fCu8Se9nbXjZ7/031uXoUYJ87KHCOdVeiUuwSnoS7hmYAGVHA==} + resolution: + { + integrity: sha512-rxJ5OFN3RwjQxDcFP2Z5+Q9ho4eIdEmSc2ht0fCu8Se9nbXjZ7/031uXoUYJ87KHCOdVeiUuwSnoS7hmYAGVHA==, + } ethereum-cryptography@0.1.3: - resolution: {integrity: sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==} + resolution: + { + integrity: sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==, + } ethereum-cryptography@2.1.3: - resolution: {integrity: sha512-BlwbIL7/P45W8FGW2r7LGuvoEZ+7PWsniMvQ4p5s2xCyw9tmaDlpfsN9HjAucbF+t/qpVHwZUisgfK24TCW8aA==} + resolution: + { + integrity: sha512-BlwbIL7/P45W8FGW2r7LGuvoEZ+7PWsniMvQ4p5s2xCyw9tmaDlpfsN9HjAucbF+t/qpVHwZUisgfK24TCW8aA==, + } ethereumjs-common@1.5.2: - resolution: {integrity: sha512-hTfZjwGX52GS2jcVO6E2sx4YuFnf0Fhp5ylo4pEPhEffNln7vS59Hr5sLnp3/QCazFLluuBZ+FZ6J5HTp0EqCA==} - deprecated: 'New package name format for new versions: @ethereumjs/common. Please update.' + resolution: + { + integrity: sha512-hTfZjwGX52GS2jcVO6E2sx4YuFnf0Fhp5ylo4pEPhEffNln7vS59Hr5sLnp3/QCazFLluuBZ+FZ6J5HTp0EqCA==, + } + deprecated: "New package name format for new versions: @ethereumjs/common. Please update." ethereumjs-tx@2.1.2: - resolution: {integrity: sha512-zZEK1onCeiORb0wyCXUvg94Ve5It/K6GD1K+26KfFKodiBiS6d9lfCXlUKGBBdQ+bv7Day+JK0tj1K+BeNFRAw==} - deprecated: 'New package name format for new versions: @ethereumjs/tx. Please update.' + resolution: + { + integrity: sha512-zZEK1onCeiORb0wyCXUvg94Ve5It/K6GD1K+26KfFKodiBiS6d9lfCXlUKGBBdQ+bv7Day+JK0tj1K+BeNFRAw==, + } + deprecated: "New package name format for new versions: @ethereumjs/tx. Please update." ethereumjs-util@5.2.1: - resolution: {integrity: sha512-v3kT+7zdyCm1HIqWlLNrHGqHGLpGYIhjeHxQjnDXjLT2FyGJDsd3LWMYUo7pAFRrk86CR3nUJfhC81CCoJNNGQ==} + resolution: + { + integrity: sha512-v3kT+7zdyCm1HIqWlLNrHGqHGLpGYIhjeHxQjnDXjLT2FyGJDsd3LWMYUo7pAFRrk86CR3nUJfhC81CCoJNNGQ==, + } ethereumjs-util@6.2.1: - resolution: {integrity: sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==} + resolution: + { + integrity: sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==, + } ethereumjs-util@7.1.5: - resolution: {integrity: sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==, + } + engines: { node: ">=10.0.0" } ethers@5.7.2: - resolution: {integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==} + resolution: + { + integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==, + } ethers@6.12.1: - resolution: {integrity: sha512-j6wcVoZf06nqEcBbDWkKg8Fp895SS96dSnTCjiXT+8vt2o02raTn4Lo9ERUuIVU5bAjoPYeA+7ytQFexFmLuVw==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-j6wcVoZf06nqEcBbDWkKg8Fp895SS96dSnTCjiXT+8vt2o02raTn4Lo9ERUuIVU5bAjoPYeA+7ytQFexFmLuVw==, + } + engines: { node: ">=14.0.0" } ethjs-unit@0.1.6: - resolution: {integrity: sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==} - engines: {node: '>=6.5.0', npm: '>=3'} + resolution: + { + integrity: sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==, + } + engines: { node: ">=6.5.0", npm: ">=3" } ethjs-util@0.1.6: - resolution: {integrity: sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==} - engines: {node: '>=6.5.0', npm: '>=3'} + resolution: + { + integrity: sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==, + } + engines: { node: ">=6.5.0", npm: ">=3" } event-emitter@0.3.5: - resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} + resolution: + { + integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==, + } event-pubsub@4.3.0: - resolution: {integrity: sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ==, + } + engines: { node: ">=4.0.0" } event-stream@3.3.4: - resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==} + resolution: + { + integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==, + } event-target-shim@5.0.1: - resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==, + } + engines: { node: ">=6" } eventemitter3@3.1.2: - resolution: {integrity: sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==} + resolution: + { + integrity: sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==, + } eventemitter3@4.0.4: - resolution: {integrity: sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==} + resolution: + { + integrity: sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==, + } eventemitter3@4.0.7: - resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} + resolution: + { + integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==, + } eventemitter3@5.0.1: - resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + resolution: + { + integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==, + } events@1.1.1: - resolution: {integrity: sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==} - engines: {node: '>=0.4.x'} + resolution: + { + integrity: sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==, + } + engines: { node: ">=0.4.x" } events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} + resolution: + { + integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==, + } + engines: { node: ">=0.8.x" } eventsource@2.0.2: - resolution: {integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==, + } + engines: { node: ">=12.0.0" } evp_bytestokey@1.0.3: - resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==} + resolution: + { + integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==, + } exec-async@2.2.0: - resolution: {integrity: sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==} + resolution: + { + integrity: sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==, + } execa@0.8.0: - resolution: {integrity: sha512-zDWS+Rb1E8BlqqhALSt9kUhss8Qq4nN3iof3gsOdyINksElaPyNBtKUMTR62qhvgVWR0CqCX7sdnKe4MnUbFEA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-zDWS+Rb1E8BlqqhALSt9kUhss8Qq4nN3iof3gsOdyINksElaPyNBtKUMTR62qhvgVWR0CqCX7sdnKe4MnUbFEA==, + } + engines: { node: ">=4" } execa@1.0.0: - resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==, + } + engines: { node: ">=6" } execa@5.0.0: - resolution: {integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==, + } + engines: { node: ">=10" } execa@5.1.1: - resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==, + } + engines: { node: ">=10" } execa@7.2.0: - resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==} - engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} + resolution: + { + integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==, + } + engines: { node: ^14.18.0 || ^16.14.0 || >=18.0.0 } 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" } exenv@1.2.2: - resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} + resolution: + { + integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==, + } exeunt@1.1.0: - resolution: {integrity: sha512-dd++Yn/0Fp+gtJ04YHov7MeAii+LFivJc6KqnJNfplzLVUkUDrfKoQDTLlCgzcW15vY5hKlHasWeIsQJ8agHsw==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-dd++Yn/0Fp+gtJ04YHov7MeAii+LFivJc6KqnJNfplzLVUkUDrfKoQDTLlCgzcW15vY5hKlHasWeIsQJ8agHsw==, + } + engines: { node: ">=0.10" } exit@0.1.2: - resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==, + } + engines: { node: ">= 0.8.0" } expand-template@2.0.3: - resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==, + } + engines: { node: ">=6" } expect@27.5.1: - resolution: {integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } expect@28.1.3: - resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } expect@29.7.0: - resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } expo-application@5.3.1: - resolution: {integrity: sha512-HR2+K+Hm33vLw/TfbFaHrvUbRRNRco8R+3QaCKy7eJC2LFfT05kZ15ynGaKfB5DJ/oqPV3mxXVR/EfwmE++hoA==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + resolution: + { + integrity: sha512-HR2+K+Hm33vLw/TfbFaHrvUbRRNRco8R+3QaCKy7eJC2LFfT05kZ15ynGaKfB5DJ/oqPV3mxXVR/EfwmE++hoA==, + } + peerDependencies: + expo: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -19635,15 +28276,19 @@ packages: react-native: optional: true - expo-asset@8.10.1: - resolution: {integrity: sha512-5VMTESxgY9GBsspO/esY25SKEa7RyascVkLe/OcL1WgblNFm7xCCEEUIW8VWS1nHJQGYxpMZPr3bEfjMpdWdyA==} - peerDependencies: - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + expo-asset@10.0.10: + resolution: + { + integrity: sha512-0qoTIihB79k+wGus9wy0JMKq7DdenziVx3iUkGvMAy2azscSgWH6bd2gJ9CGnhC6JRd3qTMFBL0ou/fx7WZl7A==, + } + peerDependencies: + expo: "*" + expo-file-system: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: - expo-constants: + expo-file-system: optional: true expo-modules-core: optional: true @@ -19652,15 +28297,18 @@ packages: react-native: optional: true - expo-asset@9.0.2: - resolution: {integrity: sha512-PzYKME1MgUOoUvwtdzhAyXkjXOXGiSYqGKG/MsXwWr0Ef5wlBaBm2DCO9V6KYbng5tBPFu6hTjoRNil1tBOSow==} - peerDependencies: - expo-file-system: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + expo-asset@8.10.1: + resolution: + { + integrity: sha512-5VMTESxgY9GBsspO/esY25SKEa7RyascVkLe/OcL1WgblNFm7xCCEEUIW8VWS1nHJQGYxpMZPr3bEfjMpdWdyA==, + } + peerDependencies: + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: - expo-file-system: + expo-constants: optional: true expo-modules-core: optional: true @@ -19669,14 +28317,17 @@ packages: react-native: optional: true - expo-barcode-scanner@12.9.3: - resolution: {integrity: sha512-I3zaKSINRMHbTc7sHIq14ug3fHkCsW4rweJF12yk0kHaympI2wxVgIo2DhzeZaYG1Ylkuj5aiKen3NuwDk1FSA==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + expo-barcode-scanner@13.0.1: + resolution: + { + integrity: sha512-xBGLT1An2gpAMIQRTLU3oHydKohX8r8F9/ait1Fk9Vgd0GraFZbP4IiT7nHMlaw4H6E7Muucf7vXpGV6u7d4HQ==, + } + peerDependencies: + expo: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -19687,14 +28338,17 @@ packages: react-native: optional: true - expo-camera@14.1.3: - resolution: {integrity: sha512-JodpVjOY8JDuSp/RkphS8Bxqaj/gwg0h0UbQB9MLr1LoxbL9brvJt7IZnmTf7+ON8jRKUx9E5o/F02pRNbmSbQ==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + expo-camera@15.0.16: + resolution: + { + integrity: sha512-FLE02DMqkjwsb7IugKAqQvBe6s+TCQeb5LupO1+r//wAhBwmHncOrc6zV95ZEC2f9PTPK34nFH/s8CDGiVzIAA==, + } + peerDependencies: + expo: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -19706,13 +28360,16 @@ packages: optional: true expo-constants@14.4.2: - resolution: {integrity: sha512-nOB122DOAjk+KrJT69lFQAoYVQGQjFHSigCPVBzVdko9S1xGsfiOH9+X5dygTsZTIlVLpQJDdmZ7ONiv3i+26w==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + resolution: + { + integrity: sha512-nOB122DOAjk+KrJT69lFQAoYVQGQjFHSigCPVBzVdko9S1xGsfiOH9+X5dygTsZTIlVLpQJDdmZ7ONiv3i+26w==, + } + peerDependencies: + expo: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -19724,13 +28381,16 @@ packages: optional: true expo-constants@14.5.1: - resolution: {integrity: sha512-06OKXQmKI0vuje++6lm7w1kO3rKsZAHio/4d9hwQuVAtExJ6RM92BnpzkDAV16ZheVN/FHKzNyY1BYLqXfujMw==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + resolution: + { + integrity: sha512-06OKXQmKI0vuje++6lm7w1kO3rKsZAHio/4d9hwQuVAtExJ6RM92BnpzkDAV16ZheVN/FHKzNyY1BYLqXfujMw==, + } + peerDependencies: + expo: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -19741,14 +28401,17 @@ packages: react-native: optional: true - expo-constants@15.4.5: - resolution: {integrity: sha512-1pVVjwk733hbbIjtQcvUFCme540v4gFemdNlaxM2UXKbfRCOh2hzgKN5joHMOysoXQe736TTUrRj7UaZI5Yyhg==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + expo-constants@16.0.2: + resolution: + { + integrity: sha512-9tNY3OVO0jfiMzl7ngb6IOyR5VFzNoN5OOazUWoeGfmMqVB5kltTemRvKraK9JRbBKIw+SOYLEmF0sEqgFZ6OQ==, + } + peerDependencies: + expo: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -19760,13 +28423,16 @@ packages: optional: true expo-crypto@10.2.0: - resolution: {integrity: sha512-YVFp+DJXBtt4t6oZXepnzb+xwpKzFbXn3B9Oma1Tfh6J0rIlm/I20UW/5apdvEdbj44fxJ5DsiZeyADI3bcZkQ==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + resolution: + { + integrity: sha512-YVFp+DJXBtt4t6oZXepnzb+xwpKzFbXn3B9Oma1Tfh6J0rIlm/I20UW/5apdvEdbj44fxJ5DsiZeyADI3bcZkQ==, + } + peerDependencies: + expo: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -19777,14 +28443,17 @@ packages: react-native: optional: true - expo-crypto@12.8.1: - resolution: {integrity: sha512-EJEzmfBUSkGfALTlZRKUbh1RMKF7mWI12vkhO2w6bhGO4bjgGB8XzUHgLfrvSjphDFMx/lwaR6bAQDmXKO9UkQ==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + expo-crypto@13.0.2: + resolution: + { + integrity: sha512-7f/IMPYJZkBM21LNEMXGrNo/0uXSVfZTwufUdpNKedJR0fm5fH4DCSN79ZddlV26nF90PuXjK2inIbI6lb0qRA==, + } + peerDependencies: + expo: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -19796,13 +28465,16 @@ packages: optional: true expo-file-system@15.4.5: - resolution: {integrity: sha512-xy61KaTaDgXhT/dllwYDHm3ch026EyO8j4eC6wSVr/yE12MMMxAC09yGwy4f7kkOs6ztGVQF5j7ldRzNLN4l0Q==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + resolution: + { + integrity: sha512-xy61KaTaDgXhT/dllwYDHm3ch026EyO8j4eC6wSVr/yE12MMMxAC09yGwy4f7kkOs6ztGVQF5j7ldRzNLN4l0Q==, + } + peerDependencies: + expo: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -19813,14 +28485,17 @@ packages: react-native: optional: true - expo-file-system@16.0.8: - resolution: {integrity: sha512-yDbVT0TUKd7ewQjaY5THum2VRFx2n/biskGhkUmLh3ai21xjIVtaeIzHXyv9ir537eVgt4ReqDNWi7jcXjdUcA==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + expo-file-system@17.0.1: + resolution: + { + integrity: sha512-dYpnZJqTGj6HCYJyXAgpFkQWsiCH3HY1ek2cFZVHFoEc5tLz9gmdEgTF6nFHurvmvfmXqxi7a5CXyVm0aFYJBw==, + } + peerDependencies: + expo: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -19832,14 +28507,17 @@ packages: optional: true expo-font@11.10.3: - resolution: {integrity: sha512-q1Td2zUvmLbCA9GV4OG4nLPw5gJuNY1VrPycsnemN1m8XWTzzs8nyECQQqrcBhgulCgcKZZJJ6U0kC2iuSoQHQ==} - peerDependencies: - expo: '*' - expo-asset: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + resolution: + { + integrity: sha512-q1Td2zUvmLbCA9GV4OG4nLPw5gJuNY1VrPycsnemN1m8XWTzzs8nyECQQqrcBhgulCgcKZZJJ6U0kC2iuSoQHQ==, + } + peerDependencies: + expo: "*" + expo-asset: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-asset: optional: true @@ -19853,14 +28531,17 @@ packages: optional: true expo-font@11.4.0: - resolution: {integrity: sha512-nkmezCFD7gR/I6R+e3/ry18uEfF8uYrr6h+PdBJu+3dawoLOpo+wFb/RG9bHUekU1/cPanR58LR7G5MEMKHR2w==} - peerDependencies: - expo: '*' - expo-asset: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + resolution: + { + integrity: sha512-nkmezCFD7gR/I6R+e3/ry18uEfF8uYrr6h+PdBJu+3dawoLOpo+wFb/RG9bHUekU1/cPanR58LR7G5MEMKHR2w==, + } + peerDependencies: + expo: "*" + expo-asset: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-asset: optional: true @@ -19873,15 +28554,21 @@ packages: react-native: optional: true - expo-image-loader@4.6.0: - resolution: {integrity: sha512-RHQTDak7/KyhWUxikn2yNzXL7i2cs16cMp6gEAgkHOjVhoCJQoOJ0Ljrt4cKQ3IowxgCuOrAgSUzGkqs7omj8Q==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + expo-font@12.0.10: + resolution: + { + integrity: sha512-Q1i2NuYri3jy32zdnBaHHCya1wH1yMAsI+3CCmj9zlQzlhsS9Bdwcj2W3c5eU5FvH2hsNQy4O+O1NnM6o/pDaQ==, + } + peerDependencies: + expo: "*" + expo-asset: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: + expo-asset: + optional: true expo-constants: optional: true expo-modules-core: @@ -19891,14 +28578,38 @@ packages: react-native: optional: true - expo-image-manipulator@11.8.0: - resolution: {integrity: sha512-ZWVrHnYmwJq6h7auk+ropsxcNi+LyZcPFKQc8oy+JA0SaJosfShvkCm7RADWAunHmfPCmjHrhwPGEu/rs7WG/A==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + expo-image-loader@4.7.0: + resolution: + { + integrity: sha512-cx+MxxsAMGl9AiWnQUzrkJMJH4eNOGlu7XkLGnAXSJrRoIiciGaKqzeaD326IyCTV+Z1fXvIliSgNW+DscvD8g==, + } + peerDependencies: + expo: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" + peerDependenciesMeta: + expo-constants: + optional: true + expo-modules-core: + optional: true + react: + optional: true + react-native: + optional: true + + expo-image-manipulator@12.0.5: + resolution: + { + integrity: sha512-zJ8yINjckYw/yfoSuICt4yJ9xr112+W9e5QVXwK3nCAHr7sv45RQ5sxte0qppf594TPl+UoV6Tjim7WpoKipRQ==, + } + peerDependencies: + expo: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -19910,13 +28621,16 @@ packages: optional: true expo-keep-awake@12.3.0: - resolution: {integrity: sha512-ujiJg1p9EdCOYS05jh5PtUrfiZnK0yyLy+UewzqrjUqIT8eAGMQbkfOn3C3fHE7AKd5AefSMzJnS3lYZcZYHDw==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + resolution: + { + integrity: sha512-ujiJg1p9EdCOYS05jh5PtUrfiZnK0yyLy+UewzqrjUqIT8eAGMQbkfOn3C3fHE7AKd5AefSMzJnS3lYZcZYHDw==, + } + peerDependencies: + expo: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -19927,14 +28641,17 @@ packages: react-native: optional: true - expo-keep-awake@12.8.2: - resolution: {integrity: sha512-uiQdGbSX24Pt8nGbnmBtrKq6xL/Tm3+DuDRGBk/3ZE/HlizzNosGRIufIMJ/4B4FRw4dw8KU81h2RLuTjbay6g==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + expo-keep-awake@13.0.2: + resolution: + { + integrity: sha512-kKiwkVg/bY0AJ5q1Pxnm/GvpeB6hbNJhcFsoOWDh2NlpibhCLaHL826KHUM+WsnJRbVRxJ+K9vbPRHEMvFpVyw==, + } + peerDependencies: + expo: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -19945,14 +28662,17 @@ packages: react-native: optional: true - expo-modules-autolinking@1.10.3: - resolution: {integrity: sha512-pn4n2Dl4iRh/zUeiChjRIe1C7EqOw1qhccr85viQV7W6l5vgRpY0osE51ij5LKg/kJmGRcJfs12+PwbdTplbKw==} + expo-modules-autolinking@1.11.2: + resolution: + { + integrity: sha512-fdcaNO8ucHA3yLNY52ZUENBcAG7KEx8QyMmnVNavO1JVBGRMZG8JyVcbrhYQDtVtpxkbai5YzwvLutINvbDZDQ==, + } hasBin: true peerDependencies: - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -19964,13 +28684,16 @@ packages: optional: true expo-modules-autolinking@1.5.1: - resolution: {integrity: sha512-yt5a1VCp2BF9CrsO689PCD5oXKP14MMhnOanQMvDn4BDpURYfzAlDVGC5fZrNQKtwn/eq3bcrxIwZ7D9QjVVRg==} + resolution: + { + integrity: sha512-yt5a1VCp2BF9CrsO689PCD5oXKP14MMhnOanQMvDn4BDpURYfzAlDVGC5fZrNQKtwn/eq3bcrxIwZ7D9QjVVRg==, + } hasBin: true peerDependencies: - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -19981,13 +28704,16 @@ packages: react-native: optional: true - expo-modules-core@1.11.12: - resolution: {integrity: sha512-/e8g4kis0pFLer7C0PLyx98AfmztIM6gU9jLkYnB1pU9JAfQf904XEi3bmszO7uoteBQwSL6FLp1m3TePKhDaA==} + expo-modules-core@1.12.25: + resolution: + { + integrity: sha512-HB2LS2LEM41Xq1bG+Jtzqm6XgPaa+mM9BAvCdX1lDGMQ9Ay9vMTL/GVEs2gpsINPofICopjBRwD+wftyCbVrzg==, + } peerDependencies: - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -19999,12 +28725,15 @@ packages: optional: true expo-modules-core@1.5.11: - resolution: {integrity: sha512-1Dj2t74nVjxq6xEQf2b9WFfAMhPzVnR0thY0PfRFgob4STyj3sq1U4PIHVWvKQBtDKIa227DrNRb+Hu+LqKWQg==} - peerDependencies: - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + resolution: + { + integrity: sha512-1Dj2t74nVjxq6xEQf2b9WFfAMhPzVnR0thY0PfRFgob4STyj3sq1U4PIHVWvKQBtDKIa227DrNRb+Hu+LqKWQg==, + } + peerDependencies: + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -20016,14 +28745,17 @@ packages: optional: true expo-pwa@0.0.126: - resolution: {integrity: sha512-9qb6aIY0awez4FTyIiNhqyekb6sKnbvODOFCDPg23PqpkvdhuzzDRtP/Avgippt8kqRAgPpFXmIp2LaAyH1/aw==} + resolution: + { + integrity: sha512-9qb6aIY0awez4FTyIiNhqyekb6sKnbvODOFCDPg23PqpkvdhuzzDRtP/Avgippt8kqRAgPpFXmIp2LaAyH1/aw==, + } hasBin: true peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + expo: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -20035,13 +28767,16 @@ packages: optional: true expo-random@12.3.0: - resolution: {integrity: sha512-q+AsTfGNT+Q+fb2sRrYtRkI3g5tV4H0kuYXM186aueILGO/vLn/YYFa7xFZj1IZ8LJZg2h96JDPDpsqHfRG2mQ==} - peerDependencies: - expo: '*' - expo-constants: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + resolution: + { + integrity: sha512-q+AsTfGNT+Q+fb2sRrYtRkI3g5tV4H0kuYXM186aueILGO/vLn/YYFa7xFZj1IZ8LJZg2h96JDPDpsqHfRG2mQ==, + } + peerDependencies: + expo: "*" + expo-constants: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-constants: optional: true @@ -20053,12 +28788,15 @@ packages: optional: true expo@49.0.23: - resolution: {integrity: sha512-mFdBpWisPXBuocRGywC14nDai5vSUmvEyQpwvKH/xUo+m5/TUvfqV6YIewFpW22zn5WFGFiuJPhzNrqhBBinIw==} + resolution: + { + integrity: sha512-mFdBpWisPXBuocRGywC14nDai5vSUmvEyQpwvKH/xUo+m5/TUvfqV6YIewFpW22zn5WFGFiuJPhzNrqhBBinIw==, + } hasBin: true peerDependencies: - expo-modules-core: '*' - react: '*' - react-native: '*' + expo-modules-core: "*" + react: 18.2.0 + react-native: 0.72.10 peerDependenciesMeta: expo-modules-core: optional: true @@ -20067,14 +28805,17 @@ packages: react-native: optional: true - expo@50.0.14: - resolution: {integrity: sha512-yLPdxCMVAbmeEIpzzyAuJ79wvr6ToDDtQmuLDMAgWtjqP8x3CGddXxUe07PpKEQgzwJabdHvCLP5Bv94wMFIjQ==} + expo@51.0.37: + resolution: + { + integrity: sha512-zMdfTiGNgNWG0HOOFA3zRreS94iQ7fDxxgEIR6wdQCbncTpbeYj+5mscTAlHE9JJ+oBkcNyJXrLSjE/YVbFERg==, + } hasBin: true peerDependencies: - expo-modules-autolinking: '*' - expo-modules-core: '*' - react: '*' - react-native: '*' + expo-modules-autolinking: "*" + expo-modules-core: "*" + react: "*" + react-native: "*" peerDependenciesMeta: expo-modules-autolinking: optional: true @@ -20085,364 +28826,650 @@ packages: react-native: optional: true + exponential-backoff@3.1.1: + resolution: + { + integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==, + } + express@4.19.2: - resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==} - engines: {node: '>= 0.10.0'} + resolution: + { + integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==, + } + engines: { node: ">= 0.10.0" } ext-list@2.2.2: - resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==, + } + engines: { node: ">=0.10.0" } ext-name@5.0.0: - resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==, + } + engines: { node: ">=4" } ext@1.7.0: - resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} + resolution: + { + integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==, + } 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@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + resolution: + { + integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==, + } extendable-error@0.1.7: - resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} + resolution: + { + integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==, + } external-editor@3.1.0: - resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==, + } + engines: { node: ">=4" } extract-zip@1.7.0: - resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==} + resolution: + { + integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==, + } hasBin: true extract-zip@2.0.1: - resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} - engines: {node: '>= 10.17.0'} + resolution: + { + integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==, + } + engines: { node: ">= 10.17.0" } hasBin: true extsprintf@1.3.0: - resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} - engines: {'0': node >=0.6.0} + resolution: + { + integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==, + } + engines: { "0": node >=0.6.0 } extsprintf@1.4.1: - resolution: {integrity: sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==} - engines: {'0': node >=0.6.0} + resolution: + { + integrity: sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==, + } + engines: { "0": node >=0.6.0 } eyes@0.1.8: - resolution: {integrity: sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==} - engines: {node: '> 0.1.90'} + resolution: + { + integrity: sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==, + } + engines: { node: "> 0.1.90" } fast-base64-decode@1.0.0: - resolution: {integrity: sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q==} + resolution: + { + integrity: sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q==, + } fast-check@3.17.1: - resolution: {integrity: sha512-jIKXJVe6ZO0SpwEgVtEVujTf8TwjI9wMXFJCjsDHUB3RroUbXBgF4kOSz3A7MW0UR26aqsoB8i9O2mjtjERAiA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-jIKXJVe6ZO0SpwEgVtEVujTf8TwjI9wMXFJCjsDHUB3RroUbXBgF4kOSz3A7MW0UR26aqsoB8i9O2mjtjERAiA==, + } + engines: { node: ">=8.0.0" } fast-deep-equal@2.0.1: - resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==} + resolution: + { + integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==, + } fast-deep-equal@3.1.1: - resolution: {integrity: sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==} + resolution: + { + integrity: sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==, + } fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + resolution: + { + integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, + } fast-diff@1.3.0: - resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} + resolution: + { + integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==, + } fast-fifo@1.3.2: - resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} + resolution: + { + integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==, + } fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} - engines: {node: '>=8.6.0'} + resolution: + { + integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==, + } + engines: { node: ">=8.6.0" } fast-json-parse@1.0.3: - resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} + resolution: + { + integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==, + } 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-loops@1.1.3: - resolution: {integrity: sha512-8EZzEP0eKkEEVX+drtd9mtuQ+/QrlfW/5MlwcwK5Nds6EkZ/tRzEexkzUY2mIssnAyVLT+TKHuRXmFNNXYUd6g==} + resolution: + { + integrity: sha512-8EZzEP0eKkEEVX+drtd9mtuQ+/QrlfW/5MlwcwK5Nds6EkZ/tRzEexkzUY2mIssnAyVLT+TKHuRXmFNNXYUd6g==, + } fast-redact@3.5.0: - resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==, + } + engines: { node: ">=6" } fast-safe-stringify@2.1.1: - resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} + resolution: + { + integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==, + } fast-stable-stringify@1.0.0: - resolution: {integrity: sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag==} + resolution: + { + integrity: sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag==, + } fast-uri@3.0.2: - resolution: {integrity: sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==} + resolution: + { + integrity: sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==, + } fast-url-parser@1.1.3: - resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==} + resolution: + { + integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==, + } fast-xml-parser@4.2.5: - resolution: {integrity: sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==} - hasBin: true - - fast-xml-parser@4.3.6: - resolution: {integrity: sha512-M2SovcRxD4+vC493Uc2GZVcZaj66CCJhWurC4viynVSTvrpErCShNcDz1lAho6n9REQKvL/ll4A4/fw6Y9z8nw==} + resolution: + { + integrity: sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==, + } hasBin: true fast-xml-parser@4.4.1: - resolution: {integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==} + resolution: + { + integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==, + } hasBin: true fastest-levenshtein@1.0.16: - resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} - engines: {node: '>= 4.9.1'} + resolution: + { + integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==, + } + engines: { node: ">= 4.9.1" } fastq@1.17.1: - resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + resolution: + { + integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==, + } faye-websocket@0.11.4: - resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==, + } + engines: { node: ">=0.8.0" } fb-watchman@2.0.2: - resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} + resolution: + { + integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==, + } fbemitter@3.0.0: - resolution: {integrity: sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==} + resolution: + { + integrity: sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==, + } 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==, + } fd-slicer@1.1.0: - resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + resolution: + { + integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==, + } fecha@4.2.3: - resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==} + resolution: + { + integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==, + } fetch-blob@3.2.0: - resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} - engines: {node: ^12.20 || >= 14.13} + resolution: + { + integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==, + } + engines: { node: ^12.20 || >= 14.13 } fetch-retry@4.1.1: - resolution: {integrity: sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==} + resolution: + { + integrity: sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==, + } fetch-retry@5.0.6: - resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==} + resolution: + { + integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==, + } figures@1.7.0: - resolution: {integrity: sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==, + } + engines: { node: ">=0.10.0" } figures@2.0.0: - resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==, + } + engines: { node: ">=4" } file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} + resolution: + { + integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==, + } + engines: { node: ^10.12.0 || >=12.0.0 } file-loader@6.2.0: - resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} - engines: {node: '>= 10.13.0'} + resolution: + { + integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==, + } + engines: { node: ">= 10.13.0" } peerDependencies: webpack: ^4.0.0 || ^5.0.0 file-selector@0.6.0: - resolution: {integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==} - engines: {node: '>= 12'} + resolution: + { + integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==, + } + engines: { node: ">= 12" } file-system-cache@2.3.0: - resolution: {integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==} + resolution: + { + integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==, + } 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==, + } filename-reserved-regex@2.0.0: - resolution: {integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==, + } + engines: { node: ">=4" } filenamify@4.3.0: - resolution: {integrity: sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==, + } + engines: { node: ">=8" } filesize@8.0.7: - resolution: {integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==} - engines: {node: '>= 0.4.0'} + resolution: + { + integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==, + } + engines: { node: ">= 0.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" } finalhandler@1.1.2: - resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==, + } + engines: { node: ">= 0.8" } finalhandler@1.2.0: - resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==, + } + engines: { node: ">= 0.8" } find-babel-config@1.2.0: - resolution: {integrity: sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA==, + } + engines: { node: ">=4.0.0" } find-babel-config@2.0.0: - resolution: {integrity: sha512-dOKT7jvF3hGzlW60Gc3ONox/0rRZ/tz7WCil0bqA1In/3I8f1BctpXahRnEKDySZqci7u+dqq93sZST9fOJpFw==} - engines: {node: '>=16.0.0'} + resolution: + { + integrity: sha512-dOKT7jvF3hGzlW60Gc3ONox/0rRZ/tz7WCil0bqA1In/3I8f1BctpXahRnEKDySZqci7u+dqq93sZST9fOJpFw==, + } + engines: { node: ">=16.0.0" } find-cache-dir@2.1.0: - resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==, + } + engines: { node: ">=6" } find-cache-dir@3.3.2: - resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==, + } + engines: { node: ">=8" } find-cache-dir@4.0.0: - resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==} - engines: {node: '>=14.16'} + resolution: + { + integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==, + } + engines: { node: ">=14.16" } find-replace@3.0.0: - resolution: {integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==, + } + engines: { node: ">=4.0.0" } find-root@1.1.0: - resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + resolution: + { + integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==, + } find-up@3.0.0: - resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==, + } + engines: { node: ">=6" } 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" } find-up@6.3.0: - resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } find-yarn-workspace-root2@1.2.16: - resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} + resolution: + { + integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==, + } find-yarn-workspace-root@2.0.0: - resolution: {integrity: sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==} + resolution: + { + integrity: sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==, + } firebase@9.23.0: - resolution: {integrity: sha512-/4lUVY0lUvBDIaeY1q6dUYhS8Sd18Qb9CgWkPZICUo9IXpJNCEagfNZXBBFCkMTTN5L5gx2Hjr27y21a9NzUcA==} + resolution: + { + integrity: sha512-/4lUVY0lUvBDIaeY1q6dUYhS8Sd18Qb9CgWkPZICUo9IXpJNCEagfNZXBBFCkMTTN5L5gx2Hjr27y21a9NzUcA==, + } flat-cache@3.2.0: - resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} - engines: {node: ^10.12.0 || >=12.0.0} + resolution: + { + integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==, + } + engines: { node: ^10.12.0 || >=12.0.0 } flat@5.0.2: - resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + resolution: + { + integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==, + } hasBin: true flatted@3.3.1: - resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} + resolution: + { + integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==, + } flexsearch@0.7.43: - resolution: {integrity: sha512-c5o/+Um8aqCSOXGcZoqZOm+NqtVwNsvVpWv6lfmSclU954O3wvQKxxK8zj74fPaSJbXpSLTs4PRhh+wnoCXnKg==} + resolution: + { + integrity: sha512-c5o/+Um8aqCSOXGcZoqZOm+NqtVwNsvVpWv6lfmSclU954O3wvQKxxK8zj74fPaSJbXpSLTs4PRhh+wnoCXnKg==, + } flow-enums-runtime@0.0.6: - resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==} + resolution: + { + integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==, + } flow-parser@0.156.0: - resolution: {integrity: sha512-OCE3oIixhOttaV4ahIGtxf9XfaDdxujiTnXuHu+0dvDVVDiSDJlQpgCWdDKqP0OHfFnxQKrjMamArDAXtrBtZw==} - engines: {node: '>=0.4.0'} - - flow-parser@0.206.0: - resolution: {integrity: sha512-HVzoK3r6Vsg+lKvlIZzaWNBVai+FXTX1wdYhz/wVlH13tb/gOdLXmlTqy6odmTBhT5UoWUbq0k8263Qhr9d88w==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-OCE3oIixhOttaV4ahIGtxf9XfaDdxujiTnXuHu+0dvDVVDiSDJlQpgCWdDKqP0OHfFnxQKrjMamArDAXtrBtZw==, + } + engines: { node: ">=0.4.0" } flow-parser@0.232.0: - resolution: {integrity: sha512-U8vcKyYdM+Kb0tPzfPJ5JyPMU0uXKwHxp0L6BcEc+wBlbTW9qRhOqV5DeGXclgclVvtqQNGEG8Strj/b6c/IxA==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-U8vcKyYdM+Kb0tPzfPJ5JyPMU0uXKwHxp0L6BcEc+wBlbTW9qRhOqV5DeGXclgclVvtqQNGEG8Strj/b6c/IxA==, + } + engines: { node: ">=0.4.0" } flow-remove-types@2.156.0: - resolution: {integrity: sha512-ivU28S1ycaVo5anxlXdIVlrmqLD81JWFADa6oUjyoQg0va4zSyZCp5OYco74VZi7nm42O/yTNv1Y5Byc7bJF1Q==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-ivU28S1ycaVo5anxlXdIVlrmqLD81JWFADa6oUjyoQg0va4zSyZCp5OYco74VZi7nm42O/yTNv1Y5Byc7bJF1Q==, + } + engines: { node: ">=4" } hasBin: true flow-remove-types@2.232.0: - resolution: {integrity: sha512-t7B6axPRmSGeWU1m2j+LOBocw9ORXcomoykfMoZedd8snGum3QQpzro3eQpDoutnqKRtJliAvX6PJtFCNEjpMQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-t7B6axPRmSGeWU1m2j+LOBocw9ORXcomoykfMoZedd8snGum3QQpzro3eQpDoutnqKRtJliAvX6PJtFCNEjpMQ==, + } + engines: { node: ">=4" } hasBin: true fn.name@1.1.0: - resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==} + resolution: + { + integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==, + } focus-trap@6.9.4: - resolution: {integrity: sha512-v2NTsZe2FF59Y+sDykKY+XjqZ0cPfhq/hikWVL88BqLivnNiEffAsac6rP6H45ff9wG9LL5ToiDqrLEP9GX9mw==} + resolution: + { + integrity: sha512-v2NTsZe2FF59Y+sDykKY+XjqZ0cPfhq/hikWVL88BqLivnNiEffAsac6rP6H45ff9wG9LL5ToiDqrLEP9GX9mw==, + } focus-visible@5.2.0: - resolution: {integrity: sha512-Rwix9pBtC1Nuy5wysTmKy+UjbDJpIfg8eHjw0rjZ1mX4GNLz1Bmd16uDpI3Gk1i70Fgcs8Csg2lPm8HULFg9DQ==} + resolution: + { + integrity: sha512-Rwix9pBtC1Nuy5wysTmKy+UjbDJpIfg8eHjw0rjZ1mX4GNLz1Bmd16uDpI3Gk1i70Fgcs8Csg2lPm8HULFg9DQ==, + } follow-redirects@1.15.6: - resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==, + } + engines: { node: ">=4.0" } fontfaceobserver@2.3.0: - resolution: {integrity: sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==} + resolution: + { + integrity: sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==, + } for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + resolution: + { + integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, + } for-in@0.1.8: - resolution: {integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==, + } + engines: { node: ">=0.10.0" } 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" } for-own@1.0.0: - resolution: {integrity: sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==, + } + engines: { node: ">=0.10.0" } foreach@2.0.6: - resolution: {integrity: sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==} + resolution: + { + integrity: sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==, + } foreground-child@2.0.0: - resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==, + } + engines: { node: ">=8.0.0" } foreground-child@3.1.1: - resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==, + } + engines: { node: ">=14" } forever-agent@0.6.1: - resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} + resolution: + { + integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==, + } fork-ts-checker-webpack-plugin@6.5.3: - resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} - engines: {node: '>=10', yarn: '>=1.0.0'} - peerDependencies: - eslint: '>= 6' - typescript: '>= 2.7' - vue-template-compiler: '*' - webpack: '>= 4' + resolution: + { + integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==, + } + engines: { node: ">=10", yarn: ">=1.0.0" } + peerDependencies: + eslint: ">= 6" + typescript: ">= 2.7" + vue-template-compiler: "*" + webpack: ">= 4" peerDependenciesMeta: eslint: optional: true @@ -20450,60 +29477,99 @@ packages: optional: true fork-ts-checker-webpack-plugin@8.0.0: - resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} - engines: {node: '>=12.13.0', yarn: '>=1.0.0'} + resolution: + { + integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==, + } + engines: { node: ">=12.13.0", yarn: ">=1.0.0" } peerDependencies: - typescript: '>3.6.0' + typescript: ">3.6.0" webpack: ^5.11.0 form-data@2.3.3: - resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} - engines: {node: '>= 0.12'} + resolution: + { + integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==, + } + engines: { node: ">= 0.12" } form-data@2.5.1: - resolution: {integrity: sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==} - engines: {node: '>= 0.12'} + resolution: + { + integrity: sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==, + } + engines: { node: ">= 0.12" } form-data@3.0.1: - resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==, + } + engines: { node: ">= 6" } form-data@4.0.0: - resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==, + } + engines: { node: ">= 6" } formdata-polyfill@4.0.10: - resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} - engines: {node: '>=12.20.0'} + resolution: + { + integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==, + } + engines: { node: ">=12.20.0" } formidable@1.2.6: - resolution: {integrity: sha512-KcpbcpuLNOwrEjnbpMC0gS+X8ciDoZE1kkqzat4a8vrprf+s9pKNQ/QIwWfbfs4ltgmFl3MD177SNTkve3BwGQ==} - deprecated: 'Please upgrade to latest, formidable@v2 or formidable@v3! Check these notes: https://bit.ly/2ZEqIau' + resolution: + { + integrity: sha512-KcpbcpuLNOwrEjnbpMC0gS+X8ciDoZE1kkqzat4a8vrprf+s9pKNQ/QIwWfbfs4ltgmFl3MD177SNTkve3BwGQ==, + } + deprecated: "Please upgrade to latest, formidable@v2 or formidable@v3! Check these notes: https://bit.ly/2ZEqIau" formidable@2.1.2: - resolution: {integrity: sha512-CM3GuJ57US06mlpQ47YcunuUZ9jpm8Vx+P2CGt2j7HpgkKZO/DJYQ0Bobim8G6PFQmK5lOqOOdUXboU+h73A4g==} + resolution: + { + integrity: sha512-CM3GuJ57US06mlpQ47YcunuUZ9jpm8Vx+P2CGt2j7HpgkKZO/DJYQ0Bobim8G6PFQmK5lOqOOdUXboU+h73A4g==, + } forwarded@0.2.0: - resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==, + } + engines: { node: ">= 0.6" } fp-ts@2.1.1: - resolution: {integrity: sha512-YcWhMdDCFCja0MmaDroTgNu+NWWrrnUEn92nvDgrtVy9Z71YFnhNVIghoHPt8gs82ijoMzFGeWKvArbyICiJgw==} + resolution: + { + integrity: sha512-YcWhMdDCFCja0MmaDroTgNu+NWWrrnUEn92nvDgrtVy9Z71YFnhNVIghoHPt8gs82ijoMzFGeWKvArbyICiJgw==, + } fp-ts@2.16.5: - resolution: {integrity: sha512-N8T8PwMSeTKKtkm9lkj/zSTAnPC/aJIIrQhnHxxkL0KLsRCNUPANksJOlMXxcKKCo7H1ORP3No9EMD+fP0tsdA==} + resolution: + { + integrity: sha512-N8T8PwMSeTKKtkm9lkj/zSTAnPC/aJIIrQhnHxxkL0KLsRCNUPANksJOlMXxcKKCo7H1ORP3No9EMD+fP0tsdA==, + } fraction.js@4.3.7: - resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + resolution: + { + integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==, + } framer-motion@11.3.28: - resolution: {integrity: sha512-dqhoawipEAjqdv32zbv72sOMJZjol7dROWn7t/FOq23WXJ40O4OUybgnO2ldnuS+3YquSn8xO/KKRavZ+TBVOQ==} + resolution: + { + integrity: sha512-dqhoawipEAjqdv32zbv72sOMJZjol7dROWn7t/FOq23WXJ40O4OUybgnO2ldnuS+3YquSn8xO/KKRavZ+TBVOQ==, + } peerDependencies: - '@emotion/is-prop-valid': '*' + "@emotion/is-prop-valid": "*" react: ^18.0.0 react-dom: ^18.0.0 peerDependenciesMeta: - '@emotion/is-prop-valid': + "@emotion/is-prop-valid": optional: true react: optional: true @@ -20511,1450 +29577,2642 @@ packages: optional: true freeport-async@2.0.0: - resolution: {integrity: sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==, + } + engines: { node: ">=8" } fresh@0.5.2: - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==, + } + engines: { node: ">= 0.6" } from@0.1.7: - resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==} + resolution: + { + integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==, + } fromentries@1.3.2: - resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==} + resolution: + { + integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==, + } fs-constants@1.0.0: - resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + resolution: + { + integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==, + } 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.1.1: - resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} - engines: {node: '>=14.14'} + resolution: + { + integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==, + } + engines: { node: ">=14.14" } 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@4.0.3: - resolution: {integrity: sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==} + resolution: + { + integrity: sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==, + } fs-extra@7.0.1: - resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} - engines: {node: '>=6 <7 || >=8'} + resolution: + { + integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==, + } + engines: { node: ">=6 <7 || >=8" } fs-extra@8.1.0: - resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} - engines: {node: '>=6 <7 || >=8'} + resolution: + { + integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==, + } + engines: { node: ">=6 <7 || >=8" } fs-extra@9.0.0: - resolution: {integrity: sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==, + } + engines: { node: ">=10" } 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-minipass@1.2.7: - resolution: {integrity: sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==} + resolution: + { + integrity: sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==, + } fs-minipass@2.1.0: - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==, + } + engines: { node: ">= 8" } + + fs-minipass@3.0.3: + resolution: + { + integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } fs-monkey@1.0.5: - resolution: {integrity: sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==} + resolution: + { + integrity: sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==, + } fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + resolution: + { + integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, + } fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} + resolution: + { + integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==, + } fsevents@2.3.2: - resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + resolution: + { + integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, + } + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } os: [darwin] 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] fstream@1.0.12: - resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==} - engines: {node: '>=0.6'} + resolution: + { + integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==, + } + engines: { node: ">=0.6" } deprecated: This package is no longer supported. function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + resolution: + { + integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, + } function.prototype.name@1.1.6: - resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==, + } + engines: { node: ">= 0.4" } functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + resolution: + { + integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, + } funpermaproxy@1.1.0: - resolution: {integrity: sha512-2Sp1hWuO8m5fqeFDusyhKqYPT+7rGLw34N3qonDcdRP8+n7M7Gl/yKp/q7oCxnnJ6pWCectOmLFJpsMU/++KrQ==} - engines: {node: '>=8.3.0'} + resolution: + { + integrity: sha512-2Sp1hWuO8m5fqeFDusyhKqYPT+7rGLw34N3qonDcdRP8+n7M7Gl/yKp/q7oCxnnJ6pWCectOmLFJpsMU/++KrQ==, + } + engines: { node: ">=8.3.0" } fuse.js@6.6.2: - resolution: {integrity: sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==, + } + engines: { node: ">=10" } fwd-stream@1.0.4: - resolution: {integrity: sha512-q2qaK2B38W07wfPSQDKMiKOD5Nzv2XyuvQlrmh1q0pxyHNanKHq8lwQ6n9zHucAwA5EbzRJKEgds2orn88rYTg==} + resolution: + { + integrity: sha512-q2qaK2B38W07wfPSQDKMiKOD5Nzv2XyuvQlrmh1q0pxyHNanKHq8lwQ6n9zHucAwA5EbzRJKEgds2orn88rYTg==, + } fx@34.0.0: - resolution: {integrity: sha512-/fZih3/WLsrtlaj2mahjWxAmyuikmcl3D5kKPqLtFmEilLsy9wp0+/vEmfvYXXhwJc+ajtCFDCf+yttXmPMHSQ==} + resolution: + { + integrity: sha512-/fZih3/WLsrtlaj2mahjWxAmyuikmcl3D5kKPqLtFmEilLsy9wp0+/vEmfvYXXhwJc+ajtCFDCf+yttXmPMHSQ==, + } hasBin: true 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.4: - resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==, + } + 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-npm-tarball-url@2.1.0: - resolution: {integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==} - engines: {node: '>=12.17'} + resolution: + { + integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==, + } + engines: { node: ">=12.17" } get-own-enumerable-property-symbols@3.0.2: - resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} + resolution: + { + integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==, + } get-package-type@0.1.0: - resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==, + } + engines: { node: ">=8.0.0" } get-port@3.2.0: - resolution: {integrity: sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==, + } + engines: { node: ">=4" } get-port@5.1.1: - resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==, + } + engines: { node: ">=8" } get-stream@3.0.0: - resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==, + } + engines: { node: ">=4" } get-stream@4.1.0: - resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==, + } + engines: { node: ">=6" } get-stream@5.2.0: - resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==, + } + engines: { node: ">=8" } 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.0.2: - resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==, + } + engines: { node: ">= 0.4" } get-tsconfig@4.7.5: - resolution: {integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==} + resolution: + { + integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==, + } get-value@2.0.6: - resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==, + } + engines: { node: ">=0.10.0" } getenv@1.0.0: - resolution: {integrity: sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==, + } + engines: { node: ">=6" } getpass@0.1.7: - resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} + resolution: + { + integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==, + } giget@1.2.3: - resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==} + resolution: + { + integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==, + } hasBin: true git-raw-commits@2.0.11: - resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==, + } + engines: { node: ">=10" } hasBin: true git-up@7.0.0: - resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} + resolution: + { + integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==, + } git-url-parse@13.1.1: - resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==} + resolution: + { + integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==, + } github-from-package@0.0.0: - resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} + resolution: + { + integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==, + } github-slugger@1.4.0: - resolution: {integrity: sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==} + resolution: + { + integrity: sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==, + } github-slugger@1.5.0: - resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} + resolution: + { + integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==, + } 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-to-regexp@0.4.1: - resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} + resolution: + { + integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==, + } glob@10.3.12: - resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==, + } + engines: { node: ">=16 || 14 >=14.17" } hasBin: true glob@6.0.4: - resolution: {integrity: sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==} + resolution: + { + integrity: sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==, + } deprecated: Glob versions prior to v9 are no longer supported glob@7.0.6: - resolution: {integrity: sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==} + resolution: + { + integrity: sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==, + } deprecated: Glob versions prior to v9 are no longer supported glob@7.1.6: - resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} + resolution: + { + integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==, + } deprecated: Glob versions prior to v9 are no longer supported glob@7.1.7: - resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} + resolution: + { + integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==, + } deprecated: Glob versions prior to v9 are no longer supported 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 glob@8.1.0: - resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==, + } + engines: { node: ">=12" } deprecated: Glob versions prior to v9 are no longer supported glob@9.3.5: - resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==, + } + engines: { node: ">=16 || 14 >=14.17" } global-agent@3.0.0: - resolution: {integrity: sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==} - engines: {node: '>=10.0'} + resolution: + { + integrity: sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==, + } + engines: { node: ">=10.0" } global-dirs@0.1.1: - resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==, + } + engines: { node: ">=4" } global-modules@2.0.0: - resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==, + } + engines: { node: ">=6" } global-prefix@3.0.0: - resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==, + } + engines: { node: ">=6" } global@4.4.0: - resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==} + resolution: + { + integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==, + } globals-docs@2.4.1: - resolution: {integrity: sha512-qpPnUKkWnz8NESjrCvnlGklsgiQzlq+rcCxoG5uNQ+dNA7cFMCmn231slLAwS2N/PlkzZ3COL8CcS10jXmLHqg==} + resolution: + { + integrity: sha512-qpPnUKkWnz8NESjrCvnlGklsgiQzlq+rcCxoG5uNQ+dNA7cFMCmn231slLAwS2N/PlkzZ3COL8CcS10jXmLHqg==, + } 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@13.24.0: - resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==, + } + engines: { node: ">=8" } 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" } globalyzer@0.1.0: - resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} + resolution: + { + integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==, + } globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, + } + engines: { node: ">=10" } globby@12.2.0: - resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } 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 } globby@6.1.0: - resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==, + } + engines: { node: ">=0.10.0" } globjoin@0.1.4: - resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==} + resolution: + { + integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==, + } globrex@0.1.2: - resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} + resolution: + { + integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==, + } gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + resolution: + { + integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, + } got@11.8.6: - resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} - engines: {node: '>=10.19.0'} + resolution: + { + integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==, + } + engines: { node: ">=10.19.0" } got@9.6.0: - resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==, + } + engines: { node: ">=8.6" } 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-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@15.8.0: - resolution: {integrity: sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==} - engines: {node: '>= 10.x'} + resolution: + { + integrity: sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==, + } + engines: { node: ">= 10.x" } graphql@16.8.1: - resolution: {integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==} - engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} + resolution: + { + integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==, + } + engines: { node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0 } gray-matter@4.0.3: - resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==, + } + engines: { node: ">=6.0" } gunzip-maybe@1.4.2: - resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==} + resolution: + { + integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==, + } hasBin: true gzip-size@6.0.0: - resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==, + } + engines: { node: ">=10" } handle-thing@2.0.1: - resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} + resolution: + { + integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==, + } handlebars@4.7.8: - resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} - engines: {node: '>=0.4.7'} + resolution: + { + integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==, + } + engines: { node: ">=0.4.7" } hasBin: true har-schema@2.0.0: - resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==, + } + engines: { node: ">=4" } har-validator@5.1.5: - resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==, + } + engines: { node: ">=6" } deprecated: this library is no longer supported hard-rejection@2.1.0: - resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==, + } + engines: { node: ">=6" } harmony-reflect@1.6.2: - resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} + resolution: + { + integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==, + } has-ansi@2.0.0: - resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==, + } + engines: { node: ">=0.10.0" } has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + resolution: + { + integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, + } has-flag@2.0.0: - resolution: {integrity: sha512-P+1n3MnwjR/Epg9BBo1KT8qbye2g2Ou4sFumihwt6I4tsUX7jnLcX4BTOSKg/B1ZrIYMN9FcEnG4x5a7NB8Eng==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-P+1n3MnwjR/Epg9BBo1KT8qbye2g2Ou4sFumihwt6I4tsUX7jnLcX4BTOSKg/B1ZrIYMN9FcEnG4x5a7NB8Eng==, + } + engines: { node: ">=0.10.0" } has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, + } + engines: { node: ">=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.0.3: - resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==, + } + engines: { node: ">= 0.4" } has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, + } + 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" } hash-base@3.0.4: - resolution: {integrity: sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow==, + } + engines: { node: ">=4" } hash-base@3.1.0: - resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==, + } + engines: { node: ">=4" } hash-obj@4.0.0: - resolution: {integrity: sha512-FwO1BUVWkyHasWDW4S8o0ssQXjvyghLV2rfVhnN36b2bbcj45eGiuzdn9XOvOpjV3TKQD7Gm2BWNXdE9V4KKYg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-FwO1BUVWkyHasWDW4S8o0ssQXjvyghLV2rfVhnN36b2bbcj45eGiuzdn9XOvOpjV3TKQD7Gm2BWNXdE9V4KKYg==, + } + engines: { node: ">=12" } hash-sum@1.0.2: - resolution: {integrity: sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==} + resolution: + { + integrity: sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==, + } hash-sum@2.0.0: - resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==} + resolution: + { + integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==, + } hash.js@1.1.3: - resolution: {integrity: sha512-/UETyP0W22QILqS+6HowevwhEFJ3MBJnwTf75Qob9Wz9t0DPuisL8kW8YZMK62dHAKE1c1p+gY1TtOLY+USEHA==} + resolution: + { + integrity: sha512-/UETyP0W22QILqS+6HowevwhEFJ3MBJnwTf75Qob9Wz9t0DPuisL8kW8YZMK62dHAKE1c1p+gY1TtOLY+USEHA==, + } hash.js@1.1.7: - resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} + resolution: + { + integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==, + } hasha@5.2.2: - resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==, + } + engines: { node: ">=8" } hasown@2.0.2: - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==, + } + engines: { node: ">= 0.4" } hast-util-from-dom@5.0.0: - resolution: {integrity: sha512-d6235voAp/XR3Hh5uy7aGLbM3S4KamdW0WEgOaU1YoewnuYw4HXb5eRtv9g65m/RFGEfUY1Mw4UqCc5Y8L4Stg==} + resolution: + { + integrity: sha512-d6235voAp/XR3Hh5uy7aGLbM3S4KamdW0WEgOaU1YoewnuYw4HXb5eRtv9g65m/RFGEfUY1Mw4UqCc5Y8L4Stg==, + } hast-util-from-html-isomorphic@2.0.0: - resolution: {integrity: sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw==} + resolution: + { + integrity: sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw==, + } hast-util-from-html@2.0.1: - resolution: {integrity: sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g==} + resolution: + { + integrity: sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g==, + } hast-util-from-parse5@7.1.2: - resolution: {integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==} + resolution: + { + integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==, + } hast-util-from-parse5@8.0.1: - resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==} + resolution: + { + integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==, + } 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@3.1.1: - resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==} + resolution: + { + integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==, + } hast-util-parse-selector@4.0.0: - resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} + resolution: + { + integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==, + } hast-util-raw@7.2.3: - resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==} + resolution: + { + integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==, + } hast-util-raw@9.0.3: - resolution: {integrity: sha512-ICWvVOF2fq4+7CMmtCPD5CM4QKjPbHpPotE6+8tDooV0ZuyJVUzHsrNX+O5NaRbieTf0F7FfeBOMAwi6Td0+yQ==} + resolution: + { + integrity: sha512-ICWvVOF2fq4+7CMmtCPD5CM4QKjPbHpPotE6+8tDooV0ZuyJVUzHsrNX+O5NaRbieTf0F7FfeBOMAwi6Td0+yQ==, + } hast-util-sanitize@4.1.0: - resolution: {integrity: sha512-Hd9tU0ltknMGRDv+d6Ro/4XKzBqQnP/EZrpiTbpFYfXv/uOhWeKc+2uajcbEvAEH98VZd7eII2PiXm13RihnLw==} + resolution: + { + integrity: sha512-Hd9tU0ltknMGRDv+d6Ro/4XKzBqQnP/EZrpiTbpFYfXv/uOhWeKc+2uajcbEvAEH98VZd7eII2PiXm13RihnLw==, + } hast-util-to-estree@2.3.3: - resolution: {integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==} + resolution: + { + integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==, + } hast-util-to-html@8.0.4: - resolution: {integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==} + resolution: + { + integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==, + } hast-util-to-parse5@7.1.0: - resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==} + resolution: + { + integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==, + } hast-util-to-parse5@8.0.0: - resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} + resolution: + { + integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==, + } hast-util-to-text@4.0.2: - resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} + resolution: + { + integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==, + } hast-util-whitespace@2.0.1: - resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==} + resolution: + { + integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==, + } hastscript@7.2.0: - resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==} + resolution: + { + integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==, + } hastscript@8.0.0: - resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==} + resolution: + { + integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==, + } he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + resolution: + { + integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==, + } hasBin: true headers-polyfill@4.0.3: - resolution: {integrity: sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==} + resolution: + { + integrity: sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==, + } heap@0.2.7: - resolution: {integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==} + resolution: + { + integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==, + } hermes-estree@0.14.0: - resolution: {integrity: sha512-L6M67+0/eSEbt6Ha2XOBFXL++7MR34EOJMgm+j7YCaI4L/jZqrVAg6zYQKzbs1ZCFDLvEQpOgLlapTX4gpFriA==} + resolution: + { + integrity: sha512-L6M67+0/eSEbt6Ha2XOBFXL++7MR34EOJMgm+j7YCaI4L/jZqrVAg6zYQKzbs1ZCFDLvEQpOgLlapTX4gpFriA==, + } - hermes-estree@0.15.0: - resolution: {integrity: sha512-lLYvAd+6BnOqWdnNbP/Q8xfl8LOGw4wVjfrNd9Gt8eoFzhNBRVD95n4l2ksfMVOoxuVyegs85g83KS9QOsxbVQ==} + hermes-estree@0.19.1: + resolution: + { + integrity: sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g==, + } hermes-estree@0.20.1: - resolution: {integrity: sha512-SQpZK4BzR48kuOg0v4pb3EAGNclzIlqMj3Opu/mu7bbAoFw6oig6cEt/RAi0zTFW/iW6Iz9X9ggGuZTAZ/yZHg==} + resolution: + { + integrity: sha512-SQpZK4BzR48kuOg0v4pb3EAGNclzIlqMj3Opu/mu7bbAoFw6oig6cEt/RAi0zTFW/iW6Iz9X9ggGuZTAZ/yZHg==, + } + + hermes-estree@0.23.1: + resolution: + { + integrity: sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==, + } hermes-parser@0.14.0: - resolution: {integrity: sha512-pt+8uRiJhVlErY3fiXB3gKhZ72RxM6E1xRMpvfZ5n6Z5TQKQQXKorgRCRzoe02mmvLKBJFP5nPDGv75MWAgCTw==} + resolution: + { + integrity: sha512-pt+8uRiJhVlErY3fiXB3gKhZ72RxM6E1xRMpvfZ5n6Z5TQKQQXKorgRCRzoe02mmvLKBJFP5nPDGv75MWAgCTw==, + } - hermes-parser@0.15.0: - resolution: {integrity: sha512-Q1uks5rjZlE9RjMMjSUCkGrEIPI5pKJILeCtK1VmTj7U4pf3wVPoo+cxfu+s4cBAPy2JzikIIdCZgBoR6x7U1Q==} + hermes-parser@0.19.1: + resolution: + { + integrity: sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A==, + } hermes-parser@0.20.1: - resolution: {integrity: sha512-BL5P83cwCogI8D7rrDCgsFY0tdYUtmFP9XaXtl2IQjC+2Xo+4okjfXintlTxcIwl4qeGddEl28Z11kbVIw0aNA==} + resolution: + { + integrity: sha512-BL5P83cwCogI8D7rrDCgsFY0tdYUtmFP9XaXtl2IQjC+2Xo+4okjfXintlTxcIwl4qeGddEl28Z11kbVIw0aNA==, + } + + hermes-parser@0.23.1: + resolution: + { + integrity: sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==, + } hermes-profile-transformer@0.0.6: - resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==, + } + engines: { node: ">=8" } hexoid@1.0.0: - resolution: {integrity: sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==, + } + engines: { node: ">=8" } hi-base32@0.5.1: - resolution: {integrity: sha512-EmBBpvdYh/4XxsnUybsPag6VikPYnN30td+vQk+GI3qpahVEG9+gTkG0aXVxTjBqQ5T6ijbWIu77O+C5WFWsnA==} + resolution: + { + integrity: sha512-EmBBpvdYh/4XxsnUybsPag6VikPYnN30td+vQk+GI3qpahVEG9+gTkG0aXVxTjBqQ5T6ijbWIu77O+C5WFWsnA==, + } highlight.js@10.7.3: - resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} + resolution: + { + integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==, + } highlight.js@11.9.0: - resolution: {integrity: sha512-fJ7cW7fQGCYAkgv4CPfwFHrfd/cLS4Hau96JuJ+ZTOWhjnhoeN1ub1tFmALm/+lW5z4WCAuAV9bm05AP0mS6Gw==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-fJ7cW7fQGCYAkgv4CPfwFHrfd/cLS4Hau96JuJ+ZTOWhjnhoeN1ub1tFmALm/+lW5z4WCAuAV9bm05AP0mS6Gw==, + } + engines: { node: ">=12.0.0" } history@4.10.1: - resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==} + resolution: + { + integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==, + } hmac-drbg@1.0.1: - resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} + resolution: + { + integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==, + } hoist-non-react-statics@3.3.2: - resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + resolution: + { + integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==, + } hoopy@0.1.4: - resolution: {integrity: sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==} - engines: {node: '>= 6.0.0'} + resolution: + { + integrity: sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==, + } + engines: { node: ">= 6.0.0" } hosted-git-info@2.8.9: - resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + resolution: + { + integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==, + } hosted-git-info@3.0.8: - resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==, + } + engines: { node: ">=10" } hosted-git-info@4.1.0: - resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==, + } + engines: { node: ">=10" } hpack.js@2.1.6: - resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} + resolution: + { + integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==, + } html-encoding-sniffer@2.0.1: - resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==, + } + engines: { node: ">=10" } html-encoding-sniffer@3.0.0: - resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==, + } + engines: { node: ">=12" } html-entities@2.5.2: - resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} + resolution: + { + integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==, + } html-escaper@2.0.2: - resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} + resolution: + { + integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==, + } html-minifier-terser@6.1.0: - resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==, + } + engines: { node: ">=12" } hasBin: true html-parse-stringify@3.0.1: - resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==} + resolution: + { + integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==, + } html-tags@3.3.1: - resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==, + } + engines: { node: ">=8" } html-to-react@1.7.0: - resolution: {integrity: sha512-b5HTNaTGyOj5GGIMiWVr1k57egAZ/vGy0GGefnCQ1VW5hu9+eku8AXHtf2/DeD95cj/FKBKYa1J7SWBOX41yUQ==} + resolution: + { + integrity: sha512-b5HTNaTGyOj5GGIMiWVr1k57egAZ/vGy0GGefnCQ1VW5hu9+eku8AXHtf2/DeD95cj/FKBKYa1J7SWBOX41yUQ==, + } peerDependencies: react: ^0.13.0 || ^0.14.0 || >=15 html-void-elements@2.0.1: - resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==} + resolution: + { + integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==, + } html-void-elements@3.0.0: - resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} + resolution: + { + integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==, + } html-webpack-plugin@5.6.0: - resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==, + } + engines: { node: ">=10.13.0" } peerDependencies: - '@rspack/core': 0.x || 1.x + "@rspack/core": 0.x || 1.x webpack: ^5.20.0 peerDependenciesMeta: - '@rspack/core': + "@rspack/core": optional: true webpack: optional: true htmlparser2@6.1.0: - resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} + resolution: + { + integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==, + } htmlparser2@9.1.0: - resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==} + resolution: + { + integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==, + } http-assert@1.5.0: - resolution: {integrity: sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==, + } + engines: { node: ">= 0.8" } http-cache-semantics@4.1.1: - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + resolution: + { + integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==, + } http-deceiver@1.2.7: - resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} + resolution: + { + integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==, + } http-errors@1.6.3: - resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==, + } + engines: { node: ">= 0.6" } http-errors@1.7.2: - resolution: {integrity: sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==, + } + engines: { node: ">= 0.6" } http-errors@1.8.1: - resolution: {integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==, + } + engines: { node: ">= 0.6" } 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-https@1.0.0: - resolution: {integrity: sha512-o0PWwVCSp3O0wS6FvNr6xfBCHgt0m1tvPLFOCc2iFDKTRAXhB7m8klDf7ErowFH8POa6dVdGatKU5I1YYwzUyg==} + resolution: + { + integrity: sha512-o0PWwVCSp3O0wS6FvNr6xfBCHgt0m1tvPLFOCc2iFDKTRAXhB7m8klDf7ErowFH8POa6dVdGatKU5I1YYwzUyg==, + } http-parser-js@0.5.8: - resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} + resolution: + { + integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==, + } http-proxy-agent@4.0.1: - resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==, + } + engines: { node: ">= 6" } http-proxy-agent@5.0.0: - resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==, + } + engines: { node: ">= 6" } http-proxy-middleware@2.0.6: - resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==, + } + engines: { node: ">=12.0.0" } peerDependencies: - '@types/express': ^4.17.13 + "@types/express": ^4.17.13 peerDependenciesMeta: - '@types/express': + "@types/express": optional: true http-proxy@1.18.1: - resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==, + } + engines: { node: ">=8.0.0" } http-server@14.1.1: - resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==, + } + engines: { node: ">=12" } hasBin: true http-signature@1.2.0: - resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==} - engines: {node: '>=0.8', npm: '>=1.3.7'} + resolution: + { + integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==, + } + engines: { node: ">=0.8", npm: ">=1.3.7" } http2-wrapper@1.0.3: - resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} - engines: {node: '>=10.19.0'} + resolution: + { + integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==, + } + engines: { node: ">=10.19.0" } https-browserify@1.0.0: - resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==} + resolution: + { + integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==, + } https-proxy-agent@4.0.0: - resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} - engines: {node: '>= 6.0.0'} + resolution: + { + integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==, + } + engines: { node: ">= 6.0.0" } https-proxy-agent@5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==, + } + engines: { node: ">= 6" } human-id@1.0.2: - resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} + resolution: + { + integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==, + } 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@4.3.1: - resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} - engines: {node: '>=14.18.0'} + resolution: + { + integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==, + } + engines: { node: ">=14.18.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" } humanize-duration@3.31.0: - resolution: {integrity: sha512-fRrehgBG26NNZysRlTq1S+HPtDpp3u+Jzdc/d5A4cEzOD86YLAkDaJyJg8krSdCi7CJ+s7ht3fwRj8Dl+Btd0w==} + resolution: + { + integrity: sha512-fRrehgBG26NNZysRlTq1S+HPtDpp3u+Jzdc/d5A4cEzOD86YLAkDaJyJg8krSdCi7CJ+s7ht3fwRj8Dl+Btd0w==, + } humanize-ms@1.2.1: - resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} + resolution: + { + integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==, + } hyphenate-style-name@1.0.4: - resolution: {integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==} + resolution: + { + integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==, + } i18next@20.6.1: - resolution: {integrity: sha512-yCMYTMEJ9ihCwEQQ3phLo7I/Pwycf8uAx+sRHwwk5U9Aui/IZYgQRyMqXafQOw5QQ7DM1Z+WyEXWIqSuJHhG2A==} + resolution: + { + integrity: sha512-yCMYTMEJ9ihCwEQQ3phLo7I/Pwycf8uAx+sRHwwk5U9Aui/IZYgQRyMqXafQOw5QQ7DM1Z+WyEXWIqSuJHhG2A==, + } i18next@23.10.1: - resolution: {integrity: sha512-NDiIzFbcs3O9PXpfhkjyf7WdqFn5Vq6mhzhtkXzj51aOcNuPNcTwuYNuXCpHsanZGHlHKL35G7huoFeVic1hng==} + resolution: + { + integrity: sha512-NDiIzFbcs3O9PXpfhkjyf7WdqFn5Vq6mhzhtkXzj51aOcNuPNcTwuYNuXCpHsanZGHlHKL35G7huoFeVic1hng==, + } icon-sdk-js@1.5.2: - resolution: {integrity: sha512-fUYsFGFWuftxy3Ogsjy4kGUsxgH4DSdvN446BvwzaogXwYkOpzpLgZFWnQyrfuZxBSRVRzGtErlfDoMj4TOGGQ==} - engines: {node: '>=18.0.0', yarn: ^1.22.10} + resolution: + { + integrity: sha512-fUYsFGFWuftxy3Ogsjy4kGUsxgH4DSdvN446BvwzaogXwYkOpzpLgZFWnQyrfuZxBSRVRzGtErlfDoMj4TOGGQ==, + } + engines: { node: ">=18.0.0", yarn: ^1.22.10 } iconv-corefoundation@1.1.7: - resolution: {integrity: sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ==} - engines: {node: ^8.11.2 || >=10} + resolution: + { + integrity: sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ==, + } + engines: { node: ^8.11.2 || >=10 } os: [darwin] 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" } icss-utils@5.1.0: - resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} - engines: {node: ^10 || ^12 || >= 14} + resolution: + { + integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==, + } + engines: { node: ^10 || ^12 || >= 14 } peerDependencies: postcss: ^8.1.0 idb-keyval@6.2.1: - resolution: {integrity: sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==} + resolution: + { + integrity: sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==, + } idb@7.0.1: - resolution: {integrity: sha512-UUxlE7vGWK5RfB/fDwEGgRf84DY/ieqNha6msMV99UsEMQhJ1RwbCd8AYBj3QMgnE3VZnfQvm4oKVCJTYlqIgg==} + resolution: + { + integrity: sha512-UUxlE7vGWK5RfB/fDwEGgRf84DY/ieqNha6msMV99UsEMQhJ1RwbCd8AYBj3QMgnE3VZnfQvm4oKVCJTYlqIgg==, + } idb@7.1.1: - resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==} + resolution: + { + integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==, + } identity-obj-proxy@3.0.0: - resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==, + } + engines: { node: ">=4" } idna-uts46-hx@2.3.1: - resolution: {integrity: sha512-PWoF9Keq6laYdIRwwCdhTPl60xRqAloYNMQLiyUnG42VjT53oW07BXIRM+NK7eQjzXjAk2gUvX9caRxlnF9TAA==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-PWoF9Keq6laYdIRwwCdhTPl60xRqAloYNMQLiyUnG42VjT53oW07BXIRM+NK7eQjzXjAk2gUvX9caRxlnF9TAA==, + } + engines: { node: ">=4.0.0" } ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + resolution: + { + integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, + } ignore-by-default@1.0.1: - resolution: {integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==} + resolution: + { + integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==, + } ignore@5.3.1: - resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==, + } + engines: { node: ">= 4" } image-size@1.1.1: - resolution: {integrity: sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==} - engines: {node: '>=16.x'} + resolution: + { + integrity: sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==, + } + engines: { node: ">=16.x" } hasBin: true immediate@3.0.6: - resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} + resolution: + { + integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==, + } immer@10.0.3: - resolution: {integrity: sha512-pwupu3eWfouuaowscykeckFmVTpqbzW+rXFCX8rQLkZzM9ftBmU/++Ra+o+L27mz03zJTlyV4UUr+fdKNffo4A==} + resolution: + { + integrity: sha512-pwupu3eWfouuaowscykeckFmVTpqbzW+rXFCX8rQLkZzM9ftBmU/++Ra+o+L27mz03zJTlyV4UUr+fdKNffo4A==, + } immer@9.0.21: - resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==} + resolution: + { + integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==, + } import-fresh@2.0.0: - resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==, + } + engines: { node: ">=4" } 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" } import-in-the-middle@1.10.0: - resolution: {integrity: sha512-Z1jumVdF2GwnnYfM0a/y2ts7mZbwFMgt5rRuVmLgobgahC6iKgN5MBuXjzfTIOUpq5LSU10vJIPpVKe0X89fIw==} + resolution: + { + integrity: sha512-Z1jumVdF2GwnnYfM0a/y2ts7mZbwFMgt5rRuVmLgobgahC6iKgN5MBuXjzfTIOUpq5LSU10vJIPpVKe0X89fIw==, + } import-in-the-middle@1.4.2: - resolution: {integrity: sha512-9WOz1Yh/cvO/p69sxRmhyQwrIGGSp7EIdcb+fFNVi7CzQGQB8U1/1XrKVSbEd/GNOAeM0peJtmi7+qphe7NvAw==} + resolution: + { + integrity: sha512-9WOz1Yh/cvO/p69sxRmhyQwrIGGSp7EIdcb+fFNVi7CzQGQB8U1/1XrKVSbEd/GNOAeM0peJtmi7+qphe7NvAw==, + } import-lazy@4.0.0: - resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==, + } + engines: { node: ">=8" } import-local@3.1.0: - resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==, + } + engines: { node: ">=8" } hasBin: true imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} + resolution: + { + integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, + } + engines: { node: ">=0.8.19" } indent-string@3.2.0: - resolution: {integrity: sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==, + } + engines: { node: ">=4" } 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" } indexof@0.0.1: - resolution: {integrity: sha512-i0G7hLJ1z0DE8dsqJa2rycj9dBmNKgXBvotXtZYXakU9oivfB9Uj2ZBC27qqef2U58/ZLwalxa1X/RDCdkHtVg==} + resolution: + { + integrity: sha512-i0G7hLJ1z0DE8dsqJa2rycj9dBmNKgXBvotXtZYXakU9oivfB9Uj2ZBC27qqef2U58/ZLwalxa1X/RDCdkHtVg==, + } infer-owner@1.0.4: - resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} + resolution: + { + integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==, + } inflation@2.1.0: - resolution: {integrity: sha512-t54PPJHG1Pp7VQvxyVCJ9mBbjG3Hqryges9bXoOO6GExCPa+//i/d5GSuFtpx3ALLd7lgIAur6zrIlBQyJuMlQ==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-t54PPJHG1Pp7VQvxyVCJ9mBbjG3Hqryges9bXoOO6GExCPa+//i/d5GSuFtpx3ALLd7lgIAur6zrIlBQyJuMlQ==, + } + engines: { node: ">= 0.8.0" } 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.3: - resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} + resolution: + { + integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==, + } inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + resolution: + { + integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, + } ini@1.3.8: - resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + resolution: + { + integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==, + } ini@3.0.1: - resolution: {integrity: sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + resolution: + { + integrity: sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==, + } + engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } injectpromise@1.0.0: - resolution: {integrity: sha512-qNq5wy4qX4uWHcVFOEU+RqZkoVG65FhvGkyDWbuBxILMjK6A1LFf5A1mgXZkD4nRx5FCorD81X/XvPKp/zVfPA==} + resolution: + { + integrity: sha512-qNq5wy4qX4uWHcVFOEU+RqZkoVG65FhvGkyDWbuBxILMjK6A1LFf5A1mgXZkD4nRx5FCorD81X/XvPKp/zVfPA==, + } inline-style-parser@0.1.1: - resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} + resolution: + { + integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==, + } inline-style-prefixer@6.0.4: - resolution: {integrity: sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg==} + resolution: + { + integrity: sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg==, + } inquirer@6.5.2: - resolution: {integrity: sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==, + } + engines: { node: ">=6.0.0" } int64-buffer@1.0.1: - resolution: {integrity: sha512-+3azY4pXrjAupJHU1V9uGERWlhoqNswJNji6aD/02xac7oxol508AsMC5lxKhEqyZeDFy3enq5OGWXF4u75hiw==} - engines: {node: '>= 4.5.0'} + resolution: + { + integrity: sha512-+3azY4pXrjAupJHU1V9uGERWlhoqNswJNji6aD/02xac7oxol508AsMC5lxKhEqyZeDFy3enq5OGWXF4u75hiw==, + } + engines: { node: ">= 4.5.0" } internal-ip@4.3.0: - resolution: {integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==, + } + engines: { node: ">=6" } internal-slot@1.0.7: - resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==, + } + engines: { node: ">= 0.4" } internmap@2.0.3: - resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==, + } + engines: { node: ">=12" } interpret@2.2.0: - resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==, + } + engines: { node: ">= 0.10" } intersection-observer@0.12.2: - resolution: {integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==} + resolution: + { + integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==, + } invariant@2.2.4: - resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} + resolution: + { + integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==, + } io-ts@2.0.1: - resolution: {integrity: sha512-RezD+WcCfW4VkMkEcQWL/Nmy/nqsWTvTYg7oUmTGzglvSSV2P9h2z1PVeREPFf0GWNzruYleAt1XCMQZSg1xxQ==} + resolution: + { + integrity: sha512-RezD+WcCfW4VkMkEcQWL/Nmy/nqsWTvTYg7oUmTGzglvSSV2P9h2z1PVeREPFf0GWNzruYleAt1XCMQZSg1xxQ==, + } peerDependencies: fp-ts: ^2.0.0 ioredis@5.3.2: - resolution: {integrity: sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==} - engines: {node: '>=12.22.0'} + resolution: + { + integrity: sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==, + } + engines: { node: ">=12.22.0" } ip-regex@2.1.0: - resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==, + } + engines: { node: ">=4" } ip@2.0.1: - resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} + resolution: + { + integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==, + } ipaddr.js@1.9.1: - resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==, + } + engines: { node: ">= 0.10" } ipaddr.js@2.1.0: - resolution: {integrity: sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==, + } + engines: { node: ">= 10" } is-absolute-url@3.0.3: - resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==, + } + engines: { node: ">=8" } 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@1.0.4: - resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} + resolution: + { + integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==, + } is-alphabetical@2.0.1: - resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} + resolution: + { + integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==, + } is-alphanumerical@1.0.4: - resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} + resolution: + { + integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==, + } is-alphanumerical@2.0.1: - resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} + resolution: + { + integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==, + } is-arguments@1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==, + } + engines: { node: ">= 0.4" } is-array-buffer@3.0.4: - resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==, + } + engines: { node: ">= 0.4" } is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + resolution: + { + integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, + } is-arrayish@0.3.2: - resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} + resolution: + { + integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==, + } is-async-function@2.0.0: - resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==, + } + engines: { node: ">= 0.4" } is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + resolution: + { + integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, + } 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.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, + } + engines: { node: ">= 0.4" } is-buffer@1.1.6: - resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + resolution: + { + integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==, + } is-buffer@2.0.5: - resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==, + } + engines: { node: ">=4" } is-builtin-module@3.2.1: - resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==, + } + engines: { node: ">=6" } 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-ci@3.0.1: - resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} + resolution: + { + integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==, + } hasBin: true is-core-module@2.13.1: - resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + resolution: + { + integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==, + } is-data-view@1.0.1: - resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==, + } + engines: { node: ">= 0.4" } is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, + } + engines: { node: ">= 0.4" } is-decimal@1.0.4: - resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} + resolution: + { + integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==, + } is-decimal@2.0.1: - resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} + resolution: + { + integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==, + } is-deflate@1.0.0: - resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==} + resolution: + { + integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==, + } is-directory@0.3.1: - resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==, + } + engines: { node: ">=0.10.0" } is-docker@2.2.1: - resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==, + } + engines: { node: ">=8" } hasBin: true is-dom@1.1.0: - resolution: {integrity: sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==} + resolution: + { + integrity: sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==, + } 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-extglob@1.0.0: - resolution: {integrity: sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==, + } + 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-file-esm@1.0.0: - resolution: {integrity: sha512-rZlaNKb4Mr8WlRu2A9XdeoKgnO5aA53XdPHgCKVyCrQ/rWi89RET1+bq37Ru46obaQXeiX4vmFIm1vks41hoSA==} + resolution: + { + integrity: sha512-rZlaNKb4Mr8WlRu2A9XdeoKgnO5aA53XdPHgCKVyCrQ/rWi89RET1+bq37Ru46obaQXeiX4vmFIm1vks41hoSA==, + } is-finalizationregistry@1.0.2: - resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} + resolution: + { + integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==, + } is-fullwidth-code-point@1.0.0: - resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==, + } + engines: { node: ">=0.10.0" } is-fullwidth-code-point@2.0.0: - resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==, + } + engines: { node: ">=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-fullwidth-code-point@4.0.0: - resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==, + } + engines: { node: ">=12" } is-function@1.0.2: - resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==} + resolution: + { + integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==, + } is-generator-fn@2.1.0: - resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==, + } + engines: { node: ">=6" } is-generator-function@1.0.10: - resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==, + } + engines: { node: ">= 0.4" } is-glob@2.0.1: - resolution: {integrity: sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==, + } + engines: { node: ">=0.10.0" } 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-gzip@1.0.0: - resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==, + } + engines: { node: ">=0.10.0" } is-hex-prefixed@1.0.0: - resolution: {integrity: sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==} - engines: {node: '>=6.5.0', npm: '>=3'} + resolution: + { + integrity: sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==, + } + engines: { node: ">=6.5.0", npm: ">=3" } is-hexadecimal@1.0.4: - resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} + resolution: + { + integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==, + } 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-invalid-path@0.1.0: - resolution: {integrity: sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==, + } + engines: { node: ">=0.10.0" } 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-nan@1.3.2: - resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==, + } + engines: { node: ">= 0.4" } is-negative-zero@2.0.3: - resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==, + } + engines: { node: ">= 0.4" } is-network-error@1.1.0: - resolution: {integrity: sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==, + } + engines: { node: ">=16" } is-node-process@1.2.0: - resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==} + resolution: + { + integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==, + } is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, + } + 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-obj@2.0.0: - resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==, + } + engines: { node: ">=8" } is-obj@3.0.0: - resolution: {integrity: sha512-IlsXEHOjtKhpN8r/tRFj2nDyTmHvcfNeu/nrRIcXE17ROeatXchkojffa1SpdqW4cr/Fj6QkEf/Gn4zf6KKvEQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-IlsXEHOjtKhpN8r/tRFj2nDyTmHvcfNeu/nrRIcXE17ROeatXchkojffa1SpdqW4cr/Fj6QkEf/Gn4zf6KKvEQ==, + } + engines: { node: ">=12" } is-object@0.1.2: - resolution: {integrity: sha512-GkfZZlIZtpkFrqyAXPQSRBMsaHAw+CgoKe2HXAkjd/sfoI9+hS8PT4wg2rJxdQyUKr7N2vHJbg7/jQtE5l5vBQ==} + resolution: + { + integrity: sha512-GkfZZlIZtpkFrqyAXPQSRBMsaHAw+CgoKe2HXAkjd/sfoI9+hS8PT4wg2rJxdQyUKr7N2vHJbg7/jQtE5l5vBQ==, + } is-object@1.0.2: - resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==} + resolution: + { + integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==, + } is-observable@1.1.0: - resolution: {integrity: sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==, + } + engines: { node: ">=4" } is-path-cwd@2.2.0: - resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==, + } + engines: { node: ">=6" } is-path-in-cwd@2.1.0: - resolution: {integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==, + } + engines: { node: ">=6" } is-path-inside@2.1.0: - resolution: {integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==, + } + engines: { node: ">=6" } is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==, + } + engines: { node: ">=8" } is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==, + } + engines: { node: ">=0.10.0" } is-plain-obj@2.1.0: - resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==, + } + engines: { node: ">=8" } is-plain-obj@3.0.0: - resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==, + } + engines: { node: ">=10" } 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-plain-object@5.0.0: - resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==, + } + engines: { node: ">=0.10.0" } is-potential-custom-element-name@1.0.1: - resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + resolution: + { + integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==, + } is-promise@2.2.2: - resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} + resolution: + { + integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==, + } is-reference@1.2.1: - resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} + resolution: + { + integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==, + } is-reference@3.0.2: - resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} + resolution: + { + integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==, + } is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, + } + 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-root@2.1.0: - resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==, + } + engines: { node: ">=6" } 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.3: - resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==, + } + engines: { node: ">= 0.4" } is-ssh@1.4.0: - resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} + resolution: + { + integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==, + } is-stream@1.1.0: - resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==, + } + engines: { node: ">=0.10.0" } 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.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, + } + engines: { node: ">= 0.4" } is-subdir@1.2.0: - resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==, + } + engines: { node: ">=4" } is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, + } + engines: { node: ">= 0.4" } is-text-path@1.0.1: - resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==, + } + engines: { node: ">=0.10.0" } is-typed-array@1.1.13: - resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==, + } + engines: { node: ">= 0.4" } is-typedarray@1.0.0: - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + resolution: + { + integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==, + } 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-valid-path@0.1.1: - resolution: {integrity: sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==, + } + engines: { node: ">=0.10.0" } 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.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + resolution: + { + integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, + } is-weakset@2.0.3: - resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==, + } + engines: { node: ">= 0.4" } is-whitespace-character@1.0.4: - resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==} + resolution: + { + integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==, + } is-window@1.0.2: - resolution: {integrity: sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg==} + resolution: + { + integrity: sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg==, + } 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-word-character@1.0.4: - resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==} + resolution: + { + integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==, + } is-wsl@1.1.0: - resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==, + } + engines: { node: ">=4" } is-wsl@2.2.0: - resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==, + } + engines: { node: ">=8" } is@0.2.7: - resolution: {integrity: sha512-ajQCouIvkcSnl2iRdK70Jug9mohIHVX9uKpoWnl115ov0R5mzBvRrXxrnHbsA+8AdwCwc/sfw7HXmd4I5EJBdQ==} + resolution: + { + integrity: sha512-ajQCouIvkcSnl2iRdK70Jug9mohIHVX9uKpoWnl115ov0R5mzBvRrXxrnHbsA+8AdwCwc/sfw7HXmd4I5EJBdQ==, + } isarray@0.0.1: - resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} + resolution: + { + integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==, + } isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + resolution: + { + integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, + } isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + resolution: + { + integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, + } isbinaryfile@4.0.10: - resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==} - engines: {node: '>= 8.0.0'} + resolution: + { + integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==, + } + engines: { node: ">= 8.0.0" } isbinaryfile@5.0.0: - resolution: {integrity: sha512-UDdnyGvMajJUWCkib7Cei/dvyJrrvo4FIrsvSFWdPpXSUorzXrDJ0S+X5Q4ZlasfPjca4yqCNNsjbCeiy8FFeg==} - engines: {node: '>= 14.0.0'} + resolution: + { + integrity: sha512-UDdnyGvMajJUWCkib7Cei/dvyJrrvo4FIrsvSFWdPpXSUorzXrDJ0S+X5Q4ZlasfPjca4yqCNNsjbCeiy8FFeg==, + } + engines: { node: ">= 14.0.0" } isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + resolution: + { + integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, + } iso-base@4.0.0: - resolution: {integrity: sha512-Vf+6r7XlP+LQD0HSR0ZBLSj/mwuP+59ElbgMKT+iFSnkBW2RzRohQScgKfPCYbaGZAjEdbi40eYq28E/RAnrVA==} + resolution: + { + integrity: sha512-Vf+6r7XlP+LQD0HSR0ZBLSj/mwuP+59ElbgMKT+iFSnkBW2RzRohQScgKfPCYbaGZAjEdbi40eYq28E/RAnrVA==, + } iso-filecoin@4.1.0: - resolution: {integrity: sha512-jUtgWHC2I0j+0WtjhoRc321Mdo54/ntKbLZ1Ad1Ptq55N6RoHL2rJHp0RvPmjtCHlKc++DfMJnO4nWLwFVFr2g==} + resolution: + { + integrity: sha512-jUtgWHC2I0j+0WtjhoRc321Mdo54/ntKbLZ1Ad1Ptq55N6RoHL2rJHp0RvPmjtCHlKc++DfMJnO4nWLwFVFr2g==, + } iso-kv@3.0.3: - resolution: {integrity: sha512-NVW7TJGiTbDlfBclLJeGqGLvZhgMu02tPId6ghLEygCVgitp3946TM6HJordcSbyJbD0wRzByilRYK/GY8dKlw==} + resolution: + { + integrity: sha512-NVW7TJGiTbDlfBclLJeGqGLvZhgMu02tPId6ghLEygCVgitp3946TM6HJordcSbyJbD0wRzByilRYK/GY8dKlw==, + } iso-url@0.4.7: - resolution: {integrity: sha512-27fFRDnPAMnHGLq36bWTpKET+eiXct3ENlCcdcMdk+mjXrb2kw3mhBUg1B7ewAC0kVzlOPhADzQgz1SE6Tglog==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-27fFRDnPAMnHGLq36bWTpKET+eiXct3ENlCcdcMdk+mjXrb2kw3mhBUg1B7ewAC0kVzlOPhADzQgz1SE6Tglog==, + } + engines: { node: ">=10" } iso-web@1.0.6: - resolution: {integrity: sha512-aPG6UoEoUSecDAArSilUcmAlt4sW0eROQhDgvSC0yTWzh/RrhEwM3VIgrv2cTV0oXZiMpzmpLb4bNWT3ea7CzQ==} + resolution: + { + integrity: sha512-aPG6UoEoUSecDAArSilUcmAlt4sW0eROQhDgvSC0yTWzh/RrhEwM3VIgrv2cTV0oXZiMpzmpLb4bNWT3ea7CzQ==, + } 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" } isobject@4.0.0: - resolution: {integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==, + } + engines: { node: ">=0.10.0" } isomorphic-fetch@3.0.0: - resolution: {integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==} + resolution: + { + integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==, + } isomorphic-ws@4.0.1: - resolution: {integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==} + resolution: + { + integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==, + } peerDependencies: - ws: '*' + ws: "*" isomorphic-ws@5.0.0: - resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==} + resolution: + { + integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==, + } peerDependencies: - ws: '*' + ws: "*" isstream@0.1.2: - resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + resolution: + { + integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==, + } 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-hook@3.0.0: - resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==, + } + engines: { node: ">=8" } istanbul-lib-instrument@4.0.3: - resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==, + } + engines: { node: ">=8" } istanbul-lib-instrument@5.2.1: - resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==, + } + engines: { node: ">=8" } istanbul-lib-instrument@6.0.2: - resolution: {integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==, + } + engines: { node: ">=10" } istanbul-lib-processinfo@2.0.3: - resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==, + } + 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@4.0.1: - resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==, + } + 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" } iterate-iterator@1.0.2: - resolution: {integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==} + resolution: + { + integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==, + } iterate-value@1.0.2: - resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==} + resolution: + { + integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==, + } iterator.prototype@1.1.2: - resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} + resolution: + { + integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==, + } jackspeak@2.3.6: - resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==, + } + engines: { node: ">=14" } jake@10.8.7: - resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==, + } + engines: { node: ">=10" } hasBin: true javascript-stringify@2.1.0: - resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==} + resolution: + { + integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==, + } jayson@4.1.0: - resolution: {integrity: sha512-R6JlbyLN53Mjku329XoRT2zJAE6ZgOQ8f91ucYdMCD4nkGCF9kZSrcGXpHIU4jeKj58zUZke2p+cdQchU7Ly7A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-R6JlbyLN53Mjku329XoRT2zJAE6ZgOQ8f91ucYdMCD4nkGCF9kZSrcGXpHIU4jeKj58zUZke2p+cdQchU7Ly7A==, + } + engines: { node: ">=8" } hasBin: true jest-allure2-reporter@2.0.0-beta.25: - resolution: {integrity: sha512-SKAWiukVjptF2AIVPPyfpJNH651TFs0xRX5V71S2Z7TGBJZDBdY0Wm875PLNLb7l9WsX6N2veMNYOThOaOkg3Q==} - engines: {node: '>=16.20.0'} - peerDependencies: - jest: '>=27.2.5' - jest-docblock: '>=27.2.5' + resolution: + { + integrity: sha512-SKAWiukVjptF2AIVPPyfpJNH651TFs0xRX5V71S2Z7TGBJZDBdY0Wm875PLNLb7l9WsX6N2veMNYOThOaOkg3Q==, + } + engines: { node: ">=16.20.0" } + peerDependencies: + jest: ">=27.2.5" + jest-docblock: ">=27.2.5" peerDependenciesMeta: jest: optional: true @@ -21962,35 +32220,59 @@ packages: optional: true jest-canvas-mock@2.5.2: - resolution: {integrity: sha512-vgnpPupjOL6+L5oJXzxTxFrlGEIbHdZqFU+LFNdtLxZ3lRDCl17FlTMM7IatoRQkrcyOTMlDinjUguqmQ6bR2A==} + resolution: + { + integrity: sha512-vgnpPupjOL6+L5oJXzxTxFrlGEIbHdZqFU+LFNdtLxZ3lRDCl17FlTMM7IatoRQkrcyOTMlDinjUguqmQ6bR2A==, + } jest-changed-files@27.5.1: - resolution: {integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-changed-files@28.1.3: - resolution: {integrity: sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-changed-files@29.7.0: - resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-circus@27.5.1: - resolution: {integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-circus@28.1.3: - resolution: {integrity: sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-circus@29.7.0: - resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-cli@27.5.1: - resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -21999,8 +32281,11 @@ packages: optional: true jest-cli@28.1.3: - resolution: {integrity: sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -22009,8 +32294,11 @@ packages: optional: true jest-cli@29.7.0: - resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -22019,91 +32307,133 @@ packages: optional: true jest-config@27.5.1: - resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } peerDependencies: - ts-node: '>=9.0.0' + ts-node: ">=9.0.0" peerDependenciesMeta: ts-node: optional: true jest-config@28.1.3: - resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' + resolution: + { + integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + peerDependencies: + "@types/node": "*" + ts-node: ">=9.0.0" peerDependenciesMeta: - '@types/node': + "@types/node": optional: true ts-node: optional: true jest-config@29.7.0: - resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - peerDependencies: - '@types/node': '*' - ts-node: '>=9.0.0' + resolution: + { + integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + peerDependencies: + "@types/node": "*" + ts-node: ">=9.0.0" peerDependenciesMeta: - '@types/node': + "@types/node": optional: true ts-node: optional: true jest-diff@26.6.2: - resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==} - engines: {node: '>= 10.14.2'} + resolution: + { + integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==, + } + engines: { node: ">= 10.14.2" } jest-diff@27.5.1: - resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-diff@28.1.3: - resolution: {integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-diff@29.7.0: - resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-docblock@27.5.1: - resolution: {integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-docblock@28.1.1: - resolution: {integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-docblock@29.7.0: - resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-each@27.5.1: - resolution: {integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-each@28.1.3: - resolution: {integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-each@29.7.0: - resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-environment-emit@1.0.8: - resolution: {integrity: sha512-WNqvxBLH0yNojHJQ99Y21963aT7UTavxV3PgiBQFi8zwrlnKU6HvkB6LOvQrbk5I8mI8JEKvcoOrQOvBVMLIXQ==} - engines: {node: '>=16.14.0'} - peerDependencies: - '@jest/environment': '>=27.2.5' - '@jest/types': '>=27.2.5' - jest: '>=27.2.5' - jest-environment-jsdom: '>=27.2.5' - jest-environment-node: '>=27.2.5' + resolution: + { + integrity: sha512-WNqvxBLH0yNojHJQ99Y21963aT7UTavxV3PgiBQFi8zwrlnKU6HvkB6LOvQrbk5I8mI8JEKvcoOrQOvBVMLIXQ==, + } + engines: { node: ">=16.14.0" } + peerDependencies: + "@jest/environment": ">=27.2.5" + "@jest/types": ">=27.2.5" + jest: ">=27.2.5" + jest-environment-jsdom: ">=27.2.5" + jest-environment-node: ">=27.2.5" peerDependenciesMeta: - '@jest/environment': + "@jest/environment": optional: true - '@jest/types': + "@jest/types": optional: true jest: optional: true @@ -22113,16 +32443,25 @@ packages: optional: true jest-environment-jsdom@27.5.1: - resolution: {integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-environment-jsdom@28.1.3: - resolution: {integrity: sha512-HnlGUmZRdxfCByd3GM2F100DgQOajUBzEitjGqIREcb45kGjZvRrKUdlaF6escXBdcXNl0OBh+1ZrfeZT3GnAg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-HnlGUmZRdxfCByd3GM2F100DgQOajUBzEitjGqIREcb45kGjZvRrKUdlaF6escXBdcXNl0OBh+1ZrfeZT3GnAg==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-environment-jsdom@29.7.0: - resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -22130,107 +32469,176 @@ packages: optional: true jest-environment-node@27.5.1: - resolution: {integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-environment-node@28.1.3: - resolution: {integrity: sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-environment-node@29.7.0: - resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-expect-message@1.1.3: - resolution: {integrity: sha512-bTK77T4P+zto+XepAX3low8XVQxDgaEqh3jSTQOG8qvPpD69LsIdyJTa+RmnJh3HNSzJng62/44RPPc7OIlFxg==} + resolution: + { + integrity: sha512-bTK77T4P+zto+XepAX3low8XVQxDgaEqh3jSTQOG8qvPpD69LsIdyJTa+RmnJh3HNSzJng62/44RPPc7OIlFxg==, + } jest-file-snapshot@0.5.0: - resolution: {integrity: sha512-A3cqn9RRB6yl/bMsN9+EiNU94JTptLmoFqmSfSeuku22UYotYF6C/Ntw7C2Kai0C7deirYfpDwRpdlyLhItvMQ==} + resolution: + { + integrity: sha512-A3cqn9RRB6yl/bMsN9+EiNU94JTptLmoFqmSfSeuku22UYotYF6C/Ntw7C2Kai0C7deirYfpDwRpdlyLhItvMQ==, + } jest-get-type@26.3.0: - resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} - engines: {node: '>= 10.14.2'} + resolution: + { + integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==, + } + engines: { node: ">= 10.14.2" } jest-get-type@27.5.1: - resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-get-type@28.0.2: - resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-get-type@29.6.3: - resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-haste-map@27.5.1: - resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-haste-map@28.1.3: - resolution: {integrity: sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-haste-map@29.7.0: - resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-jasmine2@27.5.1: - resolution: {integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-leak-detector@27.5.1: - resolution: {integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-leak-detector@28.1.3: - resolution: {integrity: sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-leak-detector@29.7.0: - resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-matcher-utils@27.5.1: - resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-matcher-utils@28.1.3: - resolution: {integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-matcher-utils@29.7.0: - resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-message-util@27.5.1: - resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-message-util@28.1.3: - resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-message-util@29.7.0: - resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-metadata@1.5.3: - resolution: {integrity: sha512-tFNJqxeI6k2RvwRXqK0RxFb62DRkmQrCntVJ5zhyGvQdOPBHufgPd/cpYgHKbyL3pkBT32ut91Nk2BqpaK7YeA==} - engines: {node: '>=16.14.0'} - peerDependencies: - '@jest/environment': '>=27.2.5' - '@jest/reporters': '>=27.2.5' - '@jest/types': '>=27.2.5' - jest: '>=27.2.5' - jest-environment-jsdom: '>=27.2.5' - jest-environment-node: '>=27.2.5' + resolution: + { + integrity: sha512-tFNJqxeI6k2RvwRXqK0RxFb62DRkmQrCntVJ5zhyGvQdOPBHufgPd/cpYgHKbyL3pkBT32ut91Nk2BqpaK7YeA==, + } + engines: { node: ">=16.14.0" } + peerDependencies: + "@jest/environment": ">=27.2.5" + "@jest/reporters": ">=27.2.5" + "@jest/types": ">=27.2.5" + jest: ">=27.2.5" + jest-environment-jsdom: ">=27.2.5" + jest-environment-node: ">=27.2.5" peerDependenciesMeta: - '@jest/environment': + "@jest/environment": optional: true - '@jest/reporters': + "@jest/reporters": optional: true - '@jest/types': + "@jest/types": optional: true jest: optional: true @@ -22240,183 +32648,297 @@ packages: optional: true jest-mock@27.5.1: - resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-mock@28.1.3: - resolution: {integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-mock@29.7.0: - resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-pnp-resolver@1.2.3: - resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==, + } + engines: { node: ">=6" } peerDependencies: - jest-resolve: '*' + jest-resolve: "*" peerDependenciesMeta: jest-resolve: optional: true jest-regex-util@27.5.1: - resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-regex-util@28.0.2: - resolution: {integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-regex-util@29.6.3: - resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-resolve-dependencies@27.5.1: - resolution: {integrity: sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-resolve-dependencies@28.1.3: - resolution: {integrity: sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-resolve-dependencies@29.7.0: - resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-resolve@27.5.1: - resolution: {integrity: sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-resolve@28.1.3: - resolution: {integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-resolve@29.7.0: - resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-runner@27.5.1: - resolution: {integrity: sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-runner@28.1.3: - resolution: {integrity: sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-runner@29.7.0: - resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-runtime@27.5.1: - resolution: {integrity: sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-runtime@28.1.3: - resolution: {integrity: sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-runtime@29.7.0: - resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-serializer@27.5.1: - resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-snapshot@27.5.1: - resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-snapshot@28.1.3: - resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-snapshot@29.7.0: - resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-util@27.5.1: - resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-util@28.1.3: - resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-util@29.7.0: - resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-validate@27.5.1: - resolution: {integrity: sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-validate@28.1.3: - resolution: {integrity: sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-validate@29.7.0: - resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-watch-typeahead@1.1.0: - resolution: {integrity: sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: jest: ^27.0.0 || ^28.0.0 jest-watcher@27.5.1: - resolution: {integrity: sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } jest-watcher@28.1.3: - resolution: {integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } jest-watcher@29.7.0: - resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } jest-worker@26.6.2: - resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} - engines: {node: '>= 10.13.0'} + resolution: + { + integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==, + } + engines: { node: ">= 10.13.0" } peerDependencies: - metro: '*' + metro: "*" peerDependenciesMeta: metro: optional: true jest-worker@27.5.1: - resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} - engines: {node: '>= 10.13.0'} + resolution: + { + integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==, + } + engines: { node: ">= 10.13.0" } peerDependencies: - metro: '*' + metro: "*" peerDependenciesMeta: metro: optional: true jest-worker@28.1.3: - resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } peerDependencies: - metro: '*' + metro: "*" peerDependenciesMeta: metro: optional: true jest-worker@29.7.0: - resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } peerDependencies: - metro: '*' + metro: "*" peerDependenciesMeta: metro: optional: true jest@27.5.1: - resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + resolution: + { + integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -22425,8 +32947,11 @@ packages: optional: true jest@28.1.3: - resolution: {integrity: sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -22435,8 +32960,11 @@ packages: optional: true jest@29.7.0: - resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + resolution: + { + integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==, + } + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -22445,132 +32973,231 @@ packages: optional: true jetifier@2.0.0: - resolution: {integrity: sha512-J4Au9KuT74te+PCCCHKgAjyLlEa+2VyIAEPNCdE5aNkAJ6FAJcAqcdzEkSnzNksIa9NkGmC4tPiClk2e7tCJuQ==} + resolution: + { + integrity: sha512-J4Au9KuT74te+PCCCHKgAjyLlEa+2VyIAEPNCdE5aNkAJ6FAJcAqcdzEkSnzNksIa9NkGmC4tPiClk2e7tCJuQ==, + } hasBin: true jimp-compact@0.16.1: - resolution: {integrity: sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==} + resolution: + { + integrity: sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==, + } jiti@1.21.0: - resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} + resolution: + { + integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==, + } hasBin: true jmespath@0.15.0: - resolution: {integrity: sha512-+kHj8HXArPfpPEKGLZ+kB5ONRTCiGQXo8RQYL0hH8t6pWXUBBK5KkkQmTNOwKK4LEsd0yTsgtjJVm4UBSZea4w==} - engines: {node: '>= 0.6.0'} + resolution: + { + integrity: sha512-+kHj8HXArPfpPEKGLZ+kB5ONRTCiGQXo8RQYL0hH8t6pWXUBBK5KkkQmTNOwKK4LEsd0yTsgtjJVm4UBSZea4w==, + } + engines: { node: ">= 0.6.0" } joi@17.12.2: - resolution: {integrity: sha512-RonXAIzCiHLc8ss3Ibuz45u28GOsWE1UpfDXLbN/9NKbL4tCJf8TWYVKsoYuuh+sAUt7fsSNpA+r2+TBA6Wjmw==} + resolution: + { + integrity: sha512-RonXAIzCiHLc8ss3Ibuz45u28GOsWE1UpfDXLbN/9NKbL4tCJf8TWYVKsoYuuh+sAUt7fsSNpA+r2+TBA6Wjmw==, + } join-component@1.1.0: - resolution: {integrity: sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==} + resolution: + { + integrity: sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==, + } jotai@2.7.1: - resolution: {integrity: sha512-bsaTPn02nFgWNP6cBtg/htZhCu4s0wxqoklRHePp6l/vlsypR9eLn7diRliwXYWMXDpPvW/LLA2afI8vwgFFaw==} - engines: {node: '>=12.20.0'} - peerDependencies: - '@types/react': '>=17.0.0' - react: '>=17.0.0' + resolution: + { + integrity: sha512-bsaTPn02nFgWNP6cBtg/htZhCu4s0wxqoklRHePp6l/vlsypR9eLn7diRliwXYWMXDpPvW/LLA2afI8vwgFFaw==, + } + 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-base64@3.7.7: - resolution: {integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==} + resolution: + { + integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==, + } js-crypto-env@0.3.2: - resolution: {integrity: sha512-F1uHiCkSOo36qBuuZABA4sBf+xeFBzhJZ0Sd7af8FAruszIhm1Xxv+Zr5Ne90Zlh7/fnxCsrdkj0N8f0a3lVlQ==} + resolution: + { + integrity: sha512-F1uHiCkSOo36qBuuZABA4sBf+xeFBzhJZ0Sd7af8FAruszIhm1Xxv+Zr5Ne90Zlh7/fnxCsrdkj0N8f0a3lVlQ==, + } js-crypto-hash@0.6.3: - resolution: {integrity: sha512-SG8c9tM8y3sUb4k7WvpVfu5vU7zfPvX+eaYR5578TvehkehdaQbqAc+y+1FwxnqQ3WZ0gsYoOKp/mW+mqtNoWA==} + resolution: + { + integrity: sha512-SG8c9tM8y3sUb4k7WvpVfu5vU7zfPvX+eaYR5578TvehkehdaQbqAc+y+1FwxnqQ3WZ0gsYoOKp/mW+mqtNoWA==, + } js-crypto-hkdf@0.7.3: - resolution: {integrity: sha512-eAaVArAjS2GCacWGXY4hjBiexrLQYlI0PMOcbwtrSEj84XU3kUfMYZm9bpTyaTXgdHC/eQoXe/Of6biG+RSEaQ==} + resolution: + { + integrity: sha512-eAaVArAjS2GCacWGXY4hjBiexrLQYlI0PMOcbwtrSEj84XU3kUfMYZm9bpTyaTXgdHC/eQoXe/Of6biG+RSEaQ==, + } js-crypto-hmac@0.6.3: - resolution: {integrity: sha512-T0pKOaHACOSG6Xs6/06G8RDDeZouQwIQNBq9L/zoUGsd4F67gAjpT3q2lGigAGpUd1hiyy7vnhvLpz7VDt6DbA==} + resolution: + { + integrity: sha512-T0pKOaHACOSG6Xs6/06G8RDDeZouQwIQNBq9L/zoUGsd4F67gAjpT3q2lGigAGpUd1hiyy7vnhvLpz7VDt6DbA==, + } js-crypto-random@0.4.3: - resolution: {integrity: sha512-C3gzphPPfw9jfQ9Q/LjhJMZxQNp3AaoVRDvyZkiB+zYltfs8tKQPsskWkXACpg1Nzh01PtSRUvVijjptd2qGHQ==} + resolution: + { + integrity: sha512-C3gzphPPfw9jfQ9Q/LjhJMZxQNp3AaoVRDvyZkiB+zYltfs8tKQPsskWkXACpg1Nzh01PtSRUvVijjptd2qGHQ==, + } js-encoding-utils@0.5.6: - resolution: {integrity: sha512-qnAGsUIWrmzh5n+3AXqbxX1KsB9hkQmJZf3aA9DLAS7GpL/NEHCBreFFbW+imramoU+Q0TDyvkwhRbBRH1TVkg==} + resolution: + { + integrity: sha512-qnAGsUIWrmzh5n+3AXqbxX1KsB9hkQmJZf3aA9DLAS7GpL/NEHCBreFFbW+imramoU+Q0TDyvkwhRbBRH1TVkg==, + } js-logger@1.6.1: - resolution: {integrity: sha512-yTgMCPXVjhmg28CuUH8CKjU+cIKL/G+zTu4Fn4lQxs8mRFH/03QTNvEFngcxfg/gRDiQAOoyCKmMTOm9ayOzXA==} + resolution: + { + integrity: sha512-yTgMCPXVjhmg28CuUH8CKjU+cIKL/G+zTu4Fn4lQxs8mRFH/03QTNvEFngcxfg/gRDiQAOoyCKmMTOm9ayOzXA==, + } js-message@1.0.7: - resolution: {integrity: sha512-efJLHhLjIyKRewNS9EGZ4UpI8NguuL6fKkhRxVuMmrGV2xN/0APGdQYwLFky5w9naebSZ0OwAGp0G6/2Cg90rA==} - engines: {node: '>=0.6.0'} + resolution: + { + integrity: sha512-efJLHhLjIyKRewNS9EGZ4UpI8NguuL6fKkhRxVuMmrGV2xN/0APGdQYwLFky5w9naebSZ0OwAGp0G6/2Cg90rA==, + } + engines: { node: ">=0.6.0" } js-queue@2.0.2: - resolution: {integrity: sha512-pbKLsbCfi7kriM3s1J4DDCo7jQkI58zPLHi0heXPzPlj0hjUsm+FesPUbE0DSbIVIK503A36aUBoCN7eMFedkA==} - engines: {node: '>=1.0.0'} + resolution: + { + integrity: sha512-pbKLsbCfi7kriM3s1J4DDCo7jQkI58zPLHi0heXPzPlj0hjUsm+FesPUbE0DSbIVIK503A36aUBoCN7eMFedkA==, + } + engines: { node: ">=1.0.0" } js-sha256@0.9.0: - resolution: {integrity: sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA==} + resolution: + { + integrity: sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA==, + } js-sha3@0.5.7: - resolution: {integrity: sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g==} + resolution: + { + integrity: sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g==, + } js-sha3@0.8.0: - resolution: {integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==} + resolution: + { + integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==, + } js-sha512@0.8.0: - resolution: {integrity: sha512-PWsmefG6Jkodqt+ePTvBZCSMFgN7Clckjd0O7su3I0+BW2QWUTJNzjktHsztGLhncP2h8mcF9V9Y2Ha59pAViQ==} + resolution: + { + integrity: sha512-PWsmefG6Jkodqt+ePTvBZCSMFgN7Clckjd0O7su3I0+BW2QWUTJNzjktHsztGLhncP2h8mcF9V9Y2Ha59pAViQ==, + } js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + resolution: + { + integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, + } js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + resolution: + { + integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, + } hasBin: true js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + resolution: + { + integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, + } hasBin: true js2xmlparser@4.0.2: - resolution: {integrity: sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA==} + resolution: + { + integrity: sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA==, + } jsbn@0.1.1: - resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + resolution: + { + integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==, + } jsc-android@250231.0.0: - resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==} + resolution: + { + integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==, + } jsc-safe-url@0.2.4: - resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==} + resolution: + { + integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==, + } jscodeshift@0.14.0: - resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==} + resolution: + { + integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==, + } hasBin: true peerDependencies: - '@babel/preset-env': ^7.1.6 + "@babel/preset-env": ^7.1.6 jscodeshift@0.15.2: - resolution: {integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==} + resolution: + { + integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==, + } hasBin: true peerDependencies: - '@babel/preset-env': ^7.1.6 + "@babel/preset-env": ^7.1.6 peerDependenciesMeta: - '@babel/preset-env': + "@babel/preset-env": optional: true jsdoc@4.0.3: - resolution: {integrity: sha512-Nu7Sf35kXJ1MWDZIMAuATRQTg1iIPdzh7tqJ6jjvaU/GfDf+qi5UV8zJR3Mo+/pYFvm8mzay4+6O5EWigaQBQw==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-Nu7Sf35kXJ1MWDZIMAuATRQTg1iIPdzh7tqJ6jjvaU/GfDf+qi5UV8zJR3Mo+/pYFvm8mzay4+6O5EWigaQBQw==, + } + engines: { node: ">=12.0.0" } hasBin: true jsdom@16.7.0: - resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==, + } + engines: { node: ">=10" } peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -22578,8 +33205,11 @@ packages: optional: true jsdom@17.0.0: - resolution: {integrity: sha512-MUq4XdqwtNurZDVeKScENMPHnkgmdIvMzZ1r1NSwHkDuaqI6BouPjr+17COo4/19oLNnmdpFDPOHVpgIZmZ+VA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-MUq4XdqwtNurZDVeKScENMPHnkgmdIvMzZ1r1NSwHkDuaqI6BouPjr+17COo4/19oLNnmdpFDPOHVpgIZmZ+VA==, + } + engines: { node: ">=12" } peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -22587,8 +33217,11 @@ packages: optional: true jsdom@19.0.0: - resolution: {integrity: sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A==, + } + engines: { node: ">=12" } peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -22596,8 +33229,11 @@ packages: optional: true jsdom@20.0.3: - resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==, + } + engines: { node: ">=14" } peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -22605,1680 +33241,3163 @@ packages: optional: true jsesc@0.5.0: - resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} + resolution: + { + integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==, + } hasBin: true jsesc@2.5.2: - resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, + } + engines: { node: ">=4" } hasBin: true json-bigint@1.0.0: - resolution: {integrity: sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==} + resolution: + { + integrity: sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==, + } json-buffer@3.0.0: - resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} + resolution: + { + integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==, + } json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + resolution: + { + integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==, + } json-cycle@1.5.0: - resolution: {integrity: sha512-GOehvd5PO2FeZ5T4c+RxobeT5a1PiGpF4u9/3+UvrMU4bhnVqzJY7hm39wg8PDCqkU91fWGH8qjWR4bn+wgq9w==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-GOehvd5PO2FeZ5T4c+RxobeT5a1PiGpF4u9/3+UvrMU4bhnVqzJY7hm39wg8PDCqkU91fWGH8qjWR4bn+wgq9w==, + } + engines: { node: ">= 4" } json-duplicate-key-handle@1.0.0: - resolution: {integrity: sha512-OLIxL+UpfwUsqcLX3i6Z51ChTou/Vje+6bSeGUSubj96dF/SfjObDprLy++ZXYH07KITuEzsXS7PX7e/BGf4jw==} + resolution: + { + integrity: sha512-OLIxL+UpfwUsqcLX3i6Z51ChTou/Vje+6bSeGUSubj96dF/SfjObDprLy++ZXYH07KITuEzsXS7PX7e/BGf4jw==, + } json-parse-better-errors@1.0.2: - resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + resolution: + { + integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==, + } 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-rpc-2.0@0.2.19: - resolution: {integrity: sha512-tegZKneDQjWintJS5Zlw8xNvJK0/xq4sct2M5AgfFmcCJFMjvrLgk1noH7OPfFgEQ+ScueuWdaGfikCPr+qBtg==} + resolution: + { + integrity: sha512-tegZKneDQjWintJS5Zlw8xNvJK0/xq4sct2M5AgfFmcCJFMjvrLgk1noH7OPfFgEQ+ScueuWdaGfikCPr+qBtg==, + } json-rpc-2.0@1.7.0: - resolution: {integrity: sha512-asnLgC1qD5ytP+fvBP8uL0rvj+l8P6iYICbzZ8dVxCpESffVjzA7KkYkbKCIbavs7cllwH1ZUaNtJwphdeRqpg==} + resolution: + { + integrity: sha512-asnLgC1qD5ytP+fvBP8uL0rvj+l8P6iYICbzZ8dVxCpESffVjzA7KkYkbKCIbavs7cllwH1ZUaNtJwphdeRqpg==, + } json-schema-deref-sync@0.13.0: - resolution: {integrity: sha512-YBOEogm5w9Op337yb6pAT6ZXDqlxAsQCanM3grid8lMWNxRJO/zWEJi3ZzqDL8boWfwhTFym5EFrNgWwpqcBRg==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-YBOEogm5w9Op337yb6pAT6ZXDqlxAsQCanM3grid8lMWNxRJO/zWEJi3ZzqDL8boWfwhTFym5EFrNgWwpqcBRg==, + } + engines: { node: ">=6.0.0" } 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-typed@7.0.3: - resolution: {integrity: sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A==} + resolution: + { + integrity: sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A==, + } json-schema-typed@8.0.1: - resolution: {integrity: sha512-XQmWYj2Sm4kn4WeTYvmpKEbyPsL7nBsb647c7pMe6l02/yx2+Jfc4dT6UZkEXnIUb5LhD55r2HPsJ1milQ4rDg==} + resolution: + { + integrity: sha512-XQmWYj2Sm4kn4WeTYvmpKEbyPsL7nBsb647c7pMe6l02/yx2+Jfc4dT6UZkEXnIUb5LhD55r2HPsJ1milQ4rDg==, + } 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-stringify-safe@5.0.1: - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + resolution: + { + integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==, + } json-text-sequence@0.1.1: - resolution: {integrity: sha512-L3mEegEWHRekSHjc7+sc8eJhba9Clq1PZ8kMkzf8OxElhXc8O4TS5MwcVlj9aEbm5dr81N90WHC5nAz3UO971w==} + resolution: + { + integrity: sha512-L3mEegEWHRekSHjc7+sc8eJhba9Clq1PZ8kMkzf8OxElhXc8O4TS5MwcVlj9aEbm5dr81N90WHC5nAz3UO971w==, + } json5@0.5.1: - resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==} + resolution: + { + integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==, + } hasBin: true 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 json@11.0.0: - resolution: {integrity: sha512-N/ITv3Yw9Za8cGxuQqSqrq6RHnlaHWZkAFavcfpH/R52522c26EbihMxnY7A1chxfXJ4d+cEFIsyTgfi9GihrA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-N/ITv3Yw9Za8cGxuQqSqrq6RHnlaHWZkAFavcfpH/R52522c26EbihMxnY7A1chxfXJ4d+cEFIsyTgfi9GihrA==, + } + engines: { node: ">=0.10.0" } hasBin: true jsonc-parser@3.2.1: - resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==} + resolution: + { + integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==, + } jsonfile@4.0.0: - resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + resolution: + { + integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==, + } jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + resolution: + { + integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, + } jsonparse@1.3.1: - resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} - engines: {'0': node >= 0.2.0} + resolution: + { + integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==, + } + engines: { "0": node >= 0.2.0 } jsonpath@1.1.1: - resolution: {integrity: sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==} + resolution: + { + integrity: sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==, + } 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" } jsonwebtoken@9.0.2: - resolution: {integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==} - engines: {node: '>=12', npm: '>=6'} + resolution: + { + integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==, + } + engines: { node: ">=12", npm: ">=6" } jsprim@1.4.2: - resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==} - engines: {node: '>=0.6.0'} + resolution: + { + integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==, + } + engines: { node: ">=0.6.0" } jsqr@1.4.0: - resolution: {integrity: sha512-dxLob7q65Xg2DvstYkRpkYtmKm2sPJ9oFhrhmudT1dZvNFFTlroai3AWSpLey/w5vMcLBXRgOJsbXpdN9HzU/A==} + resolution: + { + integrity: sha512-dxLob7q65Xg2DvstYkRpkYtmKm2sPJ9oFhrhmudT1dZvNFFTlroai3AWSpLey/w5vMcLBXRgOJsbXpdN9HzU/A==, + } jssha@3.2.0: - resolution: {integrity: sha512-QuruyBENDWdN4tZwJbQq7/eAK85FqrI4oDbXjy5IBhYD+2pTJyBUWZe8ctWaCkrV0gy6AaelgOZZBMeswEa/6Q==} + resolution: + { + integrity: sha512-QuruyBENDWdN4tZwJbQq7/eAK85FqrI4oDbXjy5IBhYD+2pTJyBUWZe8ctWaCkrV0gy6AaelgOZZBMeswEa/6Q==, + } jsx-ast-utils@3.3.5: - resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==, + } + engines: { node: ">=4.0" } jszip@3.10.1: - resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==} + resolution: + { + integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==, + } just-curry-it@3.2.1: - resolution: {integrity: sha512-Q8206k8pTY7krW32cdmPsP+DqqLgWx/hYPSj9/+7SYqSqz7UuwPbfSe07lQtvuuaVyiSJveXk0E5RydOuWwsEg==} + resolution: + { + integrity: sha512-Q8206k8pTY7krW32cdmPsP+DqqLgWx/hYPSj9/+7SYqSqz7UuwPbfSe07lQtvuuaVyiSJveXk0E5RydOuWwsEg==, + } jwa@1.4.1: - resolution: {integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==} + resolution: + { + integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==, + } jws@3.2.2: - resolution: {integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==} + resolution: + { + integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==, + } katex@0.16.10: - resolution: {integrity: sha512-ZiqaC04tp2O5utMsl2TEZTXxa6WSC4yo0fv5ML++D3QZv/vx2Mct0mTlRx3O+uUkjfuAgOkzsCmq5MiUEsDDdA==} + resolution: + { + integrity: sha512-ZiqaC04tp2O5utMsl2TEZTXxa6WSC4yo0fv5ML++D3QZv/vx2Mct0mTlRx3O+uUkjfuAgOkzsCmq5MiUEsDDdA==, + } hasBin: true keccak@3.0.2: - resolution: {integrity: sha512-PyKKjkH53wDMLGrvmRGSNWgmSxZOUqbnXwKL9tmgbFYA1iAYqW21kfR7mZXV0MlESiefxQQE9X9fTa3X+2MPDQ==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-PyKKjkH53wDMLGrvmRGSNWgmSxZOUqbnXwKL9tmgbFYA1iAYqW21kfR7mZXV0MlESiefxQQE9X9fTa3X+2MPDQ==, + } + engines: { node: ">=10.0.0" } keccak@3.0.4: - resolution: {integrity: sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q==, + } + engines: { node: ">=10.0.0" } key-encoder@2.0.3: - resolution: {integrity: sha512-fgBtpAGIr/Fy5/+ZLQZIPPhsZEcbSlYu/Wu96tNDFNSjSACw5lEIOFeaVdQ/iwrb8oxjlWi6wmWdH76hV6GZjg==} + resolution: + { + integrity: sha512-fgBtpAGIr/Fy5/+ZLQZIPPhsZEcbSlYu/Wu96tNDFNSjSACw5lEIOFeaVdQ/iwrb8oxjlWi6wmWdH76hV6GZjg==, + } keygrip@1.1.0: - resolution: {integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==, + } + engines: { node: ">= 0.6" } keymirror@0.1.1: - resolution: {integrity: sha512-vIkZAFWoDijgQT/Nvl2AHCMmnegN2ehgTPYuyy2hWQkQSntI0S7ESYqdLkoSe1HyEBFHHkCgSIvVdSEiWwKvCg==} + resolution: + { + integrity: sha512-vIkZAFWoDijgQT/Nvl2AHCMmnegN2ehgTPYuyy2hWQkQSntI0S7ESYqdLkoSe1HyEBFHHkCgSIvVdSEiWwKvCg==, + } keyv@3.1.0: - resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} + resolution: + { + integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==, + } keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + resolution: + { + integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==, + } khroma@2.1.0: - resolution: {integrity: sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==} + resolution: + { + integrity: sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==, + } kind-of@5.1.0: - resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==, + } + engines: { node: ">=0.10.0" } kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==, + } + engines: { node: ">=0.10.0" } klaw@3.0.0: - resolution: {integrity: sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==} + resolution: + { + integrity: sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==, + } kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==, + } + engines: { node: ">=6" } kleur@4.1.5: - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==, + } + engines: { node: ">=6" } klona@2.0.6: - resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==, + } + engines: { node: ">= 8" } known-css-properties@0.26.0: - resolution: {integrity: sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==} + resolution: + { + integrity: sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==, + } koa-bodyparser@4.4.1: - resolution: {integrity: sha512-kBH3IYPMb+iAXnrxIhXnW+gXV8OTzCu8VPDqvcDHW9SQrbkHmqPQtiZwrltNmSq6/lpipHnT7k7PsjlVD7kK0w==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-kBH3IYPMb+iAXnrxIhXnW+gXV8OTzCu8VPDqvcDHW9SQrbkHmqPQtiZwrltNmSq6/lpipHnT7k7PsjlVD7kK0w==, + } + engines: { node: ">=8.0.0" } koa-compose@4.1.0: - resolution: {integrity: sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==} + resolution: + { + integrity: sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==, + } koa-compress@3.1.0: - resolution: {integrity: sha512-0m24/yS/GbhWI+g9FqtvStY+yJwTObwoxOvPok6itVjRen7PBWkjsJ8pre76m+99YybXLKhOJ62mJ268qyBFMQ==} - engines: {node: '>= 8.0.0'} + resolution: + { + integrity: sha512-0m24/yS/GbhWI+g9FqtvStY+yJwTObwoxOvPok6itVjRen7PBWkjsJ8pre76m+99YybXLKhOJ62mJ268qyBFMQ==, + } + engines: { node: ">= 8.0.0" } koa-conditional-get@2.0.0: - resolution: {integrity: sha512-FTZYr681zfyW0bz8FDc55RJrRnicz6KPv2oA3GOf6knksJd0uJdfenKud+RtBjHzO0g1tVHNjwN6gk7OfHAtbQ==} + resolution: + { + integrity: sha512-FTZYr681zfyW0bz8FDc55RJrRnicz6KPv2oA3GOf6knksJd0uJdfenKud+RtBjHzO0g1tVHNjwN6gk7OfHAtbQ==, + } koa-convert@2.0.0: - resolution: {integrity: sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==, + } + engines: { node: ">= 10" } koa-etag@3.0.0: - resolution: {integrity: sha512-HYU1zIsH4S9xOlUZGuZIP1PIiJ0EkBXgwL8PjFECb/pUYmAee8gfcvIovregBMYxECDhLulEWT2+ZRsA/lczCQ==} + resolution: + { + integrity: sha512-HYU1zIsH4S9xOlUZGuZIP1PIiJ0EkBXgwL8PjFECb/pUYmAee8gfcvIovregBMYxECDhLulEWT2+ZRsA/lczCQ==, + } koa-is-json@1.0.0: - resolution: {integrity: sha512-+97CtHAlWDx0ndt0J8y3P12EWLwTLMXIfMnYDev3wOTwH/RpBGMlfn4bDXlMEg1u73K6XRE9BbUp+5ZAYoRYWw==} + resolution: + { + integrity: sha512-+97CtHAlWDx0ndt0J8y3P12EWLwTLMXIfMnYDev3wOTwH/RpBGMlfn4bDXlMEg1u73K6XRE9BbUp+5ZAYoRYWw==, + } koa-json@2.0.2: - resolution: {integrity: sha512-8+dz0T2ekDuNN1svYoKPCV2txotQ3Ufg8Fn5bft1T48MPJWiC/HKmkk+3xj9EC/iNZuFYeLRazN2h2o3RSUXuQ==} + resolution: + { + integrity: sha512-8+dz0T2ekDuNN1svYoKPCV2txotQ3Ufg8Fn5bft1T48MPJWiC/HKmkk+3xj9EC/iNZuFYeLRazN2h2o3RSUXuQ==, + } koa-morgan@1.0.1: - resolution: {integrity: sha512-JOUdCNlc21G50afBXfErUrr1RKymbgzlrO5KURY+wmDG1Uvd2jmxUJcHgylb/mYXy2SjiNZyYim/ptUBGsIi3A==} + resolution: + { + integrity: sha512-JOUdCNlc21G50afBXfErUrr1RKymbgzlrO5KURY+wmDG1Uvd2jmxUJcHgylb/mYXy2SjiNZyYim/ptUBGsIi3A==, + } koa-range@0.3.0: - resolution: {integrity: sha512-Ich3pCz6RhtbajYXRWjIl6O5wtrLs6kE3nkXc9XmaWe+MysJyZO7K4L3oce1Jpg/iMgCbj+5UCiMm/rqVtcDIg==} - engines: {node: '>=7'} + resolution: + { + integrity: sha512-Ich3pCz6RhtbajYXRWjIl6O5wtrLs6kE3nkXc9XmaWe+MysJyZO7K4L3oce1Jpg/iMgCbj+5UCiMm/rqVtcDIg==, + } + engines: { node: ">=7" } koa-route@3.2.0: - resolution: {integrity: sha512-8FsuWw/L+CUWJfpgN6vrlYUDNTheEinG8Zkm97GyuLJNyWjCVUs9p10Ih3jTIWwmDVQcz6827l0RKadAS5ibqA==} + resolution: + { + integrity: sha512-8FsuWw/L+CUWJfpgN6vrlYUDNTheEinG8Zkm97GyuLJNyWjCVUs9p10Ih3jTIWwmDVQcz6827l0RKadAS5ibqA==, + } koa-send@5.0.1: - resolution: {integrity: sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==, + } + engines: { node: ">= 8" } koa-static@5.0.0: - resolution: {integrity: sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==} - engines: {node: '>= 7.6.0'} + resolution: + { + integrity: sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==, + } + engines: { node: ">= 7.6.0" } koa@2.15.2: - resolution: {integrity: sha512-MXTeZH3M6AJ8ukW2QZ8wqO3Dcdfh2WRRmjCBkEP+NhKNCiqlO5RDqHmSnsyNrbRJrdjyvIGSJho4vQiWgQJSVA==} - engines: {node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4} + resolution: + { + integrity: sha512-MXTeZH3M6AJ8ukW2QZ8wqO3Dcdfh2WRRmjCBkEP+NhKNCiqlO5RDqHmSnsyNrbRJrdjyvIGSJho4vQiWgQJSVA==, + } + engines: { node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4 } konan@2.1.1: - resolution: {integrity: sha512-7ZhYV84UzJ0PR/RJnnsMZcAbn+kLasJhVNWsu8ZyVEJYRpGA5XESQ9d/7zOa08U0Ou4cmB++hMNY/3OSV9KIbg==} + resolution: + { + integrity: sha512-7ZhYV84UzJ0PR/RJnnsMZcAbn+kLasJhVNWsu8ZyVEJYRpGA5XESQ9d/7zOa08U0Ou4cmB++hMNY/3OSV9KIbg==, + } kuler@2.0.0: - resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==} + resolution: + { + integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==, + } kysely@0.27.3: - resolution: {integrity: sha512-lG03Ru+XyOJFsjH3OMY6R/9U38IjDPfnOfDgO3ynhbDr+Dz8fak+X6L62vqu3iybQnj+lG84OttBuU9KY3L9kA==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-lG03Ru+XyOJFsjH3OMY6R/9U38IjDPfnOfDgO3ynhbDr+Dz8fak+X6L62vqu3iybQnj+lG84OttBuU9KY3L9kA==, + } + engines: { node: ">=14.0.0" } language-subtag-registry@0.3.22: - resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} + resolution: + { + integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==, + } language-tags@1.0.9: - resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==, + } + engines: { node: ">=0.10" } launch-editor-middleware@2.8.0: - resolution: {integrity: sha512-0Az27jnPR2RgkUoZoLHluM5gg9zHeg7hPsUZESJxcTV8Rs6Fed+Nof7Lb2HmpsE8lN/3YzpU+mvK5exYWSftWw==} + resolution: + { + integrity: sha512-0Az27jnPR2RgkUoZoLHluM5gg9zHeg7hPsUZESJxcTV8Rs6Fed+Nof7Lb2HmpsE8lN/3YzpU+mvK5exYWSftWw==, + } launch-editor@2.6.1: - resolution: {integrity: sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==} + resolution: + { + integrity: sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==, + } launch-editor@2.8.0: - resolution: {integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==} + resolution: + { + integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==, + } layout-base@1.0.2: - resolution: {integrity: sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==} + resolution: + { + integrity: sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==, + } lazy-cache@1.0.4: - resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==, + } + engines: { node: ">=0.10.0" } lazy-universal-dotenv@4.0.0: - resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==, + } + engines: { node: ">=14.0.0" } lazy-val@1.0.5: - resolution: {integrity: sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==} + resolution: + { + integrity: sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==, + } lazystream@1.0.1: - resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} - engines: {node: '>= 0.6.3'} + resolution: + { + integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==, + } + engines: { node: ">= 0.6.3" } level-blobs@0.1.7: - resolution: {integrity: sha512-n0iYYCGozLd36m/Pzm206+brIgXP8mxPZazZ6ZvgKr+8YwOZ8/PPpYC5zMUu2qFygRN8RO6WC/HH3XWMW7RMVg==} + resolution: + { + integrity: sha512-n0iYYCGozLd36m/Pzm206+brIgXP8mxPZazZ6ZvgKr+8YwOZ8/PPpYC5zMUu2qFygRN8RO6WC/HH3XWMW7RMVg==, + } level-filesystem@1.2.0: - resolution: {integrity: sha512-PhXDuCNYpngpxp3jwMT9AYBMgOvB6zxj3DeuIywNKmZqFj2djj9XfT2XDVslfqmo0Ip79cAd3SBy3FsfOZPJ1g==} + resolution: + { + integrity: sha512-PhXDuCNYpngpxp3jwMT9AYBMgOvB6zxj3DeuIywNKmZqFj2djj9XfT2XDVslfqmo0Ip79cAd3SBy3FsfOZPJ1g==, + } level-fix-range@1.0.2: - resolution: {integrity: sha512-9llaVn6uqBiSlBP+wKiIEoBa01FwEISFgHSZiyec2S0KpyLUkGR4afW/FCZ/X8y+QJvzS0u4PGOlZDdh1/1avQ==} + resolution: + { + integrity: sha512-9llaVn6uqBiSlBP+wKiIEoBa01FwEISFgHSZiyec2S0KpyLUkGR4afW/FCZ/X8y+QJvzS0u4PGOlZDdh1/1avQ==, + } level-fix-range@2.0.0: - resolution: {integrity: sha512-WrLfGWgwWbYPrHsYzJau+5+te89dUbENBg3/lsxOs4p2tYOhCHjbgXxBAj4DFqp3k/XBwitcRXoCh8RoCogASA==} + resolution: + { + integrity: sha512-WrLfGWgwWbYPrHsYzJau+5+te89dUbENBg3/lsxOs4p2tYOhCHjbgXxBAj4DFqp3k/XBwitcRXoCh8RoCogASA==, + } level-hooks@4.5.0: - resolution: {integrity: sha512-fxLNny/vL/G4PnkLhWsbHnEaRi+A/k8r5EH/M77npZwYL62RHi2fV0S824z3QdpAk6VTgisJwIRywzBHLK4ZVA==} + resolution: + { + integrity: sha512-fxLNny/vL/G4PnkLhWsbHnEaRi+A/k8r5EH/M77npZwYL62RHi2fV0S824z3QdpAk6VTgisJwIRywzBHLK4ZVA==, + } level-peek@1.0.6: - resolution: {integrity: sha512-TKEzH5TxROTjQxWMczt9sizVgnmJ4F3hotBI48xCTYvOKd/4gA/uY0XjKkhJFo6BMic8Tqjf6jFMLWeg3MAbqQ==} + resolution: + { + integrity: sha512-TKEzH5TxROTjQxWMczt9sizVgnmJ4F3hotBI48xCTYvOKd/4gA/uY0XjKkhJFo6BMic8Tqjf6jFMLWeg3MAbqQ==, + } level-sublevel@5.2.3: - resolution: {integrity: sha512-tO8jrFp+QZYrxx/Gnmjawuh1UBiifpvKNAcm4KCogesWr1Nm2+ckARitf+Oo7xg4OHqMW76eAqQ204BoIlscjA==} + resolution: + { + integrity: sha512-tO8jrFp+QZYrxx/Gnmjawuh1UBiifpvKNAcm4KCogesWr1Nm2+ckARitf+Oo7xg4OHqMW76eAqQ204BoIlscjA==, + } levelup@0.18.6: - resolution: {integrity: sha512-uB0auyRqIVXx+hrpIUtol4VAPhLRcnxcOsd2i2m6rbFIDarO5dnrupLOStYYpEcu8ZT087Z9HEuYw1wjr6RL6Q==} + resolution: + { + integrity: sha512-uB0auyRqIVXx+hrpIUtol4VAPhLRcnxcOsd2i2m6rbFIDarO5dnrupLOStYYpEcu8ZT087Z9HEuYw1wjr6RL6Q==, + } leven@2.1.0: - resolution: {integrity: sha512-nvVPLpIHUxCUoRLrFqTgSxXJ614d8AgQoWl7zPe/2VadE8+1dpU3LBhowRuBAcuwruWtOdD8oYC9jDNJjXDPyA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-nvVPLpIHUxCUoRLrFqTgSxXJ614d8AgQoWl7zPe/2VadE8+1dpU3LBhowRuBAcuwruWtOdD8oYC9jDNJjXDPyA==, + } + engines: { node: ">=0.10.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.3.0: - resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==, + } + engines: { node: ">= 0.8.0" } 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" } libsodium-sumo@0.7.13: - resolution: {integrity: sha512-zTGdLu4b9zSNLfovImpBCbdAA4xkpkZbMnSQjP8HShyOutnGjRHmSOKlsylh1okao6QhLiz7nG98EGn+04cZjQ==} + resolution: + { + integrity: sha512-zTGdLu4b9zSNLfovImpBCbdAA4xkpkZbMnSQjP8HShyOutnGjRHmSOKlsylh1okao6QhLiz7nG98EGn+04cZjQ==, + } libsodium-wrappers-sumo@0.7.13: - resolution: {integrity: sha512-lz4YdplzDRh6AhnLGF2Dj2IUj94xRN6Bh8T0HLNwzYGwPehQJX6c7iYVrFUPZ3QqxE0bqC+K0IIqqZJYWumwSQ==} + resolution: + { + integrity: sha512-lz4YdplzDRh6AhnLGF2Dj2IUj94xRN6Bh8T0HLNwzYGwPehQJX6c7iYVrFUPZ3QqxE0bqC+K0IIqqZJYWumwSQ==, + } libsodium-wrappers@0.7.13: - resolution: {integrity: sha512-kasvDsEi/r1fMzKouIDv7B8I6vNmknXwGiYodErGuESoFTohGSKZplFtVxZqHaoQ217AynyIFgnOVRitpHs0Qw==} + resolution: + { + integrity: sha512-kasvDsEi/r1fMzKouIDv7B8I6vNmknXwGiYodErGuESoFTohGSKZplFtVxZqHaoQ217AynyIFgnOVRitpHs0Qw==, + } libsodium@0.7.13: - resolution: {integrity: sha512-mK8ju0fnrKXXfleL53vtp9xiPq5hKM0zbDQtcxQIsSmxNgSxqCj6R7Hl9PkrNe2j29T4yoDaF7DJLK9/i5iWUw==} + resolution: + { + integrity: sha512-mK8ju0fnrKXXfleL53vtp9xiPq5hKM0zbDQtcxQIsSmxNgSxqCj6R7Hl9PkrNe2j29T4yoDaF7DJLK9/i5iWUw==, + } lie@3.1.1: - resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==} + resolution: + { + integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==, + } lie@3.3.0: - resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==} + resolution: + { + integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==, + } lighthouse-logger@1.4.2: - resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==} + resolution: + { + integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==, + } lightningcss-darwin-arm64@1.19.0: - resolution: {integrity: sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg==, + } + engines: { node: ">= 12.0.0" } cpu: [arm64] os: [darwin] lightningcss-darwin-x64@1.19.0: - resolution: {integrity: sha512-Lif1wD6P4poaw9c/4Uh2z+gmrWhw/HtXFoeZ3bEsv6Ia4tt8rOJBdkfVaUJ6VXmpKHALve+iTyP2+50xY1wKPw==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-Lif1wD6P4poaw9c/4Uh2z+gmrWhw/HtXFoeZ3bEsv6Ia4tt8rOJBdkfVaUJ6VXmpKHALve+iTyP2+50xY1wKPw==, + } + engines: { node: ">= 12.0.0" } cpu: [x64] os: [darwin] lightningcss-linux-arm-gnueabihf@1.19.0: - resolution: {integrity: sha512-P15VXY5682mTXaiDtbnLYQflc8BYb774j2R84FgDLJTN6Qp0ZjWEFyN1SPqyfTj2B2TFjRHRUvQSSZ7qN4Weig==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-P15VXY5682mTXaiDtbnLYQflc8BYb774j2R84FgDLJTN6Qp0ZjWEFyN1SPqyfTj2B2TFjRHRUvQSSZ7qN4Weig==, + } + engines: { node: ">= 12.0.0" } cpu: [arm] os: [linux] lightningcss-linux-arm64-gnu@1.19.0: - resolution: {integrity: sha512-zwXRjWqpev8wqO0sv0M1aM1PpjHz6RVIsBcxKszIG83Befuh4yNysjgHVplF9RTU7eozGe3Ts7r6we1+Qkqsww==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-zwXRjWqpev8wqO0sv0M1aM1PpjHz6RVIsBcxKszIG83Befuh4yNysjgHVplF9RTU7eozGe3Ts7r6we1+Qkqsww==, + } + engines: { node: ">= 12.0.0" } cpu: [arm64] os: [linux] lightningcss-linux-arm64-musl@1.19.0: - resolution: {integrity: sha512-vSCKO7SDnZaFN9zEloKSZM5/kC5gbzUjoJQ43BvUpyTFUX7ACs/mDfl2Eq6fdz2+uWhUh7vf92c4EaaP4udEtA==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-vSCKO7SDnZaFN9zEloKSZM5/kC5gbzUjoJQ43BvUpyTFUX7ACs/mDfl2Eq6fdz2+uWhUh7vf92c4EaaP4udEtA==, + } + engines: { node: ">= 12.0.0" } cpu: [arm64] os: [linux] lightningcss-linux-x64-gnu@1.19.0: - resolution: {integrity: sha512-0AFQKvVzXf9byrXUq9z0anMGLdZJS+XSDqidyijI5njIwj6MdbvX2UZK/c4FfNmeRa2N/8ngTffoIuOUit5eIQ==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-0AFQKvVzXf9byrXUq9z0anMGLdZJS+XSDqidyijI5njIwj6MdbvX2UZK/c4FfNmeRa2N/8ngTffoIuOUit5eIQ==, + } + engines: { node: ">= 12.0.0" } cpu: [x64] os: [linux] lightningcss-linux-x64-musl@1.19.0: - resolution: {integrity: sha512-SJoM8CLPt6ECCgSuWe+g0qo8dqQYVcPiW2s19dxkmSI5+Uu1GIRzyKA0b7QqmEXolA+oSJhQqCmJpzjY4CuZAg==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-SJoM8CLPt6ECCgSuWe+g0qo8dqQYVcPiW2s19dxkmSI5+Uu1GIRzyKA0b7QqmEXolA+oSJhQqCmJpzjY4CuZAg==, + } + engines: { node: ">= 12.0.0" } cpu: [x64] os: [linux] lightningcss-win32-x64-msvc@1.19.0: - resolution: {integrity: sha512-C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg==, + } + engines: { node: ">= 12.0.0" } cpu: [x64] os: [win32] lightningcss@1.19.0: - resolution: {integrity: sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==, + } + engines: { node: ">= 12.0.0" } lilconfig@2.1.0: - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==, + } + engines: { node: ">=10" } lilconfig@3.1.1: - resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==, + } + 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==, + } lint-staged@14.0.1: - resolution: {integrity: sha512-Mw0cL6HXnHN1ag0mN/Dg4g6sr8uf8sn98w2Oc1ECtFto9tvRF7nkXGJRbx8gPlHyoR0pLyBr2lQHbWwmUHe1Sw==} - engines: {node: ^16.14.0 || >=18.0.0} + resolution: + { + integrity: sha512-Mw0cL6HXnHN1ag0mN/Dg4g6sr8uf8sn98w2Oc1ECtFto9tvRF7nkXGJRbx8gPlHyoR0pLyBr2lQHbWwmUHe1Sw==, + } + engines: { node: ^16.14.0 || >=18.0.0 } hasBin: true listenercount@1.0.1: - resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==} + resolution: + { + integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==, + } listr-silent-renderer@1.1.1: - resolution: {integrity: sha512-L26cIFm7/oZeSNVhWB6faeorXhMg4HNlb/dS/7jHhr708jxlXrtrBWo4YUxZQkc6dGoxEAe6J/D3juTRBUzjtA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-L26cIFm7/oZeSNVhWB6faeorXhMg4HNlb/dS/7jHhr708jxlXrtrBWo4YUxZQkc6dGoxEAe6J/D3juTRBUzjtA==, + } + engines: { node: ">=4" } listr-update-renderer@0.5.0: - resolution: {integrity: sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==, + } + engines: { node: ">=6" } peerDependencies: listr: ^0.14.2 listr-verbose-renderer@0.5.0: - resolution: {integrity: sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==, + } + engines: { node: ">=4" } listr-verbose-renderer@0.6.0: - resolution: {integrity: sha512-P3bA/giMu432bs3gHiKXKOIHlWanCIlRhbhCfgKNgCoyvTvZsdbfkgX1BvThYXhm36cS8pOX3Z5vxXBFZC+NQw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-P3bA/giMu432bs3gHiKXKOIHlWanCIlRhbhCfgKNgCoyvTvZsdbfkgX1BvThYXhm36cS8pOX3Z5vxXBFZC+NQw==, + } + engines: { node: ">=6" } listr2@6.6.1: - resolution: {integrity: sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==} - engines: {node: '>=16.0.0'} + resolution: + { + integrity: sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==, + } + engines: { node: ">=16.0.0" } peerDependencies: - enquirer: '>= 2.3.0 < 3' + enquirer: ">= 2.3.0 < 3" peerDependenciesMeta: enquirer: optional: true listr@0.14.3: - resolution: {integrity: sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==, + } + engines: { node: ">=6" } load-json-file@5.3.0: - resolution: {integrity: sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==, + } + engines: { node: ">=6" } load-module@3.0.0: - resolution: {integrity: sha512-ZqprfrTx4vfH5+1mgpspPh5JYsNyA193NkMUdb3GwpmVqMczOh8cUDJgZBmEZVlSR42JBGYTUxlBAX9LHIBtIA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-ZqprfrTx4vfH5+1mgpspPh5JYsNyA193NkMUdb3GwpmVqMczOh8cUDJgZBmEZVlSR42JBGYTUxlBAX9LHIBtIA==, + } + engines: { node: ">=10" } 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 } load-yaml-file@0.2.0: - resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==, + } + engines: { node: ">=6" } loader-runner@4.3.0: - resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} - engines: {node: '>=6.11.5'} + resolution: + { + integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==, + } + engines: { node: ">=6.11.5" } loader-utils@1.4.2: - resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==, + } + engines: { node: ">=4.0.0" } loader-utils@2.0.4: - resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} - engines: {node: '>=8.9.0'} + resolution: + { + integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==, + } + engines: { node: ">=8.9.0" } loader-utils@3.2.1: - resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==} - engines: {node: '>= 12.13.0'} + resolution: + { + integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==, + } + engines: { node: ">= 12.13.0" } local-web-server@4.2.1: - resolution: {integrity: sha512-v71LZool2w7uYA+tDP5HhfjzUxz5SFfcrPPB/zC98yFFawt7A6fcmAr2MR4Q9AHk/A8oyd/wrhEJBJLndwHxNQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-v71LZool2w7uYA+tDP5HhfjzUxz5SFfcrPPB/zC98yFFawt7A6fcmAr2MR4Q9AHk/A8oyd/wrhEJBJLndwHxNQ==, + } + engines: { node: ">=10" } hasBin: true localforage@1.10.0: - resolution: {integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==} + resolution: + { + integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==, + } locate-path@3.0.0: - resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==, + } + engines: { node: ">=6" } 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" } locate-path@7.2.0: - resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } lodash-es@4.17.21: - resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} + resolution: + { + integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==, + } lodash._reinterpolate@3.0.0: - resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==} + resolution: + { + integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==, + } lodash.assignwith@4.2.0: - resolution: {integrity: sha512-ZznplvbvtjK2gMvnQ1BR/zqPFZmS6jbK4p+6Up4xcRYA7yMIwxHCfbTcrYxXKzzqLsQ05eJPVznEW3tuwV7k1g==} + resolution: + { + integrity: sha512-ZznplvbvtjK2gMvnQ1BR/zqPFZmS6jbK4p+6Up4xcRYA7yMIwxHCfbTcrYxXKzzqLsQ05eJPVznEW3tuwV7k1g==, + } lodash.camelcase@4.3.0: - resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + resolution: + { + integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==, + } lodash.clonedeep@4.5.0: - resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==} + resolution: + { + integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==, + } lodash.debounce@4.0.8: - resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} + resolution: + { + integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==, + } lodash.defaults@4.2.0: - resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==} + resolution: + { + integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==, + } lodash.defaultsdeep@4.6.1: - resolution: {integrity: sha512-3j8wdDzYuWO3lM3Reg03MuQR957t287Rpcxp1njpEa8oDrikb+FwGdW3n+FELh/A6qib6yPit0j/pv9G/yeAqA==} + resolution: + { + integrity: sha512-3j8wdDzYuWO3lM3Reg03MuQR957t287Rpcxp1njpEa8oDrikb+FwGdW3n+FELh/A6qib6yPit0j/pv9G/yeAqA==, + } lodash.escaperegexp@4.1.2: - resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==} + resolution: + { + integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==, + } lodash.flattendeep@4.4.0: - resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} + resolution: + { + integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==, + } lodash.get@4.4.2: - resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} + resolution: + { + integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==, + } lodash.includes@4.3.0: - resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==} + resolution: + { + integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==, + } lodash.isarguments@3.1.0: - resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==} + resolution: + { + integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==, + } lodash.isboolean@3.0.3: - resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==} + resolution: + { + integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==, + } lodash.isequal@4.5.0: - resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} + resolution: + { + integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==, + } lodash.isfunction@3.0.9: - resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==} + resolution: + { + integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==, + } lodash.isinteger@4.0.4: - resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==} + resolution: + { + integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==, + } lodash.isnumber@3.0.3: - resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==} + resolution: + { + integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==, + } lodash.isplainobject@4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + resolution: + { + integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==, + } lodash.isstring@4.0.1: - resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} + resolution: + { + integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==, + } lodash.kebabcase@4.1.1: - resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} + resolution: + { + integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==, + } lodash.mapvalues@4.6.0: - resolution: {integrity: sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ==} + resolution: + { + integrity: sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ==, + } lodash.memoize@4.1.2: - resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} + resolution: + { + integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==, + } lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + resolution: + { + integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, + } lodash.mergewith@4.6.2: - resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} + resolution: + { + integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==, + } lodash.once@4.1.1: - resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} + resolution: + { + integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==, + } lodash.snakecase@4.1.1: - resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} + resolution: + { + integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==, + } lodash.sortby@4.7.0: - resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} + resolution: + { + integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==, + } lodash.startcase@4.4.0: - resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + resolution: + { + integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==, + } lodash.template@4.5.0: - resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==} + resolution: + { + integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==, + } lodash.templatesettings@4.2.0: - resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==} + resolution: + { + integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==, + } lodash.throttle@4.1.1: - resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==} + resolution: + { + integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==, + } lodash.truncate@4.4.2: - resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} + resolution: + { + integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==, + } lodash.uniq@4.5.0: - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + resolution: + { + integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==, + } lodash.upperfirst@4.3.1: - resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} + resolution: + { + integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==, + } lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + resolution: + { + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, + } log-symbols@1.0.2: - resolution: {integrity: sha512-mmPrW0Fh2fxOzdBbFv4g1m6pR72haFLPJ2G5SJEELf1y+iaQrDG6cWCPjy54RHYbZAt7X+ls690Kw62AdWXBzQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-mmPrW0Fh2fxOzdBbFv4g1m6pR72haFLPJ2G5SJEELf1y+iaQrDG6cWCPjy54RHYbZAt7X+ls690Kw62AdWXBzQ==, + } + engines: { node: ">=0.10.0" } log-symbols@2.2.0: - resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==, + } + engines: { node: ">=4" } 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-update@2.3.0: - resolution: {integrity: sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==, + } + engines: { node: ">=4" } log-update@5.0.1: - resolution: {integrity: sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } logform@2.6.0: - resolution: {integrity: sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==, + } + engines: { node: ">= 12.0.0" } logkitty@0.7.1: - resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==} + resolution: + { + integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==, + } hasBin: true long@4.0.0: - resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==} + resolution: + { + integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==, + } long@5.2.3: - resolution: {integrity: sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==} + resolution: + { + integrity: sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==, + } 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 lottie-react-native@6.7.0: - resolution: {integrity: sha512-doiF/36LaKkzo0XkgUIK8egxALNY6jGjCI4szpRuwop15LTW3DFtIA2L3pusNdaH7oM797aSH5UylIJw2k+Hgw==} - peerDependencies: - '@dotlottie/react-player': ^1.6.1 - '@lottiefiles/react-lottie-player': ^3.5.3 - react: '*' - react-native: '>=0.46' - react-native-windows: '>=0.63.x' + resolution: + { + integrity: sha512-doiF/36LaKkzo0XkgUIK8egxALNY6jGjCI4szpRuwop15LTW3DFtIA2L3pusNdaH7oM797aSH5UylIJw2k+Hgw==, + } + peerDependencies: + "@dotlottie/react-player": ^1.6.1 + "@lottiefiles/react-lottie-player": ^3.5.3 + react: "*" + react-native: ">=0.46" + react-native-windows: ">=0.63.x" peerDependenciesMeta: - '@dotlottie/react-player': + "@dotlottie/react-player": optional: true - '@lottiefiles/react-lottie-player': + "@lottiefiles/react-lottie-player": optional: true react-native-windows: optional: true lottie-web@5.12.2: - resolution: {integrity: sha512-uvhvYPC8kGPjXT3MyKMrL3JitEAmDMp30lVkuq/590Mw9ok6pWcFCwXJveo0t5uqYw1UREQHofD+jVpdjBv8wg==} + resolution: + { + integrity: sha512-uvhvYPC8kGPjXT3MyKMrL3JitEAmDMp30lVkuq/590Mw9ok6pWcFCwXJveo0t5uqYw1UREQHofD+jVpdjBv8wg==, + } loupe@2.3.7: - resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} + resolution: + { + integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==, + } lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + resolution: + { + integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==, + } lowercase-keys@1.0.1: - resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==, + } + engines: { node: ">=0.10.0" } lowercase-keys@2.0.0: - resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==, + } + engines: { node: ">=8" } lru-cache@10.2.0: - resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==} - engines: {node: 14 || >=16.14} + resolution: + { + integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==, + } + engines: { node: 14 || >=16.14 } lru-cache@4.1.5: - resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} + resolution: + { + integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==, + } lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + resolution: + { + integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, + } lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, + } + engines: { node: ">=10" } lru-cache@7.18.3: - resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==, + } + engines: { node: ">=12" } lru_map@0.3.3: - resolution: {integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==} + resolution: + { + integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==, + } lru_map@0.4.1: - resolution: {integrity: sha512-I+lBvqMMFfqaV8CJCISjI3wbjmwVu/VyOoU7+qtu9d7ioW5klMgsTTiUOUp+DJvfTTzKXoPbyC6YfgkNcyPSOg==} + resolution: + { + integrity: sha512-I+lBvqMMFfqaV8CJCISjI3wbjmwVu/VyOoU7+qtu9d7ioW5klMgsTTiUOUp+DJvfTTzKXoPbyC6YfgkNcyPSOg==, + } ltgt@2.2.1: - resolution: {integrity: sha512-AI2r85+4MquTw9ZYqabu4nMwy9Oftlfa/e/52t9IjtfG+mGBbTNdAoZ3RQKLHR6r0wQnwZnPIEh/Ya6XTWAKNA==} + resolution: + { + integrity: sha512-AI2r85+4MquTw9ZYqabu4nMwy9Oftlfa/e/52t9IjtfG+mGBbTNdAoZ3RQKLHR6r0wQnwZnPIEh/Ya6XTWAKNA==, + } lws-basic-auth@2.0.0: - resolution: {integrity: sha512-zzyoGFLQPuKaQJvHMLmmSyfT6lIvocwcDXllTVW5brD0t0YgHYopILkzja+x+MIlJX/YhNKniaTSasujniYVjw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-zzyoGFLQPuKaQJvHMLmmSyfT6lIvocwcDXllTVW5brD0t0YgHYopILkzja+x+MIlJX/YhNKniaTSasujniYVjw==, + } + engines: { node: ">=10" } lws-blacklist@3.0.0: - resolution: {integrity: sha512-KNXGDBmbj+UGfWMBAefe2vrfuWpEQms/9Fd7kfMScTqAKF6nrVoEs4pkxfefArG3bX0bu7jWLyB4tJGma5WC6Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-KNXGDBmbj+UGfWMBAefe2vrfuWpEQms/9Fd7kfMScTqAKF6nrVoEs4pkxfefArG3bX0bu7jWLyB4tJGma5WC6Q==, + } + engines: { node: ">=10" } lws-body-parser@2.0.0: - resolution: {integrity: sha512-QFDzln3sSdKWL9fVNWy2+ZmrKy/XaYRO0/FFB0MBrDCsNnzepeCD4I7rOOfyuphLn42yR8XUpWdcJ3Ii5aauRA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-QFDzln3sSdKWL9fVNWy2+ZmrKy/XaYRO0/FFB0MBrDCsNnzepeCD4I7rOOfyuphLn42yR8XUpWdcJ3Ii5aauRA==, + } + engines: { node: ">=10" } lws-compress@2.0.0: - resolution: {integrity: sha512-5qDXI9pukVYWm07WjAOfpItLXKtL8lCHvjmW4RiXULhTRJj1qqBjNcmqReyk8L7NLUKhc+8eqoDDJFKURQEp0w==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-5qDXI9pukVYWm07WjAOfpItLXKtL8lCHvjmW4RiXULhTRJj1qqBjNcmqReyk8L7NLUKhc+8eqoDDJFKURQEp0w==, + } + engines: { node: ">=10" } lws-conditional-get@2.0.0: - resolution: {integrity: sha512-U05yDlFJKIYa7gJZYfnc1HIEuXbKpDJztgkvNYyxCqJC28j/k9ORoNnFNOIHpBh/jlPJgV8x7uH34mIxFAryWA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-U05yDlFJKIYa7gJZYfnc1HIEuXbKpDJztgkvNYyxCqJC28j/k9ORoNnFNOIHpBh/jlPJgV8x7uH34mIxFAryWA==, + } + engines: { node: ">=10" } lws-cors@3.1.1: - resolution: {integrity: sha512-JMqRHdZ8wS17LB9MbHZvOAiDE/2MD3TSODvEAmNkIPEvutKq1Z6wfuFbfiNjAQRGyImUfiUM99vJOFHmLCg2cw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-JMqRHdZ8wS17LB9MbHZvOAiDE/2MD3TSODvEAmNkIPEvutKq1Z6wfuFbfiNjAQRGyImUfiUM99vJOFHmLCg2cw==, + } + engines: { node: ">=10" } lws-index@2.0.0: - resolution: {integrity: sha512-qfkeQmKYnd13LmQubzI5LtFV2N8PJQG4QvgSoefoiB3dWre9k2T4C7ajjOTKO8mgSzYpUEREduNcQcLyt62n0g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-qfkeQmKYnd13LmQubzI5LtFV2N8PJQG4QvgSoefoiB3dWre9k2T4C7ajjOTKO8mgSzYpUEREduNcQcLyt62n0g==, + } + engines: { node: ">=10" } lws-json@2.0.0: - resolution: {integrity: sha512-vqUFrAQ5BGpkMS2Mm/ZhgvUMi6Tgia7YtESG7pKjNoiSsD+TxncG0nqp8YjUh2xrEzi/SYFc/ed+9ZOl/t0A0g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-vqUFrAQ5BGpkMS2Mm/ZhgvUMi6Tgia7YtESG7pKjNoiSsD+TxncG0nqp8YjUh2xrEzi/SYFc/ed+9ZOl/t0A0g==, + } + engines: { node: ">=10" } lws-log@2.0.0: - resolution: {integrity: sha512-YveoazSZ0Qb1Tljdm8G8yn9c+mAMXgvLMACZzh5aZIk7p8YJwiXf9r1S+xY7wbXEcKG629KfVO0B5G5gRFcyDQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-YveoazSZ0Qb1Tljdm8G8yn9c+mAMXgvLMACZzh5aZIk7p8YJwiXf9r1S+xY7wbXEcKG629KfVO0B5G5gRFcyDQ==, + } + engines: { node: ">=10" } lws-mime@2.0.0: - resolution: {integrity: sha512-mfrAgRQ5+hkQ7LJ6EAgwnUeymNeYxwLXZY3UQ6C2hSTr7BqMSzm9k5O0C8wWP2dzdhChzITYKwzWbUnAYVBwtA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-mfrAgRQ5+hkQ7LJ6EAgwnUeymNeYxwLXZY3UQ6C2hSTr7BqMSzm9k5O0C8wWP2dzdhChzITYKwzWbUnAYVBwtA==, + } + engines: { node: ">=10" } lws-range@3.0.0: - resolution: {integrity: sha512-7ZhA/LqQnKjolKBo/2BFj9DyDDXcJGY3v05TwYRD0qDGrxW4vuatEjluC3SV7ZO/k4PxDLdxuk+RCgL5t3ThtQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-7ZhA/LqQnKjolKBo/2BFj9DyDDXcJGY3v05TwYRD0qDGrxW4vuatEjluC3SV7ZO/k4PxDLdxuk+RCgL5t3ThtQ==, + } + engines: { node: ">=10" } lws-request-monitor@2.0.0: - resolution: {integrity: sha512-ZTo0/pS42qiejcYlL+wlpurSbDSS0J7pDDohqBx7jjUQkgni2Qd8cPzn/kW8QI82gXgDmdZH+ps0vheLHlgdgg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-ZTo0/pS42qiejcYlL+wlpurSbDSS0J7pDDohqBx7jjUQkgni2Qd8cPzn/kW8QI82gXgDmdZH+ps0vheLHlgdgg==, + } + engines: { node: ">=10" } lws-rewrite@3.1.1: - resolution: {integrity: sha512-cOeaPXIlLUVLxS6BZ52QzZVzI8JjCzlWD4RWizB5Hd+0YGO0SPa3Vgk7CIghtAOsSdjtXg/wSOap2H1h+tw8BQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-cOeaPXIlLUVLxS6BZ52QzZVzI8JjCzlWD4RWizB5Hd+0YGO0SPa3Vgk7CIghtAOsSdjtXg/wSOap2H1h+tw8BQ==, + } + engines: { node: ">=10" } hasBin: true lws-spa@3.0.0: - resolution: {integrity: sha512-Tz10LfuOTUsRG6z+OCJ/vBN+4LQWoAGIJ1R02CFPrDk0pY3rHezM7/cCpq6Z6dXD+ipdNE8alkVn4zL2M+eVGg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Tz10LfuOTUsRG6z+OCJ/vBN+4LQWoAGIJ1R02CFPrDk0pY3rHezM7/cCpq6Z6dXD+ipdNE8alkVn4zL2M+eVGg==, + } + engines: { node: ">=10" } lws-static@2.0.0: - resolution: {integrity: sha512-P25A0+IXdkB6Y6gZAG7X0mnaa+FJ8aTiWLUgM5kazaWmruRO7lyhSjitsA3y5TLI3DpPCZn0mWE4SRREujUZLg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-P25A0+IXdkB6Y6gZAG7X0mnaa+FJ8aTiWLUgM5kazaWmruRO7lyhSjitsA3y5TLI3DpPCZn0mWE4SRREujUZLg==, + } + engines: { node: ">=10" } lws@3.1.0: - resolution: {integrity: sha512-I8rTgZxz8OJL0hjdlDxs6WpcVG7WSyalVHPQXXK+WPNVjm3KhkT5gV0Qmsgm2FRLbRUp15tso80xmDxMsyt7zA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-I8rTgZxz8OJL0hjdlDxs6WpcVG7WSyalVHPQXXK+WPNVjm3KhkT5gV0Qmsgm2FRLbRUp15tso80xmDxMsyt7zA==, + } + engines: { node: ">=10" } hasBin: true 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.8: - resolution: {integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==, + } + engines: { node: ">=12" } make-dir@2.1.0: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==, + } + engines: { node: ">=6" } make-dir@3.1.0: - resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==, + } + engines: { node: ">=8" } 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" } make-error@1.3.6: - resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + resolution: + { + integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==, + } makeerror@1.0.12: - resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} + resolution: + { + integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==, + } 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-obj@1.0.1: - resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==, + } + engines: { node: ">=0.10.0" } map-obj@4.3.0: - resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==, + } + engines: { node: ">=8" } map-or-similar@1.5.0: - resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} + resolution: + { + integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==, + } map-stream@0.1.0: - resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==} + resolution: + { + integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==, + } markdown-escapes@1.0.4: - resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==} + resolution: + { + integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==, + } markdown-extensions@1.1.1: - resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==, + } + engines: { node: ">=0.10.0" } markdown-it-anchor@8.6.7: - resolution: {integrity: sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==} + resolution: + { + integrity: sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==, + } peerDependencies: - '@types/markdown-it': '*' - markdown-it: '*' + "@types/markdown-it": "*" + markdown-it: "*" markdown-it@14.1.0: - resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} + resolution: + { + integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==, + } hasBin: true markdown-table@3.0.3: - resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} + resolution: + { + integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==, + } markdown-to-jsx@7.4.5: - resolution: {integrity: sha512-c8NB0H/ig+FOWssE9be0PKsYbCDhcWEkicxMnpdfUuHbFljnen4LAdgUShOyR/PgO3/qKvt9cwfQ0U/zQvZ44A==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-c8NB0H/ig+FOWssE9be0PKsYbCDhcWEkicxMnpdfUuHbFljnen4LAdgUShOyR/PgO3/qKvt9cwfQ0U/zQvZ44A==, + } + engines: { node: ">= 10" } peerDependencies: - react: '>= 0.14.0' + react: ">= 0.14.0" marked@4.3.0: - resolution: {integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==} - engines: {node: '>= 12'} + resolution: + { + integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==, + } + engines: { node: ">= 12" } hasBin: true marky@1.2.5: - resolution: {integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==} + resolution: + { + integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==, + } match-sorter@6.3.4: - resolution: {integrity: sha512-jfZW7cWS5y/1xswZo8VBOdudUiSd9nifYRWphc9M5D/ee4w4AoXLgBEdRbgVaxbMuagBPeUC5y2Hi8DO6o9aDg==} + resolution: + { + integrity: sha512-jfZW7cWS5y/1xswZo8VBOdudUiSd9nifYRWphc9M5D/ee4w4AoXLgBEdRbgVaxbMuagBPeUC5y2Hi8DO6o9aDg==, + } matcher@3.0.0: - resolution: {integrity: sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==, + } + engines: { node: ">=10" } mathml-tag-names@2.1.3: - resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==} + resolution: + { + integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==, + } md5-file@3.2.3: - resolution: {integrity: sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw==, + } + engines: { node: ">=0.10" } hasBin: true md5.js@1.3.5: - resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==} + resolution: + { + integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==, + } md5@2.2.1: - resolution: {integrity: sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ==} + resolution: + { + integrity: sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ==, + } md5@2.3.0: - resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==} + resolution: + { + integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==, + } md5hex@1.0.0: - resolution: {integrity: sha512-c2YOUbp33+6thdCUi34xIyOU/a7bvGKj/3DB1iaPMTuPHf/Q2d5s4sn1FaCOO43XkXggnb08y5W2PU8UNYNLKQ==} + resolution: + { + integrity: sha512-c2YOUbp33+6thdCUi34xIyOU/a7bvGKj/3DB1iaPMTuPHf/Q2d5s4sn1FaCOO43XkXggnb08y5W2PU8UNYNLKQ==, + } mdast-add-list-metadata@1.0.1: - resolution: {integrity: sha512-fB/VP4MJ0LaRsog7hGPxgOrSL3gE/2uEdZyDuSEnKCv/8IkYHiDkIQSbChiJoHyxZZXZ9bzckyRk+vNxFzh8rA==} + resolution: + { + integrity: sha512-fB/VP4MJ0LaRsog7hGPxgOrSL3gE/2uEdZyDuSEnKCv/8IkYHiDkIQSbChiJoHyxZZXZ9bzckyRk+vNxFzh8rA==, + } mdast-util-definitions@4.0.0: - resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==} + resolution: + { + integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==, + } mdast-util-definitions@5.1.2: - resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} + resolution: + { + integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==, + } mdast-util-find-and-replace@2.2.2: - resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==} + resolution: + { + integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==, + } mdast-util-from-markdown@1.3.1: - resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==} + resolution: + { + integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==, + } mdast-util-gfm-autolink-literal@1.0.3: - resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==} + resolution: + { + integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==, + } mdast-util-gfm-footnote@1.0.2: - resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==} + resolution: + { + integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==, + } mdast-util-gfm-strikethrough@1.0.3: - resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==} + resolution: + { + integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==, + } mdast-util-gfm-table@1.0.7: - resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==} + resolution: + { + integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==, + } mdast-util-gfm-task-list-item@1.0.2: - resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==} + resolution: + { + integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==, + } mdast-util-gfm@2.0.2: - resolution: {integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==} + resolution: + { + integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==, + } mdast-util-inject@1.1.0: - resolution: {integrity: sha512-CcJ0mHa36QYumDKiZ2OIR+ClhfOM7zIzN+Wfy8tRZ1hpH9DKLCS+Mh4DyK5bCxzE9uxMWcbIpeNFWsg1zrj/2g==} + resolution: + { + integrity: sha512-CcJ0mHa36QYumDKiZ2OIR+ClhfOM7zIzN+Wfy8tRZ1hpH9DKLCS+Mh4DyK5bCxzE9uxMWcbIpeNFWsg1zrj/2g==, + } mdast-util-math@2.0.2: - resolution: {integrity: sha512-8gmkKVp9v6+Tgjtq6SYx9kGPpTf6FVYRa53/DLh479aldR9AyP48qeVOgNZ5X7QUK7nOy4yw7vg6mbiGcs9jWQ==} + resolution: + { + integrity: sha512-8gmkKVp9v6+Tgjtq6SYx9kGPpTf6FVYRa53/DLh479aldR9AyP48qeVOgNZ5X7QUK7nOy4yw7vg6mbiGcs9jWQ==, + } mdast-util-mdx-expression@1.3.2: - resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==} + resolution: + { + integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==, + } mdast-util-mdx-jsx@2.1.4: - resolution: {integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==} + resolution: + { + integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==, + } mdast-util-mdx@2.0.1: - resolution: {integrity: sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==} + resolution: + { + integrity: sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==, + } mdast-util-mdxjs-esm@1.3.1: - resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==} + resolution: + { + integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==, + } mdast-util-phrasing@3.0.1: - resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==} + resolution: + { + integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==, + } mdast-util-to-hast@12.3.0: - resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==} + resolution: + { + integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==, + } mdast-util-to-hast@13.1.0: - resolution: {integrity: sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==} + resolution: + { + integrity: sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==, + } mdast-util-to-markdown@1.5.0: - resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==} + resolution: + { + integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==, + } mdast-util-to-string@1.1.0: - resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} + resolution: + { + integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==, + } mdast-util-to-string@3.2.0: - resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==} + resolution: + { + integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==, + } mdast-util-toc@6.1.1: - resolution: {integrity: sha512-Er21728Kow8hehecK2GZtb7Ny3omcoPUVrmObiSUwmoRYVZaXLR751QROEFjR8W/vAQdHMLj49Lz20J55XaNpw==} + resolution: + { + integrity: sha512-Er21728Kow8hehecK2GZtb7Ny3omcoPUVrmObiSUwmoRYVZaXLR751QROEFjR8W/vAQdHMLj49Lz20J55XaNpw==, + } mdn-data@2.0.14: - resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + resolution: + { + integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==, + } mdn-data@2.0.4: - resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} + resolution: + { + integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==, + } mdurl@2.0.0: - resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} + resolution: + { + integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==, + } media-typer@0.3.0: - resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==, + } + engines: { node: ">= 0.6" } memfs@3.5.3: - resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} - engines: {node: '>= 4.0.0'} + resolution: + { + integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==, + } + engines: { node: ">= 4.0.0" } memoize-one@5.2.1: - resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} + resolution: + { + integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==, + } memoize-one@6.0.0: - resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==} + resolution: + { + integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==, + } memoizerific@1.11.3: - resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==} + resolution: + { + integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==, + } memory-cache@0.2.0: - resolution: {integrity: sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==} + resolution: + { + integrity: sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==, + } meow@8.1.2: - resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==, + } + engines: { node: ">=10" } meow@9.0.0: - resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==, + } + engines: { node: ">=10" } merge-descriptors@1.0.1: - resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + resolution: + { + integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==, + } merge-options@3.0.4: - resolution: {integrity: sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==, + } + engines: { node: ">=10" } merge-source-map@1.1.0: - resolution: {integrity: sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==} + resolution: + { + integrity: sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==, + } merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + resolution: + { + integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, + } merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, + } + engines: { node: ">= 8" } merkle-lib@2.0.10: - resolution: {integrity: sha512-XrNQvUbn1DL5hKNe46Ccs+Tu3/PYOlrcZILuGUhb95oKBPjc/nmIC8D462PQkipVDGKRvwhn+QFg2cCdIvmDJA==} + resolution: + { + integrity: sha512-XrNQvUbn1DL5hKNe46Ccs+Tu3/PYOlrcZILuGUhb95oKBPjc/nmIC8D462PQkipVDGKRvwhn+QFg2cCdIvmDJA==, + } mermaid@10.9.0: - resolution: {integrity: sha512-swZju0hFox/B/qoLKK0rOxxgh8Cf7rJSfAUc1u8fezVihYMvrJAS45GzAxTVf4Q+xn9uMgitBcmWk7nWGXOs/g==} + resolution: + { + integrity: sha512-swZju0hFox/B/qoLKK0rOxxgh8Cf7rJSfAUc1u8fezVihYMvrJAS45GzAxTVf4Q+xn9uMgitBcmWk7nWGXOs/g==, + } methods@1.1.2: - resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==, + } + engines: { node: ">= 0.6" } + + metro-babel-transformer@0.80.12: + resolution: + { + integrity: sha512-YZziRs0MgA3pzCkkvOoQRXjIoVjvrpi/yRlJnObyIvMP6lFdtyG4nUGIwGY9VXnBvxmXD6mPY2e+NSw6JAyiRg==, + } + engines: { node: ">=18" } metro-babel-transformer@0.80.8: - resolution: {integrity: sha512-TTzNwRZb2xxyv4J/+yqgtDAP2qVqH3sahsnFu6Xv4SkLqzrivtlnyUbaeTdJ9JjtADJUEjCbgbFgUVafrXdR9Q==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-TTzNwRZb2xxyv4J/+yqgtDAP2qVqH3sahsnFu6Xv4SkLqzrivtlnyUbaeTdJ9JjtADJUEjCbgbFgUVafrXdR9Q==, + } + engines: { node: ">=18" } + + metro-cache-key@0.80.12: + resolution: + { + integrity: sha512-o4BspKnugg/pE45ei0LGHVuBJXwRgruW7oSFAeSZvBKA/sGr0UhOGY3uycOgWInnS3v5yTTfiBA9lHlNRhsvGA==, + } + engines: { node: ">=18" } metro-cache-key@0.80.8: - resolution: {integrity: sha512-qWKzxrLsRQK5m3oH8ePecqCc+7PEhR03cJE6Z6AxAj0idi99dHOSitTmY0dclXVB9vP2tQIAE8uTd8xkYGk8fA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-qWKzxrLsRQK5m3oH8ePecqCc+7PEhR03cJE6Z6AxAj0idi99dHOSitTmY0dclXVB9vP2tQIAE8uTd8xkYGk8fA==, + } + engines: { node: ">=18" } + + metro-cache@0.80.12: + resolution: + { + integrity: sha512-p5kNHh2KJ0pbQI/H7ZBPCEwkyNcSz7OUkslzsiIWBMPQGFJ/xArMwkV7I+GJcWh+b4m6zbLxE5fk6fqbVK1xGA==, + } + engines: { node: ">=18" } metro-cache@0.80.8: - resolution: {integrity: sha512-5svz+89wSyLo7BxdiPDlwDTgcB9kwhNMfNhiBZPNQQs1vLFXxOkILwQiV5F2EwYT9DEr6OPZ0hnJkZfRQ8lDYQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-5svz+89wSyLo7BxdiPDlwDTgcB9kwhNMfNhiBZPNQQs1vLFXxOkILwQiV5F2EwYT9DEr6OPZ0hnJkZfRQ8lDYQ==, + } + engines: { node: ">=18" } + + metro-config@0.80.12: + resolution: + { + integrity: sha512-4rwOWwrhm62LjB12ytiuR5NgK1ZBNr24/He8mqCsC+HXZ+ATbrewLNztzbAZHtFsrxP4D4GLTGgh96pCpYLSAQ==, + } + engines: { node: ">=18" } + peerDependencies: + metro-transform-worker: "*" + peerDependenciesMeta: + metro-transform-worker: + optional: true metro-config@0.80.8: - resolution: {integrity: sha512-VGQJpfJawtwRzGzGXVUoohpIkB0iPom4DmSbAppKfumdhtLA8uVeEPp2GM61kL9hRvdbMhdWA7T+hZFDlo4mJA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-VGQJpfJawtwRzGzGXVUoohpIkB0iPom4DmSbAppKfumdhtLA8uVeEPp2GM61kL9hRvdbMhdWA7T+hZFDlo4mJA==, + } + engines: { node: ">=18" } peerDependencies: - metro-transform-worker: '*' + metro-transform-worker: "*" peerDependenciesMeta: metro-transform-worker: optional: true + metro-core@0.80.12: + resolution: + { + integrity: sha512-QqdJ/yAK+IpPs2HU/h5v2pKEdANBagSsc6DRSjnwSyJsCoHlmyJKCaCJ7KhWGx+N4OHxh37hoA8fc2CuZbx0Fw==, + } + engines: { node: ">=18" } + metro-core@0.80.8: - resolution: {integrity: sha512-g6lud55TXeISRTleW6SHuPFZHtYrpwNqbyFIVd9j9Ofrb5IReiHp9Zl8xkAfZQp8v6ZVgyXD7c130QTsCz+vBw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-g6lud55TXeISRTleW6SHuPFZHtYrpwNqbyFIVd9j9Ofrb5IReiHp9Zl8xkAfZQp8v6ZVgyXD7c130QTsCz+vBw==, + } + engines: { node: ">=18" } + + metro-file-map@0.80.12: + resolution: + { + integrity: sha512-sYdemWSlk66bWzW2wp79kcPMzwuG32x1ZF3otI0QZTmrnTaaTiGyhE66P1z6KR4n2Eu5QXiABa6EWbAQv0r8bw==, + } + engines: { node: ">=18" } metro-file-map@0.80.8: - resolution: {integrity: sha512-eQXMFM9ogTfDs2POq7DT2dnG7rayZcoEgRbHPXvhUWkVwiKkro2ngcBE++ck/7A36Cj5Ljo79SOkYwHaWUDYDw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-eQXMFM9ogTfDs2POq7DT2dnG7rayZcoEgRbHPXvhUWkVwiKkro2ngcBE++ck/7A36Cj5Ljo79SOkYwHaWUDYDw==, + } + engines: { node: ">=18" } + + metro-minify-terser@0.80.12: + resolution: + { + integrity: sha512-muWzUw3y5k+9083ZoX9VaJLWEV2Jcgi+Oan0Mmb/fBNMPqP9xVDuy4pOMn/HOiGndgfh/MK7s4bsjkyLJKMnXQ==, + } + engines: { node: ">=18" } metro-minify-terser@0.80.8: - resolution: {integrity: sha512-y8sUFjVvdeUIINDuW1sejnIjkZfEF+7SmQo0EIpYbWmwh+kq/WMj74yVaBWuqNjirmUp1YNfi3alT67wlbBWBQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-y8sUFjVvdeUIINDuW1sejnIjkZfEF+7SmQo0EIpYbWmwh+kq/WMj74yVaBWuqNjirmUp1YNfi3alT67wlbBWBQ==, + } + engines: { node: ">=18" } metro-minify-uglify@0.76.8: - resolution: {integrity: sha512-6l8/bEvtVaTSuhG1FqS0+Mc8lZ3Bl4RI8SeRIifVLC21eeSDp4CEBUWSGjpFyUDfi6R5dXzYaFnSgMNyfxADiQ==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-6l8/bEvtVaTSuhG1FqS0+Mc8lZ3Bl4RI8SeRIifVLC21eeSDp4CEBUWSGjpFyUDfi6R5dXzYaFnSgMNyfxADiQ==, + } + engines: { node: ">=16" } metro-react-native-babel-preset@0.76.8: - resolution: {integrity: sha512-Ptza08GgqzxEdK8apYsjTx2S8WDUlS2ilBlu9DR1CUcHmg4g3kOkFylZroogVAUKtpYQNYwAvdsjmrSdDNtiAg==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-Ptza08GgqzxEdK8apYsjTx2S8WDUlS2ilBlu9DR1CUcHmg4g3kOkFylZroogVAUKtpYQNYwAvdsjmrSdDNtiAg==, + } + engines: { node: ">=16" } peerDependencies: - '@babel/core': '*' + "@babel/core": "*" metro-react-native-babel-preset@0.77.0: - resolution: {integrity: sha512-HPPD+bTxADtoE4y/4t1txgTQ1LVR6imOBy7RMHUsqMVTbekoi8Ph5YI9vKX2VMPtVWeFt0w9YnCSLPa76GcXsA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-HPPD+bTxADtoE4y/4t1txgTQ1LVR6imOBy7RMHUsqMVTbekoi8Ph5YI9vKX2VMPtVWeFt0w9YnCSLPa76GcXsA==, + } + engines: { node: ">=18" } peerDependencies: - '@babel/core': '*' + "@babel/core": "*" metro-react-native-babel-transformer@0.77.0: - resolution: {integrity: sha512-uCV1Kt4ebY9/hT7ayDGMDgIsrbyxiBHNP+q0LGxscOx3D/QODv1z+WhfC4Hy0/1wDCGV3l0EQrfLqM+7qpjsWA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-uCV1Kt4ebY9/hT7ayDGMDgIsrbyxiBHNP+q0LGxscOx3D/QODv1z+WhfC4Hy0/1wDCGV3l0EQrfLqM+7qpjsWA==, + } + engines: { node: ">=18" } peerDependencies: - '@babel/core': '*' + "@babel/core": "*" + + metro-resolver@0.80.12: + resolution: + { + integrity: sha512-PR24gYRZnYHM3xT9pg6BdbrGbM/Cu1TcyIFBVlAk7qDAuHkUNQ1nMzWumWs+kwSvtd9eZGzHoucGJpTUEeLZAw==, + } + engines: { node: ">=18" } metro-resolver@0.80.8: - resolution: {integrity: sha512-JdtoJkP27GGoZ2HJlEsxs+zO7jnDUCRrmwXJozTlIuzLHMRrxgIRRby9fTCbMhaxq+iA9c+wzm3iFb4NhPmLbQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-JdtoJkP27GGoZ2HJlEsxs+zO7jnDUCRrmwXJozTlIuzLHMRrxgIRRby9fTCbMhaxq+iA9c+wzm3iFb4NhPmLbQ==, + } + engines: { node: ">=18" } + + metro-runtime@0.80.12: + resolution: + { + integrity: sha512-LIx7+92p5rpI0i6iB4S4GBvvLxStNt6fF0oPMaUd1Weku7jZdfkCZzmrtDD9CSQ6EPb0T9NUZoyXIxlBa3wOCw==, + } + engines: { node: ">=18" } metro-runtime@0.80.8: - resolution: {integrity: sha512-2oScjfv6Yb79PelU1+p8SVrCMW9ZjgEiipxq7jMRn8mbbtWzyv3g8Mkwr+KwOoDFI/61hYPUbY8cUnu278+x1g==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-2oScjfv6Yb79PelU1+p8SVrCMW9ZjgEiipxq7jMRn8mbbtWzyv3g8Mkwr+KwOoDFI/61hYPUbY8cUnu278+x1g==, + } + engines: { node: ">=18" } + + metro-source-map@0.80.12: + resolution: + { + integrity: sha512-o+AXmE7hpvM8r8MKsx7TI21/eerYYy2DCDkWfoBkv+jNkl61khvDHlQn0cXZa6lrcNZiZkl9oHSMcwLLIrFmpw==, + } + engines: { node: ">=18" } metro-source-map@0.80.8: - resolution: {integrity: sha512-+OVISBkPNxjD4eEKhblRpBf463nTMk3KMEeYS8Z4xM/z3qujGJGSsWUGRtH27+c6zElaSGtZFiDMshEb8mMKQg==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-+OVISBkPNxjD4eEKhblRpBf463nTMk3KMEeYS8Z4xM/z3qujGJGSsWUGRtH27+c6zElaSGtZFiDMshEb8mMKQg==, + } + engines: { node: ">=18" } + + metro-symbolicate@0.80.12: + resolution: + { + integrity: sha512-/dIpNdHksXkGHZXARZpL7doUzHqSNxgQ8+kQGxwpJuHnDhGkENxB5PS2QBaTDdEcmyTMjS53CN1rl9n1gR6fmw==, + } + engines: { node: ">=18" } + hasBin: true metro-symbolicate@0.80.8: - resolution: {integrity: sha512-nwhYySk79jQhwjL9QmOUo4wS+/0Au9joEryDWw7uj4kz2yvw1uBjwmlql3BprQCBzRdB3fcqOP8kO8Es+vE31g==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-nwhYySk79jQhwjL9QmOUo4wS+/0Au9joEryDWw7uj4kz2yvw1uBjwmlql3BprQCBzRdB3fcqOP8kO8Es+vE31g==, + } + engines: { node: ">=18" } hasBin: true + metro-transform-plugins@0.80.12: + resolution: + { + integrity: sha512-WQWp00AcZvXuQdbjQbx1LzFR31IInlkCDYJNRs6gtEtAyhwpMMlL2KcHmdY+wjDO9RPcliZ+Xl1riOuBecVlPA==, + } + engines: { node: ">=18" } + metro-transform-plugins@0.80.8: - resolution: {integrity: sha512-sSu8VPL9Od7w98MftCOkQ1UDeySWbsIAS5I54rW22BVpPnI3fQ42srvqMLaJUQPjLehUanq8St6OMBCBgH/UWw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-sSu8VPL9Od7w98MftCOkQ1UDeySWbsIAS5I54rW22BVpPnI3fQ42srvqMLaJUQPjLehUanq8St6OMBCBgH/UWw==, + } + engines: { node: ">=18" } + + metro-transform-worker@0.80.12: + resolution: + { + integrity: sha512-KAPFN1y3eVqEbKLx1I8WOarHPqDMUa8WelWxaJCNKO/yHCP26zELeqTJvhsQup+8uwB6EYi/sp0b6TGoh6lOEA==, + } + engines: { node: ">=18" } metro-transform-worker@0.80.8: - resolution: {integrity: sha512-+4FG3TQk3BTbNqGkFb2uCaxYTfsbuFOCKMMURbwu0ehCP8ZJuTUramkaNZoATS49NSAkRgUltgmBa4YaKZ5mqw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-+4FG3TQk3BTbNqGkFb2uCaxYTfsbuFOCKMMURbwu0ehCP8ZJuTUramkaNZoATS49NSAkRgUltgmBa4YaKZ5mqw==, + } + engines: { node: ">=18" } + + metro@0.80.12: + resolution: + { + integrity: sha512-1UsH5FzJd9quUsD1qY+zUG4JY3jo3YEMxbMYH9jT6NK3j4iORhlwTK8fYTfAUBhDKjgLfKjAh7aoazNE23oIRA==, + } + engines: { node: ">=18" } + hasBin: true metro@0.80.8: - resolution: {integrity: sha512-in7S0W11mg+RNmcXw+2d9S3zBGmCARDxIwoXJAmLUQOQoYsRP3cpGzyJtc7WOw8+FXfpgXvceD0u+PZIHXEL7g==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-in7S0W11mg+RNmcXw+2d9S3zBGmCARDxIwoXJAmLUQOQoYsRP3cpGzyJtc7WOw8+FXfpgXvceD0u+PZIHXEL7g==, + } + engines: { node: ">=18" } hasBin: true micromark-core-commonmark@1.1.0: - resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==} + resolution: + { + integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==, + } micromark-core-commonmark@2.0.0: - resolution: {integrity: sha512-jThOz/pVmAYUtkroV3D5c1osFXAMv9e0ypGDOIZuCeAe91/sD6BoE2Sjzt30yuXtwOYUmySOhMas/PVyh02itA==} + resolution: + { + integrity: sha512-jThOz/pVmAYUtkroV3D5c1osFXAMv9e0ypGDOIZuCeAe91/sD6BoE2Sjzt30yuXtwOYUmySOhMas/PVyh02itA==, + } micromark-extension-gfm-autolink-literal@1.0.5: - resolution: {integrity: sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==} + resolution: + { + integrity: sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==, + } micromark-extension-gfm-footnote@1.1.2: - resolution: {integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==} + resolution: + { + integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==, + } micromark-extension-gfm-strikethrough@1.0.7: - resolution: {integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==} + resolution: + { + integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==, + } micromark-extension-gfm-table@1.0.7: - resolution: {integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==} + resolution: + { + integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==, + } micromark-extension-gfm-tagfilter@1.0.2: - resolution: {integrity: sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==} + resolution: + { + integrity: sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==, + } micromark-extension-gfm-task-list-item@1.0.5: - resolution: {integrity: sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==} + resolution: + { + integrity: sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==, + } micromark-extension-gfm@2.0.3: - resolution: {integrity: sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==} + resolution: + { + integrity: sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==, + } micromark-extension-math@2.1.2: - resolution: {integrity: sha512-es0CcOV89VNS9wFmyn+wyFTKweXGW4CEvdaAca6SWRWPyYCbBisnjaHLjWO4Nszuiud84jCpkHsqAJoa768Pvg==} + resolution: + { + integrity: sha512-es0CcOV89VNS9wFmyn+wyFTKweXGW4CEvdaAca6SWRWPyYCbBisnjaHLjWO4Nszuiud84jCpkHsqAJoa768Pvg==, + } micromark-extension-mdx-expression@1.0.8: - resolution: {integrity: sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==} + resolution: + { + integrity: sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==, + } micromark-extension-mdx-jsx@1.0.5: - resolution: {integrity: sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==} + resolution: + { + integrity: sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==, + } micromark-extension-mdx-md@1.0.1: - resolution: {integrity: sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==} + resolution: + { + integrity: sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==, + } micromark-extension-mdxjs-esm@1.0.5: - resolution: {integrity: sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==} + resolution: + { + integrity: sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==, + } micromark-extension-mdxjs@1.0.1: - resolution: {integrity: sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==} + resolution: + { + integrity: sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==, + } micromark-factory-destination@1.1.0: - resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==} + resolution: + { + integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==, + } micromark-factory-destination@2.0.0: - resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==} + resolution: + { + integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==, + } micromark-factory-label@1.1.0: - resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==} + resolution: + { + integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==, + } micromark-factory-label@2.0.0: - resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==} + resolution: + { + integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==, + } micromark-factory-mdx-expression@1.0.9: - resolution: {integrity: sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==} + resolution: + { + integrity: sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==, + } micromark-factory-space@1.1.0: - resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==} + resolution: + { + integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==, + } micromark-factory-space@2.0.0: - resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==} + resolution: + { + integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==, + } micromark-factory-title@1.1.0: - resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==} + resolution: + { + integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==, + } micromark-factory-title@2.0.0: - resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==} + resolution: + { + integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==, + } micromark-factory-whitespace@1.1.0: - resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==} + resolution: + { + integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==, + } micromark-factory-whitespace@2.0.0: - resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==} + resolution: + { + integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==, + } micromark-util-character@1.2.0: - resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==} + resolution: + { + integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==, + } micromark-util-character@2.1.0: - resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} + resolution: + { + integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==, + } micromark-util-chunked@1.1.0: - resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==} + resolution: + { + integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==, + } micromark-util-chunked@2.0.0: - resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==} + resolution: + { + integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==, + } micromark-util-classify-character@1.1.0: - resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==} + resolution: + { + integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==, + } micromark-util-classify-character@2.0.0: - resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==} + resolution: + { + integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==, + } micromark-util-combine-extensions@1.1.0: - resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==} + resolution: + { + integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==, + } micromark-util-combine-extensions@2.0.0: - resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==} + resolution: + { + integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==, + } micromark-util-decode-numeric-character-reference@1.1.0: - resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==} + resolution: + { + integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==, + } micromark-util-decode-numeric-character-reference@2.0.1: - resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==} + resolution: + { + integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==, + } micromark-util-decode-string@1.1.0: - resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==} + resolution: + { + integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==, + } micromark-util-encode@1.1.0: - resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==} + resolution: + { + integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==, + } micromark-util-encode@2.0.0: - resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} + resolution: + { + integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==, + } micromark-util-events-to-acorn@1.2.3: - resolution: {integrity: sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==} + resolution: + { + integrity: sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==, + } micromark-util-html-tag-name@1.2.0: - resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==} + resolution: + { + integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==, + } micromark-util-html-tag-name@2.0.0: - resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==} + resolution: + { + integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==, + } micromark-util-normalize-identifier@1.1.0: - resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==} + resolution: + { + integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==, + } micromark-util-normalize-identifier@2.0.0: - resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==} + resolution: + { + integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==, + } micromark-util-resolve-all@1.1.0: - resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==} + resolution: + { + integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==, + } micromark-util-resolve-all@2.0.0: - resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==} + resolution: + { + integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==, + } micromark-util-sanitize-uri@1.2.0: - resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==} + resolution: + { + integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==, + } micromark-util-sanitize-uri@2.0.0: - resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} + resolution: + { + integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==, + } micromark-util-subtokenize@1.1.0: - resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==} + resolution: + { + integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==, + } micromark-util-subtokenize@2.0.0: - resolution: {integrity: sha512-vc93L1t+gpR3p8jxeVdaYlbV2jTYteDje19rNSS/H5dlhxUYll5Fy6vJ2cDwP8RnsXi818yGty1ayP55y3W6fg==} + resolution: + { + integrity: sha512-vc93L1t+gpR3p8jxeVdaYlbV2jTYteDje19rNSS/H5dlhxUYll5Fy6vJ2cDwP8RnsXi818yGty1ayP55y3W6fg==, + } micromark-util-symbol@1.1.0: - resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==} + resolution: + { + integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==, + } micromark-util-symbol@2.0.0: - resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==} + resolution: + { + integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==, + } micromark-util-types@1.1.0: - resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==} + resolution: + { + integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==, + } micromark-util-types@2.0.0: - resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==} + resolution: + { + integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==, + } micromark@3.2.0: - resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} + resolution: + { + integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==, + } micromark@4.0.0: - resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} + resolution: + { + integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==, + } micromatch@4.0.5: - resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, + } + engines: { node: ">=8.6" } micromatch@4.0.7: - resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==, + } + engines: { node: ">=8.6" } miller-rabin@4.0.1: - resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==} + resolution: + { + integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==, + } hasBin: true mime-db@1.33.0: - resolution: {integrity: sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==, + } + engines: { node: ">= 0.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-types@2.1.18: - resolution: {integrity: sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==, + } + 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 mime@2.6.0: - resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==, + } + engines: { node: ">=4.0.0" } hasBin: true mimic-fn@1.2.0: - resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==, + } + engines: { node: ">=4" } mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, + } + engines: { node: ">=6" } mimic-fn@3.1.0: - resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==, + } + engines: { node: ">=8" } mimic-fn@4.0.0: - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==, + } + engines: { node: ">=12" } mimic-response@1.0.1: - resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==, + } + engines: { node: ">=4" } mimic-response@3.1.0: - resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==, + } + engines: { node: ">=10" } min-document@2.19.0: - resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==} + resolution: + { + integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==, + } 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" } mini-css-extract-plugin@2.8.1: - resolution: {integrity: sha512-/1HDlyFRxWIZPI1ZpgqlZ8jMw/1Dp/dl3P0L1jtZ+zVcHqwPhGwaJwKL00WVgfnBy6PWCde9W65or7IIETImuA==} - engines: {node: '>= 12.13.0'} + resolution: + { + integrity: sha512-/1HDlyFRxWIZPI1ZpgqlZ8jMw/1Dp/dl3P0L1jtZ+zVcHqwPhGwaJwKL00WVgfnBy6PWCde9W65or7IIETImuA==, + } + engines: { node: ">= 12.13.0" } peerDependencies: webpack: ^5.0.0 minimalistic-assert@1.0.1: - resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + resolution: + { + integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==, + } minimalistic-crypto-utils@1.0.1: - resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} + resolution: + { + integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==, + } 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@8.0.4: - resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==, + } + engines: { node: ">=16 || 14 >=14.17" } minimatch@9.0.3: - resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==, + } + engines: { node: ">=16 || 14 >=14.17" } minimatch@9.0.4: - resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==, + } + engines: { node: ">=16 || 14 >=14.17" } minimist-options@4.1.0: - resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==, + } + engines: { node: ">= 6" } minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + resolution: + { + integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, + } minipass-collect@1.0.2: - resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==, + } + engines: { node: ">= 8" } + + minipass-collect@2.0.1: + resolution: + { + integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==, + } + engines: { node: ">=16 || 14 >=14.17" } minipass-flush@1.0.5: - resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==, + } + engines: { node: ">= 8" } minipass-pipeline@1.2.4: - resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==, + } + engines: { node: ">=8" } minipass@2.9.0: - resolution: {integrity: sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==} + resolution: + { + integrity: sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==, + } minipass@3.1.6: - resolution: {integrity: sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==, + } + engines: { node: ">=8" } minipass@3.3.6: - resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==, + } + engines: { node: ">=8" } minipass@4.2.8: - resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==, + } + engines: { node: ">=8" } minipass@5.0.0: - resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==, + } + engines: { node: ">=8" } minipass@7.0.4: - resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==, + } + engines: { node: ">=16 || 14 >=14.17" } minizlib@1.3.3: - resolution: {integrity: sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==} + resolution: + { + integrity: sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==, + } minizlib@2.1.2: - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==, + } + engines: { node: ">= 8" } miscreant@0.3.2: - resolution: {integrity: sha512-fL9KxsQz9BJB2KGPMHFrReioywkiomBiuaLk6EuChijK0BsJsIKJXdVomR+/bPj5mvbFD6wM0CM3bZio9g7OHA==} + resolution: + { + integrity: sha512-fL9KxsQz9BJB2KGPMHFrReioywkiomBiuaLk6EuChijK0BsJsIKJXdVomR+/bPj5mvbFD6wM0CM3bZio9g7OHA==, + } mixin-object@2.0.1: - resolution: {integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==, + } + engines: { node: ">=0.10.0" } mkdirp-classic@0.5.3: - resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} + resolution: + { + integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==, + } mkdirp-promise@5.0.1: - resolution: {integrity: sha512-Hepn5kb1lJPtVW84RFT40YG1OddBNTOVUZR2bzQUHc+Z03en8/3uX0+060JDhcEzyO08HmipsN9DcnFMxhIL9w==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-Hepn5kb1lJPtVW84RFT40YG1OddBNTOVUZR2bzQUHc+Z03en8/3uX0+060JDhcEzyO08HmipsN9DcnFMxhIL9w==, + } + engines: { node: ">=4" } deprecated: This package is broken and no longer maintained. 'mkdirp' itself supports promises now, please switch to that. mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + resolution: + { + integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==, + } hasBin: true mkdirp@1.0.4: - resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==, + } + engines: { node: ">=10" } hasBin: true mock-fs@4.14.0: - resolution: {integrity: sha512-qYvlv/exQ4+svI3UOvPUpLDF0OMX5euvUH0Ny4N5QyRyhNdgAgUrVH3iUINSzEPLvx0kbo/Bp28GJKIqvE7URw==} + resolution: + { + integrity: sha512-qYvlv/exQ4+svI3UOvPUpLDF0OMX5euvUH0Ny4N5QyRyhNdgAgUrVH3iUINSzEPLvx0kbo/Bp28GJKIqvE7URw==, + } mock-socket@9.3.1: - resolution: {integrity: sha512-qxBgB7Qa2sEQgHFjj0dSigq7fX4k6Saisd5Nelwp2q8mlbAFh5dHV9JTTlF8viYJLSSWgMCZFUom8PJcMNBoJw==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-qxBgB7Qa2sEQgHFjj0dSigq7fX4k6Saisd5Nelwp2q8mlbAFh5dHV9JTTlF8viYJLSSWgMCZFUom8PJcMNBoJw==, + } + engines: { node: ">= 8" } modify-filename@1.1.0: - resolution: {integrity: sha512-EickqnKq3kVVaZisYuCxhtKbZjInCuwgwZWyAmRIp1NTMhri7r3380/uqwrUHfaDiPzLVTuoNy4whX66bxPVog==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-EickqnKq3kVVaZisYuCxhtKbZjInCuwgwZWyAmRIp1NTMhri7r3380/uqwrUHfaDiPzLVTuoNy4whX66bxPVog==, + } + engines: { node: ">=0.10.0" } module-alias@2.2.3: - resolution: {integrity: sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q==} + resolution: + { + integrity: sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q==, + } module-details-from-path@1.0.3: - resolution: {integrity: sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==} + resolution: + { + integrity: sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==, + } moment@2.29.1: - resolution: {integrity: sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==} + resolution: + { + integrity: sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==, + } moment@2.30.1: - resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==} + resolution: + { + integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==, + } moo-color@1.0.3: - resolution: {integrity: sha512-i/+ZKXMDf6aqYtBhuOcej71YSlbjT3wCO/4H1j8rPvxDJEifdwgg5MaFyu6iYAT8GBZJg2z0dkgK4YMzvURALQ==} + resolution: + { + integrity: sha512-i/+ZKXMDf6aqYtBhuOcej71YSlbjT3wCO/4H1j8rPvxDJEifdwgg5MaFyu6iYAT8GBZJg2z0dkgK4YMzvURALQ==, + } morgan@1.10.0: - resolution: {integrity: sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==, + } + engines: { node: ">= 0.8.0" } mri@1.1.4: - resolution: {integrity: sha512-6y7IjGPm8AzlvoUrwAaw1tLnUBudaS3752vcd8JtrpGGQn+rXIe63LFVHm/YMwtqAuh+LJPCFdlLYPWM1nYn6w==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-6y7IjGPm8AzlvoUrwAaw1tLnUBudaS3752vcd8JtrpGGQn+rXIe63LFVHm/YMwtqAuh+LJPCFdlLYPWM1nYn6w==, + } + engines: { node: ">=4" } mri@1.2.0: - resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==, + } + engines: { node: ">=4" } 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.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + resolution: + { + integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, + } ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + resolution: + { + integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, + } msw@2.2.12: - resolution: {integrity: sha512-thmjEipUvr+XGawcNOh4T8+T2TN3qKWPfF0Ewx6ub1HIATXBsjOhnjV6Wx2BmmFThKEtYYC+RygrvkpG4DzoZw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-thmjEipUvr+XGawcNOh4T8+T2TN3qKWPfF0Ewx6ub1HIATXBsjOhnjV6Wx2BmmFThKEtYYC+RygrvkpG4DzoZw==, + } + engines: { node: ">=18" } hasBin: true peerDependencies: - typescript: '>= 4.7.x' + typescript: ">= 4.7.x" peerDependenciesMeta: typescript: optional: true msw@2.2.13: - resolution: {integrity: sha512-ljFf1xZsU0b4zv1l7xzEmC6OZA6yD06hcx0H+dc8V0VypaP3HGYJa1rMLjQbBWl32ptGhcfwcPCWDB1wjmsftw==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-ljFf1xZsU0b4zv1l7xzEmC6OZA6yD06hcx0H+dc8V0VypaP3HGYJa1rMLjQbBWl32ptGhcfwcPCWDB1wjmsftw==, + } + engines: { node: ">=18" } hasBin: true peerDependencies: - typescript: '>= 4.7.x' + typescript: ">= 4.7.x" peerDependenciesMeta: typescript: optional: true msw@2.3.4: - resolution: {integrity: sha512-sHMlwrajgmZSA2l1o7qRSe+azm/I+x9lvVVcOxAzi4vCtH8uVPJk1K5BQYDkzGl+tt0RvM9huEXXdeGrgcc79g==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-sHMlwrajgmZSA2l1o7qRSe+azm/I+x9lvVVcOxAzi4vCtH8uVPJk1K5BQYDkzGl+tt0RvM9huEXXdeGrgcc79g==, + } + engines: { node: ">=18" } hasBin: true peerDependencies: - typescript: '>= 4.7.x' + typescript: ">= 4.7.x" peerDependenciesMeta: typescript: optional: true multi-sort-stream@1.0.4: - resolution: {integrity: sha512-hAZ8JOEQFbgdLe8HWZbb7gdZg0/yAIHF00Qfo3kd0rXFv96nXe+/bPTrKHZ2QMHugGX4FiAyET1Lt+jiB+7Qlg==} + resolution: + { + integrity: sha512-hAZ8JOEQFbgdLe8HWZbb7gdZg0/yAIHF00Qfo3kd0rXFv96nXe+/bPTrKHZ2QMHugGX4FiAyET1Lt+jiB+7Qlg==, + } multibase@0.6.1: - resolution: {integrity: sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw==} + resolution: + { + integrity: sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw==, + } deprecated: This module has been superseded by the multiformats module multibase@0.7.0: - resolution: {integrity: sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==} + resolution: + { + integrity: sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==, + } deprecated: This module has been superseded by the multiformats module multicast-dns@7.2.5: - resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} + resolution: + { + integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==, + } hasBin: true multicodec@0.5.7: - resolution: {integrity: sha512-PscoRxm3f+88fAtELwUnZxGDkduE2HD9Q6GHUOywQLjOGT/HAdhjLDYNZ1e7VR0s0TP0EwZ16LNUTFpoBGivOA==} + resolution: + { + integrity: sha512-PscoRxm3f+88fAtELwUnZxGDkduE2HD9Q6GHUOywQLjOGT/HAdhjLDYNZ1e7VR0s0TP0EwZ16LNUTFpoBGivOA==, + } deprecated: This module has been superseded by the multiformats module multicodec@1.0.4: - resolution: {integrity: sha512-NDd7FeS3QamVtbgfvu5h7fd1IlbaC4EQ0/pgU4zqE2vdHCmBGsUa0TiM8/TdSeG6BMPC92OOCf8F1ocE/Wkrrg==} + resolution: + { + integrity: sha512-NDd7FeS3QamVtbgfvu5h7fd1IlbaC4EQ0/pgU4zqE2vdHCmBGsUa0TiM8/TdSeG6BMPC92OOCf8F1ocE/Wkrrg==, + } deprecated: This module has been superseded by the multiformats module multiformats@13.1.0: - resolution: {integrity: sha512-HzdtdBwxsIkzpeXzhQ5mAhhuxcHbjEHH+JQoxt7hG/2HGFjjwyolLo7hbaexcnhoEuV4e0TNJ8kkpMjiEYY4VQ==} + resolution: + { + integrity: sha512-HzdtdBwxsIkzpeXzhQ5mAhhuxcHbjEHH+JQoxt7hG/2HGFjjwyolLo7hbaexcnhoEuV4e0TNJ8kkpMjiEYY4VQ==, + } multiformats@9.9.0: - resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==} + resolution: + { + integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==, + } multihashes@0.4.21: - resolution: {integrity: sha512-uVSvmeCWf36pU2nB4/1kzYZjsXD9vofZKpgudqkceYY5g2aZZXJ5r9lxuzoRLl1OAp28XljXsEJ/X/85ZsKmKw==} + resolution: + { + integrity: sha512-uVSvmeCWf36pU2nB4/1kzYZjsXD9vofZKpgudqkceYY5g2aZZXJ5r9lxuzoRLl1OAp28XljXsEJ/X/85ZsKmKw==, + } multipipe@4.0.0: - resolution: {integrity: sha512-jzcEAzFXoWwWwUbvHCNPwBlTz3WCWe/jPcXSmTfbo/VjRwRTfvLZ/bdvtiTdqCe8d4otCSsPCbhGYcX+eggpKQ==} + resolution: + { + integrity: sha512-jzcEAzFXoWwWwUbvHCNPwBlTz3WCWe/jPcXSmTfbo/VjRwRTfvLZ/bdvtiTdqCe8d4otCSsPCbhGYcX+eggpKQ==, + } mustache@4.0.0: - resolution: {integrity: sha512-FJgjyX/IVkbXBXYUwH+OYwQKqWpFPLaLVESd70yHjSDunwzV2hZOoTBvPf4KLoxesUzzyfTH6F784Uqd7Wm5yA==} - engines: {npm: '>=1.4.0'} + resolution: + { + integrity: sha512-FJgjyX/IVkbXBXYUwH+OYwQKqWpFPLaLVESd70yHjSDunwzV2hZOoTBvPf4KLoxesUzzyfTH6F784Uqd7Wm5yA==, + } + engines: { npm: ">=1.4.0" } hasBin: true mute-stream@0.0.7: - resolution: {integrity: sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==} + resolution: + { + integrity: sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==, + } mute-stream@1.0.0: - resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + resolution: + { + integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } mv@2.1.1: - resolution: {integrity: sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==, + } + engines: { node: ">=0.8.0" } mz@2.7.0: - resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + resolution: + { + integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==, + } nan@2.19.0: - resolution: {integrity: sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw==} + resolution: + { + integrity: sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw==, + } nan@2.20.0: - resolution: {integrity: sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==} + resolution: + { + integrity: sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==, + } nano-json-stream-parser@0.1.2: - resolution: {integrity: sha512-9MqxMH/BSJC7dnLsEMPyfN5Dvoo49IsPFYMcHw3Bcfc2kN0lpHRBSzlMSVx4HGyJ7s9B31CyBTVehWJoQ8Ctew==} + resolution: + { + integrity: sha512-9MqxMH/BSJC7dnLsEMPyfN5Dvoo49IsPFYMcHw3Bcfc2kN0lpHRBSzlMSVx4HGyJ7s9B31CyBTVehWJoQ8Ctew==, + } nanoassert@1.1.0: - resolution: {integrity: sha512-C40jQ3NzfkP53NsO8kEOFd79p4b9kDXQMwgiY1z8ZwrDZgUyom0AHwGegF4Dm99L+YoYhuaB0ceerUcXmqr1rQ==} + resolution: + { + integrity: sha512-C40jQ3NzfkP53NsO8kEOFd79p4b9kDXQMwgiY1z8ZwrDZgUyom0AHwGegF4Dm99L+YoYhuaB0ceerUcXmqr1rQ==, + } nanoassert@2.0.0: - resolution: {integrity: sha512-7vO7n28+aYO4J+8w96AzhmU8G+Y/xpPDJz/se19ICsqj/momRbb9mh9ZUtkoJ5X3nTnPdhEJyc0qnM6yAsHBaA==} + resolution: + { + integrity: sha512-7vO7n28+aYO4J+8w96AzhmU8G+Y/xpPDJz/se19ICsqj/momRbb9mh9ZUtkoJ5X3nTnPdhEJyc0qnM6yAsHBaA==, + } nanoid@3.3.7: - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + resolution: + { + integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==, + } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true napi-build-utils@1.0.2: - resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} + resolution: + { + integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==, + } natural-compare-lite@1.4.0: - resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} + resolution: + { + integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==, + } natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + resolution: + { + integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, + } ncp@2.0.0: - resolution: {integrity: sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==} + resolution: + { + integrity: sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==, + } hasBin: true near-abi@0.1.1: - resolution: {integrity: sha512-RVDI8O+KVxRpC3KycJ1bpfVj9Zv+xvq9PlW1yIFl46GhrnLw83/72HqHGjGDjQ8DtltkcpSjY9X3YIGZ+1QyzQ==} + resolution: + { + integrity: sha512-RVDI8O+KVxRpC3KycJ1bpfVj9Zv+xvq9PlW1yIFl46GhrnLw83/72HqHGjGDjQ8DtltkcpSjY9X3YIGZ+1QyzQ==, + } near-api-js@3.0.2: - resolution: {integrity: sha512-o8rgHH5ZV+V9grZTu4GSILupq41JyU3Mt/G6rZ2pBybHA2ozkfp9oIXKRqC4mCkbUtYLy//YoXuLRGLsRDlB2w==} + resolution: + { + integrity: sha512-o8rgHH5ZV+V9grZTu4GSILupq41JyU3Mt/G6rZ2pBybHA2ozkfp9oIXKRqC4mCkbUtYLy//YoXuLRGLsRDlB2w==, + } negotiator@0.6.3: - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==, + } + engines: { node: ">= 0.6" } neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + resolution: + { + integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==, + } nested-error-stacks@2.0.1: - resolution: {integrity: sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==} + resolution: + { + integrity: sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==, + } next-mdx-remote@4.4.1: - resolution: {integrity: sha512-1BvyXaIou6xy3XoNF4yaMZUCb6vD2GTAa5ciOa6WoO+gAUTYsb1K4rI/HSC2ogAWLrb/7VSV52skz07vOzmqIQ==} - engines: {node: '>=14', npm: '>=7'} + resolution: + { + integrity: sha512-1BvyXaIou6xy3XoNF4yaMZUCb6vD2GTAa5ciOa6WoO+gAUTYsb1K4rI/HSC2ogAWLrb/7VSV52skz07vOzmqIQ==, + } + engines: { node: ">=14", npm: ">=7" } peerDependencies: - react: '>=16.x <=18.x' - react-dom: '>=16.x <=18.x' + react: ">=16.x <=18.x" + react-dom: ">=16.x <=18.x" next-seo@6.5.0: - resolution: {integrity: sha512-MfzUeWTN/x/rsKp/1n0213eojO97lIl0unxqbeCY+6pAucViHDA8GSLRRcXpgjsSmBxfCFdfpu7LXbt4ANQoNQ==} + resolution: + { + integrity: sha512-MfzUeWTN/x/rsKp/1n0213eojO97lIl0unxqbeCY+6pAucViHDA8GSLRRcXpgjsSmBxfCFdfpu7LXbt4ANQoNQ==, + } peerDependencies: next: ^8.1.1-canary.54 || >=9.0.0 - react: '>=16.0.0' - react-dom: '>=16.0.0' + react: ">=16.0.0" + react-dom: ">=16.0.0" next-themes@0.2.1: - resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==} + resolution: + { + integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==, + } peerDependencies: - next: '*' - react: '*' - react-dom: '*' + next: "*" + react: "*" + react-dom: "*" next-tick@1.1.0: - resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} + resolution: + { + integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==, + } next@13.2.4: - resolution: {integrity: sha512-g1I30317cThkEpvzfXujf0O4wtaQHtDCLhlivwlTJ885Ld+eOgcz7r3TGQzeU+cSRoNHtD8tsJgzxVdYojFssw==} - engines: {node: '>=14.6.0'} + resolution: + { + integrity: sha512-g1I30317cThkEpvzfXujf0O4wtaQHtDCLhlivwlTJ885Ld+eOgcz7r3TGQzeU+cSRoNHtD8tsJgzxVdYojFssw==, + } + engines: { node: ">=14.6.0" } hasBin: true peerDependencies: - '@opentelemetry/api': ^1.4.0 - fibers: '>= 3.1.0' + "@opentelemetry/api": ^1.4.0 + fibers: ">= 3.1.0" node-sass: ^6.0.0 || ^7.0.0 react: ^18.2.0 react-dom: ^18.2.0 sass: ^1.3.0 peerDependenciesMeta: - '@opentelemetry/api': + "@opentelemetry/api": optional: true fibers: optional: true @@ -24288,93 +36407,150 @@ packages: optional: true next@14.2.12: - resolution: {integrity: sha512-cDOtUSIeoOvt1skKNihdExWMTybx3exnvbFbb9ecZDIxlvIbREQzt9A5Km3Zn3PfU+IFjyYGsHS+lN9VInAGKA==} - engines: {node: '>=18.17.0'} + resolution: + { + integrity: sha512-cDOtUSIeoOvt1skKNihdExWMTybx3exnvbFbb9ecZDIxlvIbREQzt9A5Km3Zn3PfU+IFjyYGsHS+lN9VInAGKA==, + } + engines: { node: ">=18.17.0" } hasBin: true peerDependencies: - '@opentelemetry/api': ^1.1.0 - '@playwright/test': ^1.41.2 + "@opentelemetry/api": ^1.1.0 + "@playwright/test": ^1.41.2 react: ^18.2.0 react-dom: ^18.2.0 sass: ^1.3.0 peerDependenciesMeta: - '@opentelemetry/api': + "@opentelemetry/api": optional: true - '@playwright/test': + "@playwright/test": optional: true sass: optional: true nextra-theme-docs@2.13.4: - resolution: {integrity: sha512-2XOoMfwBCTYBt8ds4ZHftt9Wyf2XsykiNo02eir/XEYB+sGeUoE77kzqfidjEOKCSzOHYbK9BDMcg2+B/2vYRw==} + resolution: + { + integrity: sha512-2XOoMfwBCTYBt8ds4ZHftt9Wyf2XsykiNo02eir/XEYB+sGeUoE77kzqfidjEOKCSzOHYbK9BDMcg2+B/2vYRw==, + } peerDependencies: - next: '>=9.5.3' + next: ">=9.5.3" nextra: 2.13.4 - react: '>=16.13.1' - react-dom: '>=16.13.1' + react: ">=16.13.1" + react-dom: ">=16.13.1" nextra@2.13.4: - resolution: {integrity: sha512-7of2rSBxuUa3+lbMmZwG9cqgftcoNOVQLTT6Rxf3EhBR9t1EI7b43dted8YoqSNaigdE3j1CoyNkX8N/ZzlEpw==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-7of2rSBxuUa3+lbMmZwG9cqgftcoNOVQLTT6Rxf3EhBR9t1EI7b43dted8YoqSNaigdE3j1CoyNkX8N/ZzlEpw==, + } + engines: { node: ">=16" } peerDependencies: - next: '>=9.5.3' - react: '>=16.13.1' - react-dom: '>=16.13.1' + next: ">=9.5.3" + react: ">=16.13.1" + react-dom: ">=16.13.1" nice-try@1.0.5: - resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} + resolution: + { + integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==, + } no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + resolution: + { + integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==, + } nocache@2.1.0: - resolution: {integrity: sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==, + } + engines: { node: ">=4.0.0" } nocache@3.0.4: - resolution: {integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==, + } + engines: { node: ">=12.0.0" } nock@13.5.4: - resolution: {integrity: sha512-yAyTfdeNJGGBFxWdzSKCBYxs5FxLbCg5X5Q4ets974hcQzG1+qCxvIyOo4j2Ry6MUlhWVMX4OoYDefAIIwupjw==} - engines: {node: '>= 10.13'} + resolution: + { + integrity: sha512-yAyTfdeNJGGBFxWdzSKCBYxs5FxLbCg5X5Q4ets974hcQzG1+qCxvIyOo4j2Ry6MUlhWVMX4OoYDefAIIwupjw==, + } + engines: { node: ">= 10.13" } node-abi@3.56.0: - resolution: {integrity: sha512-fZjdhDOeRcaS+rcpve7XuwHBmktS1nS1gzgghwKUQQ8nTy2FdSDr6ZT8k6YhvlJeHmmQMYiT/IH9hfco5zeW2Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-fZjdhDOeRcaS+rcpve7XuwHBmktS1nS1gzgghwKUQQ8nTy2FdSDr6ZT8k6YhvlJeHmmQMYiT/IH9hfco5zeW2Q==, + } + engines: { node: ">=10" } node-abort-controller@3.1.1: - resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} + resolution: + { + integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==, + } node-addon-api@1.7.2: - resolution: {integrity: sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==} + resolution: + { + integrity: sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==, + } node-addon-api@2.0.2: - resolution: {integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==} + resolution: + { + integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==, + } node-addon-api@3.2.1: - resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} + resolution: + { + integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==, + } node-addon-api@5.1.0: - resolution: {integrity: sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==} + resolution: + { + integrity: sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==, + } node-addon-api@6.1.0: - resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==} + resolution: + { + integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==, + } node-dir@0.1.17: - resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} - engines: {node: '>= 0.10.5'} + resolution: + { + integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==, + } + engines: { node: ">= 0.10.5" } node-domexception@1.0.0: - resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} - engines: {node: '>=10.5.0'} + resolution: + { + integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==, + } + engines: { node: ">=10.5.0" } node-fetch-native@1.6.4: - resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} + resolution: + { + integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==, + } node-fetch@2.6.13: - resolution: {integrity: sha512-StxNAxh15zr77QvvkmveSQ8uCQ4+v5FkvNTj0OESmiHu+VRi/gXArXtkWMElOsOUNLtUEvI4yS+rdtOHZTwlQA==} - engines: {node: 4.x || >=6.0.0} + resolution: + { + integrity: sha512-StxNAxh15zr77QvvkmveSQ8uCQ4+v5FkvNTj0OESmiHu+VRi/gXArXtkWMElOsOUNLtUEvI4yS+rdtOHZTwlQA==, + } + engines: { node: 4.x || >=6.0.0 } peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: @@ -24382,8 +36558,11 @@ packages: optional: true node-fetch@2.6.7: - resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} - engines: {node: 4.x || >=6.0.0} + resolution: + { + integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==, + } + engines: { node: 4.x || >=6.0.0 } peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: @@ -24391,8 +36570,11 @@ packages: optional: true 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: @@ -24400,919 +36582,1610 @@ packages: optional: true node-fetch@3.3.1: - resolution: {integrity: sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } node-fetch@3.3.2: - resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } node-forge@1.3.1: - resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} - engines: {node: '>= 6.13.0'} + resolution: + { + integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==, + } + engines: { node: ">= 6.13.0" } node-gyp-build@4.8.0: - resolution: {integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==} + resolution: + { + integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==, + } hasBin: true node-hid@2.1.2: - resolution: {integrity: sha512-qhCyQqrPpP93F/6Wc/xUR7L8mAJW0Z6R7HMQV8jCHHksAxNDe/4z4Un/H9CpLOT+5K39OPyt9tIQlavxWES3lg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-qhCyQqrPpP93F/6Wc/xUR7L8mAJW0Z6R7HMQV8jCHHksAxNDe/4z4Un/H9CpLOT+5K39OPyt9tIQlavxWES3lg==, + } + engines: { node: ">=10" } hasBin: true node-html-parser@5.4.2: - resolution: {integrity: sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==} + resolution: + { + integrity: sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==, + } node-int64@0.4.0: - resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} + resolution: + { + integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==, + } node-ipc@9.2.1: - resolution: {integrity: sha512-mJzaM6O3xHf9VT8BULvJSbdVbmHUKRNOH7zDDkCrA1/T+CVjq2WVIDfLt0azZRXpgArJtl3rtmEozrbXPZ9GaQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-mJzaM6O3xHf9VT8BULvJSbdVbmHUKRNOH7zDDkCrA1/T+CVjq2WVIDfLt0azZRXpgArJtl3rtmEozrbXPZ9GaQ==, + } + engines: { node: ">=8.0.0" } node-libs-react-native@1.2.1: - resolution: {integrity: sha512-2LkPntNVa5MInMxtP7fW9F/uGo7KZCURI5/YoNn9/qOGIQpxEqnsndQWAPipsw8+ZVrIxPGkKEgJ2sSdvz0NKQ==} + resolution: + { + integrity: sha512-2LkPntNVa5MInMxtP7fW9F/uGo7KZCURI5/YoNn9/qOGIQpxEqnsndQWAPipsw8+ZVrIxPGkKEgJ2sSdvz0NKQ==, + } node-modules-regexp@1.0.0: - resolution: {integrity: sha512-JMaRS9L4wSRIR+6PTVEikTrq/lMGEZR43a48ETeilY0Q0iMwVnccMFrUM1k+tNzmYuIU0Vh710bCUqHX+/+ctQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-JMaRS9L4wSRIR+6PTVEikTrq/lMGEZR43a48ETeilY0Q0iMwVnccMFrUM1k+tNzmYuIU0Vh710bCUqHX+/+ctQ==, + } + engines: { node: ">=0.10.0" } node-preload@0.2.1: - resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==, + } + engines: { node: ">=8" } node-releases@2.0.14: - resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + resolution: + { + integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==, + } node-stream-zip@1.15.0: - resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==} - engines: {node: '>=0.12.0'} + resolution: + { + integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==, + } + engines: { node: ">=0.12.0" } node-version-matches@2.0.1: - resolution: {integrity: sha512-oqk6+05FC0dNVY5NuXuhPEMq+m1b9ZjS9SIhVE9EjwCHZspnmjSO8npbKAEieinR8GeEgbecoQcYIvI/Kwcf6Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-oqk6+05FC0dNVY5NuXuhPEMq+m1b9ZjS9SIhVE9EjwCHZspnmjSO8npbKAEieinR8GeEgbecoQcYIvI/Kwcf6Q==, + } + engines: { node: ">=8" } node-version@1.2.0: - resolution: {integrity: sha512-ma6oU4Sk0qOoKEAymVoTvk8EdXEobdS7m/mAGhDJ8Rouugho48crHBORAmy5BoOcv8wraPM6xumapQp5hl4iIQ==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-ma6oU4Sk0qOoKEAymVoTvk8EdXEobdS7m/mAGhDJ8Rouugho48crHBORAmy5BoOcv8wraPM6xumapQp5hl4iIQ==, + } + engines: { node: ">=6.0.0" } nodemon@3.1.0: - resolution: {integrity: sha512-xqlktYlDMCepBJd43ZQhjWwMw2obW/JRvkrLxq5RCNcuDDX1DbcPT+qT1IlIIdf+DhnWs90JpTMe+Y5KxOchvA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-xqlktYlDMCepBJd43ZQhjWwMw2obW/JRvkrLxq5RCNcuDDX1DbcPT+qT1IlIIdf+DhnWs90JpTMe+Y5KxOchvA==, + } + engines: { node: ">=10" } hasBin: true nofilter@3.1.0: - resolution: {integrity: sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==} - engines: {node: '>=12.19'} + resolution: + { + integrity: sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==, + } + engines: { node: ">=12.19" } non-layered-tidy-tree-layout@2.0.2: - resolution: {integrity: sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==} + resolution: + { + integrity: sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==, + } nopt@1.0.10: - resolution: {integrity: sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==} + resolution: + { + integrity: sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==, + } hasBin: true normalize-package-data@2.5.0: - resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + resolution: + { + integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==, + } normalize-package-data@3.0.3: - resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==, + } + engines: { node: ">=10" } 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" } normalize-url@4.5.1: - resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==, + } + engines: { node: ">=8" } normalize-url@6.1.0: - resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==, + } + engines: { node: ">=10" } normalize-wheel@1.0.1: - resolution: {integrity: sha512-1OnlAPZ3zgrk8B91HyRj+eVv+kS5u+Z0SCsak6Xil/kmgEia50ga7zfkumayonZrImffAxPU/5WcyGhzetHNPA==} + resolution: + { + integrity: sha512-1OnlAPZ3zgrk8B91HyRj+eVv+kS5u+Z0SCsak6Xil/kmgEia50ga7zfkumayonZrImffAxPU/5WcyGhzetHNPA==, + } npm-package-arg@7.0.0: - resolution: {integrity: sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==} + resolution: + { + integrity: sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==, + } npm-run-path@2.0.2: - resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==, + } + engines: { node: ">=4" } 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 } npm-to-yarn@2.2.1: - resolution: {integrity: sha512-O/j/ROyX0KGLG7O6Ieut/seQ0oiTpHF2tXAcFbpdTLQFiaNtkyTXXocM1fwpaa60dg1qpWj0nHlbNhx6qwuENQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-O/j/ROyX0KGLG7O6Ieut/seQ0oiTpHF2tXAcFbpdTLQFiaNtkyTXXocM1fwpaa60dg1qpWj0nHlbNhx6qwuENQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } nth-check@1.0.2: - resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} + resolution: + { + integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==, + } 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==, + } number-is-nan@1.0.1: - resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==, + } + engines: { node: ">=0.10.0" } number-to-bn@1.7.0: - resolution: {integrity: sha512-wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==} - engines: {node: '>=6.5.0', npm: '>=3'} + resolution: + { + integrity: sha512-wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==, + } + engines: { node: ">=6.5.0", npm: ">=3" } numeral@2.0.6: - resolution: {integrity: sha512-qaKRmtYPZ5qdw4jWJD6bxEf1FJEqllJrwxCLIm0sQU/A7v2/czigzOb+C2uSiFsa9lBUzeH7M1oK+Q+OLxL3kA==} + resolution: + { + integrity: sha512-qaKRmtYPZ5qdw4jWJD6bxEf1FJEqllJrwxCLIm0sQU/A7v2/czigzOb+C2uSiFsa9lBUzeH7M1oK+Q+OLxL3kA==, + } nwsapi@2.2.7: - resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==} + resolution: + { + integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==, + } nyc@15.1.0: - resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} - engines: {node: '>=8.9'} + resolution: + { + integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==, + } + engines: { node: ">=8.9" } hasBin: true nypm@0.3.8: - resolution: {integrity: sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==} - engines: {node: ^14.16.0 || >=16.10.0} + resolution: + { + integrity: sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==, + } + engines: { node: ^14.16.0 || >=16.10.0 } hasBin: true oauth-sign@0.9.0: - resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} + resolution: + { + integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==, + } + + ob1@0.80.12: + resolution: + { + integrity: sha512-VMArClVT6LkhUGpnuEoBuyjG9rzUyEzg4PDkav6wK1cLhOK02gPCYFxoiB4mqVnrMhDpIzJcrGNAMVi9P+hXrw==, + } + engines: { node: ">=18" } ob1@0.80.8: - resolution: {integrity: sha512-QHJQk/lXMmAW8I7AIM3in1MSlwe1umR72Chhi8B7Xnq6mzjhBKkA6Fy/zAhQnGkA4S912EPCEvTij5yh+EQTAA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-QHJQk/lXMmAW8I7AIM3in1MSlwe1umR72Chhi8B7Xnq6mzjhBKkA6Fy/zAhQnGkA4S912EPCEvTij5yh+EQTAA==, + } + engines: { node: ">=18" } 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@2.2.0: - resolution: {integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==, + } + engines: { node: ">= 6" } 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.1: - resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + resolution: + { + integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==, + } object-is@1.1.6: - resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==, + } + engines: { node: ">= 0.4" } object-keys@0.2.0: - resolution: {integrity: sha512-XODjdR2pBh/1qrjPcbSeSgEtKbYo7LqYNq64/TPuCf7j9SfDD3i21yatKoIy39yIWNvVM59iutfQQpCv1RfFzA==} + resolution: + { + integrity: sha512-XODjdR2pBh/1qrjPcbSeSgEtKbYo7LqYNq64/TPuCf7j9SfDD3i21yatKoIy39yIWNvVM59iutfQQpCv1RfFzA==, + } deprecated: Please update to the latest object-keys 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.5: - resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==, + } + engines: { node: ">= 0.4" } object.entries@1.1.8: - resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==, + } + 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.getownpropertydescriptors@2.1.8: - resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==, + } + engines: { node: ">= 0.8" } object.groupby@1.0.3: - resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==, + } + engines: { node: ">= 0.4" } object.hasown@1.1.4: - resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==, + } + engines: { node: ">= 0.4" } object.values@1.2.0: - resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==, + } + engines: { node: ">= 0.4" } objectorarray@1.0.5: - resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==} + resolution: + { + integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==, + } oboe@2.1.5: - resolution: {integrity: sha512-zRFWiF+FoicxEs3jNI/WYUrVEgA7DeET/InK0XQuudGHRg8iIob3cNPrJTKaz4004uaA9Pbe+Dwa8iluhjLZWA==} + resolution: + { + integrity: sha512-zRFWiF+FoicxEs3jNI/WYUrVEgA7DeET/InK0XQuudGHRg8iIob3cNPrJTKaz4004uaA9Pbe+Dwa8iluhjLZWA==, + } obuf@1.1.2: - resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} + resolution: + { + integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==, + } octal@1.0.0: - resolution: {integrity: sha512-nnda7W8d+A3vEIY+UrDQzzboPf1vhs4JYVhff5CDkq9QNoZY7Xrxeo/htox37j9dZf7yNHevZzqtejWgy1vCqQ==} + resolution: + { + integrity: sha512-nnda7W8d+A3vEIY+UrDQzzboPf1vhs4JYVhff5CDkq9QNoZY7Xrxeo/htox37j9dZf7yNHevZzqtejWgy1vCqQ==, + } octokit-auth-probot@2.0.0: - resolution: {integrity: sha512-bxidVIyxYJ+hWkG24pchPrN6mJdQrklZ2Acu+oGmZlh9aRONsIrw0KNW5W7QC2VlkxsFQwb9lnV+vH0BcEhnLQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-bxidVIyxYJ+hWkG24pchPrN6mJdQrklZ2Acu+oGmZlh9aRONsIrw0KNW5W7QC2VlkxsFQwb9lnV+vH0BcEhnLQ==, + } + engines: { node: ">=18" } peerDependencies: - '@octokit/core': '>=5' + "@octokit/core": ">=5" ohash@1.1.3: - resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} + resolution: + { + integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==, + } on-exit-leak-free@2.1.2: - resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==, + } + engines: { node: ">=14.0.0" } on-finished@2.3.0: - resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==, + } + engines: { node: ">= 0.8" } 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==, + } one-time@1.0.0: - resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==} + resolution: + { + integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==, + } onetime@2.0.1: - resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==, + } + engines: { node: ">=4" } 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" } only@0.0.2: - resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==} + resolution: + { + integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==, + } open@6.4.0: - resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==, + } + engines: { node: ">=8" } open@7.4.2: - resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==, + } + engines: { node: ">=8" } 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" } opencollective-postinstall@2.0.3: - resolution: {integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==} + resolution: + { + integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==, + } hasBin: true opener@1.5.2: - resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} + resolution: + { + integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==, + } hasBin: true opentelemetry-instrumentation-fetch-node@1.2.0: - resolution: {integrity: sha512-aiSt/4ubOTyb1N5C2ZbGrBvaJOXIZhZvpRPYuUVxQJe27wJZqf/o65iPrqgLcgfeOLaQ8cS2Q+762jrYvniTrA==} - engines: {node: '>18.0.0'} + resolution: + { + integrity: sha512-aiSt/4ubOTyb1N5C2ZbGrBvaJOXIZhZvpRPYuUVxQJe27wJZqf/o65iPrqgLcgfeOLaQ8cS2Q+762jrYvniTrA==, + } + engines: { node: ">18.0.0" } optionator@0.8.3: - resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==, + } + engines: { node: ">= 0.8.0" } optionator@0.9.3: - resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==, + } + engines: { node: ">= 0.8.0" } ora@3.4.0: - resolution: {integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==, + } + engines: { node: ">=6" } 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" } os-browserify@0.3.0: - resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==} + resolution: + { + integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==, + } os-homedir@1.0.2: - resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==, + } + engines: { node: ">=0.10.0" } 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" } osenv@0.1.5: - resolution: {integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==} + resolution: + { + integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==, + } deprecated: This package is no longer supported. outdent@0.5.0: - resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} + resolution: + { + integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==, + } outvariant@1.4.2: - resolution: {integrity: sha512-Ou3dJ6bA/UJ5GVHxah4LnqDwZRwAmWxrG3wtrHrbGnP4RnLCtA64A4F+ae7Y8ww660JaddSoArUR5HjipWSHAQ==} + resolution: + { + integrity: sha512-Ou3dJ6bA/UJ5GVHxah4LnqDwZRwAmWxrG3wtrHrbGnP4RnLCtA64A4F+ae7Y8ww660JaddSoArUR5HjipWSHAQ==, + } ow@0.17.0: - resolution: {integrity: sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA==, + } + engines: { node: ">=10" } p-cancelable@1.1.0: - resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==, + } + engines: { node: ">=6" } p-cancelable@2.1.1: - resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==, + } + engines: { node: ">=8" } p-filter@2.1.0: - resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==, + } + engines: { node: ">=8" } p-finally@1.0.0: - resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==, + } + engines: { node: ">=4" } 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@4.0.0: - resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } p-locate@3.0.0: - resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==, + } + engines: { node: ">=6" } 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-locate@6.0.0: - resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } p-map@2.1.0: - resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==, + } + engines: { node: ">=6" } p-map@3.0.0: - resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==, + } + engines: { node: ">=8" } 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-retry@4.6.2: - resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==, + } + engines: { node: ">=8" } p-retry@6.2.0: - resolution: {integrity: sha512-JA6nkq6hKyWLLasXQXUrO4z8BUZGUt/LjlJxx8Gb2+2ntodU/SS63YZ8b0LUTbQ8ZB9iwOfhEPhg4ykKnn2KsA==} - engines: {node: '>=16.17'} + resolution: + { + integrity: sha512-JA6nkq6hKyWLLasXQXUrO4z8BUZGUt/LjlJxx8Gb2+2ntodU/SS63YZ8b0LUTbQ8ZB9iwOfhEPhg4ykKnn2KsA==, + } + engines: { node: ">=16.17" } 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-hash@4.0.0: - resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==, + } + engines: { node: ">=8" } pako@0.2.9: - resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} + resolution: + { + integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==, + } pako@1.0.11: - resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} + resolution: + { + integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==, + } 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-asn1@5.1.7: - resolution: {integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==, + } + engines: { node: ">= 0.10" } parse-entities@1.2.2: - resolution: {integrity: sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==} + resolution: + { + integrity: sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==, + } parse-entities@4.0.1: - resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} + resolution: + { + integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==, + } 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-headers@2.0.5: - resolution: {integrity: sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==} + resolution: + { + integrity: sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==, + } parse-json@4.0.0: - resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==, + } + engines: { node: ">=4" } 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" } parse-numeric-range@1.3.0: - resolution: {integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==} + resolution: + { + integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==, + } parse-path@7.0.0: - resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} + resolution: + { + integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==, + } parse-png@2.1.0: - resolution: {integrity: sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==, + } + engines: { node: ">=10" } parse-url@8.1.0: - resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} + resolution: + { + integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==, + } parse5-htmlparser2-tree-adapter@6.0.1: - resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==} + resolution: + { + integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==, + } parse5@5.1.1: - resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} + resolution: + { + integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==, + } parse5@6.0.1: - resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} + resolution: + { + integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==, + } parse5@7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + resolution: + { + integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==, + } 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==, + } password-prompt@1.1.3: - resolution: {integrity: sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==} + resolution: + { + integrity: sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==, + } path-browserify@0.0.0: - resolution: {integrity: sha512-WA3pxi1olUQcsl82W576vkqhUSGp0uBtr/381pxx5WXLp3NC+AB99hUG3aGW7H0Kg9PFr1D8wv1iJeICe+9Mhw==} + resolution: + { + integrity: sha512-WA3pxi1olUQcsl82W576vkqhUSGp0uBtr/381pxx5WXLp3NC+AB99hUG3aGW7H0Kg9PFr1D8wv1iJeICe+9Mhw==, + } path-browserify@1.0.1: - resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} + resolution: + { + integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==, + } path-exists@3.0.0: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==, + } + engines: { node: ">=4" } 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-exists@5.0.0: - resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } 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-is-inside@1.0.2: - resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==} + resolution: + { + integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==, + } path-key@2.0.1: - resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==, + } + engines: { node: ">=4" } 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.10.2: - resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==, + } + engines: { node: ">=16 || 14 >=14.17" } path-to-regexp@0.1.7: - resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} + resolution: + { + integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==, + } path-to-regexp@1.8.0: - resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==} + resolution: + { + integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==, + } path-to-regexp@2.2.1: - resolution: {integrity: sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==} + resolution: + { + integrity: sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==, + } path-to-regexp@6.2.1: - resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==} + resolution: + { + integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==, + } path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, + } + engines: { node: ">=8" } path@0.12.7: - resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} + resolution: + { + integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==, + } 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==, + } pause-stream@0.0.11: - resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==} + resolution: + { + integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==, + } pbkdf2@3.0.8: - resolution: {integrity: sha512-Bf7yBd61ChnMqPqf+PxHm34Iiq9M9Bkd/+JqzosPOqwG6FiTixtkpCs4PNd38+6/VYRvAxGe/GgPb4Q4GktFzg==} - engines: {node: '>=0.12'} + resolution: + { + integrity: sha512-Bf7yBd61ChnMqPqf+PxHm34Iiq9M9Bkd/+JqzosPOqwG6FiTixtkpCs4PNd38+6/VYRvAxGe/GgPb4Q4GktFzg==, + } + engines: { node: ">=0.12" } pbkdf2@3.1.2: - resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==} - engines: {node: '>=0.12'} + resolution: + { + integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==, + } + engines: { node: ">=0.12" } peek-stream@1.1.3: - resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==} + resolution: + { + integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==, + } pend@1.2.0: - resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + resolution: + { + integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==, + } performance-now@0.2.0: - resolution: {integrity: sha512-YHk5ez1hmMR5LOkb9iJkLKqoBlL7WD5M8ljC75ZfzXriuBIVNuecaXuU7e+hOwyqf24Wxhh7Vxgt7Hnw9288Tg==} + resolution: + { + integrity: sha512-YHk5ez1hmMR5LOkb9iJkLKqoBlL7WD5M8ljC75ZfzXriuBIVNuecaXuU7e+hOwyqf24Wxhh7Vxgt7Hnw9288Tg==, + } performance-now@2.1.0: - resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + resolution: + { + integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==, + } periscopic@3.1.0: - resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} + resolution: + { + integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==, + } pg-int8@1.0.1: - resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==, + } + engines: { node: ">=4.0.0" } pg-protocol@1.6.1: - resolution: {integrity: sha512-jPIlvgoD63hrEuihvIg+tJhoGjUsLPn6poJY9N5CnlPd91c2T18T/9zBtLxZSb1EhYxBRoZJtzScCaWlYLtktg==} + resolution: + { + integrity: sha512-jPIlvgoD63hrEuihvIg+tJhoGjUsLPn6poJY9N5CnlPd91c2T18T/9zBtLxZSb1EhYxBRoZJtzScCaWlYLtktg==, + } pg-types@2.2.0: - resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==, + } + engines: { node: ">=4" } picocolors@0.2.1: - resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==} + resolution: + { + integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==, + } picocolors@1.0.0: - resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + resolution: + { + integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, + } picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, + } + engines: { node: ">=8.6" } picomatch@3.0.1: - resolution: {integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==, + } + engines: { node: ">=10" } picomatch@4.0.2: - resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==, + } + engines: { node: ">=12" } pidtree@0.6.0: - resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==, + } + engines: { node: ">=0.10" } hasBin: true 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" } pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==, + } + engines: { node: ">=6" } pify@6.1.0: - resolution: {integrity: sha512-KocF8ve28eFjjuBKKGvzOBGzG8ew2OqOOSxTTZhirkzH7h3BI1vyzqlR0qbfcDBve1Yzo3FVlWUAtCRrbVN8Fw==} - engines: {node: '>=14.16'} + resolution: + { + integrity: sha512-KocF8ve28eFjjuBKKGvzOBGzG8ew2OqOOSxTTZhirkzH7h3BI1vyzqlR0qbfcDBve1Yzo3FVlWUAtCRrbVN8Fw==, + } + engines: { node: ">=14.16" } pinkie-promise@2.0.1: - resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==, + } + engines: { node: ">=0.10.0" } pinkie@2.0.4: - resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==, + } + engines: { node: ">=0.10.0" } pino-abstract-transport@1.2.0: - resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==} + resolution: + { + integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==, + } pino-http@10.1.0: - resolution: {integrity: sha512-rQgRaVfmZnDcOZXvZUUkiG3wDYVTSyYWAhxkGUgw3py3Y1nFXucRSLYPB5HKgG64oy9gLiDARiQxxWXnI1u3zA==} + resolution: + { + integrity: sha512-rQgRaVfmZnDcOZXvZUUkiG3wDYVTSyYWAhxkGUgw3py3Y1nFXucRSLYPB5HKgG64oy9gLiDARiQxxWXnI1u3zA==, + } pino-pretty@6.0.0: - resolution: {integrity: sha512-jyeR2fXXWc68st1DTTM5NhkHlx8p+1fKZMfm84Jwq+jSw08IwAjNaZBZR6ts69hhPOfOjg/NiE1HYW7vBRPL3A==} + resolution: + { + integrity: sha512-jyeR2fXXWc68st1DTTM5NhkHlx8p+1fKZMfm84Jwq+jSw08IwAjNaZBZR6ts69hhPOfOjg/NiE1HYW7vBRPL3A==, + } hasBin: true pino-std-serializers@7.0.0: - resolution: {integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==} + resolution: + { + integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==, + } pino@9.1.0: - resolution: {integrity: sha512-qUcgfrlyOtjwhNLdbhoL7NR4NkHjzykAPw0V2QLFbvu/zss29h4NkRnibyFzBrNCbzCOY3WZ9hhKSwfOkNggYA==} + resolution: + { + integrity: sha512-qUcgfrlyOtjwhNLdbhoL7NR4NkHjzykAPw0V2QLFbvu/zss29h4NkRnibyFzBrNCbzCOY3WZ9hhKSwfOkNggYA==, + } hasBin: true pirates@3.0.2: - resolution: {integrity: sha512-c5CgUJq6H2k6MJz72Ak1F5sN9n9wlSlJyEnwvpm9/y3WB4E3pHBDT2c6PEiS1vyJvq2bUxUAIu0EGf8Cx4Ic7Q==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-c5CgUJq6H2k6MJz72Ak1F5sN9n9wlSlJyEnwvpm9/y3WB4E3pHBDT2c6PEiS1vyJvq2bUxUAIu0EGf8Cx4Ic7Q==, + } + engines: { node: ">= 4" } 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-conf@3.1.0: - resolution: {integrity: sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==, + } + engines: { node: ">=6" } pkg-dir@3.0.0: - resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==, + } + engines: { node: ">=6" } pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==, + } + engines: { node: ">=8" } pkg-dir@5.0.0: - resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==, + } + engines: { node: ">=10" } pkg-dir@7.0.0: - resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==} - engines: {node: '>=14.16'} + resolution: + { + integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==, + } + engines: { node: ">=14.16" } pkg-up@3.1.0: - resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==, + } + engines: { node: ">=8" } platform@1.3.6: - resolution: {integrity: sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==} + resolution: + { + integrity: sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==, + } playwright-core@1.40.1: - resolution: {integrity: sha512-+hkOycxPiV534c4HhpfX6yrlawqVUzITRKwHAmYfmsVreltEl6fAZJ3DPfLMOODw0H3s1Itd6MDCWmP1fl/QvQ==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-+hkOycxPiV534c4HhpfX6yrlawqVUzITRKwHAmYfmsVreltEl6fAZJ3DPfLMOODw0H3s1Itd6MDCWmP1fl/QvQ==, + } + engines: { node: ">=16" } hasBin: true playwright-core@1.45.0: - resolution: {integrity: sha512-lZmHlFQ0VYSpAs43dRq1/nJ9G/6SiTI7VPqidld9TDefL9tX87bTKExWZZUF5PeRyqtXqd8fQi2qmfIedkwsNQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-lZmHlFQ0VYSpAs43dRq1/nJ9G/6SiTI7VPqidld9TDefL9tX87bTKExWZZUF5PeRyqtXqd8fQi2qmfIedkwsNQ==, + } + engines: { node: ">=18" } hasBin: true playwright@1.40.1: - resolution: {integrity: sha512-2eHI7IioIpQ0bS1Ovg/HszsN/XKNwEG1kbzSDDmADpclKc7CyqkHw7Mg2JCz/bbCxg25QUPcjksoMW7JcIFQmw==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-2eHI7IioIpQ0bS1Ovg/HszsN/XKNwEG1kbzSDDmADpclKc7CyqkHw7Mg2JCz/bbCxg25QUPcjksoMW7JcIFQmw==, + } + engines: { node: ">=16" } hasBin: true playwright@1.45.0: - resolution: {integrity: sha512-4z3ac3plDfYzGB6r0Q3LF8POPR20Z8D0aXcxbJvmfMgSSq1hkcgvFRXJk9rUq5H/MJ0Ktal869hhOdI/zUTeLA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-4z3ac3plDfYzGB6r0Q3LF8POPR20Z8D0aXcxbJvmfMgSSq1hkcgvFRXJk9rUq5H/MJ0Ktal869hhOdI/zUTeLA==, + } + engines: { node: ">=18" } hasBin: true plist@3.1.0: - resolution: {integrity: sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==} - engines: {node: '>=10.4.0'} + resolution: + { + integrity: sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==, + } + engines: { node: ">=10.4.0" } pngjs@3.4.0: - resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==, + } + engines: { node: ">=4.0.0" } pngjs@5.0.0: - resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==, + } + engines: { node: ">=10.13.0" } 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" } portfinder@1.0.32: - resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} - engines: {node: '>= 0.12.0'} + resolution: + { + integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==, + } + engines: { node: ">= 0.12.0" } 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-attribute-case-insensitive@5.0.2: - resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 postcss-browser-comments@4.0.0: - resolution: {integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==, + } + engines: { node: ">=8" } peerDependencies: - browserslist: '>=4' - postcss: '>=8' + browserslist: ">=4" + postcss: ">=8" postcss-calc@8.2.4: - resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} + resolution: + { + integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==, + } peerDependencies: postcss: ^8.2.2 postcss-clamp@4.1.0: - resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} - engines: {node: '>=7.6.0'} + resolution: + { + integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==, + } + engines: { node: ">=7.6.0" } peerDependencies: postcss: ^8.4.6 postcss-color-functional-notation@4.2.4: - resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 postcss-color-hex-alpha@8.0.4: - resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.4 postcss-color-rebeccapurple@7.1.1: - resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 postcss-colormin@5.3.1: - resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-convert-values@5.1.3: - resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-custom-media@8.0.2: - resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.3 postcss-custom-properties@12.1.11: - resolution: {integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 postcss-custom-selectors@6.0.3: - resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.3 postcss-dir-pseudo-class@6.0.5: - resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 postcss-discard-comments@5.1.2: - resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-discard-duplicates@5.1.0: - resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-discard-empty@5.1.1: - resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-discard-overridden@5.1.0: - resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-double-position-gradients@3.1.2: - resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 postcss-env-function@4.0.6: - resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.4 postcss-flexbugs-fixes@5.0.2: - resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==} + resolution: + { + integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==, + } peerDependencies: postcss: ^8.1.4 postcss-focus-visible@6.0.4: - resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.4 postcss-focus-within@5.0.4: - resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.4 postcss-font-variant@5.0.0: - resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} + resolution: + { + integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==, + } peerDependencies: postcss: ^8.1.0 postcss-gap-properties@3.0.5: - resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 postcss-image-set-function@4.0.7: - resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 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-initial@4.0.1: - resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==} + resolution: + { + integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==, + } 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-lab-function@4.2.1: - resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 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 @@ -25320,718 +38193,1208 @@ packages: optional: true postcss-loader@6.2.1: - resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} - engines: {node: '>= 12.13.0'} + resolution: + { + integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==, + } + engines: { node: ">= 12.13.0" } peerDependencies: postcss: ^7.0.0 || ^8.0.1 webpack: ^5.0.0 postcss-logical@5.0.4: - resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.4 postcss-media-minmax@5.0.0: - resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==, + } + engines: { node: ">=10.0.0" } peerDependencies: postcss: ^8.1.0 postcss-media-query-parser@0.2.3: - resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} + resolution: + { + integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==, + } postcss-merge-longhand@5.1.7: - resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-merge-rules@5.1.4: - resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-minify-font-values@5.1.0: - resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-minify-gradients@5.1.1: - resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-minify-params@5.1.4: - resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-minify-selectors@5.2.1: - resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-modules-extract-imports@3.0.0: - resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} - engines: {node: ^10 || ^12 || >= 14} + resolution: + { + integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==, + } + engines: { node: ^10 || ^12 || >= 14 } peerDependencies: postcss: ^8.1.0 postcss-modules-local-by-default@4.0.4: - resolution: {integrity: sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==} - engines: {node: ^10 || ^12 || >= 14} + resolution: + { + integrity: sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==, + } + engines: { node: ^10 || ^12 || >= 14 } peerDependencies: postcss: ^8.1.0 postcss-modules-scope@3.1.1: - resolution: {integrity: sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==} - engines: {node: ^10 || ^12 || >= 14} + resolution: + { + integrity: sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==, + } + engines: { node: ^10 || ^12 || >= 14 } peerDependencies: postcss: ^8.1.0 postcss-modules-values@4.0.0: - resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} - engines: {node: ^10 || ^12 || >= 14} + resolution: + { + integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==, + } + engines: { node: ^10 || ^12 || >= 14 } peerDependencies: postcss: ^8.1.0 postcss-nested@6.0.1: - resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} - engines: {node: '>=12.0'} + resolution: + { + integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==, + } + engines: { node: ">=12.0" } peerDependencies: postcss: ^8.2.14 postcss-nesting@10.2.0: - resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 postcss-normalize-charset@5.1.0: - resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-normalize-display-values@5.1.0: - resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-normalize-positions@5.1.1: - resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-normalize-repeat-style@5.1.1: - resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-normalize-string@5.1.0: - resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-normalize-timing-functions@5.1.0: - resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-normalize-unicode@5.1.1: - resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-normalize-url@5.1.0: - resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-normalize-whitespace@5.1.1: - resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-normalize@10.0.1: - resolution: {integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==} - engines: {node: '>= 12'} + resolution: + { + integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==, + } + engines: { node: ">= 12" } peerDependencies: - browserslist: '>= 4' - postcss: '>= 8' + browserslist: ">= 4" + postcss: ">= 8" postcss-opacity-percentage@1.1.3: - resolution: {integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 postcss-ordered-values@5.1.3: - resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-overflow-shorthand@3.0.4: - resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 postcss-page-break@3.0.4: - resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} + resolution: + { + integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==, + } peerDependencies: postcss: ^8 postcss-place@7.0.5: - resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 postcss-preset-env@7.8.3: - resolution: {integrity: sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 postcss-pseudo-class-any-link@7.1.6: - resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 postcss-reduce-initial@5.1.2: - resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-reduce-transforms@5.1.0: - resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-replace-overflow-wrap@4.0.0: - resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} + resolution: + { + integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==, + } peerDependencies: postcss: ^8.0.3 postcss-resolve-nested-selector@0.1.1: - resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==} + resolution: + { + integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==, + } postcss-safe-parser@6.0.0: - resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} - engines: {node: '>=12.0'} + resolution: + { + integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==, + } + engines: { node: ">=12.0" } peerDependencies: postcss: ^8.3.3 postcss-selector-not@6.0.1: - resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==} - engines: {node: ^12 || ^14 || >=16} + resolution: + { + integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==, + } + engines: { node: ^12 || ^14 || >=16 } peerDependencies: postcss: ^8.2 postcss-selector-parser@6.0.16: - resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==, + } + engines: { node: ">=4" } postcss-svgo@5.1.0: - resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-unique-selectors@5.1.1: - resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + resolution: + { + integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==, + } postcss@7.0.39: - resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==, + } + engines: { node: ">=6.0.0" } postcss@8.4.14: - resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==, + } + engines: { node: ^10 || ^12 || >=14 } postcss@8.4.31: - resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==, + } + engines: { node: ^10 || ^12 || >=14 } postcss@8.4.32: - resolution: {integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==, + } + engines: { node: ^10 || ^12 || >=14 } postcss@8.4.38: - resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==, + } + engines: { node: ^10 || ^12 || >=14 } postgres-array@2.0.0: - resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==, + } + engines: { node: ">=4" } postgres-bytea@1.0.0: - resolution: {integrity: sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==, + } + engines: { node: ">=0.10.0" } postgres-date@1.0.7: - resolution: {integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==, + } + engines: { node: ">=0.10.0" } postgres-interval@1.2.0: - resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==, + } + engines: { node: ">=0.10.0" } prando@5.1.2: - resolution: {integrity: sha512-PaJxPMw8UugKUeUq27oZ8dqW2CgysXf2MjmlyCcRq+Es8Bcxgac7+nO6/tRGKmLOnUG1GPbAATNAZmzwD1hbIA==} + resolution: + { + integrity: sha512-PaJxPMw8UugKUeUq27oZ8dqW2CgysXf2MjmlyCcRq+Es8Bcxgac7+nO6/tRGKmLOnUG1GPbAATNAZmzwD1hbIA==, + } prando@6.0.1: - resolution: {integrity: sha512-ghUWxQ1T9IJmPu6eshc3VU0OwveUtXQ33ZLXYUcz1Oc5ppKLDXKp0TBDj6b0epwhEctzcQSNGR2iHyvQSn4W5A==} + resolution: + { + integrity: sha512-ghUWxQ1T9IJmPu6eshc3VU0OwveUtXQ33ZLXYUcz1Oc5ppKLDXKp0TBDj6b0epwhEctzcQSNGR2iHyvQSn4W5A==, + } prebuild-install@7.1.2: - resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==, + } + engines: { node: ">=10" } hasBin: true preferred-pm@3.1.4: - resolution: {integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==, + } + engines: { node: ">=10" } prelude-ls@1.1.2: - resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==, + } + engines: { node: ">= 0.8.0" } 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" } prepend-http@2.0.0: - resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==, + } + engines: { node: ">=4" } prettier-linter-helpers@1.0.0: - resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==, + } + engines: { node: ">=6.0.0" } prettier@2.8.8: - resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==, + } + engines: { node: ">=10.13.0" } hasBin: true prettier@3.2.5: - resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==, + } + 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-error@4.0.0: - resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} + resolution: + { + integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==, + } + + pretty-format@24.9.0: + resolution: + { + integrity: sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==, + } + engines: { node: ">= 6" } pretty-format@26.6.2: - resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==, + } + engines: { node: ">= 10" } 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@28.1.3: - resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.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 } pretty-hrtime@1.0.3: - resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==, + } + engines: { node: ">= 0.8" } probot@13.2.2: - resolution: {integrity: sha512-wx8VoNb0ujn2k3nq0MSIUd4r7/RUn2Di3ZY07F6O5IYm3z3HNGDDX2XEreJnaZDOFjQaZ6XJbYGmiaD4SovAVQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-wx8VoNb0ujn2k3nq0MSIUd4r7/RUn2Di3ZY07F6O5IYm3z3HNGDDX2XEreJnaZDOFjQaZ6XJbYGmiaD4SovAVQ==, + } + engines: { node: ">=18" } hasBin: true process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + resolution: + { + integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, + } process-on-spawn@1.0.0: - resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==, + } + engines: { node: ">=8" } process-warning@3.0.0: - resolution: {integrity: sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==} + resolution: + { + integrity: sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==, + } 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" } progress-webpack-plugin@1.0.16: - resolution: {integrity: sha512-sdiHuuKOzELcBANHfrupYo+r99iPRyOnw15qX+rNlVUqXGfjXdH4IgxriKwG1kNJwVswKQHMdj1hYZMcb9jFaA==} - engines: {node: '>= 10.13.0'} + resolution: + { + integrity: sha512-sdiHuuKOzELcBANHfrupYo+r99iPRyOnw15qX+rNlVUqXGfjXdH4IgxriKwG1kNJwVswKQHMdj1hYZMcb9jFaA==, + } + engines: { node: ">= 10.13.0" } peerDependencies: webpack: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 progress@2.0.3: - resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==, + } + engines: { node: ">=0.4.0" } promise-inflight@1.0.1: - resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} + resolution: + { + integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==, + } peerDependencies: - bluebird: '*' + bluebird: "*" peerDependenciesMeta: bluebird: optional: true promise-polyfill@6.1.0: - resolution: {integrity: sha512-g0LWaH0gFsxovsU7R5LrrhHhWAWiHRnh1GPrhXnPgYsDkIqjRYUYSZEsej/wtleDrz5xVSIDbeKfidztp2XHFQ==} + resolution: + { + integrity: sha512-g0LWaH0gFsxovsU7R5LrrhHhWAWiHRnh1GPrhXnPgYsDkIqjRYUYSZEsej/wtleDrz5xVSIDbeKfidztp2XHFQ==, + } promise-retry@2.0.1: - resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==, + } + engines: { node: ">=10" } promise.allsettled@1.0.7: - resolution: {integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==, + } + engines: { node: ">= 0.4" } promise.prototype.finally@3.1.8: - resolution: {integrity: sha512-aVDtsXOml9iuMJzUco9J1je/UrIT3oMYfWkCTiUhkt+AvZw72q4dUZnR/R/eB3h5GeAagQVXvM1ApoYniJiwoA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-aVDtsXOml9iuMJzUco9J1je/UrIT3oMYfWkCTiUhkt+AvZw72q4dUZnR/R/eB3h5GeAagQVXvM1ApoYniJiwoA==, + } + engines: { node: ">= 0.4" } promise@7.3.1: - resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} + resolution: + { + integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==, + } promise@8.3.0: - resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} + resolution: + { + integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==, + } prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==, + } + engines: { node: ">= 6" } prop-types@15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + resolution: + { + integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==, + } propagate@2.0.1: - resolution: {integrity: sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==, + } + engines: { node: ">= 8" } proper-lockfile@3.2.0: - resolution: {integrity: sha512-iMghHHXv2bsxl6NchhEaFck8tvX3F9cknEEh1SUpguUOBjN7PAAW9BLzmbc1g/mCD1gY3EE2EABBHPJfFdHFmA==} + resolution: + { + integrity: sha512-iMghHHXv2bsxl6NchhEaFck8tvX3F9cknEEh1SUpguUOBjN7PAAW9BLzmbc1g/mCD1gY3EE2EABBHPJfFdHFmA==, + } properties@1.2.1: - resolution: {integrity: sha512-qYNxyMj1JeW54i/EWEFsM1cVwxJbtgPp8+0Wg9XjNaK6VE/c4oRi6PNu5p7w1mNXEIQIjV5Wwn8v8Gz82/QzdQ==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-qYNxyMj1JeW54i/EWEFsM1cVwxJbtgPp8+0Wg9XjNaK6VE/c4oRi6PNu5p7w1mNXEIQIjV5Wwn8v8Gz82/QzdQ==, + } + engines: { node: ">=0.10" } property-information@6.4.1: - resolution: {integrity: sha512-OHYtXfu5aI2sS2LWFSN5rgJjrQ4pCy8i1jubJLe2QvMF8JJ++HXTUIVWFLfXJoaOfvYYjk2SN8J2wFUWIGXT4w==} + resolution: + { + integrity: sha512-OHYtXfu5aI2sS2LWFSN5rgJjrQ4pCy8i1jubJLe2QvMF8JJ++HXTUIVWFLfXJoaOfvYYjk2SN8J2wFUWIGXT4w==, + } protobufjs-cli@1.1.2: - resolution: {integrity: sha512-8ivXWxT39gZN4mm4ArQyJrRgnIwZqffBWoLDsE21TmMcKI3XwJMV4lEF2WU02C4JAtgYYc2SfJIltelD8to35g==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-8ivXWxT39gZN4mm4ArQyJrRgnIwZqffBWoLDsE21TmMcKI3XwJMV4lEF2WU02C4JAtgYYc2SfJIltelD8to35g==, + } + engines: { node: ">=12.0.0" } hasBin: true peerDependencies: protobufjs: ^7.0.0 protobufjs@6.10.3: - resolution: {integrity: sha512-yvAslS0hNdBhlSKckI4R1l7wunVilX66uvrjzE4MimiAt7/qw1nLpMhZrn/ObuUTM/c3Xnfl01LYMdcSJe6dwg==} + resolution: + { + integrity: sha512-yvAslS0hNdBhlSKckI4R1l7wunVilX66uvrjzE4MimiAt7/qw1nLpMhZrn/ObuUTM/c3Xnfl01LYMdcSJe6dwg==, + } hasBin: true protobufjs@6.11.3: - resolution: {integrity: sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==} + resolution: + { + integrity: sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==, + } hasBin: true protobufjs@6.11.4: - resolution: {integrity: sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw==} + resolution: + { + integrity: sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw==, + } hasBin: true protobufjs@7.2.5: - resolution: {integrity: sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==, + } + engines: { node: ">=12.0.0" } protobufjs@7.3.2: - resolution: {integrity: sha512-RXyHaACeqXeqAKGLDl68rQKbmObRsTIn4TYVUUug1KfS47YWCo5MacGITEryugIgZqORCvJWEk4l449POg5Txg==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-RXyHaACeqXeqAKGLDl68rQKbmObRsTIn4TYVUUug1KfS47YWCo5MacGITEryugIgZqORCvJWEk4l449POg5Txg==, + } + engines: { node: ">=12.0.0" } protocols@2.0.1: - resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} + resolution: + { + integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==, + } proxy-addr@2.0.7: - resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==, + } + engines: { node: ">= 0.10" } proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + resolution: + { + integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, + } prr@0.0.0: - resolution: {integrity: sha512-LmUECmrW7RVj6mDWKjTXfKug7TFGdiz9P18HMcO4RHL+RW7MCOGNvpj5j47Rnp6ne6r4fZ2VzyUWEpKbg+tsjQ==} + resolution: + { + integrity: sha512-LmUECmrW7RVj6mDWKjTXfKug7TFGdiz9P18HMcO4RHL+RW7MCOGNvpj5j47Rnp6ne6r4fZ2VzyUWEpKbg+tsjQ==, + } prr@1.0.1: - resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} + resolution: + { + integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==, + } ps-tree@1.2.0: - resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==, + } + engines: { node: ">= 0.10" } hasBin: true pseudomap@1.0.2: - resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} + resolution: + { + integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==, + } psl@1.9.0: - resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} + resolution: + { + integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==, + } pstree.remy@1.1.8: - resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==} + resolution: + { + integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==, + } public-encrypt@4.0.3: - resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==} + resolution: + { + integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==, + } pump@2.0.1: - resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} + resolution: + { + integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==, + } pump@3.0.0: - resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + resolution: + { + integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==, + } pumpify@1.5.1: - resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} + resolution: + { + integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==, + } 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@1.4.1: - resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} + resolution: + { + integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==, + } punycode@2.1.0: - resolution: {integrity: sha512-Yxz2kRwT90aPiWEMHVYnEf4+rhwF1tBmmZ4KepCP+Wkium9JxtWnUm1nqGwpiAHr/tnTSeHqr3wb++jgSkXjhA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-Yxz2kRwT90aPiWEMHVYnEf4+rhwF1tBmmZ4KepCP+Wkium9JxtWnUm1nqGwpiAHr/tnTSeHqr3wb++jgSkXjhA==, + } + 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" } pupa@2.1.1: - resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==, + } + engines: { node: ">=8" } puppeteer-core@2.1.1: - resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==} - engines: {node: '>=8.16.0'} + resolution: + { + integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==, + } + engines: { node: ">=8.16.0" } pure-rand@6.1.0: - resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} + resolution: + { + integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==, + } pushdata-bitcoin@1.0.1: - resolution: {integrity: sha512-hw7rcYTJRAl4olM8Owe8x0fBuJJ+WGbMhQuLWOXEMN3PxPCKQHRkhfL+XG0+iXUmSHjkMmb3Ba55Mt21cZc9kQ==} + resolution: + { + integrity: sha512-hw7rcYTJRAl4olM8Owe8x0fBuJJ+WGbMhQuLWOXEMN3PxPCKQHRkhfL+XG0+iXUmSHjkMmb3Ba55Mt21cZc9kQ==, + } q@1.5.1: - resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} - engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + resolution: + { + integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==, + } + engines: { node: ">=0.6.0", teleport: ">=0.2.0" } deprecated: |- You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. + (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) qrcode-terminal@0.11.0: - resolution: {integrity: sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==} + resolution: + { + integrity: sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==, + } hasBin: true qrcode-terminal@0.12.0: - resolution: {integrity: sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==} + resolution: + { + integrity: sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==, + } hasBin: true qrcode@1.5.3: - resolution: {integrity: sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==, + } + engines: { node: ">=10.13.0" } hasBin: true qrloop@1.4.1: - resolution: {integrity: sha512-LXkwCl1Qd8imTHb+KqjMn+cHmuncyFT81AXoooWJvbG3+g9q61l9udSRPgY4cgl+5goQHuAK4teEdUF6UErYXw==} + resolution: + { + integrity: sha512-LXkwCl1Qd8imTHb+KqjMn+cHmuncyFT81AXoooWJvbG3+g9q61l9udSRPgY4cgl+5goQHuAK4teEdUF6UErYXw==, + } qs@6.11.0: - resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} - engines: {node: '>=0.6'} + resolution: + { + integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==, + } + engines: { node: ">=0.6" } qs@6.12.0: - resolution: {integrity: sha512-trVZiI6RMOkO476zLGaBIzszOdFPnCCXHPG9kn0yuS1uz6xdVxPfZdB3vUig9pxPFDM9BRAgz/YUIVQ1/vuiUg==} - engines: {node: '>=0.6'} + resolution: + { + integrity: sha512-trVZiI6RMOkO476zLGaBIzszOdFPnCCXHPG9kn0yuS1uz6xdVxPfZdB3vUig9pxPFDM9BRAgz/YUIVQ1/vuiUg==, + } + engines: { node: ">=0.6" } qs@6.5.3: - resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==} - engines: {node: '>=0.6'} + resolution: + { + integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==, + } + engines: { node: ">=0.6" } query-string@5.1.1: - resolution: {integrity: sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==, + } + engines: { node: ">=0.10.0" } 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" } querystring-es3@0.2.1: - resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==} - engines: {node: '>=0.4.x'} + resolution: + { + integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==, + } + engines: { node: ">=0.4.x" } + + querystring@0.2.1: + resolution: + { + integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==, + } + engines: { node: ">=0.4.x" } + deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + resolution: + { + integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==, + } queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + resolution: + { + integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, + } queue-tick@1.0.1: - resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==} + resolution: + { + integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==, + } queue@6.0.2: - resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==} + resolution: + { + integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==, + } quick-format-unescaped@4.0.4: - resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} + resolution: + { + integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==, + } quick-lru@4.0.1: - resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==, + } + engines: { node: ">=8" } quick-lru@5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==, + } + engines: { node: ">=10" } raf@3.4.1: - resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} + resolution: + { + integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==, + } ramda@0.29.0: - resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==} + resolution: + { + integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==, + } randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + resolution: + { + integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==, + } randomfill@1.0.4: - resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==} + resolution: + { + integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==, + } range-parser@1.2.0: - resolution: {integrity: sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==, + } + engines: { node: ">= 0.6" } 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" } raw-body@2.5.2: - resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==, + } + engines: { node: ">= 0.8" } rc@1.2.8: - resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + resolution: + { + integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==, + } hasBin: true re-resizable@6.9.11: - resolution: {integrity: sha512-a3hiLWck/NkmyLvGWUuvkAmN1VhwAz4yOhS6FdMTaxCUVN9joIWkT11wsO68coG/iEYuwn+p/7qAmfQzRhiPLQ==} + resolution: + { + integrity: sha512-a3hiLWck/NkmyLvGWUuvkAmN1VhwAz4yOhS6FdMTaxCUVN9joIWkT11wsO68coG/iEYuwn+p/7qAmfQzRhiPLQ==, + } peerDependencies: react: ^16.13.1 || ^17.0.0 || ^18.0.0 react-dom: ^16.13.1 || ^17.0.0 || ^18.0.0 react-app-polyfill@3.0.0: - resolution: {integrity: sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==, + } + engines: { node: ">=14" } 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-dev-utils@12.0.1: - resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} - engines: {node: '>=14'} - peerDependencies: - typescript: '>=2.7' - webpack: '>=4' + resolution: + { + integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==, + } + engines: { node: ">=14" } + peerDependencies: + typescript: ">=2.7" + webpack: ">=4" peerDependenciesMeta: typescript: optional: true - react-devtools-core@4.28.5: - resolution: {integrity: sha512-cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA==} + react-devtools-core@5.3.1: + resolution: + { + integrity: sha512-7FSb9meX0btdBQLwdFOwt6bGqvRPabmVMMslv8fgoSPqXyuGpgQe36kx8gR86XPw7aV1yVouTp6fyZ0EH+NfUw==, + } react-docgen-typescript@1.22.0: - resolution: {integrity: sha512-MPLbF8vzRwAG3GcjdL+OHQlhgtWsLTXs+7uJiHfEeT3Ur7IsZaNYqRTLQ9sj2nB6M6jylcPCeCmH7qbszJmecg==} + resolution: + { + integrity: sha512-MPLbF8vzRwAG3GcjdL+OHQlhgtWsLTXs+7uJiHfEeT3Ur7IsZaNYqRTLQ9sj2nB6M6jylcPCeCmH7qbszJmecg==, + } peerDependencies: - typescript: '>= 3.x' + typescript: ">= 3.x" 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.0.3: - resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==} - engines: {node: '>=16.14.0'} + resolution: + { + integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==, + } + engines: { node: ">=16.14.0" } react-dom@18.2.0: - resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} + resolution: + { + integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==, + } peerDependencies: react: ^18.2.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-dropzone@14.2.3: - resolution: {integrity: sha512-O3om8I+PkFKbxCukfIR3QAGftYXDZfOE2N1mr/7qebQJHs7U+/RSL/9xomJNpRg9kM5h9soQSdf0Gc7OHF5Fug==} - engines: {node: '>= 10.13'} + resolution: + { + integrity: sha512-O3om8I+PkFKbxCukfIR3QAGftYXDZfOE2N1mr/7qebQJHs7U+/RSL/9xomJNpRg9kM5h9soQSdf0Gc7OHF5Fug==, + } + engines: { node: ">= 10.13" } peerDependencies: - react: '>= 16.8 || 18.0.0' + react: ">= 16.8 || 18.0.0" react-easy-crop@4.7.5: - resolution: {integrity: sha512-qKfI4PuhaH1jOLC3DQfQB0cE0z+3N7bfyPkPejQmylXNb8nstfPMH+oHj3gKgpBHLFUiQp/C1rY7sVCVgtjn3Q==} + resolution: + { + integrity: sha512-qKfI4PuhaH1jOLC3DQfQB0cE0z+3N7bfyPkPejQmylXNb8nstfPMH+oHj3gKgpBHLFUiQp/C1rY7sVCVgtjn3Q==, + } peerDependencies: - react: '>=16.4.0' - react-dom: '>=16.4.0' + react: ">=16.4.0" + react-dom: ">=16.4.0" react-element-to-jsx-string@15.0.0: - resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==} + resolution: + { + integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==, + } peerDependencies: react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 react-error-overlay@6.0.11: - resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==} + resolution: + { + integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==, + } react-freeze@1.0.4: - resolution: {integrity: sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA==, + } + engines: { node: ">=10" } peerDependencies: - react: '>=17.0.0' + react: ">=17.0.0" react-i18next@11.18.6: - resolution: {integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==} - peerDependencies: - i18next: '>= 19.0.0' - react: '>= 16.8.0' - react-dom: '*' - react-native: '*' + resolution: + { + integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==, + } + peerDependencies: + i18next: ">= 19.0.0" + react: ">= 16.8.0" + react-dom: "*" + react-native: "*" peerDependenciesMeta: react-dom: optional: true @@ -26039,12 +39402,15 @@ packages: optional: true react-i18next@13.5.0: - resolution: {integrity: sha512-CFJ5NDGJ2MUyBohEHxljOq/39NQ972rh1ajnadG9BjTk+UXbHLq4z5DKEbEQBDoIhUmmbuS/fIMJKo6VOax1HA==} - peerDependencies: - i18next: '>= 23.2.3' - react: '>= 16.8.0' - react-dom: '*' - react-native: '*' + resolution: + { + integrity: sha512-CFJ5NDGJ2MUyBohEHxljOq/39NQ972rh1ajnadG9BjTk+UXbHLq4z5DKEbEQBDoIhUmmbuS/fIMJKo6VOax1HA==, + } + peerDependencies: + i18next: ">= 23.2.3" + react: ">= 16.8.0" + react-dom: "*" + react-native: "*" peerDependenciesMeta: react-dom: optional: true @@ -26052,73 +39418,118 @@ packages: optional: true react-input-autosize@3.0.0: - resolution: {integrity: sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==} + resolution: + { + integrity: sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==, + } peerDependencies: react: ^16.3.0 || ^17.0.0 react-inspector@4.0.1: - resolution: {integrity: sha512-xSiM6CE79JBqSj8Fzd9dWBHv57tLTH7OM57GP3VrE5crzVF3D5Khce9w1Xcw75OAbvrA0Mi2vBneR1OajKmXFg==} + resolution: + { + integrity: sha512-xSiM6CE79JBqSj8Fzd9dWBHv57tLTH7OM57GP3VrE5crzVF3D5Khce9w1Xcw75OAbvrA0Mi2vBneR1OajKmXFg==, + } peerDependencies: react: ^16.8.4 react-intersection-observer@8.34.0: - resolution: {integrity: sha512-TYKh52Zc0Uptp5/b4N91XydfSGKubEhgZRtcg1rhTKABXijc4Sdr1uTp5lJ8TN27jwUsdXxjHXtHa0kPj704sw==} + resolution: + { + integrity: sha512-TYKh52Zc0Uptp5/b4N91XydfSGKubEhgZRtcg1rhTKABXijc4Sdr1uTp5lJ8TN27jwUsdXxjHXtHa0kPj704sw==, + } peerDependencies: react: ^15.0.0 || ^16.0.0 || ^17.0.0|| ^18.0.0 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.1.0: - resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==} + resolution: + { + integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==, + } react-is@18.2.0: - resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} + resolution: + { + integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==, + } react-key-handler@1.2.0-beta.3: - resolution: {integrity: sha512-Isd5O3JKDbPNCERVThPyJ0tTUDkeuTrGHE4+7lNT+6isXlLykroOaGuJ8A22hq6SpbSUKaPmGhxGAFtkag7Bgg==} + resolution: + { + integrity: sha512-Isd5O3JKDbPNCERVThPyJ0tTUDkeuTrGHE4+7lNT+6isXlLykroOaGuJ8A22hq6SpbSUKaPmGhxGAFtkag7Bgg==, + } peerDependencies: react: ^16.2.0-0 react-lifecycles-compat@3.0.4: - resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} + resolution: + { + integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==, + } react-lottie@1.2.4: - resolution: {integrity: sha512-kBGxI+MIZGBf4wZhNCWwHkMcVP+kbpmrLWH/SkO0qCKc7D7eSPcxQbfpsmsCo8v2KCBYjuGSou+xTqK44D/jMg==} - engines: {npm: ^3.0.0} - peerDependencies: - prop-types: '*' - react: '>=15.0.0' + resolution: + { + integrity: sha512-kBGxI+MIZGBf4wZhNCWwHkMcVP+kbpmrLWH/SkO0qCKc7D7eSPcxQbfpsmsCo8v2KCBYjuGSou+xTqK44D/jMg==, + } + engines: { npm: ^3.0.0 } + peerDependencies: + prop-types: ^15.6.1 + react: ">=15.0.0" peerDependenciesMeta: prop-types: optional: true react-markdown@4.3.1: - resolution: {integrity: sha512-HQlWFTbDxTtNY6bjgp3C3uv1h2xcjCSi1zAEzfBW9OwJJvENSYiLXWNXN5hHLsoqai7RnZiiHzcnWdXk2Splzw==} + resolution: + { + integrity: sha512-HQlWFTbDxTtNY6bjgp3C3uv1h2xcjCSi1zAEzfBW9OwJJvENSYiLXWNXN5hHLsoqai7RnZiiHzcnWdXk2Splzw==, + } peerDependencies: react: ^15.0.0 || ^16.0.0 react-motion@0.5.2: - resolution: {integrity: sha512-9q3YAvHoUiWlP3cK0v+w1N5Z23HXMj4IF4YuvjvWegWqNPfLXsOBE/V7UvQGpXxHFKRQQcNcVQE31g9SB/6qgQ==} + resolution: + { + integrity: sha512-9q3YAvHoUiWlP3cK0v+w1N5Z23HXMj4IF4YuvjvWegWqNPfLXsOBE/V7UvQGpXxHFKRQQcNcVQE31g9SB/6qgQ==, + } peerDependencies: react: ^0.14.9 || ^15.3.0 || ^16.0.0 react-native-adjust@4.38.0: - resolution: {integrity: sha512-kNobWxemV4h+/iPCWd5fzE4cuT3rhqSaZQvPpKvLMzqxhpuCdEzaVm30T7SCs0a/StyFzlPk2D++0ktVZjt2SA==} + resolution: + { + integrity: sha512-kNobWxemV4h+/iPCWd5fzE4cuT3rhqSaZQvPpKvLMzqxhpuCdEzaVm30T7SCs0a/StyFzlPk2D++0ktVZjt2SA==, + } react-native-android-location-services-dialog-box@2.8.2: - resolution: {integrity: sha512-zBTi0xJQoF6GdImRhXOCXezYuALlPgbctqG3eOrZu63hdrlvTBhqATkb6DB5JM9kpcMbX1skMIOI3m71zKGsPA==} + resolution: + { + integrity: sha512-zBTi0xJQoF6GdImRhXOCXezYuALlPgbctqG3eOrZu63hdrlvTBhqATkb6DB5JM9kpcMbX1skMIOI3m71zKGsPA==, + } peerDependencies: - react-native: '>= 0.56.0' + react-native: ">= 0.56.0" react-native-animatable@1.3.3: - resolution: {integrity: sha512-2ckIxZQAsvWn25Ho+DK3d1mXIgj7tITkrS4pYDvx96WyOttSvzzFeQnM2od0+FUMzILbdHDsDEqZvnz1DYNQ1w==} + resolution: + { + integrity: sha512-2ckIxZQAsvWn25Ho+DK3d1mXIgj7tITkrS4pYDvx96WyOttSvzzFeQnM2od0+FUMzILbdHDsDEqZvnz1DYNQ1w==, + } peerDependencies: - react: '*' - react-native: '*' + react: "*" + react-native: "*" peerDependenciesMeta: react: optional: true @@ -26126,10 +39537,13 @@ packages: optional: true react-native-animatable@1.4.0: - resolution: {integrity: sha512-DZwaDVWm2NBvBxf7I0wXKXLKb/TxDnkV53sWhCvei1pRyTX3MVFpkvdYBknNBqPrxYuAIlPxEp7gJOidIauUkw==} + resolution: + { + integrity: sha512-DZwaDVWm2NBvBxf7I0wXKXLKb/TxDnkV53sWhCvei1pRyTX3MVFpkvdYBknNBqPrxYuAIlPxEp7gJOidIauUkw==, + } peerDependencies: - react: '*' - react-native: '*' + react: "*" + react-native: "*" peerDependenciesMeta: react: optional: true @@ -26137,26 +39551,38 @@ packages: optional: true react-native-biometrics@3.0.1: - resolution: {integrity: sha512-Ru80gXRa9KG04sl5AB9HyjLjVbduhqZVjA+AiOSGqr+fNqCDmCu9y5WEksnjbnniNLmq1yGcw+qcLXmR1ddLDQ==} + resolution: + { + integrity: sha512-Ru80gXRa9KG04sl5AB9HyjLjVbduhqZVjA+AiOSGqr+fNqCDmCu9y5WEksnjbnniNLmq1yGcw+qcLXmR1ddLDQ==, + } peerDependencies: - react-native: '>=0.60.0' + react-native: ">=0.60.0" react-native-ble-plx@3.1.2: - resolution: {integrity: sha512-QgukxgjrZYMUxyZ9w4XEiR9QdbdKLibhggE+sPRxp6q11rZG9upU5aricnVB2CiSbn164nlYx3j+GNlJKSlaLg==} - engines: {node: '>= 16.0.0'} + resolution: + { + integrity: sha512-QgukxgjrZYMUxyZ9w4XEiR9QdbdKLibhggE+sPRxp6q11rZG9upU5aricnVB2CiSbn164nlYx3j+GNlJKSlaLg==, + } + engines: { node: ">= 16.0.0" } peerDependencies: - react: '*' - react-native: '*' + react: "*" + react-native: "*" react-native-bundle-visualizer@3.1.3: - resolution: {integrity: sha512-FPnrQS3t/WM67S3fBdaQ0pvkpk/ZJOC4nZpiQCHTpjNZTUmbO5vQ4QbAlOpSayHp5n3nu1Ml/KIJaC6R5cwVng==} + resolution: + { + integrity: sha512-FPnrQS3t/WM67S3fBdaQ0pvkpk/ZJOC4nZpiQCHTpjNZTUmbO5vQ4QbAlOpSayHp5n3nu1Ml/KIJaC6R5cwVng==, + } hasBin: true - react-native-config@1.5.1: - resolution: {integrity: sha512-g1xNgt1tV95FCX+iWz6YJonxXkQX0GdD3fB8xQtR1GUBEqweB9zMROW77gi2TygmYmUkBI7LU4pES+zcTyK4HA==} + react-native-config@1.5.3: + resolution: + { + integrity: sha512-3D05Abgk5DfDw9w258EzXvX5AkU7eqj3u9H0H0L4gUga4nYg/zuupcrpGbpF4QeXBcJ84jjs6g8JaEP6VBT7Pg==, + } peerDependencies: - react-native: '*' - react-native-windows: '>=0.61' + react-native: "*" + react-native-windows: ">=0.61" peerDependenciesMeta: react-native: optional: true @@ -26164,121 +39590,172 @@ packages: optional: true react-native-crypto@2.2.0: - resolution: {integrity: sha512-eZu9Y8pa8BN9FU2pIex7MLRAi+Cd1Y6bsxfiufKh7sfraAACJvjQTeW7/zcQAT93WMfM+D0OVk+bubvkrbrUkw==} + resolution: + { + integrity: sha512-eZu9Y8pa8BN9FU2pIex7MLRAi+Cd1Y6bsxfiufKh7sfraAACJvjQTeW7/zcQAT93WMfM+D0OVk+bubvkrbrUkw==, + } peerDependencies: - react-native-randombytes: '>=2.0.0 <4.0.0' + react-native-randombytes: ">=2.0.0 <4.0.0" react-native-debugger-open@0.4.3: - resolution: {integrity: sha512-gYdVWBhQ0a/PbXgCi3T+FU4LS0ucq8QyUhDqtRd3JRr1AOyKSn1RHj+jxtda+LhfyodrIPbZXHRXL0MvZ5FLSA==} + resolution: + { + integrity: sha512-gYdVWBhQ0a/PbXgCi3T+FU4LS0ucq8QyUhDqtRd3JRr1AOyKSn1RHj+jxtda+LhfyodrIPbZXHRXL0MvZ5FLSA==, + } hasBin: true react-native-device-info@11.1.0: - resolution: {integrity: sha512-hzXJSObJdezEz0hF7MAJ3tGeoesuQWenXXt9mrQR9Mjb8kXpZ09rqSsZ/quNpJdZpQ3rYiFa3/0GFG5KNn9PBg==} + resolution: + { + integrity: sha512-hzXJSObJdezEz0hF7MAJ3tGeoesuQWenXXt9mrQR9Mjb8kXpZ09rqSsZ/quNpJdZpQ3rYiFa3/0GFG5KNn9PBg==, + } peerDependencies: - react-native: '*' + react-native: "*" react-native-easy-markdown@2.0.0: - resolution: {integrity: sha512-vGK41pZj/4lM9q8/Bqox/2qqfJVrSxLugBWDBNLuOqvxpBw/b3q4aUxCpP8nyBWv5BifrD8+OcdhC27bRvEFIw==} + resolution: + { + integrity: sha512-vGK41pZj/4lM9q8/Bqox/2qqfJVrSxLugBWDBNLuOqvxpBw/b3q4aUxCpP8nyBWv5BifrD8+OcdhC27bRvEFIw==, + } peerDependencies: - prop-types: '*' - react-native: '*' + prop-types: "*" + react-native: "*" peerDependenciesMeta: prop-types: optional: true react-native-extra-dimensions-android@1.2.5: - resolution: {integrity: sha512-eorFo9X1vEqAWUkgcZ300yKBG1wtgNeE7tdWAH2CE+P50FGTniJg5Sr6l1iPWG8ZskQOuF+KeiSTFlDa4vLfMw==} + resolution: + { + integrity: sha512-eorFo9X1vEqAWUkgcZ300yKBG1wtgNeE7tdWAH2CE+P50FGTniJg5Sr6l1iPWG8ZskQOuF+KeiSTFlDa4vLfMw==, + } react-native-fast-crypto@2.2.0: - resolution: {integrity: sha512-JXQmnXGH3HpJYZrBsR7sL6cO/W3k1pHqTYbwnwTsJ8VUYXIsIEf1T0nMk6Z+XkQNI8RIQOeWJ9AuZLai4onHZg==} + resolution: + { + integrity: sha512-JXQmnXGH3HpJYZrBsR7sL6cO/W3k1pHqTYbwnwTsJ8VUYXIsIEf1T0nMk6Z+XkQNI8RIQOeWJ9AuZLai4onHZg==, + } peerDependencies: - react-native: '>=0.47.0 <1.0.0' + react-native: ">=0.47.0 <1.0.0" react-native-fast-image@8.6.3: - resolution: {integrity: sha512-Sdw4ESidXCXOmQ9EcYguNY2swyoWmx53kym2zRsvi+VeFCHEdkO+WG1DK+6W81juot40bbfLNhkc63QnWtesNg==} + resolution: + { + integrity: sha512-Sdw4ESidXCXOmQ9EcYguNY2swyoWmx53kym2zRsvi+VeFCHEdkO+WG1DK+6W81juot40bbfLNhkc63QnWtesNg==, + } peerDependencies: react: ^17 || ^18 - react-native: '>=0.60.0' + react-native: ">=0.60.0" react-native-fast-pbkdf2@0.3.1: - resolution: {integrity: sha512-G+1EdQs+w7RhgZKXbodbGPy6zKxX3qdSe1YSh9B7x6qZLTd3dDI15R33faWoiQjrESepbfvX3M64UevBT6SDDA==} + resolution: + { + integrity: sha512-G+1EdQs+w7RhgZKXbodbGPy6zKxX3qdSe1YSh9B7x6qZLTd3dDI15R33faWoiQjrESepbfvX3M64UevBT6SDDA==, + } peerDependencies: - react: '*' - react-native: '*' - - react-native-flipper-performance-plugin@0.4.0: - resolution: {integrity: sha512-D9Z5VrktJjUenYB4X9qfKcqg9YSyQWOD7fKoxkzXoKxbyalGoWib79iD3OBHOBZEsk5RbQ006zYL7VQwA3D4Wg==} - - react-native-flipper@0.163.0: - resolution: {integrity: sha512-RG0yMlEMe/fYqaoUkhvW2HrqBuRYtq1K3me9y52RBFwPWooZTmUlWjIWGKT9VYVS9T2GGrUV9tpBA8pY9g7CSg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-native: '>0.62.0' + react: "*" + react-native: "*" react-native-gesture-handler@2.16.0: - resolution: {integrity: sha512-1hFkx7RIfeJSyTQQ0Nkv4icFVZ5+XjQkd47OgZMBFzoB7ecL+nFSz8KLi3OCWOhq+nbHpSPlSG5VF3CQNCJpWA==} + resolution: + { + integrity: sha512-1hFkx7RIfeJSyTQQ0Nkv4icFVZ5+XjQkd47OgZMBFzoB7ecL+nFSz8KLi3OCWOhq+nbHpSPlSG5VF3CQNCJpWA==, + } peerDependencies: - react: '*' - react-native: '*' + react: "*" + react-native: "*" react-native-get-random-values@1.11.0: - resolution: {integrity: sha512-4BTbDbRmS7iPdhYLRcz3PGFIpFJBwNZg9g42iwa2P6FOv9vZj/xJc678RZXnLNZzd0qd7Q3CCF6Yd+CU2eoXKQ==} + resolution: + { + integrity: sha512-4BTbDbRmS7iPdhYLRcz3PGFIpFJBwNZg9g42iwa2P6FOv9vZj/xJc678RZXnLNZzd0qd7Q3CCF6Yd+CU2eoXKQ==, + } peerDependencies: - react-native: '>=0.56' + react-native: ">=0.56" react-native-haptic-feedback@2.2.0: - resolution: {integrity: sha512-3tqJOjCguWhIrX0nkURn4yw6kXdsSDjjrvZCRjKXYGlL28hdQmoW2okAHduDTD9FWj9lA+lHgwFWgGs4aFNN7A==} + resolution: + { + integrity: sha512-3tqJOjCguWhIrX0nkURn4yw6kXdsSDjjrvZCRjKXYGlL28hdQmoW2okAHduDTD9FWj9lA+lHgwFWgGs4aFNN7A==, + } peerDependencies: - react-native: '>=0.60.0' + react-native: ">=0.60.0" react-native-image-crop-tools@1.6.4: - resolution: {integrity: sha512-GhI76SlKAI7vfUfg/UnG/MrPTe7ffwjsOowBnYYAB2npJ2ij/iAG4LRXOPlQygoY+yiCy158sYo4wmKDc0RfLQ==} + resolution: + { + integrity: sha512-GhI76SlKAI7vfUfg/UnG/MrPTe7ffwjsOowBnYYAB2npJ2ij/iAG4LRXOPlQygoY+yiCy158sYo4wmKDc0RfLQ==, + } peerDependencies: - react: '>=16.0.0' - react-native: '>=0.59.0-rc.0 <1.0.x' + react: ">=16.0.0" + react-native: ">=0.59.0-rc.0 <1.0.x" react-native-image-picker@5.7.0: - resolution: {integrity: sha512-LGBrFQzKEAt/u4z+IcY7COZA7N6lCeLQ2dMu1PubK10+d9YBRS8n/ABNj48CJhEpUhcRPt7H3iWbwIuOlcZrDA==} + resolution: + { + integrity: sha512-LGBrFQzKEAt/u4z+IcY7COZA7N6lCeLQ2dMu1PubK10+d9YBRS8n/ABNj48CJhEpUhcRPt7H3iWbwIuOlcZrDA==, + } peerDependencies: - react: '*' - react-native: '*' + react: "*" + react-native: "*" react-native-inappbrowser-reborn@3.7.0: - resolution: {integrity: sha512-Ia53jYNtFcbNaX5W3QfOmN25I7bcvuDiQmSY5zABXjy4+WI20bPc9ua09li55F8yDCjv3C99jX6vKms68mBV7g==} + resolution: + { + integrity: sha512-Ia53jYNtFcbNaX5W3QfOmN25I7bcvuDiQmSY5zABXjy4+WI20bPc9ua09li55F8yDCjv3C99jX6vKms68mBV7g==, + } peerDependencies: - react-native: '>=0.56' + react-native: ">=0.56" react-native-iphone-x-helper@1.3.1: - resolution: {integrity: sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg==} + resolution: + { + integrity: sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg==, + } peerDependencies: - react-native: '>=0.42.0' + react-native: ">=0.42.0" react-native-keyboard-aware-scroll-view@0.9.5: - resolution: {integrity: sha512-XwfRn+T/qBH9WjTWIBiJD2hPWg0yJvtaEw6RtPCa5/PYHabzBaWxYBOl0usXN/368BL1XktnZPh8C2lmTpOREA==} + resolution: + { + integrity: sha512-XwfRn+T/qBH9WjTWIBiJD2hPWg0yJvtaEw6RtPCa5/PYHabzBaWxYBOl0usXN/368BL1XktnZPh8C2lmTpOREA==, + } peerDependencies: - react-native: '>=0.48.4' + react-native: ">=0.48.4" react-native-keychain@7.0.0: - resolution: {integrity: sha512-tH26sgW4OxB/llXmhO+DajFISEUoF1Ip2+WSDMIgCt8SP1xRE81m2qFzgIOc/7StYsUERxHhDPkxvq2H0/Goig==} + resolution: + { + integrity: sha512-tH26sgW4OxB/llXmhO+DajFISEUoF1Ip2+WSDMIgCt8SP1xRE81m2qFzgIOc/7StYsUERxHhDPkxvq2H0/Goig==, + } react-native-launch-arguments@4.0.2: - resolution: {integrity: sha512-OaXXOG9jVrmb66cTV8wPdhKxaSVivOBKuYr8wgKCM5uAHkY5B6SkvydgJ3B/x8uGoWqtr87scSYYDm4MMU4rSg==} + resolution: + { + integrity: sha512-OaXXOG9jVrmb66cTV8wPdhKxaSVivOBKuYr8wgKCM5uAHkY5B6SkvydgJ3B/x8uGoWqtr87scSYYDm4MMU4rSg==, + } peerDependencies: - react: '>=16.8.1' - react-native: '>=0.60.0-rc.0 <1.0.x' + react: ">=16.8.1" + react-native: ">=0.60.0-rc.0 <1.0.x" react-native-level-fs@3.0.1: - resolution: {integrity: sha512-ffihv0Obh2zGFcpHHDlq7bQHfGPwgtmZ4No1tx9jAJF69vkQS6TI93AE2FK2qP7tsDg0DNSnn+KuJoriYilJNA==} + resolution: + { + integrity: sha512-ffihv0Obh2zGFcpHHDlq7bQHfGPwgtmZ4No1tx9jAJF69vkQS6TI93AE2FK2qP7tsDg0DNSnn+KuJoriYilJNA==, + } peerDependencies: - asyncstorage-down: '>=3.0.0 <5.0.0' + asyncstorage-down: ">=3.0.0 <5.0.0" react-native-localize@2.2.6: - resolution: {integrity: sha512-EZETlC1ZlW/4g6xfsNCwAkAw5BDL2A6zk/08JjFR/GRGxYuKRD7iP1hHn1+h6DEu+xROjPpoNeXfMER2vkTVIQ==} - peerDependencies: - react: '>=16.8.6' - react-native: '>=0.60.0' - react-native-macos: '>=0.64.0' - react-native-windows: '>=0.62.0' + resolution: + { + integrity: sha512-EZETlC1ZlW/4g6xfsNCwAkAw5BDL2A6zk/08JjFR/GRGxYuKRD7iP1hHn1+h6DEu+xROjPpoNeXfMER2vkTVIQ==, + } + peerDependencies: + react: ">=16.8.6" + react-native: ">=0.60.0" + react-native-macos: ">=0.64.0" + react-native-windows: ">=0.62.0" peerDependenciesMeta: react-native-macos: optional: true @@ -26286,653 +39763,1122 @@ packages: optional: true react-native-modal-datetime-picker@14.0.1: - resolution: {integrity: sha512-wQt4Pjxt2jiTsVhLMG0E7WrRTYBEQx2d/nUrFVCbRqJ7lrXocXaT5UZsyMpV93TnKcyut62OprbO88wYq/vh0g==} + resolution: + { + integrity: sha512-wQt4Pjxt2jiTsVhLMG0E7WrRTYBEQx2d/nUrFVCbRqJ7lrXocXaT5UZsyMpV93TnKcyut62OprbO88wYq/vh0g==, + } peerDependencies: - '@react-native-community/datetimepicker': '>=3.0.0' - react-native: '>=0.65.0' + "@react-native-community/datetimepicker": ">=3.0.0" + react-native: ">=0.65.0" react-native-modal-selector@2.1.2: - resolution: {integrity: sha512-+Cvoz/yNUFmfIkJ7xkmlLR2nhJOUhx00S6BPqp2Ruy8LkmaiNr7WMZ4BzsgzylyEgZ84Q+42HQ0v0QzJYobviA==} + resolution: + { + integrity: sha512-+Cvoz/yNUFmfIkJ7xkmlLR2nhJOUhx00S6BPqp2Ruy8LkmaiNr7WMZ4BzsgzylyEgZ84Q+42HQ0v0QzJYobviA==, + } react-native-modal@13.0.1: - resolution: {integrity: sha512-UB+mjmUtf+miaG/sDhOikRfBOv0gJdBU2ZE1HtFWp6UixW9jCk/bhGdHUgmZljbPpp0RaO/6YiMmQSSK3kkMaw==} + resolution: + { + integrity: sha512-UB+mjmUtf+miaG/sDhOikRfBOv0gJdBU2ZE1HtFWp6UixW9jCk/bhGdHUgmZljbPpp0RaO/6YiMmQSSK3kkMaw==, + } peerDependencies: - react: '*' - react-native: '>=0.65.0' + react: "*" + react-native: ">=0.65.0" react-native-navigation-bar-color@2.0.2: - resolution: {integrity: sha512-ZmpLWRocyme1au11e5ZuecMS/UCi57nlzgnioi03Q6ERMbeUOqqbWgNBaNB7SsCeqBV6fZPjo3+A64zEIpzw4w==} + resolution: + { + integrity: sha512-ZmpLWRocyme1au11e5ZuecMS/UCi57nlzgnioi03Q6ERMbeUOqqbWgNBaNB7SsCeqBV6fZPjo3+A64zEIpzw4w==, + } react-native-pager-view@6.3.0: - resolution: {integrity: sha512-ufJOoVa9pFL1J/yb4hpsCqp8n1qTlcF5VvwqvCacHX//D7hSeRscsiIXg1u1pXNWwllvACb+mqxec/3Uj2mxrA==} - peerDependencies: - react: '*' - react-native: '*' - - react-native-performance-flipper-reporter@3.0.0: - resolution: {integrity: sha512-2cESO1bn1lqd2g6r2W2EePUMdgm/EbAFhwpga9cAzpGUYmw+jpdAM1c20YkLWyoGuGWrWLvRInyy9+OvjpjIpw==} + resolution: + { + integrity: sha512-ufJOoVa9pFL1J/yb4hpsCqp8n1qTlcF5VvwqvCacHX//D7hSeRscsiIXg1u1pXNWwllvACb+mqxec/3Uj2mxrA==, + } peerDependencies: - react-native-flipper: '*' - react-native-performance: '*' + react: "*" + react-native: "*" react-native-performance@3.1.2: - resolution: {integrity: sha512-N4MtFuTW9NLszPTCWyxM33XuTg+Ubr9OKWhvCwzpaKeKFyN5zkBs8RmJOle7Nl69NgaQtO8CuxsyANUSFC7Czw==} + resolution: + { + integrity: sha512-N4MtFuTW9NLszPTCWyxM33XuTg+Ubr9OKWhvCwzpaKeKFyN5zkBs8RmJOle7Nl69NgaQtO8CuxsyANUSFC7Czw==, + } peerDependencies: - react-native: '*' + react-native: "*" react-native-qrcode-svg@6.1.1: - resolution: {integrity: sha512-98cc8fkl61g2V5cesmxjlMr1WaJZcB6dyeN8T9d/shIWtJxU8KRCinNCZNBlIvO9fxbIpo5SgK+pqSItK0+vow==} + resolution: + { + integrity: sha512-98cc8fkl61g2V5cesmxjlMr1WaJZcB6dyeN8T9d/shIWtJxU8KRCinNCZNBlIvO9fxbIpo5SgK+pqSItK0+vow==, + } peerDependencies: - react: '*' - react-native: '>=0.63.4' + react: "*" + react-native: ">=0.63.4" react-native-svg: ^12.1.0 react-native-randombytes@3.6.1: - resolution: {integrity: sha512-qxkwMbOZ0Hff1V7VqpaWrR6ItkA+oF6bnI79Qp9F3Tk8WBsdKDi6m1mi3dEdFWePoRLrhJ2L03rU0yabst1tVw==} + resolution: + { + integrity: sha512-qxkwMbOZ0Hff1V7VqpaWrR6ItkA+oF6bnI79Qp9F3Tk8WBsdKDi6m1mi3dEdFWePoRLrhJ2L03rU0yabst1tVw==, + } react-native-reanimated@3.8.1: - resolution: {integrity: sha512-EdM0vr3JEaNtqvstqESaPfOBy0gjYBkr1iEolWJ82Ax7io8y9OVUIphgsLKTB36CtR1XtmBw0RZVj7KArc7ZVA==} + resolution: + { + integrity: sha512-EdM0vr3JEaNtqvstqESaPfOBy0gjYBkr1iEolWJ82Ax7io8y9OVUIphgsLKTB36CtR1XtmBw0RZVj7KArc7ZVA==, + } + peerDependencies: + "@babel/core": ^7.0.0-0 + react: "*" + react-native: "*" + + react-native-reanimated@3.9.0: + resolution: + { + integrity: sha512-OMZV2BVmxZvm8UhlXBrESO0y/ODGTRpQRQUO7U9QXysOF9RaR8FbO6KS0x99MH19zfFTV8cLGN/vYW1dFia9Rw==, + } peerDependencies: - '@babel/core': ^7.0.0-0 - react: '*' - react-native: '*' + "@babel/core": ^7.0.0-0 + react: "*" + react-native: "*" react-native-restart@0.0.24: - resolution: {integrity: sha512-pvJNU3NwQk6bCG2gOWcQpZ4IxhtELB0K9gzmtixfsaTFbW1UXXHkJNjk1kHazcbH5hrD7QbUkR63fsAVh8X4VQ==} + resolution: + { + integrity: sha512-pvJNU3NwQk6bCG2gOWcQpZ4IxhtELB0K9gzmtixfsaTFbW1UXXHkJNjk1kHazcbH5hrD7QbUkR63fsAVh8X4VQ==, + } peerDependencies: - react: '*' - react-native: '*' + react: "*" + react-native: "*" - react-native-safe-area-context@4.9.0: - resolution: {integrity: sha512-/OJD9Pb8IURyvn+1tWTszWPJqsbZ4hyHBU9P0xhOmk7h5owSuqL0zkfagU0pg7Vh0G2NKQkaPpUKUMMCUMDh/w==} + react-native-safe-area-context@4.10.5: + resolution: + { + integrity: sha512-Wyb0Nqw2XJ6oZxW/cK8k5q7/UAhg/wbEG6UVf89rQqecDZTDA5ic//P9J6VvJRVZerzGmxWQpVuM7f+PRYUM4g==, + } peerDependencies: - react: '*' - react-native: '*' + react: "*" + react-native: "*" - react-native-screens@3.30.1: - resolution: {integrity: sha512-/muEvjocCtFb+j5J3YmLvB25+f4rIU8hnnxgGTkXcAf2omPBY8uhPjJaaFUlvj64VEoEzJcRpugbXWsjfPPIFg==} + react-native-safe-area-context@4.10.9: + resolution: + { + integrity: sha512-wz/JXV1kARWyP5q93PFNKQP03StVBimOK7rRYEJjM+blZdXbM6H7EP3XhQUb6OK620+0M1AzpcGgyTHvgSJNAw==, + } peerDependencies: - react: '*' - react-native: '*' + react: "*" + react-native: "*" - react-native-share@10.1.0: - resolution: {integrity: sha512-fKKvwaZe5s3HW0tcRKyR5AWvAfXvkk0FgTw1nYWYjI4gNqntXbMjRqWZed8Hmd1MvIJS17K/ELPges0tsxbp3g==} - engines: {node: '>=16'} + react-native-screens@3.31.1: + resolution: + { + integrity: sha512-8fRW362pfZ9y4rS8KY5P3DFScrmwo/vu1RrRMMx0PNHbeC9TLq0Kw1ubD83591yz64gLNHFLTVkTJmWeWCXKtQ==, + } + peerDependencies: + react: "*" + react-native: "*" - react-native-slider@0.11.0: - resolution: {integrity: sha512-jV9K87eu9uWr0uJIyrSpBLnCKvVlOySC2wynq9TFCdV9oGgjt7Niq8Q1A8R8v+5GHsuBw/s8vEj1AAkkUi+u+w==} + react-native-share@10.1.0: + resolution: + { + integrity: sha512-fKKvwaZe5s3HW0tcRKyR5AWvAfXvkk0FgTw1nYWYjI4gNqntXbMjRqWZed8Hmd1MvIJS17K/ELPges0tsxbp3g==, + } + engines: { node: ">=16" } react-native-splash-screen@3.2.0: - resolution: {integrity: sha512-Ls9qiNZzW/OLFoI25wfjjAcrf2DZ975hn2vr6U9gyuxi2nooVbzQeFoQS5vQcbCt9QX5NY8ASEEAtlLdIa6KVg==} + resolution: + { + integrity: sha512-Ls9qiNZzW/OLFoI25wfjjAcrf2DZ975hn2vr6U9gyuxi2nooVbzQeFoQS5vQcbCt9QX5NY8ASEEAtlLdIa6KVg==, + } peerDependencies: - react-native: '>=0.57.0' + react-native: ">=0.57.0" react-native-startup-time@2.1.0: - resolution: {integrity: sha512-cm014/ig/ddHEEiAKoxfTDxUwrs5gaoxKpAOnpMIuhW5yozLxhouDtkozD26TLQ2UcIgftowgaScPMeZnI1YYg==} + resolution: + { + integrity: sha512-cm014/ig/ddHEEiAKoxfTDxUwrs5gaoxKpAOnpMIuhW5yozLxhouDtkozD26TLQ2UcIgftowgaScPMeZnI1YYg==, + } peerDependencies: react: ^16.8.3 - react-native: '>=0.59.0' + react-native: ">=0.59.0" react-native-svg@13.14.0: - resolution: {integrity: sha512-27ZnxUkHgWICimhuj6MuqBkISN53lVvgWJB7pIypjXysAyM+nqgQBPh4vXg+7MbqLBoYvR4PiBgKfwwGAqVxHg==} + resolution: + { + integrity: sha512-27ZnxUkHgWICimhuj6MuqBkISN53lVvgWJB7pIypjXysAyM+nqgQBPh4vXg+7MbqLBoYvR4PiBgKfwwGAqVxHg==, + } peerDependencies: - react: '*' - react-native: '*' + react: "*" + react-native: "*" react-native-swipe-gestures@1.0.5: - resolution: {integrity: sha512-Ns7Bn9H/Tyw278+5SQx9oAblDZ7JixyzeOczcBK8dipQk2pD7Djkcfnf1nB/8RErAmMLL9iXgW0QHqiII8AhKw==} + resolution: + { + integrity: sha512-Ns7Bn9H/Tyw278+5SQx9oAblDZ7JixyzeOczcBK8dipQk2pD7Djkcfnf1nB/8RErAmMLL9iXgW0QHqiII8AhKw==, + } react-native-tab-view@3.5.2: - resolution: {integrity: sha512-nE5WqjbeEPsWQx4mtz81QGVvgHRhujTNIIZiMCx3Bj6CBFDafbk7XZp9ocmtzXUQaZ4bhtVS43R4FIiR4LboJw==} + resolution: + { + integrity: sha512-nE5WqjbeEPsWQx4mtz81QGVvgHRhujTNIIZiMCx3Bj6CBFDafbk7XZp9ocmtzXUQaZ4bhtVS43R4FIiR4LboJw==, + } peerDependencies: - react: '*' - react-native: '*' - react-native-pager-view: '*' + react: "*" + react-native: "*" + react-native-pager-view: "*" react-native-tcp-socket@6.0.6: - resolution: {integrity: sha512-FIFSP+3S5OnJRjl7ddD7G9NfVbVEiQ4WROEmOBei1cKE0pDz2R/Kcm4XkFlnMd5sdoG6Wbv830Yd/ZsmOjkEKw==} + resolution: + { + integrity: sha512-FIFSP+3S5OnJRjl7ddD7G9NfVbVEiQ4WROEmOBei1cKE0pDz2R/Kcm4XkFlnMd5sdoG6Wbv830Yd/ZsmOjkEKw==, + } peerDependencies: - react-native: '>=0.60.0' + react-native: ">=0.60.0" react-native-udp@4.1.7: - resolution: {integrity: sha512-NUE3zewu61NCdSsLlj+l0ad6qojcVEZPT4hVG/x6DU9U4iCzwtfZSASh9vm7teAcVzLkdD+cO3411LHshAi/wA==} + resolution: + { + integrity: sha512-NUE3zewu61NCdSsLlj+l0ad6qojcVEZPT4hVG/x6DU9U4iCzwtfZSASh9vm7teAcVzLkdD+cO3411LHshAi/wA==, + } react-native-url-polyfill@1.3.0: - resolution: {integrity: sha512-w9JfSkvpqqlix9UjDvJjm1EjSt652zVQ6iwCIj1cVVkwXf4jQhQgTNXY6EVTwuAmUjg6BC6k9RHCBynoLFo3IQ==} - peerDependencies: - react-native: '*' - - react-native-vector-icons@10.0.3: - resolution: {integrity: sha512-ZgVlV5AdQgnPHHvBEihGf2xwyziT1acpXV1U+WfCgCv3lcEeCRsmwAsBU+kUSNsU+8TcWVsX04kdI6qUaS8D7w==} + resolution: + { + integrity: sha512-w9JfSkvpqqlix9UjDvJjm1EjSt652zVQ6iwCIj1cVVkwXf4jQhQgTNXY6EVTwuAmUjg6BC6k9RHCBynoLFo3IQ==, + } + peerDependencies: + react-native: "*" + + react-native-vector-icons@10.2.0: + resolution: + { + integrity: sha512-n5HGcxUuVaTf9QJPs/W22xQpC2Z9u0nb0KgLPnVltP8vdUvOp6+R26gF55kilP/fV4eL4vsAHUqUjewppJMBOQ==, + } hasBin: true react-native-version-number@0.3.6: - resolution: {integrity: sha512-TdyXiK90NiwmSbmAUlUBOV6WI1QGoqtvZZzI5zQY4fKl67B3ZrZn/h+Wy/OYIKKFMfePSiyfeIs8LtHGOZ/NgA==} + resolution: + { + integrity: sha512-TdyXiK90NiwmSbmAUlUBOV6WI1QGoqtvZZzI5zQY4fKl67B3ZrZn/h+Wy/OYIKKFMfePSiyfeIs8LtHGOZ/NgA==, + } react-native-video@5.2.1: - resolution: {integrity: sha512-aJlr9MeTuQ0LpZ4n+EC9RvhoKeiPbLtI2Rxy8u7zo/wzGevbRpWHSBj9xZ5YDBXnAVXzuqyNIkGhdw7bfdIBZw==} + resolution: + { + integrity: sha512-aJlr9MeTuQ0LpZ4n+EC9RvhoKeiPbLtI2Rxy8u7zo/wzGevbRpWHSBj9xZ5YDBXnAVXzuqyNIkGhdw7bfdIBZw==, + } react-native-web@0.19.10: - resolution: {integrity: sha512-IQoHiTQq8egBCVVwmTrYcFLgEFyb4LMZYEktHn4k22JMk9+QTCEz5WTfvr+jdNoeqj/7rtE81xgowKbfGO74qg==} + resolution: + { + integrity: sha512-IQoHiTQq8egBCVVwmTrYcFLgEFyb4LMZYEktHn4k22JMk9+QTCEz5WTfvr+jdNoeqj/7rtE81xgowKbfGO74qg==, + } peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 react-native-webview@13.10.3: - resolution: {integrity: sha512-Gs8TvwvKvf8C6eVa3znyDn1MeYnC6tyPyBZz2D+pxys+tMn5bFUnDVdv7UpACEyoXIifsKRG7zJZu0D8OUsd2w==} + resolution: + { + integrity: sha512-Gs8TvwvKvf8C6eVa3znyDn1MeYnC6tyPyBZz2D+pxys+tMn5bFUnDVdv7UpACEyoXIifsKRG7zJZu0D8OUsd2w==, + } + peerDependencies: + react: "*" + react-native: "*" + + react-native@0.74.5: + resolution: + { + integrity: sha512-Bgg2WvxaGODukJMTZFTZBNMKVaROHLwSb8VAGEdrlvKwfb1hHg/3aXTUICYk7dwgAnb+INbGMwnF8yeAgIUmqw==, + } + engines: { node: ">=18" } + hasBin: true peerDependencies: - react: '*' - react-native: '*' + "@types/react": ^18.2.6 + react: 18.2.0 + peerDependenciesMeta: + "@types/react": + optional: true - react-native@0.73.6: - resolution: {integrity: sha512-oqmZe8D2/VolIzSPZw+oUd6j/bEmeRHwsLn1xLA5wllEYsZ5zNuMsDus235ONOnCRwexqof/J3aztyQswSmiaA==} - engines: {node: '>=18'} + react-native@0.74.6: + resolution: + { + integrity: sha512-TZ8uLf+dH+nO5nFwjhMd4PqtraeNT5cXQ0ySAhq7qqbTBgalxO3UklsLFW3cTSedC+eLw6J3P3H62e3/MjpWNw==, + } + engines: { node: ">=18" } hasBin: true peerDependencies: + "@types/react": ^18.2.6 react: 18.2.0 + peerDependenciesMeta: + "@types/react": + optional: true react-prismazoom@3.3.5: - resolution: {integrity: sha512-bpXY6Te325Ot11PzWAPrwrxi06CcJeKx9WOQvjdt+msmPOdgJgmvC70Khu+UG9Hur161TeNKNfepwvg0BT/USQ==} + resolution: + { + integrity: sha512-bpXY6Te325Ot11PzWAPrwrxi06CcJeKx9WOQvjdt+msmPOdgJgmvC70Khu+UG9Hur161TeNKNfepwvg0BT/USQ==, + } peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' + react: ">=16.8.0" + react-dom: ">=16.8.0" react-redux@7.2.9: - resolution: {integrity: sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==} + resolution: + { + integrity: sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==, + } peerDependencies: react: ^16.8.3 || ^17 || ^18 - react-dom: '*' + react-dom: "*" peerDependenciesMeta: react-dom: optional: true react-refresh@0.10.0: - resolution: {integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==, + } + engines: { node: ">=0.10.0" } react-refresh@0.11.0: - resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==, + } + engines: { node: ">=0.10.0" } react-refresh@0.14.0: - resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==, + } + engines: { node: ">=0.10.0" } + + react-refresh@0.14.2: + resolution: + { + integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==, + } + engines: { node: ">=0.10.0" } react-refresh@0.4.3: - resolution: {integrity: sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==, + } + engines: { node: ">=0.10.0" } react-remove-scroll-bar@2.3.6: - resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==, + } + 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.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-router-dom@5.3.4: - resolution: {integrity: sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==} + resolution: + { + integrity: sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==, + } peerDependencies: - react: '>=15' + react: ">=15" react-router@5.3.4: - resolution: {integrity: sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==} + resolution: + { + integrity: sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==, + } peerDependencies: - react: '>=15' + react: ">=15" react-scripts@5.0.1: - resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==, + } + engines: { node: ">=14.0.0" } hasBin: true peerDependencies: - react: '>= 16' + react: ">= 16" typescript: ^3.2.1 || ^4 peerDependenciesMeta: typescript: optional: true react-select@3.2.0: - resolution: {integrity: sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==} + resolution: + { + integrity: sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 react-select@5.8.0: - resolution: {integrity: sha512-TfjLDo58XrhP6VG5M/Mi56Us0Yt8X7xD6cDybC7yoRMUNm7BGO7qk8J0TLQOua/prb8vUOtsfnXZwfm30HGsAA==} + resolution: + { + integrity: sha512-TfjLDo58XrhP6VG5M/Mi56Us0Yt8X7xD6cDybC7yoRMUNm7BGO7qk8J0TLQOua/prb8vUOtsfnXZwfm30HGsAA==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 react-shallow-renderer@16.15.0: - resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} + resolution: + { + integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==, + } peerDependencies: react: ^16.0.0 || ^17.0.0 || ^18.0.0 react-spring@8.0.27: - resolution: {integrity: sha512-nDpWBe3ZVezukNRandTeLSPcwwTMjNVu1IDq9qA/AMiUqHuRN4BeSWvKr3eIxxg1vtiYiOLy4FqdfCP5IoP77g==} + resolution: + { + integrity: sha512-nDpWBe3ZVezukNRandTeLSPcwwTMjNVu1IDq9qA/AMiUqHuRN4BeSWvKr3eIxxg1vtiYiOLy4FqdfCP5IoP77g==, + } peerDependencies: - react: '>= 16.8.0' - react-dom: '>= 16.8.0' + react: ">= 16.8.0" + react-dom: ">= 16.8.0" react-style-singleton@2.2.1: - resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==, + } + 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-table@6.11.5: - resolution: {integrity: sha512-LM+AS9v//7Y7lAlgTWW/cW6Sn5VOb3EsSkKQfQTzOW8FngB1FUskLLNEVkAYsTX9LjOWR3QlGjykJqCE6eXT/g==} + resolution: + { + integrity: sha512-LM+AS9v//7Y7lAlgTWW/cW6Sn5VOb3EsSkKQfQTzOW8FngB1FUskLLNEVkAYsTX9LjOWR3QlGjykJqCE6eXT/g==, + } peerDependencies: prop-types: ^15.7.0 react: ^16.x.x react-dom: ^16.x.x react-test-renderer@18.2.0: - resolution: {integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==} + resolution: + { + integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==, + } peerDependencies: react: ^18.2.0 react-tooltip@5.27.0: - resolution: {integrity: sha512-JXROcdfCEbCqkAkh8LyTSP3guQ0dG53iY2E2o4fw3D8clKzziMpE6QG6CclDaHELEKTzpMSeAOsdtg0ahoQosw==} + resolution: + { + integrity: sha512-JXROcdfCEbCqkAkh8LyTSP3guQ0dG53iY2E2o4fw3D8clKzziMpE6QG6CclDaHELEKTzpMSeAOsdtg0ahoQosw==, + } peerDependencies: - react: '>=16.14.0' - react-dom: '>=16.14.0' + react: ">=16.14.0" + react-dom: ">=16.14.0" react-transition-group@4.4.5: - resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} + resolution: + { + integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==, + } peerDependencies: - react: '>=16.6.0' - react-dom: '>=16.6.0' + react: ">=16.6.0" + react-dom: ">=16.6.0" react-virtualized-auto-sizer@1.0.24: - resolution: {integrity: sha512-3kCn7N9NEb3FlvJrSHWGQ4iVl+ydQObq2fHMn12i5wbtm74zHOPhz/i64OL3c1S1vi9i2GXtZqNqUJTQ+BnNfg==} + resolution: + { + integrity: sha512-3kCn7N9NEb3FlvJrSHWGQ4iVl+ydQObq2fHMn12i5wbtm74zHOPhz/i64OL3c1S1vi9i2GXtZqNqUJTQ+BnNfg==, + } peerDependencies: react: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0 react-dom: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0 react-window-infinite-loader@1.0.9: - resolution: {integrity: sha512-5Hg89IdU4Vrp0RT8kZYKeTIxWZYhNkVXeI1HbKo01Vm/Z7qztDvXljwx16sMzsa9yapRJQW3ODZfMUw38SOWHw==} - engines: {node: '>8.0.0'} + resolution: + { + integrity: sha512-5Hg89IdU4Vrp0RT8kZYKeTIxWZYhNkVXeI1HbKo01Vm/Z7qztDvXljwx16sMzsa9yapRJQW3ODZfMUw38SOWHw==, + } + engines: { node: ">8.0.0" } peerDependencies: react: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0 react-dom: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0 react-window@1.8.10: - resolution: {integrity: sha512-Y0Cx+dnU6NLa5/EvoHukUD0BklJ8qITCtVEPY1C/nL8wwoZ0b5aEw8Ff1dOVHw7fCzMt55XfJDd8S8W8LCaUCg==} - engines: {node: '>8.0.0'} + resolution: + { + integrity: sha512-Y0Cx+dnU6NLa5/EvoHukUD0BklJ8qITCtVEPY1C/nL8wwoZ0b5aEw8Ff1dOVHw7fCzMt55XfJDd8S8W8LCaUCg==, + } + engines: { node: ">8.0.0" } peerDependencies: react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 react@18.2.0: - resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==, + } + engines: { node: ">=0.10.0" } 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==, + } read-config-file@6.3.2: - resolution: {integrity: sha512-M80lpCjnE6Wt6zb98DoW8WHR09nzMSpu8XHtPkiTHrJ5Az9CybfeQhTJ8D7saeBHpGhLPIVyA8lcL6ZmdKwY6Q==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-M80lpCjnE6Wt6zb98DoW8WHR09nzMSpu8XHtPkiTHrJ5Az9CybfeQhTJ8D7saeBHpGhLPIVyA8lcL6ZmdKwY6Q==, + } + engines: { node: ">=12.0.0" } read-pkg-up@7.0.1: - resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==, + } + engines: { node: ">=8" } read-pkg-up@9.1.0: - resolution: {integrity: sha512-vaMRR1AC1nrd5CQM0PhlRsO5oc2AAigqr7cCrZ/MW/Rsaflz4RlgzkpL4qoU/z1F6wrbd85iFv1OQj/y5RdGvg==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-vaMRR1AC1nrd5CQM0PhlRsO5oc2AAigqr7cCrZ/MW/Rsaflz4RlgzkpL4qoU/z1F6wrbd85iFv1OQj/y5RdGvg==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } read-pkg@5.2.0: - resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==, + } + engines: { node: ">=8" } read-pkg@7.1.0: - resolution: {integrity: sha512-5iOehe+WF75IccPc30bWTbpdDQLOCc3Uu8bi3Dte3Eueij81yx1Mrufk8qBx/YAbR4uL1FdUr+7BKXDwEtisXg==} - engines: {node: '>=12.20'} + resolution: + { + integrity: sha512-5iOehe+WF75IccPc30bWTbpdDQLOCc3Uu8bi3Dte3Eueij81yx1Mrufk8qBx/YAbR4uL1FdUr+7BKXDwEtisXg==, + } + engines: { node: ">=12.20" } read-yaml-file@1.1.0: - resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==, + } + engines: { node: ">=6" } readable-stream@1.0.34: - resolution: {integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==} + resolution: + { + integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==, + } readable-stream@1.1.14: - resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==} + resolution: + { + integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==, + } readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + resolution: + { + integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==, + } readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==, + } + engines: { node: ">= 6" } readable-stream@4.5.2: - resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } readdir-glob@1.1.3: - resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==} + resolution: + { + integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==, + } readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + resolution: + { + integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, + } + engines: { node: ">=8.10.0" } reading-time@1.5.0: - resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==} + resolution: + { + integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==, + } readline@1.3.0: - resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==} + resolution: + { + integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==, + } readonly-date@1.0.0: - resolution: {integrity: sha512-tMKIV7hlk0h4mO3JTmmVuIlJVXjKk3Sep9Bf5OH0O+758ruuVkUy2J9SttDLm91IEX/WHlXPSpxMGjPj4beMIQ==} + resolution: + { + integrity: sha512-tMKIV7hlk0h4mO3JTmmVuIlJVXjKk3Sep9Bf5OH0O+758ruuVkUy2J9SttDLm91IEX/WHlXPSpxMGjPj4beMIQ==, + } real-require@0.2.0: - resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} - engines: {node: '>= 12.13.0'} + resolution: + { + integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==, + } + engines: { node: ">= 12.13.0" } recast@0.21.5: - resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==, + } + engines: { node: ">= 4" } recast@0.23.6: - resolution: {integrity: sha512-9FHoNjX1yjuesMwuthAmPKabxYQdOgihFYmT5ebXfYGBcnqXZf3WOVz+5foEZ8Y83P4ZY6yQD5GMmtV+pgCCAQ==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-9FHoNjX1yjuesMwuthAmPKabxYQdOgihFYmT5ebXfYGBcnqXZf3WOVz+5foEZ8Y83P4ZY6yQD5GMmtV+pgCCAQ==, + } + engines: { node: ">= 4" } rechoir@0.7.1: - resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==, + } + engines: { node: ">= 0.10" } recursive-readdir@2.2.3: - resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==, + } + engines: { node: ">=6.0.0" } recyclerlistview@4.2.0: - resolution: {integrity: sha512-uuBCi0c+ggqHKwrzPX4Z/mJOzsBbjZEAwGGmlwpD/sD7raXixdAbdJ6BTcAmuWG50Cg4ru9p12M94Njwhr/27A==} + resolution: + { + integrity: sha512-uuBCi0c+ggqHKwrzPX4Z/mJOzsBbjZEAwGGmlwpD/sD7raXixdAbdJ6BTcAmuWG50Cg4ru9p12M94Njwhr/27A==, + } peerDependencies: - react: '>= 15.2.1' - react-native: '>= 0.30.0' + react: ">= 15.2.1" + react-native: ">= 0.30.0" redent@3.0.0: - resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==, + } + engines: { node: ">=8" } redis-errors@1.2.0: - resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==, + } + engines: { node: ">=4" } redis-parser@3.0.0: - resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==, + } + engines: { node: ">=4" } reduce-flatten@2.0.0: - resolution: {integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==, + } + engines: { node: ">=6" } reduce-flatten@3.0.1: - resolution: {integrity: sha512-bYo+97BmUUOzg09XwfkwALt4PQH1M5L0wzKerBt6WLm3Fhdd43mMS89HiT1B9pJIqko/6lWx3OnV4J9f2Kqp5Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-bYo+97BmUUOzg09XwfkwALt4PQH1M5L0wzKerBt6WLm3Fhdd43mMS89HiT1B9pJIqko/6lWx3OnV4J9f2Kqp5Q==, + } + engines: { node: ">=8" } reduce-reducers@0.4.3: - resolution: {integrity: sha512-+CNMnI8QhgVMtAt54uQs3kUxC3Sybpa7Y63HR14uGLgI9/QR5ggHvpxwhGGe3wmx5V91YwqQIblN9k5lspAmGw==} + resolution: + { + integrity: sha512-+CNMnI8QhgVMtAt54uQs3kUxC3Sybpa7Y63HR14uGLgI9/QR5ggHvpxwhGGe3wmx5V91YwqQIblN9k5lspAmGw==, + } redux-actions@2.6.5: - resolution: {integrity: sha512-pFhEcWFTYNk7DhQgxMGnbsB1H2glqhQJRQrtPb96kD3hWiZRzXHwwmFPswg6V2MjraXRXWNmuP9P84tvdLAJmw==} - - redux-flipper@2.0.3: - resolution: {integrity: sha512-JpNEZnBnBE9kGiZZrmzi23cFD9gjRUFoJE6nX0MPfmMVeIqfvkJWMATnbqRsTn8xwBXvWtOk+7Qbs8u4RZZcVw==} - peerDependencies: - react-native: '>=0.63.0' - react-native-flipper: '>=0.100.0' - redux: '>=4' + resolution: + { + integrity: sha512-pFhEcWFTYNk7DhQgxMGnbsB1H2glqhQJRQrtPb96kD3hWiZRzXHwwmFPswg6V2MjraXRXWNmuP9P84tvdLAJmw==, + } redux-thunk@2.4.2: - resolution: {integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==} + resolution: + { + integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==, + } peerDependencies: redux: ^4 redux-thunk@3.1.0: - resolution: {integrity: sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==} + resolution: + { + integrity: sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==, + } peerDependencies: redux: ^5.0.0 redux@4.2.1: - resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} + resolution: + { + integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==, + } redux@5.0.0: - resolution: {integrity: sha512-blLIYmYetpZMET6Q6uCY7Jtl/Im5OBldy+vNPauA8vvsdqyt66oep4EUpAMWNHauTC6xa9JuRPhRB72rY82QGA==} + resolution: + { + integrity: sha512-blLIYmYetpZMET6Q6uCY7Jtl/Im5OBldy+vNPauA8vvsdqyt66oep4EUpAMWNHauTC6xa9JuRPhRB72rY82QGA==, + } reflect-metadata@0.1.14: - resolution: {integrity: sha512-ZhYeb6nRaXCfhnndflDK8qI6ZQ/YcWZCISRAWICW9XYqMUwjZM9Z0DveWX/ABN01oxSHwVxKQmxeYZSsm0jh5A==} + resolution: + { + integrity: sha512-ZhYeb6nRaXCfhnndflDK8qI6ZQ/YcWZCISRAWICW9XYqMUwjZM9Z0DveWX/ABN01oxSHwVxKQmxeYZSsm0jh5A==, + } reflect.getprototypeof@1.0.6: - resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==, + } + engines: { node: ">= 0.4" } regenerate-unicode-properties@10.1.1: - resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==, + } + 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.11.1: - resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} + resolution: + { + integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==, + } regenerator-runtime@0.13.11: - resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} + resolution: + { + integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==, + } 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-parser@2.3.0: - resolution: {integrity: sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==} + resolution: + { + integrity: sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==, + } regexp.prototype.flags@1.5.2: - resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==, + } + engines: { node: ">= 0.4" } regexpu-core@5.3.2: - resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==, + } + engines: { node: ">=4" } registry-auth-token@3.3.2: - resolution: {integrity: sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==} + resolution: + { + integrity: sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==, + } registry-url@3.1.0: - resolution: {integrity: sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==, + } + engines: { node: ">=0.10.0" } regjsparser@0.9.1: - resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} + resolution: + { + integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==, + } hasBin: true rehype-katex@7.0.0: - resolution: {integrity: sha512-h8FPkGE00r2XKU+/acgqwWUlyzve1IiOKwsEkg4pDL3k48PiE0Pt+/uLtVHDVkN1yA4iurZN6UES8ivHVEQV6Q==} + resolution: + { + integrity: sha512-h8FPkGE00r2XKU+/acgqwWUlyzve1IiOKwsEkg4pDL3k48PiE0Pt+/uLtVHDVkN1yA4iurZN6UES8ivHVEQV6Q==, + } rehype-pretty-code@0.9.11: - resolution: {integrity: sha512-Eq90eCYXQJISktfRZ8PPtwc5SUyH6fJcxS8XOMnHPUQZBtC6RYo67gGlley9X2nR8vlniPj0/7oCDEYHKQa/oA==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-Eq90eCYXQJISktfRZ8PPtwc5SUyH6fJcxS8XOMnHPUQZBtC6RYo67gGlley9X2nR8vlniPj0/7oCDEYHKQa/oA==, + } + engines: { node: ">=16" } peerDependencies: - shiki: '*' + shiki: "*" rehype-raw@7.0.0: - resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} + resolution: + { + integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==, + } relateurl@0.2.7: - resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==, + } + engines: { node: ">= 0.10" } release-zalgo@1.0.0: - resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==, + } + engines: { node: ">=4" } remark-external-links@8.0.0: - resolution: {integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==} + resolution: + { + integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==, + } remark-gfm@3.0.1: - resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==} + resolution: + { + integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==, + } remark-html@15.0.2: - resolution: {integrity: sha512-/CIOI7wzHJzsh48AiuIyIe1clxVkUtreul73zcCXLub0FmnevQE0UMFDQm7NUx8/3rl/4zCshlMfqBdWScQthw==} + resolution: + { + integrity: sha512-/CIOI7wzHJzsh48AiuIyIe1clxVkUtreul73zcCXLub0FmnevQE0UMFDQm7NUx8/3rl/4zCshlMfqBdWScQthw==, + } remark-math@5.1.1: - resolution: {integrity: sha512-cE5T2R/xLVtfFI4cCePtiRn+e6jKMtFDR3P8V3qpv8wpKjwvHoBA4eJzvX+nVrnlNy0911bdGmuspCSwetfYHw==} + resolution: + { + integrity: sha512-cE5T2R/xLVtfFI4cCePtiRn+e6jKMtFDR3P8V3qpv8wpKjwvHoBA4eJzvX+nVrnlNy0911bdGmuspCSwetfYHw==, + } remark-mdx@2.3.0: - resolution: {integrity: sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==} + resolution: + { + integrity: sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==, + } remark-parse@10.0.2: - resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==} + resolution: + { + integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==, + } remark-parse@5.0.0: - resolution: {integrity: sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==} + resolution: + { + integrity: sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==, + } remark-reading-time@2.0.1: - resolution: {integrity: sha512-fy4BKy9SRhtYbEHvp6AItbRTnrhiDGbqLQTSYVbQPGuRCncU1ubSsh9p/W5QZSxtYcUXv8KGL0xBgPLyNJA1xw==} + resolution: + { + integrity: sha512-fy4BKy9SRhtYbEHvp6AItbRTnrhiDGbqLQTSYVbQPGuRCncU1ubSsh9p/W5QZSxtYcUXv8KGL0xBgPLyNJA1xw==, + } remark-reference-links@6.0.1: - resolution: {integrity: sha512-34wY2C6HXSuKVTRtyJJwefkUD8zBOZOSHFZ4aSTnU2F656gr9WeuQ2dL6IJDK3NPd2F6xKF2t4XXcQY9MygAXg==} + resolution: + { + integrity: sha512-34wY2C6HXSuKVTRtyJJwefkUD8zBOZOSHFZ4aSTnU2F656gr9WeuQ2dL6IJDK3NPd2F6xKF2t4XXcQY9MygAXg==, + } remark-rehype@10.1.0: - resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==} + resolution: + { + integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==, + } remark-slug@6.1.0: - resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==} + resolution: + { + integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==, + } remark-stringify@10.0.3: - resolution: {integrity: sha512-koyOzCMYoUHudypbj4XpnAKFbkddRMYZHwghnxd7ue5210WzGw6kOBwauJTRUMq16jsovXx8dYNvSSWP89kZ3A==} + resolution: + { + integrity: sha512-koyOzCMYoUHudypbj4XpnAKFbkddRMYZHwghnxd7ue5210WzGw6kOBwauJTRUMq16jsovXx8dYNvSSWP89kZ3A==, + } remark-toc@8.0.1: - resolution: {integrity: sha512-7he2VOm/cy13zilnOTZcyAoyoolV26ULlon6XyCFU+vG54Z/LWJnwphj/xKIDLOt66QmJUgTyUvLVHi2aAElyg==} + resolution: + { + integrity: sha512-7he2VOm/cy13zilnOTZcyAoyoolV26ULlon6XyCFU+vG54Z/LWJnwphj/xKIDLOt66QmJUgTyUvLVHi2aAElyg==, + } remark@14.0.3: - resolution: {integrity: sha512-bfmJW1dmR2LvaMJuAnE88pZP9DktIFYXazkTfOIKZzi3Knk9lT0roItIA24ydOucI3bV/g/tXBA6hzqq3FV9Ew==} + resolution: + { + integrity: sha512-bfmJW1dmR2LvaMJuAnE88pZP9DktIFYXazkTfOIKZzi3Knk9lT0roItIA24ydOucI3bV/g/tXBA6hzqq3FV9Ew==, + } remove-accents@0.5.0: - resolution: {integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==} + resolution: + { + integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==, + } remove-trailing-slash@0.1.1: - resolution: {integrity: sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==} + resolution: + { + integrity: sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==, + } renderkid@3.0.0: - resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} + resolution: + { + integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==, + } repeat-string@1.6.1: - resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==, + } + engines: { node: ">=0.10" } replace-ext@1.0.0: - resolution: {integrity: sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA==, + } + engines: { node: ">= 0.10" } request@2.88.2: - resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==, + } + engines: { node: ">= 6" } deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 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-in-the-middle@7.3.0: - resolution: {integrity: sha512-nQFEv9gRw6SJAwWD2LrL0NmQvAcO7FBwJbwmr2ttPAacfy0xuiOjE5zt+zM4xDyuyvUaxBi/9gb2SoCyNEVJcw==} - engines: {node: '>=8.6.0'} + resolution: + { + integrity: sha512-nQFEv9gRw6SJAwWD2LrL0NmQvAcO7FBwJbwmr2ttPAacfy0xuiOjE5zt+zM4xDyuyvUaxBi/9gb2SoCyNEVJcw==, + } + engines: { node: ">=8.6.0" } require-main-filename@2.0.0: - resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} + resolution: + { + integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==, + } requireg@0.2.2: - resolution: {integrity: sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==} - engines: {node: '>= 4.0.0'} + resolution: + { + integrity: sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==, + } + engines: { node: ">= 4.0.0" } requireindex@1.1.0: - resolution: {integrity: sha512-LBnkqsDE7BZKvqylbmn7lTIVdpx4K/QCduRATpO5R+wtPmky/a8pN1bO2D6wXppn1497AJF9mNjqAXr6bdl9jg==} - engines: {node: '>=0.10.5'} + resolution: + { + integrity: sha512-LBnkqsDE7BZKvqylbmn7lTIVdpx4K/QCduRATpO5R+wtPmky/a8pN1bO2D6wXppn1497AJF9mNjqAXr6bdl9jg==, + } + engines: { node: ">=0.10.5" } requireindex@1.2.0: - resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==} - engines: {node: '>=0.10.5'} + resolution: + { + integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==, + } + engines: { node: ">=0.10.5" } requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + resolution: + { + integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==, + } requizzle@0.2.4: - resolution: {integrity: sha512-JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw==} + resolution: + { + integrity: sha512-JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw==, + } reselect@4.0.0: - resolution: {integrity: sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA==} + resolution: + { + integrity: sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA==, + } reselect@4.1.8: - resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==} + resolution: + { + integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==, + } reselect@5.0.1: - resolution: {integrity: sha512-D72j2ubjgHpvuCiORWkOUxndHJrxDaSolheiz5CO+roz8ka97/4msh2E8F5qay4GawR5vzBt5MkbDHT+Rdy/Wg==} + resolution: + { + integrity: sha512-D72j2ubjgHpvuCiORWkOUxndHJrxDaSolheiz5CO+roz8ka97/4msh2E8F5qay4GawR5vzBt5MkbDHT+Rdy/Wg==, + } resolve-alpn@1.2.1: - resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} + resolution: + { + integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==, + } resolve-cwd@3.0.0: - resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==, + } + engines: { node: ">=8" } resolve-from@3.0.0: - resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==, + } + engines: { node: ">=4" } 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-global@1.0.0: - resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==, + } + engines: { node: ">=8" } resolve-path@1.4.0: - resolution: {integrity: sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==, + } + engines: { node: ">= 0.8" } resolve-pathname@3.0.0: - resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==} + resolution: + { + integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==, + } resolve-pkg-maps@1.0.0: - resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + resolution: + { + integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==, + } resolve-url-loader@4.0.0: - resolution: {integrity: sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==} - engines: {node: '>=8.9'} + resolution: + { + integrity: sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==, + } + engines: { node: ">=8.9" } peerDependencies: rework: 1.0.1 rework-visit: 1.0.0 @@ -26943,125 +40889,215 @@ packages: optional: true resolve.exports@1.1.1: - resolution: {integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==, + } + engines: { node: ">=10" } resolve.exports@2.0.2: - resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==, + } + engines: { node: ">=10" } resolve@1.22.8: - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + resolution: + { + integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==, + } hasBin: true resolve@1.7.1: - resolution: {integrity: sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==} + resolution: + { + integrity: sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==, + } resolve@2.0.0-next.5: - resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} + resolution: + { + integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==, + } hasBin: true responselike@1.0.2: - resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} + resolution: + { + integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==, + } responselike@2.0.1: - resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} + resolution: + { + integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==, + } restore-cursor@2.0.0: - resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==, + } + engines: { node: ">=4" } 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 } retry@0.12.0: - resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==, + } + engines: { node: ">= 4" } retry@0.13.1: - resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==, + } + engines: { node: ">= 4" } 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" } rfc4648@1.5.3: - resolution: {integrity: sha512-MjOWxM065+WswwnmNONOT+bD1nXzY9Km6u3kzvnx8F8/HXGZdz3T6e6vZJ8Q/RIMUSp/nxqjH3GwvJDy8ijeQQ==} + resolution: + { + integrity: sha512-MjOWxM065+WswwnmNONOT+bD1nXzY9Km6u3kzvnx8F8/HXGZdz3T6e6vZJ8Q/RIMUSp/nxqjH3GwvJDy8ijeQQ==, + } rfdc@1.3.1: - resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==} + resolution: + { + integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==, + } rimraf@2.4.5: - resolution: {integrity: sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==} + resolution: + { + integrity: sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==, + } deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@2.6.3: - resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} + resolution: + { + integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==, + } deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + resolution: + { + integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==, + } deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + resolution: + { + integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, + } deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@4.4.1: - resolution: {integrity: sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==, + } + engines: { node: ">=14" } hasBin: true ripemd160-min@0.0.6: - resolution: {integrity: sha512-+GcJgQivhs6S9qvLogusiTcS9kQUfgR75whKuy5jIhuiOfQuJ8fjqxV6EGD5duH1Y/FawFUMtMhyeq3Fbnib8A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-+GcJgQivhs6S9qvLogusiTcS9kQUfgR75whKuy5jIhuiOfQuJ8fjqxV6EGD5duH1Y/FawFUMtMhyeq3Fbnib8A==, + } + engines: { node: ">=8" } ripemd160@2.0.2: - resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} + resolution: + { + integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==, + } ripple-address-codec@4.3.1: - resolution: {integrity: sha512-Qa3+9wKVvpL/xYtT6+wANsn0A1QcC5CT6IMZbRJZ/1lGt7gmwIfsrCuz1X0+LCEO7zgb+3UT1I1dc0k/5dwKQQ==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-Qa3+9wKVvpL/xYtT6+wANsn0A1QcC5CT6IMZbRJZ/1lGt7gmwIfsrCuz1X0+LCEO7zgb+3UT1I1dc0k/5dwKQQ==, + } + engines: { node: ">= 10" } ripple-address-codec@5.0.0: - resolution: {integrity: sha512-de7osLRH/pt5HX2xw2TRJtbdLLWHu0RXirpQaEeCnWKY5DYHykh3ETSkofvm0aX0LJiV7kwkegJxQkmbO94gWw==} - engines: {node: '>= 16'} + resolution: + { + integrity: sha512-de7osLRH/pt5HX2xw2TRJtbdLLWHu0RXirpQaEeCnWKY5DYHykh3ETSkofvm0aX0LJiV7kwkegJxQkmbO94gWw==, + } + engines: { node: ">= 16" } ripple-binary-codec@1.11.0: - resolution: {integrity: sha512-g7+gs3T+NfoeW6vIq5dcN0CkIT4t/zwRzFxz8X2RzfbrWRnewPUKqQbmBgs05tXLX5NuWPaneiaAVpFpYBcdfw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-g7+gs3T+NfoeW6vIq5dcN0CkIT4t/zwRzFxz8X2RzfbrWRnewPUKqQbmBgs05tXLX5NuWPaneiaAVpFpYBcdfw==, + } + engines: { node: ">= 10" } ripple-keypairs@2.0.0: - resolution: {integrity: sha512-b5rfL2EZiffmklqZk1W+dvSy97v3V/C7936WxCCgDynaGPp7GE6R2XO7EU9O2LlM/z95rj870IylYnOQs+1Rag==} - engines: {node: '>= 16'} + resolution: + { + integrity: sha512-b5rfL2EZiffmklqZk1W+dvSy97v3V/C7936WxCCgDynaGPp7GE6R2XO7EU9O2LlM/z95rj870IylYnOQs+1Rag==, + } + engines: { node: ">= 16" } rlp@2.2.7: - resolution: {integrity: sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==} + resolution: + { + integrity: sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==, + } hasBin: true rlp@3.0.0: - resolution: {integrity: sha512-PD6U2PGk6Vq2spfgiWZdomLvRGDreBLxi5jv5M8EpRo3pU6VEm31KO+HFxE18Q3vgqfDrQ9pZA3FP95rkijNKw==} + resolution: + { + integrity: sha512-PD6U2PGk6Vq2spfgiWZdomLvRGDreBLxi5jv5M8EpRo3pU6VEm31KO+HFxE18Q3vgqfDrQ9pZA3FP95rkijNKw==, + } hasBin: true rn-fetch-blob@0.12.0: - resolution: {integrity: sha512-+QnR7AsJ14zqpVVUbzbtAjq0iI8c9tCg49tIoKO2ezjzRunN7YL6zFSFSWZm6d+mE/l9r+OeDM3jmb2tBb2WbA==} + resolution: + { + integrity: sha512-+QnR7AsJ14zqpVVUbzbtAjq0iI8c9tCg49tIoKO2ezjzRunN7YL6zFSFSWZm6d+mE/l9r+OeDM3jmb2tBb2WbA==, + } rn-range-slider@2.1.1: - resolution: {integrity: sha512-tDfH8G4e/k+waGMMd+HaYTlpOqyh1dd3aWdDmqKo0WGh1BfHB+NXy0X2REyr1ZJDvsrq7WEeFZ+PBTdD6cisbw==} - peerDependencies: - prop-types: '*' - react: '*' - react-native: '*' + resolution: + { + integrity: sha512-tDfH8G4e/k+waGMMd+HaYTlpOqyh1dd3aWdDmqKo0WGh1BfHB+NXy0X2REyr1ZJDvsrq7WEeFZ+PBTdD6cisbw==, + } + peerDependencies: + prop-types: "*" + react: "*" + react-native: "*" peerDependenciesMeta: prop-types: optional: true @@ -27071,109 +41107,184 @@ packages: optional: true roarr@2.15.4: - resolution: {integrity: sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==} - engines: {node: '>=8.0'} + resolution: + { + integrity: sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==, + } + engines: { node: ">=8.0" } robust-predicates@3.0.2: - resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==} + resolution: + { + integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==, + } rollup-plugin-dts@6.1.0: - resolution: {integrity: sha512-ijSCPICkRMDKDLBK9torss07+8dl9UpY9z1N/zTeA1cIqdzMlpkV3MOOC7zukyvQfDyxa1s3Dl2+DeiP/G6DOw==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-ijSCPICkRMDKDLBK9torss07+8dl9UpY9z1N/zTeA1cIqdzMlpkV3MOOC7zukyvQfDyxa1s3Dl2+DeiP/G6DOw==, + } + engines: { node: ">=16" } peerDependencies: rollup: ^3.29.4 || ^4 typescript: ^4.5 || ^5.0 rollup-plugin-esbuild@6.1.1: - resolution: {integrity: sha512-CehMY9FAqJD5OUaE/Mi1r5z0kNeYxItmRO2zG4Qnv2qWKF09J2lTy5GUzjJR354ZPrLkCj4fiBN41lo8PzBUhw==} - engines: {node: '>=14.18.0'} + resolution: + { + integrity: sha512-CehMY9FAqJD5OUaE/Mi1r5z0kNeYxItmRO2zG4Qnv2qWKF09J2lTy5GUzjJR354ZPrLkCj4fiBN41lo8PzBUhw==, + } + engines: { node: ">=14.18.0" } peerDependencies: - esbuild: '>=0.18.0' + esbuild: ">=0.18.0" rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 rollup-plugin-terser@7.0.2: - resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} + resolution: + { + integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==, + } deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser peerDependencies: rollup: ^2.0.0 rollup@2.79.1: - resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==, + } + engines: { node: ">=10.0.0" } hasBin: true rollup@3.29.4: - resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==} - engines: {node: '>=14.18.0', npm: '>=8.0.0'} + resolution: + { + integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==, + } + engines: { node: ">=14.18.0", npm: ">=8.0.0" } hasBin: true rollup@4.17.2: - resolution: {integrity: sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==} - engines: {node: '>=18.0.0', npm: '>=8.0.0'} + resolution: + { + integrity: sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==, + } + engines: { node: ">=18.0.0", npm: ">=8.0.0" } hasBin: true rpc-websockets@7.9.0: - resolution: {integrity: sha512-DwKewQz1IUA5wfLvgM8wDpPRcr+nWSxuFxx5CbrI2z/MyyZ4nXLM86TvIA+cI1ZAdqC8JIBR1mZR55dzaLU+Hw==} + resolution: + { + integrity: sha512-DwKewQz1IUA5wfLvgM8wDpPRcr+nWSxuFxx5CbrI2z/MyyZ4nXLM86TvIA+cI1ZAdqC8JIBR1mZR55dzaLU+Hw==, + } 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==, + } rw@1.3.3: - resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==} + resolution: + { + integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==, + } rxjs@6.6.7: - resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} - engines: {npm: '>=2.0.0'} + resolution: + { + integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==, + } + engines: { npm: ">=2.0.0" } rxjs@7.8.1: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + resolution: + { + integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==, + } sade@1.8.1: - resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==, + } + engines: { node: ">=6" } safe-array-concat@1.1.2: - resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} - engines: {node: '>=0.4'} + resolution: + { + integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==, + } + engines: { node: ">=0.4" } safe-buffer@5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + resolution: + { + integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==, + } safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + resolution: + { + integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, + } safe-json-stringify@1.2.0: - resolution: {integrity: sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==} + resolution: + { + integrity: sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==, + } safe-regex-test@1.0.3: - resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==, + } + engines: { node: ">= 0.4" } safe-stable-stringify@2.4.3: - resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==, + } + engines: { node: ">=10" } safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + resolution: + { + integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, + } sanitize-filename@1.6.3: - resolution: {integrity: sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==} + resolution: + { + integrity: sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==, + } sanitize.css@13.0.0: - resolution: {integrity: sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==} + resolution: + { + integrity: sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==, + } sass-loader@12.6.0: - resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} - engines: {node: '>= 12.13.0'} + resolution: + { + integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==, + } + engines: { node: ">= 12.13.0" } peerDependencies: - fibers: '>= 3.1.0' + fibers: ">= 3.1.0" node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 sass: ^1.3.0 - sass-embedded: '*' + sass-embedded: "*" webpack: ^5.0.0 peerDependenciesMeta: fibers: @@ -27186,555 +41297,1018 @@ packages: optional: true sax@1.2.4: - resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} + resolution: + { + integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==, + } saxes@5.0.1: - resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==, + } + engines: { node: ">=10" } saxes@6.0.0: - resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} - engines: {node: '>=v12.22.7'} + resolution: + { + integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==, + } + engines: { node: ">=v12.22.7" } scale-ts@1.6.0: - resolution: {integrity: sha512-Ja5VCjNZR8TGKhUumy9clVVxcDpM+YFjAnkMuwQy68Hixio3VRRvWdE3g8T/yC+HXA0ZDQl2TGyUmtmbcVl40Q==} + resolution: + { + integrity: sha512-Ja5VCjNZR8TGKhUumy9clVVxcDpM+YFjAnkMuwQy68Hixio3VRRvWdE3g8T/yC+HXA0ZDQl2TGyUmtmbcVl40Q==, + } scheduler@0.23.0: - resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} + resolution: + { + integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==, + } scheduler@0.23.2: - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + resolution: + { + integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==, + } scheduler@0.24.0-canary-efb381bbf-20230505: - resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==} + resolution: + { + integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==, + } schema-utils@2.7.0: - resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} - engines: {node: '>= 8.9.0'} + resolution: + { + integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==, + } + engines: { node: ">= 8.9.0" } schema-utils@2.7.1: - resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} - engines: {node: '>= 8.9.0'} + resolution: + { + integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==, + } + engines: { node: ">= 8.9.0" } schema-utils@3.3.0: - resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} - engines: {node: '>= 10.13.0'} + resolution: + { + integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==, + } + engines: { node: ">= 10.13.0" } schema-utils@4.2.0: - resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} - engines: {node: '>= 12.13.0'} + resolution: + { + integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==, + } + engines: { node: ">= 12.13.0" } scroll-into-view-if-needed@3.1.0: - resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==} + resolution: + { + integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==, + } scrypt-js@2.0.4: - resolution: {integrity: sha512-4KsaGcPnuhtCZQCxFxN3GVYIhKFPTdLd8PLC552XwbMndtD0cjRFAhDuuydXQ0h08ZfPgzqe6EKHozpuH74iDw==} + resolution: + { + integrity: sha512-4KsaGcPnuhtCZQCxFxN3GVYIhKFPTdLd8PLC552XwbMndtD0cjRFAhDuuydXQ0h08ZfPgzqe6EKHozpuH74iDw==, + } scrypt-js@3.0.1: - resolution: {integrity: sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==} + resolution: + { + integrity: sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==, + } secp256k1@4.0.2: - resolution: {integrity: sha512-UDar4sKvWAksIlfX3xIaQReADn+WFnHvbVujpcbr+9Sf/69odMwy2MUsz5CKLQgX9nsIyrjuxL2imVyoNHa3fg==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-UDar4sKvWAksIlfX3xIaQReADn+WFnHvbVujpcbr+9Sf/69odMwy2MUsz5CKLQgX9nsIyrjuxL2imVyoNHa3fg==, + } + engines: { node: ">=10.0.0" } secp256k1@4.0.3: - resolution: {integrity: sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==, + } + engines: { node: ">=10.0.0" } secp256k1@5.0.0: - resolution: {integrity: sha512-TKWX8xvoGHrxVdqbYeZM9w+izTF4b9z3NhSaDkdn81btvuh+ivbIMGT/zQvDtTFWhRlThpoz6LEYTr7n8A5GcA==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-TKWX8xvoGHrxVdqbYeZM9w+izTF4b9z3NhSaDkdn81btvuh+ivbIMGT/zQvDtTFWhRlThpoz6LEYTr7n8A5GcA==, + } + engines: { node: ">=14.0.0" } secretjs@0.17.8: - resolution: {integrity: sha512-PD/GUF52GjysBo8dDVK8KZXRXON1iPXkkyBNWIBVsaap3A1nZPbqynx/VUOjSpFx103KdjvzeA4+O0+EdWWWmw==} + resolution: + { + integrity: sha512-PD/GUF52GjysBo8dDVK8KZXRXON1iPXkkyBNWIBVsaap3A1nZPbqynx/VUOjSpFx103KdjvzeA4+O0+EdWWWmw==, + } deprecated: deprecated section-matter@1.0.0: - resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==, + } + engines: { node: ">=4" } secure-compare@3.0.1: - resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} + resolution: + { + integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==, + } secure-random@1.1.2: - resolution: {integrity: sha512-H2bdSKERKdBV1SwoqYm6C0y+9EA94v6SUBOWO8kDndc4NoUih7Dv6Tsgma7zO1lv27wIvjlD0ZpMQk7um5dheQ==} + resolution: + { + integrity: sha512-H2bdSKERKdBV1SwoqYm6C0y+9EA94v6SUBOWO8kDndc4NoUih7Dv6Tsgma7zO1lv27wIvjlD0ZpMQk7um5dheQ==, + } select-hose@2.0.0: - resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} + resolution: + { + integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==, + } selfsigned@2.4.1: - resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==, + } + engines: { node: ">=10" } semver-compare@1.0.0: - resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==} + resolution: + { + integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==, + } semver@2.3.2: - resolution: {integrity: sha512-abLdIKCosKfpnmhS52NCTjO4RiLspDfsn37prjzGrp9im5DPJOgh82Os92vtwGh6XdQryKI/7SREZnV+aqiXrA==} + resolution: + { + integrity: sha512-abLdIKCosKfpnmhS52NCTjO4RiLspDfsn37prjzGrp9im5DPJOgh82Os92vtwGh6XdQryKI/7SREZnV+aqiXrA==, + } hasBin: true semver@5.7.2: - resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + resolution: + { + integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==, + } hasBin: true semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + resolution: + { + integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, + } hasBin: true semver@7.3.2: - resolution: {integrity: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==, + } + engines: { node: ">=10" } hasBin: true semver@7.3.8: - resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==, + } + engines: { node: ">=10" } hasBin: true semver@7.5.3: - resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==, + } + engines: { node: ">=10" } hasBin: true semver@7.5.4: - resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==, + } + engines: { node: ">=10" } hasBin: true semver@7.6.2: - resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==, + } + engines: { node: ">=10" } 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.18.0: - resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==, + } + engines: { node: ">= 0.8.0" } serialize-error@2.1.0: - resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==, + } + engines: { node: ">=0.10.0" } serialize-error@6.0.0: - resolution: {integrity: sha512-3vmBkMZLQO+BR4RPHcyRGdE09XCF6cvxzk2N2qn8Er3F91cy8Qt7VvEbZBOpaL53qsBbe2cFOefU6tRY6WDelA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-3vmBkMZLQO+BR4RPHcyRGdE09XCF6cvxzk2N2qn8Er3F91cy8Qt7VvEbZBOpaL53qsBbe2cFOefU6tRY6WDelA==, + } + engines: { node: ">=10" } serialize-error@7.0.1: - resolution: {integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==, + } + engines: { node: ">=10" } serialize-error@8.1.0: - resolution: {integrity: sha512-3NnuWfM6vBYoy5gZFvHiYsVbafvI9vZv/+jlIigFn4oP4zjNPK3LhcY0xSCgeb1a5L8jO71Mit9LlNoi2UfDDQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-3NnuWfM6vBYoy5gZFvHiYsVbafvI9vZv/+jlIigFn4oP4zjNPK3LhcY0xSCgeb1a5L8jO71Mit9LlNoi2UfDDQ==, + } + engines: { node: ">=10" } serialize-javascript@4.0.0: - resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==} + resolution: + { + integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==, + } serialize-javascript@6.0.2: - resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} + resolution: + { + integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==, + } serve-handler@6.1.5: - resolution: {integrity: sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==} + resolution: + { + integrity: sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==, + } serve-index-75lb@2.0.1: - resolution: {integrity: sha512-/d9r8bqJlFQcwy0a0nb1KnWAA+Mno+V+VaoKocdkbW5aXKRQd/+4bfnRhQRQr6uEoYwTRJ4xgztOyCJvWcpBpQ==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-/d9r8bqJlFQcwy0a0nb1KnWAA+Mno+V+VaoKocdkbW5aXKRQd/+4bfnRhQRQr6uEoYwTRJ4xgztOyCJvWcpBpQ==, + } + engines: { node: ">= 0.8.0" } serve-index@1.9.1: - resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==, + } + engines: { node: ">= 0.8.0" } serve-static@1.15.0: - resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==, + } + engines: { node: ">= 0.8.0" } servify@0.1.12: - resolution: {integrity: sha512-/xE6GvsKKqyo1BAY+KxOWXcLpPsUUyji7Qg3bVD7hh1eRze5bR1uYiuDA/k3Gof1s9BTzQZEJK8sNcNGFIzeWw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-/xE6GvsKKqyo1BAY+KxOWXcLpPsUUyji7Qg3bVD7hh1eRze5bR1uYiuDA/k3Gof1s9BTzQZEJK8sNcNGFIzeWw==, + } + engines: { node: ">=6" } set-blocking@2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + resolution: + { + integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==, + } 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" } setimmediate@1.0.4: - resolution: {integrity: sha512-/TjEmXQVEzdod/FFskf3o7oOAsGhHf2j1dZqRFbDzq4F3mvvxflIIi4Hd3bLQE9y/CpwqfSQam5JakI/mi3Pog==} + resolution: + { + integrity: sha512-/TjEmXQVEzdod/FFskf3o7oOAsGhHf2j1dZqRFbDzq4F3mvvxflIIi4Hd3bLQE9y/CpwqfSQam5JakI/mi3Pog==, + } 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.1.0: - resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} + resolution: + { + integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==, + } setprototypeof@1.1.1: - resolution: {integrity: sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==} + resolution: + { + integrity: sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==, + } setprototypeof@1.2.0: - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} + resolution: + { + integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==, + } sha.js@2.4.11: - resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==} + resolution: + { + integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==, + } hasBin: true sha3@2.1.4: - resolution: {integrity: sha512-S8cNxbyb0UGUM2VhRD4Poe5N58gJnJsLJ5vC7FYWGUmGhcsj4++WaIOBFVDxlG0W3To6xBuiRh+i0Qp2oNCOtg==} + resolution: + { + integrity: sha512-S8cNxbyb0UGUM2VhRD4Poe5N58gJnJsLJ5vC7FYWGUmGhcsj4++WaIOBFVDxlG0W3To6xBuiRh+i0Qp2oNCOtg==, + } shaka-player@2.5.23: - resolution: {integrity: sha512-3MC9k0OXJGw8AZ4n/ZNCZS2yDxx+3as5KgH6Tx4Q5TRboTBBCu6dYPI5vp1DxKeyU12MBN1Zcbs7AKzXv2EnCg==} + resolution: + { + integrity: sha512-3MC9k0OXJGw8AZ4n/ZNCZS2yDxx+3as5KgH6Tx4Q5TRboTBBCu6dYPI5vp1DxKeyU12MBN1Zcbs7AKzXv2EnCg==, + } deprecated: Shaka Player < v4.2 is no longer supported. shallow-clone@1.0.0: - resolution: {integrity: sha512-oeXreoKR/SyNJtRJMAKPDSvd28OqEwG4eR/xc856cRGBII7gX9lvAqDxusPm0846z/w/hWYjI1NpKwJ00NHzRA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-oeXreoKR/SyNJtRJMAKPDSvd28OqEwG4eR/xc856cRGBII7gX9lvAqDxusPm0846z/w/hWYjI1NpKwJ00NHzRA==, + } + engines: { node: ">=0.10.0" } shallow-clone@3.0.1: - resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==, + } + engines: { node: ">=8" } shallowequal@1.1.0: - resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} + resolution: + { + integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==, + } shebang-command@1.2.0: - resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==, + } + engines: { node: ">=0.10.0" } 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@1.0.0: - resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==, + } + engines: { node: ">=0.10.0" } 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.7.3: - resolution: {integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==} + resolution: + { + integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==, + } shell-quote@1.8.1: - resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} + resolution: + { + integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==, + } shiki@0.14.7: - resolution: {integrity: sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==} + resolution: + { + integrity: sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==, + } shimmer@1.2.1: - resolution: {integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==} + resolution: + { + integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==, + } side-channel@1.0.6: - resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==, + } + engines: { node: ">= 0.4" } 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" } simple-cbor@0.4.1: - resolution: {integrity: sha512-rijcxtwx2b4Bje3sqeIqw5EeW7UlOIC4YfOdwqIKacpvRQ/D78bWg/4/0m5e0U91oKvlGh7LlJuZCu07ISCC7w==} + resolution: + { + integrity: sha512-rijcxtwx2b4Bje3sqeIqw5EeW7UlOIC4YfOdwqIKacpvRQ/D78bWg/4/0m5e0U91oKvlGh7LlJuZCu07ISCC7w==, + } simple-concat@1.0.1: - resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} + resolution: + { + integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==, + } simple-get@2.8.2: - resolution: {integrity: sha512-Ijd/rV5o+mSBBs4F/x9oDPtTx9Zb6X9brmnXvMW4J7IR15ngi9q5xxqWBKU744jTZiaXtxaPL7uHG6vtN8kUkw==} + resolution: + { + integrity: sha512-Ijd/rV5o+mSBBs4F/x9oDPtTx9Zb6X9brmnXvMW4J7IR15ngi9q5xxqWBKU744jTZiaXtxaPL7uHG6vtN8kUkw==, + } simple-get@4.0.1: - resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} + resolution: + { + integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==, + } simple-git@3.24.0: - resolution: {integrity: sha512-QqAKee9Twv+3k8IFOFfPB2hnk6as6Y6ACUpwCtQvRYBAes23Wv3SZlHVobAzqcE8gfsisCvPw3HGW3HYM+VYYw==} + resolution: + { + integrity: sha512-QqAKee9Twv+3k8IFOFfPB2hnk6as6Y6ACUpwCtQvRYBAes23Wv3SZlHVobAzqcE8gfsisCvPw3HGW3HYM+VYYw==, + } simple-markdown@0.4.4: - resolution: {integrity: sha512-ZmlNUGR1KI12sPHeQ7dQY1qM5KfOgFqClNNVO8zQ9Pg6u7gHLCPFGD+VC7MCwpGDMd1uw3Bb2TfFfR8d6bB34A==} + resolution: + { + integrity: sha512-ZmlNUGR1KI12sPHeQ7dQY1qM5KfOgFqClNNVO8zQ9Pg6u7gHLCPFGD+VC7MCwpGDMd1uw3Bb2TfFfR8d6bB34A==, + } simple-markdown@0.7.3: - resolution: {integrity: sha512-uGXIc13NGpqfPeFJIt/7SHHxd6HekEJYtsdoCM06mEBPL9fQH/pSD7LRM6PZ7CKchpSvxKL4tvwMamqAaNDAyg==} + resolution: + { + integrity: sha512-uGXIc13NGpqfPeFJIt/7SHHxd6HekEJYtsdoCM06mEBPL9fQH/pSD7LRM6PZ7CKchpSvxKL4tvwMamqAaNDAyg==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true simple-plist@1.3.1: - resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==} + resolution: + { + integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==, + } simple-swizzle@0.2.2: - resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} + resolution: + { + integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==, + } simple-update-notifier@2.0.0: - resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==, + } + engines: { node: ">=10" } sirv@2.0.4: - resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==, + } + engines: { node: ">= 10" } sisteransi@1.0.5: - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + resolution: + { + integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, + } sjcl@1.0.8: - resolution: {integrity: sha512-LzIjEQ0S0DpIgnxMEayM1rq9aGwGRG4OnZhCdjx7glTaJtf4zRfpg87ImfjSJjoW9vKpagd82McDOwbRT5kQKQ==} + resolution: + { + integrity: sha512-LzIjEQ0S0DpIgnxMEayM1rq9aGwGRG4OnZhCdjx7glTaJtf4zRfpg87ImfjSJjoW9vKpagd82McDOwbRT5kQKQ==, + } 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@0.0.4: - resolution: {integrity: sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw==, + } + engines: { node: ">=0.10.0" } slice-ansi@2.1.0: - resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==, + } + engines: { node: ">=6" } 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" } slice-ansi@5.0.0: - resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==, + } + engines: { node: ">=12" } sliced@1.0.1: - resolution: {integrity: sha512-VZBmZP8WU3sMOZm1bdgTadsQbcscK0UM8oKxKVBs4XAhUo2Xxzm/OFMGBkPusxw9xL3Uy8LrzEqGqJhclsr0yA==} + resolution: + { + integrity: sha512-VZBmZP8WU3sMOZm1bdgTadsQbcscK0UM8oKxKVBs4XAhUo2Xxzm/OFMGBkPusxw9xL3Uy8LrzEqGqJhclsr0yA==, + } slugify@1.6.6: - resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==, + } + engines: { node: ">=8.0.0" } smart-buffer@4.2.0: - resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} - engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + resolution: + { + integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==, + } + engines: { node: ">= 6.0.0", npm: ">= 3.0.0" } smee-client@1.2.5: - resolution: {integrity: sha512-Tv3AVvZD9sjEwBvsm1jc8to96FwmZMOYt5UL7qu3vAuA/3F/hqKe9gdRSlkvpRO4ttUAUrDKRpjM0vUnXZQhqA==} + resolution: + { + integrity: sha512-Tv3AVvZD9sjEwBvsm1jc8to96FwmZMOYt5UL7qu3vAuA/3F/hqKe9gdRSlkvpRO4ttUAUrDKRpjM0vUnXZQhqA==, + } hasBin: true smoldot@2.0.22: - resolution: {integrity: sha512-B50vRgTY6v3baYH6uCgL15tfaag5tcS2o/P5q1OiXcKGv1axZDfz2dzzMuIkVpyMR2ug11F6EAtQlmYBQd292g==} + resolution: + { + integrity: sha512-B50vRgTY6v3baYH6uCgL15tfaag5tcS2o/P5q1OiXcKGv1axZDfz2dzzMuIkVpyMR2ug11F6EAtQlmYBQd292g==, + } snakecase-keys@3.2.1: - resolution: {integrity: sha512-CjU5pyRfwOtaOITYv5C8DzpZ8XA/ieRsDpr93HI2r6e3YInC6moZpSQbmUtg8cTk58tq2x3jcG2gv+p1IZGmMA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-CjU5pyRfwOtaOITYv5C8DzpZ8XA/ieRsDpr93HI2r6e3YInC6moZpSQbmUtg8cTk58tq2x3jcG2gv+p1IZGmMA==, + } + engines: { node: ">=8" } sockjs@0.3.24: - resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} + resolution: + { + integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==, + } sodium-native@4.1.1: - resolution: {integrity: sha512-LXkAfRd4FHtkQS4X6g+nRcVaN7mWVNepV06phIsC6+IZFvGh1voW5TNQiQp2twVaMf05gZqQjuS+uWLM6gHhNQ==} + resolution: + { + integrity: sha512-LXkAfRd4FHtkQS4X6g+nRcVaN7mWVNepV06phIsC6+IZFvGh1voW5TNQiQp2twVaMf05gZqQjuS+uWLM6gHhNQ==, + } sonic-boom@4.0.1: - resolution: {integrity: sha512-hTSD/6JMLyT4r9zeof6UtuBDpjJ9sO08/nmS5djaA9eozT9oOlNdpXSnzcgj4FTqpk3nkLrs61l4gip9r1HCrQ==} + resolution: + { + integrity: sha512-hTSD/6JMLyT4r9zeof6UtuBDpjJ9sO08/nmS5djaA9eozT9oOlNdpXSnzcgj4FTqpk3nkLrs61l4gip9r1HCrQ==, + } sort-keys-length@1.0.1: - resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==, + } + engines: { node: ">=0.10.0" } sort-keys@1.1.2: - resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==, + } + engines: { node: ">=0.10.0" } sort-keys@5.0.0: - resolution: {integrity: sha512-Pdz01AvCAottHTPQGzndktFNdbRA75BgOfeT1hH+AMnJFv8lynkPi42rfeEhpx1saTEI3YNMWxfqu0sFD1G8pw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Pdz01AvCAottHTPQGzndktFNdbRA75BgOfeT1hH+AMnJFv8lynkPi42rfeEhpx1saTEI3YNMWxfqu0sFD1G8pw==, + } + engines: { node: ">=12" } source-list-map@2.0.1: - resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==} + resolution: + { + integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==, + } source-map-explorer@2.5.3: - resolution: {integrity: sha512-qfUGs7UHsOBE5p/lGfQdaAj/5U/GWYBw2imEpD6UQNkqElYonkow8t+HBL1qqIl3CuGZx7n8/CQo4x1HwSHhsg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-qfUGs7UHsOBE5p/lGfQdaAj/5U/GWYBw2imEpD6UQNkqElYonkow8t+HBL1qqIl3CuGZx7n8/CQo4x1HwSHhsg==, + } + engines: { node: ">=12" } hasBin: true source-map-js@1.2.0: - resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==, + } + engines: { node: ">=0.10.0" } source-map-loader@3.0.2: - resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} - engines: {node: '>= 12.13.0'} + resolution: + { + integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==, + } + engines: { node: ">= 12.13.0" } peerDependencies: webpack: ^5.0.0 source-map-support@0.5.13: - resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + resolution: + { + integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==, + } source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + resolution: + { + integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, + } source-map@0.5.6: - resolution: {integrity: sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==, + } + engines: { node: ">=0.10.0" } source-map@0.5.7: - resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==, + } + engines: { node: ">=0.10.0" } 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@1.1.5: - resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} + resolution: + { + integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==, + } space-separated-tokens@2.0.2: - resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} + resolution: + { + integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==, + } spawn-command@0.0.2: - resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==} + resolution: + { + integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==, + } spawn-wrap@2.0.0: - resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==, + } + engines: { node: ">=8" } spawndamnit@2.0.0: - resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} + resolution: + { + integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==, + } spdx-correct@3.2.0: - resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + resolution: + { + integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==, + } spdx-exceptions@2.5.0: - resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + resolution: + { + integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==, + } spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + resolution: + { + integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, + } spdx-license-ids@3.0.17: - resolution: {integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==} + resolution: + { + integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==, + } spdy-transport@3.0.0: - resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} + resolution: + { + integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==, + } spdy@4.0.2: - resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==, + } + engines: { node: ">=6.0.0" } split-on-first@1.1.0: - resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==, + } + engines: { node: ">=6" } split2@3.2.2: - resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} + resolution: + { + integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==, + } split2@4.2.0: - resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} - engines: {node: '>= 10.x'} + resolution: + { + integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==, + } + engines: { node: ">= 10.x" } split@0.3.3: - resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==} + resolution: + { + integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==, + } split@1.0.1: - resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} + resolution: + { + integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==, + } sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + resolution: + { + integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, + } sprintf-js@1.1.3: - resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} + resolution: + { + integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==, + } sshpk@1.18.0: - resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==, + } + engines: { node: ">=0.10.0" } hasBin: true ssr-window@4.0.2: - resolution: {integrity: sha512-ISv/Ch+ig7SOtw7G2+qkwfVASzazUnvlDTwypdLoPoySv+6MqlOV10VwPSE6EWkGjhW50lUmghPmpYZXMu/+AQ==} + resolution: + { + integrity: sha512-ISv/Ch+ig7SOtw7G2+qkwfVASzazUnvlDTwypdLoPoySv+6MqlOV10VwPSE6EWkGjhW50lUmghPmpYZXMu/+AQ==, + } + + ssri@10.0.6: + resolution: + { + integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } ssri@8.0.1: - resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==, + } + engines: { node: ">= 8" } stable@0.1.8: - resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} - deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' + resolution: + { + integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==, + } + deprecated: "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" stack-generator@2.0.10: - resolution: {integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==} + resolution: + { + integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==, + } stack-trace@0.0.10: - resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} + resolution: + { + integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==, + } stack-utils@2.0.6: - resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==, + } + engines: { node: ">=10" } stackframe@1.3.4: - resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} + resolution: + { + integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==, + } stacktrace-gps@3.1.2: - resolution: {integrity: sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==} + resolution: + { + integrity: sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==, + } stacktrace-js@2.0.2: - resolution: {integrity: sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==} + resolution: + { + integrity: sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==, + } stacktrace-parser@0.1.10: - resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==, + } + engines: { node: ">=6" } standard-as-callback@2.1.0: - resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==} + resolution: + { + integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==, + } stat-mode@1.0.0: - resolution: {integrity: sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg==, + } + engines: { node: ">= 6" } state-toggle@1.0.3: - resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==} + resolution: + { + integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==, + } static-eval@2.0.2: - resolution: {integrity: sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==} + resolution: + { + integrity: sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==, + } statuses@1.5.0: - resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==, + } + engines: { node: ">= 0.6" } 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" } stop-iteration-iterator@1.0.0: - resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==, + } + engines: { node: ">= 0.4" } store2@2.14.3: - resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==} + resolution: + { + integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==, + } storybook-dark-mode@3.0.3: - resolution: {integrity: sha512-ZLBLVpkuKTdtUv3DTuOjeP/bE7DHhOxVpDROKc0NtEYq9JHLUu6z05LLZinE3v6QPXQZ9TMQPm3Xe/0BcLEZlw==} + resolution: + { + integrity: sha512-ZLBLVpkuKTdtUv3DTuOjeP/bE7DHhOxVpDROKc0NtEYq9JHLUu6z05LLZinE3v6QPXQZ9TMQPm3Xe/0BcLEZlw==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -27745,554 +42319,968 @@ packages: optional: true storybook@7.6.17: - resolution: {integrity: sha512-8+EIo91bwmeFWPg1eysrxXlhIYv3OsXrznTr4+4Eq0NikqAoq6oBhtlN5K2RGS2lBVF537eN+9jTCNbR+WrzDA==} + resolution: + { + integrity: sha512-8+EIo91bwmeFWPg1eysrxXlhIYv3OsXrznTr4+4Eq0NikqAoq6oBhtlN5K2RGS2lBVF537eN+9jTCNbR+WrzDA==, + } hasBin: true storybook@7.6.20: - resolution: {integrity: sha512-Wt04pPTO71pwmRmsgkyZhNo4Bvdb/1pBAMsIFb9nQLykEdzzpXjvingxFFvdOG4nIowzwgxD+CLlyRqVJqnATw==} + resolution: + { + integrity: sha512-Wt04pPTO71pwmRmsgkyZhNo4Bvdb/1pBAMsIFb9nQLykEdzzpXjvingxFFvdOG4nIowzwgxD+CLlyRqVJqnATw==, + } hasBin: true - storyly-react-native@3.6.0: - resolution: {integrity: sha512-YDHTQe6W91GMZ6jlV+tstJNTvBK2PWWqGLBZUovdbrq3Sh1evzbGC5cG0yicH752FGRDC/U0sjTE8FBuiRwVUg==} + storyly-react-native@3.6.2: + resolution: + { + integrity: sha512-gtn9MjrtNoziqNpI4y8QVO5hLMr8kGTflGV4feLQ3p6Bj5XzM+auB6EKH2OSN+PscF+k3iMCPMzHASekJ3Z3kA==, + } peerDependencies: - prop-types: '*' + prop-types: "*" react: ^18.0.0 - react-native: '>=0.64.2 <1.0.x' + react-native: ">=0.64.2 <1.0.x" peerDependenciesMeta: prop-types: optional: true storyly-web@3.6.7: - resolution: {integrity: sha512-2i7yOUF4xENFynQwDGZmGWLKHcXeTjhxJwtD8g4Vj163GI9Zw8WfLwsYgSZWgP1mMC+vq3iP+l8TgHuBd/r2rg==} + resolution: + { + integrity: sha512-2i7yOUF4xENFynQwDGZmGWLKHcXeTjhxJwtD8g4Vj163GI9Zw8WfLwsYgSZWgP1mMC+vq3iP+l8TgHuBd/r2rg==, + } stream-browserify@3.0.0: - resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} + resolution: + { + integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==, + } stream-buffers@2.2.0: - resolution: {integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==} - engines: {node: '>= 0.10.0'} + resolution: + { + integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==, + } + engines: { node: ">= 0.10.0" } stream-chain@2.2.5: - resolution: {integrity: sha512-1TJmBx6aSWqZ4tx7aTpBDXK0/e2hhcNSTV8+CbFJtDjbb+I1mZ8lHit0Grw9GRT+6JbIrrDd8esncgBi8aBXGA==} + resolution: + { + integrity: sha512-1TJmBx6aSWqZ4tx7aTpBDXK0/e2hhcNSTV8+CbFJtDjbb+I1mZ8lHit0Grw9GRT+6JbIrrDd8esncgBi8aBXGA==, + } stream-combiner@0.0.4: - resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==} + resolution: + { + integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==, + } stream-http@2.8.3: - resolution: {integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==} + resolution: + { + integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==, + } stream-json@1.8.0: - resolution: {integrity: sha512-HZfXngYHUAr1exT4fxlbc1IOce1RYxp2ldeaf97LYCOPSoOqY/1Psp7iGvpb+6JIOgkra9zDYnPX01hGAHzEPw==} + resolution: + { + integrity: sha512-HZfXngYHUAr1exT4fxlbc1IOce1RYxp2ldeaf97LYCOPSoOqY/1Psp7iGvpb+6JIOgkra9zDYnPX01hGAHzEPw==, + } stream-log-stats@3.0.2: - resolution: {integrity: sha512-393j7aeF9iRdHvyANqEQU82UQmpw2CTxgsT83caefh+lOxavVLbVrw8Mr4zjXeZLh2+xeHZMKfVx4T0rJ/EchA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-393j7aeF9iRdHvyANqEQU82UQmpw2CTxgsT83caefh+lOxavVLbVrw8Mr4zjXeZLh2+xeHZMKfVx4T0rJ/EchA==, + } + engines: { node: ">=8.0.0" } hasBin: true stream-shift@1.0.3: - resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==} + resolution: + { + integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==, + } stream-slice@0.1.2: - resolution: {integrity: sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA==} + resolution: + { + integrity: sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA==, + } stream-via@1.0.4: - resolution: {integrity: sha512-DBp0lSvX5G9KGRDTkR/R+a29H+Wk2xItOF+MpZLLNDWbEV9tGPnqLPxHEYjmiz8xGtJHRIqmI+hCjmNzqoA4nQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-DBp0lSvX5G9KGRDTkR/R+a29H+Wk2xItOF+MpZLLNDWbEV9tGPnqLPxHEYjmiz8xGtJHRIqmI+hCjmNzqoA4nQ==, + } + engines: { node: ">=0.10.0" } streaming-json-stringify@3.1.0: - resolution: {integrity: sha512-axtfs3BDxAsrZ9swD163FBrXZ8dhJJp6kUI6C97TvUZG9RHKfbg9nFbXqEheFNOb3IYMEt2ag9F62sWLFUZ4ug==} + resolution: + { + integrity: sha512-axtfs3BDxAsrZ9swD163FBrXZ8dhJJp6kUI6C97TvUZG9RHKfbg9nFbXqEheFNOb3IYMEt2ag9F62sWLFUZ4ug==, + } 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" } streamx@2.18.0: - resolution: {integrity: sha512-LLUC1TWdjVdn1weXGcSxyTR3T4+acB6tVGXT95y0nGbca4t4o/ng1wKAGTljm9VicuCVLvRlqFYXYy5GwgM7sQ==} + resolution: + { + integrity: sha512-LLUC1TWdjVdn1weXGcSxyTR3T4+acB6tVGXT95y0nGbca4t4o/ng1wKAGTljm9VicuCVLvRlqFYXYy5GwgM7sQ==, + } strict-event-emitter-types@2.0.0: - resolution: {integrity: sha512-Nk/brWYpD85WlOgzw5h173aci0Teyv8YdIAEtV+N88nDB0dLlazZyJMIsN6eo1/AR61l+p6CJTG1JIyFaoNEEA==} + resolution: + { + integrity: sha512-Nk/brWYpD85WlOgzw5h173aci0Teyv8YdIAEtV+N88nDB0dLlazZyJMIsN6eo1/AR61l+p6CJTG1JIyFaoNEEA==, + } strict-event-emitter@0.5.1: - resolution: {integrity: sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==} + resolution: + { + integrity: sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==, + } strict-uri-encode@1.1.0: - resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==, + } + engines: { node: ">=0.10.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-argv@0.3.2: - resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} - engines: {node: '>=0.6.19'} + resolution: + { + integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==, + } + engines: { node: ">=0.6.19" } string-length@4.0.2: - resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==, + } + engines: { node: ">=10" } string-length@5.0.1: - resolution: {integrity: sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==} - engines: {node: '>=12.20'} + resolution: + { + integrity: sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==, + } + engines: { node: ">=12.20" } string-natural-compare@3.0.1: - resolution: {integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==} + resolution: + { + integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==, + } string-range@1.2.2: - resolution: {integrity: sha512-tYft6IFi8SjplJpxCUxyqisD3b+R2CSkomrtJYCkvuf1KuCAWgz7YXt4O0jip7efpfCemwHEzTEAO8EuOYgh3w==} + resolution: + { + integrity: sha512-tYft6IFi8SjplJpxCUxyqisD3b+R2CSkomrtJYCkvuf1KuCAWgz7YXt4O0jip7efpfCemwHEzTEAO8EuOYgh3w==, + } string-width@1.0.2: - resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==, + } + engines: { node: ">=0.10.0" } string-width@2.1.1: - resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==, + } + engines: { node: ">=4" } 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.prototype.matchall@4.0.11: - resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==, + } + engines: { node: ">= 0.4" } string.prototype.padend@3.1.6: - resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==, + } + engines: { node: ">= 0.4" } string.prototype.padstart@3.1.6: - resolution: {integrity: sha512-1y15lz7otgfRTAVK5qbp3eHIga+w8j7+jIH+7HpUrOfnLVl6n0hbspi4EXf4tR+PNOpBjPstltemkx0SvViOCg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-1y15lz7otgfRTAVK5qbp3eHIga+w8j7+jIH+7HpUrOfnLVl6n0hbspi4EXf4tR+PNOpBjPstltemkx0SvViOCg==, + } + engines: { node: ">= 0.4" } string.prototype.trim@1.2.9: - resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==, + } + engines: { node: ">= 0.4" } string.prototype.trimend@1.0.8: - resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} + resolution: + { + integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==, + } 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@0.10.31: - resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} + resolution: + { + integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==, + } string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + resolution: + { + integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==, + } 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.3: - resolution: {integrity: sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==} + resolution: + { + integrity: sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==, + } 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@3.0.1: - resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==, + } + engines: { node: ">=0.10.0" } strip-ansi@4.0.0: - resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==, + } + engines: { node: ">=4" } strip-ansi@5.2.0: - resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==, + } + engines: { node: ">=6" } 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-string@1.0.0: - resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==, + } + engines: { node: ">=0.10.0" } 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-bom@4.0.0: - resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==, + } + engines: { node: ">=8" } 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-eof@1.0.0: - resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==, + } + engines: { node: ">=0.10.0" } 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-hex-prefix@1.0.0: - resolution: {integrity: sha512-q8d4ue7JGEiVcypji1bALTos+0pWtyGlivAWyPuTkHzuTCJqrK9sWxYQZUq6Nq3cuyv3bm734IhHvHtGGURU6A==} - engines: {node: '>=6.5.0', npm: '>=3'} + resolution: + { + integrity: sha512-q8d4ue7JGEiVcypji1bALTos+0pWtyGlivAWyPuTkHzuTCJqrK9sWxYQZUq6Nq3cuyv3bm734IhHvHtGGURU6A==, + } + engines: { node: ">=6.5.0", npm: ">=3" } 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@2.0.1: - resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==, + } + engines: { node: ">=0.10.0" } 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-json-comments@5.0.1: - resolution: {integrity: sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw==} - engines: {node: '>=14.16'} + resolution: + { + integrity: sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw==, + } + engines: { node: ">=14.16" } strip-outer@1.0.1: - resolution: {integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==, + } + engines: { node: ">=0.10.0" } strnum@1.0.5: - resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} + resolution: + { + integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==, + } structured-headers@0.4.1: - resolution: {integrity: sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==} + resolution: + { + integrity: sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==, + } stubborn-fs@1.2.5: - resolution: {integrity: sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g==} + resolution: + { + integrity: sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g==, + } style-loader@3.3.4: - resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} - engines: {node: '>= 12.13.0'} + resolution: + { + integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==, + } + engines: { node: ">= 12.13.0" } peerDependencies: webpack: ^5.0.0 style-mod@4.1.2: - resolution: {integrity: sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==} + resolution: + { + integrity: sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==, + } style-search@0.1.0: - resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==} + resolution: + { + integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==, + } style-to-object@0.4.4: - resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==} + resolution: + { + integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==, + } styled-components@5.3.11: - resolution: {integrity: sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==, + } + engines: { node: ">=10" } peerDependencies: - react: '>= 16.8.0' - react-dom: '>= 16.8.0' - react-is: '>= 16.8.0' + react: ">= 16.8.0" + react-dom: ">= 16.8.0" + react-is: ">= 16.8.0" styled-components@6.1.8: - resolution: {integrity: sha512-PQ6Dn+QxlWyEGCKDS71NGsXoVLKfE1c3vApkvDYS5KAK+V8fNWGhbSUEo9Gg2iaID2tjLXegEW3bZDUGpofRWw==} - engines: {node: '>= 16'} + resolution: + { + integrity: sha512-PQ6Dn+QxlWyEGCKDS71NGsXoVLKfE1c3vApkvDYS5KAK+V8fNWGhbSUEo9Gg2iaID2tjLXegEW3bZDUGpofRWw==, + } + engines: { node: ">= 16" } peerDependencies: - react: '>= 16.8.0' - react-dom: '>= 16.8.0' + react: ">= 16.8.0" + react-dom: ">= 16.8.0" styled-jsx@5.1.1: - resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} - engines: {node: '>= 12.0.0'} - peerDependencies: - '@babel/core': '*' - babel-plugin-macros: '*' - react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' + resolution: + { + integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, + } + engines: { node: ">= 12.0.0" } + peerDependencies: + "@babel/core": "*" + babel-plugin-macros: "*" + react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" peerDependenciesMeta: - '@babel/core': + "@babel/core": optional: true babel-plugin-macros: optional: true styled-system@5.1.5: - resolution: {integrity: sha512-7VoD0o2R3RKzOzPK0jYrVnS8iJdfkKsQJNiLRDjikOpQVqQHns/DXWaPZOH4tIKkhAT7I6wIsy9FWTWh2X3q+A==} + resolution: + { + integrity: sha512-7VoD0o2R3RKzOzPK0jYrVnS8iJdfkKsQJNiLRDjikOpQVqQHns/DXWaPZOH4tIKkhAT7I6wIsy9FWTWh2X3q+A==, + } stylehacks@5.1.1: - resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} - engines: {node: ^10 || ^12 || >=14.0} + resolution: + { + integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==, + } + engines: { node: ^10 || ^12 || >=14.0 } peerDependencies: postcss: ^8.2.15 stylelint-config-recommended@13.0.0: - resolution: {integrity: sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ==} - engines: {node: ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ==, + } + engines: { node: ^14.13.1 || >=16.0.0 } peerDependencies: stylelint: ^15.10.0 stylelint-config-styled-components@0.1.1: - resolution: {integrity: sha512-z5Xz/9GmvxO6e/DLzBMwkB85zHxEEjN6K7Cj80Bi+o/9vR9eS3GX3E9VuMnX9WLFYulqbqLtTapGGY28JBiy9Q==} + resolution: + { + integrity: sha512-z5Xz/9GmvxO6e/DLzBMwkB85zHxEEjN6K7Cj80Bi+o/9vR9eS3GX3E9VuMnX9WLFYulqbqLtTapGGY28JBiy9Q==, + } stylelint-processor-styled-components@1.10.0: - resolution: {integrity: sha512-g4HpN9rm0JD0LoHuIOcd/FIjTZCJ0ErQ+dC3VTxp+dSvnkV+MklKCCmCQEdz5K5WxF4vPuzfVgdbSDuPYGZhoA==} + resolution: + { + integrity: sha512-g4HpN9rm0JD0LoHuIOcd/FIjTZCJ0ErQ+dC3VTxp+dSvnkV+MklKCCmCQEdz5K5WxF4vPuzfVgdbSDuPYGZhoA==, + } stylelint@14.16.1: - resolution: {integrity: sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + resolution: + { + integrity: sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==, + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } hasBin: true styleq@0.1.3: - resolution: {integrity: sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==} + resolution: + { + integrity: sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==, + } stylis@4.2.0: - resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} + resolution: + { + integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==, + } stylis@4.3.1: - resolution: {integrity: sha512-EQepAV+wMsIaGVGX1RECzgrcqRRU/0sYOHkeLsZ3fzHaHXZy4DaOOX0vOlGQdlsjkh3mFHAIlVimpwAs4dslyQ==} + resolution: + { + integrity: sha512-EQepAV+wMsIaGVGX1RECzgrcqRRU/0sYOHkeLsZ3fzHaHXZy4DaOOX0vOlGQdlsjkh3mFHAIlVimpwAs4dslyQ==, + } sucrase@3.34.0: - resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==, + } + engines: { node: ">=8" } hasBin: true 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 sudo-prompt@8.2.5: - resolution: {integrity: sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==} + resolution: + { + integrity: sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==, + } sudo-prompt@9.1.1: - resolution: {integrity: sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA==} + resolution: + { + integrity: sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA==, + } sudo-prompt@9.2.1: - resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==} + resolution: + { + integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==, + } sumchecker@3.0.1: - resolution: {integrity: sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==} - engines: {node: '>= 8.0'} + resolution: + { + integrity: sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==, + } + engines: { node: ">= 8.0" } superagent@6.1.0: - resolution: {integrity: sha512-OUDHEssirmplo3F+1HWKUrUjvnQuA+nZI6i/JJBdXb5eq9IyEQwPyPpqND+SSsxf6TygpBEkUjISVRN4/VOpeg==} - engines: {node: '>= 7.0.0'} + resolution: + { + integrity: sha512-OUDHEssirmplo3F+1HWKUrUjvnQuA+nZI6i/JJBdXb5eq9IyEQwPyPpqND+SSsxf6TygpBEkUjISVRN4/VOpeg==, + } + engines: { node: ">= 7.0.0" } deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net superagent@8.1.2: - resolution: {integrity: sha512-6WTxW1EB6yCxV5VFOIPQruWGHqc3yI7hEmZK6h+pyk69Lk/Ut7rLUY6W/ONF2MjBuGjvmMiIpsrVJ2vjrHlslA==} - engines: {node: '>=6.4.0 <13 || >=14'} + resolution: + { + integrity: sha512-6WTxW1EB6yCxV5VFOIPQruWGHqc3yI7hEmZK6h+pyk69Lk/Ut7rLUY6W/ONF2MjBuGjvmMiIpsrVJ2vjrHlslA==, + } + engines: { node: ">=6.4.0 <13 || >=14" } deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net superstruct@0.14.2: - resolution: {integrity: sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ==} + resolution: + { + integrity: sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ==, + } superstruct@0.6.2: - resolution: {integrity: sha512-lvA97MFAJng3rfjcafT/zGTSWm6Tbpk++DP6It4Qg7oNaeM+2tdJMuVgGje21/bIpBEs6iQql1PJH6dKTjl4Ig==} + resolution: + { + integrity: sha512-lvA97MFAJng3rfjcafT/zGTSWm6Tbpk++DP6It4Qg7oNaeM+2tdJMuVgGje21/bIpBEs6iQql1PJH6dKTjl4Ig==, + } supports-color@2.0.0: - resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==, + } + engines: { node: ">=0.8.0" } supports-color@4.5.0: - resolution: {integrity: sha512-ycQR/UbvI9xIlEdQT1TQqwoXtEldExbCEAJgRo5YXlmSKjv6ThHnP9/vwGa1gr19Gfw+LkFd7KqYMhzrRC5JYw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-ycQR/UbvI9xIlEdQT1TQqwoXtEldExbCEAJgRo5YXlmSKjv6ThHnP9/vwGa1gr19Gfw+LkFd7KqYMhzrRC5JYw==, + } + engines: { node: ">=4" } supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, + } + engines: { node: ">=4" } 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-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, + } + engines: { node: ">=10" } supports-color@9.4.0: - resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==, + } + engines: { node: ">=12" } supports-hyperlinks@2.3.0: - resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==, + } + 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==, + } svg-tags@1.0.0: - resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} + resolution: + { + integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==, + } svgo@1.3.2: - resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==, + } + engines: { node: ">=4.0.0" } deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. hasBin: true svgo@2.8.0: - resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==, + } + engines: { node: ">=10.13.0" } hasBin: true swarm-js@0.1.42: - resolution: {integrity: sha512-BV7c/dVlA3R6ya1lMlSSNPLYrntt0LUq4YMgy3iwpCIc6rZnS5W2wUoctarZ5pXlpKtxDDf9hNziEkcfrxdhqQ==} + resolution: + { + integrity: sha512-BV7c/dVlA3R6ya1lMlSSNPLYrntt0LUq4YMgy3iwpCIc6rZnS5W2wUoctarZ5pXlpKtxDDf9hNziEkcfrxdhqQ==, + } swc-loader@0.2.6: - resolution: {integrity: sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg==} + resolution: + { + integrity: sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg==, + } peerDependencies: - '@swc/core': ^1.2.147 - webpack: '>=2' + "@swc/core": ^1.2.147 + webpack: ">=2" swiper@7.4.1: - resolution: {integrity: sha512-dhbL4tpYFvHug1J7GnKElfTi6EYhlZy/vNZRhHkWFyUsWZ1Vovipxj3la5gqllMogygXJMe3zvVv+f6eppvWiA==} - engines: {node: '>= 4.7.0'} + resolution: + { + integrity: sha512-dhbL4tpYFvHug1J7GnKElfTi6EYhlZy/vNZRhHkWFyUsWZ1Vovipxj3la5gqllMogygXJMe3zvVv+f6eppvWiA==, + } + engines: { node: ">= 4.7.0" } symbol-observable@1.2.0: - resolution: {integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==, + } + engines: { node: ">=0.10.0" } symbol-observable@2.0.3: - resolution: {integrity: sha512-sQV7phh2WCYAn81oAkakC5qjq2Ml0g8ozqz03wOGnx9dDlG1de6yrF+0RAzSJD8fPUow3PTSMf2SAbOGxb93BA==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-sQV7phh2WCYAn81oAkakC5qjq2Ml0g8ozqz03wOGnx9dDlG1de6yrF+0RAzSJD8fPUow3PTSMf2SAbOGxb93BA==, + } + engines: { node: ">=0.10" } symbol-tree@3.2.4: - resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + resolution: + { + integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==, + } symbol.inspect@1.0.1: - resolution: {integrity: sha512-YQSL4duoHmLhsTD1Pw8RW6TZ5MaTX5rXJnqacJottr2P2LZBF/Yvrc3ku4NUpMOm8aM0KOCqM+UAkMA5HWQCzQ==} + resolution: + { + integrity: sha512-YQSL4duoHmLhsTD1Pw8RW6TZ5MaTX5rXJnqacJottr2P2LZBF/Yvrc3ku4NUpMOm8aM0KOCqM+UAkMA5HWQCzQ==, + } symbol.prototype.description@1.0.6: - resolution: {integrity: sha512-VgVgtEabORsQtmuindtO7v8fF+bsKxUkvEMFj+ecBK6bomrwv5JUSWdMoC3ypa9+Jaqp/wOzkWk4f6I+p5GzyA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-VgVgtEabORsQtmuindtO7v8fF+bsKxUkvEMFj+ecBK6bomrwv5JUSWdMoC3ypa9+Jaqp/wOzkWk4f6I+p5GzyA==, + } + engines: { node: ">= 0.4" } synchronous-promise@2.0.17: - resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==} + resolution: + { + integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==, + } synckit@0.8.8: - resolution: {integrity: sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==} - engines: {node: ^14.18.0 || >=16.0.0} + resolution: + { + integrity: sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==, + } + engines: { node: ^14.18.0 || >=16.0.0 } tabbable@5.3.3: - resolution: {integrity: sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==} + resolution: + { + integrity: sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==, + } table-layout@1.0.2: - resolution: {integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==, + } + engines: { node: ">=8.0.0" } table@6.8.2: - resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==, + } + engines: { node: ">=10.0.0" } tailwindcss@3.4.3: - resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==, + } + engines: { node: ">=14.0.0" } hasBin: true tapable@1.1.3: - resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==, + } + engines: { node: ">=6" } tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==, + } + engines: { node: ">=6" } tar-fs@2.1.1: - resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} + resolution: + { + integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==, + } tar-stream@2.2.0: - resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==, + } + engines: { node: ">=6" } tar-stream@3.1.7: - resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} + resolution: + { + integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==, + } tar@4.4.19: - resolution: {integrity: sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==} - engines: {node: '>=4.5'} + resolution: + { + integrity: sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==, + } + engines: { node: ">=4.5" } tar@6.2.1: - resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==, + } + engines: { node: ">=10" } telejson@6.0.8: - resolution: {integrity: sha512-nerNXi+j8NK1QEfBHtZUN/aLdDcyupA//9kAboYLrtzZlPLpUfqbVGWb9zz91f/mIjRbAYhbgtnJHY8I1b5MBg==} + resolution: + { + integrity: sha512-nerNXi+j8NK1QEfBHtZUN/aLdDcyupA//9kAboYLrtzZlPLpUfqbVGWb9zz91f/mIjRbAYhbgtnJHY8I1b5MBg==, + } telejson@7.2.0: - resolution: {integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==} + resolution: + { + integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==, + } telnet-client@1.2.8: - resolution: {integrity: sha512-W+w4k3QAmULVNhBVT2Fei369kGZCh/TH25M7caJAXW+hLxwoQRuw0di3cX4l0S9fgH3Mvq7u+IFMoBDpEw/eIg==} + resolution: + { + integrity: sha512-W+w4k3QAmULVNhBVT2Fei369kGZCh/TH25M7caJAXW+hLxwoQRuw0di3cX4l0S9fgH3Mvq7u+IFMoBDpEw/eIg==, + } temp-dir@1.0.0: - resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==, + } + engines: { node: ">=4" } 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" } temp-file@3.4.0: - resolution: {integrity: sha512-C5tjlC/HCtVUOi3KWVokd4vHVViOmGjtLwIh4MuzPo/nMYTV/p1urt3RnMz2IWXDdKEGJH3k5+KPxtqRsUYGtg==} + resolution: + { + integrity: sha512-C5tjlC/HCtVUOi3KWVokd4vHVViOmGjtLwIh4MuzPo/nMYTV/p1urt3RnMz2IWXDdKEGJH3k5+KPxtqRsUYGtg==, + } temp@0.8.4: - resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==, + } + engines: { node: ">=6.0.0" } temp@0.9.4: - resolution: {integrity: sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==, + } + engines: { node: ">=6.0.0" } tempfile@2.0.0: - resolution: {integrity: sha512-ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA==, + } + engines: { node: ">=4" } tempy@0.3.0: - resolution: {integrity: sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==, + } + 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" } tempy@0.7.1: - resolution: {integrity: sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg==, + } + engines: { node: ">=10" } tempy@1.0.1: - resolution: {integrity: sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==, + } + engines: { node: ">=10" } term-size@2.2.1: - resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==, + } + engines: { node: ">=8" } terminal-link@2.1.1: - resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==, + } + engines: { node: ">=8" } terser-webpack-plugin@5.3.10: - resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} - engines: {node: '>= 10.13.0'} - peerDependencies: - '@swc/core': '*' - esbuild: '*' - uglify-js: '*' + resolution: + { + integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==, + } + engines: { node: ">= 10.13.0" } + peerDependencies: + "@swc/core": "*" + esbuild: "*" + uglify-js: "*" webpack: ^5.1.0 peerDependenciesMeta: - '@swc/core': + "@swc/core": optional: true esbuild: optional: true @@ -28300,289 +43288,530 @@ packages: optional: true terser@5.30.0: - resolution: {integrity: sha512-Y/SblUl5kEyEFzhMAQdsxVHh+utAxd4IuRNJzKywY/4uzSogh3G219jqbDDxYu4MXO9CzY3tSEqmZvW6AoEDJw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Y/SblUl5kEyEFzhMAQdsxVHh+utAxd4IuRNJzKywY/4uzSogh3G219jqbDDxYu4MXO9CzY3tSEqmZvW6AoEDJw==, + } + engines: { node: ">=10" } hasBin: true teslabot@1.5.0: - resolution: {integrity: sha512-e2MmELhCgrgZEGo7PQu/6bmYG36IDH+YrBI1iGm6jovXkeDIGa3pZ2WSqRjzkuw2vt1EqfkZoV5GpXgqL8QJVg==} + resolution: + { + integrity: sha512-e2MmELhCgrgZEGo7PQu/6bmYG36IDH+YrBI1iGm6jovXkeDIGa3pZ2WSqRjzkuw2vt1EqfkZoV5GpXgqL8QJVg==, + } test-exclude@6.0.0: - resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==, + } + engines: { node: ">=8" } text-decoder@1.1.0: - resolution: {integrity: sha512-TmLJNj6UgX8xcUZo4UDStGQtDiTzF7BzWlzn9g7UWrjkpHr5uJTK1ld16wZ3LXb2vb6jH8qU89dW5whuMdXYdw==} + resolution: + { + integrity: sha512-TmLJNj6UgX8xcUZo4UDStGQtDiTzF7BzWlzn9g7UWrjkpHr5uJTK1ld16wZ3LXb2vb6jH8qU89dW5whuMdXYdw==, + } text-encoding-polyfill@0.6.7: - resolution: {integrity: sha512-/DZ1XJqhbqRkCop6s9ZFu8JrFRwmVuHg4quIRm+ziFkR3N3ec6ck6yBvJ1GYeEQZhLVwRW0rZE+C3SSJpy0RTg==} + resolution: + { + integrity: sha512-/DZ1XJqhbqRkCop6s9ZFu8JrFRwmVuHg4quIRm+ziFkR3N3ec6ck6yBvJ1GYeEQZhLVwRW0rZE+C3SSJpy0RTg==, + } text-encoding-utf-8@1.0.2: - resolution: {integrity: sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==} + resolution: + { + integrity: sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==, + } text-extensions@1.9.0: - resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==, + } + engines: { node: ">=0.10" } text-hex@1.0.0: - resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==} + resolution: + { + integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==, + } text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + resolution: + { + integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==, + } 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==, + } thor-devkit@2.0.9: - resolution: {integrity: sha512-qCbkjAFhlLq4Tb7YIQokEryPb9pCCGUX0gRIBGJr+sBNlyOFO8TGJFZ8d7+VXWpdDhcWerpFdekB55lD43GiGQ==} + resolution: + { + integrity: sha512-qCbkjAFhlLq4Tb7YIQokEryPb9pCCGUX0gRIBGJr+sBNlyOFO8TGJFZ8d7+VXWpdDhcWerpFdekB55lD43GiGQ==, + } thread-loader@3.0.4: - resolution: {integrity: sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA==} - engines: {node: '>= 10.13.0'} + resolution: + { + integrity: sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA==, + } + engines: { node: ">= 10.13.0" } peerDependencies: webpack: ^4.27.0 || ^5.0.0 thread-stream@3.0.0: - resolution: {integrity: sha512-oUIFjxaUT6knhPtWgDMc29zF1FcSl0yXpapkyrQrCGEfYA2HUZXCilUtKyYIv6HkCyqSPAMkY+EG0GbyIrNDQg==} + resolution: + { + integrity: sha512-oUIFjxaUT6knhPtWgDMc29zF1FcSl0yXpapkyrQrCGEfYA2HUZXCilUtKyYIv6HkCyqSPAMkY+EG0GbyIrNDQg==, + } throat@5.0.0: - resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} + resolution: + { + integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==, + } throat@6.0.2: - resolution: {integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==} + resolution: + { + integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==, + } through2@2.0.5: - resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + resolution: + { + integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==, + } through2@4.0.2: - resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} + resolution: + { + integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==, + } through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + resolution: + { + integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, + } thunky@1.1.0: - resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} + resolution: + { + integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==, + } timed-out@4.0.1: - resolution: {integrity: sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==, + } + engines: { node: ">=0.10.0" } timemachine@0.3.2: - resolution: {integrity: sha512-JNKeKZXQJc8UC19JcIq0XziBud+fNNJfatZ57lwk+o1O9mpW2FmzWvRw7FTTOKuN6M0zsjGIlNi0O0QrF5WVRA==} + resolution: + { + integrity: sha512-JNKeKZXQJc8UC19JcIq0XziBud+fNNJfatZ57lwk+o1O9mpW2FmzWvRw7FTTOKuN6M0zsjGIlNi0O0QrF5WVRA==, + } timers-browserify@2.0.12: - resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==} - engines: {node: '>=0.6.0'} + resolution: + { + integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==, + } + engines: { node: ">=0.6.0" } tiny-glob@0.2.9: - resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} + resolution: + { + integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==, + } tiny-hashes@1.0.1: - resolution: {integrity: sha512-knIN5zj4fl7kW4EBU5sLP20DWUvi/rVouvJezV0UAym2DkQaqm365Nyc8F3QEiOvunNDMxR8UhcXd1d5g+Wg1g==} + resolution: + { + integrity: sha512-knIN5zj4fl7kW4EBU5sLP20DWUvi/rVouvJezV0UAym2DkQaqm365Nyc8F3QEiOvunNDMxR8UhcXd1d5g+Wg1g==, + } tiny-invariant@1.3.3: - resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} + resolution: + { + integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==, + } tiny-queue@0.2.0: - resolution: {integrity: sha512-ucfrvjzfbtc+xqmn95DEUtGcDHJHQgZ9IR0mizPOZBkY45reZDCJjafUGVJOGJassjn0MavTyWOCQcG+agpLxw==} + resolution: + { + integrity: sha512-ucfrvjzfbtc+xqmn95DEUtGcDHJHQgZ9IR0mizPOZBkY45reZDCJjafUGVJOGJassjn0MavTyWOCQcG+agpLxw==, + } tiny-secp256k1@1.1.6: - resolution: {integrity: sha512-FmqJZGduTyvsr2cF3375fqGHUovSwDi/QytexX1Se4BPuPZpTE5Ftp5fg+EFSuEf3lhZqgCRjEG3ydUQ/aNiwA==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-FmqJZGduTyvsr2cF3375fqGHUovSwDi/QytexX1Se4BPuPZpTE5Ftp5fg+EFSuEf3lhZqgCRjEG3ydUQ/aNiwA==, + } + engines: { node: ">=6.0.0" } tiny-typed-emitter@2.1.0: - resolution: {integrity: sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA==} + resolution: + { + integrity: sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA==, + } tiny-warning@1.0.3: - resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} + resolution: + { + integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==, + } tinycolor2@1.6.0: - resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} + resolution: + { + integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==, + } tippy.js@6.3.7: - resolution: {integrity: sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==} + resolution: + { + integrity: sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==, + } title@3.5.3: - resolution: {integrity: sha512-20JyowYglSEeCvZv3EZ0nZ046vLarO37prvV0mbtQV7C8DJPGgN967r8SJkqd3XK3K3lD3/Iyfp3avjfil8Q2Q==} + resolution: + { + integrity: sha512-20JyowYglSEeCvZv3EZ0nZ046vLarO37prvV0mbtQV7C8DJPGgN967r8SJkqd3XK3K3lD3/Iyfp3avjfil8Q2Q==, + } hasBin: true titleize@1.0.0: - resolution: {integrity: sha512-TARUb7z1pGvlLxgPk++7wJ6aycXF3GJ0sNSBTAsTuJrQG5QuZlkUQP+zl+nbjAh4gMX9yDw9ZYklMd7vAfJKEw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-TARUb7z1pGvlLxgPk++7wJ6aycXF3GJ0sNSBTAsTuJrQG5QuZlkUQP+zl+nbjAh4gMX9yDw9ZYklMd7vAfJKEw==, + } + engines: { node: ">=0.10.0" } tmp-promise@3.0.3: - resolution: {integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==} + resolution: + { + integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==, + } tmp@0.0.33: - resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} - engines: {node: '>=0.6.0'} + resolution: + { + integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, + } + engines: { node: ">=0.6.0" } tmp@0.2.3: - resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} - engines: {node: '>=14.14'} + resolution: + { + integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==, + } + engines: { node: ">=14.14" } tmpl@1.0.5: - resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} + resolution: + { + integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==, + } to-arraybuffer@1.0.1: - resolution: {integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==} + resolution: + { + integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==, + } to-camel-case@1.0.0: - resolution: {integrity: sha512-nD8pQi5H34kyu1QDMFjzEIYqk0xa9Alt6ZfrdEMuHCFOfTLhDG5pgTu/aAM9Wt9lXILwlXmWP43b8sav0GNE8Q==} + resolution: + { + integrity: sha512-nD8pQi5H34kyu1QDMFjzEIYqk0xa9Alt6ZfrdEMuHCFOfTLhDG5pgTu/aAM9Wt9lXILwlXmWP43b8sav0GNE8Q==, + } to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, + } + engines: { node: ">=4" } to-no-case@1.0.2: - resolution: {integrity: sha512-Z3g735FxuZY8rodxV4gH7LxClE4H0hTIyHNIHdk+vpQxjLm0cwnKXq/OFVZ76SOQmto7txVcwSCwkU5kqp+FKg==} + resolution: + { + integrity: sha512-Z3g735FxuZY8rodxV4gH7LxClE4H0hTIyHNIHdk+vpQxjLm0cwnKXq/OFVZ76SOQmto7txVcwSCwkU5kqp+FKg==, + } to-readable-stream@1.0.0: - resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==, + } + engines: { node: ">=6" } 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" } to-snake-case@1.0.0: - resolution: {integrity: sha512-joRpzBAk1Bhi2eGEYBjukEWHOe/IvclOkiJl3DtA91jV6NwQ3MwXA4FHYeqk8BNp/D8bmi9tcNbRu/SozP0jbQ==} + resolution: + { + integrity: sha512-joRpzBAk1Bhi2eGEYBjukEWHOe/IvclOkiJl3DtA91jV6NwQ3MwXA4FHYeqk8BNp/D8bmi9tcNbRu/SozP0jbQ==, + } to-space-case@1.0.0: - resolution: {integrity: sha512-rLdvwXZ39VOn1IxGL3V6ZstoTbwLRckQmn/U8ZDLuWwIXNpuZDhQ3AiRUlhTbOXFVE9C+dR51wM0CBDhk31VcA==} + resolution: + { + integrity: sha512-rLdvwXZ39VOn1IxGL3V6ZstoTbwLRckQmn/U8ZDLuWwIXNpuZDhQ3AiRUlhTbOXFVE9C+dR51wM0CBDhk31VcA==, + } tocbot@4.25.0: - resolution: {integrity: sha512-kE5wyCQJ40hqUaRVkyQ4z5+4juzYsv/eK+aqD97N62YH0TxFhzJvo22RUQQZdO3YnXAk42ZOfOpjVdy+Z0YokA==} + resolution: + { + integrity: sha512-kE5wyCQJ40hqUaRVkyQ4z5+4juzYsv/eK+aqD97N62YH0TxFhzJvo22RUQQZdO3YnXAk42ZOfOpjVdy+Z0YokA==, + } toidentifier@1.0.0: - resolution: {integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==} - engines: {node: '>=0.6'} + resolution: + { + integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==, + } + engines: { node: ">=0.6" } 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" } touch@3.1.0: - resolution: {integrity: sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==} + resolution: + { + integrity: sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==, + } hasBin: true tough-cookie@2.5.0: - resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==} - engines: {node: '>=0.8'} + resolution: + { + integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==, + } + engines: { node: ">=0.8" } tough-cookie@4.1.3: - resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==, + } + engines: { node: ">=6" } tough-cookie@4.1.4: - resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==, + } + engines: { node: ">=6" } 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==, + } tr46@2.1.0: - resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==, + } + engines: { node: ">=8" } tr46@3.0.0: - resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==, + } + engines: { node: ">=12" } trace-event-lib@1.4.1: - resolution: {integrity: sha512-TOgFolKG8JFY+9d5EohGWMvwvteRafcyfPWWNIqcuD1W/FUvxWcy2MSCZ/beYHM63oYPHYHCd3tkbgCctHVP7w==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-TOgFolKG8JFY+9d5EohGWMvwvteRafcyfPWWNIqcuD1W/FUvxWcy2MSCZ/beYHM63oYPHYHCd3tkbgCctHVP7w==, + } + engines: { node: ">=12.0.0" } traverse@0.3.9: - resolution: {integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==} + resolution: + { + integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==, + } traverse@0.6.8: - resolution: {integrity: sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA==, + } + engines: { node: ">= 0.4" } 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==, + } trim-newlines@3.0.1: - resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==, + } + engines: { node: ">=8" } trim-repeated@1.0.0: - resolution: {integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==, + } + engines: { node: ">=0.10.0" } + + trim-right@1.0.1: + resolution: + { + integrity: sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==, + } + engines: { node: ">=0.10.0" } trim-trailing-lines@1.1.4: - resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==} + resolution: + { + integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==, + } trim@0.0.1: - resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==} + resolution: + { + integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==, + } deprecated: Use String.prototype.trim() instead triple-beam@1.4.1: - resolution: {integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==} - engines: {node: '>= 14.0.0'} + resolution: + { + integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==, + } + engines: { node: ">= 14.0.0" } tronweb@5.3.2: - resolution: {integrity: sha512-iPcIjMCxb6H7FXMntAj47F3L+7jSideyQ7ZOvRj9MeZBh46SHevMrDDR57HzakUa/tT8VvlPFHtqFK4hzTLkXw==} + resolution: + { + integrity: sha512-iPcIjMCxb6H7FXMntAj47F3L+7jSideyQ7ZOvRj9MeZBh46SHevMrDDR57HzakUa/tT8VvlPFHtqFK4hzTLkXw==, + } trough@1.0.5: - resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} + resolution: + { + integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==, + } trough@2.2.0: - resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + resolution: + { + integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==, + } truncate-utf8-bytes@1.0.2: - resolution: {integrity: sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==} + resolution: + { + integrity: sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==, + } tryer@1.0.1: - resolution: {integrity: sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==} + resolution: + { + integrity: sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==, + } ts-api-utils@1.3.0: - resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==, + } + engines: { node: ">=16" } peerDependencies: - typescript: '>=4.2.0' + typescript: ">=4.2.0" 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-jest@28.0.8: - resolution: {integrity: sha512-5FaG0lXmRPzApix8oFG8RKjAz4ehtm8yMKOTy5HX3fY6W8kmvOrmcY0hKDElW52FJov+clhUbrKAqofnj4mXTg==} - engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + resolution: + { + integrity: sha512-5FaG0lXmRPzApix8oFG8RKjAz4ehtm8yMKOTy5HX3fY6W8kmvOrmcY0hKDElW52FJov+clhUbrKAqofnj4mXTg==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } hasBin: true peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@jest/types': ^28.0.0 + "@babel/core": ">=7.0.0-beta.0 <8" + "@jest/types": ^28.0.0 babel-jest: ^28.0.0 - esbuild: '*' + esbuild: "*" jest: ^28.0.0 - typescript: '>=4.3' + typescript: ">=4.3" peerDependenciesMeta: - '@babel/core': + "@babel/core": optional: true - '@jest/types': + "@jest/types": optional: true babel-jest: optional: true @@ -28590,20 +43819,23 @@ packages: optional: true ts-jest@29.1.2: - resolution: {integrity: sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==} - engines: {node: ^16.10.0 || ^18.0.0 || >=20.0.0} + resolution: + { + integrity: sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==, + } + engines: { node: ^16.10.0 || ^18.0.0 || >=20.0.0 } hasBin: true peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@jest/types': ^29.0.0 + "@babel/core": ">=7.0.0-beta.0 <8" + "@jest/types": ^29.0.0 babel-jest: ^29.0.0 - esbuild: '*' + esbuild: "*" jest: ^29.0.0 - typescript: '>=4.3 <6' + typescript: ">=4.3 <6" peerDependenciesMeta: - '@babel/core': + "@babel/core": optional: true - '@jest/types': + "@jest/types": optional: true babel-jest: optional: true @@ -28611,23 +43843,26 @@ packages: optional: true ts-jest@29.1.4: - resolution: {integrity: sha512-YiHwDhSvCiItoAgsKtoLFCuakDzDsJ1DLDnSouTaTmdOcOwIkSzbLXduaQ6M5DRVhuZC/NYaaZ/mtHbWMv/S6Q==} - engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} + resolution: + { + integrity: sha512-YiHwDhSvCiItoAgsKtoLFCuakDzDsJ1DLDnSouTaTmdOcOwIkSzbLXduaQ6M5DRVhuZC/NYaaZ/mtHbWMv/S6Q==, + } + engines: { node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0 } hasBin: true peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@jest/transform': ^29.0.0 - '@jest/types': ^29.0.0 + "@babel/core": ">=7.0.0-beta.0 <8" + "@jest/transform": ^29.0.0 + "@jest/types": ^29.0.0 babel-jest: ^29.0.0 - esbuild: '*' + esbuild: "*" jest: ^29.0.0 - typescript: '>=4.3 <6' + typescript: ">=4.3 <6" peerDependenciesMeta: - '@babel/core': + "@babel/core": optional: true - '@jest/transform': + "@jest/transform": optional: true - '@jest/types': + "@jest/types": optional: true babel-jest: optional: true @@ -28635,23 +43870,26 @@ packages: optional: true ts-jest@29.1.5: - resolution: {integrity: sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg==} - engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} + resolution: + { + integrity: sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg==, + } + engines: { node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0 } hasBin: true peerDependencies: - '@babel/core': '>=7.0.0-beta.0 <8' - '@jest/transform': ^29.0.0 - '@jest/types': ^29.0.0 + "@babel/core": ">=7.0.0-beta.0 <8" + "@jest/transform": ^29.0.0 + "@jest/types": ^29.0.0 babel-jest: ^29.0.0 - esbuild: '*' + esbuild: "*" jest: ^29.0.0 - typescript: '>=4.3 <6' + typescript: ">=4.3 <6" peerDependenciesMeta: - '@babel/core': + "@babel/core": optional: true - '@jest/transform': + "@jest/transform": optional: true - '@jest/types': + "@jest/types": optional: true babel-jest: optional: true @@ -28659,50 +43897,71 @@ packages: optional: true ts-loader@9.5.1: - resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==, + } + engines: { node: ">=12.0.0" } peerDependencies: - typescript: '*' + typescript: "*" webpack: ^5.0.0 ts-node@10.9.2: - resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} + resolution: + { + integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==, + } hasBin: true peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' + "@swc/core": ">=1.2.50" + "@swc/wasm": ">=1.2.50" + "@types/node": "*" + typescript: ">=2.7" peerDependenciesMeta: - '@swc/core': + "@swc/core": optional: true - '@swc/wasm': + "@swc/wasm": optional: true ts-object-utils@0.0.5: - resolution: {integrity: sha512-iV0GvHqOmilbIKJsfyfJY9/dNHCs969z3so90dQWsO1eMMozvTpnB1MEaUbb3FYtZTGjv5sIy/xmslEz0Rg2TA==} + resolution: + { + integrity: sha512-iV0GvHqOmilbIKJsfyfJY9/dNHCs969z3so90dQWsO1eMMozvTpnB1MEaUbb3FYtZTGjv5sIy/xmslEz0Rg2TA==, + } tsconfig-paths@3.15.0: - resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + resolution: + { + integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==, + } tslib@2.6.2: - resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + resolution: + { + integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==, + } tsscmp@1.0.6: - resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==} - engines: {node: '>=0.6.x'} + resolution: + { + integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==, + } + engines: { node: ">=0.6.x" } tsup@7.3.0: - resolution: {integrity: sha512-Ja1eaSRrE+QarmATlNO5fse2aOACYMBX+IZRKy1T+gpyH+jXgRrl5l4nHIQJQ1DoDgEjHDTw8cpE085UdBZuWQ==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-Ja1eaSRrE+QarmATlNO5fse2aOACYMBX+IZRKy1T+gpyH+jXgRrl5l4nHIQJQ1DoDgEjHDTw8cpE085UdBZuWQ==, + } + engines: { node: ">=18" } deprecated: Breaking node 16 hasBin: true peerDependencies: - '@swc/core': ^1 + "@swc/core": ^1 postcss: ^8.4.12 - typescript: '>=4.5.0' + typescript: ">=4.5.0" peerDependenciesMeta: - '@swc/core': + "@swc/core": optional: true postcss: optional: true @@ -28710,767 +43969,1378 @@ packages: optional: true tsutils@3.21.0: - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==, + } + engines: { node: ">= 6" } peerDependencies: - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" tsx@4.10.3: - resolution: {integrity: sha512-f0g60aFSVRVkzcQkEflh8fPLRfmt+HJHgWi/plG5UgvVaV+9TcpOwJ0sZJSACXmwmjMPg9yQR0BhTLbhkfV2uA==} - engines: {node: '>=18.0.0'} + resolution: + { + integrity: sha512-f0g60aFSVRVkzcQkEflh8fPLRfmt+HJHgWi/plG5UgvVaV+9TcpOwJ0sZJSACXmwmjMPg9yQR0BhTLbhkfV2uA==, + } + engines: { node: ">=18.0.0" } hasBin: true tty-browserify@0.0.0: - resolution: {integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==} + resolution: + { + integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==, + } tunnel-agent@0.6.0: - resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + resolution: + { + integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==, + } tunnel@0.0.6: - resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==} - engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'} + resolution: + { + integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==, + } + engines: { node: ">=0.6.11 <=0.7.0 || >=0.7.3" } turbo-darwin-64@2.1.2: - resolution: {integrity: sha512-3TEBxHWh99h2yIzkuIigMEOXt/ItYQp0aPiJjPd1xN4oDcsKK5AxiFKPH9pdtfIBzYsY59kQhZiFj0ELnSP7Bw==} + resolution: + { + integrity: sha512-3TEBxHWh99h2yIzkuIigMEOXt/ItYQp0aPiJjPd1xN4oDcsKK5AxiFKPH9pdtfIBzYsY59kQhZiFj0ELnSP7Bw==, + } cpu: [x64] os: [darwin] turbo-darwin-arm64@2.1.2: - resolution: {integrity: sha512-he0miWNq2WxJzsH82jS2Z4MXpnkzn9SH8a79iPXiJkq25QREImucscM4RPasXm8wARp91pyysJMq6aasD45CeA==} + resolution: + { + integrity: sha512-he0miWNq2WxJzsH82jS2Z4MXpnkzn9SH8a79iPXiJkq25QREImucscM4RPasXm8wARp91pyysJMq6aasD45CeA==, + } cpu: [arm64] os: [darwin] turbo-linux-64@2.1.2: - resolution: {integrity: sha512-fKUBcc0rK8Vdqv5a/E3CSpMBLG1bzwv+Q0Q83F8fG2ZfNCNKGbcEYABdonNZkkx141Rj03cZQFCgxu3MVEGU+A==} + resolution: + { + integrity: sha512-fKUBcc0rK8Vdqv5a/E3CSpMBLG1bzwv+Q0Q83F8fG2ZfNCNKGbcEYABdonNZkkx141Rj03cZQFCgxu3MVEGU+A==, + } cpu: [x64] os: [linux] turbo-linux-arm64@2.1.2: - resolution: {integrity: sha512-sV8Bpmm0WiuxgbhxymcC7wSsuxfBBieI98GegSwbr/bs1ANAgzCg93urIrdKdQ3/b31zZxQwcaP4FBF1wx1Qdg==} + resolution: + { + integrity: sha512-sV8Bpmm0WiuxgbhxymcC7wSsuxfBBieI98GegSwbr/bs1ANAgzCg93urIrdKdQ3/b31zZxQwcaP4FBF1wx1Qdg==, + } cpu: [arm64] os: [linux] turbo-windows-64@2.1.2: - resolution: {integrity: sha512-wcmIJZI9ORT9ykHGliFE6kWRQrlH930QGSjSgWC8uFChFFuOyUlvC7ttcxuSvU9VqC7NF4C+GVAcFJQ8lTjN7g==} + resolution: + { + integrity: sha512-wcmIJZI9ORT9ykHGliFE6kWRQrlH930QGSjSgWC8uFChFFuOyUlvC7ttcxuSvU9VqC7NF4C+GVAcFJQ8lTjN7g==, + } cpu: [x64] os: [win32] turbo-windows-arm64@2.1.2: - resolution: {integrity: sha512-zdnXjrhk7YO6CP+Q5wPueEvOCLH4lDa6C4rrwiakcWcPgcQGbVozJlo4uaQ6awo8HLWQEvOwu84RkWTdLAc/Hw==} + resolution: + { + integrity: sha512-zdnXjrhk7YO6CP+Q5wPueEvOCLH4lDa6C4rrwiakcWcPgcQGbVozJlo4uaQ6awo8HLWQEvOwu84RkWTdLAc/Hw==, + } cpu: [arm64] os: [win32] turbo@2.1.2: - resolution: {integrity: sha512-Jb0rbU4iHEVQ18An/YfakdIv9rKnd3zUfSE117EngrfWXFHo3RndVH96US3GsT8VHpwTncPePDBT2t06PaFLrw==} + resolution: + { + integrity: sha512-Jb0rbU4iHEVQ18An/YfakdIv9rKnd3zUfSE117EngrfWXFHo3RndVH96US3GsT8VHpwTncPePDBT2t06PaFLrw==, + } hasBin: true tweetnacl@0.14.5: - resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + resolution: + { + integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==, + } tweetnacl@1.0.3: - resolution: {integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==} + resolution: + { + integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==, + } type-check@0.3.2: - resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==, + } + engines: { node: ">= 0.8.0" } 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.0.8: - resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==, + } + engines: { node: ">=4" } type-fest@0.11.0: - resolution: {integrity: sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==, + } + engines: { node: ">=8" } type-fest@0.12.0: - resolution: {integrity: sha512-53RyidyjvkGpnWPMF9bQgFtWp+Sl8O2Rp13VavmJgfAP9WWG6q6TkrKU8iyJdnwnfgHI6k2hTlgqH4aSdjoTbg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-53RyidyjvkGpnWPMF9bQgFtWp+Sl8O2Rp13VavmJgfAP9WWG6q6TkrKU8iyJdnwnfgHI6k2hTlgqH4aSdjoTbg==, + } + engines: { node: ">=10" } type-fest@0.13.1: - resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==, + } + engines: { node: ">=10" } 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.18.1: - resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==, + } + engines: { node: ">=10" } type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==, + } + 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@0.3.1: - resolution: {integrity: sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==, + } + engines: { node: ">=6" } type-fest@0.6.0: - resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==, + } + engines: { node: ">=8" } type-fest@0.7.1: - resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==, + } + engines: { node: ">=8" } type-fest@0.8.1: - resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==, + } + engines: { node: ">=8" } type-fest@1.4.0: - resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==, + } + 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" } type-fest@3.13.1: - resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} - engines: {node: '>=14.16'} + resolution: + { + integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==, + } + engines: { node: ">=14.16" } type-fest@4.14.0: - resolution: {integrity: sha512-on5/Cw89wwqGZQu+yWO0gGMGu8VNxsaW9SB2HE8yJjllEk7IDTwnSN1dUVldYILhYPN5HzD7WAaw2cc/jBfn0Q==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-on5/Cw89wwqGZQu+yWO0gGMGu8VNxsaW9SB2HE8yJjllEk7IDTwnSN1dUVldYILhYPN5HzD7WAaw2cc/jBfn0Q==, + } + engines: { node: ">=16" } type-is@1.6.18: - resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==, + } + engines: { node: ">= 0.6" } type-tagger@1.0.0: - resolution: {integrity: sha512-FIPqqpmDgdaulCnRoKv1/d3U4xVBUrYn42QXWNP3XYmgfPUDuBUsgFOb9ntT0aIe0UsUP+lknpQ5d9Kn36RssA==} + resolution: + { + integrity: sha512-FIPqqpmDgdaulCnRoKv1/d3U4xVBUrYn42QXWNP3XYmgfPUDuBUsgFOb9ntT0aIe0UsUP+lknpQ5d9Kn36RssA==, + } type@2.7.2: - resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==} + resolution: + { + integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==, + } typed-array-buffer@1.0.2: - resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==, + } + engines: { node: ">= 0.4" } typed-array-byte-length@1.0.1: - resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==, + } + engines: { node: ">= 0.4" } typed-array-byte-offset@1.0.2: - resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==, + } + engines: { node: ">= 0.4" } typed-array-length@1.0.6: - resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==, + } + engines: { node: ">= 0.4" } typed-emitter@2.1.0: - resolution: {integrity: sha512-g/KzbYKbH5C2vPkaXGu8DJlHrGKHLsM25Zg9WuC9pMGfuvT+X25tZQWo5fK1BjBm8+UrVE9LDCvaY0CQk+fXDA==} + resolution: + { + integrity: sha512-g/KzbYKbH5C2vPkaXGu8DJlHrGKHLsM25Zg9WuC9pMGfuvT+X25tZQWo5fK1BjBm8+UrVE9LDCvaY0CQk+fXDA==, + } typedarray-to-buffer@3.1.5: - resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} + resolution: + { + integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==, + } typedarray-to-buffer@4.0.0: - resolution: {integrity: sha512-6dOYeZfS3O9RtRD1caom0sMxgK59b27+IwoNy8RDPsmslSGOyU+mpTamlaIW7aNKi90ZQZ9DFaZL3YRoiSCULQ==} + resolution: + { + integrity: sha512-6dOYeZfS3O9RtRD1caom0sMxgK59b27+IwoNy8RDPsmslSGOyU+mpTamlaIW7aNKi90ZQZ9DFaZL3YRoiSCULQ==, + } typedarray@0.0.6: - resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} + resolution: + { + integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==, + } typedjson@1.8.0: - resolution: {integrity: sha512-taVJVGebQDagEmVc3Cu6vVVLkWLnxqPcTrkVgbpAsI02ZDDrnHy5zvt1JVqXv4/yztBgZAX1oR07+bkiusGJLQ==} + resolution: + { + integrity: sha512-taVJVGebQDagEmVc3Cu6vVVLkWLnxqPcTrkVgbpAsI02ZDDrnHy5zvt1JVqXv4/yztBgZAX1oR07+bkiusGJLQ==, + } typeforce@1.18.0: - resolution: {integrity: sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==} + resolution: + { + integrity: sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==, + } typescript@4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: '>=4.2.0'} + resolution: + { + integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==, + } + engines: { node: ">=4.2.0" } hasBin: true typescript@5.1.3: - resolution: {integrity: sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==} - engines: {node: '>=14.17'} + resolution: + { + integrity: sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==, + } + engines: { node: ">=14.17" } hasBin: true typescript@5.2.2: - resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} - engines: {node: '>=14.17'} + resolution: + { + integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==, + } + engines: { node: ">=14.17" } hasBin: true typescript@5.4.3: - resolution: {integrity: sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==} - engines: {node: '>=14.17'} + resolution: + { + integrity: sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==, + } + engines: { node: ">=14.17" } hasBin: true typescript@5.4.5: - resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} - engines: {node: '>=14.17'} + resolution: + { + integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==, + } + engines: { node: ">=14.17" } hasBin: true typescript@5.6.2: - resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==} - engines: {node: '>=14.17'} + resolution: + { + integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==, + } + engines: { node: ">=14.17" } hasBin: true typical@4.0.0: - resolution: {integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==, + } + engines: { node: ">=8" } typical@5.2.0: - resolution: {integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==, + } + engines: { node: ">=8" } typical@6.0.1: - resolution: {integrity: sha512-+g3NEp7fJLe9DPa1TArHm9QAA7YciZmWnfAqEaFrBihQ7epOv9i99rjtgb6Iz0wh3WuQDjsCTDfgRoGnmHN81A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-+g3NEp7fJLe9DPa1TArHm9QAA7YciZmWnfAqEaFrBihQ7epOv9i99rjtgb6Iz0wh3WuQDjsCTDfgRoGnmHN81A==, + } + engines: { node: ">=10" } u2f-api@0.2.7: - resolution: {integrity: sha512-fqLNg8vpvLOD5J/z4B6wpPg4Lvowz1nJ9xdHcCzdUPKcFE/qNCceV2gNZxSJd5vhAZemHr/K/hbzVA0zxB5mkg==} + resolution: + { + integrity: sha512-fqLNg8vpvLOD5J/z4B6wpPg4Lvowz1nJ9xdHcCzdUPKcFE/qNCceV2gNZxSJd5vhAZemHr/K/hbzVA0zxB5mkg==, + } ua-parser-js@1.0.37: - resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==} + resolution: + { + integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==, + } uc.micro@2.1.0: - resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} + resolution: + { + integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==, + } ufo@1.5.3: - resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==} + resolution: + { + integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==, + } uglify-es@3.3.9: - resolution: {integrity: sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==, + } + engines: { node: ">=0.8.0" } deprecated: support for ECMAScript is superseded by `uglify-js` as of v3.13.0 hasBin: true uglify-js@3.17.4: - resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==, + } + engines: { node: ">=0.8.0" } hasBin: true uglify-js@3.19.3: - resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==, + } + engines: { node: ">=0.8.0" } hasBin: true uint8array-extras@0.3.0: - resolution: {integrity: sha512-erJsJwQ0tKdwuqI0359U8ijkFmfiTcq25JvvzRVc1VP+2son1NJRXhxcAKJmAW3ajM8JSGAfsAXye8g4s+znxA==} - engines: {node: '>=18'} + resolution: + { + integrity: sha512-erJsJwQ0tKdwuqI0359U8ijkFmfiTcq25JvvzRVc1VP+2son1NJRXhxcAKJmAW3ajM8JSGAfsAXye8g4s+znxA==, + } + engines: { node: ">=18" } ultron@1.1.1: - resolution: {integrity: sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==} + resolution: + { + integrity: sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==, + } unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + resolution: + { + integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, + } unc-path-regex@0.1.2: - resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==, + } + engines: { node: ">=0.10.0" } uncontrollable@7.2.1: - resolution: {integrity: sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==} + resolution: + { + integrity: sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==, + } peerDependencies: - '@types/react': '*' - react: '>=15.0.0' + "@types/react": "*" + react: ">=15.0.0" peerDependenciesMeta: - '@types/react': + "@types/react": optional: true undefsafe@2.0.5: - resolution: {integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==} + resolution: + { + integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==, + } underscore@1.12.1: - resolution: {integrity: sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==} + resolution: + { + integrity: sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==, + } underscore@1.13.6: - resolution: {integrity: sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==} + resolution: + { + integrity: sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==, + } undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + resolution: + { + integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==, + } undici@5.28.3: - resolution: {integrity: sha512-3ItfzbrhDlINjaP0duwnNsKpDQk3acHI3gVJ1z4fmwMK31k5G9OVIAMLSIaP6w4FaGkaAkN6zaQO9LUvZ1t7VA==} - engines: {node: '>=14.0'} + resolution: + { + integrity: sha512-3ItfzbrhDlINjaP0duwnNsKpDQk3acHI3gVJ1z4fmwMK31k5G9OVIAMLSIaP6w4FaGkaAkN6zaQO9LUvZ1t7VA==, + } + engines: { node: ">=14.0" } undici@6.10.2: - resolution: {integrity: sha512-HcVuBy7ACaDejIMdwCzAvO22OsiE6ir6ziTIr9kAE0vB+PheVe29ZvRN8p7FXCO2uZHTjEoUs5bPiFpuc/hwwQ==} - engines: {node: '>=18.0'} + resolution: + { + integrity: sha512-HcVuBy7ACaDejIMdwCzAvO22OsiE6ir6ziTIr9kAE0vB+PheVe29ZvRN8p7FXCO2uZHTjEoUs5bPiFpuc/hwwQ==, + } + engines: { node: ">=18.0" } undici@6.19.2: - resolution: {integrity: sha512-JfjKqIauur3Q6biAtHJ564e3bWa8VvT+7cSiOJHFbX4Erv6CLGDpg8z+Fmg/1OI/47RA+GI2QZaF48SSaLvyBA==} - engines: {node: '>=18.17'} + resolution: + { + integrity: sha512-JfjKqIauur3Q6biAtHJ564e3bWa8VvT+7cSiOJHFbX4Erv6CLGDpg8z+Fmg/1OI/47RA+GI2QZaF48SSaLvyBA==, + } + engines: { node: ">=18.17" } unfetch@4.2.0: - resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==} + resolution: + { + integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==, + } unherit@1.1.3: - resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==} + resolution: + { + integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==, + } unicode-canonical-property-names-ecmascript@2.0.0: - resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==, + } + 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.1.0: - resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==, + } + 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@6.2.0: - resolution: {integrity: sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==} + resolution: + { + integrity: sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==, + } unimported@1.30.0: - resolution: {integrity: sha512-4/NKy/a8kEFu6tDbY/CTiaqtIBR1LeI5RWDzfLlKX2ipMfNMbTyEVjxiGCWq8EByI8rvH+Y2+IEaPU8n7U141g==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-4/NKy/a8kEFu6tDbY/CTiaqtIBR1LeI5RWDzfLlKX2ipMfNMbTyEVjxiGCWq8EByI8rvH+Y2+IEaPU8n7U141g==, + } + engines: { node: ">=14.0.0" } hasBin: true union@0.5.0: - resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==, + } + engines: { node: ">= 0.8.0" } unique-filename@1.1.1: - resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} + resolution: + { + integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==, + } + + unique-filename@3.0.0: + resolution: + { + integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } unique-slug@2.0.2: - resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} + resolution: + { + integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==, + } + + unique-slug@4.0.0: + resolution: + { + integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } unique-string@1.0.0: - resolution: {integrity: sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==, + } + engines: { node: ">=4" } unique-string@2.0.0: - resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==, + } + engines: { node: ">=8" } unist-builder@3.0.1: - resolution: {integrity: sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ==} + resolution: + { + integrity: sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ==, + } unist-util-find-after@5.0.0: - resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} + resolution: + { + integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==, + } unist-util-generated@2.0.1: - resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==} + resolution: + { + integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==, + } unist-util-is@3.0.0: - resolution: {integrity: sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==} + resolution: + { + integrity: sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==, + } unist-util-is@4.1.0: - resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} + resolution: + { + integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==, + } unist-util-is@5.2.1: - resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} + resolution: + { + integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==, + } 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@1.1.2: - resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==} + resolution: + { + integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==, + } unist-util-position@4.0.4: - resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==} + resolution: + { + integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==, + } unist-util-position@5.0.0: - resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} + resolution: + { + integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==, + } unist-util-remove-position@1.1.4: - resolution: {integrity: sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==} + resolution: + { + integrity: sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==, + } unist-util-remove-position@4.0.2: - resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==} + resolution: + { + integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==, + } unist-util-remove-position@5.0.0: - resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} + resolution: + { + integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==, + } unist-util-remove@4.0.0: - resolution: {integrity: sha512-b4gokeGId57UVRX/eVKej5gXqGlc9+trkORhFJpu9raqZkZhU0zm8Doi05+HaiBsMEIJowL+2WtQ5ItjsngPXg==} + resolution: + { + integrity: sha512-b4gokeGId57UVRX/eVKej5gXqGlc9+trkORhFJpu9raqZkZhU0zm8Doi05+HaiBsMEIJowL+2WtQ5ItjsngPXg==, + } unist-util-stringify-position@1.1.2: - resolution: {integrity: sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==} + resolution: + { + integrity: sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==, + } 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@1.1.2: - resolution: {integrity: sha512-yvo+MMLjEwdc3RhhPYSximset7rwjMrdt9E41Smmvg25UQIenzrN83cRnF1JMzoMi9zZOQeYXHSDf7p+IQkW3Q==} + resolution: + { + integrity: sha512-yvo+MMLjEwdc3RhhPYSximset7rwjMrdt9E41Smmvg25UQIenzrN83cRnF1JMzoMi9zZOQeYXHSDf7p+IQkW3Q==, + } unist-util-visit-parents@2.1.2: - resolution: {integrity: sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==} + resolution: + { + integrity: sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==, + } unist-util-visit-parents@3.1.1: - resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} + resolution: + { + integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==, + } unist-util-visit-parents@4.1.1: - resolution: {integrity: sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==} + resolution: + { + integrity: sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==, + } unist-util-visit-parents@5.1.3: - resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} + resolution: + { + integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==, + } unist-util-visit-parents@6.0.1: - resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + resolution: + { + integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==, + } unist-util-visit@1.4.1: - resolution: {integrity: sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==} + resolution: + { + integrity: sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==, + } unist-util-visit@2.0.3: - resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} + resolution: + { + integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==, + } unist-util-visit@3.1.0: - resolution: {integrity: sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==} + resolution: + { + integrity: sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==, + } unist-util-visit@4.1.2: - resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} + resolution: + { + integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==, + } 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-github-app-jwt@1.1.2: - resolution: {integrity: sha512-t1iB2FmLFE+yyJY9+3wMx0ejB+MQpEVkH0gQv7dR6FZyltyq+ZZO0uDpbopxhrZ3SLEO4dCEkIujOMldEQ2iOA==} + resolution: + { + integrity: sha512-t1iB2FmLFE+yyJY9+3wMx0ejB+MQpEVkH0gQv7dR6FZyltyq+ZZO0uDpbopxhrZ3SLEO4dCEkIujOMldEQ2iOA==, + } universal-user-agent@6.0.1: - resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} + resolution: + { + integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==, + } universalify@0.1.2: - resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} - engines: {node: '>= 4.0.0'} + resolution: + { + integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==, + } + engines: { node: ">= 4.0.0" } universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} + resolution: + { + integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==, + } + engines: { node: ">= 4.0.0" } universalify@1.0.0: - resolution: {integrity: sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==} - engines: {node: '>= 10.0.0'} + resolution: + { + integrity: sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==, + } + engines: { node: ">= 10.0.0" } universalify@2.0.0: - resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} - engines: {node: '>= 10.0.0'} + resolution: + { + integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==, + } + engines: { node: ">= 10.0.0" } 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" } unorm@1.6.0: - resolution: {integrity: sha512-b2/KCUlYZUeA7JFUuRJZPUtr4gZvBh7tavtv4fvk4+KV9pfGiR6CQAQAWl49ZpR3ts2dk4FYkP7EIgDJoiOLDA==} - engines: {node: '>= 0.4.0'} + resolution: + { + integrity: sha512-b2/KCUlYZUeA7JFUuRJZPUtr4gZvBh7tavtv4fvk4+KV9pfGiR6CQAQAWl49ZpR3ts2dk4FYkP7EIgDJoiOLDA==, + } + engines: { node: ">= 0.4.0" } unpipe@1.0.0: - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==, + } + engines: { node: ">= 0.8" } unplugin@1.10.0: - resolution: {integrity: sha512-CuZtvvO8ua2Wl+9q2jEaqH6m3DoQ38N7pvBYQbbaeNlWGvK2l6GHiKi29aIHDPoSxdUzQ7Unevf1/ugil5X6Pg==} - engines: {node: '>=14.0.0'} + resolution: + { + integrity: sha512-CuZtvvO8ua2Wl+9q2jEaqH6m3DoQ38N7pvBYQbbaeNlWGvK2l6GHiKi29aIHDPoSxdUzQ7Unevf1/ugil5X6Pg==, + } + engines: { node: ">=14.0.0" } unquote@1.1.1: - resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} + resolution: + { + integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==, + } untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==, + } + engines: { node: ">=8" } unused-filename@2.1.0: - resolution: {integrity: sha512-BMiNwJbuWmqCpAM1FqxCTD7lXF97AvfQC8Kr/DIeA6VtvhJaMDupZ82+inbjl5yVP44PcxOuCSxye1QMS0wZyg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-BMiNwJbuWmqCpAM1FqxCTD7lXF97AvfQC8Kr/DIeA6VtvhJaMDupZ82+inbjl5yVP44PcxOuCSxye1QMS0wZyg==, + } + engines: { node: ">=8" } unzip-crx-3@0.2.0: - resolution: {integrity: sha512-0+JiUq/z7faJ6oifVB5nSwt589v1KCduqIJupNVDoWSXZtWDmjDGO3RAEOvwJ07w90aoXoP4enKsR7ecMrJtWQ==} + resolution: + { + integrity: sha512-0+JiUq/z7faJ6oifVB5nSwt589v1KCduqIJupNVDoWSXZtWDmjDGO3RAEOvwJ07w90aoXoP4enKsR7ecMrJtWQ==, + } unzipper@0.10.14: - resolution: {integrity: sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==} + resolution: + { + integrity: sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==, + } 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.0.13: - resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + resolution: + { + integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==, + } hasBin: true peerDependencies: - browserslist: '>= 4.21.0' + browserslist: ">= 4.21.0" update-check@1.5.3: - resolution: {integrity: sha512-6KLU4/dd0Tg/l0xwL+f9V7kEIPSL1vOIbnNnhSLiRDlj4AVG6Ks9Zoc9Jgt9kIgWFPZ/wp2AHgmG7xNf15TJOA==} + resolution: + { + integrity: sha512-6KLU4/dd0Tg/l0xwL+f9V7kEIPSL1vOIbnNnhSLiRDlj4AVG6Ks9Zoc9Jgt9kIgWFPZ/wp2AHgmG7xNf15TJOA==, + } update-dotenv@1.1.1: - resolution: {integrity: sha512-3cIC18In/t0X/yH793c00qqxcKD8jVCgNOPif/fGQkFpYMGecM9YAc+kaAKXuZsM2dE9I9wFI7KvAuNX22SGMQ==} + resolution: + { + integrity: sha512-3cIC18In/t0X/yH793c00qqxcKD8jVCgNOPif/fGQkFpYMGecM9YAc+kaAKXuZsM2dE9I9wFI7KvAuNX22SGMQ==, + } peerDependencies: - dotenv: '*' + dotenv: "*" uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + resolution: + { + integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, + } urijs@1.19.11: - resolution: {integrity: sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ==} + resolution: + { + integrity: sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ==, + } url-join@4.0.0: - resolution: {integrity: sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==} + resolution: + { + integrity: sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==, + } url-join@4.0.1: - resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} + resolution: + { + integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==, + } url-parse-lax@3.0.0: - resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==, + } + engines: { node: ">=4" } url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + resolution: + { + integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==, + } url-set-query@1.0.0: - resolution: {integrity: sha512-3AChu4NiXquPfeckE5R5cGdiHCMWJx1dwCWOmWIL4KHAziJNOFIYJlpGFeKDvwLPHovZRCxK3cYlwzqI9Vp+Gg==} + resolution: + { + integrity: sha512-3AChu4NiXquPfeckE5R5cGdiHCMWJx1dwCWOmWIL4KHAziJNOFIYJlpGFeKDvwLPHovZRCxK3cYlwzqI9Vp+Gg==, + } url@0.11.3: - resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} + resolution: + { + integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==, + } usb@2.9.0: - resolution: {integrity: sha512-G0I/fPgfHUzWH8xo2KkDxTTFruUWfppgSFJ+bQxz/kVY2x15EQ/XDB7dqD1G432G4gBG4jYQuF3U7j/orSs5nw==} - engines: {node: '>=10.20.0 <11.x || >=12.17.0 <13.0 || >=14.0.0'} + resolution: + { + integrity: sha512-G0I/fPgfHUzWH8xo2KkDxTTFruUWfppgSFJ+bQxz/kVY2x15EQ/XDB7dqD1G432G4gBG4jYQuF3U7j/orSs5nw==, + } + engines: { node: ">=10.20.0 <11.x || >=12.17.0 <13.0 || >=14.0.0" } use-callback-ref@1.3.2: - resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==, + } + 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 use-isomorphic-layout-effect@1.1.2: - resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} + resolution: + { + integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==, + } peerDependencies: - '@types/react': '*' + "@types/react": "*" react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true use-latest-callback@0.1.9: - resolution: {integrity: sha512-CL/29uS74AwreI/f2oz2hLTW7ZqVeV5+gxFeGudzQrgkCytrHw33G4KbnQOrRlAEzzAFXi7dDLMC9zhWcVpzmw==} + resolution: + { + integrity: sha512-CL/29uS74AwreI/f2oz2hLTW7ZqVeV5+gxFeGudzQrgkCytrHw33G4KbnQOrRlAEzzAFXi7dDLMC9zhWcVpzmw==, + } peerDependencies: - react: '>=16.8' + react: ">=16.8" use-resize-observer@9.1.0: - resolution: {integrity: sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==} + resolution: + { + integrity: sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==, + } peerDependencies: react: 16.8.0 - 18 react-dom: 16.8.0 - 18 use-sidecar@1.1.2: - resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==, + } + engines: { node: ">=10" } peerDependencies: - '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 + "@types/react": ^16.9.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: - '@types/react': + "@types/react": optional: true use-subscription@1.8.0: - resolution: {integrity: sha512-LISuG0/TmmoDoCRmV5XAqYkd3UCBNM0ML3gGBndze65WITcsExCD3DTvXXTLyNcOC0heFQZzluW88bN/oC1DQQ==} + resolution: + { + integrity: sha512-LISuG0/TmmoDoCRmV5XAqYkd3UCBNM0ML3gGBndze65WITcsExCD3DTvXXTLyNcOC0heFQZzluW88bN/oC1DQQ==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 use-sync-external-store@1.2.0: - resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} + resolution: + { + integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 usehooks-ts@2.16.0: - resolution: {integrity: sha512-bez95WqYujxp6hFdM/CpRDiVPirZPxlMzOH2QB8yopoKQMXpscyZoxOjpEdaxvV+CAWUDSM62cWnqHE0E/MZ7w==} - engines: {node: '>=16.15.0'} + resolution: + { + integrity: sha512-bez95WqYujxp6hFdM/CpRDiVPirZPxlMzOH2QB8yopoKQMXpscyZoxOjpEdaxvV+CAWUDSM62cWnqHE0E/MZ7w==, + } + engines: { node: ">=16.15.0" } peerDependencies: react: ^16.8.0 || ^17 || ^18 utf-8-validate@5.0.10: - resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==} - engines: {node: '>=6.14.2'} + resolution: + { + integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==, + } + engines: { node: ">=6.14.2" } utf-8-validate@6.0.3: - resolution: {integrity: sha512-uIuGf9TWQ/y+0Lp+KGZCMuJWc3N9BHA+l/UmHd/oUHwJJDeysyTRxNQVkbzsIWfGFbRe3OcgML/i0mvVRPOyDA==} - engines: {node: '>=6.14.2'} + resolution: + { + integrity: sha512-uIuGf9TWQ/y+0Lp+KGZCMuJWc3N9BHA+l/UmHd/oUHwJJDeysyTRxNQVkbzsIWfGFbRe3OcgML/i0mvVRPOyDA==, + } + engines: { node: ">=6.14.2" } utf8-byte-length@1.0.5: - resolution: {integrity: sha512-Xn0w3MtiQ6zoz2vFyUVruaCL53O/DwUvkEeOvj+uulMm0BkUGYWmBYVyElqZaSLhY6ZD0ulfU3aBra2aVT4xfA==} + resolution: + { + integrity: sha512-Xn0w3MtiQ6zoz2vFyUVruaCL53O/DwUvkEeOvj+uulMm0BkUGYWmBYVyElqZaSLhY6ZD0ulfU3aBra2aVT4xfA==, + } utf8@3.0.0: - resolution: {integrity: sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==} + resolution: + { + integrity: sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==, + } util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + resolution: + { + integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, + } util.promisify@1.0.1: - resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} + resolution: + { + integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==, + } util@0.10.4: - resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} + resolution: + { + integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==, + } util@0.12.5: - resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} + resolution: + { + integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==, + } utila@0.4.0: - resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} + resolution: + { + integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==, + } utility-types@3.11.0: - resolution: {integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==, + } + engines: { node: ">= 4" } utils-merge@1.0.1: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} - engines: {node: '>= 0.4.0'} + resolution: + { + integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==, + } + engines: { node: ">= 0.4.0" } uuid@2.0.1: - resolution: {integrity: sha512-nWg9+Oa3qD2CQzHIP4qKUqwNfzKn8P0LtFhotaCTFchsV7ZfDhAybeip/HZVeMIpZi9JgY1E3nUlwaCmZT1sEg==} + resolution: + { + integrity: sha512-nWg9+Oa3qD2CQzHIP4qKUqwNfzKn8P0LtFhotaCTFchsV7ZfDhAybeip/HZVeMIpZi9JgY1E3nUlwaCmZT1sEg==, + } deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. uuid@3.3.2: - resolution: {integrity: sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==} + resolution: + { + integrity: sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==, + } deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. hasBin: true uuid@3.4.0: - resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} + resolution: + { + integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==, + } deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. hasBin: true uuid@7.0.3: - resolution: {integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==} + resolution: + { + integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==, + } hasBin: true uuid@8.3.2: - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + resolution: + { + integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==, + } hasBin: true uuid@9.0.1: - resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} + resolution: + { + integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==, + } hasBin: true uvu@0.5.6: - resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==, + } + engines: { node: ">=8" } hasBin: true v8-compile-cache-lib@3.0.1: - resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + resolution: + { + integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==, + } v8-compile-cache@2.4.0: - resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} + resolution: + { + integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==, + } v8-to-istanbul@8.1.1: - resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==} - engines: {node: '>=10.12.0'} + resolution: + { + integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==, + } + engines: { node: ">=10.12.0" } v8-to-istanbul@9.2.0: - resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==} - engines: {node: '>=10.12.0'} + resolution: + { + integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==, + } + engines: { node: ">=10.12.0" } valid-url@1.0.9: - resolution: {integrity: sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==} + resolution: + { + integrity: sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==, + } validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + resolution: + { + integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==, + } validate-npm-package-name@3.0.0: - resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} + resolution: + { + integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==, + } validator@13.11.0: - resolution: {integrity: sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==, + } + engines: { node: ">= 0.10" } value-equal@1.0.1: - resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==} + resolution: + { + integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==, + } varint@5.0.2: - resolution: {integrity: sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow==} + resolution: + { + integrity: sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow==, + } varuint-bitcoin@1.1.2: - resolution: {integrity: sha512-4EVb+w4rx+YfVM32HQX42AbbT7/1f5zwAYhIujKXKk8NQK+JfRVl3pqT3hjNn/L+RstigmGGKVwHA/P0wgITZw==} + resolution: + { + integrity: sha512-4EVb+w4rx+YfVM32HQX42AbbT7/1f5zwAYhIujKXKk8NQK+JfRVl3pqT3hjNn/L+RstigmGGKVwHA/P0wgITZw==, + } 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" } verror@1.10.0: - resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} - engines: {'0': node >=0.6.0} + resolution: + { + integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==, + } + engines: { "0": node >=0.6.0 } verror@1.10.1: - resolution: {integrity: sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg==} - engines: {node: '>=0.6.0'} + resolution: + { + integrity: sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg==, + } + engines: { node: ">=0.6.0" } vfile-location@2.0.6: - resolution: {integrity: sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==} + resolution: + { + integrity: sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==, + } vfile-location@4.1.0: - resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==} + resolution: + { + integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==, + } vfile-location@5.0.2: - resolution: {integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==} + resolution: + { + integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==, + } vfile-matter@3.0.1: - resolution: {integrity: sha512-CAAIDwnh6ZdtrqAuxdElUqQRQDQgbbIrYtDYI8gCjXS1qQ+1XdLoK8FIZWxJwn0/I+BkSSZpar3SOgjemQz4fg==} + resolution: + { + integrity: sha512-CAAIDwnh6ZdtrqAuxdElUqQRQDQgbbIrYtDYI8gCjXS1qQ+1XdLoK8FIZWxJwn0/I+BkSSZpar3SOgjemQz4fg==, + } vfile-message@1.1.1: - resolution: {integrity: sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==} + resolution: + { + integrity: sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==, + } 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-reporter@7.0.5: - resolution: {integrity: sha512-NdWWXkv6gcd7AZMvDomlQbK3MqFWL1RlGzMn++/O2TI+68+nqxCPTvLugdOtfSzXmjh+xUyhp07HhlrbJjT+mw==} + resolution: + { + integrity: sha512-NdWWXkv6gcd7AZMvDomlQbK3MqFWL1RlGzMn++/O2TI+68+nqxCPTvLugdOtfSzXmjh+xUyhp07HhlrbJjT+mw==, + } vfile-sort@3.0.1: - resolution: {integrity: sha512-1os1733XY6y0D5x0ugqSeaVJm9lYgj0j5qdcZQFyxlZOSy1jYarL77lLyb5gK4Wqr1d5OxmuyflSO3zKyFnTFw==} + resolution: + { + integrity: sha512-1os1733XY6y0D5x0ugqSeaVJm9lYgj0j5qdcZQFyxlZOSy1jYarL77lLyb5gK4Wqr1d5OxmuyflSO3zKyFnTFw==, + } vfile-statistics@2.0.1: - resolution: {integrity: sha512-W6dkECZmP32EG/l+dp2jCLdYzmnDBIw6jwiLZSER81oR5AHRcVqL+k3Z+pfH1R73le6ayDkJRMk0sutj1bMVeg==} + resolution: + { + integrity: sha512-W6dkECZmP32EG/l+dp2jCLdYzmnDBIw6jwiLZSER81oR5AHRcVqL+k3Z+pfH1R73le6ayDkJRMk0sutj1bMVeg==, + } vfile@2.3.0: - resolution: {integrity: sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==} + resolution: + { + integrity: sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==, + } vfile@5.3.7: - resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} + resolution: + { + integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==, + } vfile@6.0.1: - resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==} + resolution: + { + integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==, + } vite-plugin-electron@0.4.9: - resolution: {integrity: sha512-LYKBd2/hncUqe99AG7D4PDzdU7qP0R7W1ijvO4IHTKwARhlWii2tsPa2dr+6Yi/+NBazlKK2OBSzc8lRNl+ctQ==} + resolution: + { + integrity: sha512-LYKBd2/hncUqe99AG7D4PDzdU7qP0R7W1ijvO4IHTKwARhlWii2tsPa2dr+6Yi/+NBazlKK2OBSzc8lRNl+ctQ==, + } vite-plugin-optimizer@1.4.3: - resolution: {integrity: sha512-m1AFakemDxSNIwxsTYykBFuQxkKJLI8207RNAg33N5km2aE29cP+Jt41xbfdrALOU2VKYWGFlBz64GMbIser4A==} + resolution: + { + integrity: sha512-m1AFakemDxSNIwxsTYykBFuQxkKJLI8207RNAg33N5km2aE29cP+Jt41xbfdrALOU2VKYWGFlBz64GMbIser4A==, + } vite@4.5.3: - resolution: {integrity: sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==} - engines: {node: ^14.18.0 || >=16.0.0} + resolution: + { + integrity: sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==, + } + engines: { node: ^14.18.0 || >=16.0.0 } hasBin: true peerDependencies: - '@types/node': '>= 14' - less: '*' + "@types/node": ">= 14" + less: "*" lightningcss: ^1.21.0 - sass: '*' - stylus: '*' - sugarss: '*' + sass: "*" + stylus: "*" + sugarss: "*" terser: ^5.4.0 peerDependenciesMeta: - '@types/node': + "@types/node": optional: true less: optional: true @@ -29486,50 +45356,86 @@ packages: optional: true vlq@0.2.3: - resolution: {integrity: sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow==} + resolution: + { + integrity: sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow==, + } vlq@1.0.1: - resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==} + resolution: + { + integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==, + } void-elements@3.1.0: - resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==, + } + engines: { node: ">=0.10.0" } vscode-json-languageservice@4.2.1: - resolution: {integrity: sha512-xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA==} + resolution: + { + integrity: sha512-xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA==, + } vscode-languageserver-textdocument@1.0.11: - resolution: {integrity: sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==} + resolution: + { + integrity: sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==, + } vscode-languageserver-types@3.17.5: - resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==} + resolution: + { + integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==, + } vscode-nls@5.2.0: - resolution: {integrity: sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==} + resolution: + { + integrity: sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==, + } vscode-oniguruma@1.7.0: - resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==} + resolution: + { + integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==, + } vscode-textmate@8.0.0: - resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==} + resolution: + { + integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==, + } vscode-uri@3.0.8: - resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} + resolution: + { + integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==, + } vue-hot-reload-api@2.3.4: - resolution: {integrity: sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==} + resolution: + { + integrity: sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==, + } vue-loader@15.11.1: - resolution: {integrity: sha512-0iw4VchYLePqJfJu9s62ACWUXeSqM30SQqlIftbYWM3C+jpPcEHKSPUZBLjSF9au4HTHQ/naF6OGnO3Q/qGR3Q==} - peerDependencies: - '@vue/compiler-sfc': ^3.0.8 - cache-loader: '*' - css-loader: '*' - prettier: '*' - vue-template-compiler: '*' + resolution: + { + integrity: sha512-0iw4VchYLePqJfJu9s62ACWUXeSqM30SQqlIftbYWM3C+jpPcEHKSPUZBLjSF9au4HTHQ/naF6OGnO3Q/qGR3Q==, + } + peerDependencies: + "@vue/compiler-sfc": ^3.0.8 + cache-loader: "*" + css-loader: "*" + prettier: "*" + vue-template-compiler: "*" webpack: ^3.0.0 || ^4.1.0 || ^5.0.0-0 peerDependenciesMeta: - '@vue/compiler-sfc': + "@vue/compiler-sfc": optional: true cache-loader: optional: true @@ -29539,289 +45445,496 @@ packages: optional: true vue-loader@17.4.2: - resolution: {integrity: sha512-yTKOA4R/VN4jqjw4y5HrynFL8AK0Z3/Jt7eOJXEitsm0GMRHDBjCfCiuTiLP7OESvsZYo2pATCWhDqxC5ZrM6w==} + resolution: + { + integrity: sha512-yTKOA4R/VN4jqjw4y5HrynFL8AK0Z3/Jt7eOJXEitsm0GMRHDBjCfCiuTiLP7OESvsZYo2pATCWhDqxC5ZrM6w==, + } peerDependencies: - '@vue/compiler-sfc': '*' - vue: '*' + "@vue/compiler-sfc": "*" + vue: "*" webpack: ^4.1.0 || ^5.0.0-0 peerDependenciesMeta: - '@vue/compiler-sfc': + "@vue/compiler-sfc": optional: true vue: optional: true vue-style-loader@4.1.3: - resolution: {integrity: sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==} + resolution: + { + integrity: sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==, + } vue-template-compiler@2.7.16: - resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==} + resolution: + { + integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==, + } vue-template-es2015-compiler@1.9.1: - resolution: {integrity: sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==} + resolution: + { + integrity: sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==, + } vue@2.7.16: - resolution: {integrity: sha512-4gCtFXaAA3zYZdTp5s4Hl2sozuySsgz4jy1EnpBHNfpMa9dK1ZCG7viqBPCwXtmgc8nHqUsAu3G4gtmXkkY3Sw==} + resolution: + { + integrity: sha512-4gCtFXaAA3zYZdTp5s4Hl2sozuySsgz4jy1EnpBHNfpMa9dK1ZCG7viqBPCwXtmgc8nHqUsAu3G4gtmXkkY3Sw==, + } deprecated: Vue 2 has reached EOL and is no longer actively maintained. See https://v2.vuejs.org/eol/ for more details. w3c-hr-time@1.0.2: - resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} + resolution: + { + integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==, + } deprecated: Use your platform's native performance.now() and performance.timeOrigin. w3c-keyname@2.2.8: - resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==} + resolution: + { + integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==, + } w3c-xmlserializer@2.0.0: - resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==, + } + engines: { node: ">=10" } w3c-xmlserializer@3.0.0: - resolution: {integrity: sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==, + } + engines: { node: ">=12" } w3c-xmlserializer@4.0.0: - resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==, + } + engines: { node: ">=14" } walk-back@4.0.0: - resolution: {integrity: sha512-kudCA8PXVQfrqv2mFTG72vDBRi8BKWxGgFLwPpzHcpZnSwZk93WMwUDVcLHWNsnm+Y0AC4Vb6MUNRgaHfyV2DQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-kudCA8PXVQfrqv2mFTG72vDBRi8BKWxGgFLwPpzHcpZnSwZk93WMwUDVcLHWNsnm+Y0AC4Vb6MUNRgaHfyV2DQ==, + } + engines: { node: ">=8.0.0" } walker@1.0.8: - resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} + resolution: + { + integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==, + } warn-once@0.1.1: - resolution: {integrity: sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==} + resolution: + { + integrity: sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==, + } watchpack@2.4.1: - resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==, + } + engines: { node: ">=10.13.0" } wbuf@1.7.3: - resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} + resolution: + { + integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==, + } wcwidth@1.0.1: - resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} + resolution: + { + integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, + } web-namespaces@2.0.1: - resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} + resolution: + { + integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==, + } web-streams-polyfill@3.3.3: - resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==, + } + engines: { node: ">= 8" } web-worker@1.3.0: - resolution: {integrity: sha512-BSR9wyRsy/KOValMgd5kMyr3JzpdeoR9KVId8u5GVlTTAtNChlsE4yTxeY7zMdNSyOmoKBv8NH2qeRY9Tg+IaA==} + resolution: + { + integrity: sha512-BSR9wyRsy/KOValMgd5kMyr3JzpdeoR9KVId8u5GVlTTAtNChlsE4yTxeY7zMdNSyOmoKBv8NH2qeRY9Tg+IaA==, + } web3-bzz@1.3.6: - resolution: {integrity: sha512-ibHdx1wkseujFejrtY7ZyC0QxQ4ATXjzcNUpaLrvM6AEae8prUiyT/OloG9FWDgFD2CPLwzKwfSQezYQlANNlw==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-ibHdx1wkseujFejrtY7ZyC0QxQ4ATXjzcNUpaLrvM6AEae8prUiyT/OloG9FWDgFD2CPLwzKwfSQezYQlANNlw==, + } + engines: { node: ">=8.0.0" } web3-bzz@1.5.2: - resolution: {integrity: sha512-W/sPCdA+XQ9duUYKHAwf/g69cbbV8gTCRsa1MpZwU7spXECiyJ2EvD/QzAZ+UpJk3GELXFF/fUByeZ3VRQKF2g==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-W/sPCdA+XQ9duUYKHAwf/g69cbbV8gTCRsa1MpZwU7spXECiyJ2EvD/QzAZ+UpJk3GELXFF/fUByeZ3VRQKF2g==, + } + engines: { node: ">=8.0.0" } web3-core-helpers@1.3.6: - resolution: {integrity: sha512-nhtjA2ZbkppjlxTSwG0Ttu6FcPkVu1rCN5IFAOVpF/L0SEt+jy+O5l90+cjDq0jAYvlBwUwnbh2mR9hwDEJCNA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-nhtjA2ZbkppjlxTSwG0Ttu6FcPkVu1rCN5IFAOVpF/L0SEt+jy+O5l90+cjDq0jAYvlBwUwnbh2mR9hwDEJCNA==, + } + engines: { node: ">=8.0.0" } web3-core-helpers@1.5.2: - resolution: {integrity: sha512-U7LJoeUdQ3aY9t5gU7t/1XpcApsWm+4AcW5qKl/44ZxD44w0Dmsq1c5zJm3GuLr/a9MwQfXK4lpmvxVQWHHQRg==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-U7LJoeUdQ3aY9t5gU7t/1XpcApsWm+4AcW5qKl/44ZxD44w0Dmsq1c5zJm3GuLr/a9MwQfXK4lpmvxVQWHHQRg==, + } + engines: { node: ">=8.0.0" } web3-core-method@1.3.6: - resolution: {integrity: sha512-RyegqVGxn0cyYW5yzAwkPlsSEynkdPiegd7RxgB4ak1eKk2Cv1q2x4C7D2sZjeeCEF+q6fOkVmo2OZNqS2iQxg==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-RyegqVGxn0cyYW5yzAwkPlsSEynkdPiegd7RxgB4ak1eKk2Cv1q2x4C7D2sZjeeCEF+q6fOkVmo2OZNqS2iQxg==, + } + engines: { node: ">=8.0.0" } web3-core-method@1.5.2: - resolution: {integrity: sha512-/mC5t9UjjJoQmJJqO5nWK41YHo+tMzFaT7Tp7jDCQsBkinE68KsUJkt0jzygpheW84Zra0DVp6q19gf96+cugg==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-/mC5t9UjjJoQmJJqO5nWK41YHo+tMzFaT7Tp7jDCQsBkinE68KsUJkt0jzygpheW84Zra0DVp6q19gf96+cugg==, + } + engines: { node: ">=8.0.0" } web3-core-promievent@1.3.6: - resolution: {integrity: sha512-Z+QzfyYDTXD5wJmZO5wwnRO8bAAHEItT1XNSPVb4J1CToV/I/SbF7CuF8Uzh2jns0Cm1109o666H7StFFvzVKw==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-Z+QzfyYDTXD5wJmZO5wwnRO8bAAHEItT1XNSPVb4J1CToV/I/SbF7CuF8Uzh2jns0Cm1109o666H7StFFvzVKw==, + } + engines: { node: ">=8.0.0" } web3-core-promievent@1.5.2: - resolution: {integrity: sha512-5DacbJXe98ozSor7JlkTNCy6G8945VunRRkPxMk98rUrg60ECVEM/vuefk1atACzjQsKx6tmLZuHxbJQ64TQeQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-5DacbJXe98ozSor7JlkTNCy6G8945VunRRkPxMk98rUrg60ECVEM/vuefk1atACzjQsKx6tmLZuHxbJQ64TQeQ==, + } + engines: { node: ">=8.0.0" } web3-core-requestmanager@1.3.6: - resolution: {integrity: sha512-2rIaeuqeo7QN1Eex7aXP0ZqeteJEPWXYFS/M3r3LXMiV8R4STQBKE+//dnHJXoo2ctzEB5cgd+7NaJM8S3gPyA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-2rIaeuqeo7QN1Eex7aXP0ZqeteJEPWXYFS/M3r3LXMiV8R4STQBKE+//dnHJXoo2ctzEB5cgd+7NaJM8S3gPyA==, + } + engines: { node: ">=8.0.0" } web3-core-requestmanager@1.5.2: - resolution: {integrity: sha512-oRVW9OrAsXN2JIZt68OEg1Mb1A9a/L3JAGMv15zLEFEnJEGw0KQsGK1ET2kvZBzvpFd5G0EVkYCnx7WDe4HSNw==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-oRVW9OrAsXN2JIZt68OEg1Mb1A9a/L3JAGMv15zLEFEnJEGw0KQsGK1ET2kvZBzvpFd5G0EVkYCnx7WDe4HSNw==, + } + engines: { node: ">=8.0.0" } web3-core-subscriptions@1.3.6: - resolution: {integrity: sha512-wi9Z9X5X75OKvxAg42GGIf81ttbNR2TxzkAsp1g+nnp5K8mBwgZvXrIsDuj7Z7gx72Y45mWJADCWjk/2vqNu8g==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-wi9Z9X5X75OKvxAg42GGIf81ttbNR2TxzkAsp1g+nnp5K8mBwgZvXrIsDuj7Z7gx72Y45mWJADCWjk/2vqNu8g==, + } + engines: { node: ">=8.0.0" } web3-core-subscriptions@1.5.2: - resolution: {integrity: sha512-hapI4rKFk22yurtIv0BYvkraHsM7epA4iI8Np+HuH6P9DD0zj/llaps6TXLM9HyacLBRwmOLZmr+pHBsPopUnQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-hapI4rKFk22yurtIv0BYvkraHsM7epA4iI8Np+HuH6P9DD0zj/llaps6TXLM9HyacLBRwmOLZmr+pHBsPopUnQ==, + } + engines: { node: ">=8.0.0" } web3-core@1.3.6: - resolution: {integrity: sha512-gkLDM4T1Sc0T+HZIwxrNrwPg0IfWI0oABSglP2X5ZbBAYVUeEATA0o92LWV8BeF+okvKXLK1Fek/p6axwM/h3Q==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-gkLDM4T1Sc0T+HZIwxrNrwPg0IfWI0oABSglP2X5ZbBAYVUeEATA0o92LWV8BeF+okvKXLK1Fek/p6axwM/h3Q==, + } + engines: { node: ">=8.0.0" } web3-core@1.5.2: - resolution: {integrity: sha512-sebMpQbg3kbh3vHUbHrlKGKOxDWqjgt8KatmTBsTAWj/HwWYVDzeX+2Q84+swNYsm2DrTBVFlqTErFUwPBvyaA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-sebMpQbg3kbh3vHUbHrlKGKOxDWqjgt8KatmTBsTAWj/HwWYVDzeX+2Q84+swNYsm2DrTBVFlqTErFUwPBvyaA==, + } + engines: { node: ">=8.0.0" } web3-eth-abi@1.3.6: - resolution: {integrity: sha512-Or5cRnZu6WzgScpmbkvC6bfNxR26hqiKK4i8sMPFeTUABQcb/FU3pBj7huBLYbp9dH+P5W79D2MqwbWwjj9DoQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-Or5cRnZu6WzgScpmbkvC6bfNxR26hqiKK4i8sMPFeTUABQcb/FU3pBj7huBLYbp9dH+P5W79D2MqwbWwjj9DoQ==, + } + engines: { node: ">=8.0.0" } web3-eth-abi@1.5.2: - resolution: {integrity: sha512-P3bJbDR5wib4kWGfVeBKBVi27T+AiHy4EJxYM6SMNbpm3DboLDdisu9YBd6INMs8rzxgnprBbGmmyn4jKIDKAA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-P3bJbDR5wib4kWGfVeBKBVi27T+AiHy4EJxYM6SMNbpm3DboLDdisu9YBd6INMs8rzxgnprBbGmmyn4jKIDKAA==, + } + engines: { node: ">=8.0.0" } web3-eth-accounts@1.3.6: - resolution: {integrity: sha512-Ilr0hG6ONbCdSlVKffasCmNwftD5HsNpwyQASevocIQwHdTlvlwO0tb3oGYuajbKOaDzNTwXfz25bttAEoFCGA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-Ilr0hG6ONbCdSlVKffasCmNwftD5HsNpwyQASevocIQwHdTlvlwO0tb3oGYuajbKOaDzNTwXfz25bttAEoFCGA==, + } + engines: { node: ">=8.0.0" } web3-eth-accounts@1.5.2: - resolution: {integrity: sha512-F8mtzxgEhxfLc66vPi0Gqd6mpscvvk7Ua575bsJ1p9J2X/VtuKgDgpWcU4e4LKeROQ+ouCpAG9//0j9jQuij3A==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-F8mtzxgEhxfLc66vPi0Gqd6mpscvvk7Ua575bsJ1p9J2X/VtuKgDgpWcU4e4LKeROQ+ouCpAG9//0j9jQuij3A==, + } + engines: { node: ">=8.0.0" } web3-eth-contract@1.3.6: - resolution: {integrity: sha512-8gDaRrLF2HCg+YEZN1ov0zN35vmtPnGf3h1DxmJQK5Wm2lRMLomz9rsWsuvig3UJMHqZAQKD7tOl3ocJocQsmA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-8gDaRrLF2HCg+YEZN1ov0zN35vmtPnGf3h1DxmJQK5Wm2lRMLomz9rsWsuvig3UJMHqZAQKD7tOl3ocJocQsmA==, + } + engines: { node: ">=8.0.0" } web3-eth-contract@1.5.2: - resolution: {integrity: sha512-4B8X/IPFxZCTmtENpdWXtyw5fskf2muyc3Jm5brBQRb4H3lVh1/ZyQy7vOIkdphyaXu4m8hBLHzeyKkd37mOUg==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-4B8X/IPFxZCTmtENpdWXtyw5fskf2muyc3Jm5brBQRb4H3lVh1/ZyQy7vOIkdphyaXu4m8hBLHzeyKkd37mOUg==, + } + engines: { node: ">=8.0.0" } web3-eth-ens@1.3.6: - resolution: {integrity: sha512-n27HNj7lpSkRxTgSx+Zo7cmKAgyg2ElFilaFlUu/X2CNH23lXfcPm2bWssivH9z0ndhg0OyR4AYFZqPaqDHkJA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-n27HNj7lpSkRxTgSx+Zo7cmKAgyg2ElFilaFlUu/X2CNH23lXfcPm2bWssivH9z0ndhg0OyR4AYFZqPaqDHkJA==, + } + engines: { node: ">=8.0.0" } web3-eth-ens@1.5.2: - resolution: {integrity: sha512-/UrLL42ZOCYge+BpFBdzG8ICugaRS4f6X7PxJKO+zAt+TwNgBpjuWfW/ZYNcuqJun/ZyfcTuj03TXqA1RlNhZQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-/UrLL42ZOCYge+BpFBdzG8ICugaRS4f6X7PxJKO+zAt+TwNgBpjuWfW/ZYNcuqJun/ZyfcTuj03TXqA1RlNhZQ==, + } + engines: { node: ">=8.0.0" } web3-eth-iban@1.3.6: - resolution: {integrity: sha512-nfMQaaLA/zsg5W4Oy/EJQbs8rSs1vBAX6b/35xzjYoutXlpHMQadujDx2RerTKhSHqFXSJeQAfE+2f6mdhYkRQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-nfMQaaLA/zsg5W4Oy/EJQbs8rSs1vBAX6b/35xzjYoutXlpHMQadujDx2RerTKhSHqFXSJeQAfE+2f6mdhYkRQ==, + } + engines: { node: ">=8.0.0" } web3-eth-iban@1.5.2: - resolution: {integrity: sha512-C04YDXuSG/aDwOHSX+HySBGb0KraiAVt+/l1Mw7y/fCUrKC/K0yYzMYqY/uYOcvLtepBPsC4ZfUYWUBZ2PO8Vg==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-C04YDXuSG/aDwOHSX+HySBGb0KraiAVt+/l1Mw7y/fCUrKC/K0yYzMYqY/uYOcvLtepBPsC4ZfUYWUBZ2PO8Vg==, + } + engines: { node: ">=8.0.0" } web3-eth-personal@1.3.6: - resolution: {integrity: sha512-pOHU0+/h1RFRYoh1ehYBehRbcKWP4OSzd4F7mDljhHngv6W8ewMHrAN8O1ol9uysN2MuCdRE19qkRg5eNgvzFQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-pOHU0+/h1RFRYoh1ehYBehRbcKWP4OSzd4F7mDljhHngv6W8ewMHrAN8O1ol9uysN2MuCdRE19qkRg5eNgvzFQ==, + } + engines: { node: ">=8.0.0" } web3-eth-personal@1.5.2: - resolution: {integrity: sha512-nH5N2GiVC0C5XeMEKU16PeFP3Hb3hkPvlR6Tf9WQ+pE+jw1c8eaXBO1CJQLr15ikhUF3s94ICyHcfjzkDsmRbA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-nH5N2GiVC0C5XeMEKU16PeFP3Hb3hkPvlR6Tf9WQ+pE+jw1c8eaXBO1CJQLr15ikhUF3s94ICyHcfjzkDsmRbA==, + } + engines: { node: ">=8.0.0" } web3-eth@1.3.6: - resolution: {integrity: sha512-9+rnywRRpyX3C4hfsAQXPQh6vHh9XzQkgLxo3gyeXfbhbShUoq2gFVuy42vsRs//6JlsKdyZS7Z3hHPHz2wreA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-9+rnywRRpyX3C4hfsAQXPQh6vHh9XzQkgLxo3gyeXfbhbShUoq2gFVuy42vsRs//6JlsKdyZS7Z3hHPHz2wreA==, + } + engines: { node: ">=8.0.0" } web3-eth@1.5.2: - resolution: {integrity: sha512-DwWQ6TCOUqvYyo7T20S7HpQDPveNHNqOn2Q2F3E8ZFyEjmqT4XsGiwvm08kB/VgQ4e/ANyq/i8PPFSYMT8JKHg==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-DwWQ6TCOUqvYyo7T20S7HpQDPveNHNqOn2Q2F3E8ZFyEjmqT4XsGiwvm08kB/VgQ4e/ANyq/i8PPFSYMT8JKHg==, + } + engines: { node: ">=8.0.0" } web3-net@1.3.6: - resolution: {integrity: sha512-KhzU3wMQY/YYjyMiQzbaLPt2kut88Ncx2iqjy3nw28vRux3gVX0WOCk9EL/KVJBiAA/fK7VklTXvgy9dZnnipw==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-KhzU3wMQY/YYjyMiQzbaLPt2kut88Ncx2iqjy3nw28vRux3gVX0WOCk9EL/KVJBiAA/fK7VklTXvgy9dZnnipw==, + } + engines: { node: ">=8.0.0" } web3-net@1.5.2: - resolution: {integrity: sha512-VEc9c+jfoERhbJIxnx0VPlQDot8Lm4JW/tOWFU+ekHgIiu2zFKj5YxhURIth7RAbsaRsqCb79aE+M0eI8maxVQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-VEc9c+jfoERhbJIxnx0VPlQDot8Lm4JW/tOWFU+ekHgIiu2zFKj5YxhURIth7RAbsaRsqCb79aE+M0eI8maxVQ==, + } + engines: { node: ">=8.0.0" } web3-providers-http@1.3.6: - resolution: {integrity: sha512-OQkT32O1A06dISIdazpGLveZcOXhEo5cEX6QyiSQkiPk/cjzDrXMw4SKZOGQbbS1+0Vjizm1Hrp7O8Vp2D1M5Q==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-OQkT32O1A06dISIdazpGLveZcOXhEo5cEX6QyiSQkiPk/cjzDrXMw4SKZOGQbbS1+0Vjizm1Hrp7O8Vp2D1M5Q==, + } + engines: { node: ">=8.0.0" } web3-providers-http@1.5.2: - resolution: {integrity: sha512-dUNFJc9IMYDLZnkoQX3H4ZjvHjGO6VRVCqrBrdh84wPX/0da9dOA7DwIWnG0Gv3n9ybWwu5JHQxK4MNQ444lyA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-dUNFJc9IMYDLZnkoQX3H4ZjvHjGO6VRVCqrBrdh84wPX/0da9dOA7DwIWnG0Gv3n9ybWwu5JHQxK4MNQ444lyA==, + } + engines: { node: ">=8.0.0" } web3-providers-ipc@1.3.6: - resolution: {integrity: sha512-+TVsSd2sSVvVgHG4s6FXwwYPPT91boKKcRuEFXqEfAbUC5t52XOgmyc2LNiD9LzPhed65FbV4LqICpeYGUvSwA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-+TVsSd2sSVvVgHG4s6FXwwYPPT91boKKcRuEFXqEfAbUC5t52XOgmyc2LNiD9LzPhed65FbV4LqICpeYGUvSwA==, + } + engines: { node: ">=8.0.0" } web3-providers-ipc@1.5.2: - resolution: {integrity: sha512-SJC4Sivt4g9LHKlRy7cs1jkJgp7bjrQeUndE6BKs0zNALKguxu6QYnzbmuHCTFW85GfMDjhvi24jyyZHMnBNXQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-SJC4Sivt4g9LHKlRy7cs1jkJgp7bjrQeUndE6BKs0zNALKguxu6QYnzbmuHCTFW85GfMDjhvi24jyyZHMnBNXQ==, + } + engines: { node: ">=8.0.0" } web3-providers-ws@1.3.6: - resolution: {integrity: sha512-bk7MnJf5or0Re2zKyhR3L3CjGululLCHXx4vlbc/drnaTARUVvi559OI5uLytc/1k5HKUUyENAxLvetz2G1dnQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-bk7MnJf5or0Re2zKyhR3L3CjGululLCHXx4vlbc/drnaTARUVvi559OI5uLytc/1k5HKUUyENAxLvetz2G1dnQ==, + } + engines: { node: ">=8.0.0" } web3-providers-ws@1.5.2: - resolution: {integrity: sha512-xy9RGlyO8MbJDuKv2vAMDkg+en+OvXG0CGTCM2BTl6l1vIdHpCa+6A/9KV2rK8aU9OBZ7/Pf+Y19517kHVl9RA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-xy9RGlyO8MbJDuKv2vAMDkg+en+OvXG0CGTCM2BTl6l1vIdHpCa+6A/9KV2rK8aU9OBZ7/Pf+Y19517kHVl9RA==, + } + engines: { node: ">=8.0.0" } web3-shh@1.3.6: - resolution: {integrity: sha512-9zRo415O0iBslxBnmu9OzYjNErzLnzOsy+IOvSpIreLYbbAw0XkDWxv3SfcpKnTIWIACBR4AYMIxmmyi5iB3jw==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-9zRo415O0iBslxBnmu9OzYjNErzLnzOsy+IOvSpIreLYbbAw0XkDWxv3SfcpKnTIWIACBR4AYMIxmmyi5iB3jw==, + } + engines: { node: ">=8.0.0" } web3-shh@1.5.2: - resolution: {integrity: sha512-wOxOcYt4Sa0AHAI8gG7RulCwVuVjSRS/M/AbFsea3XfJdN6sU13/syY7OdZNjNYuKjYTzxKYrd3dU/K2iqffVw==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-wOxOcYt4Sa0AHAI8gG7RulCwVuVjSRS/M/AbFsea3XfJdN6sU13/syY7OdZNjNYuKjYTzxKYrd3dU/K2iqffVw==, + } + engines: { node: ">=8.0.0" } web3-utils@1.3.6: - resolution: {integrity: sha512-hHatFaQpkQgjGVER17gNx8u1qMyaXFZtM0y0XLGH1bzsjMPlkMPLRcYOrZ00rOPfTEuYFOdrpGOqZXVmGrMZRg==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-hHatFaQpkQgjGVER17gNx8u1qMyaXFZtM0y0XLGH1bzsjMPlkMPLRcYOrZ00rOPfTEuYFOdrpGOqZXVmGrMZRg==, + } + engines: { node: ">=8.0.0" } web3-utils@1.5.2: - resolution: {integrity: sha512-quTtTeQJHYSxAwIBOCGEcQtqdVcFWX6mCFNoqnp+mRbq+Hxbs8CGgO/6oqfBx4OvxIOfCpgJWYVHswRXnbEu9Q==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-quTtTeQJHYSxAwIBOCGEcQtqdVcFWX6mCFNoqnp+mRbq+Hxbs8CGgO/6oqfBx4OvxIOfCpgJWYVHswRXnbEu9Q==, + } + engines: { node: ">=8.0.0" } web3@1.3.6: - resolution: {integrity: sha512-jEpPhnL6GDteifdVh7ulzlPrtVQeA30V9vnki9liYlUvLV82ZM7BNOQJiuzlDePuE+jZETZSP/0G/JlUVt6pOA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-jEpPhnL6GDteifdVh7ulzlPrtVQeA30V9vnki9liYlUvLV82ZM7BNOQJiuzlDePuE+jZETZSP/0G/JlUVt6pOA==, + } + engines: { node: ">=8.0.0" } web3@1.5.2: - resolution: {integrity: sha512-aapKLdO8t7Cos6tZLeeQUtCJvTiPMlLcHsHHDLSBZ/VaJEucSTxzun32M8sp3BmF4waDEmhY+iyUM1BKvtAcVQ==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-aapKLdO8t7Cos6tZLeeQUtCJvTiPMlLcHsHHDLSBZ/VaJEucSTxzun32M8sp3BmF4waDEmhY+iyUM1BKvtAcVQ==, + } + engines: { node: ">=8.0.0" } 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==, + } webidl-conversions@5.0.0: - resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==, + } + engines: { node: ">=8" } webidl-conversions@6.1.0: - resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} - engines: {node: '>=10.4'} + resolution: + { + integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==, + } + engines: { node: ">=10.4" } webidl-conversions@7.0.0: - resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==, + } + engines: { node: ">=12" } webpack-bundle-analyzer@4.10.2: - resolution: {integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==} - engines: {node: '>= 10.13.0'} + resolution: + { + integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==, + } + engines: { node: ">= 10.13.0" } hasBin: true webpack-chain@6.5.1: - resolution: {integrity: sha512-7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA==, + } + engines: { node: ">=8" } deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. webpack-cli@4.10.0: - resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==, + } + engines: { node: ">=10.13.0" } hasBin: true peerDependencies: - '@webpack-cli/generators': '*' - '@webpack-cli/migrate': '*' + "@webpack-cli/generators": "*" + "@webpack-cli/migrate": "*" webpack: 4.x.x || 5.x.x - webpack-bundle-analyzer: '*' - webpack-dev-server: '*' + webpack-bundle-analyzer: "*" + webpack-dev-server: "*" peerDependenciesMeta: - '@webpack-cli/generators': + "@webpack-cli/generators": optional: true - '@webpack-cli/migrate': + "@webpack-cli/migrate": optional: true webpack-bundle-analyzer: optional: true @@ -29829,14 +45942,20 @@ packages: optional: true webpack-dev-middleware@5.3.4: - resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} - engines: {node: '>= 12.13.0'} + resolution: + { + integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==, + } + engines: { node: ">= 12.13.0" } peerDependencies: webpack: ^4.0.0 || ^5.0.0 webpack-dev-middleware@6.1.2: - resolution: {integrity: sha512-Wu+EHmX326YPYUpQLKmKbTyZZJIB8/n6R09pTmB03kJmnMsVPTo9COzHZFr01txwaCAuZvfBJE4ZCHRcKs5JaQ==} - engines: {node: '>= 14.15.0'} + resolution: + { + integrity: sha512-Wu+EHmX326YPYUpQLKmKbTyZZJIB8/n6R09pTmB03kJmnMsVPTo9COzHZFr01txwaCAuZvfBJE4ZCHRcKs5JaQ==, + } + engines: { node: ">= 14.15.0" } peerDependencies: webpack: ^5.0.0 peerDependenciesMeta: @@ -29844,12 +45963,15 @@ packages: optional: true webpack-dev-server@4.15.2: - resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==} - engines: {node: '>= 12.13.0'} + resolution: + { + integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==, + } + engines: { node: ">= 12.13.0" } hasBin: true peerDependencies: webpack: ^4.37.0 || ^5.0.0 - webpack-cli: '*' + webpack-cli: "*" peerDependenciesMeta: webpack: optional: true @@ -29857,276 +45979,492 @@ packages: optional: true webpack-hot-middleware@2.26.1: - resolution: {integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==} + resolution: + { + integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==, + } webpack-manifest-plugin@4.1.1: - resolution: {integrity: sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==} - engines: {node: '>=12.22.0'} + resolution: + { + integrity: sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==, + } + engines: { node: ">=12.22.0" } peerDependencies: webpack: ^4.44.2 || ^5.47.0 webpack-merge@5.10.0: - resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==, + } + engines: { node: ">=10.0.0" } webpack-sources@1.4.3: - resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==} + resolution: + { + integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==, + } webpack-sources@2.3.1: - resolution: {integrity: sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==, + } + engines: { node: ">=10.13.0" } webpack-sources@3.2.3: - resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==, + } + engines: { node: ">=10.13.0" } webpack-virtual-modules@0.4.6: - resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==} + resolution: + { + integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==, + } webpack-virtual-modules@0.5.0: - resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==} + resolution: + { + integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==, + } webpack-virtual-modules@0.6.1: - resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==} + resolution: + { + integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==, + } webpack@5.91.0: - resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==, + } + engines: { node: ">=10.13.0" } hasBin: true peerDependencies: - webpack-cli: '*' + webpack-cli: "*" peerDependenciesMeta: webpack-cli: optional: true webpack@5.94.0: - resolution: {integrity: sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==, + } + engines: { node: ">=10.13.0" } hasBin: true peerDependencies: - webpack-cli: '*' + webpack-cli: "*" peerDependenciesMeta: webpack-cli: optional: true webpod@0.0.2: - resolution: {integrity: sha512-cSwwQIeg8v4i3p4ajHhwgR7N6VyxAf+KYSSsY6Pd3aETE+xEU4vbitz7qQkB0I321xnhDdgtxuiSfk5r/FVtjg==} + resolution: + { + integrity: sha512-cSwwQIeg8v4i3p4ajHhwgR7N6VyxAf+KYSSsY6Pd3aETE+xEU4vbitz7qQkB0I321xnhDdgtxuiSfk5r/FVtjg==, + } hasBin: true websocket-driver@0.7.4: - resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==, + } + engines: { node: ">=0.8.0" } websocket-extensions@0.1.4: - resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==, + } + engines: { node: ">=0.8.0" } websocket@1.0.34: - resolution: {integrity: sha512-PRDso2sGwF6kM75QykIesBijKSVceR6jL2G8NGYyq2XrItNC2P5/qL5XeR056GhA+Ly7JMFvJb9I312mJfmqnQ==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-PRDso2sGwF6kM75QykIesBijKSVceR6jL2G8NGYyq2XrItNC2P5/qL5XeR056GhA+Ly7JMFvJb9I312mJfmqnQ==, + } + engines: { node: ">=4.0.0" } whatwg-encoding@1.0.5: - resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} + resolution: + { + integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==, + } whatwg-encoding@2.0.0: - resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==, + } + engines: { node: ">=12" } whatwg-fetch@3.6.20: - resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} + resolution: + { + integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==, + } whatwg-mimetype@2.3.0: - resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} + resolution: + { + integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==, + } whatwg-mimetype@3.0.0: - resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==, + } + engines: { node: ">=12" } whatwg-url-without-unicode@8.0.0-3: - resolution: {integrity: sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==, + } + engines: { node: ">=10" } whatwg-url@10.0.0: - resolution: {integrity: sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w==, + } + engines: { node: ">=12" } whatwg-url@11.0.0: - resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==, + } + engines: { node: ">=12" } 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==, + } whatwg-url@8.7.0: - resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==, + } + engines: { node: ">=10" } whatwg-url@9.1.0: - resolution: {integrity: sha512-CQ0UcrPHyomtlOCot1TL77WyMIm/bCwrJ2D6AOKGwEczU9EpyoqAokfqrf/MioU9kHcMsmJZcg1egXix2KYEsA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-CQ0UcrPHyomtlOCot1TL77WyMIm/bCwrJ2D6AOKGwEczU9EpyoqAokfqrf/MioU9kHcMsmJZcg1egXix2KYEsA==, + } + engines: { node: ">=12" } when-exit@2.1.2: - resolution: {integrity: sha512-u9J+toaf3CCxCAzM/484qNAxQE75rFdVgiFEEV8Xps2gzYhf0tx73s1WXDQhkwV17E3MxRMz40m7Ekd2/121Lg==} + resolution: + { + integrity: sha512-u9J+toaf3CCxCAzM/484qNAxQE75rFdVgiFEEV8Xps2gzYhf0tx73s1WXDQhkwV17E3MxRMz40m7Ekd2/121Lg==, + } which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + resolution: + { + integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, + } which-builtin-type@1.1.3: - resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==, + } + 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-pm@2.2.0: - resolution: {integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==} - engines: {node: '>=8.15'} + resolution: + { + integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==, + } + engines: { node: ">=8.15" } which-typed-array@1.1.15: - resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==, + } + engines: { node: ">= 0.4" } which@1.3.1: - resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} + resolution: + { + integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==, + } hasBin: true which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, + } + engines: { node: ">= 8" } hasBin: true which@3.0.1: - resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + resolution: + { + integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } hasBin: true wif@2.0.6: - resolution: {integrity: sha512-HIanZn1zmduSF+BQhkE+YXIbEiH0xPr1012QbFEGB0xsKqJii0/SqJjyn8dFv6y36kOznMgMB+LGcbZTJ1xACQ==} + resolution: + { + integrity: sha512-HIanZn1zmduSF+BQhkE+YXIbEiH0xPr1012QbFEGB0xsKqJii0/SqJjyn8dFv6y36kOznMgMB+LGcbZTJ1xACQ==, + } wildcard@2.0.1: - resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} + resolution: + { + integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==, + } winston-transport@4.7.0: - resolution: {integrity: sha512-ajBj65K5I7denzer2IYW6+2bNIVqLGDHqDw3Ow8Ohh+vdW+rv4MZ6eiDvHoKhfJFZ2auyN8byXieDDJ96ViONg==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-ajBj65K5I7denzer2IYW6+2bNIVqLGDHqDw3Ow8Ohh+vdW+rv4MZ6eiDvHoKhfJFZ2auyN8byXieDDJ96ViONg==, + } + engines: { node: ">= 12.0.0" } winston@3.13.0: - resolution: {integrity: sha512-rwidmA1w3SE4j0E5MuIufFhyJPBDG7Nu71RkZor1p2+qHvJSZ9GYDA81AyleQcZbh/+V6HjeBdfnTZJm9rSeQQ==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-rwidmA1w3SE4j0E5MuIufFhyJPBDG7Nu71RkZor1p2+qHvJSZ9GYDA81AyleQcZbh/+V6HjeBdfnTZJm9rSeQQ==, + } + engines: { node: ">= 12.0.0" } wonka@4.0.15: - resolution: {integrity: sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==} + resolution: + { + integrity: sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==, + } word-wrap@1.2.5: - resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==, + } + engines: { node: ">=0.10.0" } wordwrap@1.0.0: - resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} + resolution: + { + integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==, + } wordwrapjs@4.0.1: - resolution: {integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==, + } + engines: { node: ">=8.0.0" } workbox-background-sync@6.6.0: - resolution: {integrity: sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==} + resolution: + { + integrity: sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==, + } workbox-broadcast-update@6.6.0: - resolution: {integrity: sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==} + resolution: + { + integrity: sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==, + } workbox-build@6.6.0: - resolution: {integrity: sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==, + } + engines: { node: ">=10.0.0" } workbox-cacheable-response@6.6.0: - resolution: {integrity: sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==} + resolution: + { + integrity: sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==, + } deprecated: workbox-background-sync@6.6.0 workbox-core@6.6.0: - resolution: {integrity: sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==} + resolution: + { + integrity: sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==, + } workbox-expiration@6.6.0: - resolution: {integrity: sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==} + resolution: + { + integrity: sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==, + } workbox-google-analytics@6.6.0: - resolution: {integrity: sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==} + resolution: + { + integrity: sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==, + } deprecated: It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained workbox-navigation-preload@6.6.0: - resolution: {integrity: sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==} + resolution: + { + integrity: sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==, + } workbox-precaching@6.6.0: - resolution: {integrity: sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==} + resolution: + { + integrity: sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==, + } workbox-range-requests@6.6.0: - resolution: {integrity: sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==} + resolution: + { + integrity: sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==, + } workbox-recipes@6.6.0: - resolution: {integrity: sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==} + resolution: + { + integrity: sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==, + } workbox-routing@6.6.0: - resolution: {integrity: sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==} + resolution: + { + integrity: sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==, + } workbox-strategies@6.6.0: - resolution: {integrity: sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==} + resolution: + { + integrity: sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==, + } workbox-streams@6.6.0: - resolution: {integrity: sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==} + resolution: + { + integrity: sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==, + } workbox-sw@6.6.0: - resolution: {integrity: sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==} + resolution: + { + integrity: sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==, + } workbox-webpack-plugin@6.6.0: - resolution: {integrity: sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==, + } + engines: { node: ">=10.0.0" } peerDependencies: webpack: ^4.4.0 || ^5.9.0 workbox-window@6.6.0: - resolution: {integrity: sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==} + resolution: + { + integrity: sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==, + } wrap-ansi@3.0.1: - resolution: {integrity: sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==, + } + engines: { node: ">=4" } 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==, + } write-file-atomic@2.4.3: - resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} + resolution: + { + integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==, + } write-file-atomic@3.0.3: - resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} + resolution: + { + integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==, + } write-file-atomic@4.0.2: - resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} - engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} + resolution: + { + integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==, + } + engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } write-file-atomic@5.0.1: - resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==} - engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + resolution: + { + integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==, + } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } ws@3.3.3: - resolution: {integrity: sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==} + resolution: + { + integrity: sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==, + } peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 @@ -30137,7 +46475,10 @@ packages: optional: true ws@6.2.3: - resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==} + resolution: + { + integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==, + } peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 @@ -30148,8 +46489,11 @@ packages: optional: true ws@7.5.10: - resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} - engines: {node: '>=8.3.0'} + resolution: + { + integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==, + } + engines: { node: ">=8.3.0" } peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 @@ -30160,11 +46504,14 @@ packages: optional: true ws@8.17.1: - resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==, + } + 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 @@ -30172,11 +46519,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 @@ -30184,8 +46534,11 @@ packages: optional: true ws@8.5.0: - resolution: {integrity: sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==, + } + engines: { node: ">=10.0.0" } peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 @@ -30196,2494 +46549,2407 @@ packages: optional: true x-is-string@0.1.0: - resolution: {integrity: sha512-GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w==} + resolution: + { + integrity: sha512-GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w==, + } xcode@3.0.1: - resolution: {integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==, + } + engines: { node: ">=10.0.0" } xhr-request-promise@0.1.3: - resolution: {integrity: sha512-YUBytBsuwgitWtdRzXDDkWAXzhdGB8bYm0sSzMPZT7Z2MBjMSTHFsyCT1yCRATY+XC69DUrQraRAEgcoCRaIPg==} + resolution: + { + integrity: sha512-YUBytBsuwgitWtdRzXDDkWAXzhdGB8bYm0sSzMPZT7Z2MBjMSTHFsyCT1yCRATY+XC69DUrQraRAEgcoCRaIPg==, + } xhr-request@1.1.0: - resolution: {integrity: sha512-Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA==} + resolution: + { + integrity: sha512-Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA==, + } xhr2-cookies@1.1.0: - resolution: {integrity: sha512-hjXUA6q+jl/bd8ADHcVfFsSPIf+tyLIjuO9TwJC9WI6JP2zKcS7C+p56I9kCLLsaCiNT035iYvEUUzdEFj/8+g==} + resolution: + { + integrity: sha512-hjXUA6q+jl/bd8ADHcVfFsSPIf+tyLIjuO9TwJC9WI6JP2zKcS7C+p56I9kCLLsaCiNT035iYvEUUzdEFj/8+g==, + } xhr@2.6.0: - resolution: {integrity: sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==} + resolution: + { + integrity: sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==, + } xml-name-validator@3.0.0: - resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} + resolution: + { + integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==, + } xml-name-validator@4.0.0: - resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==, + } + engines: { node: ">=12" } xml2js@0.4.23: - resolution: {integrity: sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==, + } + engines: { node: ">=4.0.0" } xml2js@0.5.0: - resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==, + } + engines: { node: ">=4.0.0" } xml2js@0.6.0: - resolution: {integrity: sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==, + } + engines: { node: ">=4.0.0" } xmlbuilder@11.0.1: - resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==, + } + engines: { node: ">=4.0" } xmlbuilder@14.0.0: - resolution: {integrity: sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg==} - engines: {node: '>=8.0'} + resolution: + { + integrity: sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg==, + } + engines: { node: ">=8.0" } xmlbuilder@15.1.1: - resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==} - engines: {node: '>=8.0'} + resolution: + { + integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==, + } + engines: { node: ">=8.0" } xmlchars@2.2.0: - resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + resolution: + { + integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==, + } xmlcreate@2.0.4: - resolution: {integrity: sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==} + resolution: + { + integrity: sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==, + } xmlhttprequest@1.8.0: - resolution: {integrity: sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==, + } + engines: { node: ">=0.4.0" } xstate@4.38.3: - resolution: {integrity: sha512-SH7nAaaPQx57dx6qvfcIgqKRXIh4L0A1iYEqim4s1u7c9VoCgzZc+63FY90AKU4ZzOC2cfJzTnpO4zK7fCUzzw==} + resolution: + { + integrity: sha512-SH7nAaaPQx57dx6qvfcIgqKRXIh4L0A1iYEqim4s1u7c9VoCgzZc+63FY90AKU4ZzOC2cfJzTnpO4zK7fCUzzw==, + } xstream@11.14.0: - resolution: {integrity: sha512-1bLb+kKKtKPbgTK6i/BaoAn03g47PpFstlbe1BA+y3pNS/LfvcaghS5BFf9+EE1J+KwSQsEpfJvFN5GqFtiNmw==} + resolution: + { + integrity: sha512-1bLb+kKKtKPbgTK6i/BaoAn03g47PpFstlbe1BA+y3pNS/LfvcaghS5BFf9+EE1J+KwSQsEpfJvFN5GqFtiNmw==, + } xtend@2.0.6: - resolution: {integrity: sha512-fOZg4ECOlrMl+A6Msr7EIFcON1L26mb4NY5rurSkOex/TWhazOrg6eXD/B0XkuiYcYhQDWLXzQxLMVJ7LXwokg==} - engines: {node: '>=0.4'} + resolution: + { + integrity: sha512-fOZg4ECOlrMl+A6Msr7EIFcON1L26mb4NY5rurSkOex/TWhazOrg6eXD/B0XkuiYcYhQDWLXzQxLMVJ7LXwokg==, + } + engines: { node: ">=0.4" } xtend@2.2.0: - resolution: {integrity: sha512-SLt5uylT+4aoXxXuwtQp5ZnMMzhDb1Xkg4pEqc00WUJCQifPfV9Ub1VrNhp9kXkrjZD2I2Hl8WnjP37jzZLPZw==} - engines: {node: '>=0.4'} + resolution: + { + integrity: sha512-SLt5uylT+4aoXxXuwtQp5ZnMMzhDb1Xkg4pEqc00WUJCQifPfV9Ub1VrNhp9kXkrjZD2I2Hl8WnjP37jzZLPZw==, + } + engines: { node: ">=0.4" } xtend@3.0.0: - resolution: {integrity: sha512-sp/sT9OALMjRW1fKDlPeuSZlDQpkqReA0pyJukniWbTGoEKefHxhGJynE3PNhUMlcM8qWIjPwecwCw4LArS5Eg==} - engines: {node: '>=0.4'} + resolution: + { + integrity: sha512-sp/sT9OALMjRW1fKDlPeuSZlDQpkqReA0pyJukniWbTGoEKefHxhGJynE3PNhUMlcM8qWIjPwecwCw4LArS5Eg==, + } + engines: { node: ">=0.4" } xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} + resolution: + { + integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==, + } + engines: { node: ">=0.4" } 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" } yaeti@0.0.6: - resolution: {integrity: sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==} - engines: {node: '>=0.10.32'} + resolution: + { + integrity: sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==, + } + engines: { node: ">=0.10.32" } yaku@0.16.7: - resolution: {integrity: sha512-Syu3IB3rZvKvYk7yTiyl1bo/jiEFaaStrgv1V2TIJTqYPStSMQVO8EQjg/z+DRzLq/4LIIharNT3iH1hylEIRw==} + resolution: + { + integrity: sha512-Syu3IB3rZvKvYk7yTiyl1bo/jiEFaaStrgv1V2TIJTqYPStSMQVO8EQjg/z+DRzLq/4LIIharNT3iH1hylEIRw==, + } yallist@2.1.2: - resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} + resolution: + { + integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==, + } yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + resolution: + { + integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, + } yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + resolution: + { + integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, + } yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==, + } + engines: { node: ">= 6" } yaml@2.3.1: - resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==} - engines: {node: '>= 14'} + resolution: + { + integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==, + } + engines: { node: ">= 14" } yaml@2.4.1: - resolution: {integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==} - engines: {node: '>= 14'} + resolution: + { + integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==, + } + 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@20.2.9: - resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==, + } + engines: { node: ">=10" } 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-unparser@2.0.0: - resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==, + } + engines: { node: ">=10" } 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@16.2.0: - resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==, + } + engines: { node: ">=10" } yargs@17.7.2: - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==, + } + engines: { node: ">=12" } yarn-add-no-save@1.0.3: - resolution: {integrity: sha512-ngmmxwYOogvYPjFDXGjoj35r/DteDzfiyoq5BI+kKSCCXW/I2gJA3KAgbm/7yFmcDE9CGSaORpNbYfglGYuxtA==} + resolution: + { + integrity: sha512-ngmmxwYOogvYPjFDXGjoj35r/DteDzfiyoq5BI+kKSCCXW/I2gJA3KAgbm/7yFmcDE9CGSaORpNbYfglGYuxtA==, + } hasBin: true yauzl@2.10.0: - resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + resolution: + { + integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==, + } ylru@1.4.0: - resolution: {integrity: sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==} - engines: {node: '>= 4.0.0'} + resolution: + { + integrity: sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==, + } + engines: { node: ">= 4.0.0" } yn@3.1.1: - resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==, + } + engines: { node: ">=6" } 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.0.0: - resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} - engines: {node: '>=12.20'} + resolution: + { + integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==, + } + engines: { node: ">=12.20" } zip-stream@5.0.2: - resolution: {integrity: sha512-LfOdrUvPB8ZoXtvOBz6DlNClfvi//b5d56mSWyJi7XbH/HfhOHfUhOqxhT/rUiR7yiktlunqRo+jY6y/cWC/5g==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-LfOdrUvPB8ZoXtvOBz6DlNClfvi//b5d56mSWyJi7XbH/HfhOHfUhOqxhT/rUiR7yiktlunqRo+jY6y/cWC/5g==, + } + engines: { node: ">= 12.0.0" } + + zod-validation-error@2.1.0: + resolution: + { + integrity: sha512-VJh93e2wb4c3tWtGgTa0OF/dTt/zoPCPzXq4V11ZjxmEAFaPi/Zss1xIZdEB5RD8GD00U0/iVXgqkF77RV7pdQ==, + } + engines: { node: ">=18.0.0" } + peerDependencies: + zod: ^3.18.0 zod@3.22.4: - resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==} + resolution: + { + integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==, + } zod@3.23.8: - resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} + resolution: + { + integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==, + } zwitch@2.0.4: - resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + resolution: + { + integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==, + } zx@7.2.3: - resolution: {integrity: sha512-QODu38nLlYXg/B/Gw7ZKiZrvPkEsjPN3LQ5JFXM7h0JvwhEdPNNl+4Ao1y4+o3CLNiDUNcwzQYZ4/Ko7kKzCMA==} - engines: {node: '>= 16.0.0'} + resolution: + { + integrity: sha512-QODu38nLlYXg/B/Gw7ZKiZrvPkEsjPN3LQ5JFXM7h0JvwhEdPNNl+4Ao1y4+o3CLNiDUNcwzQYZ4/Ko7kKzCMA==, + } + engines: { node: ">= 16.0.0" } hasBin: true snapshots: - 7zip-bin@5.2.0: {} - '@aashutoshrathi/word-wrap@1.2.6': {} + "@aashutoshrathi/word-wrap@1.2.6": {} - '@achrinza/node-ipc@9.2.9': + "@achrinza/node-ipc@9.2.9": dependencies: - '@node-ipc/js-queue': 2.0.3 + "@node-ipc/js-queue": 2.0.3 event-pubsub: 4.3.0 js-message: 1.0.7 - '@actions/cache@3.2.4': + "@actions/cache@3.2.4": dependencies: - '@actions/core': 1.10.1 - '@actions/exec': 1.1.1 - '@actions/glob': 0.1.2 - '@actions/http-client': 2.2.1 - '@actions/io': 1.1.3 - '@azure/abort-controller': 1.1.0 - '@azure/ms-rest-js': 2.7.0 - '@azure/storage-blob': 12.17.0 + "@actions/core": 1.10.1 + "@actions/exec": 1.1.1 + "@actions/glob": 0.1.2 + "@actions/http-client": 2.2.1 + "@actions/io": 1.1.3 + "@azure/abort-controller": 1.1.0 + "@azure/ms-rest-js": 2.7.0 + "@azure/storage-blob": 12.17.0 semver: 6.3.1 uuid: 3.4.0 transitivePeerDependencies: - encoding - '@actions/core@1.10.1': + "@actions/core@1.10.1": dependencies: - '@actions/http-client': 2.2.1 + "@actions/http-client": 2.2.1 uuid: 8.3.2 - '@actions/exec@1.1.1': + "@actions/exec@1.1.1": dependencies: - '@actions/io': 1.1.3 + "@actions/io": 1.1.3 - '@actions/github@6.0.0': + "@actions/github@6.0.0": dependencies: - '@actions/http-client': 2.2.1 - '@octokit/core': 5.1.0 - '@octokit/plugin-paginate-rest': 9.2.1(@octokit/core@5.1.0) - '@octokit/plugin-rest-endpoint-methods': 10.4.1(@octokit/core@5.1.0) + "@actions/http-client": 2.2.1 + "@octokit/core": 5.1.0 + "@octokit/plugin-paginate-rest": 9.2.1(@octokit/core@5.1.0) + "@octokit/plugin-rest-endpoint-methods": 10.4.1(@octokit/core@5.1.0) undici: 6.10.2 - '@actions/glob@0.1.2': + "@actions/glob@0.1.2": dependencies: - '@actions/core': 1.10.1 + "@actions/core": 1.10.1 minimatch: 3.1.2 - '@actions/http-client@2.2.1': + "@actions/http-client@2.2.1": dependencies: tunnel: 0.0.6 undici: 5.28.3 - '@actions/io@1.1.3': {} + "@actions/io@1.1.3": {} - '@adobe/css-tools@4.3.3': {} + "@adobe/css-tools@4.3.3": {} - '@adraffy/ens-normalize@1.10.1': {} + "@adraffy/ens-normalize@1.10.1": {} - '@agrozyme/types-tronweb@5.3.2': {} + "@agrozyme/types-tronweb@5.3.2": {} - '@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.5 - '@jridgewell/trace-mapping': 0.3.25 + "@jridgewell/gen-mapping": 0.3.5 + "@jridgewell/trace-mapping": 0.3.25 - '@apideck/better-ajv-errors@0.3.6(ajv@8.16.0)': + "@apideck/better-ajv-errors@0.3.6(ajv@8.16.0)": dependencies: ajv: 8.16.0 json-schema: 0.4.0 jsonpointer: 5.0.1 leven: 3.1.0 - '@aw-web-design/x-default-browser@1.4.126': + "@aw-web-design/x-default-browser@1.4.126": dependencies: default-browser-id: 3.0.0 - '@aws-crypto/crc32@3.0.0': - dependencies: - '@aws-crypto/util': 3.0.0 - '@aws-sdk/types': 3.535.0 - tslib: 2.6.2 - - '@aws-crypto/crc32@5.2.0': - dependencies: - '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.649.0 - tslib: 2.6.2 - - '@aws-crypto/crc32c@3.0.0': - dependencies: - '@aws-crypto/util': 3.0.0 - '@aws-sdk/types': 3.535.0 - tslib: 2.6.2 - - '@aws-crypto/crc32c@5.2.0': - dependencies: - '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.649.0 - tslib: 2.6.2 - - '@aws-crypto/ie11-detection@3.0.0': - dependencies: - tslib: 2.6.2 - - '@aws-crypto/sha1-browser@3.0.0': - dependencies: - '@aws-crypto/ie11-detection': 3.0.0 - '@aws-crypto/supports-web-crypto': 3.0.0 - '@aws-crypto/util': 3.0.0 - '@aws-sdk/types': 3.535.0 - '@aws-sdk/util-locate-window': 3.535.0 - '@aws-sdk/util-utf8-browser': 3.259.0 - tslib: 2.6.2 - - '@aws-crypto/sha1-browser@5.2.0': - dependencies: - '@aws-crypto/supports-web-crypto': 5.2.0 - '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.649.0 - '@aws-sdk/util-locate-window': 3.535.0 - '@smithy/util-utf8': 2.3.0 - tslib: 2.6.2 - - '@aws-crypto/sha256-browser@3.0.0': - dependencies: - '@aws-crypto/ie11-detection': 3.0.0 - '@aws-crypto/sha256-js': 3.0.0 - '@aws-crypto/supports-web-crypto': 3.0.0 - '@aws-crypto/util': 3.0.0 - '@aws-sdk/types': 3.535.0 - '@aws-sdk/util-locate-window': 3.535.0 - '@aws-sdk/util-utf8-browser': 3.259.0 - tslib: 2.6.2 - - '@aws-crypto/sha256-browser@5.2.0': - dependencies: - '@aws-crypto/sha256-js': 5.2.0 - '@aws-crypto/supports-web-crypto': 5.2.0 - '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.649.0 - '@aws-sdk/util-locate-window': 3.535.0 - '@smithy/util-utf8': 2.3.0 - tslib: 2.6.2 - - '@aws-crypto/sha256-js@3.0.0': - dependencies: - '@aws-crypto/util': 3.0.0 - '@aws-sdk/types': 3.535.0 - tslib: 2.6.2 - - '@aws-crypto/sha256-js@5.2.0': - dependencies: - '@aws-crypto/util': 5.2.0 - '@aws-sdk/types': 3.649.0 - tslib: 2.6.2 - - '@aws-crypto/supports-web-crypto@3.0.0': - dependencies: - tslib: 2.6.2 - - '@aws-crypto/supports-web-crypto@5.2.0': - dependencies: - tslib: 2.6.2 - - '@aws-crypto/util@3.0.0': - dependencies: - '@aws-sdk/types': 3.535.0 - '@aws-sdk/util-utf8-browser': 3.259.0 - tslib: 2.6.2 - - '@aws-crypto/util@5.2.0': - dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/util-utf8': 2.3.0 - tslib: 2.6.2 - - '@aws-sdk/client-s3@3.540.0': - dependencies: - '@aws-crypto/sha1-browser': 3.0.0 - '@aws-crypto/sha256-browser': 3.0.0 - '@aws-crypto/sha256-js': 3.0.0 - '@aws-sdk/client-sts': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - '@aws-sdk/core': 3.535.0 - '@aws-sdk/credential-provider-node': 3.540.0 - '@aws-sdk/middleware-bucket-endpoint': 3.535.0 - '@aws-sdk/middleware-expect-continue': 3.535.0 - '@aws-sdk/middleware-flexible-checksums': 3.535.0 - '@aws-sdk/middleware-host-header': 3.535.0 - '@aws-sdk/middleware-location-constraint': 3.535.0 - '@aws-sdk/middleware-logger': 3.535.0 - '@aws-sdk/middleware-recursion-detection': 3.535.0 - '@aws-sdk/middleware-sdk-s3': 3.535.0 - '@aws-sdk/middleware-signing': 3.535.0 - '@aws-sdk/middleware-ssec': 3.537.0 - '@aws-sdk/middleware-user-agent': 3.540.0 - '@aws-sdk/region-config-resolver': 3.535.0 - '@aws-sdk/signature-v4-multi-region': 3.535.0 - '@aws-sdk/types': 3.535.0 - '@aws-sdk/util-endpoints': 3.540.0 - '@aws-sdk/util-user-agent-browser': 3.535.0 - '@aws-sdk/util-user-agent-node': 3.535.0 - '@aws-sdk/xml-builder': 3.535.0 - '@smithy/config-resolver': 2.2.0 - '@smithy/core': 1.4.0 - '@smithy/eventstream-serde-browser': 2.2.0 - '@smithy/eventstream-serde-config-resolver': 2.2.0 - '@smithy/eventstream-serde-node': 2.2.0 - '@smithy/fetch-http-handler': 2.5.0 - '@smithy/hash-blob-browser': 2.2.0 - '@smithy/hash-node': 2.2.0 - '@smithy/hash-stream-node': 2.2.0 - '@smithy/invalid-dependency': 2.2.0 - '@smithy/md5-js': 2.2.0 - '@smithy/middleware-content-length': 2.2.0 - '@smithy/middleware-endpoint': 2.5.0 - '@smithy/middleware-retry': 2.2.0 - '@smithy/middleware-serde': 2.3.0 - '@smithy/middleware-stack': 2.2.0 - '@smithy/node-config-provider': 2.3.0 - '@smithy/node-http-handler': 2.5.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/smithy-client': 2.5.0 - '@smithy/types': 2.12.0 - '@smithy/url-parser': 2.2.0 - '@smithy/util-base64': 2.3.0 - '@smithy/util-body-length-browser': 2.2.0 - '@smithy/util-body-length-node': 2.3.0 - '@smithy/util-defaults-mode-browser': 2.2.0 - '@smithy/util-defaults-mode-node': 2.3.0 - '@smithy/util-endpoints': 1.2.0 - '@smithy/util-retry': 2.2.0 - '@smithy/util-stream': 2.2.0 - '@smithy/util-utf8': 2.3.0 - '@smithy/util-waiter': 2.2.0 - tslib: 2.6.2 - transitivePeerDependencies: - - aws-crt - - '@aws-sdk/client-s3@3.651.0': - dependencies: - '@aws-crypto/sha1-browser': 5.2.0 - '@aws-crypto/sha256-browser': 5.2.0 - '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sso-oidc': 3.650.0(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/client-sts': 3.650.0 - '@aws-sdk/core': 3.649.0 - '@aws-sdk/credential-provider-node': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/middleware-bucket-endpoint': 3.649.0 - '@aws-sdk/middleware-expect-continue': 3.649.0 - '@aws-sdk/middleware-flexible-checksums': 3.651.0 - '@aws-sdk/middleware-host-header': 3.649.0 - '@aws-sdk/middleware-location-constraint': 3.649.0 - '@aws-sdk/middleware-logger': 3.649.0 - '@aws-sdk/middleware-recursion-detection': 3.649.0 - '@aws-sdk/middleware-sdk-s3': 3.649.0 - '@aws-sdk/middleware-ssec': 3.649.0 - '@aws-sdk/middleware-user-agent': 3.649.0 - '@aws-sdk/region-config-resolver': 3.649.0 - '@aws-sdk/signature-v4-multi-region': 3.649.0 - '@aws-sdk/types': 3.649.0 - '@aws-sdk/util-endpoints': 3.649.0 - '@aws-sdk/util-user-agent-browser': 3.649.0 - '@aws-sdk/util-user-agent-node': 3.649.0 - '@aws-sdk/xml-builder': 3.649.0 - '@smithy/config-resolver': 3.0.6 - '@smithy/core': 2.4.1 - '@smithy/eventstream-serde-browser': 3.0.7 - '@smithy/eventstream-serde-config-resolver': 3.0.4 - '@smithy/eventstream-serde-node': 3.0.6 - '@smithy/fetch-http-handler': 3.2.5 - '@smithy/hash-blob-browser': 3.1.3 - '@smithy/hash-node': 3.0.4 - '@smithy/hash-stream-node': 3.1.3 - '@smithy/invalid-dependency': 3.0.4 - '@smithy/md5-js': 3.0.4 - '@smithy/middleware-content-length': 3.0.6 - '@smithy/middleware-endpoint': 3.1.1 - '@smithy/middleware-retry': 3.0.16 - '@smithy/middleware-serde': 3.0.4 - '@smithy/middleware-stack': 3.0.4 - '@smithy/node-config-provider': 3.1.5 - '@smithy/node-http-handler': 3.2.0 - '@smithy/protocol-http': 4.1.1 - '@smithy/smithy-client': 3.3.0 - '@smithy/types': 3.4.0 - '@smithy/url-parser': 3.0.4 - '@smithy/util-base64': 3.0.0 - '@smithy/util-body-length-browser': 3.0.0 - '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.16 - '@smithy/util-defaults-mode-node': 3.0.16 - '@smithy/util-endpoints': 2.1.0 - '@smithy/util-middleware': 3.0.4 - '@smithy/util-retry': 3.0.4 - '@smithy/util-stream': 3.1.4 - '@smithy/util-utf8': 3.0.0 - '@smithy/util-waiter': 3.1.3 - tslib: 2.6.2 - transitivePeerDependencies: - - aws-crt - - '@aws-sdk/client-sso-oidc@3.540.0(@aws-sdk/credential-provider-node@3.540.0)': - dependencies: - '@aws-crypto/sha256-browser': 3.0.0 - '@aws-crypto/sha256-js': 3.0.0 - '@aws-sdk/client-sts': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - '@aws-sdk/core': 3.535.0 - '@aws-sdk/credential-provider-node': 3.540.0 - '@aws-sdk/middleware-host-header': 3.535.0 - '@aws-sdk/middleware-logger': 3.535.0 - '@aws-sdk/middleware-recursion-detection': 3.535.0 - '@aws-sdk/middleware-user-agent': 3.540.0 - '@aws-sdk/region-config-resolver': 3.535.0 - '@aws-sdk/types': 3.535.0 - '@aws-sdk/util-endpoints': 3.540.0 - '@aws-sdk/util-user-agent-browser': 3.535.0 - '@aws-sdk/util-user-agent-node': 3.535.0 - '@smithy/config-resolver': 2.2.0 - '@smithy/core': 1.4.0 - '@smithy/fetch-http-handler': 2.5.0 - '@smithy/hash-node': 2.2.0 - '@smithy/invalid-dependency': 2.2.0 - '@smithy/middleware-content-length': 2.2.0 - '@smithy/middleware-endpoint': 2.5.0 - '@smithy/middleware-retry': 2.2.0 - '@smithy/middleware-serde': 2.3.0 - '@smithy/middleware-stack': 2.2.0 - '@smithy/node-config-provider': 2.3.0 - '@smithy/node-http-handler': 2.5.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/smithy-client': 2.5.0 - '@smithy/types': 2.12.0 - '@smithy/url-parser': 2.2.0 - '@smithy/util-base64': 2.3.0 - '@smithy/util-body-length-browser': 2.2.0 - '@smithy/util-body-length-node': 2.3.0 - '@smithy/util-defaults-mode-browser': 2.2.0 - '@smithy/util-defaults-mode-node': 2.3.0 - '@smithy/util-endpoints': 1.2.0 - '@smithy/util-middleware': 2.2.0 - '@smithy/util-retry': 2.2.0 - '@smithy/util-utf8': 2.3.0 - tslib: 2.6.2 - transitivePeerDependencies: - - aws-crt - - '@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)': - dependencies: - '@aws-crypto/sha256-browser': 5.2.0 - '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sts': 3.650.0 - '@aws-sdk/core': 3.649.0 - '@aws-sdk/credential-provider-node': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/middleware-host-header': 3.649.0 - '@aws-sdk/middleware-logger': 3.649.0 - '@aws-sdk/middleware-recursion-detection': 3.649.0 - '@aws-sdk/middleware-user-agent': 3.649.0 - '@aws-sdk/region-config-resolver': 3.649.0 - '@aws-sdk/types': 3.649.0 - '@aws-sdk/util-endpoints': 3.649.0 - '@aws-sdk/util-user-agent-browser': 3.649.0 - '@aws-sdk/util-user-agent-node': 3.649.0 - '@smithy/config-resolver': 3.0.6 - '@smithy/core': 2.4.1 - '@smithy/fetch-http-handler': 3.2.5 - '@smithy/hash-node': 3.0.4 - '@smithy/invalid-dependency': 3.0.4 - '@smithy/middleware-content-length': 3.0.6 - '@smithy/middleware-endpoint': 3.1.1 - '@smithy/middleware-retry': 3.0.16 - '@smithy/middleware-serde': 3.0.4 - '@smithy/middleware-stack': 3.0.4 - '@smithy/node-config-provider': 3.1.5 - '@smithy/node-http-handler': 3.2.0 - '@smithy/protocol-http': 4.1.1 - '@smithy/smithy-client': 3.3.0 - '@smithy/types': 3.4.0 - '@smithy/url-parser': 3.0.4 - '@smithy/util-base64': 3.0.0 - '@smithy/util-body-length-browser': 3.0.0 - '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.16 - '@smithy/util-defaults-mode-node': 3.0.16 - '@smithy/util-endpoints': 2.1.0 - '@smithy/util-middleware': 3.0.4 - '@smithy/util-retry': 3.0.4 - '@smithy/util-utf8': 3.0.0 - tslib: 2.6.2 - transitivePeerDependencies: - - aws-crt - - '@aws-sdk/client-sso@3.540.0': - dependencies: - '@aws-crypto/sha256-browser': 3.0.0 - '@aws-crypto/sha256-js': 3.0.0 - '@aws-sdk/core': 3.535.0 - '@aws-sdk/middleware-host-header': 3.535.0 - '@aws-sdk/middleware-logger': 3.535.0 - '@aws-sdk/middleware-recursion-detection': 3.535.0 - '@aws-sdk/middleware-user-agent': 3.540.0 - '@aws-sdk/region-config-resolver': 3.535.0 - '@aws-sdk/types': 3.535.0 - '@aws-sdk/util-endpoints': 3.540.0 - '@aws-sdk/util-user-agent-browser': 3.535.0 - '@aws-sdk/util-user-agent-node': 3.535.0 - '@smithy/config-resolver': 2.2.0 - '@smithy/core': 1.4.0 - '@smithy/fetch-http-handler': 2.5.0 - '@smithy/hash-node': 2.2.0 - '@smithy/invalid-dependency': 2.2.0 - '@smithy/middleware-content-length': 2.2.0 - '@smithy/middleware-endpoint': 2.5.0 - '@smithy/middleware-retry': 2.2.0 - '@smithy/middleware-serde': 2.3.0 - '@smithy/middleware-stack': 2.2.0 - '@smithy/node-config-provider': 2.3.0 - '@smithy/node-http-handler': 2.5.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/smithy-client': 2.5.0 - '@smithy/types': 2.12.0 - '@smithy/url-parser': 2.2.0 - '@smithy/util-base64': 2.3.0 - '@smithy/util-body-length-browser': 2.2.0 - '@smithy/util-body-length-node': 2.3.0 - '@smithy/util-defaults-mode-browser': 2.2.0 - '@smithy/util-defaults-mode-node': 2.3.0 - '@smithy/util-endpoints': 1.2.0 - '@smithy/util-middleware': 2.2.0 - '@smithy/util-retry': 2.2.0 - '@smithy/util-utf8': 2.3.0 - tslib: 2.6.2 - transitivePeerDependencies: - - aws-crt - - '@aws-sdk/client-sso@3.650.0': - dependencies: - '@aws-crypto/sha256-browser': 5.2.0 - '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/core': 3.649.0 - '@aws-sdk/middleware-host-header': 3.649.0 - '@aws-sdk/middleware-logger': 3.649.0 - '@aws-sdk/middleware-recursion-detection': 3.649.0 - '@aws-sdk/middleware-user-agent': 3.649.0 - '@aws-sdk/region-config-resolver': 3.649.0 - '@aws-sdk/types': 3.649.0 - '@aws-sdk/util-endpoints': 3.649.0 - '@aws-sdk/util-user-agent-browser': 3.649.0 - '@aws-sdk/util-user-agent-node': 3.649.0 - '@smithy/config-resolver': 3.0.6 - '@smithy/core': 2.4.1 - '@smithy/fetch-http-handler': 3.2.5 - '@smithy/hash-node': 3.0.4 - '@smithy/invalid-dependency': 3.0.4 - '@smithy/middleware-content-length': 3.0.6 - '@smithy/middleware-endpoint': 3.1.1 - '@smithy/middleware-retry': 3.0.16 - '@smithy/middleware-serde': 3.0.4 - '@smithy/middleware-stack': 3.0.4 - '@smithy/node-config-provider': 3.1.5 - '@smithy/node-http-handler': 3.2.0 - '@smithy/protocol-http': 4.1.1 - '@smithy/smithy-client': 3.3.0 - '@smithy/types': 3.4.0 - '@smithy/url-parser': 3.0.4 - '@smithy/util-base64': 3.0.0 - '@smithy/util-body-length-browser': 3.0.0 - '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.16 - '@smithy/util-defaults-mode-node': 3.0.16 - '@smithy/util-endpoints': 2.1.0 - '@smithy/util-middleware': 3.0.4 - '@smithy/util-retry': 3.0.4 - '@smithy/util-utf8': 3.0.0 - tslib: 2.6.2 - transitivePeerDependencies: - - aws-crt - - '@aws-sdk/client-sts@3.540.0(@aws-sdk/credential-provider-node@3.540.0)': - dependencies: - '@aws-crypto/sha256-browser': 3.0.0 - '@aws-crypto/sha256-js': 3.0.0 - '@aws-sdk/core': 3.535.0 - '@aws-sdk/credential-provider-node': 3.540.0 - '@aws-sdk/middleware-host-header': 3.535.0 - '@aws-sdk/middleware-logger': 3.535.0 - '@aws-sdk/middleware-recursion-detection': 3.535.0 - '@aws-sdk/middleware-user-agent': 3.540.0 - '@aws-sdk/region-config-resolver': 3.535.0 - '@aws-sdk/types': 3.535.0 - '@aws-sdk/util-endpoints': 3.540.0 - '@aws-sdk/util-user-agent-browser': 3.535.0 - '@aws-sdk/util-user-agent-node': 3.535.0 - '@smithy/config-resolver': 2.2.0 - '@smithy/core': 1.4.0 - '@smithy/fetch-http-handler': 2.5.0 - '@smithy/hash-node': 2.2.0 - '@smithy/invalid-dependency': 2.2.0 - '@smithy/middleware-content-length': 2.2.0 - '@smithy/middleware-endpoint': 2.5.0 - '@smithy/middleware-retry': 2.2.0 - '@smithy/middleware-serde': 2.3.0 - '@smithy/middleware-stack': 2.2.0 - '@smithy/node-config-provider': 2.3.0 - '@smithy/node-http-handler': 2.5.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/smithy-client': 2.5.0 - '@smithy/types': 2.12.0 - '@smithy/url-parser': 2.2.0 - '@smithy/util-base64': 2.3.0 - '@smithy/util-body-length-browser': 2.2.0 - '@smithy/util-body-length-node': 2.3.0 - '@smithy/util-defaults-mode-browser': 2.2.0 - '@smithy/util-defaults-mode-node': 2.3.0 - '@smithy/util-endpoints': 1.2.0 - '@smithy/util-middleware': 2.2.0 - '@smithy/util-retry': 2.2.0 - '@smithy/util-utf8': 2.3.0 - tslib: 2.6.2 - transitivePeerDependencies: - - aws-crt - - '@aws-sdk/client-sts@3.650.0': - dependencies: - '@aws-crypto/sha256-browser': 5.2.0 - '@aws-crypto/sha256-js': 5.2.0 - '@aws-sdk/client-sso-oidc': 3.650.0(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/core': 3.649.0 - '@aws-sdk/credential-provider-node': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/middleware-host-header': 3.649.0 - '@aws-sdk/middleware-logger': 3.649.0 - '@aws-sdk/middleware-recursion-detection': 3.649.0 - '@aws-sdk/middleware-user-agent': 3.649.0 - '@aws-sdk/region-config-resolver': 3.649.0 - '@aws-sdk/types': 3.649.0 - '@aws-sdk/util-endpoints': 3.649.0 - '@aws-sdk/util-user-agent-browser': 3.649.0 - '@aws-sdk/util-user-agent-node': 3.649.0 - '@smithy/config-resolver': 3.0.6 - '@smithy/core': 2.4.1 - '@smithy/fetch-http-handler': 3.2.5 - '@smithy/hash-node': 3.0.4 - '@smithy/invalid-dependency': 3.0.4 - '@smithy/middleware-content-length': 3.0.6 - '@smithy/middleware-endpoint': 3.1.1 - '@smithy/middleware-retry': 3.0.16 - '@smithy/middleware-serde': 3.0.4 - '@smithy/middleware-stack': 3.0.4 - '@smithy/node-config-provider': 3.1.5 - '@smithy/node-http-handler': 3.2.0 - '@smithy/protocol-http': 4.1.1 - '@smithy/smithy-client': 3.3.0 - '@smithy/types': 3.4.0 - '@smithy/url-parser': 3.0.4 - '@smithy/util-base64': 3.0.0 - '@smithy/util-body-length-browser': 3.0.0 - '@smithy/util-body-length-node': 3.0.0 - '@smithy/util-defaults-mode-browser': 3.0.16 - '@smithy/util-defaults-mode-node': 3.0.16 - '@smithy/util-endpoints': 2.1.0 - '@smithy/util-middleware': 3.0.4 - '@smithy/util-retry': 3.0.4 - '@smithy/util-utf8': 3.0.0 - tslib: 2.6.2 - transitivePeerDependencies: - - aws-crt - - '@aws-sdk/core@3.535.0': - dependencies: - '@smithy/core': 1.4.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/signature-v4': 2.2.0 - '@smithy/smithy-client': 2.5.0 - '@smithy/types': 2.12.0 - fast-xml-parser: 4.2.5 - tslib: 2.6.2 - - '@aws-sdk/core@3.649.0': - dependencies: - '@smithy/core': 2.4.1 - '@smithy/node-config-provider': 3.1.5 - '@smithy/property-provider': 3.1.4 - '@smithy/protocol-http': 4.1.1 - '@smithy/signature-v4': 4.1.1 - '@smithy/smithy-client': 3.3.0 - '@smithy/types': 3.4.0 - '@smithy/util-middleware': 3.0.4 - fast-xml-parser: 4.4.1 - tslib: 2.6.2 - - '@aws-sdk/credential-provider-env@3.535.0': - dependencies: - '@aws-sdk/types': 3.535.0 - '@smithy/property-provider': 2.2.0 - '@smithy/types': 2.12.0 - tslib: 2.6.2 - - '@aws-sdk/credential-provider-env@3.649.0': + "@aws-crypto/crc32@3.0.0": dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/property-provider': 3.1.4 - '@smithy/types': 3.4.0 + "@aws-crypto/util": 3.0.0 + "@aws-sdk/types": 3.535.0 tslib: 2.6.2 - '@aws-sdk/credential-provider-http@3.535.0': + "@aws-crypto/crc32@5.2.0": dependencies: - '@aws-sdk/types': 3.535.0 - '@smithy/fetch-http-handler': 2.5.0 - '@smithy/node-http-handler': 2.5.0 - '@smithy/property-provider': 2.2.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/smithy-client': 2.5.0 - '@smithy/types': 2.12.0 - '@smithy/util-stream': 2.2.0 - tslib: 2.6.2 - - '@aws-sdk/credential-provider-http@3.649.0': - dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/fetch-http-handler': 3.2.5 - '@smithy/node-http-handler': 3.2.0 - '@smithy/property-provider': 3.1.4 - '@smithy/protocol-http': 4.1.1 - '@smithy/smithy-client': 3.3.0 - '@smithy/types': 3.4.0 - '@smithy/util-stream': 3.1.4 - tslib: 2.6.2 - - '@aws-sdk/credential-provider-ini@3.540.0(@aws-sdk/credential-provider-node@3.540.0)': - dependencies: - '@aws-sdk/client-sts': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - '@aws-sdk/credential-provider-env': 3.535.0 - '@aws-sdk/credential-provider-process': 3.535.0 - '@aws-sdk/credential-provider-sso': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - '@aws-sdk/credential-provider-web-identity': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - '@aws-sdk/types': 3.535.0 - '@smithy/credential-provider-imds': 2.3.0 - '@smithy/property-provider': 2.2.0 - '@smithy/shared-ini-file-loader': 2.4.0 - '@smithy/types': 2.12.0 - tslib: 2.6.2 - transitivePeerDependencies: - - '@aws-sdk/credential-provider-node' - - aws-crt - - '@aws-sdk/credential-provider-ini@3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0)': - dependencies: - '@aws-sdk/client-sts': 3.650.0 - '@aws-sdk/credential-provider-env': 3.649.0 - '@aws-sdk/credential-provider-http': 3.649.0 - '@aws-sdk/credential-provider-process': 3.649.0 - '@aws-sdk/credential-provider-sso': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)) - '@aws-sdk/credential-provider-web-identity': 3.649.0(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/types': 3.649.0 - '@smithy/credential-provider-imds': 3.2.1 - '@smithy/property-provider': 3.1.4 - '@smithy/shared-ini-file-loader': 3.1.5 - '@smithy/types': 3.4.0 - tslib: 2.6.2 - transitivePeerDependencies: - - '@aws-sdk/client-sso-oidc' - - aws-crt - - '@aws-sdk/credential-provider-node@3.540.0': - dependencies: - '@aws-sdk/credential-provider-env': 3.535.0 - '@aws-sdk/credential-provider-http': 3.535.0 - '@aws-sdk/credential-provider-ini': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - '@aws-sdk/credential-provider-process': 3.535.0 - '@aws-sdk/credential-provider-sso': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - '@aws-sdk/credential-provider-web-identity': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - '@aws-sdk/types': 3.535.0 - '@smithy/credential-provider-imds': 2.3.0 - '@smithy/property-provider': 2.2.0 - '@smithy/shared-ini-file-loader': 2.4.0 - '@smithy/types': 2.12.0 - tslib: 2.6.2 - transitivePeerDependencies: - - aws-crt - - '@aws-sdk/credential-provider-node@3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0)': - dependencies: - '@aws-sdk/credential-provider-env': 3.649.0 - '@aws-sdk/credential-provider-http': 3.649.0 - '@aws-sdk/credential-provider-ini': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/credential-provider-process': 3.649.0 - '@aws-sdk/credential-provider-sso': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)) - '@aws-sdk/credential-provider-web-identity': 3.649.0(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/types': 3.649.0 - '@smithy/credential-provider-imds': 3.2.1 - '@smithy/property-provider': 3.1.4 - '@smithy/shared-ini-file-loader': 3.1.5 - '@smithy/types': 3.4.0 - tslib: 2.6.2 - transitivePeerDependencies: - - '@aws-sdk/client-sso-oidc' - - '@aws-sdk/client-sts' - - aws-crt - - '@aws-sdk/credential-provider-process@3.535.0': - dependencies: - '@aws-sdk/types': 3.535.0 - '@smithy/property-provider': 2.2.0 - '@smithy/shared-ini-file-loader': 2.4.0 - '@smithy/types': 2.12.0 - tslib: 2.6.2 - - '@aws-sdk/credential-provider-process@3.649.0': - dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/property-provider': 3.1.4 - '@smithy/shared-ini-file-loader': 3.1.5 - '@smithy/types': 3.4.0 - tslib: 2.6.2 - - '@aws-sdk/credential-provider-sso@3.540.0(@aws-sdk/credential-provider-node@3.540.0)': - dependencies: - '@aws-sdk/client-sso': 3.540.0 - '@aws-sdk/token-providers': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - '@aws-sdk/types': 3.535.0 - '@smithy/property-provider': 2.2.0 - '@smithy/shared-ini-file-loader': 2.4.0 - '@smithy/types': 2.12.0 - tslib: 2.6.2 - transitivePeerDependencies: - - '@aws-sdk/credential-provider-node' - - aws-crt - - '@aws-sdk/credential-provider-sso@3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))': - dependencies: - '@aws-sdk/client-sso': 3.650.0 - '@aws-sdk/token-providers': 3.649.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)) - '@aws-sdk/types': 3.649.0 - '@smithy/property-provider': 3.1.4 - '@smithy/shared-ini-file-loader': 3.1.5 - '@smithy/types': 3.4.0 - tslib: 2.6.2 - transitivePeerDependencies: - - '@aws-sdk/client-sso-oidc' - - aws-crt - - '@aws-sdk/credential-provider-web-identity@3.540.0(@aws-sdk/credential-provider-node@3.540.0)': - dependencies: - '@aws-sdk/client-sts': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - '@aws-sdk/types': 3.535.0 - '@smithy/property-provider': 2.2.0 - '@smithy/types': 2.12.0 - tslib: 2.6.2 - transitivePeerDependencies: - - '@aws-sdk/credential-provider-node' - - aws-crt - - '@aws-sdk/credential-provider-web-identity@3.649.0(@aws-sdk/client-sts@3.650.0)': - dependencies: - '@aws-sdk/client-sts': 3.650.0 - '@aws-sdk/types': 3.649.0 - '@smithy/property-provider': 3.1.4 - '@smithy/types': 3.4.0 - tslib: 2.6.2 - - '@aws-sdk/lib-storage@3.651.0(@aws-sdk/client-s3@3.651.0)': - dependencies: - '@aws-sdk/client-s3': 3.651.0 - '@smithy/abort-controller': 3.1.2 - '@smithy/middleware-endpoint': 3.1.1 - '@smithy/smithy-client': 3.3.0 - buffer: 5.6.0 - events: 3.3.0 - stream-browserify: 3.0.0 - tslib: 2.6.2 - - '@aws-sdk/middleware-bucket-endpoint@3.535.0': - dependencies: - '@aws-sdk/types': 3.535.0 - '@aws-sdk/util-arn-parser': 3.535.0 - '@smithy/node-config-provider': 2.3.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/types': 2.12.0 - '@smithy/util-config-provider': 2.3.0 - tslib: 2.6.2 - - '@aws-sdk/middleware-bucket-endpoint@3.649.0': - dependencies: - '@aws-sdk/types': 3.649.0 - '@aws-sdk/util-arn-parser': 3.568.0 - '@smithy/node-config-provider': 3.1.5 - '@smithy/protocol-http': 4.1.1 - '@smithy/types': 3.4.0 - '@smithy/util-config-provider': 3.0.0 - tslib: 2.6.2 - - '@aws-sdk/middleware-expect-continue@3.535.0': - dependencies: - '@aws-sdk/types': 3.535.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/types': 2.12.0 - tslib: 2.6.2 - - '@aws-sdk/middleware-expect-continue@3.649.0': - dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/protocol-http': 4.1.1 - '@smithy/types': 3.4.0 - tslib: 2.6.2 - - '@aws-sdk/middleware-flexible-checksums@3.535.0': - dependencies: - '@aws-crypto/crc32': 3.0.0 - '@aws-crypto/crc32c': 3.0.0 - '@aws-sdk/types': 3.535.0 - '@smithy/is-array-buffer': 2.2.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/types': 2.12.0 - '@smithy/util-utf8': 2.3.0 - tslib: 2.6.2 - - '@aws-sdk/middleware-flexible-checksums@3.651.0': - dependencies: - '@aws-crypto/crc32': 5.2.0 - '@aws-crypto/crc32c': 5.2.0 - '@aws-sdk/types': 3.649.0 - '@smithy/is-array-buffer': 3.0.0 - '@smithy/node-config-provider': 3.1.5 - '@smithy/protocol-http': 4.1.1 - '@smithy/types': 3.4.0 - '@smithy/util-utf8': 3.0.0 - tslib: 2.6.2 - - '@aws-sdk/middleware-host-header@3.535.0': - dependencies: - '@aws-sdk/types': 3.535.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/types': 2.12.0 - tslib: 2.6.2 - - '@aws-sdk/middleware-host-header@3.649.0': - dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/protocol-http': 4.1.1 - '@smithy/types': 3.4.0 - tslib: 2.6.2 - - '@aws-sdk/middleware-location-constraint@3.535.0': - dependencies: - '@aws-sdk/types': 3.535.0 - '@smithy/types': 2.12.0 - tslib: 2.6.2 - - '@aws-sdk/middleware-location-constraint@3.649.0': - dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/types': 3.4.0 - tslib: 2.6.2 - - '@aws-sdk/middleware-logger@3.535.0': - dependencies: - '@aws-sdk/types': 3.535.0 - '@smithy/types': 2.12.0 - tslib: 2.6.2 - - '@aws-sdk/middleware-logger@3.649.0': - dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/types': 3.4.0 - tslib: 2.6.2 - - '@aws-sdk/middleware-recursion-detection@3.535.0': - dependencies: - '@aws-sdk/types': 3.535.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/types': 2.12.0 - tslib: 2.6.2 - - '@aws-sdk/middleware-recursion-detection@3.649.0': - dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/protocol-http': 4.1.1 - '@smithy/types': 3.4.0 - tslib: 2.6.2 - - '@aws-sdk/middleware-sdk-s3@3.535.0': - dependencies: - '@aws-sdk/types': 3.535.0 - '@aws-sdk/util-arn-parser': 3.535.0 - '@smithy/node-config-provider': 2.3.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/signature-v4': 2.2.0 - '@smithy/smithy-client': 2.5.0 - '@smithy/types': 2.12.0 - '@smithy/util-config-provider': 2.3.0 - tslib: 2.6.2 - - '@aws-sdk/middleware-sdk-s3@3.649.0': - dependencies: - '@aws-sdk/core': 3.649.0 - '@aws-sdk/types': 3.649.0 - '@aws-sdk/util-arn-parser': 3.568.0 - '@smithy/core': 2.4.1 - '@smithy/node-config-provider': 3.1.5 - '@smithy/protocol-http': 4.1.1 - '@smithy/signature-v4': 4.1.1 - '@smithy/smithy-client': 3.3.0 - '@smithy/types': 3.4.0 - '@smithy/util-config-provider': 3.0.0 - '@smithy/util-middleware': 3.0.4 - '@smithy/util-stream': 3.1.4 - '@smithy/util-utf8': 3.0.0 + "@aws-crypto/util": 5.2.0 + "@aws-sdk/types": 3.649.0 tslib: 2.6.2 - '@aws-sdk/middleware-signing@3.535.0': + "@aws-crypto/crc32c@3.0.0": dependencies: - '@aws-sdk/types': 3.535.0 - '@smithy/property-provider': 2.2.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/signature-v4': 2.2.0 - '@smithy/types': 2.12.0 - '@smithy/util-middleware': 2.2.0 + "@aws-crypto/util": 3.0.0 + "@aws-sdk/types": 3.535.0 tslib: 2.6.2 - '@aws-sdk/middleware-ssec@3.537.0': + "@aws-crypto/crc32c@5.2.0": dependencies: - '@aws-sdk/types': 3.535.0 - '@smithy/types': 2.12.0 + "@aws-crypto/util": 5.2.0 + "@aws-sdk/types": 3.649.0 tslib: 2.6.2 - '@aws-sdk/middleware-ssec@3.649.0': + "@aws-crypto/ie11-detection@3.0.0": dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/types': 3.4.0 tslib: 2.6.2 - '@aws-sdk/middleware-user-agent@3.540.0': + "@aws-crypto/sha1-browser@3.0.0": dependencies: - '@aws-sdk/types': 3.535.0 - '@aws-sdk/util-endpoints': 3.540.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/types': 2.12.0 + "@aws-crypto/ie11-detection": 3.0.0 + "@aws-crypto/supports-web-crypto": 3.0.0 + "@aws-crypto/util": 3.0.0 + "@aws-sdk/types": 3.535.0 + "@aws-sdk/util-locate-window": 3.535.0 + "@aws-sdk/util-utf8-browser": 3.259.0 tslib: 2.6.2 - '@aws-sdk/middleware-user-agent@3.649.0': + "@aws-crypto/sha1-browser@5.2.0": dependencies: - '@aws-sdk/types': 3.649.0 - '@aws-sdk/util-endpoints': 3.649.0 - '@smithy/protocol-http': 4.1.1 - '@smithy/types': 3.4.0 + "@aws-crypto/supports-web-crypto": 5.2.0 + "@aws-crypto/util": 5.2.0 + "@aws-sdk/types": 3.649.0 + "@aws-sdk/util-locate-window": 3.535.0 + "@smithy/util-utf8": 2.3.0 tslib: 2.6.2 - '@aws-sdk/region-config-resolver@3.535.0': + "@aws-crypto/sha256-browser@3.0.0": dependencies: - '@aws-sdk/types': 3.535.0 - '@smithy/node-config-provider': 2.3.0 - '@smithy/types': 2.12.0 - '@smithy/util-config-provider': 2.3.0 - '@smithy/util-middleware': 2.2.0 + "@aws-crypto/ie11-detection": 3.0.0 + "@aws-crypto/sha256-js": 3.0.0 + "@aws-crypto/supports-web-crypto": 3.0.0 + "@aws-crypto/util": 3.0.0 + "@aws-sdk/types": 3.535.0 + "@aws-sdk/util-locate-window": 3.535.0 + "@aws-sdk/util-utf8-browser": 3.259.0 tslib: 2.6.2 - '@aws-sdk/region-config-resolver@3.649.0': + "@aws-crypto/sha256-browser@5.2.0": dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/node-config-provider': 3.1.5 - '@smithy/types': 3.4.0 - '@smithy/util-config-provider': 3.0.0 - '@smithy/util-middleware': 3.0.4 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-crypto/supports-web-crypto": 5.2.0 + "@aws-crypto/util": 5.2.0 + "@aws-sdk/types": 3.649.0 + "@aws-sdk/util-locate-window": 3.535.0 + "@smithy/util-utf8": 2.3.0 tslib: 2.6.2 - '@aws-sdk/signature-v4-multi-region@3.535.0': + "@aws-crypto/sha256-js@3.0.0": dependencies: - '@aws-sdk/middleware-sdk-s3': 3.535.0 - '@aws-sdk/types': 3.535.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/signature-v4': 2.2.0 - '@smithy/types': 2.12.0 + "@aws-crypto/util": 3.0.0 + "@aws-sdk/types": 3.535.0 tslib: 2.6.2 - '@aws-sdk/signature-v4-multi-region@3.649.0': + "@aws-crypto/sha256-js@5.2.0": dependencies: - '@aws-sdk/middleware-sdk-s3': 3.649.0 - '@aws-sdk/types': 3.649.0 - '@smithy/protocol-http': 4.1.1 - '@smithy/signature-v4': 4.1.1 - '@smithy/types': 3.4.0 + "@aws-crypto/util": 5.2.0 + "@aws-sdk/types": 3.649.0 tslib: 2.6.2 - '@aws-sdk/token-providers@3.540.0(@aws-sdk/credential-provider-node@3.540.0)': + "@aws-crypto/supports-web-crypto@3.0.0": dependencies: - '@aws-sdk/client-sso-oidc': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - '@aws-sdk/types': 3.535.0 - '@smithy/property-provider': 2.2.0 - '@smithy/shared-ini-file-loader': 2.4.0 - '@smithy/types': 2.12.0 tslib: 2.6.2 - transitivePeerDependencies: - - '@aws-sdk/credential-provider-node' - - aws-crt - '@aws-sdk/token-providers@3.649.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))': + "@aws-crypto/supports-web-crypto@5.2.0": dependencies: - '@aws-sdk/client-sso-oidc': 3.650.0(@aws-sdk/client-sts@3.650.0) - '@aws-sdk/types': 3.649.0 - '@smithy/property-provider': 3.1.4 - '@smithy/shared-ini-file-loader': 3.1.5 - '@smithy/types': 3.4.0 tslib: 2.6.2 - '@aws-sdk/types@3.535.0': + "@aws-crypto/util@3.0.0": dependencies: - '@smithy/types': 2.12.0 + "@aws-sdk/types": 3.535.0 + "@aws-sdk/util-utf8-browser": 3.259.0 tslib: 2.6.2 - '@aws-sdk/types@3.649.0': + "@aws-crypto/util@5.2.0": dependencies: - '@smithy/types': 3.4.0 + "@aws-sdk/types": 3.649.0 + "@smithy/util-utf8": 2.3.0 tslib: 2.6.2 - '@aws-sdk/util-arn-parser@3.535.0': - dependencies: + "@aws-sdk/client-s3@3.540.0": + dependencies: + "@aws-crypto/sha1-browser": 3.0.0 + "@aws-crypto/sha256-browser": 3.0.0 + "@aws-crypto/sha256-js": 3.0.0 + "@aws-sdk/client-sts": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + "@aws-sdk/core": 3.535.0 + "@aws-sdk/credential-provider-node": 3.540.0 + "@aws-sdk/middleware-bucket-endpoint": 3.535.0 + "@aws-sdk/middleware-expect-continue": 3.535.0 + "@aws-sdk/middleware-flexible-checksums": 3.535.0 + "@aws-sdk/middleware-host-header": 3.535.0 + "@aws-sdk/middleware-location-constraint": 3.535.0 + "@aws-sdk/middleware-logger": 3.535.0 + "@aws-sdk/middleware-recursion-detection": 3.535.0 + "@aws-sdk/middleware-sdk-s3": 3.535.0 + "@aws-sdk/middleware-signing": 3.535.0 + "@aws-sdk/middleware-ssec": 3.537.0 + "@aws-sdk/middleware-user-agent": 3.540.0 + "@aws-sdk/region-config-resolver": 3.535.0 + "@aws-sdk/signature-v4-multi-region": 3.535.0 + "@aws-sdk/types": 3.535.0 + "@aws-sdk/util-endpoints": 3.540.0 + "@aws-sdk/util-user-agent-browser": 3.535.0 + "@aws-sdk/util-user-agent-node": 3.535.0 + "@aws-sdk/xml-builder": 3.535.0 + "@smithy/config-resolver": 2.2.0 + "@smithy/core": 1.4.0 + "@smithy/eventstream-serde-browser": 2.2.0 + "@smithy/eventstream-serde-config-resolver": 2.2.0 + "@smithy/eventstream-serde-node": 2.2.0 + "@smithy/fetch-http-handler": 2.5.0 + "@smithy/hash-blob-browser": 2.2.0 + "@smithy/hash-node": 2.2.0 + "@smithy/hash-stream-node": 2.2.0 + "@smithy/invalid-dependency": 2.2.0 + "@smithy/md5-js": 2.2.0 + "@smithy/middleware-content-length": 2.2.0 + "@smithy/middleware-endpoint": 2.5.0 + "@smithy/middleware-retry": 2.2.0 + "@smithy/middleware-serde": 2.3.0 + "@smithy/middleware-stack": 2.2.0 + "@smithy/node-config-provider": 2.3.0 + "@smithy/node-http-handler": 2.5.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/smithy-client": 2.5.0 + "@smithy/types": 2.12.0 + "@smithy/url-parser": 2.2.0 + "@smithy/util-base64": 2.3.0 + "@smithy/util-body-length-browser": 2.2.0 + "@smithy/util-body-length-node": 2.3.0 + "@smithy/util-defaults-mode-browser": 2.2.0 + "@smithy/util-defaults-mode-node": 2.3.0 + "@smithy/util-endpoints": 1.2.0 + "@smithy/util-retry": 2.2.0 + "@smithy/util-stream": 2.2.0 + "@smithy/util-utf8": 2.3.0 + "@smithy/util-waiter": 2.2.0 tslib: 2.6.2 + transitivePeerDependencies: + - aws-crt - '@aws-sdk/util-arn-parser@3.568.0': - dependencies: + "@aws-sdk/client-s3@3.651.0": + dependencies: + "@aws-crypto/sha1-browser": 5.2.0 + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/client-sso-oidc": 3.650.0(@aws-sdk/client-sts@3.650.0) + "@aws-sdk/client-sts": 3.650.0 + "@aws-sdk/core": 3.649.0 + "@aws-sdk/credential-provider-node": 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) + "@aws-sdk/middleware-bucket-endpoint": 3.649.0 + "@aws-sdk/middleware-expect-continue": 3.649.0 + "@aws-sdk/middleware-flexible-checksums": 3.651.0 + "@aws-sdk/middleware-host-header": 3.649.0 + "@aws-sdk/middleware-location-constraint": 3.649.0 + "@aws-sdk/middleware-logger": 3.649.0 + "@aws-sdk/middleware-recursion-detection": 3.649.0 + "@aws-sdk/middleware-sdk-s3": 3.649.0 + "@aws-sdk/middleware-ssec": 3.649.0 + "@aws-sdk/middleware-user-agent": 3.649.0 + "@aws-sdk/region-config-resolver": 3.649.0 + "@aws-sdk/signature-v4-multi-region": 3.649.0 + "@aws-sdk/types": 3.649.0 + "@aws-sdk/util-endpoints": 3.649.0 + "@aws-sdk/util-user-agent-browser": 3.649.0 + "@aws-sdk/util-user-agent-node": 3.649.0 + "@aws-sdk/xml-builder": 3.649.0 + "@smithy/config-resolver": 3.0.6 + "@smithy/core": 2.4.1 + "@smithy/eventstream-serde-browser": 3.0.7 + "@smithy/eventstream-serde-config-resolver": 3.0.4 + "@smithy/eventstream-serde-node": 3.0.6 + "@smithy/fetch-http-handler": 3.2.5 + "@smithy/hash-blob-browser": 3.1.3 + "@smithy/hash-node": 3.0.4 + "@smithy/hash-stream-node": 3.1.3 + "@smithy/invalid-dependency": 3.0.4 + "@smithy/md5-js": 3.0.4 + "@smithy/middleware-content-length": 3.0.6 + "@smithy/middleware-endpoint": 3.1.1 + "@smithy/middleware-retry": 3.0.16 + "@smithy/middleware-serde": 3.0.4 + "@smithy/middleware-stack": 3.0.4 + "@smithy/node-config-provider": 3.1.5 + "@smithy/node-http-handler": 3.2.0 + "@smithy/protocol-http": 4.1.1 + "@smithy/smithy-client": 3.3.0 + "@smithy/types": 3.4.0 + "@smithy/url-parser": 3.0.4 + "@smithy/util-base64": 3.0.0 + "@smithy/util-body-length-browser": 3.0.0 + "@smithy/util-body-length-node": 3.0.0 + "@smithy/util-defaults-mode-browser": 3.0.16 + "@smithy/util-defaults-mode-node": 3.0.16 + "@smithy/util-endpoints": 2.1.0 + "@smithy/util-middleware": 3.0.4 + "@smithy/util-retry": 3.0.4 + "@smithy/util-stream": 3.1.4 + "@smithy/util-utf8": 3.0.0 + "@smithy/util-waiter": 3.1.3 tslib: 2.6.2 + transitivePeerDependencies: + - aws-crt - '@aws-sdk/util-endpoints@3.540.0': - dependencies: - '@aws-sdk/types': 3.535.0 - '@smithy/types': 2.12.0 - '@smithy/util-endpoints': 1.2.0 + "@aws-sdk/client-sso-oidc@3.540.0(@aws-sdk/credential-provider-node@3.540.0)": + dependencies: + "@aws-crypto/sha256-browser": 3.0.0 + "@aws-crypto/sha256-js": 3.0.0 + "@aws-sdk/client-sts": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + "@aws-sdk/core": 3.535.0 + "@aws-sdk/credential-provider-node": 3.540.0 + "@aws-sdk/middleware-host-header": 3.535.0 + "@aws-sdk/middleware-logger": 3.535.0 + "@aws-sdk/middleware-recursion-detection": 3.535.0 + "@aws-sdk/middleware-user-agent": 3.540.0 + "@aws-sdk/region-config-resolver": 3.535.0 + "@aws-sdk/types": 3.535.0 + "@aws-sdk/util-endpoints": 3.540.0 + "@aws-sdk/util-user-agent-browser": 3.535.0 + "@aws-sdk/util-user-agent-node": 3.535.0 + "@smithy/config-resolver": 2.2.0 + "@smithy/core": 1.4.0 + "@smithy/fetch-http-handler": 2.5.0 + "@smithy/hash-node": 2.2.0 + "@smithy/invalid-dependency": 2.2.0 + "@smithy/middleware-content-length": 2.2.0 + "@smithy/middleware-endpoint": 2.5.0 + "@smithy/middleware-retry": 2.2.0 + "@smithy/middleware-serde": 2.3.0 + "@smithy/middleware-stack": 2.2.0 + "@smithy/node-config-provider": 2.3.0 + "@smithy/node-http-handler": 2.5.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/smithy-client": 2.5.0 + "@smithy/types": 2.12.0 + "@smithy/url-parser": 2.2.0 + "@smithy/util-base64": 2.3.0 + "@smithy/util-body-length-browser": 2.2.0 + "@smithy/util-body-length-node": 2.3.0 + "@smithy/util-defaults-mode-browser": 2.2.0 + "@smithy/util-defaults-mode-node": 2.3.0 + "@smithy/util-endpoints": 1.2.0 + "@smithy/util-middleware": 2.2.0 + "@smithy/util-retry": 2.2.0 + "@smithy/util-utf8": 2.3.0 tslib: 2.6.2 + transitivePeerDependencies: + - aws-crt - '@aws-sdk/util-endpoints@3.649.0': - dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/types': 3.4.0 - '@smithy/util-endpoints': 2.1.0 + "@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)": + dependencies: + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/client-sts": 3.650.0 + "@aws-sdk/core": 3.649.0 + "@aws-sdk/credential-provider-node": 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) + "@aws-sdk/middleware-host-header": 3.649.0 + "@aws-sdk/middleware-logger": 3.649.0 + "@aws-sdk/middleware-recursion-detection": 3.649.0 + "@aws-sdk/middleware-user-agent": 3.649.0 + "@aws-sdk/region-config-resolver": 3.649.0 + "@aws-sdk/types": 3.649.0 + "@aws-sdk/util-endpoints": 3.649.0 + "@aws-sdk/util-user-agent-browser": 3.649.0 + "@aws-sdk/util-user-agent-node": 3.649.0 + "@smithy/config-resolver": 3.0.6 + "@smithy/core": 2.4.1 + "@smithy/fetch-http-handler": 3.2.5 + "@smithy/hash-node": 3.0.4 + "@smithy/invalid-dependency": 3.0.4 + "@smithy/middleware-content-length": 3.0.6 + "@smithy/middleware-endpoint": 3.1.1 + "@smithy/middleware-retry": 3.0.16 + "@smithy/middleware-serde": 3.0.4 + "@smithy/middleware-stack": 3.0.4 + "@smithy/node-config-provider": 3.1.5 + "@smithy/node-http-handler": 3.2.0 + "@smithy/protocol-http": 4.1.1 + "@smithy/smithy-client": 3.3.0 + "@smithy/types": 3.4.0 + "@smithy/url-parser": 3.0.4 + "@smithy/util-base64": 3.0.0 + "@smithy/util-body-length-browser": 3.0.0 + "@smithy/util-body-length-node": 3.0.0 + "@smithy/util-defaults-mode-browser": 3.0.16 + "@smithy/util-defaults-mode-node": 3.0.16 + "@smithy/util-endpoints": 2.1.0 + "@smithy/util-middleware": 3.0.4 + "@smithy/util-retry": 3.0.4 + "@smithy/util-utf8": 3.0.0 tslib: 2.6.2 + transitivePeerDependencies: + - aws-crt - '@aws-sdk/util-locate-window@3.535.0': - dependencies: + "@aws-sdk/client-sso@3.540.0": + dependencies: + "@aws-crypto/sha256-browser": 3.0.0 + "@aws-crypto/sha256-js": 3.0.0 + "@aws-sdk/core": 3.535.0 + "@aws-sdk/middleware-host-header": 3.535.0 + "@aws-sdk/middleware-logger": 3.535.0 + "@aws-sdk/middleware-recursion-detection": 3.535.0 + "@aws-sdk/middleware-user-agent": 3.540.0 + "@aws-sdk/region-config-resolver": 3.535.0 + "@aws-sdk/types": 3.535.0 + "@aws-sdk/util-endpoints": 3.540.0 + "@aws-sdk/util-user-agent-browser": 3.535.0 + "@aws-sdk/util-user-agent-node": 3.535.0 + "@smithy/config-resolver": 2.2.0 + "@smithy/core": 1.4.0 + "@smithy/fetch-http-handler": 2.5.0 + "@smithy/hash-node": 2.2.0 + "@smithy/invalid-dependency": 2.2.0 + "@smithy/middleware-content-length": 2.2.0 + "@smithy/middleware-endpoint": 2.5.0 + "@smithy/middleware-retry": 2.2.0 + "@smithy/middleware-serde": 2.3.0 + "@smithy/middleware-stack": 2.2.0 + "@smithy/node-config-provider": 2.3.0 + "@smithy/node-http-handler": 2.5.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/smithy-client": 2.5.0 + "@smithy/types": 2.12.0 + "@smithy/url-parser": 2.2.0 + "@smithy/util-base64": 2.3.0 + "@smithy/util-body-length-browser": 2.2.0 + "@smithy/util-body-length-node": 2.3.0 + "@smithy/util-defaults-mode-browser": 2.2.0 + "@smithy/util-defaults-mode-node": 2.3.0 + "@smithy/util-endpoints": 1.2.0 + "@smithy/util-middleware": 2.2.0 + "@smithy/util-retry": 2.2.0 + "@smithy/util-utf8": 2.3.0 tslib: 2.6.2 + transitivePeerDependencies: + - aws-crt - '@aws-sdk/util-user-agent-browser@3.535.0': - dependencies: - '@aws-sdk/types': 3.535.0 - '@smithy/types': 2.12.0 - bowser: 2.11.0 + "@aws-sdk/client-sso@3.650.0": + dependencies: + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/core": 3.649.0 + "@aws-sdk/middleware-host-header": 3.649.0 + "@aws-sdk/middleware-logger": 3.649.0 + "@aws-sdk/middleware-recursion-detection": 3.649.0 + "@aws-sdk/middleware-user-agent": 3.649.0 + "@aws-sdk/region-config-resolver": 3.649.0 + "@aws-sdk/types": 3.649.0 + "@aws-sdk/util-endpoints": 3.649.0 + "@aws-sdk/util-user-agent-browser": 3.649.0 + "@aws-sdk/util-user-agent-node": 3.649.0 + "@smithy/config-resolver": 3.0.6 + "@smithy/core": 2.4.1 + "@smithy/fetch-http-handler": 3.2.5 + "@smithy/hash-node": 3.0.4 + "@smithy/invalid-dependency": 3.0.4 + "@smithy/middleware-content-length": 3.0.6 + "@smithy/middleware-endpoint": 3.1.1 + "@smithy/middleware-retry": 3.0.16 + "@smithy/middleware-serde": 3.0.4 + "@smithy/middleware-stack": 3.0.4 + "@smithy/node-config-provider": 3.1.5 + "@smithy/node-http-handler": 3.2.0 + "@smithy/protocol-http": 4.1.1 + "@smithy/smithy-client": 3.3.0 + "@smithy/types": 3.4.0 + "@smithy/url-parser": 3.0.4 + "@smithy/util-base64": 3.0.0 + "@smithy/util-body-length-browser": 3.0.0 + "@smithy/util-body-length-node": 3.0.0 + "@smithy/util-defaults-mode-browser": 3.0.16 + "@smithy/util-defaults-mode-node": 3.0.16 + "@smithy/util-endpoints": 2.1.0 + "@smithy/util-middleware": 3.0.4 + "@smithy/util-retry": 3.0.4 + "@smithy/util-utf8": 3.0.0 tslib: 2.6.2 + transitivePeerDependencies: + - aws-crt - '@aws-sdk/util-user-agent-browser@3.649.0': - dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/types': 3.4.0 - bowser: 2.11.0 + "@aws-sdk/client-sts@3.540.0(@aws-sdk/credential-provider-node@3.540.0)": + dependencies: + "@aws-crypto/sha256-browser": 3.0.0 + "@aws-crypto/sha256-js": 3.0.0 + "@aws-sdk/core": 3.535.0 + "@aws-sdk/credential-provider-node": 3.540.0 + "@aws-sdk/middleware-host-header": 3.535.0 + "@aws-sdk/middleware-logger": 3.535.0 + "@aws-sdk/middleware-recursion-detection": 3.535.0 + "@aws-sdk/middleware-user-agent": 3.540.0 + "@aws-sdk/region-config-resolver": 3.535.0 + "@aws-sdk/types": 3.535.0 + "@aws-sdk/util-endpoints": 3.540.0 + "@aws-sdk/util-user-agent-browser": 3.535.0 + "@aws-sdk/util-user-agent-node": 3.535.0 + "@smithy/config-resolver": 2.2.0 + "@smithy/core": 1.4.0 + "@smithy/fetch-http-handler": 2.5.0 + "@smithy/hash-node": 2.2.0 + "@smithy/invalid-dependency": 2.2.0 + "@smithy/middleware-content-length": 2.2.0 + "@smithy/middleware-endpoint": 2.5.0 + "@smithy/middleware-retry": 2.2.0 + "@smithy/middleware-serde": 2.3.0 + "@smithy/middleware-stack": 2.2.0 + "@smithy/node-config-provider": 2.3.0 + "@smithy/node-http-handler": 2.5.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/smithy-client": 2.5.0 + "@smithy/types": 2.12.0 + "@smithy/url-parser": 2.2.0 + "@smithy/util-base64": 2.3.0 + "@smithy/util-body-length-browser": 2.2.0 + "@smithy/util-body-length-node": 2.3.0 + "@smithy/util-defaults-mode-browser": 2.2.0 + "@smithy/util-defaults-mode-node": 2.3.0 + "@smithy/util-endpoints": 1.2.0 + "@smithy/util-middleware": 2.2.0 + "@smithy/util-retry": 2.2.0 + "@smithy/util-utf8": 2.3.0 tslib: 2.6.2 + transitivePeerDependencies: + - aws-crt - '@aws-sdk/util-user-agent-node@3.535.0': - dependencies: - '@aws-sdk/types': 3.535.0 - '@smithy/node-config-provider': 2.3.0 - '@smithy/types': 2.12.0 + "@aws-sdk/client-sts@3.650.0": + dependencies: + "@aws-crypto/sha256-browser": 5.2.0 + "@aws-crypto/sha256-js": 5.2.0 + "@aws-sdk/client-sso-oidc": 3.650.0(@aws-sdk/client-sts@3.650.0) + "@aws-sdk/core": 3.649.0 + "@aws-sdk/credential-provider-node": 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) + "@aws-sdk/middleware-host-header": 3.649.0 + "@aws-sdk/middleware-logger": 3.649.0 + "@aws-sdk/middleware-recursion-detection": 3.649.0 + "@aws-sdk/middleware-user-agent": 3.649.0 + "@aws-sdk/region-config-resolver": 3.649.0 + "@aws-sdk/types": 3.649.0 + "@aws-sdk/util-endpoints": 3.649.0 + "@aws-sdk/util-user-agent-browser": 3.649.0 + "@aws-sdk/util-user-agent-node": 3.649.0 + "@smithy/config-resolver": 3.0.6 + "@smithy/core": 2.4.1 + "@smithy/fetch-http-handler": 3.2.5 + "@smithy/hash-node": 3.0.4 + "@smithy/invalid-dependency": 3.0.4 + "@smithy/middleware-content-length": 3.0.6 + "@smithy/middleware-endpoint": 3.1.1 + "@smithy/middleware-retry": 3.0.16 + "@smithy/middleware-serde": 3.0.4 + "@smithy/middleware-stack": 3.0.4 + "@smithy/node-config-provider": 3.1.5 + "@smithy/node-http-handler": 3.2.0 + "@smithy/protocol-http": 4.1.1 + "@smithy/smithy-client": 3.3.0 + "@smithy/types": 3.4.0 + "@smithy/url-parser": 3.0.4 + "@smithy/util-base64": 3.0.0 + "@smithy/util-body-length-browser": 3.0.0 + "@smithy/util-body-length-node": 3.0.0 + "@smithy/util-defaults-mode-browser": 3.0.16 + "@smithy/util-defaults-mode-node": 3.0.16 + "@smithy/util-endpoints": 2.1.0 + "@smithy/util-middleware": 3.0.4 + "@smithy/util-retry": 3.0.4 + "@smithy/util-utf8": 3.0.0 tslib: 2.6.2 + transitivePeerDependencies: + - aws-crt - '@aws-sdk/util-user-agent-node@3.649.0': + "@aws-sdk/core@3.535.0": dependencies: - '@aws-sdk/types': 3.649.0 - '@smithy/node-config-provider': 3.1.5 - '@smithy/types': 3.4.0 + "@smithy/core": 1.4.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/signature-v4": 2.2.0 + "@smithy/smithy-client": 2.5.0 + "@smithy/types": 2.12.0 + fast-xml-parser: 4.2.5 tslib: 2.6.2 - '@aws-sdk/util-utf8-browser@3.259.0': + "@aws-sdk/core@3.649.0": dependencies: + "@smithy/core": 2.4.1 + "@smithy/node-config-provider": 3.1.5 + "@smithy/property-provider": 3.1.4 + "@smithy/protocol-http": 4.1.1 + "@smithy/signature-v4": 4.1.1 + "@smithy/smithy-client": 3.3.0 + "@smithy/types": 3.4.0 + "@smithy/util-middleware": 3.0.4 + fast-xml-parser: 4.4.1 tslib: 2.6.2 - '@aws-sdk/xml-builder@3.535.0': + "@aws-sdk/credential-provider-env@3.535.0": dependencies: - '@smithy/types': 2.12.0 + "@aws-sdk/types": 3.535.0 + "@smithy/property-provider": 2.2.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@aws-sdk/xml-builder@3.649.0': + "@aws-sdk/credential-provider-env@3.649.0": dependencies: - '@smithy/types': 3.4.0 + "@aws-sdk/types": 3.649.0 + "@smithy/property-provider": 3.1.4 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@azure/abort-controller@1.1.0': + "@aws-sdk/credential-provider-http@3.535.0": dependencies: + "@aws-sdk/types": 3.535.0 + "@smithy/fetch-http-handler": 2.5.0 + "@smithy/node-http-handler": 2.5.0 + "@smithy/property-provider": 2.2.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/smithy-client": 2.5.0 + "@smithy/types": 2.12.0 + "@smithy/util-stream": 2.2.0 tslib: 2.6.2 - '@azure/abort-controller@2.1.1': + "@aws-sdk/credential-provider-http@3.649.0": dependencies: + "@aws-sdk/types": 3.649.0 + "@smithy/fetch-http-handler": 3.2.5 + "@smithy/node-http-handler": 3.2.0 + "@smithy/property-provider": 3.1.4 + "@smithy/protocol-http": 4.1.1 + "@smithy/smithy-client": 3.3.0 + "@smithy/types": 3.4.0 + "@smithy/util-stream": 3.1.4 tslib: 2.6.2 - '@azure/core-asynciterator-polyfill@1.0.2': {} + "@aws-sdk/credential-provider-ini@3.540.0(@aws-sdk/credential-provider-node@3.540.0)": + dependencies: + "@aws-sdk/client-sts": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + "@aws-sdk/credential-provider-env": 3.535.0 + "@aws-sdk/credential-provider-process": 3.535.0 + "@aws-sdk/credential-provider-sso": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + "@aws-sdk/credential-provider-web-identity": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + "@aws-sdk/types": 3.535.0 + "@smithy/credential-provider-imds": 2.3.0 + "@smithy/property-provider": 2.2.0 + "@smithy/shared-ini-file-loader": 2.4.0 + "@smithy/types": 2.12.0 + tslib: 2.6.2 + transitivePeerDependencies: + - "@aws-sdk/credential-provider-node" + - aws-crt - '@azure/core-auth@1.7.1': - dependencies: - '@azure/abort-controller': 2.1.1 - '@azure/core-util': 1.8.1 + "@aws-sdk/credential-provider-ini@3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0)": + dependencies: + "@aws-sdk/client-sts": 3.650.0 + "@aws-sdk/credential-provider-env": 3.649.0 + "@aws-sdk/credential-provider-http": 3.649.0 + "@aws-sdk/credential-provider-process": 3.649.0 + "@aws-sdk/credential-provider-sso": 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)) + "@aws-sdk/credential-provider-web-identity": 3.649.0(@aws-sdk/client-sts@3.650.0) + "@aws-sdk/types": 3.649.0 + "@smithy/credential-provider-imds": 3.2.1 + "@smithy/property-provider": 3.1.4 + "@smithy/shared-ini-file-loader": 3.1.5 + "@smithy/types": 3.4.0 tslib: 2.6.2 + transitivePeerDependencies: + - "@aws-sdk/client-sso-oidc" + - aws-crt - '@azure/core-http@3.0.4': - dependencies: - '@azure/abort-controller': 1.1.0 - '@azure/core-auth': 1.7.1 - '@azure/core-tracing': 1.0.0-preview.13 - '@azure/core-util': 1.8.1 - '@azure/logger': 1.1.1 - '@types/node-fetch': 2.6.11 - '@types/tunnel': 0.0.3 - form-data: 4.0.0 - node-fetch: 2.7.0 - process: 0.11.10 + "@aws-sdk/credential-provider-node@3.540.0": + dependencies: + "@aws-sdk/credential-provider-env": 3.535.0 + "@aws-sdk/credential-provider-http": 3.535.0 + "@aws-sdk/credential-provider-ini": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + "@aws-sdk/credential-provider-process": 3.535.0 + "@aws-sdk/credential-provider-sso": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + "@aws-sdk/credential-provider-web-identity": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + "@aws-sdk/types": 3.535.0 + "@smithy/credential-provider-imds": 2.3.0 + "@smithy/property-provider": 2.2.0 + "@smithy/shared-ini-file-loader": 2.4.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - tunnel: 0.0.6 - uuid: 8.3.2 - xml2js: 0.5.0 transitivePeerDependencies: - - encoding + - aws-crt - '@azure/core-lro@2.7.1': - dependencies: - '@azure/abort-controller': 2.1.1 - '@azure/core-util': 1.8.1 - '@azure/logger': 1.1.1 + "@aws-sdk/credential-provider-node@3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0)": + dependencies: + "@aws-sdk/credential-provider-env": 3.649.0 + "@aws-sdk/credential-provider-http": 3.649.0 + "@aws-sdk/credential-provider-ini": 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) + "@aws-sdk/credential-provider-process": 3.649.0 + "@aws-sdk/credential-provider-sso": 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)) + "@aws-sdk/credential-provider-web-identity": 3.649.0(@aws-sdk/client-sts@3.650.0) + "@aws-sdk/types": 3.649.0 + "@smithy/credential-provider-imds": 3.2.1 + "@smithy/property-provider": 3.1.4 + "@smithy/shared-ini-file-loader": 3.1.5 + "@smithy/types": 3.4.0 tslib: 2.6.2 + transitivePeerDependencies: + - "@aws-sdk/client-sso-oidc" + - "@aws-sdk/client-sts" + - aws-crt - '@azure/core-paging@1.6.1': + "@aws-sdk/credential-provider-process@3.535.0": dependencies: + "@aws-sdk/types": 3.535.0 + "@smithy/property-provider": 2.2.0 + "@smithy/shared-ini-file-loader": 2.4.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@azure/core-tracing@1.0.0-preview.13': + "@aws-sdk/credential-provider-process@3.649.0": dependencies: - '@opentelemetry/api': 1.8.0 + "@aws-sdk/types": 3.649.0 + "@smithy/property-provider": 3.1.4 + "@smithy/shared-ini-file-loader": 3.1.5 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@azure/core-util@1.8.1': + "@aws-sdk/credential-provider-sso@3.540.0(@aws-sdk/credential-provider-node@3.540.0)": dependencies: - '@azure/abort-controller': 2.1.1 + "@aws-sdk/client-sso": 3.540.0 + "@aws-sdk/token-providers": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + "@aws-sdk/types": 3.535.0 + "@smithy/property-provider": 2.2.0 + "@smithy/shared-ini-file-loader": 2.4.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 + transitivePeerDependencies: + - "@aws-sdk/credential-provider-node" + - aws-crt - '@azure/logger@1.1.1': + "@aws-sdk/credential-provider-sso@3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))": dependencies: + "@aws-sdk/client-sso": 3.650.0 + "@aws-sdk/token-providers": 3.649.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)) + "@aws-sdk/types": 3.649.0 + "@smithy/property-provider": 3.1.4 + "@smithy/shared-ini-file-loader": 3.1.5 + "@smithy/types": 3.4.0 tslib: 2.6.2 + transitivePeerDependencies: + - "@aws-sdk/client-sso-oidc" + - aws-crt - '@azure/ms-rest-js@2.7.0': + "@aws-sdk/credential-provider-web-identity@3.540.0(@aws-sdk/credential-provider-node@3.540.0)": dependencies: - '@azure/core-auth': 1.7.1 - abort-controller: 3.0.0 - form-data: 2.5.1 - node-fetch: 2.7.0 + "@aws-sdk/client-sts": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + "@aws-sdk/types": 3.535.0 + "@smithy/property-provider": 2.2.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - tunnel: 0.0.6 - uuid: 8.3.2 - xml2js: 0.5.0 transitivePeerDependencies: - - encoding + - "@aws-sdk/credential-provider-node" + - aws-crt - '@azure/storage-blob@12.17.0': + "@aws-sdk/credential-provider-web-identity@3.649.0(@aws-sdk/client-sts@3.650.0)": dependencies: - '@azure/abort-controller': 1.1.0 - '@azure/core-http': 3.0.4 - '@azure/core-lro': 2.7.1 - '@azure/core-paging': 1.6.1 - '@azure/core-tracing': 1.0.0-preview.13 - '@azure/logger': 1.1.1 - events: 3.3.0 + "@aws-sdk/client-sts": 3.650.0 + "@aws-sdk/types": 3.649.0 + "@smithy/property-provider": 3.1.4 + "@smithy/types": 3.4.0 tslib: 2.6.2 - transitivePeerDependencies: - - encoding - '@babel/code-frame@7.10.4': + "@aws-sdk/lib-storage@3.651.0(@aws-sdk/client-s3@3.651.0)": dependencies: - '@babel/highlight': 7.24.6 + "@aws-sdk/client-s3": 3.651.0 + "@smithy/abort-controller": 3.1.2 + "@smithy/middleware-endpoint": 3.1.1 + "@smithy/smithy-client": 3.3.0 + buffer: 5.6.0 + events: 3.3.0 + stream-browserify: 3.0.0 + tslib: 2.6.2 - '@babel/code-frame@7.24.2': + "@aws-sdk/middleware-bucket-endpoint@3.535.0": dependencies: - '@babel/highlight': 7.24.2 - picocolors: 1.0.0 + "@aws-sdk/types": 3.535.0 + "@aws-sdk/util-arn-parser": 3.535.0 + "@smithy/node-config-provider": 2.3.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/types": 2.12.0 + "@smithy/util-config-provider": 2.3.0 + tslib: 2.6.2 - '@babel/code-frame@7.24.6': + "@aws-sdk/middleware-bucket-endpoint@3.649.0": dependencies: - '@babel/highlight': 7.24.6 - picocolors: 1.0.0 + "@aws-sdk/types": 3.649.0 + "@aws-sdk/util-arn-parser": 3.568.0 + "@smithy/node-config-provider": 3.1.5 + "@smithy/protocol-http": 4.1.1 + "@smithy/types": 3.4.0 + "@smithy/util-config-provider": 3.0.0 + tslib: 2.6.2 - '@babel/compat-data@7.24.1': {} + "@aws-sdk/middleware-expect-continue@3.535.0": + dependencies: + "@aws-sdk/types": 3.535.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/types": 2.12.0 + tslib: 2.6.2 - '@babel/core@7.24.3': + "@aws-sdk/middleware-expect-continue@3.649.0": dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.24.6 - '@babel/generator': 7.24.1 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) - '@babel/helpers': 7.24.1 - '@babel/parser': 7.24.1 - '@babel/template': 7.24.0 - '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 - convert-source-map: 2.0.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + "@aws-sdk/types": 3.649.0 + "@smithy/protocol-http": 4.1.1 + "@smithy/types": 3.4.0 + tslib: 2.6.2 - '@babel/eslint-parser@7.24.1(@babel/core@7.24.3)(eslint@8.57.0)': + "@aws-sdk/middleware-flexible-checksums@3.535.0": dependencies: - '@babel/core': 7.24.3 - '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 - eslint: 8.57.0 - eslint-visitor-keys: 2.1.0 - semver: 6.3.1 + "@aws-crypto/crc32": 3.0.0 + "@aws-crypto/crc32c": 3.0.0 + "@aws-sdk/types": 3.535.0 + "@smithy/is-array-buffer": 2.2.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/types": 2.12.0 + "@smithy/util-utf8": 2.3.0 + tslib: 2.6.2 - '@babel/generator@7.24.1': + "@aws-sdk/middleware-flexible-checksums@3.651.0": dependencies: - '@babel/types': 7.24.0 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 2.5.2 + "@aws-crypto/crc32": 5.2.0 + "@aws-crypto/crc32c": 5.2.0 + "@aws-sdk/types": 3.649.0 + "@smithy/is-array-buffer": 3.0.0 + "@smithy/node-config-provider": 3.1.5 + "@smithy/protocol-http": 4.1.1 + "@smithy/types": 3.4.0 + "@smithy/util-utf8": 3.0.0 + tslib: 2.6.2 - '@babel/helper-annotate-as-pure@7.22.5': + "@aws-sdk/middleware-host-header@3.535.0": dependencies: - '@babel/types': 7.24.0 + "@aws-sdk/types": 3.535.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/types": 2.12.0 + tslib: 2.6.2 - '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': + "@aws-sdk/middleware-host-header@3.649.0": dependencies: - '@babel/types': 7.24.0 + "@aws-sdk/types": 3.649.0 + "@smithy/protocol-http": 4.1.1 + "@smithy/types": 3.4.0 + tslib: 2.6.2 - '@babel/helper-compilation-targets@7.23.6': + "@aws-sdk/middleware-location-constraint@3.535.0": dependencies: - '@babel/compat-data': 7.24.1 - '@babel/helper-validator-option': 7.23.5 - browserslist: 4.23.0 - lru-cache: 5.1.1 - semver: 6.3.1 + "@aws-sdk/types": 3.535.0 + "@smithy/types": 2.12.0 + tslib: 2.6.2 - '@babel/helper-create-class-features-plugin@7.24.1': + "@aws-sdk/middleware-location-constraint@3.649.0": dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.24.1 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 + "@aws-sdk/types": 3.649.0 + "@smithy/types": 3.4.0 + tslib: 2.6.2 - '@babel/helper-create-class-features-plugin@7.24.1(@babel/core@7.24.3)': - dependencies: - '@babel/core': 7.24.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - semver: 6.3.1 + "@aws-sdk/middleware-logger@3.535.0": + dependencies: + "@aws-sdk/types": 3.535.0 + "@smithy/types": 2.12.0 + tslib: 2.6.2 - '@babel/helper-create-regexp-features-plugin@7.22.15': + "@aws-sdk/middleware-logger@3.649.0": dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.2 - semver: 6.3.1 + "@aws-sdk/types": 3.649.0 + "@smithy/types": 3.4.0 + tslib: 2.6.2 - '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.3)': + "@aws-sdk/middleware-recursion-detection@3.535.0": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.2 - semver: 6.3.1 + "@aws-sdk/types": 3.535.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/types": 2.12.0 + tslib: 2.6.2 - '@babel/helper-define-polyfill-provider@0.6.1': + "@aws-sdk/middleware-recursion-detection@3.649.0": dependencies: - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.24.0 - debug: 4.3.4 - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color + "@aws-sdk/types": 3.649.0 + "@smithy/protocol-http": 4.1.1 + "@smithy/types": 3.4.0 + tslib: 2.6.2 - '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.3)': + "@aws-sdk/middleware-sdk-s3@3.535.0": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.24.0 - debug: 4.3.4 - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color + "@aws-sdk/types": 3.535.0 + "@aws-sdk/util-arn-parser": 3.535.0 + "@smithy/node-config-provider": 2.3.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/signature-v4": 2.2.0 + "@smithy/smithy-client": 2.5.0 + "@smithy/types": 2.12.0 + "@smithy/util-config-provider": 2.3.0 + tslib: 2.6.2 - '@babel/helper-environment-visitor@7.22.20': {} + "@aws-sdk/middleware-sdk-s3@3.649.0": + dependencies: + "@aws-sdk/core": 3.649.0 + "@aws-sdk/types": 3.649.0 + "@aws-sdk/util-arn-parser": 3.568.0 + "@smithy/core": 2.4.1 + "@smithy/node-config-provider": 3.1.5 + "@smithy/protocol-http": 4.1.1 + "@smithy/signature-v4": 4.1.1 + "@smithy/smithy-client": 3.3.0 + "@smithy/types": 3.4.0 + "@smithy/util-config-provider": 3.0.0 + "@smithy/util-middleware": 3.0.4 + "@smithy/util-stream": 3.1.4 + "@smithy/util-utf8": 3.0.0 + tslib: 2.6.2 - '@babel/helper-function-name@7.23.0': + "@aws-sdk/middleware-signing@3.535.0": dependencies: - '@babel/template': 7.24.0 - '@babel/types': 7.24.0 + "@aws-sdk/types": 3.535.0 + "@smithy/property-provider": 2.2.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/signature-v4": 2.2.0 + "@smithy/types": 2.12.0 + "@smithy/util-middleware": 2.2.0 + tslib: 2.6.2 - '@babel/helper-hoist-variables@7.22.5': + "@aws-sdk/middleware-ssec@3.537.0": dependencies: - '@babel/types': 7.24.0 + "@aws-sdk/types": 3.535.0 + "@smithy/types": 2.12.0 + tslib: 2.6.2 - '@babel/helper-member-expression-to-functions@7.23.0': + "@aws-sdk/middleware-ssec@3.649.0": dependencies: - '@babel/types': 7.24.0 + "@aws-sdk/types": 3.649.0 + "@smithy/types": 3.4.0 + tslib: 2.6.2 - '@babel/helper-module-imports@7.24.3': + "@aws-sdk/middleware-user-agent@3.540.0": dependencies: - '@babel/types': 7.24.0 + "@aws-sdk/types": 3.535.0 + "@aws-sdk/util-endpoints": 3.540.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/types": 2.12.0 + tslib: 2.6.2 - '@babel/helper-module-transforms@7.23.3': + "@aws-sdk/middleware-user-agent@3.649.0": dependencies: - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.24.3 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.24.7 + "@aws-sdk/types": 3.649.0 + "@aws-sdk/util-endpoints": 3.649.0 + "@smithy/protocol-http": 4.1.1 + "@smithy/types": 3.4.0 + tslib: 2.6.2 - '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.3)': + "@aws-sdk/region-config-resolver@3.535.0": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-module-imports': 7.24.3 - '@babel/helper-simple-access': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.24.7 + "@aws-sdk/types": 3.535.0 + "@smithy/node-config-provider": 2.3.0 + "@smithy/types": 2.12.0 + "@smithy/util-config-provider": 2.3.0 + "@smithy/util-middleware": 2.2.0 + tslib: 2.6.2 - '@babel/helper-optimise-call-expression@7.22.5': + "@aws-sdk/region-config-resolver@3.649.0": dependencies: - '@babel/types': 7.24.0 - - '@babel/helper-plugin-utils@7.24.0': {} + "@aws-sdk/types": 3.649.0 + "@smithy/node-config-provider": 3.1.5 + "@smithy/types": 3.4.0 + "@smithy/util-config-provider": 3.0.0 + "@smithy/util-middleware": 3.0.4 + tslib: 2.6.2 - '@babel/helper-remap-async-to-generator@7.22.20': + "@aws-sdk/signature-v4-multi-region@3.535.0": dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.22.20 + "@aws-sdk/middleware-sdk-s3": 3.535.0 + "@aws-sdk/types": 3.535.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/signature-v4": 2.2.0 + "@smithy/types": 2.12.0 + tslib: 2.6.2 - '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.3)': + "@aws-sdk/signature-v4-multi-region@3.649.0": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.22.20 + "@aws-sdk/middleware-sdk-s3": 3.649.0 + "@aws-sdk/types": 3.649.0 + "@smithy/protocol-http": 4.1.1 + "@smithy/signature-v4": 4.1.1 + "@smithy/types": 3.4.0 + tslib: 2.6.2 - '@babel/helper-replace-supers@7.24.1': + "@aws-sdk/token-providers@3.540.0(@aws-sdk/credential-provider-node@3.540.0)": dependencies: - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 + "@aws-sdk/client-sso-oidc": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + "@aws-sdk/types": 3.535.0 + "@smithy/property-provider": 2.2.0 + "@smithy/shared-ini-file-loader": 2.4.0 + "@smithy/types": 2.12.0 + tslib: 2.6.2 + transitivePeerDependencies: + - "@aws-sdk/credential-provider-node" + - aws-crt - '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.3)': + "@aws-sdk/token-providers@3.649.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 + "@aws-sdk/client-sso-oidc": 3.650.0(@aws-sdk/client-sts@3.650.0) + "@aws-sdk/types": 3.649.0 + "@smithy/property-provider": 3.1.4 + "@smithy/shared-ini-file-loader": 3.1.5 + "@smithy/types": 3.4.0 + tslib: 2.6.2 - '@babel/helper-simple-access@7.22.5': + "@aws-sdk/types@3.535.0": dependencies: - '@babel/types': 7.24.0 + "@smithy/types": 2.12.0 + tslib: 2.6.2 - '@babel/helper-skip-transparent-expression-wrappers@7.22.5': + "@aws-sdk/types@3.649.0": dependencies: - '@babel/types': 7.24.0 + "@smithy/types": 3.4.0 + tslib: 2.6.2 - '@babel/helper-split-export-declaration@7.22.6': + "@aws-sdk/util-arn-parser@3.535.0": dependencies: - '@babel/types': 7.24.0 - - '@babel/helper-string-parser@7.24.1': {} + tslib: 2.6.2 - '@babel/helper-validator-identifier@7.22.20': {} + "@aws-sdk/util-arn-parser@3.568.0": + dependencies: + tslib: 2.6.2 - '@babel/helper-validator-identifier@7.24.7': {} + "@aws-sdk/util-endpoints@3.540.0": + dependencies: + "@aws-sdk/types": 3.535.0 + "@smithy/types": 2.12.0 + "@smithy/util-endpoints": 1.2.0 + tslib: 2.6.2 - '@babel/helper-validator-option@7.23.5': {} + "@aws-sdk/util-endpoints@3.649.0": + dependencies: + "@aws-sdk/types": 3.649.0 + "@smithy/types": 3.4.0 + "@smithy/util-endpoints": 2.1.0 + tslib: 2.6.2 - '@babel/helper-wrap-function@7.22.20': + "@aws-sdk/util-locate-window@3.535.0": dependencies: - '@babel/helper-function-name': 7.23.0 - '@babel/template': 7.24.0 - '@babel/types': 7.24.0 + tslib: 2.6.2 - '@babel/helpers@7.24.1': + "@aws-sdk/util-user-agent-browser@3.535.0": dependencies: - '@babel/template': 7.24.0 - '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 - transitivePeerDependencies: - - supports-color + "@aws-sdk/types": 3.535.0 + "@smithy/types": 2.12.0 + bowser: 2.11.0 + tslib: 2.6.2 - '@babel/highlight@7.24.2': + "@aws-sdk/util-user-agent-browser@3.649.0": dependencies: - '@babel/helper-validator-identifier': 7.22.20 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.0.0 + "@aws-sdk/types": 3.649.0 + "@smithy/types": 3.4.0 + bowser: 2.11.0 + tslib: 2.6.2 - '@babel/highlight@7.24.6': + "@aws-sdk/util-user-agent-node@3.535.0": dependencies: - '@babel/helper-validator-identifier': 7.24.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.0.0 + "@aws-sdk/types": 3.535.0 + "@smithy/node-config-provider": 2.3.0 + "@smithy/types": 2.12.0 + tslib: 2.6.2 - '@babel/parser@7.24.1': + "@aws-sdk/util-user-agent-node@3.649.0": dependencies: - '@babel/types': 7.24.0 + "@aws-sdk/types": 3.649.0 + "@smithy/node-config-provider": 3.1.5 + "@smithy/types": 3.4.0 + tslib: 2.6.2 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.3)': + "@aws-sdk/util-utf8-browser@3.259.0": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + tslib: 2.6.2 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.3)': + "@aws-sdk/xml-builder@3.535.0": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3) + "@smithy/types": 2.12.0 + tslib: 2.6.2 - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.3)': + "@aws-sdk/xml-builder@3.649.0": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.24.0 + "@smithy/types": 3.4.0 + tslib: 2.6.2 - '@babel/plugin-proposal-async-generator-functions@7.20.7': + "@azure/abort-controller@1.1.0": dependencies: - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20 - '@babel/plugin-syntax-async-generators': 7.8.4 + tslib: 2.6.2 - '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.3)': + "@azure/abort-controller@2.1.1": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) + tslib: 2.6.2 - '@babel/plugin-proposal-class-properties@7.18.6': + "@azure/core-asynciterator-polyfill@1.0.2": {} + + "@azure/core-auth@1.7.1": dependencies: - '@babel/helper-create-class-features-plugin': 7.24.1 - '@babel/helper-plugin-utils': 7.24.0 + "@azure/abort-controller": 2.1.1 + "@azure/core-util": 1.8.1 + tslib: 2.6.2 - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.3)': + "@azure/core-http@3.0.4": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 + "@azure/abort-controller": 1.1.0 + "@azure/core-auth": 1.7.1 + "@azure/core-tracing": 1.0.0-preview.13 + "@azure/core-util": 1.8.1 + "@azure/logger": 1.1.1 + "@types/node-fetch": 2.6.11 + "@types/tunnel": 0.0.3 + form-data: 4.0.0 + node-fetch: 2.7.0 + process: 0.11.10 + tslib: 2.6.2 + tunnel: 0.0.6 + uuid: 8.3.2 + xml2js: 0.5.0 + transitivePeerDependencies: + - encoding - '@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.3)': + "@azure/core-lro@2.7.1": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.24.3) + "@azure/abort-controller": 2.1.1 + "@azure/core-util": 1.8.1 + "@azure/logger": 1.1.1 + tslib: 2.6.2 - '@babel/plugin-proposal-export-default-from@7.24.1': + "@azure/core-paging@1.6.1": dependencies: - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-export-default-from': 7.24.1 + tslib: 2.6.2 - '@babel/plugin-proposal-export-default-from@7.24.1(@babel/core@7.24.3)': + "@azure/core-tracing@1.0.0-preview.13": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.3) + "@opentelemetry/api": 1.8.0 + tslib: 2.6.2 - '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.24.3)': + "@azure/core-util@1.8.1": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3) + "@azure/abort-controller": 2.1.1 + tslib: 2.6.2 - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6': + "@azure/logger@1.1.1": dependencies: - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3 + tslib: 2.6.2 - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.3)': + "@azure/ms-rest-js@2.7.0": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) + "@azure/core-auth": 1.7.1 + abort-controller: 3.0.0 + form-data: 2.5.1 + node-fetch: 2.7.0 + tslib: 2.6.2 + tunnel: 0.0.6 + uuid: 8.3.2 + xml2js: 0.5.0 + transitivePeerDependencies: + - encoding - '@babel/plugin-proposal-numeric-separator@7.18.6': + "@azure/storage-blob@12.17.0": dependencies: - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4 + "@azure/abort-controller": 1.1.0 + "@azure/core-http": 3.0.4 + "@azure/core-lro": 2.7.1 + "@azure/core-paging": 1.6.1 + "@azure/core-tracing": 1.0.0-preview.13 + "@azure/logger": 1.1.1 + events: 3.3.0 + tslib: 2.6.2 + transitivePeerDependencies: + - encoding - '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.3)': + "@babel/code-frame@7.10.4": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) + "@babel/highlight": 7.24.6 - '@babel/plugin-proposal-object-rest-spread@7.20.7': + "@babel/code-frame@7.24.2": dependencies: - '@babel/compat-data': 7.24.1 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3 - '@babel/plugin-transform-parameters': 7.24.1 + "@babel/highlight": 7.24.2 + picocolors: 1.0.0 - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.3)': + "@babel/code-frame@7.24.6": dependencies: - '@babel/compat-data': 7.24.1 - '@babel/core': 7.24.3 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) + "@babel/highlight": 7.24.6 + picocolors: 1.0.0 + + "@babel/compat-data@7.24.1": {} - '@babel/plugin-proposal-optional-catch-binding@7.18.6': + "@babel/core@7.24.3": dependencies: - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3 + "@ampproject/remapping": 2.3.0 + "@babel/code-frame": 7.24.6 + "@babel/generator": 7.24.1 + "@babel/helper-compilation-targets": 7.23.6 + "@babel/helper-module-transforms": 7.23.3(@babel/core@7.24.3) + "@babel/helpers": 7.24.1 + "@babel/parser": 7.24.1 + "@babel/template": 7.24.0 + "@babel/traverse": 7.24.1 + "@babel/types": 7.24.0 + convert-source-map: 2.0.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.3)': + "@babel/eslint-parser@7.24.1(@babel/core@7.24.3)(eslint@8.57.0)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@nicolo-ribaudo/eslint-scope-5-internals": 5.1.1-v1 + eslint: 8.57.0 + eslint-visitor-keys: 2.1.0 + semver: 6.3.1 - '@babel/plugin-proposal-optional-chaining@7.21.0': + "@babel/generator@7.2.0": dependencies: - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3 + "@babel/types": 7.24.0 + jsesc: 2.5.2 + lodash: 4.17.21 + source-map: 0.5.7 + trim-right: 1.0.1 - '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.3)': + "@babel/generator@7.24.1": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) + "@babel/types": 7.24.0 + "@jridgewell/gen-mapping": 0.3.5 + "@jridgewell/trace-mapping": 0.3.25 + jsesc: 2.5.2 - '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.24.3)': + "@babel/helper-annotate-as-pure@7.22.5": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 + "@babel/types": 7.24.0 - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3)': + "@babel/helper-builder-binary-assignment-operator-visitor@7.22.15": dependencies: - '@babel/core': 7.24.3 + "@babel/types": 7.24.0 - '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.24.3)': + "@babel/helper-compilation-targets@7.23.6": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3) + "@babel/compat-data": 7.24.1 + "@babel/helper-validator-option": 7.23.5 + browserslist: 4.23.0 + lru-cache: 5.1.1 + semver: 6.3.1 + + "@babel/helper-create-class-features-plugin@7.24.1(@babel/core@7.24.3)": + dependencies: + "@babel/core": 7.24.3 + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-function-name": 7.23.0 + "@babel/helper-member-expression-to-functions": 7.23.0 + "@babel/helper-optimise-call-expression": 7.22.5 + "@babel/helper-replace-supers": 7.24.1(@babel/core@7.24.3) + "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 + "@babel/helper-split-export-declaration": 7.22.6 + semver: 6.3.1 - '@babel/plugin-syntax-async-generators@7.8.4': + "@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-annotate-as-pure": 7.22.5 + regexpu-core: 5.3.2 + semver: 6.3.1 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.3)': + "@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-compilation-targets": 7.23.6 + "@babel/helper-plugin-utils": 7.24.0 + debug: 4.3.4 + lodash.debounce: 4.0.8 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.3)': + "@babel/helper-environment-visitor@7.22.20": {} + + "@babel/helper-function-name@7.23.0": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/template": 7.24.0 + "@babel/types": 7.24.0 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.3)': + "@babel/helper-hoist-variables@7.22.5": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/types": 7.24.0 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.3)': + "@babel/helper-member-expression-to-functions@7.23.0": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/types": 7.24.0 - '@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.3)': + "@babel/helper-module-imports@7.24.3": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/types": 7.24.0 - '@babel/plugin-syntax-dynamic-import@7.8.3': + "@babel/helper-module-transforms@7.23.3": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-module-imports": 7.24.3 + "@babel/helper-simple-access": 7.22.5 + "@babel/helper-split-export-declaration": 7.22.6 + "@babel/helper-validator-identifier": 7.24.7 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.3)': + "@babel/helper-module-transforms@7.23.3(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-module-imports": 7.24.3 + "@babel/helper-simple-access": 7.22.5 + "@babel/helper-split-export-declaration": 7.22.6 + "@babel/helper-validator-identifier": 7.24.7 - '@babel/plugin-syntax-export-default-from@7.24.1': + "@babel/helper-optimise-call-expression@7.22.5": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/types": 7.24.0 + + "@babel/helper-plugin-utils@7.24.0": {} - '@babel/plugin-syntax-export-default-from@7.24.1(@babel/core@7.24.3)': + "@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-wrap-function": 7.22.20 - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.3)': + "@babel/helper-replace-supers@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-member-expression-to-functions": 7.23.0 + "@babel/helper-optimise-call-expression": 7.22.5 - '@babel/plugin-syntax-flow@7.24.1': + "@babel/helper-simple-access@7.22.5": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/types": 7.24.0 - '@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.3)': + "@babel/helper-skip-transparent-expression-wrappers@7.22.5": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/types": 7.24.0 - '@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.3)': + "@babel/helper-split-export-declaration@7.22.6": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/types": 7.24.0 + + "@babel/helper-string-parser@7.24.1": {} + + "@babel/helper-validator-identifier@7.22.20": {} - '@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.3)': + "@babel/helper-validator-identifier@7.24.7": {} + + "@babel/helper-validator-option@7.23.5": {} + + "@babel/helper-wrap-function@7.22.20": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/helper-function-name": 7.23.0 + "@babel/template": 7.24.0 + "@babel/types": 7.24.0 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.3)': + "@babel/helpers@7.24.1": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/template": 7.24.0 + "@babel/traverse": 7.24.1 + "@babel/types": 7.24.0 + transitivePeerDependencies: + - supports-color - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.3)': + "@babel/highlight@7.24.2": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/helper-validator-identifier": 7.24.7 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.0.0 - '@babel/plugin-syntax-jsx@7.24.1': + "@babel/highlight@7.24.6": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/helper-validator-identifier": 7.24.7 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.0.0 - '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.3)': + "@babel/parser@7.24.1": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/types": 7.24.0 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.3)': + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 + "@babel/plugin-transform-optional-chaining": 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.3)': + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-syntax-numeric-separator@7.10.4': + "@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.24.3) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.24.3) - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.3)': + "@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-syntax-object-rest-spread@7.8.3': + "@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-decorators": 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.3)': + "@babel/plugin-proposal-export-default-from@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-export-default-from": 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-catch-binding@7.8.3': + "@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.3)': + "@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-chaining@7.8.3': + "@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.3)': + "@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.24.3) - '@babel/plugin-syntax-private-property-in-object@7.14.5': + "@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/compat-data": 7.24.1 + "@babel/core": 7.24.3 + "@babel/helper-compilation-targets": 7.23.6 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.3)': + "@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.3)': + "@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-typescript@7.24.1': + "@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.3)': + "@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.24.3) - '@babel/plugin-transform-arrow-functions@7.24.1': + "@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.3)': + "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-async-to-generator@7.24.1': + "@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.3)": dependencies: - '@babel/helper-module-imports': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-module-imports': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-block-scoping@7.24.1': + "@babel/plugin-syntax-export-default-from@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-block-scoping@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-class-static-block@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-classes@7.24.1': + "@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-replace-supers': 7.24.1 - '@babel/helper-split-export-declaration': 7.22.6 - globals: 11.12.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3) - '@babel/helper-split-export-declaration': 7.22.6 - globals: 11.12.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-computed-properties@7.24.1': + "@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 - '@babel/template': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-syntax-jsx@7.24.1": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/template': 7.24.0 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-destructuring@7.24.1': + "@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-flow-strip-types@7.24.1': + "@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-flow': 7.24.1 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-function-name@7.24.1': + "@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.3)": dependencies: - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.24.3) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.24.3) - '@babel/plugin-transform-literals@7.24.1': + "@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-module-imports": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.24.3) - '@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-block-scoping@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-class-static-block@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs@7.24.1': + "@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-module-transforms': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-simple-access': 7.22.5 + "@babel/core": 7.24.3 + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-compilation-targets": 7.23.6 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-function-name": 7.23.0 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/helper-replace-supers": 7.24.1(@babel/core@7.24.3) + "@babel/helper-split-export-declaration": 7.22.6 + globals: 11.12.0 - '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-simple-access': 7.22.5 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/template": 7.24.0 - '@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-validator-identifier': 7.22.20 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-named-capturing-groups-regex@7.22.5': + "@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-create-regexp-features-plugin': 7.22.15 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.3)': + "@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.3) - '@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-builder-binary-assignment-operator-visitor": 7.22.15 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.24.3) - '@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-flow": 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - '@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-compilation-targets": 7.23.6 + "@babel/helper-function-name": 7.23.0 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.24.3) - '@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-parameters@7.24.1': + "@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.24.3) - '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-private-methods@7.24.1': + "@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-create-class-features-plugin': 7.24.1 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-module-transforms": 7.23.3(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-module-transforms": 7.23.3(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 + "@babel/helper-simple-access": 7.22.5 - '@babel/plugin-transform-private-property-in-object@7.24.1': + "@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.24.1 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5 + "@babel/core": 7.24.3 + "@babel/helper-hoist-variables": 7.22.5 + "@babel/helper-module-transforms": 7.23.3(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 + "@babel/helper-validator-identifier": 7.24.7 - '@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-module-transforms": 7.23.3(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-react-constant-elements@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-react-display-name@7.24.1': + "@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) - '@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.3)': + "@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-compilation-targets": 7.23.6 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-self@7.24.1': + "@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/helper-replace-supers": 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-self@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-source@7.24.1': + "@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-source@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-react-jsx@7.23.4': + "@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-jsx': 7.24.1 - '@babel/types': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.3)': + "@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) - '@babel/types': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.24.3) - '@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-react-constant-elements@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - regenerator-transform: 0.15.2 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-runtime@7.24.3': + "@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.3)": dependencies: - '@babel/helper-module-imports': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - babel-plugin-polyfill-corejs2: 0.4.10 - babel-plugin-polyfill-corejs3: 0.10.4 - babel-plugin-polyfill-regenerator: 0.6.1 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + "@babel/core": 7.24.3 + "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.3)': + "@babel/plugin-transform-react-jsx-self@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-module-imports': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.3) - babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.3) - babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.3) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-shorthand-properties@7.24.1': + "@babel/plugin-transform-react-jsx-source@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-module-imports": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-jsx": 7.24.1(@babel/core@7.24.3) + "@babel/types": 7.24.0 - '@babel/plugin-transform-spread@7.24.1': + "@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + "@babel/core": 7.24.3 + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + regenerator-transform: 0.15.2 - '@babel/plugin-transform-sticky-regex@7.24.1': + "@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 - '@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.3)': + "@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-module-imports": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.3) + babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.3) + babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.3) + semver: 6.3.1 + transitivePeerDependencies: + - supports-color - '@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.3)': - dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - - '@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.24.3)': - dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - - '@babel/plugin-transform-typescript@7.24.1': - dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.24.1 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-typescript': 7.24.1 - - '@babel/plugin-transform-typescript@7.24.1(@babel/core@7.24.3)': - dependencies: - '@babel/core': 7.24.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3) - - '@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.3)': - dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - - '@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.3)': - dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 - - '@babel/plugin-transform-unicode-regex@7.24.1': - dependencies: - '@babel/helper-create-regexp-features-plugin': 7.22.15 - '@babel/helper-plugin-utils': 7.24.0 - - '@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.3)': - dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 - - '@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.3)': - dependencies: - '@babel/core': 7.24.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) - '@babel/helper-plugin-utils': 7.24.0 - - '@babel/preset-env@7.24.3(@babel/core@7.24.3)': - dependencies: - '@babel/compat-data': 7.24.1 - '@babel/core': 7.24.3 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.3) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.3) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.3) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.3) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.3) - '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-class-static-block': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) - '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-typeof-symbol': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.3) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.3) + "@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.3)": + dependencies: + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + + "@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.3)": + dependencies: + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 + + "@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.3)": + dependencies: + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + + "@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.3)": + dependencies: + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + + "@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.24.3)": + dependencies: + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + + "@babel/plugin-transform-typescript@7.24.1(@babel/core@7.24.3)": + dependencies: + "@babel/core": 7.24.3 + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 + "@babel/plugin-syntax-typescript": 7.24.1(@babel/core@7.24.3) + + "@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.3)": + dependencies: + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + + "@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.3)": + dependencies: + "@babel/core": 7.24.3 + "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 + + "@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.3)": + dependencies: + "@babel/core": 7.24.3 + "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 + + "@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.3)": + dependencies: + "@babel/core": 7.24.3 + "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.3) + "@babel/helper-plugin-utils": 7.24.0 + + "@babel/preset-env@7.24.3(@babel/core@7.24.3)": + dependencies: + "@babel/compat-data": 7.24.1 + "@babel/core": 7.24.3 + "@babel/helper-compilation-targets": 7.23.6 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/helper-validator-option": 7.23.5 + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.24.3) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.24.3) + "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.24.3) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-import-assertions": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-syntax-import-attributes": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.24.3) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.24.3) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.24.3) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.24.3) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.24.3) + "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-async-generator-functions": 7.24.3(@babel/core@7.24.3) + "@babel/plugin-transform-async-to-generator": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-block-scoped-functions": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-block-scoping": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-class-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-class-static-block": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-classes": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-computed-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-destructuring": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-dotall-regex": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-duplicate-keys": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-dynamic-import": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-exponentiation-operator": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-export-namespace-from": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-for-of": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-function-name": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-json-strings": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-literals": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-logical-assignment-operators": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-member-expression-literals": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-modules-amd": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-modules-systemjs": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-modules-umd": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.24.3) + "@babel/plugin-transform-new-target": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-nullish-coalescing-operator": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-numeric-separator": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-object-rest-spread": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-object-super": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-optional-catch-binding": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-optional-chaining": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-private-methods": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-private-property-in-object": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-property-literals": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-regenerator": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-reserved-words": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-spread": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-sticky-regex": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-template-literals": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-typeof-symbol": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-unicode-escapes": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-unicode-property-regex": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-unicode-regex": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-unicode-sets-regex": 7.24.1(@babel/core@7.24.3) + "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.24.3) babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.3) babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.3) babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.3) @@ -32692,113 +48958,113 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/preset-flow@7.24.1(@babel/core@7.24.3)': + "@babel/preset-flow@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/helper-validator-option": 7.23.5 + "@babel/plugin-transform-flow-strip-types": 7.24.1(@babel/core@7.24.3) - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.3)': + "@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/types': 7.24.0 + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/types": 7.24.0 esutils: 2.0.3 - '@babel/preset-react@7.24.1(@babel/core@7.24.3)': + "@babel/preset-react@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.3) - '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/helper-validator-option": 7.23.5 + "@babel/plugin-transform-react-display-name": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx-development": 7.22.5(@babel/core@7.24.3) + "@babel/plugin-transform-react-pure-annotations": 7.24.1(@babel/core@7.24.3) - '@babel/preset-typescript@7.24.1(@babel/core@7.24.3)': + "@babel/preset-typescript@7.24.1(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-plugin-utils": 7.24.0 + "@babel/helper-validator-option": 7.23.5 + "@babel/plugin-syntax-jsx": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-typescript": 7.24.1(@babel/core@7.24.3) - '@babel/register@7.23.7(@babel/core@7.24.3)': + "@babel/register@7.23.7(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 pirates: 4.0.6 source-map-support: 0.5.21 - '@babel/regjsgen@0.8.0': {} + "@babel/regjsgen@0.8.0": {} - '@babel/runtime-corejs3@7.24.8': + "@babel/runtime-corejs3@7.24.8": dependencies: core-js-pure: 3.36.1 regenerator-runtime: 0.14.1 - '@babel/runtime@7.24.1': + "@babel/runtime@7.24.1": dependencies: regenerator-runtime: 0.14.1 - '@babel/runtime@7.25.0': + "@babel/runtime@7.25.0": dependencies: regenerator-runtime: 0.14.1 - '@babel/template@7.24.0': + "@babel/template@7.24.0": dependencies: - '@babel/code-frame': 7.24.6 - '@babel/parser': 7.24.1 - '@babel/types': 7.24.0 + "@babel/code-frame": 7.24.6 + "@babel/parser": 7.24.1 + "@babel/types": 7.24.0 - '@babel/traverse@7.24.1': + "@babel/traverse@7.24.1": dependencies: - '@babel/code-frame': 7.24.6 - '@babel/generator': 7.24.1 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.24.1 - '@babel/types': 7.24.0 + "@babel/code-frame": 7.24.6 + "@babel/generator": 7.24.1 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-function-name": 7.23.0 + "@babel/helper-hoist-variables": 7.22.5 + "@babel/helper-split-export-declaration": 7.22.6 + "@babel/parser": 7.24.1 + "@babel/types": 7.24.0 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/traverse@7.24.1(supports-color@5.5.0)': + "@babel/traverse@7.24.1(supports-color@5.5.0)": dependencies: - '@babel/code-frame': 7.24.6 - '@babel/generator': 7.24.1 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.24.1 - '@babel/types': 7.24.0 + "@babel/code-frame": 7.24.6 + "@babel/generator": 7.24.1 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-function-name": 7.23.0 + "@babel/helper-hoist-variables": 7.22.5 + "@babel/helper-split-export-declaration": 7.22.6 + "@babel/parser": 7.24.1 + "@babel/types": 7.24.0 debug: 4.3.4(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/types@7.24.0': + "@babel/types@7.24.0": dependencies: - '@babel/helper-string-parser': 7.24.1 - '@babel/helper-validator-identifier': 7.22.20 + "@babel/helper-string-parser": 7.24.1 + "@babel/helper-validator-identifier": 7.24.7 to-fast-properties: 2.0.0 - '@base2/pretty-print-object@1.0.1': {} + "@base2/pretty-print-object@1.0.1": {} - '@bcoe/v8-coverage@0.2.3': {} + "@bcoe/v8-coverage@0.2.3": {} - '@blooo/hw-app-acre@1.0.1': + "@blooo/hw-app-acre@1.0.1": dependencies: - '@ledgerhq/hw-transport': 6.31.3 - '@ledgerhq/logs': 6.12.0 + "@ledgerhq/hw-transport": 6.31.3 + "@ledgerhq/logs": 6.12.0 bip32-path: 0.4.2 bitcoinjs-lib: 5.2.0 bs58: 4.0.1 @@ -32811,44 +49077,44 @@ snapshots: typescript: 5.6.2 varuint-bitcoin: 1.1.2 - '@braintree/sanitize-url@6.0.4': {} + "@braintree/sanitize-url@6.0.4": {} - '@braze/react-native-sdk@8.4.0': {} + "@braze/react-native-sdk@8.4.0": {} - '@braze/web-sdk@4.10.2': {} + "@braze/web-sdk@4.10.2": {} - '@bundled-es-modules/cookie@2.0.0': + "@bundled-es-modules/cookie@2.0.0": dependencies: cookie: 0.5.0 - '@bundled-es-modules/statuses@1.0.1': + "@bundled-es-modules/statuses@1.0.1": dependencies: statuses: 2.0.1 - '@bundled-es-modules/tough-cookie@0.1.6': + "@bundled-es-modules/tough-cookie@0.1.6": dependencies: - '@types/tough-cookie': 4.0.5 + "@types/tough-cookie": 4.0.5 tough-cookie: 4.1.4 - '@cardano-foundation/ledgerjs-hw-app-cardano@7.1.2': + "@cardano-foundation/ledgerjs-hw-app-cardano@7.1.2": dependencies: - '@ledgerhq/hw-transport': 6.30.6 + "@ledgerhq/hw-transport": 6.30.6 base-x: 3.0.9 bech32: 1.1.4 int64-buffer: 1.0.1 - '@casperlabs/ts-results@3.3.5': + "@casperlabs/ts-results@3.3.5": dependencies: tslib: 2.6.2 - '@celo/base@3.2.0': {} + "@celo/base@3.2.0": {} - '@celo/connect@3.2.0': + "@celo/connect@3.2.0": dependencies: - '@celo/base': 3.2.0 - '@celo/utils': 3.2.0 - '@types/debug': 4.1.12 - '@types/utf8': 2.1.6 + "@celo/base": 3.2.0 + "@celo/utils": 3.2.0 + "@types/debug": 4.1.12 + "@types/utf8": 2.1.6 bignumber.js: 9.1.2 debug: 4.3.4 utf8: 3.0.0 @@ -32856,12 +49122,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@celo/connect@3.2.0(web3@1.3.6)': + "@celo/connect@3.2.0(web3@1.3.6)": dependencies: - '@celo/base': 3.2.0 - '@celo/utils': 3.2.0 - '@types/debug': 4.1.12 - '@types/utf8': 2.1.6 + "@celo/base": 3.2.0 + "@celo/utils": 3.2.0 + "@types/debug": 4.1.12 + "@types/utf8": 2.1.6 bignumber.js: 9.1.2 debug: 4.3.4 utf8: 3.0.0 @@ -32870,14 +49136,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@celo/contractkit@3.2.0': + "@celo/contractkit@3.2.0": dependencies: - '@celo/base': 3.2.0 - '@celo/connect': 3.2.0(web3@1.3.6) - '@celo/utils': 3.2.0 - '@celo/wallet-local': 3.2.0(web3@1.3.6) - '@types/bn.js': 5.1.5 - '@types/debug': 4.1.12 + "@celo/base": 3.2.0 + "@celo/connect": 3.2.0(web3@1.3.6) + "@celo/utils": 3.2.0 + "@celo/wallet-local": 3.2.0(web3@1.3.6) + "@types/bn.js": 5.1.5 + "@types/debug": 4.1.12 bignumber.js: 9.1.2 cross-fetch: 3.1.8 debug: 4.3.4 @@ -32892,13 +49158,13 @@ snapshots: - supports-color - utf-8-validate - '@celo/utils@3.2.0': + "@celo/utils@3.2.0": dependencies: - '@celo/base': 3.2.0 - '@types/bn.js': 5.1.5 - '@types/elliptic': 6.4.18 - '@types/ethereumjs-util': 5.2.0 - '@types/node': 10.17.60 + "@celo/base": 3.2.0 + "@types/bn.js": 5.1.5 + "@types/elliptic": 6.4.18 + "@types/ethereumjs-util": 5.2.0 + "@types/node": 10.17.60 bignumber.js: 9.1.2 elliptic: 6.5.5 ethereumjs-util: 5.2.1 @@ -32908,13 +49174,13 @@ snapshots: web3-eth-abi: 1.3.6 web3-utils: 1.3.6 - '@celo/wallet-base@3.2.0': + "@celo/wallet-base@3.2.0": dependencies: - '@celo/base': 3.2.0 - '@celo/connect': 3.2.0 - '@celo/utils': 3.2.0 - '@types/debug': 4.1.12 - '@types/ethereumjs-util': 5.2.0 + "@celo/base": 3.2.0 + "@celo/connect": 3.2.0 + "@celo/utils": 3.2.0 + "@types/debug": 4.1.12 + "@types/ethereumjs-util": 5.2.0 bignumber.js: 9.1.2 debug: 4.3.4 eth-lib: 0.2.8 @@ -32923,13 +49189,13 @@ snapshots: - supports-color - web3 - '@celo/wallet-base@3.2.0(web3@1.3.6)': + "@celo/wallet-base@3.2.0(web3@1.3.6)": dependencies: - '@celo/base': 3.2.0 - '@celo/connect': 3.2.0(web3@1.3.6) - '@celo/utils': 3.2.0 - '@types/debug': 4.1.12 - '@types/ethereumjs-util': 5.2.0 + "@celo/base": 3.2.0 + "@celo/connect": 3.2.0(web3@1.3.6) + "@celo/utils": 3.2.0 + "@types/debug": 4.1.12 + "@types/ethereumjs-util": 5.2.0 bignumber.js: 9.1.2 debug: 4.3.4 eth-lib: 0.2.8 @@ -32938,16 +49204,16 @@ snapshots: - supports-color - web3 - '@celo/wallet-ledger@3.2.0': + "@celo/wallet-ledger@3.2.0": dependencies: - '@celo/base': 3.2.0 - '@celo/connect': 3.2.0 - '@celo/utils': 3.2.0 - '@celo/wallet-base': 3.2.0 - '@celo/wallet-remote': 3.2.0 - '@ledgerhq/hw-app-eth': 5.11.0 - '@ledgerhq/hw-transport': 5.11.0 - '@types/ethereumjs-util': 5.2.0 + "@celo/base": 3.2.0 + "@celo/connect": 3.2.0 + "@celo/utils": 3.2.0 + "@celo/wallet-base": 3.2.0 + "@celo/wallet-remote": 3.2.0 + "@ledgerhq/hw-app-eth": 5.11.0 + "@ledgerhq/hw-transport": 5.11.0 + "@types/ethereumjs-util": 5.2.0 debug: 4.3.4 eth-lib: 0.2.8 ethereumjs-util: 5.2.1 @@ -32955,42 +49221,42 @@ snapshots: - supports-color - web3 - '@celo/wallet-local@3.2.0(web3@1.3.6)': + "@celo/wallet-local@3.2.0(web3@1.3.6)": dependencies: - '@celo/base': 3.2.0 - '@celo/connect': 3.2.0(web3@1.3.6) - '@celo/utils': 3.2.0 - '@celo/wallet-base': 3.2.0(web3@1.3.6) - '@types/ethereumjs-util': 5.2.0 + "@celo/base": 3.2.0 + "@celo/connect": 3.2.0(web3@1.3.6) + "@celo/utils": 3.2.0 + "@celo/wallet-base": 3.2.0(web3@1.3.6) + "@types/ethereumjs-util": 5.2.0 eth-lib: 0.2.8 ethereumjs-util: 5.2.1 transitivePeerDependencies: - supports-color - web3 - '@celo/wallet-remote@3.2.0': + "@celo/wallet-remote@3.2.0": dependencies: - '@celo/base': 3.2.0 - '@celo/connect': 3.2.0 - '@celo/utils': 3.2.0 - '@celo/wallet-base': 3.2.0 - '@types/debug': 4.1.12 - '@types/ethereumjs-util': 5.2.0 + "@celo/base": 3.2.0 + "@celo/connect": 3.2.0 + "@celo/utils": 3.2.0 + "@celo/wallet-base": 3.2.0 + "@types/debug": 4.1.12 + "@types/ethereumjs-util": 5.2.0 eth-lib: 0.2.8 ethereumjs-util: 5.2.1 transitivePeerDependencies: - supports-color - web3 - '@changesets/apply-release-plan@7.0.4': + "@changesets/apply-release-plan@7.0.4": dependencies: - '@babel/runtime': 7.25.0 - '@changesets/config': 3.0.2 - '@changesets/get-version-range-type': 0.4.0 - '@changesets/git': 3.0.0 - '@changesets/should-skip-package': 0.1.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 + "@babel/runtime": 7.25.0 + "@changesets/config": 3.0.2 + "@changesets/get-version-range-type": 0.4.0 + "@changesets/git": 3.0.0 + "@changesets/should-skip-package": 0.1.0 + "@changesets/types": 6.0.0 + "@manypkg/get-packages": 1.1.3 detect-indent: 6.1.0 fs-extra: 7.0.1 lodash.startcase: 4.4.0 @@ -32999,47 +49265,47 @@ snapshots: resolve-from: 5.0.0 semver: 7.6.3 - '@changesets/assemble-release-plan@6.0.3': + "@changesets/assemble-release-plan@6.0.3": dependencies: - '@babel/runtime': 7.25.0 - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.1.1 - '@changesets/should-skip-package': 0.1.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 + "@babel/runtime": 7.25.0 + "@changesets/errors": 0.2.0 + "@changesets/get-dependents-graph": 2.1.1 + "@changesets/should-skip-package": 0.1.0 + "@changesets/types": 6.0.0 + "@manypkg/get-packages": 1.1.3 semver: 7.6.3 - '@changesets/changelog-git@0.2.0': + "@changesets/changelog-git@0.2.0": dependencies: - '@changesets/types': 6.0.0 + "@changesets/types": 6.0.0 - '@changesets/changelog-github@0.5.0': + "@changesets/changelog-github@0.5.0": dependencies: - '@changesets/get-github-info': 0.6.0(patch_hash=7jzpsqogb5i6art53pk3h33ix4) - '@changesets/types': 6.0.0 + "@changesets/get-github-info": 0.6.0(patch_hash=7jzpsqogb5i6art53pk3h33ix4) + "@changesets/types": 6.0.0 dotenv: 8.6.0 transitivePeerDependencies: - encoding - '@changesets/cli@2.27.7': - dependencies: - '@babel/runtime': 7.25.0 - '@changesets/apply-release-plan': 7.0.4 - '@changesets/assemble-release-plan': 6.0.3 - '@changesets/changelog-git': 0.2.0 - '@changesets/config': 3.0.2 - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.1.1 - '@changesets/get-release-plan': 4.0.3 - '@changesets/git': 3.0.0 - '@changesets/logger': 0.1.0 - '@changesets/pre': 2.0.0 - '@changesets/read': 0.6.0 - '@changesets/should-skip-package': 0.1.0 - '@changesets/types': 6.0.0 - '@changesets/write': 0.3.1 - '@manypkg/get-packages': 1.1.3 - '@types/semver': 7.5.8 + "@changesets/cli@2.27.7": + dependencies: + "@babel/runtime": 7.25.0 + "@changesets/apply-release-plan": 7.0.4 + "@changesets/assemble-release-plan": 6.0.3 + "@changesets/changelog-git": 0.2.0 + "@changesets/config": 3.0.2 + "@changesets/errors": 0.2.0 + "@changesets/get-dependents-graph": 2.1.1 + "@changesets/get-release-plan": 4.0.3 + "@changesets/git": 3.0.0 + "@changesets/logger": 0.1.0 + "@changesets/pre": 2.0.0 + "@changesets/read": 0.6.0 + "@changesets/should-skip-package": 0.1.0 + "@changesets/types": 6.0.0 + "@changesets/write": 0.3.1 + "@manypkg/get-packages": 1.1.3 + "@types/semver": 7.5.8 ansi-colors: 4.1.3 chalk: 2.4.2 ci-info: 3.9.0 @@ -33056,224 +49322,224 @@ snapshots: spawndamnit: 2.0.0 term-size: 2.2.1 - '@changesets/config@3.0.2': + "@changesets/config@3.0.2": dependencies: - '@changesets/errors': 0.2.0 - '@changesets/get-dependents-graph': 2.1.1 - '@changesets/logger': 0.1.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 + "@changesets/errors": 0.2.0 + "@changesets/get-dependents-graph": 2.1.1 + "@changesets/logger": 0.1.0 + "@changesets/types": 6.0.0 + "@manypkg/get-packages": 1.1.3 fs-extra: 7.0.1 micromatch: 4.0.7 - '@changesets/errors@0.2.0': + "@changesets/errors@0.2.0": dependencies: extendable-error: 0.1.7 - '@changesets/get-dependents-graph@2.1.1': + "@changesets/get-dependents-graph@2.1.1": dependencies: - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 + "@changesets/types": 6.0.0 + "@manypkg/get-packages": 1.1.3 chalk: 2.4.2 fs-extra: 7.0.1 semver: 7.6.3 - '@changesets/get-github-info@0.6.0(patch_hash=7jzpsqogb5i6art53pk3h33ix4)': + "@changesets/get-github-info@0.6.0(patch_hash=7jzpsqogb5i6art53pk3h33ix4)": dependencies: dataloader: 1.4.0 node-fetch: 2.7.0 transitivePeerDependencies: - encoding - '@changesets/get-release-plan@4.0.3': + "@changesets/get-release-plan@4.0.3": dependencies: - '@babel/runtime': 7.25.0 - '@changesets/assemble-release-plan': 6.0.3 - '@changesets/config': 3.0.2 - '@changesets/pre': 2.0.0 - '@changesets/read': 0.6.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 + "@babel/runtime": 7.25.0 + "@changesets/assemble-release-plan": 6.0.3 + "@changesets/config": 3.0.2 + "@changesets/pre": 2.0.0 + "@changesets/read": 0.6.0 + "@changesets/types": 6.0.0 + "@manypkg/get-packages": 1.1.3 - '@changesets/get-version-range-type@0.4.0': {} + "@changesets/get-version-range-type@0.4.0": {} - '@changesets/git@3.0.0': + "@changesets/git@3.0.0": dependencies: - '@babel/runtime': 7.25.0 - '@changesets/errors': 0.2.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 + "@babel/runtime": 7.25.0 + "@changesets/errors": 0.2.0 + "@changesets/types": 6.0.0 + "@manypkg/get-packages": 1.1.3 is-subdir: 1.2.0 micromatch: 4.0.7 spawndamnit: 2.0.0 - '@changesets/logger@0.1.0': + "@changesets/logger@0.1.0": dependencies: chalk: 2.4.2 - '@changesets/parse@0.4.0': + "@changesets/parse@0.4.0": dependencies: - '@changesets/types': 6.0.0 + "@changesets/types": 6.0.0 js-yaml: 3.14.1 - '@changesets/pre@2.0.0': + "@changesets/pre@2.0.0": dependencies: - '@babel/runtime': 7.25.0 - '@changesets/errors': 0.2.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 + "@babel/runtime": 7.25.0 + "@changesets/errors": 0.2.0 + "@changesets/types": 6.0.0 + "@manypkg/get-packages": 1.1.3 fs-extra: 7.0.1 - '@changesets/read@0.6.0': + "@changesets/read@0.6.0": dependencies: - '@babel/runtime': 7.25.0 - '@changesets/git': 3.0.0 - '@changesets/logger': 0.1.0 - '@changesets/parse': 0.4.0 - '@changesets/types': 6.0.0 + "@babel/runtime": 7.25.0 + "@changesets/git": 3.0.0 + "@changesets/logger": 0.1.0 + "@changesets/parse": 0.4.0 + "@changesets/types": 6.0.0 chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 - '@changesets/should-skip-package@0.1.0': + "@changesets/should-skip-package@0.1.0": dependencies: - '@babel/runtime': 7.25.0 - '@changesets/types': 6.0.0 - '@manypkg/get-packages': 1.1.3 + "@babel/runtime": 7.25.0 + "@changesets/types": 6.0.0 + "@manypkg/get-packages": 1.1.3 - '@changesets/types@4.1.0': {} + "@changesets/types@4.1.0": {} - '@changesets/types@6.0.0': {} + "@changesets/types@6.0.0": {} - '@changesets/write@0.3.1': + "@changesets/write@0.3.1": dependencies: - '@babel/runtime': 7.25.0 - '@changesets/types': 6.0.0 + "@babel/runtime": 7.25.0 + "@changesets/types": 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.8 - '@codemirror/autocomplete@6.16.3(@codemirror/state@6.4.1)(@codemirror/view@6.28.2)': + "@codemirror/autocomplete@6.16.3(@codemirror/state@6.4.1)(@codemirror/view@6.28.2)": dependencies: - '@codemirror/language': 6.10.2 - '@codemirror/state': 6.4.1 - '@codemirror/view': 6.28.2 - '@lezer/common': 1.2.1 + "@codemirror/language": 6.10.2 + "@codemirror/state": 6.4.1 + "@codemirror/view": 6.28.2 + "@lezer/common": 1.2.1 - '@codemirror/commands@6.6.0': + "@codemirror/commands@6.6.0": dependencies: - '@codemirror/language': 6.10.2 - '@codemirror/state': 6.4.1 - '@codemirror/view': 6.28.2 - '@lezer/common': 1.2.1 + "@codemirror/language": 6.10.2 + "@codemirror/state": 6.4.1 + "@codemirror/view": 6.28.2 + "@lezer/common": 1.2.1 - '@codemirror/lang-json@6.0.1': + "@codemirror/lang-json@6.0.1": dependencies: - '@codemirror/language': 6.10.2 - '@lezer/json': 1.0.2 + "@codemirror/language": 6.10.2 + "@lezer/json": 1.0.2 - '@codemirror/language@6.10.2': + "@codemirror/language@6.10.2": dependencies: - '@codemirror/state': 6.4.1 - '@codemirror/view': 6.28.2 - '@lezer/common': 1.2.1 - '@lezer/highlight': 1.2.0 - '@lezer/lr': 1.4.1 + "@codemirror/state": 6.4.1 + "@codemirror/view": 6.28.2 + "@lezer/common": 1.2.1 + "@lezer/highlight": 1.2.0 + "@lezer/lr": 1.4.1 style-mod: 4.1.2 - '@codemirror/lint@6.8.1': + "@codemirror/lint@6.8.1": dependencies: - '@codemirror/state': 6.4.1 - '@codemirror/view': 6.28.2 + "@codemirror/state": 6.4.1 + "@codemirror/view": 6.28.2 crelt: 1.0.6 - '@codemirror/search@6.5.6': + "@codemirror/search@6.5.6": dependencies: - '@codemirror/state': 6.4.1 - '@codemirror/view': 6.28.2 + "@codemirror/state": 6.4.1 + "@codemirror/view": 6.28.2 crelt: 1.0.6 - '@codemirror/state@6.4.1': {} + "@codemirror/state@6.4.1": {} - '@codemirror/theme-one-dark@6.1.2': + "@codemirror/theme-one-dark@6.1.2": dependencies: - '@codemirror/language': 6.10.2 - '@codemirror/state': 6.4.1 - '@codemirror/view': 6.28.2 - '@lezer/highlight': 1.2.0 + "@codemirror/language": 6.10.2 + "@codemirror/state": 6.4.1 + "@codemirror/view": 6.28.2 + "@lezer/highlight": 1.2.0 - '@codemirror/view@6.28.2': + "@codemirror/view@6.28.2": dependencies: - '@codemirror/state': 6.4.1 + "@codemirror/state": 6.4.1 style-mod: 4.1.2 w3c-keyname: 2.2.8 - '@colors/colors@1.5.0': + "@colors/colors@1.5.0": optional: true - '@colors/colors@1.6.0': {} + "@colors/colors@1.6.0": {} - '@commitlint/cli@17.8.1': + "@commitlint/cli@17.8.1": dependencies: - '@commitlint/format': 17.8.1 - '@commitlint/lint': 17.8.1 - '@commitlint/load': 17.8.1 - '@commitlint/read': 17.8.1 - '@commitlint/types': 17.8.1 + "@commitlint/format": 17.8.1 + "@commitlint/lint": 17.8.1 + "@commitlint/load": 17.8.1 + "@commitlint/read": 17.8.1 + "@commitlint/types": 17.8.1 execa: 5.1.1 lodash.isfunction: 3.0.9 resolve-from: 5.0.0 resolve-global: 1.0.0 yargs: 17.7.2 transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' + - "@swc/core" + - "@swc/wasm" - source-map-support - '@commitlint/config-conventional@17.8.1': + "@commitlint/config-conventional@17.8.1": dependencies: conventional-changelog-conventionalcommits: 6.1.0 - '@commitlint/config-validator@17.8.1': + "@commitlint/config-validator@17.8.1": dependencies: - '@commitlint/types': 17.8.1 + "@commitlint/types": 17.8.1 ajv: 8.17.1 - '@commitlint/ensure@17.8.1': + "@commitlint/ensure@17.8.1": dependencies: - '@commitlint/types': 17.8.1 + "@commitlint/types": 17.8.1 lodash.camelcase: 4.3.0 lodash.kebabcase: 4.1.1 lodash.snakecase: 4.1.1 lodash.startcase: 4.4.0 lodash.upperfirst: 4.3.1 - '@commitlint/execute-rule@17.8.1': {} + "@commitlint/execute-rule@17.8.1": {} - '@commitlint/format@17.8.1': + "@commitlint/format@17.8.1": dependencies: - '@commitlint/types': 17.8.1 + "@commitlint/types": 17.8.1 chalk: 4.1.2 - '@commitlint/is-ignored@17.8.1': + "@commitlint/is-ignored@17.8.1": dependencies: - '@commitlint/types': 17.8.1 + "@commitlint/types": 17.8.1 semver: 7.5.4 - '@commitlint/lint@17.8.1': + "@commitlint/lint@17.8.1": dependencies: - '@commitlint/is-ignored': 17.8.1 - '@commitlint/parse': 17.8.1 - '@commitlint/rules': 17.8.1 - '@commitlint/types': 17.8.1 + "@commitlint/is-ignored": 17.8.1 + "@commitlint/parse": 17.8.1 + "@commitlint/rules": 17.8.1 + "@commitlint/types": 17.8.1 - '@commitlint/load@17.8.1': + "@commitlint/load@17.8.1": dependencies: - '@commitlint/config-validator': 17.8.1 - '@commitlint/execute-rule': 17.8.1 - '@commitlint/resolve-extends': 17.8.1 - '@commitlint/types': 17.8.1 - '@types/node': 20.5.1 + "@commitlint/config-validator": 17.8.1 + "@commitlint/execute-rule": 17.8.1 + "@commitlint/resolve-extends": 17.8.1 + "@commitlint/types": 17.8.1 + "@types/node": 20.5.1 chalk: 4.1.2 cosmiconfig: 8.3.6(typescript@5.4.5) cosmiconfig-typescript-loader: 4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6(typescript@5.4.5))(ts-node@10.9.2(@types/node@20.5.1)(typescript@5.4.5))(typescript@5.4.5) @@ -33284,113 +49550,113 @@ snapshots: ts-node: 10.9.2(@types/node@20.5.1)(typescript@5.4.5) typescript: 5.4.5 transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' + - "@swc/core" + - "@swc/wasm" - source-map-support - '@commitlint/message@17.8.1': {} + "@commitlint/message@17.8.1": {} - '@commitlint/parse@17.8.1': + "@commitlint/parse@17.8.1": dependencies: - '@commitlint/types': 17.8.1 + "@commitlint/types": 17.8.1 conventional-changelog-angular: 6.0.0 conventional-commits-parser: 4.0.0 - '@commitlint/prompt-cli@17.8.1': + "@commitlint/prompt-cli@17.8.1": dependencies: - '@commitlint/prompt': 17.8.1 + "@commitlint/prompt": 17.8.1 execa: 5.1.1 inquirer: 6.5.2 transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' + - "@swc/core" + - "@swc/wasm" - source-map-support - '@commitlint/prompt@17.8.1': + "@commitlint/prompt@17.8.1": dependencies: - '@commitlint/ensure': 17.8.1 - '@commitlint/load': 17.8.1 - '@commitlint/types': 17.8.1 + "@commitlint/ensure": 17.8.1 + "@commitlint/load": 17.8.1 + "@commitlint/types": 17.8.1 chalk: 4.1.2 inquirer: 6.5.2 transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' + - "@swc/core" + - "@swc/wasm" - source-map-support - '@commitlint/read@17.8.1': + "@commitlint/read@17.8.1": dependencies: - '@commitlint/top-level': 17.8.1 - '@commitlint/types': 17.8.1 + "@commitlint/top-level": 17.8.1 + "@commitlint/types": 17.8.1 fs-extra: 11.2.0 git-raw-commits: 2.0.11 minimist: 1.2.8 - '@commitlint/resolve-extends@17.8.1': + "@commitlint/resolve-extends@17.8.1": dependencies: - '@commitlint/config-validator': 17.8.1 - '@commitlint/types': 17.8.1 + "@commitlint/config-validator": 17.8.1 + "@commitlint/types": 17.8.1 import-fresh: 3.3.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 resolve-global: 1.0.0 - '@commitlint/rules@17.8.1': + "@commitlint/rules@17.8.1": dependencies: - '@commitlint/ensure': 17.8.1 - '@commitlint/message': 17.8.1 - '@commitlint/to-lines': 17.8.1 - '@commitlint/types': 17.8.1 + "@commitlint/ensure": 17.8.1 + "@commitlint/message": 17.8.1 + "@commitlint/to-lines": 17.8.1 + "@commitlint/types": 17.8.1 execa: 5.1.1 - '@commitlint/to-lines@17.8.1': {} + "@commitlint/to-lines@17.8.1": {} - '@commitlint/top-level@17.8.1': + "@commitlint/top-level@17.8.1": dependencies: find-up: 5.0.0 - '@commitlint/types@17.8.1': + "@commitlint/types@17.8.1": dependencies: chalk: 4.1.2 - '@confio/ics23@0.6.8': + "@confio/ics23@0.6.8": dependencies: - '@noble/hashes': 1.4.0 + "@noble/hashes": 1.4.0 protobufjs: 6.11.4 - '@cosmjs/amino@0.25.0-alpha.2': + "@cosmjs/amino@0.25.0-alpha.2": dependencies: - '@cosmjs/crypto': 0.25.6 - '@cosmjs/encoding': 0.25.6 - '@cosmjs/math': 0.25.6 - '@cosmjs/utils': 0.25.6 + "@cosmjs/crypto": 0.25.6 + "@cosmjs/encoding": 0.25.6 + "@cosmjs/math": 0.25.6 + "@cosmjs/utils": 0.25.6 - '@cosmjs/amino@0.25.6': + "@cosmjs/amino@0.25.6": dependencies: - '@cosmjs/crypto': 0.25.6 - '@cosmjs/encoding': 0.25.6 - '@cosmjs/math': 0.25.6 - '@cosmjs/utils': 0.25.6 + "@cosmjs/crypto": 0.25.6 + "@cosmjs/encoding": 0.25.6 + "@cosmjs/math": 0.25.6 + "@cosmjs/utils": 0.25.6 - '@cosmjs/amino@0.26.8': + "@cosmjs/amino@0.26.8": dependencies: - '@cosmjs/crypto': 0.26.8 - '@cosmjs/encoding': 0.26.8 - '@cosmjs/math': 0.26.8 - '@cosmjs/utils': 0.26.8 + "@cosmjs/crypto": 0.26.8 + "@cosmjs/encoding": 0.26.8 + "@cosmjs/math": 0.26.8 + "@cosmjs/utils": 0.26.8 - '@cosmjs/amino@0.31.3': + "@cosmjs/amino@0.31.3": dependencies: - '@cosmjs/crypto': 0.31.3 - '@cosmjs/encoding': 0.31.3 - '@cosmjs/math': 0.31.3 - '@cosmjs/utils': 0.31.3 + "@cosmjs/crypto": 0.31.3 + "@cosmjs/encoding": 0.31.3 + "@cosmjs/math": 0.31.3 + "@cosmjs/utils": 0.31.3 - '@cosmjs/crypto@0.24.1': + "@cosmjs/crypto@0.24.1": dependencies: - '@cosmjs/encoding': 0.24.1 - '@cosmjs/math': 0.24.1 - '@cosmjs/utils': 0.24.1 + "@cosmjs/encoding": 0.24.1 + "@cosmjs/math": 0.24.1 + "@cosmjs/utils": 0.24.1 bip39: 3.1.0 bn.js: 4.12.0 elliptic: 6.5.5 @@ -33401,11 +49667,11 @@ snapshots: sha.js: 2.4.11 unorm: 1.6.0 - '@cosmjs/crypto@0.25.6': + "@cosmjs/crypto@0.25.6": dependencies: - '@cosmjs/encoding': 0.25.6 - '@cosmjs/math': 0.25.6 - '@cosmjs/utils': 0.25.6 + "@cosmjs/encoding": 0.25.6 + "@cosmjs/math": 0.25.6 + "@cosmjs/utils": 0.25.6 bip39: 3.1.0 bn.js: 4.12.0 elliptic: 6.5.5 @@ -33414,128 +49680,128 @@ snapshots: ripemd160: 2.0.2 sha.js: 2.4.11 - '@cosmjs/crypto@0.26.8': + "@cosmjs/crypto@0.26.8": dependencies: - '@cosmjs/encoding': 0.26.8 - '@cosmjs/math': 0.26.8 - '@cosmjs/utils': 0.26.8 - '@noble/hashes': 1.4.0 + "@cosmjs/encoding": 0.26.8 + "@cosmjs/math": 0.26.8 + "@cosmjs/utils": 0.26.8 + "@noble/hashes": 1.4.0 bn.js: 5.2.1 elliptic: 6.5.5 libsodium-wrappers: 0.7.13 - '@cosmjs/crypto@0.31.3': + "@cosmjs/crypto@0.31.3": dependencies: - '@cosmjs/encoding': 0.31.3 - '@cosmjs/math': 0.31.3 - '@cosmjs/utils': 0.31.3 - '@noble/hashes': 1.4.0 + "@cosmjs/encoding": 0.31.3 + "@cosmjs/math": 0.31.3 + "@cosmjs/utils": 0.31.3 + "@noble/hashes": 1.4.0 bn.js: 5.2.1 elliptic: 6.5.5 libsodium-wrappers-sumo: 0.7.13 - '@cosmjs/encoding@0.23.1': + "@cosmjs/encoding@0.23.1": dependencies: base64-js: 1.5.1 bech32: 1.1.4 readonly-date: 1.0.0 - '@cosmjs/encoding@0.24.1': + "@cosmjs/encoding@0.24.1": dependencies: base64-js: 1.5.1 bech32: 1.1.4 readonly-date: 1.0.0 - '@cosmjs/encoding@0.25.6': + "@cosmjs/encoding@0.25.6": dependencies: base64-js: 1.5.1 bech32: 1.1.4 readonly-date: 1.0.0 - '@cosmjs/encoding@0.26.8': + "@cosmjs/encoding@0.26.8": dependencies: base64-js: 1.5.1 bech32: 1.1.4 readonly-date: 1.0.0 - '@cosmjs/encoding@0.31.3': + "@cosmjs/encoding@0.31.3": dependencies: base64-js: 1.5.1 bech32: 1.1.4 readonly-date: 1.0.0 - '@cosmjs/json-rpc@0.25.6': + "@cosmjs/json-rpc@0.25.6": dependencies: - '@cosmjs/stream': 0.25.6 + "@cosmjs/stream": 0.25.6 xstream: 11.14.0 - '@cosmjs/json-rpc@0.26.8': + "@cosmjs/json-rpc@0.26.8": dependencies: - '@cosmjs/stream': 0.26.8 + "@cosmjs/stream": 0.26.8 xstream: 11.14.0 - '@cosmjs/launchpad@0.24.1': + "@cosmjs/launchpad@0.24.1": dependencies: - '@cosmjs/crypto': 0.24.1 - '@cosmjs/encoding': 0.24.1 - '@cosmjs/math': 0.24.1 - '@cosmjs/utils': 0.24.1 + "@cosmjs/crypto": 0.24.1 + "@cosmjs/encoding": 0.24.1 + "@cosmjs/math": 0.24.1 + "@cosmjs/utils": 0.24.1 axios: 0.21.4 fast-deep-equal: 3.1.3 - '@cosmjs/math@0.23.1': + "@cosmjs/math@0.23.1": dependencies: bn.js: 4.12.0 - '@cosmjs/math@0.24.1': + "@cosmjs/math@0.24.1": dependencies: bn.js: 4.12.0 - '@cosmjs/math@0.25.6': + "@cosmjs/math@0.25.6": dependencies: bn.js: 4.12.0 - '@cosmjs/math@0.26.8': + "@cosmjs/math@0.26.8": dependencies: bn.js: 5.2.1 - '@cosmjs/math@0.31.3': + "@cosmjs/math@0.31.3": dependencies: bn.js: 5.2.1 - '@cosmjs/proto-signing@0.24.1': + "@cosmjs/proto-signing@0.24.1": dependencies: - '@cosmjs/crypto': 0.24.1 - '@cosmjs/encoding': 0.24.1 - '@cosmjs/launchpad': 0.24.1 - '@cosmjs/math': 0.24.1 - '@cosmjs/utils': 0.24.1 + "@cosmjs/crypto": 0.24.1 + "@cosmjs/encoding": 0.24.1 + "@cosmjs/launchpad": 0.24.1 + "@cosmjs/math": 0.24.1 + "@cosmjs/utils": 0.24.1 long: 4.0.0 protobufjs: 6.10.3 - '@cosmjs/proto-signing@0.25.6': + "@cosmjs/proto-signing@0.25.6": dependencies: - '@cosmjs/amino': 0.25.6 - '@cosmjs/crypto': 0.25.6 - '@cosmjs/encoding': 0.25.6 - '@cosmjs/math': 0.25.6 - '@cosmjs/utils': 0.25.6 + "@cosmjs/amino": 0.25.6 + "@cosmjs/crypto": 0.25.6 + "@cosmjs/encoding": 0.25.6 + "@cosmjs/math": 0.25.6 + "@cosmjs/utils": 0.25.6 long: 4.0.0 protobufjs: 6.10.3 - '@cosmjs/proto-signing@0.26.8': + "@cosmjs/proto-signing@0.26.8": dependencies: - '@cosmjs/amino': 0.26.8 - '@cosmjs/crypto': 0.26.8 - '@cosmjs/encoding': 0.26.8 - '@cosmjs/math': 0.26.8 - '@cosmjs/utils': 0.26.8 + "@cosmjs/amino": 0.26.8 + "@cosmjs/crypto": 0.26.8 + "@cosmjs/encoding": 0.26.8 + "@cosmjs/math": 0.26.8 + "@cosmjs/utils": 0.26.8 cosmjs-types: 0.4.1 long: 4.0.0 - '@cosmjs/socket@0.25.6': + "@cosmjs/socket@0.25.6": dependencies: - '@cosmjs/stream': 0.25.6 + "@cosmjs/stream": 0.25.6 isomorphic-ws: 4.0.1(ws@7.5.10) ws: 7.5.10 xstream: 11.14.0 @@ -33543,9 +49809,9 @@ snapshots: - bufferutil - utf-8-validate - '@cosmjs/socket@0.26.8': + "@cosmjs/socket@0.26.8": dependencies: - '@cosmjs/stream': 0.26.8 + "@cosmjs/stream": 0.26.8 isomorphic-ws: 4.0.1(ws@7.5.10) ws: 7.5.10 xstream: 11.14.0 @@ -33553,32 +49819,32 @@ snapshots: - bufferutil - utf-8-validate - '@cosmjs/stargate@0.25.0-alpha.2': + "@cosmjs/stargate@0.25.0-alpha.2": dependencies: - '@confio/ics23': 0.6.8 - '@cosmjs/amino': 0.25.6 - '@cosmjs/encoding': 0.25.6 - '@cosmjs/math': 0.25.6 - '@cosmjs/proto-signing': 0.25.6 - '@cosmjs/stream': 0.25.6 - '@cosmjs/tendermint-rpc': 0.25.0-alpha.2 - '@cosmjs/utils': 0.25.6 + "@confio/ics23": 0.6.8 + "@cosmjs/amino": 0.25.6 + "@cosmjs/encoding": 0.25.6 + "@cosmjs/math": 0.25.6 + "@cosmjs/proto-signing": 0.25.6 + "@cosmjs/stream": 0.25.6 + "@cosmjs/tendermint-rpc": 0.25.0-alpha.2 + "@cosmjs/utils": 0.25.6 long: 4.0.0 protobufjs: 6.10.3 transitivePeerDependencies: - bufferutil - utf-8-validate - '@cosmjs/stargate@0.26.8': + "@cosmjs/stargate@0.26.8": dependencies: - '@confio/ics23': 0.6.8 - '@cosmjs/amino': 0.26.8 - '@cosmjs/encoding': 0.26.8 - '@cosmjs/math': 0.26.8 - '@cosmjs/proto-signing': 0.26.8 - '@cosmjs/stream': 0.26.8 - '@cosmjs/tendermint-rpc': 0.26.8 - '@cosmjs/utils': 0.26.8 + "@confio/ics23": 0.6.8 + "@cosmjs/amino": 0.26.8 + "@cosmjs/encoding": 0.26.8 + "@cosmjs/math": 0.26.8 + "@cosmjs/proto-signing": 0.26.8 + "@cosmjs/stream": 0.26.8 + "@cosmjs/tendermint-rpc": 0.26.8 + "@cosmjs/utils": 0.26.8 cosmjs-types: 0.4.1 long: 4.0.0 protobufjs: 6.11.4 @@ -33587,23 +49853,23 @@ snapshots: - bufferutil - utf-8-validate - '@cosmjs/stream@0.25.6': + "@cosmjs/stream@0.25.6": dependencies: xstream: 11.14.0 - '@cosmjs/stream@0.26.8': + "@cosmjs/stream@0.26.8": dependencies: xstream: 11.14.0 - '@cosmjs/tendermint-rpc@0.25.0-alpha.2': + "@cosmjs/tendermint-rpc@0.25.0-alpha.2": dependencies: - '@cosmjs/crypto': 0.25.6 - '@cosmjs/encoding': 0.25.6 - '@cosmjs/json-rpc': 0.25.6 - '@cosmjs/math': 0.25.6 - '@cosmjs/socket': 0.25.6 - '@cosmjs/stream': 0.25.6 - '@cosmjs/utils': 0.25.0-alpha.2 + "@cosmjs/crypto": 0.25.6 + "@cosmjs/encoding": 0.25.6 + "@cosmjs/json-rpc": 0.25.6 + "@cosmjs/math": 0.25.6 + "@cosmjs/socket": 0.25.6 + "@cosmjs/stream": 0.25.6 + "@cosmjs/utils": 0.25.0-alpha.2 axios: 0.21.4 readonly-date: 1.0.0 xstream: 11.14.0 @@ -33611,15 +49877,15 @@ snapshots: - bufferutil - utf-8-validate - '@cosmjs/tendermint-rpc@0.26.8': + "@cosmjs/tendermint-rpc@0.26.8": dependencies: - '@cosmjs/crypto': 0.26.8 - '@cosmjs/encoding': 0.26.8 - '@cosmjs/json-rpc': 0.26.8 - '@cosmjs/math': 0.26.8 - '@cosmjs/socket': 0.26.8 - '@cosmjs/stream': 0.26.8 - '@cosmjs/utils': 0.26.8 + "@cosmjs/crypto": 0.26.8 + "@cosmjs/encoding": 0.26.8 + "@cosmjs/json-rpc": 0.26.8 + "@cosmjs/math": 0.26.8 + "@cosmjs/socket": 0.26.8 + "@cosmjs/stream": 0.26.8 + "@cosmjs/utils": 0.26.8 axios: 0.21.4 readonly-date: 1.0.0 xstream: 11.14.0 @@ -33627,17 +49893,17 @@ snapshots: - bufferutil - utf-8-validate - '@cosmjs/utils@0.24.1': {} + "@cosmjs/utils@0.24.1": {} - '@cosmjs/utils@0.25.0-alpha.2': {} + "@cosmjs/utils@0.25.0-alpha.2": {} - '@cosmjs/utils@0.25.6': {} + "@cosmjs/utils@0.25.6": {} - '@cosmjs/utils@0.26.8': {} + "@cosmjs/utils@0.26.8": {} - '@cosmjs/utils@0.31.3': {} + "@cosmjs/utils@0.31.3": {} - '@craftamap/esbuild-plugin-html@0.6.1(esbuild@0.19.12)': + "@craftamap/esbuild-plugin-html@0.6.1(esbuild@0.19.12)": dependencies: esbuild: 0.19.12 jsdom: 17.0.0 @@ -33648,14 +49914,14 @@ snapshots: - supports-color - utf-8-validate - '@crypto-org-chain/chain-jslib@1.1.2': + "@crypto-org-chain/chain-jslib@1.1.2": dependencies: - '@cosmjs/amino': 0.25.0-alpha.2 - '@cosmjs/encoding': 0.23.1 - '@cosmjs/math': 0.23.1 - '@cosmjs/proto-signing': 0.24.1 - '@cosmjs/stargate': 0.25.0-alpha.2 - '@cosmjs/tendermint-rpc': 0.25.0-alpha.2 + "@cosmjs/amino": 0.25.0-alpha.2 + "@cosmjs/encoding": 0.23.1 + "@cosmjs/math": 0.23.1 + "@cosmjs/proto-signing": 0.24.1 + "@cosmjs/stargate": 0.25.0-alpha.2 + "@cosmjs/tendermint-rpc": 0.25.0-alpha.2 axios: 0.21.2 bech32: 1.1.4 big.js: 6.0.0 @@ -33678,220 +49944,220 @@ snapshots: - supports-color - utf-8-validate - '@cspotcode/source-map-support@0.8.1': + "@cspotcode/source-map-support@0.8.1": dependencies: - '@jridgewell/trace-mapping': 0.3.9 + "@jridgewell/trace-mapping": 0.3.9 - '@cspotcode/source-map-support@0.8.1(source-map-support@0.5.21)': + "@cspotcode/source-map-support@0.8.1(source-map-support@0.5.21)": dependencies: - '@jridgewell/trace-mapping': 0.3.9 + "@jridgewell/trace-mapping": 0.3.9 optionalDependencies: source-map-support: 0.5.21 - '@csstools/normalize.css@12.1.1': {} + "@csstools/normalize.css@12.1.1": {} - '@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.32)': + "@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.32)": dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.16) + "@csstools/selector-specificity": 2.2.0(postcss-selector-parser@6.0.16) postcss: 8.4.32 postcss-selector-parser: 6.0.16 - '@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.38)': + "@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.38)": dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.16) + "@csstools/selector-specificity": 2.2.0(postcss-selector-parser@6.0.16) postcss: 8.4.38 postcss-selector-parser: 6.0.16 - '@csstools/postcss-color-function@1.1.1(postcss@8.4.32)': + "@csstools/postcss-color-function@1.1.1(postcss@8.4.32)": dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32) + "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.32) postcss: 8.4.32 postcss-value-parser: 4.2.0 - '@csstools/postcss-color-function@1.1.1(postcss@8.4.38)': + "@csstools/postcss-color-function@1.1.1(postcss@8.4.38)": dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.38) + "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.38) postcss: 8.4.38 postcss-value-parser: 4.2.0 - '@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.32)': + "@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.32)": dependencies: postcss: 8.4.32 postcss-value-parser: 4.2.0 - '@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.38)': + "@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.38)": dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - '@csstools/postcss-hwb-function@1.0.2(postcss@8.4.32)': + "@csstools/postcss-hwb-function@1.0.2(postcss@8.4.32)": dependencies: postcss: 8.4.32 postcss-value-parser: 4.2.0 - '@csstools/postcss-hwb-function@1.0.2(postcss@8.4.38)': + "@csstools/postcss-hwb-function@1.0.2(postcss@8.4.38)": dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - '@csstools/postcss-ic-unit@1.0.1(postcss@8.4.32)': + "@csstools/postcss-ic-unit@1.0.1(postcss@8.4.32)": dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32) + "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.32) postcss: 8.4.32 postcss-value-parser: 4.2.0 - '@csstools/postcss-ic-unit@1.0.1(postcss@8.4.38)': + "@csstools/postcss-ic-unit@1.0.1(postcss@8.4.38)": dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.38) + "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.38) postcss: 8.4.38 postcss-value-parser: 4.2.0 - '@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.32)': + "@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.32)": dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.16) + "@csstools/selector-specificity": 2.2.0(postcss-selector-parser@6.0.16) postcss: 8.4.32 postcss-selector-parser: 6.0.16 - '@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.38)': + "@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.38)": dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.16) + "@csstools/selector-specificity": 2.2.0(postcss-selector-parser@6.0.16) postcss: 8.4.38 postcss-selector-parser: 6.0.16 - '@csstools/postcss-nested-calc@1.0.0(postcss@8.4.32)': + "@csstools/postcss-nested-calc@1.0.0(postcss@8.4.32)": dependencies: postcss: 8.4.32 postcss-value-parser: 4.2.0 - '@csstools/postcss-nested-calc@1.0.0(postcss@8.4.38)': + "@csstools/postcss-nested-calc@1.0.0(postcss@8.4.38)": dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - '@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.32)': + "@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.32)": dependencies: postcss: 8.4.32 postcss-value-parser: 4.2.0 - '@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.38)': + "@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.38)": dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - '@csstools/postcss-oklab-function@1.1.1(postcss@8.4.32)': + "@csstools/postcss-oklab-function@1.1.1(postcss@8.4.32)": dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32) + "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.32) postcss: 8.4.32 postcss-value-parser: 4.2.0 - '@csstools/postcss-oklab-function@1.1.1(postcss@8.4.38)': + "@csstools/postcss-oklab-function@1.1.1(postcss@8.4.38)": dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.38) + "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.38) postcss: 8.4.38 postcss-value-parser: 4.2.0 - '@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.32)': + "@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.32)": dependencies: postcss: 8.4.32 postcss-value-parser: 4.2.0 - '@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.38)': + "@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.38)": dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - '@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.32)': + "@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.32)": dependencies: postcss: 8.4.32 postcss-value-parser: 4.2.0 - '@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.38)': + "@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.38)": dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - '@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.32)': + "@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.32)": dependencies: postcss: 8.4.32 postcss-value-parser: 4.2.0 - '@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.38)': + "@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.38)": dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - '@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.32)': + "@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.32)": dependencies: postcss: 8.4.32 postcss-value-parser: 4.2.0 - '@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.38)': + "@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.38)": dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - '@csstools/postcss-unset-value@1.0.2(postcss@8.4.32)': + "@csstools/postcss-unset-value@1.0.2(postcss@8.4.32)": dependencies: postcss: 8.4.32 - '@csstools/postcss-unset-value@1.0.2(postcss@8.4.38)': + "@csstools/postcss-unset-value@1.0.2(postcss@8.4.38)": dependencies: postcss: 8.4.38 - '@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.16)': + "@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.16)": dependencies: postcss-selector-parser: 6.0.16 - '@dabh/diagnostics@2.0.3': + "@dabh/diagnostics@2.0.3": dependencies: colorspace: 1.1.4 enabled: 2.0.0 kuler: 2.0.0 - '@develar/schema-utils@2.6.5': + "@develar/schema-utils@2.6.5": dependencies: ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - '@dfinity/agent@0.21.4(@dfinity/candid@0.21.4(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)))(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3))': + "@dfinity/agent@0.21.4(@dfinity/candid@0.21.4(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)))(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3))": dependencies: - '@dfinity/candid': 0.21.4(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)) - '@dfinity/principal': 0.15.7(@types/node@20.12.12)(typescript@5.1.3) - '@noble/curves': 1.4.0 - '@noble/hashes': 1.4.0 + "@dfinity/candid": 0.21.4(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)) + "@dfinity/principal": 0.15.7(@types/node@20.12.12)(typescript@5.1.3) + "@noble/curves": 1.4.0 + "@noble/hashes": 1.4.0 base64-arraybuffer: 0.2.0 borc: 2.1.2 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) simple-cbor: 0.4.1 - '@dfinity/candid@0.21.4(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3))': + "@dfinity/candid@0.21.4(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3))": dependencies: - '@dfinity/principal': 0.15.7(@types/node@20.12.12)(typescript@5.1.3) + "@dfinity/principal": 0.15.7(@types/node@20.12.12)(typescript@5.1.3) - '@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)': + "@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)": dependencies: js-sha256: 0.9.0 ts-node: 10.9.2(@types/node@20.12.12)(typescript@5.1.3) transitivePeerDependencies: - - '@swc/core' - - '@swc/wasm' - - '@types/node' + - "@swc/core" + - "@swc/wasm" + - "@types/node" - source-map-support - typescript - '@discoveryjs/json-ext@0.5.7': {} + "@discoveryjs/json-ext@0.5.7": {} - '@egjs/hammerjs@2.0.17': + "@egjs/hammerjs@2.0.17": dependencies: - '@types/hammerjs': 2.0.45 + "@types/hammerjs": 2.0.45 - '@electron/asar@3.2.9': + "@electron/asar@3.2.9": dependencies: commander: 5.1.0 glob: 7.2.3 minimatch: 3.1.2 - '@electron/get@2.0.3': + "@electron/get@2.0.3": dependencies: debug: 4.3.4 env-paths: 2.2.1 @@ -33905,7 +50171,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@electron/notarize@2.2.1': + "@electron/notarize@2.2.1": dependencies: debug: 4.3.4 fs-extra: 9.1.0 @@ -33913,7 +50179,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@electron/notarize@2.3.2': + "@electron/notarize@2.3.2": dependencies: debug: 4.3.4 fs-extra: 9.1.0 @@ -33921,7 +50187,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@electron/osx-sign@1.0.5': + "@electron/osx-sign@1.0.5": dependencies: compare-version: 0.1.2 debug: 4.3.4 @@ -33932,10 +50198,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@electron/universal@1.5.1': + "@electron/universal@1.5.1": dependencies: - '@electron/asar': 3.2.9 - '@malept/cross-spawn-promise': 1.1.1 + "@electron/asar": 3.2.9 + "@malept/cross-spawn-promise": 1.1.1 debug: 4.3.4 dir-compare: 3.3.0 fs-extra: 9.1.0 @@ -33944,7 +50210,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@elrondnetwork/erdjs-network-providers@1.2.0': + "@elrondnetwork/erdjs-network-providers@1.2.0": dependencies: axios: 0.24.0 bech32: 1.1.4 @@ -33952,9 +50218,9 @@ snapshots: buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) json-bigint: 1.0.0 - '@elrondnetwork/erdjs@11.0.0': + "@elrondnetwork/erdjs@11.0.0": dependencies: - '@elrondnetwork/transaction-decoder': 1.0.0 + "@elrondnetwork/transaction-decoder": 1.0.0 bech32: 1.1.4 bignumber.js: 9.0.1 blake2b: 2.1.3 @@ -33963,17 +50229,17 @@ snapshots: keccak: 3.0.2 protobufjs: 6.11.3 - '@elrondnetwork/transaction-decoder@1.0.0': + "@elrondnetwork/transaction-decoder@1.0.0": dependencies: bech32: 2.0.0 - '@emotion/babel-plugin@11.11.0': + "@emotion/babel-plugin@11.11.0": dependencies: - '@babel/helper-module-imports': 7.24.3 - '@babel/runtime': 7.24.1 - '@emotion/hash': 0.9.1 - '@emotion/memoize': 0.8.1 - '@emotion/serialize': 1.1.3 + "@babel/helper-module-imports": 7.24.3 + "@babel/runtime": 7.25.0 + "@emotion/hash": 0.9.1 + "@emotion/memoize": 0.8.1 + "@emotion/serialize": 1.1.3 babel-plugin-macros: 3.1.0 convert-source-map: 1.9.0 escape-string-regexp: 4.0.0 @@ -33981,352 +50247,352 @@ snapshots: source-map: 0.5.7 stylis: 4.2.0 - '@emotion/cache@10.0.29': + "@emotion/cache@10.0.29": dependencies: - '@emotion/sheet': 0.9.4 - '@emotion/stylis': 0.8.5 - '@emotion/utils': 0.11.3 - '@emotion/weak-memoize': 0.2.5 + "@emotion/sheet": 0.9.4 + "@emotion/stylis": 0.8.5 + "@emotion/utils": 0.11.3 + "@emotion/weak-memoize": 0.2.5 - '@emotion/cache@11.11.0': + "@emotion/cache@11.11.0": dependencies: - '@emotion/memoize': 0.8.1 - '@emotion/sheet': 1.2.2 - '@emotion/utils': 1.2.1 - '@emotion/weak-memoize': 0.3.1 + "@emotion/memoize": 0.8.1 + "@emotion/sheet": 1.2.2 + "@emotion/utils": 1.2.1 + "@emotion/weak-memoize": 0.3.1 stylis: 4.2.0 - '@emotion/core@10.3.1(react@18.2.0)': + "@emotion/core@10.3.1(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@emotion/cache': 10.0.29 - '@emotion/css': 10.0.27 - '@emotion/serialize': 0.11.16 - '@emotion/sheet': 0.9.4 - '@emotion/utils': 0.11.3 + "@babel/runtime": 7.25.0 + "@emotion/cache": 10.0.29 + "@emotion/css": 10.0.27 + "@emotion/serialize": 0.11.16 + "@emotion/sheet": 0.9.4 + "@emotion/utils": 0.11.3 react: 18.2.0 - '@emotion/core@11.0.0': {} + "@emotion/core@11.0.0": {} - '@emotion/css@10.0.27': + "@emotion/css@10.0.27": dependencies: - '@emotion/serialize': 0.11.16 - '@emotion/utils': 0.11.3 + "@emotion/serialize": 0.11.16 + "@emotion/utils": 0.11.3 babel-plugin-emotion: 10.2.2 - '@emotion/hash@0.8.0': {} + "@emotion/hash@0.8.0": {} - '@emotion/hash@0.9.1': {} + "@emotion/hash@0.9.1": {} - '@emotion/is-prop-valid@1.2.1': + "@emotion/is-prop-valid@1.2.1": dependencies: - '@emotion/memoize': 0.8.1 + "@emotion/memoize": 0.8.1 - '@emotion/is-prop-valid@1.2.2': + "@emotion/is-prop-valid@1.2.2": dependencies: - '@emotion/memoize': 0.8.1 + "@emotion/memoize": 0.8.1 - '@emotion/memoize@0.7.4': {} + "@emotion/memoize@0.7.4": {} - '@emotion/memoize@0.8.1': {} + "@emotion/memoize@0.8.1": {} - '@emotion/native@11.11.0(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0)': + "@emotion/native@11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)": dependencies: - '@emotion/primitives-core': 11.11.0(react@18.2.0) - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + "@emotion/primitives-core": 11.11.0(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) transitivePeerDependencies: - - '@emotion/react' + - "@emotion/react" - react - '@emotion/primitives-core@11.11.0(react@18.2.0)': + "@emotion/primitives-core@11.11.0(react@18.2.0)": dependencies: css-to-react-native: 3.2.0 react: 18.2.0 - '@emotion/react@11.11.4(@types/react@18.2.73)(react@18.2.0)': + "@emotion/react@11.11.4(@types/react@18.2.73)(react@18.2.0)": dependencies: - '@babel/runtime': 7.24.1 - '@emotion/babel-plugin': 11.11.0 - '@emotion/cache': 11.11.0 - '@emotion/serialize': 1.1.3 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) - '@emotion/utils': 1.2.1 - '@emotion/weak-memoize': 0.3.1 + "@babel/runtime": 7.25.0 + "@emotion/babel-plugin": 11.11.0 + "@emotion/cache": 11.11.0 + "@emotion/serialize": 1.1.3 + "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) + "@emotion/utils": 1.2.1 + "@emotion/weak-memoize": 0.3.1 hoist-non-react-statics: 3.3.2 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@emotion/react@11.11.4(@types/react@18.3.5)(react@18.3.1)': + "@emotion/react@11.11.4(@types/react@18.3.5)(react@18.3.1)": dependencies: - '@babel/runtime': 7.24.1 - '@emotion/babel-plugin': 11.11.0 - '@emotion/cache': 11.11.0 - '@emotion/serialize': 1.1.3 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) - '@emotion/utils': 1.2.1 - '@emotion/weak-memoize': 0.3.1 + "@babel/runtime": 7.25.0 + "@emotion/babel-plugin": 11.11.0 + "@emotion/cache": 11.11.0 + "@emotion/serialize": 1.1.3 + "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.3.1) + "@emotion/utils": 1.2.1 + "@emotion/weak-memoize": 0.3.1 hoist-non-react-statics: 3.3.2 react: 18.3.1 optionalDependencies: - '@types/react': 18.3.5 + "@types/react": 18.3.5 - '@emotion/serialize@0.11.16': + "@emotion/serialize@0.11.16": dependencies: - '@emotion/hash': 0.8.0 - '@emotion/memoize': 0.7.4 - '@emotion/unitless': 0.7.5 - '@emotion/utils': 0.11.3 + "@emotion/hash": 0.8.0 + "@emotion/memoize": 0.7.4 + "@emotion/unitless": 0.7.5 + "@emotion/utils": 0.11.3 csstype: 2.6.21 - '@emotion/serialize@1.1.3': + "@emotion/serialize@1.1.3": dependencies: - '@emotion/hash': 0.9.1 - '@emotion/memoize': 0.8.1 - '@emotion/unitless': 0.8.1 - '@emotion/utils': 1.2.1 + "@emotion/hash": 0.9.1 + "@emotion/memoize": 0.8.1 + "@emotion/unitless": 0.8.1 + "@emotion/utils": 1.2.1 csstype: 3.1.3 - '@emotion/sheet@0.9.4': {} + "@emotion/sheet@0.9.4": {} - '@emotion/sheet@1.2.2': {} + "@emotion/sheet@1.2.2": {} - '@emotion/stylis@0.8.5': {} + "@emotion/stylis@0.8.5": {} - '@emotion/unitless@0.7.5': {} + "@emotion/unitless@0.7.5": {} - '@emotion/unitless@0.8.0': {} + "@emotion/unitless@0.8.0": {} - '@emotion/unitless@0.8.1': {} + "@emotion/unitless@0.8.1": {} - '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0)': + "@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0)": dependencies: react: 18.2.0 - '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1)': + "@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1)": dependencies: react: 18.3.1 - '@emotion/utils@0.11.3': {} + "@emotion/utils@0.11.3": {} - '@emotion/utils@1.2.1': {} + "@emotion/utils@1.2.1": {} - '@emotion/weak-memoize@0.2.5': {} + "@emotion/weak-memoize@0.2.5": {} - '@emotion/weak-memoize@0.3.1': {} + "@emotion/weak-memoize@0.3.1": {} - '@esbuild/aix-ppc64@0.19.12': + "@esbuild/aix-ppc64@0.19.12": optional: true - '@esbuild/aix-ppc64@0.20.2': + "@esbuild/aix-ppc64@0.20.2": optional: true - '@esbuild/android-arm64@0.18.20': + "@esbuild/android-arm64@0.18.20": optional: true - '@esbuild/android-arm64@0.19.12': + "@esbuild/android-arm64@0.19.12": optional: true - '@esbuild/android-arm64@0.20.2': + "@esbuild/android-arm64@0.20.2": optional: true - '@esbuild/android-arm@0.18.20': + "@esbuild/android-arm@0.18.20": optional: true - '@esbuild/android-arm@0.19.12': + "@esbuild/android-arm@0.19.12": optional: true - '@esbuild/android-arm@0.20.2': + "@esbuild/android-arm@0.20.2": optional: true - '@esbuild/android-x64@0.18.20': + "@esbuild/android-x64@0.18.20": optional: true - '@esbuild/android-x64@0.19.12': + "@esbuild/android-x64@0.19.12": optional: true - '@esbuild/android-x64@0.20.2': + "@esbuild/android-x64@0.20.2": optional: true - '@esbuild/darwin-arm64@0.18.20': + "@esbuild/darwin-arm64@0.18.20": optional: true - '@esbuild/darwin-arm64@0.19.12': + "@esbuild/darwin-arm64@0.19.12": optional: true - '@esbuild/darwin-arm64@0.20.2': + "@esbuild/darwin-arm64@0.20.2": optional: true - '@esbuild/darwin-x64@0.18.20': + "@esbuild/darwin-x64@0.18.20": optional: true - '@esbuild/darwin-x64@0.19.12': + "@esbuild/darwin-x64@0.19.12": optional: true - '@esbuild/darwin-x64@0.20.2': + "@esbuild/darwin-x64@0.20.2": optional: true - '@esbuild/freebsd-arm64@0.18.20': + "@esbuild/freebsd-arm64@0.18.20": optional: true - '@esbuild/freebsd-arm64@0.19.12': + "@esbuild/freebsd-arm64@0.19.12": optional: true - '@esbuild/freebsd-arm64@0.20.2': + "@esbuild/freebsd-arm64@0.20.2": optional: true - '@esbuild/freebsd-x64@0.18.20': + "@esbuild/freebsd-x64@0.18.20": optional: true - '@esbuild/freebsd-x64@0.19.12': + "@esbuild/freebsd-x64@0.19.12": optional: true - '@esbuild/freebsd-x64@0.20.2': + "@esbuild/freebsd-x64@0.20.2": optional: true - '@esbuild/linux-arm64@0.18.20': + "@esbuild/linux-arm64@0.18.20": optional: true - '@esbuild/linux-arm64@0.19.12': + "@esbuild/linux-arm64@0.19.12": optional: true - '@esbuild/linux-arm64@0.20.2': + "@esbuild/linux-arm64@0.20.2": optional: true - '@esbuild/linux-arm@0.18.20': + "@esbuild/linux-arm@0.18.20": optional: true - '@esbuild/linux-arm@0.19.12': + "@esbuild/linux-arm@0.19.12": optional: true - '@esbuild/linux-arm@0.20.2': + "@esbuild/linux-arm@0.20.2": optional: true - '@esbuild/linux-ia32@0.18.20': + "@esbuild/linux-ia32@0.18.20": optional: true - '@esbuild/linux-ia32@0.19.12': + "@esbuild/linux-ia32@0.19.12": optional: true - '@esbuild/linux-ia32@0.20.2': + "@esbuild/linux-ia32@0.20.2": optional: true - '@esbuild/linux-loong64@0.18.20': + "@esbuild/linux-loong64@0.18.20": optional: true - '@esbuild/linux-loong64@0.19.12': + "@esbuild/linux-loong64@0.19.12": optional: true - '@esbuild/linux-loong64@0.20.2': + "@esbuild/linux-loong64@0.20.2": optional: true - '@esbuild/linux-mips64el@0.18.20': + "@esbuild/linux-mips64el@0.18.20": optional: true - '@esbuild/linux-mips64el@0.19.12': + "@esbuild/linux-mips64el@0.19.12": optional: true - '@esbuild/linux-mips64el@0.20.2': + "@esbuild/linux-mips64el@0.20.2": optional: true - '@esbuild/linux-ppc64@0.18.20': + "@esbuild/linux-ppc64@0.18.20": optional: true - '@esbuild/linux-ppc64@0.19.12': + "@esbuild/linux-ppc64@0.19.12": optional: true - '@esbuild/linux-ppc64@0.20.2': + "@esbuild/linux-ppc64@0.20.2": optional: true - '@esbuild/linux-riscv64@0.18.20': + "@esbuild/linux-riscv64@0.18.20": optional: true - '@esbuild/linux-riscv64@0.19.12': + "@esbuild/linux-riscv64@0.19.12": optional: true - '@esbuild/linux-riscv64@0.20.2': + "@esbuild/linux-riscv64@0.20.2": optional: true - '@esbuild/linux-s390x@0.18.20': + "@esbuild/linux-s390x@0.18.20": optional: true - '@esbuild/linux-s390x@0.19.12': + "@esbuild/linux-s390x@0.19.12": optional: true - '@esbuild/linux-s390x@0.20.2': + "@esbuild/linux-s390x@0.20.2": optional: true - '@esbuild/linux-x64@0.18.20': + "@esbuild/linux-x64@0.18.20": optional: true - '@esbuild/linux-x64@0.19.12': + "@esbuild/linux-x64@0.19.12": optional: true - '@esbuild/linux-x64@0.20.2': + "@esbuild/linux-x64@0.20.2": optional: true - '@esbuild/netbsd-x64@0.18.20': + "@esbuild/netbsd-x64@0.18.20": optional: true - '@esbuild/netbsd-x64@0.19.12': + "@esbuild/netbsd-x64@0.19.12": optional: true - '@esbuild/netbsd-x64@0.20.2': + "@esbuild/netbsd-x64@0.20.2": optional: true - '@esbuild/openbsd-x64@0.18.20': + "@esbuild/openbsd-x64@0.18.20": optional: true - '@esbuild/openbsd-x64@0.19.12': + "@esbuild/openbsd-x64@0.19.12": optional: true - '@esbuild/openbsd-x64@0.20.2': + "@esbuild/openbsd-x64@0.20.2": optional: true - '@esbuild/sunos-x64@0.18.20': + "@esbuild/sunos-x64@0.18.20": optional: true - '@esbuild/sunos-x64@0.19.12': + "@esbuild/sunos-x64@0.19.12": optional: true - '@esbuild/sunos-x64@0.20.2': + "@esbuild/sunos-x64@0.20.2": optional: true - '@esbuild/win32-arm64@0.18.20': + "@esbuild/win32-arm64@0.18.20": optional: true - '@esbuild/win32-arm64@0.19.12': + "@esbuild/win32-arm64@0.19.12": optional: true - '@esbuild/win32-arm64@0.20.2': + "@esbuild/win32-arm64@0.20.2": optional: true - '@esbuild/win32-ia32@0.18.20': + "@esbuild/win32-ia32@0.18.20": optional: true - '@esbuild/win32-ia32@0.19.12': + "@esbuild/win32-ia32@0.19.12": optional: true - '@esbuild/win32-ia32@0.20.2': + "@esbuild/win32-ia32@0.20.2": optional: true - '@esbuild/win32-x64@0.18.20': + "@esbuild/win32-x64@0.18.20": optional: true - '@esbuild/win32-x64@0.19.12': + "@esbuild/win32-x64@0.19.12": optional: true - '@esbuild/win32-x64@0.20.2': + "@esbuild/win32-x64@0.20.2": optional: true - '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)': + "@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)": dependencies: eslint: 8.57.0 eslint-visitor-keys: 3.4.3 - '@eslint-community/regexpp@4.10.0': {} + "@eslint-community/regexpp@4.10.0": {} - '@eslint/eslintrc@2.1.4': + "@eslint/eslintrc@2.1.4": dependencies: ajv: 6.12.6 debug: 4.3.4 @@ -34340,313 +50606,313 @@ snapshots: transitivePeerDependencies: - supports-color - '@eslint/js@8.57.0': {} + "@eslint/js@8.57.0": {} - '@ethereumjs/common@2.6.5': + "@ethereumjs/common@2.6.5": dependencies: crc-32: 1.2.2 ethereumjs-util: 7.1.5 - '@ethereumjs/tx@3.5.2': + "@ethereumjs/tx@3.5.2": dependencies: - '@ethereumjs/common': 2.6.5 + "@ethereumjs/common": 2.6.5 ethereumjs-util: 7.1.5 - '@ethersproject/abi@5.0.7': + "@ethersproject/abi@5.0.7": dependencies: - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 + "@ethersproject/address": 5.7.0 + "@ethersproject/bignumber": 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/constants": 5.7.0 + "@ethersproject/hash": 5.7.0 + "@ethersproject/keccak256": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/properties": 5.7.0 + "@ethersproject/strings": 5.7.0 - '@ethersproject/abi@5.7.0': + "@ethersproject/abi@5.7.0": dependencies: - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 + "@ethersproject/address": 5.7.0 + "@ethersproject/bignumber": 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/constants": 5.7.0 + "@ethersproject/hash": 5.7.0 + "@ethersproject/keccak256": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/properties": 5.7.0 + "@ethersproject/strings": 5.7.0 - '@ethersproject/abstract-provider@5.7.0': + "@ethersproject/abstract-provider@5.7.0": dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/networks': 5.7.1 - '@ethersproject/properties': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/web': 5.7.1 + "@ethersproject/bignumber": 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/networks": 5.7.1 + "@ethersproject/properties": 5.7.0 + "@ethersproject/transactions": 5.7.0 + "@ethersproject/web": 5.7.1 - '@ethersproject/abstract-signer@5.7.0': + "@ethersproject/abstract-signer@5.7.0": dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 + "@ethersproject/abstract-provider": 5.7.0 + "@ethersproject/bignumber": 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/properties": 5.7.0 - '@ethersproject/address@5.7.0': + "@ethersproject/address@5.7.0": dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/rlp': 5.7.0 + "@ethersproject/bignumber": 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/keccak256": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/rlp": 5.7.0 - '@ethersproject/base64@5.7.0': + "@ethersproject/base64@5.7.0": dependencies: - '@ethersproject/bytes': 5.7.0 + "@ethersproject/bytes": 5.7.0 - '@ethersproject/basex@5.7.0': + "@ethersproject/basex@5.7.0": dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/properties': 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/properties": 5.7.0 - '@ethersproject/bignumber@5.7.0': + "@ethersproject/bignumber@5.7.0": dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/logger": 5.7.0 bn.js: 5.2.1 - '@ethersproject/bytes@5.7.0': - dependencies: - '@ethersproject/logger': 5.7.0 - - '@ethersproject/constants@5.7.0': - dependencies: - '@ethersproject/bignumber': 5.7.0 - - '@ethersproject/contracts@5.7.0': - dependencies: - '@ethersproject/abi': 5.7.0 - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/transactions': 5.7.0 - - '@ethersproject/hash@5.7.0': - dependencies: - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/base64': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 - - '@ethersproject/hdnode@5.7.0': - dependencies: - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/basex': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/pbkdf2': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/signing-key': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/wordlists': 5.7.0 - - '@ethersproject/json-wallets@5.7.0': - dependencies: - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/hdnode': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/pbkdf2': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/random': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 + "@ethersproject/bytes@5.7.0": + dependencies: + "@ethersproject/logger": 5.7.0 + + "@ethersproject/constants@5.7.0": + dependencies: + "@ethersproject/bignumber": 5.7.0 + + "@ethersproject/contracts@5.7.0": + dependencies: + "@ethersproject/abi": 5.7.0 + "@ethersproject/abstract-provider": 5.7.0 + "@ethersproject/abstract-signer": 5.7.0 + "@ethersproject/address": 5.7.0 + "@ethersproject/bignumber": 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/constants": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/properties": 5.7.0 + "@ethersproject/transactions": 5.7.0 + + "@ethersproject/hash@5.7.0": + dependencies: + "@ethersproject/abstract-signer": 5.7.0 + "@ethersproject/address": 5.7.0 + "@ethersproject/base64": 5.7.0 + "@ethersproject/bignumber": 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/keccak256": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/properties": 5.7.0 + "@ethersproject/strings": 5.7.0 + + "@ethersproject/hdnode@5.7.0": + dependencies: + "@ethersproject/abstract-signer": 5.7.0 + "@ethersproject/basex": 5.7.0 + "@ethersproject/bignumber": 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/pbkdf2": 5.7.0 + "@ethersproject/properties": 5.7.0 + "@ethersproject/sha2": 5.7.0 + "@ethersproject/signing-key": 5.7.0 + "@ethersproject/strings": 5.7.0 + "@ethersproject/transactions": 5.7.0 + "@ethersproject/wordlists": 5.7.0 + + "@ethersproject/json-wallets@5.7.0": + dependencies: + "@ethersproject/abstract-signer": 5.7.0 + "@ethersproject/address": 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/hdnode": 5.7.0 + "@ethersproject/keccak256": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/pbkdf2": 5.7.0 + "@ethersproject/properties": 5.7.0 + "@ethersproject/random": 5.7.0 + "@ethersproject/strings": 5.7.0 + "@ethersproject/transactions": 5.7.0 aes-js: 3.0.0 scrypt-js: 3.0.1 - '@ethersproject/keccak256@5.7.0': + "@ethersproject/keccak256@5.7.0": dependencies: - '@ethersproject/bytes': 5.7.0 + "@ethersproject/bytes": 5.7.0 js-sha3: 0.8.0 - '@ethersproject/logger@5.7.0': {} + "@ethersproject/logger@5.7.0": {} - '@ethersproject/networks@5.7.1': + "@ethersproject/networks@5.7.1": dependencies: - '@ethersproject/logger': 5.7.0 + "@ethersproject/logger": 5.7.0 - '@ethersproject/pbkdf2@5.7.0': + "@ethersproject/pbkdf2@5.7.0": dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/sha2': 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/sha2": 5.7.0 - '@ethersproject/properties@5.7.0': + "@ethersproject/properties@5.7.0": dependencies: - '@ethersproject/logger': 5.7.0 + "@ethersproject/logger": 5.7.0 - '@ethersproject/providers@5.7.2': + "@ethersproject/providers@5.7.2": dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/base64': 5.7.0 - '@ethersproject/basex': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/networks': 5.7.1 - '@ethersproject/properties': 5.7.0 - '@ethersproject/random': 5.7.0 - '@ethersproject/rlp': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/web': 5.7.1 + "@ethersproject/abstract-provider": 5.7.0 + "@ethersproject/abstract-signer": 5.7.0 + "@ethersproject/address": 5.7.0 + "@ethersproject/base64": 5.7.0 + "@ethersproject/basex": 5.7.0 + "@ethersproject/bignumber": 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/constants": 5.7.0 + "@ethersproject/hash": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/networks": 5.7.1 + "@ethersproject/properties": 5.7.0 + "@ethersproject/random": 5.7.0 + "@ethersproject/rlp": 5.7.0 + "@ethersproject/sha2": 5.7.0 + "@ethersproject/strings": 5.7.0 + "@ethersproject/transactions": 5.7.0 + "@ethersproject/web": 5.7.1 bech32: 1.1.4 ws: 7.5.10 transitivePeerDependencies: - bufferutil - utf-8-validate - '@ethersproject/random@5.7.0': + "@ethersproject/random@5.7.0": dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/logger": 5.7.0 - '@ethersproject/rlp@5.7.0': + "@ethersproject/rlp@5.7.0": dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/logger": 5.7.0 - '@ethersproject/sha2@5.7.0': + "@ethersproject/sha2@5.7.0": dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/logger": 5.7.0 hash.js: 1.1.7 - '@ethersproject/shims@5.7.0': {} + "@ethersproject/shims@5.7.0": {} - '@ethersproject/signing-key@5.7.0': + "@ethersproject/signing-key@5.7.0": dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/properties": 5.7.0 bn.js: 5.2.1 elliptic: 6.5.4 hash.js: 1.1.7 - '@ethersproject/solidity@5.7.0': - dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/strings': 5.7.0 - - '@ethersproject/strings@5.7.0': - dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/logger': 5.7.0 - - '@ethersproject/transactions@5.7.0': - dependencies: - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/rlp': 5.7.0 - '@ethersproject/signing-key': 5.7.0 - - '@ethersproject/units@5.7.0': - dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/logger': 5.7.0 - - '@ethersproject/wallet@5.7.0': - dependencies: - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/hdnode': 5.7.0 - '@ethersproject/json-wallets': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/random': 5.7.0 - '@ethersproject/signing-key': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/wordlists': 5.7.0 - - '@ethersproject/web@5.7.1': - dependencies: - '@ethersproject/base64': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 - - '@ethersproject/wordlists@5.7.0': - dependencies: - '@ethersproject/bytes': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 - - '@expo/bunyan@4.0.0': + "@ethersproject/solidity@5.7.0": + dependencies: + "@ethersproject/bignumber": 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/keccak256": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/sha2": 5.7.0 + "@ethersproject/strings": 5.7.0 + + "@ethersproject/strings@5.7.0": + dependencies: + "@ethersproject/bytes": 5.7.0 + "@ethersproject/constants": 5.7.0 + "@ethersproject/logger": 5.7.0 + + "@ethersproject/transactions@5.7.0": + dependencies: + "@ethersproject/address": 5.7.0 + "@ethersproject/bignumber": 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/constants": 5.7.0 + "@ethersproject/keccak256": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/properties": 5.7.0 + "@ethersproject/rlp": 5.7.0 + "@ethersproject/signing-key": 5.7.0 + + "@ethersproject/units@5.7.0": + dependencies: + "@ethersproject/bignumber": 5.7.0 + "@ethersproject/constants": 5.7.0 + "@ethersproject/logger": 5.7.0 + + "@ethersproject/wallet@5.7.0": + dependencies: + "@ethersproject/abstract-provider": 5.7.0 + "@ethersproject/abstract-signer": 5.7.0 + "@ethersproject/address": 5.7.0 + "@ethersproject/bignumber": 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/hash": 5.7.0 + "@ethersproject/hdnode": 5.7.0 + "@ethersproject/json-wallets": 5.7.0 + "@ethersproject/keccak256": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/properties": 5.7.0 + "@ethersproject/random": 5.7.0 + "@ethersproject/signing-key": 5.7.0 + "@ethersproject/transactions": 5.7.0 + "@ethersproject/wordlists": 5.7.0 + + "@ethersproject/web@5.7.1": + dependencies: + "@ethersproject/base64": 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/properties": 5.7.0 + "@ethersproject/strings": 5.7.0 + + "@ethersproject/wordlists@5.7.0": + dependencies: + "@ethersproject/bytes": 5.7.0 + "@ethersproject/hash": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/properties": 5.7.0 + "@ethersproject/strings": 5.7.0 + + "@expo/bunyan@4.0.0": dependencies: uuid: 8.3.2 optionalDependencies: mv: 2.1.1 safe-json-stringify: 1.2.0 - '@expo/cli@0.10.17(@expo/metro-config@0.10.7)(expo-modules-autolinking@1.5.1(55fu4l7dolnnxrys6pt2pnhfne))(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)': - dependencies: - '@babel/runtime': 7.24.1 - '@expo/code-signing-certificates': 0.0.5 - '@expo/config': 8.1.2 - '@expo/config-plugins': 7.2.5 - '@expo/dev-server': 0.5.5 - '@expo/devcert': 1.1.0 - '@expo/env': 0.0.5 - '@expo/json-file': 8.3.0 - '@expo/osascript': 2.1.0 - '@expo/package-manager': 1.1.2 - '@expo/plist': 0.0.20 - '@expo/prebuild-config': 6.2.6(expo-modules-autolinking@1.5.1(55fu4l7dolnnxrys6pt2pnhfne)) - '@expo/rudder-sdk-node': 1.1.1 - '@expo/spawn-async': 1.5.0 - '@expo/xcpretty': 4.3.1 - '@urql/core': 2.3.6(graphql@15.8.0) - '@urql/exchange-retry': 0.3.0(graphql@15.8.0) + "@expo/cli@0.10.17(@expo/metro-config@0.10.7)(expo-modules-autolinking@1.5.1(epzs5mtkmt3672rwgv2fv7s7qa))(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)": + dependencies: + "@babel/runtime": 7.25.0 + "@expo/code-signing-certificates": 0.0.5 + "@expo/config": 8.1.2 + "@expo/config-plugins": 7.2.5 + "@expo/dev-server": 0.5.5 + "@expo/devcert": 1.1.0 + "@expo/env": 0.0.5 + "@expo/json-file": 8.3.0 + "@expo/osascript": 2.1.0 + "@expo/package-manager": 1.1.2 + "@expo/plist": 0.0.20 + "@expo/prebuild-config": 6.2.6(expo-modules-autolinking@1.5.1(epzs5mtkmt3672rwgv2fv7s7qa)) + "@expo/rudder-sdk-node": 1.1.1 + "@expo/spawn-async": 1.5.0 + "@expo/xcpretty": 4.3.1 + "@urql/core": 2.3.6(graphql@15.8.0) + "@urql/exchange-retry": 0.3.0(graphql@15.8.0) accepts: 1.3.8 arg: 4.1.0 better-opn: 3.0.2 @@ -34693,10 +50959,10 @@ snapshots: wrap-ansi: 7.0.0 ws: 8.18.0 optionalDependencies: - '@expo/metro-config': 0.10.7 + "@expo/metro-config": 0.10.7 glob: 7.2.3 - metro: 0.80.8 - metro-core: 0.80.8 + metro: 0.80.12 + metro-core: 0.80.12 minimatch: 5.1.6 transitivePeerDependencies: - bluebird @@ -34706,37 +50972,39 @@ snapshots: - supports-color - utf-8-validate - '@expo/cli@0.17.8(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))': - dependencies: - '@babel/runtime': 7.24.1 - '@expo/code-signing-certificates': 0.0.5 - '@expo/config': 8.5.4 - '@expo/config-plugins': 7.8.4 - '@expo/devcert': 1.1.0 - '@expo/env': 0.2.2 - '@expo/image-utils': 0.4.1 - '@expo/json-file': 8.3.0 - '@expo/metro-config': 0.17.6(@react-native/babel-preset@0.73.19(@babel/core@7.24.3)) - '@expo/osascript': 2.1.0 - '@expo/package-manager': 1.4.2 - '@expo/plist': 0.1.0 - '@expo/prebuild-config': 6.7.4(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)) - '@expo/rudder-sdk-node': 1.1.1 - '@expo/spawn-async': 1.5.0 - '@expo/xcpretty': 4.3.1 - '@react-native/dev-middleware': 0.73.7 - '@urql/core': 2.3.6(graphql@15.8.0) - '@urql/exchange-retry': 0.3.0(graphql@15.8.0) + "@expo/cli@0.18.30(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))": + dependencies: + "@babel/runtime": 7.25.0 + "@expo/code-signing-certificates": 0.0.5 + "@expo/config": 9.0.4 + "@expo/config-plugins": 8.0.10 + "@expo/devcert": 1.1.0 + "@expo/env": 0.3.0 + "@expo/image-utils": 0.5.1 + "@expo/json-file": 8.3.0 + "@expo/metro-config": 0.18.11 + "@expo/osascript": 2.1.0 + "@expo/package-manager": 1.5.2 + "@expo/plist": 0.1.0 + "@expo/prebuild-config": 7.0.9(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)) + "@expo/rudder-sdk-node": 1.1.1 + "@expo/spawn-async": 1.7.2 + "@expo/xcpretty": 4.3.1 + "@react-native/dev-middleware": 0.74.85 + "@urql/core": 2.3.6(graphql@15.8.0) + "@urql/exchange-retry": 0.3.0(graphql@15.8.0) accepts: 1.3.8 arg: 5.0.2 better-opn: 3.0.2 + bplist-creator: 0.0.7 bplist-parser: 0.3.2 - cacache: 15.3.0 + cacache: 18.0.4 chalk: 4.1.2 ci-info: 3.9.0 connect: 3.7.0 debug: 4.3.4 env-editor: 0.4.2 + fast-glob: 3.3.2 find-yarn-workspace-root: 2.0.0 form-data: 3.0.1 freeport-async: 2.0.0 @@ -34754,7 +51022,6 @@ snapshots: lodash.debounce: 4.0.8 md5hex: 1.0.0 minimatch: 3.1.2 - minipass: 3.3.6 node-fetch: 2.7.0 node-forge: 1.3.1 npm-package-arg: 7.0.0 @@ -34785,26 +51052,24 @@ snapshots: wrap-ansi: 7.0.0 ws: 8.18.0 transitivePeerDependencies: - - '@react-native/babel-preset' - - bluebird - bufferutil - encoding - expo-modules-autolinking - supports-color - utf-8-validate - '@expo/code-signing-certificates@0.0.5': + "@expo/code-signing-certificates@0.0.5": dependencies: node-forge: 1.3.1 nullthrows: 1.1.1 - '@expo/config-plugins@4.1.5': + "@expo/config-plugins@4.1.5": dependencies: - '@expo/config-types': 45.0.0 - '@expo/json-file': 8.2.36 - '@expo/plist': 0.0.18 - '@expo/sdk-runtime-versions': 1.0.0 - '@react-native/normalize-color': 2.1.0 + "@expo/config-types": 45.0.0 + "@expo/json-file": 8.2.36 + "@expo/plist": 0.0.18 + "@expo/sdk-runtime-versions": 1.0.0 + "@react-native/normalize-color": 2.1.0 chalk: 4.1.2 debug: 4.3.4 find-up: 5.0.0 @@ -34818,13 +51083,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/config-plugins@7.2.5': + "@expo/config-plugins@7.2.5": dependencies: - '@expo/config-types': 49.0.0 - '@expo/json-file': 8.2.37 - '@expo/plist': 0.0.20 - '@expo/sdk-runtime-versions': 1.0.0 - '@react-native/normalize-color': 2.1.0 + "@expo/config-types": 49.0.0 + "@expo/json-file": 8.2.37 + "@expo/plist": 0.0.20 + "@expo/sdk-runtime-versions": 1.0.0 + "@react-native/normalize-color": 2.1.0 chalk: 4.1.2 debug: 4.3.4 find-up: 5.0.0 @@ -34838,13 +51103,13 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/config-plugins@7.3.1': + "@expo/config-plugins@7.3.1": dependencies: - '@expo/config-types': 49.0.0 - '@expo/json-file': 8.2.37 - '@expo/plist': 0.0.20 - '@expo/sdk-runtime-versions': 1.0.0 - '@react-native/normalize-color': 2.1.0 + "@expo/config-types": 49.0.0 + "@expo/json-file": 8.2.37 + "@expo/plist": 0.0.20 + "@expo/sdk-runtime-versions": 1.0.0 + "@react-native/normalize-color": 2.1.0 chalk: 4.1.2 debug: 4.3.4 find-up: 5.0.0 @@ -34858,14 +51123,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/config-plugins@7.8.4': + "@expo/config-plugins@7.8.4": dependencies: - '@expo/config-types': 50.0.0 - '@expo/fingerprint': 0.6.0 - '@expo/json-file': 8.3.0 - '@expo/plist': 0.1.0 - '@expo/sdk-runtime-versions': 1.0.0 - '@react-native/normalize-color': 2.1.0 + "@expo/config-types": 50.0.0 + "@expo/fingerprint": 0.6.0 + "@expo/json-file": 8.3.0 + "@expo/plist": 0.1.0 + "@expo/sdk-runtime-versions": 1.0.0 + "@react-native/normalize-color": 2.1.0 chalk: 4.1.2 debug: 4.3.4 find-up: 5.0.0 @@ -34880,18 +51145,60 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/config-types@45.0.0': {} + "@expo/config-plugins@8.0.10": + dependencies: + "@expo/config-types": 51.0.3 + "@expo/json-file": 8.3.0 + "@expo/plist": 0.1.0 + "@expo/sdk-runtime-versions": 1.0.0 + chalk: 4.1.2 + debug: 4.3.4 + find-up: 5.0.0 + getenv: 1.0.0 + glob: 7.1.6 + resolve-from: 5.0.0 + semver: 7.6.3 + slash: 3.0.0 + slugify: 1.6.6 + xcode: 3.0.1 + xml2js: 0.6.0 + transitivePeerDependencies: + - supports-color + + "@expo/config-plugins@8.0.4": + dependencies: + "@expo/config-types": 51.0.3 + "@expo/json-file": 8.3.0 + "@expo/plist": 0.1.0 + "@expo/sdk-runtime-versions": 1.0.0 + chalk: 4.1.2 + debug: 4.3.4 + find-up: 5.0.0 + getenv: 1.0.0 + glob: 7.1.6 + resolve-from: 5.0.0 + semver: 7.6.3 + slash: 3.0.0 + slugify: 1.6.6 + xcode: 3.0.1 + xml2js: 0.6.0 + transitivePeerDependencies: + - supports-color + + "@expo/config-types@45.0.0": {} - '@expo/config-types@49.0.0': {} + "@expo/config-types@49.0.0": {} - '@expo/config-types@50.0.0': {} + "@expo/config-types@50.0.0": {} - '@expo/config@8.1.2': + "@expo/config-types@51.0.3": {} + + "@expo/config@8.1.2": dependencies: - '@babel/code-frame': 7.10.4 - '@expo/config-plugins': 7.2.5 - '@expo/config-types': 49.0.0 - '@expo/json-file': 8.3.0 + "@babel/code-frame": 7.10.4 + "@expo/config-plugins": 7.2.5 + "@expo/config-types": 49.0.0 + "@expo/json-file": 8.3.0 getenv: 1.0.0 glob: 7.1.6 require-from-string: 2.0.2 @@ -34902,12 +51209,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/config@8.2.1': + "@expo/config@8.2.1": dependencies: - '@babel/code-frame': 7.10.4 - '@expo/config-plugins': 7.3.1 - '@expo/config-types': 49.0.0 - '@expo/json-file': 8.3.0 + "@babel/code-frame": 7.10.4 + "@expo/config-plugins": 7.3.1 + "@expo/config-types": 49.0.0 + "@expo/json-file": 8.3.0 getenv: 1.0.0 glob: 7.1.6 require-from-string: 2.0.2 @@ -34918,29 +51225,45 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/config@8.5.4': + "@expo/config@9.0.1": dependencies: - '@babel/code-frame': 7.10.4 - '@expo/config-plugins': 7.8.4 - '@expo/config-types': 50.0.0 - '@expo/json-file': 8.3.0 + "@babel/code-frame": 7.10.4 + "@expo/config-plugins": 8.0.4 + "@expo/config-types": 51.0.3 + "@expo/json-file": 8.3.0 getenv: 1.0.0 glob: 7.1.6 require-from-string: 2.0.2 resolve-from: 5.0.0 - semver: 7.5.3 + semver: 7.6.3 + slugify: 1.6.6 + sucrase: 3.34.0 + transitivePeerDependencies: + - supports-color + + "@expo/config@9.0.4": + dependencies: + "@babel/code-frame": 7.10.4 + "@expo/config-plugins": 8.0.10 + "@expo/config-types": 51.0.3 + "@expo/json-file": 8.3.0 + getenv: 1.0.0 + glob: 7.1.6 + require-from-string: 2.0.2 + resolve-from: 5.0.0 + semver: 7.6.3 slugify: 1.6.6 sucrase: 3.34.0 transitivePeerDependencies: - supports-color - '@expo/dev-server@0.5.5': + "@expo/dev-server@0.5.5": dependencies: - '@expo/bunyan': 4.0.0 - '@expo/config': 8.1.2 - '@expo/metro-config': 0.10.7 - '@expo/osascript': 2.0.33 - '@expo/spawn-async': 1.7.2 + "@expo/bunyan": 4.0.0 + "@expo/config": 9.0.1 + "@expo/metro-config": 0.10.7 + "@expo/osascript": 2.0.33 + "@expo/spawn-async": 1.7.2 body-parser: 1.20.2 chalk: 4.1.2 connect: 3.7.0 @@ -34957,7 +51280,7 @@ snapshots: - encoding - supports-color - '@expo/devcert@1.1.0': + "@expo/devcert@1.1.0": dependencies: application-config-path: 0.1.1 command-exists: 1.2.9 @@ -34975,7 +51298,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/env@0.0.5': + "@expo/env@0.0.5": dependencies: chalk: 4.1.2 debug: 4.3.4 @@ -34985,19 +51308,19 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/env@0.2.2': + "@expo/env@0.3.0": dependencies: chalk: 4.1.2 debug: 4.3.4 - dotenv: 16.0.3 - dotenv-expand: 10.0.0 + dotenv: 16.4.5 + dotenv-expand: 11.0.6 getenv: 1.0.0 transitivePeerDependencies: - supports-color - '@expo/fingerprint@0.6.0': + "@expo/fingerprint@0.6.0": dependencies: - '@expo/spawn-async': 1.7.2 + "@expo/spawn-async": 1.7.2 chalk: 4.1.2 debug: 4.3.4 find-up: 5.0.0 @@ -35007,9 +51330,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/image-utils@0.3.22': + "@expo/image-utils@0.3.22": dependencies: - '@expo/spawn-async': 1.5.0 + "@expo/spawn-async": 1.5.0 chalk: 4.1.2 fs-extra: 9.0.0 getenv: 1.0.0 @@ -35023,9 +51346,9 @@ snapshots: transitivePeerDependencies: - encoding - '@expo/image-utils@0.3.23': + "@expo/image-utils@0.3.23": dependencies: - '@expo/spawn-async': 1.5.0 + "@expo/spawn-async": 1.5.0 chalk: 4.1.2 fs-extra: 9.0.0 getenv: 1.0.0 @@ -35039,9 +51362,9 @@ snapshots: transitivePeerDependencies: - encoding - '@expo/image-utils@0.4.1': + "@expo/image-utils@0.5.1": dependencies: - '@expo/spawn-async': 1.5.0 + "@expo/spawn-async": 1.7.2 chalk: 4.1.2 fs-extra: 9.0.0 getenv: 1.0.0 @@ -35049,34 +51372,34 @@ snapshots: node-fetch: 2.7.0 parse-png: 2.1.0 resolve-from: 5.0.0 - semver: 7.3.2 + semver: 7.6.3 tempy: 0.3.0 transitivePeerDependencies: - encoding - '@expo/json-file@8.2.36': + "@expo/json-file@8.2.36": dependencies: - '@babel/code-frame': 7.10.4 + "@babel/code-frame": 7.10.4 json5: 1.0.2 write-file-atomic: 2.4.3 - '@expo/json-file@8.2.37': + "@expo/json-file@8.2.37": dependencies: - '@babel/code-frame': 7.10.4 + "@babel/code-frame": 7.10.4 json5: 2.2.3 write-file-atomic: 2.4.3 - '@expo/json-file@8.3.0': + "@expo/json-file@8.3.0": dependencies: - '@babel/code-frame': 7.10.4 + "@babel/code-frame": 7.10.4 json5: 2.2.3 write-file-atomic: 2.4.3 - '@expo/metro-config@0.10.7': + "@expo/metro-config@0.10.7": dependencies: - '@expo/config': 8.1.2 - '@expo/env': 0.0.5 - '@expo/json-file': 8.2.37 + "@expo/config": 8.1.2 + "@expo/env": 0.0.5 + "@expo/json-file": 8.2.37 chalk: 4.1.2 debug: 4.3.4 find-yarn-workspace-root: 2.0.0 @@ -35090,18 +51413,16 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/metro-config@0.17.6(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))': - dependencies: - '@babel/core': 7.24.3 - '@babel/generator': 7.24.1 - '@babel/parser': 7.24.1 - '@babel/types': 7.24.0 - '@expo/config': 8.5.4 - '@expo/env': 0.2.2 - '@expo/json-file': 8.3.0 - '@expo/spawn-async': 1.7.2 - '@react-native/babel-preset': 0.73.19(@babel/core@7.24.3) - babel-preset-fbjs: 3.4.0(@babel/core@7.24.3) + "@expo/metro-config@0.18.11": + dependencies: + "@babel/core": 7.24.3 + "@babel/generator": 7.24.1 + "@babel/parser": 7.24.1 + "@babel/types": 7.24.0 + "@expo/config": 9.0.4 + "@expo/env": 0.3.0 + "@expo/json-file": 8.3.0 + "@expo/spawn-async": 1.7.2 chalk: 4.1.2 debug: 4.3.4 find-yarn-workspace-root: 2.0.0 @@ -35112,24 +51433,23 @@ snapshots: lightningcss: 1.19.0 postcss: 8.4.38 resolve-from: 5.0.0 - sucrase: 3.34.0 transitivePeerDependencies: - supports-color - '@expo/osascript@2.0.33': + "@expo/osascript@2.0.33": dependencies: - '@expo/spawn-async': 1.7.2 + "@expo/spawn-async": 1.7.2 exec-async: 2.2.0 - '@expo/osascript@2.1.0': + "@expo/osascript@2.1.0": dependencies: - '@expo/spawn-async': 1.7.2 + "@expo/spawn-async": 1.7.2 exec-async: 2.2.0 - '@expo/package-manager@1.1.2': + "@expo/package-manager@1.1.2": dependencies: - '@expo/json-file': 8.3.0 - '@expo/spawn-async': 1.7.2 + "@expo/json-file": 8.3.0 + "@expo/spawn-async": 1.7.2 ansi-regex: 5.0.1 chalk: 4.1.2 find-up: 5.0.0 @@ -35140,10 +51460,10 @@ snapshots: split: 1.0.1 sudo-prompt: 9.1.1 - '@expo/package-manager@1.4.2': + "@expo/package-manager@1.5.2": dependencies: - '@expo/json-file': 8.3.0 - '@expo/spawn-async': 1.7.2 + "@expo/json-file": 8.3.0 + "@expo/spawn-async": 1.7.2 ansi-regex: 5.0.1 chalk: 4.1.2 find-up: 5.0.0 @@ -35155,33 +51475,33 @@ snapshots: split: 1.0.1 sudo-prompt: 9.1.1 - '@expo/plist@0.0.18': + "@expo/plist@0.0.18": dependencies: - '@xmldom/xmldom': 0.7.13 + "@xmldom/xmldom": 0.7.13 base64-js: 1.5.1 xmlbuilder: 14.0.0 - '@expo/plist@0.0.20': + "@expo/plist@0.0.20": dependencies: - '@xmldom/xmldom': 0.7.13 + "@xmldom/xmldom": 0.7.13 base64-js: 1.5.1 xmlbuilder: 14.0.0 - '@expo/plist@0.1.0': + "@expo/plist@0.1.0": dependencies: - '@xmldom/xmldom': 0.7.13 + "@xmldom/xmldom": 0.7.13 base64-js: 1.5.1 xmlbuilder: 14.0.0 - '@expo/prebuild-config@6.2.6(expo-modules-autolinking@1.5.1(55fu4l7dolnnxrys6pt2pnhfne))': + "@expo/prebuild-config@6.2.6(expo-modules-autolinking@1.5.1(epzs5mtkmt3672rwgv2fv7s7qa))": dependencies: - '@expo/config': 8.1.2 - '@expo/config-plugins': 7.2.5 - '@expo/config-types': 49.0.0 - '@expo/image-utils': 0.3.22 - '@expo/json-file': 8.3.0 + "@expo/config": 8.1.2 + "@expo/config-plugins": 7.2.5 + "@expo/config-types": 49.0.0 + "@expo/image-utils": 0.3.22 + "@expo/json-file": 8.3.0 debug: 4.3.4 - expo-modules-autolinking: 1.5.1(55fu4l7dolnnxrys6pt2pnhfne) + expo-modules-autolinking: 1.5.1(epzs5mtkmt3672rwgv2fv7s7qa) fs-extra: 9.1.0 resolve-from: 5.0.0 semver: 7.5.3 @@ -35190,27 +51510,28 @@ snapshots: - encoding - supports-color - '@expo/prebuild-config@6.7.4(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))': + "@expo/prebuild-config@7.0.9(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))": dependencies: - '@expo/config': 8.5.4 - '@expo/config-plugins': 7.8.4 - '@expo/config-types': 50.0.0 - '@expo/image-utils': 0.4.1 - '@expo/json-file': 8.3.0 + "@expo/config": 9.0.4 + "@expo/config-plugins": 8.0.10 + "@expo/config-types": 51.0.3 + "@expo/image-utils": 0.5.1 + "@expo/json-file": 8.3.0 + "@react-native/normalize-colors": 0.74.85 debug: 4.3.4 - expo-modules-autolinking: 1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo-modules-autolinking: 1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) fs-extra: 9.1.0 resolve-from: 5.0.0 - semver: 7.5.3 + semver: 7.6.3 xml2js: 0.6.0 transitivePeerDependencies: - encoding - supports-color - '@expo/rudder-sdk-node@1.1.1': + "@expo/rudder-sdk-node@1.1.1": dependencies: - '@expo/bunyan': 4.0.0 - '@segment/loosely-validate-event': 2.0.0 + "@expo/bunyan": 4.0.0 + "@segment/loosely-validate-event": 2.0.0 fetch-retry: 4.1.1 md5: 2.3.0 node-fetch: 2.7.0 @@ -35219,53 +51540,55 @@ snapshots: transitivePeerDependencies: - encoding - '@expo/sdk-runtime-versions@1.0.0': {} + "@expo/sdk-runtime-versions@1.0.0": {} - '@expo/spawn-async@1.5.0': + "@expo/spawn-async@1.5.0": dependencies: cross-spawn: 6.0.5 - '@expo/spawn-async@1.7.2': + "@expo/spawn-async@1.7.2": dependencies: cross-spawn: 7.0.3 - '@expo/vector-icons@13.0.0': {} + "@expo/vector-icons@13.0.0": {} - '@expo/vector-icons@14.0.0': {} + "@expo/vector-icons@14.0.4": + dependencies: + prop-types: 15.8.1 - '@expo/webpack-config@18.1.4(expo-constants@14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(metro@0.80.8)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0)': + "@expo/webpack-config@18.1.4(ivfio2rwlkznsvzgftnclyrame)": dependencies: - '@babel/core': 7.24.3 - babel-loader: 8.3.0(@babel/core@7.24.3)(webpack@5.91.0(metro@0.80.8)) + "@babel/core": 7.24.3 + babel-loader: 8.3.0(@babel/core@7.24.3)(webpack@5.91.0(metro@0.80.12)) chalk: 4.1.2 - clean-webpack-plugin: 4.0.0(webpack@5.91.0(metro@0.80.8)) - copy-webpack-plugin: 10.2.4(webpack@5.91.0(metro@0.80.8)) - css-loader: 6.10.0(webpack@5.91.0(metro@0.80.8)) - css-minimizer-webpack-plugin: 3.4.1(metro@0.80.8)(webpack@5.91.0(metro@0.80.8)) - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - expo-pwa: 0.0.126(expo-constants@14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + clean-webpack-plugin: 4.0.0(webpack@5.91.0(metro@0.80.12)) + copy-webpack-plugin: 10.2.4(webpack@5.91.0(metro@0.80.12)) + css-loader: 6.10.0(webpack@5.91.0(metro@0.80.12)) + css-minimizer-webpack-plugin: 3.4.1(metro@0.80.12)(webpack@5.91.0(metro@0.80.12)) + expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + expo-pwa: 0.0.126(fwfwxrny4no4cg4koyqmr3oiha) find-up: 5.0.0 find-yarn-workspace-root: 2.0.0 fs-extra: 10.1.0 getenv: 1.0.0 - html-webpack-plugin: 5.6.0(webpack@5.91.0(metro@0.80.8)) + html-webpack-plugin: 5.6.0(webpack@5.91.0(metro@0.80.12)) is-wsl: 2.2.0 - mini-css-extract-plugin: 2.8.1(webpack@5.91.0(metro@0.80.8)) + mini-css-extract-plugin: 2.8.1(webpack@5.91.0(metro@0.80.12)) node-html-parser: 5.4.2 resolve-from: 5.0.0 semver: 7.3.8 source-map: 0.7.4 - source-map-loader: 3.0.2(webpack@5.91.0(metro@0.80.8)) - style-loader: 3.3.4(webpack@5.91.0(metro@0.80.8)) + source-map-loader: 3.0.2(webpack@5.91.0(metro@0.80.12)) + style-loader: 3.3.4(webpack@5.91.0(metro@0.80.12)) tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(metro@0.80.8)(webpack@5.91.0(metro@0.80.8)) - webpack: 5.91.0(metro@0.80.8) - webpack-dev-server: 4.15.2(webpack@5.91.0(metro@0.80.8)) - webpack-manifest-plugin: 4.1.1(webpack@5.91.0(metro@0.80.8)) - transitivePeerDependencies: - - '@parcel/css' - - '@rspack/core' - - '@swc/core' + terser-webpack-plugin: 5.3.10(metro@0.80.12)(webpack@5.91.0(metro@0.80.12)) + webpack: 5.91.0(metro@0.80.12) + webpack-dev-server: 4.15.2(webpack@5.91.0(metro@0.80.12)) + webpack-manifest-plugin: 4.1.1(webpack@5.91.0(metro@0.80.12)) + transitivePeerDependencies: + - "@parcel/css" + - "@rspack/core" + - "@swc/core" - bufferutil - clean-css - csso @@ -35281,448 +51604,448 @@ snapshots: - utf-8-validate - webpack-cli - '@expo/xcpretty@4.3.1': + "@expo/xcpretty@4.3.1": dependencies: - '@babel/code-frame': 7.10.4 + "@babel/code-frame": 7.10.4 chalk: 4.1.2 find-up: 5.0.0 js-yaml: 4.1.0 - '@faker-js/faker@8.4.1': {} + "@faker-js/faker@8.4.1": {} - '@fal-works/esbuild-plugin-global-externals@2.1.2': {} + "@fal-works/esbuild-plugin-global-externals@2.1.2": {} - '@fastify/busboy@2.1.1': {} + "@fastify/busboy@2.1.1": {} - '@firebase/analytics-compat@0.2.6(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)': + "@firebase/analytics-compat@0.2.6(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)": dependencies: - '@firebase/analytics': 0.10.0(@firebase/app@0.9.13) - '@firebase/analytics-types': 0.8.0 - '@firebase/app-compat': 0.2.13 - '@firebase/component': 0.6.4 - '@firebase/util': 1.9.3 + "@firebase/analytics": 0.10.0(@firebase/app@0.9.13) + "@firebase/analytics-types": 0.8.0 + "@firebase/app-compat": 0.2.13 + "@firebase/component": 0.6.4 + "@firebase/util": 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - '@firebase/app' + - "@firebase/app" - '@firebase/analytics-types@0.8.0': {} + "@firebase/analytics-types@0.8.0": {} - '@firebase/analytics@0.10.0(@firebase/app@0.9.13)': + "@firebase/analytics@0.10.0(@firebase/app@0.9.13)": dependencies: - '@firebase/app': 0.9.13 - '@firebase/component': 0.6.4 - '@firebase/installations': 0.6.4(@firebase/app@0.9.13) - '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.3 + "@firebase/app": 0.9.13 + "@firebase/component": 0.6.4 + "@firebase/installations": 0.6.4(@firebase/app@0.9.13) + "@firebase/logger": 0.4.0 + "@firebase/util": 1.9.3 tslib: 2.6.2 - '@firebase/app-check-compat@0.3.7(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)': + "@firebase/app-check-compat@0.3.7(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)": dependencies: - '@firebase/app-check': 0.8.0(@firebase/app@0.9.13) - '@firebase/app-check-types': 0.5.0 - '@firebase/app-compat': 0.2.13 - '@firebase/component': 0.6.4 - '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.3 + "@firebase/app-check": 0.8.0(@firebase/app@0.9.13) + "@firebase/app-check-types": 0.5.0 + "@firebase/app-compat": 0.2.13 + "@firebase/component": 0.6.4 + "@firebase/logger": 0.4.0 + "@firebase/util": 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - '@firebase/app' + - "@firebase/app" - '@firebase/app-check-interop-types@0.3.0': {} + "@firebase/app-check-interop-types@0.3.0": {} - '@firebase/app-check-types@0.5.0': {} + "@firebase/app-check-types@0.5.0": {} - '@firebase/app-check@0.8.0(@firebase/app@0.9.13)': + "@firebase/app-check@0.8.0(@firebase/app@0.9.13)": dependencies: - '@firebase/app': 0.9.13 - '@firebase/component': 0.6.4 - '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.3 + "@firebase/app": 0.9.13 + "@firebase/component": 0.6.4 + "@firebase/logger": 0.4.0 + "@firebase/util": 1.9.3 tslib: 2.6.2 - '@firebase/app-compat@0.2.13': + "@firebase/app-compat@0.2.13": dependencies: - '@firebase/app': 0.9.13 - '@firebase/component': 0.6.4 - '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.3 + "@firebase/app": 0.9.13 + "@firebase/component": 0.6.4 + "@firebase/logger": 0.4.0 + "@firebase/util": 1.9.3 tslib: 2.6.2 - '@firebase/app-types@0.9.0': {} + "@firebase/app-types@0.9.0": {} - '@firebase/app@0.9.13': + "@firebase/app@0.9.13": dependencies: - '@firebase/component': 0.6.4 - '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.3 + "@firebase/component": 0.6.4 + "@firebase/logger": 0.4.0 + "@firebase/util": 1.9.3 idb: 7.1.1 tslib: 2.6.2 - '@firebase/auth-compat@0.4.2(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13)': + "@firebase/auth-compat@0.4.2(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13)": dependencies: - '@firebase/app-compat': 0.2.13 - '@firebase/auth': 0.23.2(@firebase/app@0.9.13) - '@firebase/auth-types': 0.12.0(@firebase/app-types@0.9.0)(@firebase/util@1.9.3) - '@firebase/component': 0.6.4 - '@firebase/util': 1.9.3 + "@firebase/app-compat": 0.2.13 + "@firebase/auth": 0.23.2(@firebase/app@0.9.13) + "@firebase/auth-types": 0.12.0(@firebase/app-types@0.9.0)(@firebase/util@1.9.3) + "@firebase/component": 0.6.4 + "@firebase/util": 1.9.3 node-fetch: 2.6.7 tslib: 2.6.2 transitivePeerDependencies: - - '@firebase/app' - - '@firebase/app-types' + - "@firebase/app" + - "@firebase/app-types" - encoding - '@firebase/auth-interop-types@0.2.1': {} + "@firebase/auth-interop-types@0.2.1": {} - '@firebase/auth-types@0.12.0(@firebase/app-types@0.9.0)(@firebase/util@1.9.3)': + "@firebase/auth-types@0.12.0(@firebase/app-types@0.9.0)(@firebase/util@1.9.3)": dependencies: - '@firebase/app-types': 0.9.0 - '@firebase/util': 1.9.3 + "@firebase/app-types": 0.9.0 + "@firebase/util": 1.9.3 - '@firebase/auth@0.23.2(@firebase/app@0.9.13)': + "@firebase/auth@0.23.2(@firebase/app@0.9.13)": dependencies: - '@firebase/app': 0.9.13 - '@firebase/component': 0.6.4 - '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.3 + "@firebase/app": 0.9.13 + "@firebase/component": 0.6.4 + "@firebase/logger": 0.4.0 + "@firebase/util": 1.9.3 node-fetch: 2.6.7 tslib: 2.6.2 transitivePeerDependencies: - encoding - '@firebase/component@0.6.4': + "@firebase/component@0.6.4": dependencies: - '@firebase/util': 1.9.3 + "@firebase/util": 1.9.3 tslib: 2.6.2 - '@firebase/database-compat@0.3.4': + "@firebase/database-compat@0.3.4": dependencies: - '@firebase/component': 0.6.4 - '@firebase/database': 0.14.4 - '@firebase/database-types': 0.10.4 - '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.3 + "@firebase/component": 0.6.4 + "@firebase/database": 0.14.4 + "@firebase/database-types": 0.10.4 + "@firebase/logger": 0.4.0 + "@firebase/util": 1.9.3 tslib: 2.6.2 - '@firebase/database-types@0.10.4': + "@firebase/database-types@0.10.4": dependencies: - '@firebase/app-types': 0.9.0 - '@firebase/util': 1.9.3 + "@firebase/app-types": 0.9.0 + "@firebase/util": 1.9.3 - '@firebase/database@0.14.4': + "@firebase/database@0.14.4": dependencies: - '@firebase/auth-interop-types': 0.2.1 - '@firebase/component': 0.6.4 - '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.3 + "@firebase/auth-interop-types": 0.2.1 + "@firebase/component": 0.6.4 + "@firebase/logger": 0.4.0 + "@firebase/util": 1.9.3 faye-websocket: 0.11.4 tslib: 2.6.2 - '@firebase/firestore-compat@0.3.12(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13)': + "@firebase/firestore-compat@0.3.12(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13)": dependencies: - '@firebase/app-compat': 0.2.13 - '@firebase/component': 0.6.4 - '@firebase/firestore': 3.13.0(@firebase/app@0.9.13) - '@firebase/firestore-types': 2.5.1(@firebase/app-types@0.9.0)(@firebase/util@1.9.3) - '@firebase/util': 1.9.3 + "@firebase/app-compat": 0.2.13 + "@firebase/component": 0.6.4 + "@firebase/firestore": 3.13.0(@firebase/app@0.9.13) + "@firebase/firestore-types": 2.5.1(@firebase/app-types@0.9.0)(@firebase/util@1.9.3) + "@firebase/util": 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - '@firebase/app' - - '@firebase/app-types' + - "@firebase/app" + - "@firebase/app-types" - encoding - '@firebase/firestore-types@2.5.1(@firebase/app-types@0.9.0)(@firebase/util@1.9.3)': + "@firebase/firestore-types@2.5.1(@firebase/app-types@0.9.0)(@firebase/util@1.9.3)": dependencies: - '@firebase/app-types': 0.9.0 - '@firebase/util': 1.9.3 + "@firebase/app-types": 0.9.0 + "@firebase/util": 1.9.3 - '@firebase/firestore@3.13.0(@firebase/app@0.9.13)': + "@firebase/firestore@3.13.0(@firebase/app@0.9.13)": dependencies: - '@firebase/app': 0.9.13 - '@firebase/component': 0.6.4 - '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.3 - '@firebase/webchannel-wrapper': 0.10.1 - '@grpc/grpc-js': 1.7.3 - '@grpc/proto-loader': 0.6.13 + "@firebase/app": 0.9.13 + "@firebase/component": 0.6.4 + "@firebase/logger": 0.4.0 + "@firebase/util": 1.9.3 + "@firebase/webchannel-wrapper": 0.10.1 + "@grpc/grpc-js": 1.7.3 + "@grpc/proto-loader": 0.6.13 node-fetch: 2.6.7 tslib: 2.6.2 transitivePeerDependencies: - encoding - '@firebase/functions-compat@0.3.5(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)': + "@firebase/functions-compat@0.3.5(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)": dependencies: - '@firebase/app-compat': 0.2.13 - '@firebase/component': 0.6.4 - '@firebase/functions': 0.10.0(@firebase/app@0.9.13) - '@firebase/functions-types': 0.6.0 - '@firebase/util': 1.9.3 + "@firebase/app-compat": 0.2.13 + "@firebase/component": 0.6.4 + "@firebase/functions": 0.10.0(@firebase/app@0.9.13) + "@firebase/functions-types": 0.6.0 + "@firebase/util": 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - '@firebase/app' + - "@firebase/app" - encoding - '@firebase/functions-types@0.6.0': {} + "@firebase/functions-types@0.6.0": {} - '@firebase/functions@0.10.0(@firebase/app@0.9.13)': + "@firebase/functions@0.10.0(@firebase/app@0.9.13)": dependencies: - '@firebase/app': 0.9.13 - '@firebase/app-check-interop-types': 0.3.0 - '@firebase/auth-interop-types': 0.2.1 - '@firebase/component': 0.6.4 - '@firebase/messaging-interop-types': 0.2.0 - '@firebase/util': 1.9.3 + "@firebase/app": 0.9.13 + "@firebase/app-check-interop-types": 0.3.0 + "@firebase/auth-interop-types": 0.2.1 + "@firebase/component": 0.6.4 + "@firebase/messaging-interop-types": 0.2.0 + "@firebase/util": 1.9.3 node-fetch: 2.6.7 tslib: 2.6.2 transitivePeerDependencies: - encoding - '@firebase/installations-compat@0.2.4(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13)': + "@firebase/installations-compat@0.2.4(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13)": dependencies: - '@firebase/app-compat': 0.2.13 - '@firebase/component': 0.6.4 - '@firebase/installations': 0.6.4(@firebase/app@0.9.13) - '@firebase/installations-types': 0.5.0(@firebase/app-types@0.9.0) - '@firebase/util': 1.9.3 + "@firebase/app-compat": 0.2.13 + "@firebase/component": 0.6.4 + "@firebase/installations": 0.6.4(@firebase/app@0.9.13) + "@firebase/installations-types": 0.5.0(@firebase/app-types@0.9.0) + "@firebase/util": 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - '@firebase/app' - - '@firebase/app-types' + - "@firebase/app" + - "@firebase/app-types" - '@firebase/installations-types@0.5.0(@firebase/app-types@0.9.0)': + "@firebase/installations-types@0.5.0(@firebase/app-types@0.9.0)": dependencies: - '@firebase/app-types': 0.9.0 + "@firebase/app-types": 0.9.0 - '@firebase/installations@0.6.4(@firebase/app@0.9.13)': + "@firebase/installations@0.6.4(@firebase/app@0.9.13)": dependencies: - '@firebase/app': 0.9.13 - '@firebase/component': 0.6.4 - '@firebase/util': 1.9.3 + "@firebase/app": 0.9.13 + "@firebase/component": 0.6.4 + "@firebase/util": 1.9.3 idb: 7.0.1 tslib: 2.6.2 - '@firebase/logger@0.4.0': + "@firebase/logger@0.4.0": dependencies: tslib: 2.6.2 - '@firebase/messaging-compat@0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)': + "@firebase/messaging-compat@0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)": dependencies: - '@firebase/app-compat': 0.2.13 - '@firebase/component': 0.6.4 - '@firebase/messaging': 0.12.4(@firebase/app@0.9.13) - '@firebase/util': 1.9.3 + "@firebase/app-compat": 0.2.13 + "@firebase/component": 0.6.4 + "@firebase/messaging": 0.12.4(@firebase/app@0.9.13) + "@firebase/util": 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - '@firebase/app' + - "@firebase/app" - '@firebase/messaging-interop-types@0.2.0': {} + "@firebase/messaging-interop-types@0.2.0": {} - '@firebase/messaging@0.12.4(@firebase/app@0.9.13)': + "@firebase/messaging@0.12.4(@firebase/app@0.9.13)": dependencies: - '@firebase/app': 0.9.13 - '@firebase/component': 0.6.4 - '@firebase/installations': 0.6.4(@firebase/app@0.9.13) - '@firebase/messaging-interop-types': 0.2.0 - '@firebase/util': 1.9.3 + "@firebase/app": 0.9.13 + "@firebase/component": 0.6.4 + "@firebase/installations": 0.6.4(@firebase/app@0.9.13) + "@firebase/messaging-interop-types": 0.2.0 + "@firebase/util": 1.9.3 idb: 7.0.1 tslib: 2.6.2 - '@firebase/performance-compat@0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)': + "@firebase/performance-compat@0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)": dependencies: - '@firebase/app-compat': 0.2.13 - '@firebase/component': 0.6.4 - '@firebase/logger': 0.4.0 - '@firebase/performance': 0.6.4(@firebase/app@0.9.13) - '@firebase/performance-types': 0.2.0 - '@firebase/util': 1.9.3 + "@firebase/app-compat": 0.2.13 + "@firebase/component": 0.6.4 + "@firebase/logger": 0.4.0 + "@firebase/performance": 0.6.4(@firebase/app@0.9.13) + "@firebase/performance-types": 0.2.0 + "@firebase/util": 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - '@firebase/app' + - "@firebase/app" - '@firebase/performance-types@0.2.0': {} + "@firebase/performance-types@0.2.0": {} - '@firebase/performance@0.6.4(@firebase/app@0.9.13)': + "@firebase/performance@0.6.4(@firebase/app@0.9.13)": dependencies: - '@firebase/app': 0.9.13 - '@firebase/component': 0.6.4 - '@firebase/installations': 0.6.4(@firebase/app@0.9.13) - '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.3 + "@firebase/app": 0.9.13 + "@firebase/component": 0.6.4 + "@firebase/installations": 0.6.4(@firebase/app@0.9.13) + "@firebase/logger": 0.4.0 + "@firebase/util": 1.9.3 tslib: 2.6.2 - '@firebase/remote-config-compat@0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)': + "@firebase/remote-config-compat@0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)": dependencies: - '@firebase/app-compat': 0.2.13 - '@firebase/component': 0.6.4 - '@firebase/logger': 0.4.0 - '@firebase/remote-config': 0.4.4(@firebase/app@0.9.13) - '@firebase/remote-config-types': 0.3.0 - '@firebase/util': 1.9.3 + "@firebase/app-compat": 0.2.13 + "@firebase/component": 0.6.4 + "@firebase/logger": 0.4.0 + "@firebase/remote-config": 0.4.4(@firebase/app@0.9.13) + "@firebase/remote-config-types": 0.3.0 + "@firebase/util": 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - '@firebase/app' + - "@firebase/app" - '@firebase/remote-config-types@0.3.0': {} + "@firebase/remote-config-types@0.3.0": {} - '@firebase/remote-config@0.4.4(@firebase/app@0.9.13)': + "@firebase/remote-config@0.4.4(@firebase/app@0.9.13)": dependencies: - '@firebase/app': 0.9.13 - '@firebase/component': 0.6.4 - '@firebase/installations': 0.6.4(@firebase/app@0.9.13) - '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.3 + "@firebase/app": 0.9.13 + "@firebase/component": 0.6.4 + "@firebase/installations": 0.6.4(@firebase/app@0.9.13) + "@firebase/logger": 0.4.0 + "@firebase/util": 1.9.3 tslib: 2.6.2 - '@firebase/storage-compat@0.3.2(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13)': + "@firebase/storage-compat@0.3.2(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13)": dependencies: - '@firebase/app-compat': 0.2.13 - '@firebase/component': 0.6.4 - '@firebase/storage': 0.11.2(@firebase/app@0.9.13) - '@firebase/storage-types': 0.8.0(@firebase/app-types@0.9.0)(@firebase/util@1.9.3) - '@firebase/util': 1.9.3 + "@firebase/app-compat": 0.2.13 + "@firebase/component": 0.6.4 + "@firebase/storage": 0.11.2(@firebase/app@0.9.13) + "@firebase/storage-types": 0.8.0(@firebase/app-types@0.9.0)(@firebase/util@1.9.3) + "@firebase/util": 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - '@firebase/app' - - '@firebase/app-types' + - "@firebase/app" + - "@firebase/app-types" - encoding - '@firebase/storage-types@0.8.0(@firebase/app-types@0.9.0)(@firebase/util@1.9.3)': + "@firebase/storage-types@0.8.0(@firebase/app-types@0.9.0)(@firebase/util@1.9.3)": dependencies: - '@firebase/app-types': 0.9.0 - '@firebase/util': 1.9.3 + "@firebase/app-types": 0.9.0 + "@firebase/util": 1.9.3 - '@firebase/storage@0.11.2(@firebase/app@0.9.13)': + "@firebase/storage@0.11.2(@firebase/app@0.9.13)": dependencies: - '@firebase/app': 0.9.13 - '@firebase/component': 0.6.4 - '@firebase/util': 1.9.3 + "@firebase/app": 0.9.13 + "@firebase/component": 0.6.4 + "@firebase/util": 1.9.3 node-fetch: 2.6.7 tslib: 2.6.2 transitivePeerDependencies: - encoding - '@firebase/util@1.9.3': + "@firebase/util@1.9.3": dependencies: tslib: 2.6.2 - '@firebase/webchannel-wrapper@0.10.1': {} + "@firebase/webchannel-wrapper@0.10.1": {} - '@flatten-js/interval-tree@1.1.3': {} + "@flatten-js/interval-tree@1.1.3": {} - '@floating-ui/core@0.3.1': {} + "@floating-ui/core@0.3.1": {} - '@floating-ui/core@1.6.0': + "@floating-ui/core@1.6.0": dependencies: - '@floating-ui/utils': 0.2.1 + "@floating-ui/utils": 0.2.1 - '@floating-ui/dom@0.1.10': + "@floating-ui/dom@0.1.10": dependencies: - '@floating-ui/core': 0.3.1 + "@floating-ui/core": 0.3.1 - '@floating-ui/dom@1.6.3': + "@floating-ui/dom@1.6.3": dependencies: - '@floating-ui/core': 1.6.0 - '@floating-ui/utils': 0.2.1 + "@floating-ui/core": 1.6.0 + "@floating-ui/utils": 0.2.1 - '@floating-ui/react-dom@0.4.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@floating-ui/react-dom@0.4.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@floating-ui/dom': 0.1.10 + "@floating-ui/dom": 0.1.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.73)(react@18.2.0) transitivePeerDependencies: - - '@types/react' + - "@types/react" - '@floating-ui/react-dom@2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@floating-ui/react-dom@2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@floating-ui/dom': 1.6.3 + "@floating-ui/dom": 1.6.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@floating-ui/utils@0.2.1': {} + "@floating-ui/utils@0.2.1": {} - '@formatjs/ecma402-abstract@1.18.2': + "@formatjs/ecma402-abstract@1.18.2": dependencies: - '@formatjs/intl-localematcher': 0.5.4 + "@formatjs/intl-localematcher": 0.5.4 tslib: 2.6.2 - '@formatjs/intl-enumerator@1.4.5': + "@formatjs/intl-enumerator@1.4.5": dependencies: tslib: 2.6.2 - '@formatjs/intl-getcanonicallocales@2.3.0': + "@formatjs/intl-getcanonicallocales@2.3.0": dependencies: tslib: 2.6.2 - '@formatjs/intl-locale@3.4.5': + "@formatjs/intl-locale@3.4.5": dependencies: - '@formatjs/ecma402-abstract': 1.18.2 - '@formatjs/intl-enumerator': 1.4.5 - '@formatjs/intl-getcanonicallocales': 2.3.0 + "@formatjs/ecma402-abstract": 1.18.2 + "@formatjs/intl-enumerator": 1.4.5 + "@formatjs/intl-getcanonicallocales": 2.3.0 tslib: 2.6.2 - '@formatjs/intl-localematcher@0.5.4': + "@formatjs/intl-localematcher@0.5.4": dependencies: tslib: 2.6.2 - '@formatjs/intl-pluralrules@5.2.12': + "@formatjs/intl-pluralrules@5.2.12": dependencies: - '@formatjs/ecma402-abstract': 1.18.2 - '@formatjs/intl-localematcher': 0.5.4 + "@formatjs/ecma402-abstract": 1.18.2 + "@formatjs/intl-localematcher": 0.5.4 tslib: 2.6.2 - '@formatjs/intl-relativetimeformat@11.2.12': + "@formatjs/intl-relativetimeformat@11.2.12": dependencies: - '@formatjs/ecma402-abstract': 1.18.2 - '@formatjs/intl-localematcher': 0.5.4 + "@formatjs/ecma402-abstract": 1.18.2 + "@formatjs/intl-localematcher": 0.5.4 tslib: 2.6.2 - '@gar/promisify@1.1.3': {} + "@gar/promisify@1.1.3": {} - '@graphql-typed-document-node/core@3.2.0(graphql@15.8.0)': + "@graphql-typed-document-node/core@3.2.0(graphql@15.8.0)": dependencies: graphql: 15.8.0 - '@grpc/grpc-js@1.6.7': + "@grpc/grpc-js@1.6.7": dependencies: - '@grpc/proto-loader': 0.6.13 - '@types/node': 20.12.12 + "@grpc/proto-loader": 0.6.13 + "@types/node": 20.12.12 - '@grpc/grpc-js@1.7.3': + "@grpc/grpc-js@1.7.3": dependencies: - '@grpc/proto-loader': 0.7.12 - '@types/node': 20.12.12 + "@grpc/proto-loader": 0.7.12 + "@types/node": 20.12.12 - '@grpc/proto-loader@0.6.13': + "@grpc/proto-loader@0.6.13": dependencies: - '@types/long': 4.0.2 + "@types/long": 4.0.2 lodash.camelcase: 4.3.0 long: 4.0.0 protobufjs: 6.11.4 yargs: 16.2.0 - '@grpc/proto-loader@0.7.12': + "@grpc/proto-loader@0.7.12": dependencies: lodash.camelcase: 4.3.0 long: 5.2.3 protobufjs: 7.3.2 yargs: 17.7.2 - '@hapi/bourne@2.1.0': {} + "@hapi/bourne@2.1.0": {} - '@hapi/hoek@9.3.0': {} + "@hapi/hoek@9.3.0": {} - '@hapi/topo@5.1.0': + "@hapi/topo@5.1.0": dependencies: - '@hapi/hoek': 9.3.0 + "@hapi/hoek": 9.3.0 - '@hashgraph/cryptography@1.1.2(react-native@0.73.6(react@18.2.0))(react@18.2.0)': + "@hashgraph/cryptography@1.1.2(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: bignumber.js: 9.1.2 crypto-js: 4.2.0 elliptic: 6.5.5 - expo-crypto: 10.2.0(react-native@0.73.6(react@18.2.0))(react@18.2.0) - expo-random: 12.3.0(react-native@0.73.6(react@18.2.0))(react@18.2.0) + expo-crypto: 10.2.0(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + expo-random: 12.3.0(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) js-base64: 3.7.7 tweetnacl: 1.0.3 utf8: 3.0.0 @@ -35732,16 +52055,16 @@ snapshots: - react - react-native - '@hashgraph/proto@2.4.1': + "@hashgraph/proto@2.4.1": dependencies: long: 4.0.0 protobufjs: 6.11.4 - '@hashgraph/sdk@2.14.2(patch_hash=ftpe7kgiykw2quxzn7vgiqumd4)(react-native@0.73.6(react@18.2.0))(react@18.2.0)': + "@hashgraph/sdk@2.14.2(patch_hash=ftpe7kgiykw2quxzn7vgiqumd4)(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: - '@grpc/grpc-js': 1.6.7 - '@hashgraph/cryptography': 1.1.2(react-native@0.73.6(react@18.2.0))(react@18.2.0) - '@hashgraph/proto': 2.4.1 + "@grpc/grpc-js": 1.6.7 + "@hashgraph/cryptography": 1.1.2(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@hashgraph/proto": 2.4.1 bignumber.js: 9.1.2 crypto-js: 4.2.0 js-base64: 3.7.7 @@ -35755,55 +52078,55 @@ snapshots: - react - react-native - '@headlessui/react@1.7.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@headlessui/react@1.7.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@tanstack/react-virtual': 3.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@tanstack/react-virtual": 3.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) client-only: 0.0.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@helium/address@4.11.1': + "@helium/address@4.11.1": dependencies: bs58: 5.0.0 js-sha256: 0.9.0 multiformats: 9.9.0 - '@helium/proto@1.6.0': + "@helium/proto@1.6.0": dependencies: protobufjs: 6.11.4 - '@helium/transactions@4.11.1': + "@helium/transactions@4.11.1": dependencies: - '@helium/address': 4.11.1 - '@helium/proto': 1.6.0 - '@types/libsodium-wrappers': 0.7.13 + "@helium/address": 4.11.1 + "@helium/proto": 1.6.0 + "@types/libsodium-wrappers": 0.7.13 long: 4.0.0 path: 0.12.7 - '@humanwhocodes/config-array@0.11.14': + "@humanwhocodes/config-array@0.11.14": dependencies: - '@humanwhocodes/object-schema': 2.0.2 + "@humanwhocodes/object-schema": 2.0.2 debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: - supports-color - '@humanwhocodes/module-importer@1.0.1': {} + "@humanwhocodes/module-importer@1.0.1": {} - '@humanwhocodes/object-schema@2.0.2': {} + "@humanwhocodes/object-schema@2.0.2": {} - '@inquirer/confirm@3.1.7': + "@inquirer/confirm@3.1.7": dependencies: - '@inquirer/core': 8.2.0 - '@inquirer/type': 1.3.1 + "@inquirer/core": 8.2.0 + "@inquirer/type": 1.3.1 - '@inquirer/core@8.2.0': + "@inquirer/core@8.2.0": dependencies: - '@inquirer/figures': 1.0.1 - '@inquirer/type': 1.3.1 - '@types/mute-stream': 0.0.4 - '@types/node': 20.12.12 - '@types/wrap-ansi': 3.0.0 + "@inquirer/figures": 1.0.1 + "@inquirer/type": 1.3.1 + "@types/mute-stream": 0.0.4 + "@types/node": 20.12.12 + "@types/wrap-ansi": 3.0.0 ansi-escapes: 4.3.2 chalk: 4.1.2 cli-spinners: 2.9.2 @@ -35813,15 +52136,15 @@ snapshots: strip-ansi: 6.0.1 wrap-ansi: 6.2.0 - '@inquirer/figures@1.0.1': {} + "@inquirer/figures@1.0.1": {} - '@inquirer/type@1.3.1': {} + "@inquirer/type@1.3.1": {} - '@ioredis/commands@1.2.0': {} + "@ioredis/commands@1.2.0": {} - '@iov/crypto@2.1.0': + "@iov/crypto@2.1.0": dependencies: - '@iov/encoding': 2.1.0 + "@iov/encoding": 2.1.0 bip39: 3.1.0 bn.js: 4.12.0 elliptic: 6.5.5 @@ -35833,21 +52156,21 @@ snapshots: type-tagger: 1.0.0 unorm: 1.6.0 - '@iov/encoding@2.1.0': + "@iov/encoding@2.1.0": dependencies: base64-js: 1.5.1 bech32: 1.1.4 bn.js: 4.12.0 readonly-date: 1.0.0 - '@iov/utils@2.0.2': {} + "@iov/utils@2.0.2": {} - '@ipld/dag-cbor@9.2.1': + "@ipld/dag-cbor@9.2.1": dependencies: cborg: 4.1.4 multiformats: 13.1.0 - '@isaacs/cliui@8.0.2': + "@isaacs/cliui@8.0.2": dependencies: string-width: 5.1.2 string-width-cjs: string-width@4.2.3 @@ -35856,9 +52179,9 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 - '@isaacs/ttlcache@1.4.1': {} + "@isaacs/ttlcache@1.4.1": {} - '@istanbuljs/load-nyc-config@1.1.0': + "@istanbuljs/load-nyc-config@1.1.0": dependencies: camelcase: 5.3.1 find-up: 4.1.0 @@ -35866,43 +52189,43 @@ snapshots: js-yaml: 3.14.1 resolve-from: 5.0.0 - '@istanbuljs/schema@0.1.3': {} + "@istanbuljs/schema@0.1.3": {} - '@jest/console@27.5.1': + "@jest/console@27.5.1": dependencies: - '@jest/types': 27.5.1 - '@types/node': 20.12.12 + "@jest/types": 27.5.1 + "@types/node": 20.12.12 chalk: 4.1.2 jest-message-util: 27.5.1 jest-util: 27.5.1 slash: 3.0.0 - '@jest/console@28.1.3': + "@jest/console@28.1.3": dependencies: - '@jest/types': 28.1.3 - '@types/node': 20.12.12 + "@jest/types": 28.1.3 + "@types/node": 20.12.12 chalk: 4.1.2 jest-message-util: 28.1.3 jest-util: 28.1.3 slash: 3.0.0 - '@jest/console@29.7.0': + "@jest/console@29.7.0": dependencies: - '@jest/types': 29.6.3 - '@types/node': 20.12.12 + "@jest/types": 29.6.3 + "@types/node": 20.12.12 chalk: 4.1.2 jest-message-util: 29.7.0 jest-util: 29.7.0 slash: 3.0.0 - '@jest/core@27.5.1': + "@jest/core@27.5.1": dependencies: - '@jest/console': 27.5.1 - '@jest/reporters': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 20.12.12 + "@jest/console": 27.5.1 + "@jest/reporters": 27.5.1 + "@jest/test-result": 27.5.1 + "@jest/transform": 27.5.1 + "@jest/types": 27.5.1 + "@types/node": 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.8.1 @@ -35933,14 +52256,14 @@ snapshots: - ts-node - utf-8-validate - '@jest/core@28.1.3': + "@jest/core@28.1.3": dependencies: - '@jest/console': 28.1.3 - '@jest/reporters': 28.1.3 - '@jest/test-result': 28.1.3 - '@jest/transform': 28.1.3 - '@jest/types': 28.1.3 - '@types/node': 20.12.12 + "@jest/console": 28.1.3 + "@jest/reporters": 28.1.3 + "@jest/test-result": 28.1.3 + "@jest/transform": 28.1.3 + "@jest/types": 28.1.3 + "@types/node": 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -35969,14 +52292,14 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0': + "@jest/core@29.7.0": dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 + "@jest/console": 29.7.0 + "@jest/reporters": 29.7.0 + "@jest/test-result": 29.7.0 + "@jest/transform": 29.7.0 + "@jest/types": 29.6.3 + "@types/node": 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -36005,14 +52328,14 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3))': + "@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3))": dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 + "@jest/console": 29.7.0 + "@jest/reporters": 29.7.0 + "@jest/test-result": 29.7.0 + "@jest/transform": 29.7.0 + "@jest/types": 29.6.3 + "@types/node": 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -36041,14 +52364,14 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5))': + "@jest/core@29.7.0(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5))": dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 + "@jest/console": 29.7.0 + "@jest/reporters": 29.7.0 + "@jest/test-result": 29.7.0 + "@jest/transform": 29.7.0 + "@jest/types": 29.6.3 + "@types/node": 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -36077,14 +52400,14 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3))': + "@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3))": dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 + "@jest/console": 29.7.0 + "@jest/reporters": 29.7.0 + "@jest/test-result": 29.7.0 + "@jest/transform": 29.7.0 + "@jest/types": 29.6.3 + "@types/node": 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -36113,14 +52436,14 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3))': + "@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3))": dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 + "@jest/console": 29.7.0 + "@jest/reporters": 29.7.0 + "@jest/test-result": 29.7.0 + "@jest/transform": 29.7.0 + "@jest/types": 29.6.3 + "@types/node": 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -36149,14 +52472,14 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3))': + "@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3))": dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 + "@jest/console": 29.7.0 + "@jest/reporters": 29.7.0 + "@jest/test-result": 29.7.0 + "@jest/transform": 29.7.0 + "@jest/types": 29.6.3 + "@types/node": 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -36185,14 +52508,14 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))': + "@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))": dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 + "@jest/console": 29.7.0 + "@jest/reporters": 29.7.0 + "@jest/test-result": 29.7.0 + "@jest/transform": 29.7.0 + "@jest/types": 29.6.3 + "@types/node": 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -36221,14 +52544,14 @@ snapshots: - supports-color - ts-node - '@jest/core@29.7.0(ts-node@10.9.2(typescript@5.4.3))': + "@jest/core@29.7.0(ts-node@10.9.2(typescript@5.4.3))": dependencies: - '@jest/console': 29.7.0 - '@jest/reporters': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 + "@jest/console": 29.7.0 + "@jest/reporters": 29.7.0 + "@jest/test-result": 29.7.0 + "@jest/transform": 29.7.0 + "@jest/types": 29.6.3 + "@types/node": 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -36257,40 +52580,40 @@ snapshots: - supports-color - ts-node - '@jest/create-cache-key-function@29.7.0': + "@jest/create-cache-key-function@29.7.0": dependencies: - '@jest/types': 29.6.3 + "@jest/types": 29.6.3 - '@jest/environment@27.5.1': + "@jest/environment@27.5.1": dependencies: - '@jest/fake-timers': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 20.12.12 + "@jest/fake-timers": 27.5.1 + "@jest/types": 27.5.1 + "@types/node": 20.12.12 jest-mock: 27.5.1 - '@jest/environment@28.1.3': + "@jest/environment@28.1.3": dependencies: - '@jest/fake-timers': 28.1.3 - '@jest/types': 28.1.3 - '@types/node': 20.12.12 + "@jest/fake-timers": 28.1.3 + "@jest/types": 28.1.3 + "@types/node": 20.12.12 jest-mock: 28.1.3 - '@jest/environment@29.7.0': + "@jest/environment@29.7.0": dependencies: - '@jest/fake-timers': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 + "@jest/fake-timers": 29.7.0 + "@jest/types": 29.6.3 + "@types/node": 20.12.12 jest-mock: 29.7.0 - '@jest/expect-utils@28.1.3': + "@jest/expect-utils@28.1.3": dependencies: jest-get-type: 28.0.2 - '@jest/expect-utils@29.7.0': + "@jest/expect-utils@29.7.0": dependencies: jest-get-type: 29.6.3 - '@jest/expect@28.1.3': + "@jest/expect@28.1.3": dependencies: expect: 28.1.3 jest-snapshot: 28.1.3 @@ -36298,7 +52621,7 @@ snapshots: - metro - supports-color - '@jest/expect@29.7.0': + "@jest/expect@29.7.0": dependencies: expect: 29.7.0 jest-snapshot: 29.7.0 @@ -36306,66 +52629,66 @@ snapshots: - metro - supports-color - '@jest/fake-timers@27.5.1': + "@jest/fake-timers@27.5.1": dependencies: - '@jest/types': 27.5.1 - '@sinonjs/fake-timers': 8.1.0 - '@types/node': 20.12.12 + "@jest/types": 27.5.1 + "@sinonjs/fake-timers": 8.1.0 + "@types/node": 20.12.12 jest-message-util: 27.5.1 jest-mock: 27.5.1 jest-util: 27.5.1 - '@jest/fake-timers@28.1.3': + "@jest/fake-timers@28.1.3": dependencies: - '@jest/types': 28.1.3 - '@sinonjs/fake-timers': 9.1.2 - '@types/node': 20.12.12 + "@jest/types": 28.1.3 + "@sinonjs/fake-timers": 9.1.2 + "@types/node": 20.12.12 jest-message-util: 28.1.3 jest-mock: 28.1.3 jest-util: 28.1.3 - '@jest/fake-timers@29.7.0': + "@jest/fake-timers@29.7.0": dependencies: - '@jest/types': 29.6.3 - '@sinonjs/fake-timers': 10.3.0 - '@types/node': 20.12.12 + "@jest/types": 29.6.3 + "@sinonjs/fake-timers": 10.3.0 + "@types/node": 20.12.12 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 - '@jest/globals@27.5.1': + "@jest/globals@27.5.1": dependencies: - '@jest/environment': 27.5.1 - '@jest/types': 27.5.1 + "@jest/environment": 27.5.1 + "@jest/types": 27.5.1 expect: 27.5.1 - '@jest/globals@28.1.3': + "@jest/globals@28.1.3": dependencies: - '@jest/environment': 28.1.3 - '@jest/expect': 28.1.3 - '@jest/types': 28.1.3 + "@jest/environment": 28.1.3 + "@jest/expect": 28.1.3 + "@jest/types": 28.1.3 transitivePeerDependencies: - metro - supports-color - '@jest/globals@29.7.0': + "@jest/globals@29.7.0": dependencies: - '@jest/environment': 29.7.0 - '@jest/expect': 29.7.0 - '@jest/types': 29.6.3 + "@jest/environment": 29.7.0 + "@jest/expect": 29.7.0 + "@jest/types": 29.6.3 jest-mock: 29.7.0 transitivePeerDependencies: - metro - supports-color - '@jest/reporters@27.5.1': + "@jest/reporters@27.5.1": dependencies: - '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 20.12.12 + "@bcoe/v8-coverage": 0.2.3 + "@jest/console": 27.5.1 + "@jest/test-result": 27.5.1 + "@jest/transform": 27.5.1 + "@jest/types": 27.5.1 + "@types/node": 20.12.12 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -36389,15 +52712,15 @@ snapshots: - metro - supports-color - '@jest/reporters@28.1.3': + "@jest/reporters@28.1.3": dependencies: - '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 28.1.3 - '@jest/test-result': 28.1.3 - '@jest/transform': 28.1.3 - '@jest/types': 28.1.3 - '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 20.12.12 + "@bcoe/v8-coverage": 0.2.3 + "@jest/console": 28.1.3 + "@jest/test-result": 28.1.3 + "@jest/transform": 28.1.3 + "@jest/types": 28.1.3 + "@jridgewell/trace-mapping": 0.3.25 + "@types/node": 20.12.12 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -36420,15 +52743,15 @@ snapshots: - metro - supports-color - '@jest/reporters@29.7.0': + "@jest/reporters@29.7.0": dependencies: - '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.25 - '@types/node': 20.12.12 + "@bcoe/v8-coverage": 0.2.3 + "@jest/console": 29.7.0 + "@jest/test-result": 29.7.0 + "@jest/transform": 29.7.0 + "@jest/types": 29.6.3 + "@jridgewell/trace-mapping": 0.3.25 + "@types/node": 20.12.12 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -36450,56 +52773,56 @@ snapshots: - metro - supports-color - '@jest/schemas@28.1.3': + "@jest/schemas@28.1.3": dependencies: - '@sinclair/typebox': 0.24.51 + "@sinclair/typebox": 0.24.51 - '@jest/schemas@29.6.3': + "@jest/schemas@29.6.3": dependencies: - '@sinclair/typebox': 0.27.8 + "@sinclair/typebox": 0.27.8 - '@jest/source-map@27.5.1': + "@jest/source-map@27.5.1": dependencies: callsites: 3.1.0 graceful-fs: 4.2.11 source-map: 0.6.1 - '@jest/source-map@28.1.2': + "@jest/source-map@28.1.2": dependencies: - '@jridgewell/trace-mapping': 0.3.25 + "@jridgewell/trace-mapping": 0.3.25 callsites: 3.1.0 graceful-fs: 4.2.11 - '@jest/source-map@29.6.3': + "@jest/source-map@29.6.3": dependencies: - '@jridgewell/trace-mapping': 0.3.25 + "@jridgewell/trace-mapping": 0.3.25 callsites: 3.1.0 graceful-fs: 4.2.11 - '@jest/test-result@27.5.1': + "@jest/test-result@27.5.1": dependencies: - '@jest/console': 27.5.1 - '@jest/types': 27.5.1 - '@types/istanbul-lib-coverage': 2.0.6 + "@jest/console": 27.5.1 + "@jest/types": 27.5.1 + "@types/istanbul-lib-coverage": 2.0.6 collect-v8-coverage: 1.0.2 - '@jest/test-result@28.1.3': + "@jest/test-result@28.1.3": dependencies: - '@jest/console': 28.1.3 - '@jest/types': 28.1.3 - '@types/istanbul-lib-coverage': 2.0.6 + "@jest/console": 28.1.3 + "@jest/types": 28.1.3 + "@types/istanbul-lib-coverage": 2.0.6 collect-v8-coverage: 1.0.2 - '@jest/test-result@29.7.0': + "@jest/test-result@29.7.0": dependencies: - '@jest/console': 29.7.0 - '@jest/types': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.6 + "@jest/console": 29.7.0 + "@jest/types": 29.6.3 + "@types/istanbul-lib-coverage": 2.0.6 collect-v8-coverage: 1.0.2 - '@jest/test-sequencer@27.5.1': + "@jest/test-sequencer@27.5.1": dependencies: - '@jest/test-result': 27.5.1 + "@jest/test-result": 27.5.1 graceful-fs: 4.2.11 jest-haste-map: 27.5.1 jest-runtime: 27.5.1 @@ -36507,28 +52830,28 @@ snapshots: - metro - supports-color - '@jest/test-sequencer@28.1.3': + "@jest/test-sequencer@28.1.3": dependencies: - '@jest/test-result': 28.1.3 + "@jest/test-result": 28.1.3 graceful-fs: 4.2.11 jest-haste-map: 28.1.3 slash: 3.0.0 transitivePeerDependencies: - metro - '@jest/test-sequencer@29.7.0': + "@jest/test-sequencer@29.7.0": dependencies: - '@jest/test-result': 29.7.0 + "@jest/test-result": 29.7.0 graceful-fs: 4.2.11 jest-haste-map: 29.7.0 slash: 3.0.0 transitivePeerDependencies: - metro - '@jest/transform@27.5.1': + "@jest/transform@27.5.1": dependencies: - '@babel/core': 7.24.3 - '@jest/types': 27.5.1 + "@babel/core": 7.24.3 + "@jest/types": 27.5.1 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 1.9.0 @@ -36546,11 +52869,11 @@ snapshots: - metro - supports-color - '@jest/transform@28.1.3': + "@jest/transform@28.1.3": dependencies: - '@babel/core': 7.24.3 - '@jest/types': 28.1.3 - '@jridgewell/trace-mapping': 0.3.25 + "@babel/core": 7.24.3 + "@jest/types": 28.1.3 + "@jridgewell/trace-mapping": 0.3.25 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 1.9.0 @@ -36567,11 +52890,11 @@ snapshots: - metro - supports-color - '@jest/transform@29.7.0': + "@jest/transform@29.7.0": dependencies: - '@babel/core': 7.24.3 - '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.25 + "@babel/core": 7.24.3 + "@jest/types": 29.6.3 + "@jridgewell/trace-mapping": 0.3.25 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 2.0.0 @@ -36588,17 +52911,17 @@ snapshots: - metro - supports-color - '@jest/transform@29.7.0(metro@0.80.8)': + "@jest/transform@29.7.0(metro@0.80.12)": dependencies: - '@babel/core': 7.24.3 - '@jest/types': 29.6.3 - '@jridgewell/trace-mapping': 0.3.25 + "@babel/core": 7.24.3 + "@jest/types": 29.6.3 + "@jridgewell/trace-mapping": 0.3.25 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 2.0.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.11 - jest-haste-map: 29.7.0(metro@0.80.8) + jest-haste-map: 29.7.0(metro@0.80.12) jest-regex-util: 29.6.3 jest-util: 29.7.0 micromatch: 4.0.7 @@ -36609,86 +52932,92 @@ snapshots: - metro - supports-color - '@jest/types@26.6.2': + "@jest/types@24.9.0": dependencies: - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 3.0.4 - '@types/node': 20.12.12 - '@types/yargs': 15.0.19 + "@types/istanbul-lib-coverage": 2.0.6 + "@types/istanbul-reports": 1.1.2 + "@types/yargs": 13.0.12 + + "@jest/types@26.6.2": + dependencies: + "@types/istanbul-lib-coverage": 2.0.6 + "@types/istanbul-reports": 3.0.4 + "@types/node": 20.12.12 + "@types/yargs": 15.0.19 chalk: 4.1.2 - '@jest/types@27.5.1': + "@jest/types@27.5.1": dependencies: - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 3.0.4 - '@types/node': 20.12.12 - '@types/yargs': 16.0.9 + "@types/istanbul-lib-coverage": 2.0.6 + "@types/istanbul-reports": 3.0.4 + "@types/node": 20.12.12 + "@types/yargs": 16.0.9 chalk: 4.1.2 - '@jest/types@28.1.3': + "@jest/types@28.1.3": dependencies: - '@jest/schemas': 28.1.3 - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 3.0.4 - '@types/node': 20.12.12 - '@types/yargs': 17.0.32 + "@jest/schemas": 28.1.3 + "@types/istanbul-lib-coverage": 2.0.6 + "@types/istanbul-reports": 3.0.4 + "@types/node": 20.12.12 + "@types/yargs": 17.0.32 chalk: 4.1.2 - '@jest/types@29.6.3': + "@jest/types@29.6.3": dependencies: - '@jest/schemas': 29.6.3 - '@types/istanbul-lib-coverage': 2.0.6 - '@types/istanbul-reports': 3.0.4 - '@types/node': 20.12.12 - '@types/yargs': 17.0.32 + "@jest/schemas": 29.6.3 + "@types/istanbul-lib-coverage": 2.0.6 + "@types/istanbul-reports": 3.0.4 + "@types/node": 20.12.12 + "@types/yargs": 17.0.32 chalk: 4.1.2 - '@jridgewell/gen-mapping@0.3.5': + "@jridgewell/gen-mapping@0.3.5": dependencies: - '@jridgewell/set-array': 1.2.1 - '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.25 + "@jridgewell/set-array": 1.2.1 + "@jridgewell/sourcemap-codec": 1.4.15 + "@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.5 - '@jridgewell/trace-mapping': 0.3.25 + "@jridgewell/gen-mapping": 0.3.5 + "@jridgewell/trace-mapping": 0.3.25 - '@jridgewell/sourcemap-codec@1.4.15': {} + "@jridgewell/sourcemap-codec@1.4.15": {} - '@jridgewell/trace-mapping@0.3.25': + "@jridgewell/trace-mapping@0.3.25": dependencies: - '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 + "@jridgewell/resolve-uri": 3.1.2 + "@jridgewell/sourcemap-codec": 1.4.15 - '@jridgewell/trace-mapping@0.3.9': + "@jridgewell/trace-mapping@0.3.9": dependencies: - '@jridgewell/resolve-uri': 3.1.2 - '@jridgewell/sourcemap-codec': 1.4.15 + "@jridgewell/resolve-uri": 3.1.2 + "@jridgewell/sourcemap-codec": 1.4.15 - '@jsdoc/salty@0.2.8': + "@jsdoc/salty@0.2.8": dependencies: lodash: 4.17.21 - '@juggle/resize-observer@3.4.0': {} + "@juggle/resize-observer@3.4.0": {} - '@keplr-wallet/cosmos@0.9.16': + "@keplr-wallet/cosmos@0.9.16": dependencies: - '@cosmjs/launchpad': 0.24.1 - '@keplr-wallet/crypto': 0.9.10 - '@keplr-wallet/types': 0.9.12 - '@keplr-wallet/unit': 0.9.12 + "@cosmjs/launchpad": 0.24.1 + "@keplr-wallet/crypto": 0.9.10 + "@keplr-wallet/types": 0.9.12 + "@keplr-wallet/unit": 0.9.12 axios: 0.21.4 bech32: 1.1.4 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) long: 4.0.0 protobufjs: 6.11.4 - '@keplr-wallet/crypto@0.9.10': + "@keplr-wallet/crypto@0.9.10": dependencies: bip32: 2.0.6 bip39: 3.1.0 @@ -36697,160 +53026,160 @@ snapshots: elliptic: 6.5.5 sha.js: 2.4.11 - '@keplr-wallet/proto-types@0.12.89': + "@keplr-wallet/proto-types@0.12.89": dependencies: long: 4.0.0 protobufjs: 6.11.4 - '@keplr-wallet/types@0.9.12': + "@keplr-wallet/types@0.9.12": dependencies: - '@cosmjs/launchpad': 0.24.1 - '@cosmjs/proto-signing': 0.24.1 + "@cosmjs/launchpad": 0.24.1 + "@cosmjs/proto-signing": 0.24.1 axios: 0.21.4 long: 4.0.0 secretjs: 0.17.8 - '@keplr-wallet/unit@0.9.12': + "@keplr-wallet/unit@0.9.12": dependencies: - '@keplr-wallet/types': 0.9.12 + "@keplr-wallet/types": 0.9.12 big-integer: 1.6.52 utility-types: 3.11.0 - '@koa/cors@3.4.3': + "@koa/cors@3.4.3": dependencies: vary: 1.1.2 - '@kwsites/file-exists@1.1.1': + "@kwsites/file-exists@1.1.1": dependencies: debug: 4.3.4 transitivePeerDependencies: - supports-color - '@kwsites/promise-deferred@1.1.1': {} + "@kwsites/promise-deferred@1.1.1": {} - '@ledgerhq/compressjs@https://codeload.github.com/LedgerHQ/compressjs/tar.gz/d9e8e4d994923e0ea76a32b97289bcccfe71b82e': + "@ledgerhq/compressjs@https://codeload.github.com/LedgerHQ/compressjs/tar.gz/d9e8e4d994923e0ea76a32b97289bcccfe71b82e": dependencies: commander: 2.20.3 - '@ledgerhq/crypto-icons-ui@file:libs/ui/packages/crypto-icons(@types/react@18.2.73)(react@18.2.0)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0))(styled-system@5.1.5)': + "@ledgerhq/crypto-icons-ui@file:libs/ui/packages/crypto-icons(@types/react@18.2.73)(react@18.2.0)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0))(styled-system@5.1.5)": dependencies: react: 18.2.0 styled-components: 5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0) styled-system: 5.1.5 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@ledgerhq/errors@5.50.0': {} + "@ledgerhq/errors@5.50.0": {} - '@ledgerhq/errors@6.19.1': {} + "@ledgerhq/errors@6.19.1": {} - '@ledgerhq/hw-app-eth@5.11.0': + "@ledgerhq/hw-app-eth@5.11.0": dependencies: - '@ledgerhq/errors': 5.50.0 - '@ledgerhq/hw-transport': 5.11.0 + "@ledgerhq/errors": 5.50.0 + "@ledgerhq/hw-transport": 5.11.0 - '@ledgerhq/hw-transport-u2f@5.36.0-deprecated': + "@ledgerhq/hw-transport-u2f@5.36.0-deprecated": dependencies: - '@ledgerhq/errors': 5.50.0 - '@ledgerhq/hw-transport': 5.51.1 - '@ledgerhq/logs': 5.50.0 + "@ledgerhq/errors": 5.50.0 + "@ledgerhq/hw-transport": 5.51.1 + "@ledgerhq/logs": 5.50.0 u2f-api: 0.2.7 - '@ledgerhq/hw-transport@5.11.0': + "@ledgerhq/hw-transport@5.11.0": dependencies: - '@ledgerhq/devices': link:libs/ledgerjs/packages/devices - '@ledgerhq/errors': 5.50.0 + "@ledgerhq/devices": link:libs/ledgerjs/packages/devices + "@ledgerhq/errors": 5.50.0 events: 3.3.0 - '@ledgerhq/hw-transport@5.51.1': + "@ledgerhq/hw-transport@5.51.1": dependencies: - '@ledgerhq/devices': link:libs/ledgerjs/packages/devices - '@ledgerhq/errors': 5.50.0 + "@ledgerhq/devices": link:libs/ledgerjs/packages/devices + "@ledgerhq/errors": 5.50.0 events: 3.3.0 - '@ledgerhq/hw-transport@6.27.1': + "@ledgerhq/hw-transport@6.27.1": dependencies: - '@ledgerhq/devices': link:libs/ledgerjs/packages/devices - '@ledgerhq/errors': 6.19.1 + "@ledgerhq/devices": link:libs/ledgerjs/packages/devices + "@ledgerhq/errors": 6.19.1 events: 3.3.0 - '@ledgerhq/hw-transport@6.28.1': + "@ledgerhq/hw-transport@6.28.1": dependencies: - '@ledgerhq/devices': link:libs/ledgerjs/packages/devices - '@ledgerhq/errors': 6.19.1 + "@ledgerhq/devices": link:libs/ledgerjs/packages/devices + "@ledgerhq/errors": 6.19.1 events: 3.3.0 - '@ledgerhq/hw-transport@6.30.6': + "@ledgerhq/hw-transport@6.30.6": dependencies: - '@ledgerhq/devices': link:libs/ledgerjs/packages/devices - '@ledgerhq/errors': 6.19.1 - '@ledgerhq/logs': 6.12.0 + "@ledgerhq/devices": link:libs/ledgerjs/packages/devices + "@ledgerhq/errors": 6.19.1 + "@ledgerhq/logs": 6.12.0 events: 3.3.0 - '@ledgerhq/hw-transport@6.31.3': + "@ledgerhq/hw-transport@6.31.3": dependencies: - '@ledgerhq/devices': link:libs/ledgerjs/packages/devices - '@ledgerhq/errors': 6.19.1 - '@ledgerhq/logs': 6.12.0 + "@ledgerhq/devices": link:libs/ledgerjs/packages/devices + "@ledgerhq/errors": 6.19.1 + "@ledgerhq/logs": 6.12.0 events: 3.3.0 - '@ledgerhq/hw-transport@6.31.4': + "@ledgerhq/hw-transport@6.31.4": dependencies: - '@ledgerhq/devices': link:libs/ledgerjs/packages/devices - '@ledgerhq/errors': 6.19.1 - '@ledgerhq/logs': 6.12.0 + "@ledgerhq/devices": link:libs/ledgerjs/packages/devices + "@ledgerhq/errors": 6.19.1 + "@ledgerhq/logs": 6.12.0 events: 3.3.0 - '@ledgerhq/icons-ui@file:libs/ui/packages/icons(@types/react@18.2.73)(react@18.2.0)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0))(styled-system@5.1.5)': + "@ledgerhq/icons-ui@file:libs/ui/packages/icons(@types/react@18.2.73)(react@18.2.0)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0))(styled-system@5.1.5)": dependencies: react: 18.2.0 styled-components: 5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0) styled-system: 5.1.5 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@ledgerhq/live-app-sdk@0.8.2': + "@ledgerhq/live-app-sdk@0.8.2": dependencies: bignumber.js: 9.1.2 json-rpc-2.0: 1.7.0 - '@ledgerhq/logs@5.50.0': {} + "@ledgerhq/logs@5.50.0": {} - '@ledgerhq/logs@6.12.0': {} + "@ledgerhq/logs@6.12.0": {} - '@ledgerhq/wallet-api-client-react@1.3.12(react@18.2.0)': + "@ledgerhq/wallet-api-client-react@1.3.12(react@18.2.0)": dependencies: - '@ledgerhq/wallet-api-client': 1.6.0 + "@ledgerhq/wallet-api-client": 1.6.0 react: 18.2.0 - '@ledgerhq/wallet-api-client@1.6.0': + "@ledgerhq/wallet-api-client@1.6.0": dependencies: - '@ledgerhq/hw-transport': 6.31.4 - '@ledgerhq/wallet-api-core': 1.13.0 + "@ledgerhq/hw-transport": 6.31.4 + "@ledgerhq/wallet-api-core": 1.13.0 bignumber.js: 9.1.2 - '@ledgerhq/wallet-api-core@1.13.0': + "@ledgerhq/wallet-api-core@1.13.0": dependencies: - '@ledgerhq/errors': 6.19.1 + "@ledgerhq/errors": 6.19.1 bignumber.js: 9.1.2 uuid: 9.0.1 zod: 3.23.8 - '@ledgerhq/wallet-api-server@1.6.0(react@18.2.0)(rxjs@7.8.1)': + "@ledgerhq/wallet-api-server@1.6.0(react@18.2.0)(rxjs@7.8.1)": dependencies: - '@ledgerhq/wallet-api-core': 1.13.0 + "@ledgerhq/wallet-api-core": 1.13.0 bignumber.js: 9.1.2 picomatch: 4.0.2 rxjs: 7.8.1 optionalDependencies: react: 18.2.0 - '@ledgerhq/wallet-api-simulator@1.2.0(react@18.2.0)': + "@ledgerhq/wallet-api-simulator@1.2.0(react@18.2.0)": dependencies: - '@ledgerhq/hw-transport': 6.31.4 - '@ledgerhq/wallet-api-client': 1.6.0 - '@ledgerhq/wallet-api-core': 1.13.0 - '@ledgerhq/wallet-api-server': 1.6.0(react@18.2.0)(rxjs@7.8.1) + "@ledgerhq/hw-transport": 6.31.4 + "@ledgerhq/wallet-api-client": 1.6.0 + "@ledgerhq/wallet-api-core": 1.13.0 + "@ledgerhq/wallet-api-server": 1.6.0(react@18.2.0)(rxjs@7.8.1) rxjs: 7.8.1 ws: 8.18.0 transitivePeerDependencies: @@ -36858,36 +53187,36 @@ snapshots: - react - utf-8-validate - '@leichtgewicht/ip-codec@2.0.5': {} + "@leichtgewicht/ip-codec@2.0.5": {} - '@lezer/common@1.2.1': {} + "@lezer/common@1.2.1": {} - '@lezer/highlight@1.2.0': + "@lezer/highlight@1.2.0": dependencies: - '@lezer/common': 1.2.1 + "@lezer/common": 1.2.1 - '@lezer/json@1.0.2': + "@lezer/json@1.0.2": dependencies: - '@lezer/common': 1.2.1 - '@lezer/highlight': 1.2.0 - '@lezer/lr': 1.4.1 + "@lezer/common": 1.2.1 + "@lezer/highlight": 1.2.0 + "@lezer/lr": 1.4.1 - '@lezer/lr@1.4.1': + "@lezer/lr@1.4.1": dependencies: - '@lezer/common': 1.2.1 + "@lezer/common": 1.2.1 - '@likashefqet/react-native-image-zoom@1.3.0(react-native-gesture-handler@2.16.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-reanimated@3.8.1(@babel/core@7.24.3)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)': + "@likashefqet/react-native-image-zoom@1.3.0(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-reanimated@3.9.0(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) - react-native-gesture-handler: 2.16.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - react-native-reanimated: 3.8.1(@babel/core@7.24.3)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) + react-native-gesture-handler: 2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + react-native-reanimated: 3.9.0(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - '@malept/cross-spawn-promise@1.1.1': + "@malept/cross-spawn-promise@1.1.1": dependencies: cross-spawn: 7.0.3 - '@malept/flatpak-bundler@0.4.0': + "@malept/flatpak-bundler@0.4.0": dependencies: debug: 4.3.4 fs-extra: 9.1.0 @@ -36896,26 +53225,26 @@ snapshots: transitivePeerDependencies: - supports-color - '@manypkg/find-root@1.1.0': + "@manypkg/find-root@1.1.0": dependencies: - '@babel/runtime': 7.25.0 - '@types/node': 12.20.55 + "@babel/runtime": 7.25.0 + "@types/node": 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 - '@manypkg/get-packages@1.1.3': + "@manypkg/get-packages@1.1.3": dependencies: - '@babel/runtime': 7.25.0 - '@changesets/types': 4.1.0 - '@manypkg/find-root': 1.1.0 + "@babel/runtime": 7.25.0 + "@changesets/types": 4.1.0 + "@manypkg/find-root": 1.1.0 fs-extra: 8.1.0 globby: 11.1.0 read-yaml-file: 1.1.0 - '@mdx-js/mdx@2.3.0': + "@mdx-js/mdx@2.3.0": dependencies: - '@types/estree-jsx': 1.0.5 - '@types/mdx': 2.0.12 + "@types/estree-jsx": 1.0.5 + "@types/mdx": 2.0.12 estree-util-build-jsx: 2.2.2 estree-util-is-identifier-name: 2.1.0 estree-util-to-js: 1.2.0 @@ -36934,41 +53263,41 @@ snapshots: transitivePeerDependencies: - supports-color - '@mdx-js/react@2.3.0(@types/react@18.2.73)(react@18.2.0)': + "@mdx-js/react@2.3.0(@types/react@18.2.73)(react@18.2.0)": dependencies: - '@types/mdx': 2.0.12 + "@types/mdx": 2.0.12 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@mdx-js/react@2.3.0(react@18.2.0)': + "@mdx-js/react@2.3.0(react@18.2.0)": dependencies: - '@types/mdx': 2.0.12 + "@types/mdx": 2.0.12 react: 18.2.0 - '@mswjs/cookies@1.1.0': {} + "@mswjs/cookies@1.1.0": {} - '@mswjs/interceptors@0.26.14': + "@mswjs/interceptors@0.26.14": dependencies: - '@open-draft/deferred-promise': 2.2.0 - '@open-draft/logger': 0.3.0 - '@open-draft/until': 2.1.0 + "@open-draft/deferred-promise": 2.2.0 + "@open-draft/logger": 0.3.0 + "@open-draft/until": 2.1.0 is-node-process: 1.2.0 outvariant: 1.4.2 strict-event-emitter: 0.5.1 - '@mswjs/interceptors@0.29.1': + "@mswjs/interceptors@0.29.1": dependencies: - '@open-draft/deferred-promise': 2.2.0 - '@open-draft/logger': 0.3.0 - '@open-draft/until': 2.1.0 + "@open-draft/deferred-promise": 2.2.0 + "@open-draft/logger": 0.3.0 + "@open-draft/until": 2.1.0 is-node-process: 1.2.0 outvariant: 1.4.2 strict-event-emitter: 0.5.1 - '@multiversx/sdk-core@13.3.0(bignumber.js@9.1.2)(protobufjs@7.3.2)': + "@multiversx/sdk-core@13.3.0(bignumber.js@9.1.2)(protobufjs@7.3.2)": dependencies: - '@multiversx/sdk-transaction-decoder': 1.0.2 + "@multiversx/sdk-transaction-decoder": 1.0.2 bech32: 1.1.4 bignumber.js: 9.1.2 blake2b: 2.1.3 @@ -36977,71 +53306,71 @@ snapshots: keccak: 3.0.2 protobufjs: 7.3.2 - '@multiversx/sdk-transaction-decoder@1.0.2': + "@multiversx/sdk-transaction-decoder@1.0.2": dependencies: bech32: 2.0.0 - '@napi-rs/simple-git-android-arm-eabi@0.1.16': + "@napi-rs/simple-git-android-arm-eabi@0.1.16": optional: true - '@napi-rs/simple-git-android-arm64@0.1.16': + "@napi-rs/simple-git-android-arm64@0.1.16": optional: true - '@napi-rs/simple-git-darwin-arm64@0.1.16': + "@napi-rs/simple-git-darwin-arm64@0.1.16": optional: true - '@napi-rs/simple-git-darwin-x64@0.1.16': + "@napi-rs/simple-git-darwin-x64@0.1.16": optional: true - '@napi-rs/simple-git-linux-arm-gnueabihf@0.1.16': + "@napi-rs/simple-git-linux-arm-gnueabihf@0.1.16": optional: true - '@napi-rs/simple-git-linux-arm64-gnu@0.1.16': + "@napi-rs/simple-git-linux-arm64-gnu@0.1.16": optional: true - '@napi-rs/simple-git-linux-arm64-musl@0.1.16': + "@napi-rs/simple-git-linux-arm64-musl@0.1.16": optional: true - '@napi-rs/simple-git-linux-x64-gnu@0.1.16': + "@napi-rs/simple-git-linux-x64-gnu@0.1.16": optional: true - '@napi-rs/simple-git-linux-x64-musl@0.1.16': + "@napi-rs/simple-git-linux-x64-musl@0.1.16": optional: true - '@napi-rs/simple-git-win32-arm64-msvc@0.1.16': + "@napi-rs/simple-git-win32-arm64-msvc@0.1.16": optional: true - '@napi-rs/simple-git-win32-x64-msvc@0.1.16': + "@napi-rs/simple-git-win32-x64-msvc@0.1.16": optional: true - '@napi-rs/simple-git@0.1.16': + "@napi-rs/simple-git@0.1.16": optionalDependencies: - '@napi-rs/simple-git-android-arm-eabi': 0.1.16 - '@napi-rs/simple-git-android-arm64': 0.1.16 - '@napi-rs/simple-git-darwin-arm64': 0.1.16 - '@napi-rs/simple-git-darwin-x64': 0.1.16 - '@napi-rs/simple-git-linux-arm-gnueabihf': 0.1.16 - '@napi-rs/simple-git-linux-arm64-gnu': 0.1.16 - '@napi-rs/simple-git-linux-arm64-musl': 0.1.16 - '@napi-rs/simple-git-linux-x64-gnu': 0.1.16 - '@napi-rs/simple-git-linux-x64-musl': 0.1.16 - '@napi-rs/simple-git-win32-arm64-msvc': 0.1.16 - '@napi-rs/simple-git-win32-x64-msvc': 0.1.16 - - '@ndelangen/get-tarball@3.0.9': + "@napi-rs/simple-git-android-arm-eabi": 0.1.16 + "@napi-rs/simple-git-android-arm64": 0.1.16 + "@napi-rs/simple-git-darwin-arm64": 0.1.16 + "@napi-rs/simple-git-darwin-x64": 0.1.16 + "@napi-rs/simple-git-linux-arm-gnueabihf": 0.1.16 + "@napi-rs/simple-git-linux-arm64-gnu": 0.1.16 + "@napi-rs/simple-git-linux-arm64-musl": 0.1.16 + "@napi-rs/simple-git-linux-x64-gnu": 0.1.16 + "@napi-rs/simple-git-linux-x64-musl": 0.1.16 + "@napi-rs/simple-git-win32-arm64-msvc": 0.1.16 + "@napi-rs/simple-git-win32-x64-msvc": 0.1.16 + + "@ndelangen/get-tarball@3.0.9": dependencies: gunzip-maybe: 1.4.2 pump: 3.0.0 tar-fs: 2.1.1 - '@near-js/accounts@1.0.2': + "@near-js/accounts@1.0.2": dependencies: - '@near-js/crypto': 1.2.0 - '@near-js/providers': 0.0.10 - '@near-js/signers': 0.1.0 - '@near-js/transactions': 1.1.0 - '@near-js/types': 0.0.4 - '@near-js/utils': 0.0.5 + "@near-js/crypto": 1.2.0 + "@near-js/providers": 0.0.10 + "@near-js/signers": 0.1.0 + "@near-js/transactions": 1.1.0 + "@near-js/types": 0.0.4 + "@near-js/utils": 0.0.5 ajv: 8.11.2 ajv-formats: 2.1.1 bn.js: 5.2.1 @@ -37052,35 +53381,35 @@ snapshots: transitivePeerDependencies: - encoding - '@near-js/crypto@1.2.0': + "@near-js/crypto@1.2.0": dependencies: - '@near-js/types': 0.0.4 - '@near-js/utils': 0.0.5 - '@noble/curves': 1.2.0 + "@near-js/types": 0.0.4 + "@near-js/utils": 0.0.5 + "@noble/curves": 1.2.0 bn.js: 5.2.1 borsh: 1.0.0 randombytes: 2.1.0 - '@near-js/keystores-browser@0.0.8': + "@near-js/keystores-browser@0.0.8": dependencies: - '@near-js/crypto': 1.2.0 - '@near-js/keystores': 0.0.8 + "@near-js/crypto": 1.2.0 + "@near-js/keystores": 0.0.8 - '@near-js/keystores-node@0.0.8': + "@near-js/keystores-node@0.0.8": dependencies: - '@near-js/crypto': 1.2.0 - '@near-js/keystores': 0.0.8 + "@near-js/crypto": 1.2.0 + "@near-js/keystores": 0.0.8 - '@near-js/keystores@0.0.8': + "@near-js/keystores@0.0.8": dependencies: - '@near-js/crypto': 1.2.0 - '@near-js/types': 0.0.4 + "@near-js/crypto": 1.2.0 + "@near-js/types": 0.0.4 - '@near-js/providers@0.0.10': + "@near-js/providers@0.0.10": dependencies: - '@near-js/transactions': 1.1.0 - '@near-js/types': 0.0.4 - '@near-js/utils': 0.0.5 + "@near-js/transactions": 1.1.0 + "@near-js/types": 0.0.4 + "@near-js/utils": 0.0.5 bn.js: 5.2.1 borsh: 1.0.0 http-errors: 1.7.2 @@ -37089,416 +53418,420 @@ snapshots: transitivePeerDependencies: - encoding - '@near-js/signers@0.1.0': + "@near-js/signers@0.1.0": dependencies: - '@near-js/crypto': 1.2.0 - '@near-js/keystores': 0.0.8 - '@noble/hashes': 1.3.3 + "@near-js/crypto": 1.2.0 + "@near-js/keystores": 0.0.8 + "@noble/hashes": 1.3.3 - '@near-js/transactions@1.1.0': + "@near-js/transactions@1.1.0": dependencies: - '@near-js/crypto': 1.2.0 - '@near-js/signers': 0.1.0 - '@near-js/types': 0.0.4 - '@near-js/utils': 0.0.5 - '@noble/hashes': 1.3.3 + "@near-js/crypto": 1.2.0 + "@near-js/signers": 0.1.0 + "@near-js/types": 0.0.4 + "@near-js/utils": 0.0.5 + "@noble/hashes": 1.3.3 bn.js: 5.2.1 borsh: 1.0.0 - '@near-js/types@0.0.4': + "@near-js/types@0.0.4": dependencies: bn.js: 5.2.1 - '@near-js/utils@0.0.5': + "@near-js/utils@0.0.5": dependencies: - '@near-js/types': 0.0.4 + "@near-js/types": 0.0.4 bn.js: 5.2.1 bs58: 4.0.0 depd: 2.0.0 mustache: 4.0.0 - '@near-js/wallet-account@1.0.2': + "@near-js/wallet-account@1.0.2": dependencies: - '@near-js/accounts': 1.0.2 - '@near-js/crypto': 1.2.0 - '@near-js/keystores': 0.0.8 - '@near-js/signers': 0.1.0 - '@near-js/transactions': 1.1.0 - '@near-js/types': 0.0.4 - '@near-js/utils': 0.0.5 + "@near-js/accounts": 1.0.2 + "@near-js/crypto": 1.2.0 + "@near-js/keystores": 0.0.8 + "@near-js/signers": 0.1.0 + "@near-js/transactions": 1.1.0 + "@near-js/types": 0.0.4 + "@near-js/utils": 0.0.5 bn.js: 5.2.1 borsh: 1.0.0 transitivePeerDependencies: - encoding - '@next/env@13.2.4': {} + "@next/env@13.2.4": {} - '@next/env@14.2.12': {} + "@next/env@14.2.12": {} - '@next/eslint-plugin-next@13.5.6': + "@next/eslint-plugin-next@13.5.6": dependencies: glob: 7.1.7 - '@next/swc-android-arm-eabi@13.2.4': + "@next/swc-android-arm-eabi@13.2.4": optional: true - '@next/swc-android-arm64@13.2.4': + "@next/swc-android-arm64@13.2.4": optional: true - '@next/swc-darwin-arm64@13.2.4': + "@next/swc-darwin-arm64@13.2.4": optional: true - '@next/swc-darwin-arm64@14.2.12': + "@next/swc-darwin-arm64@14.2.12": optional: true - '@next/swc-darwin-x64@13.2.4': + "@next/swc-darwin-x64@13.2.4": optional: true - '@next/swc-darwin-x64@14.2.12': + "@next/swc-darwin-x64@14.2.12": optional: true - '@next/swc-freebsd-x64@13.2.4': + "@next/swc-freebsd-x64@13.2.4": optional: true - '@next/swc-linux-arm-gnueabihf@13.2.4': + "@next/swc-linux-arm-gnueabihf@13.2.4": optional: true - '@next/swc-linux-arm64-gnu@13.2.4': + "@next/swc-linux-arm64-gnu@13.2.4": optional: true - '@next/swc-linux-arm64-gnu@14.2.12': + "@next/swc-linux-arm64-gnu@14.2.12": optional: true - '@next/swc-linux-arm64-musl@13.2.4': + "@next/swc-linux-arm64-musl@13.2.4": optional: true - '@next/swc-linux-arm64-musl@14.2.12': + "@next/swc-linux-arm64-musl@14.2.12": optional: true - '@next/swc-linux-x64-gnu@13.2.4': + "@next/swc-linux-x64-gnu@13.2.4": optional: true - '@next/swc-linux-x64-gnu@14.2.12': + "@next/swc-linux-x64-gnu@14.2.12": optional: true - '@next/swc-linux-x64-musl@13.2.4': + "@next/swc-linux-x64-musl@13.2.4": optional: true - '@next/swc-linux-x64-musl@14.2.12': + "@next/swc-linux-x64-musl@14.2.12": optional: true - '@next/swc-win32-arm64-msvc@13.2.4': + "@next/swc-win32-arm64-msvc@13.2.4": optional: true - '@next/swc-win32-arm64-msvc@14.2.12': + "@next/swc-win32-arm64-msvc@14.2.12": optional: true - '@next/swc-win32-ia32-msvc@13.2.4': + "@next/swc-win32-ia32-msvc@13.2.4": optional: true - '@next/swc-win32-ia32-msvc@14.2.12': + "@next/swc-win32-ia32-msvc@14.2.12": optional: true - '@next/swc-win32-x64-msvc@13.2.4': + "@next/swc-win32-x64-msvc@13.2.4": optional: true - '@next/swc-win32-x64-msvc@14.2.12': + "@next/swc-win32-x64-msvc@14.2.12": optional: true - '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': + "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": dependencies: eslint-scope: 5.1.1 - '@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.0': + "@noble/curves@1.4.0": dependencies: - '@noble/hashes': 1.4.0 + "@noble/hashes": 1.4.0 - '@noble/ed25519@1.7.3': {} + "@noble/ed25519@1.7.3": {} - '@noble/hashes@1.1.5': {} + "@noble/hashes@1.1.5": {} - '@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/secp256k1@1.7.1': {} + "@noble/secp256k1@1.7.1": {} - '@node-ipc/js-queue@2.0.3': + "@node-ipc/js-queue@2.0.3": dependencies: easy-stack: 1.0.1 - '@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.17.1 - '@npmcli/fs@1.1.1': + "@npmcli/fs@1.1.1": dependencies: - '@gar/promisify': 1.1.3 + "@gar/promisify": 1.1.3 semver: 7.5.4 - '@npmcli/move-file@1.1.2': + "@npmcli/fs@3.1.1": + dependencies: + semver: 7.6.3 + + "@npmcli/move-file@1.1.2": dependencies: mkdirp: 1.0.4 rimraf: 3.0.2 - '@octokit/auth-app@6.1.1': + "@octokit/auth-app@6.1.1": dependencies: - '@octokit/auth-oauth-app': 7.1.0 - '@octokit/auth-oauth-user': 4.1.0 - '@octokit/request': 8.4.0 - '@octokit/request-error': 5.1.0 - '@octokit/types': 13.5.0 + "@octokit/auth-oauth-app": 7.1.0 + "@octokit/auth-oauth-user": 4.1.0 + "@octokit/request": 8.4.0 + "@octokit/request-error": 5.1.0 + "@octokit/types": 13.5.0 deprecation: 2.3.1 lru-cache: 10.2.0 universal-github-app-jwt: 1.1.2 universal-user-agent: 6.0.1 - '@octokit/auth-oauth-app@7.1.0': + "@octokit/auth-oauth-app@7.1.0": dependencies: - '@octokit/auth-oauth-device': 6.1.0 - '@octokit/auth-oauth-user': 4.1.0 - '@octokit/request': 8.4.0 - '@octokit/types': 13.5.0 - '@types/btoa-lite': 1.0.2 + "@octokit/auth-oauth-device": 6.1.0 + "@octokit/auth-oauth-user": 4.1.0 + "@octokit/request": 8.4.0 + "@octokit/types": 13.5.0 + "@types/btoa-lite": 1.0.2 btoa-lite: 1.0.0 universal-user-agent: 6.0.1 - '@octokit/auth-oauth-device@6.1.0': + "@octokit/auth-oauth-device@6.1.0": dependencies: - '@octokit/oauth-methods': 4.1.0 - '@octokit/request': 8.4.0 - '@octokit/types': 13.5.0 + "@octokit/oauth-methods": 4.1.0 + "@octokit/request": 8.4.0 + "@octokit/types": 13.5.0 universal-user-agent: 6.0.1 - '@octokit/auth-oauth-user@4.1.0': + "@octokit/auth-oauth-user@4.1.0": dependencies: - '@octokit/auth-oauth-device': 6.1.0 - '@octokit/oauth-methods': 4.1.0 - '@octokit/request': 8.4.0 - '@octokit/types': 13.5.0 + "@octokit/auth-oauth-device": 6.1.0 + "@octokit/oauth-methods": 4.1.0 + "@octokit/request": 8.4.0 + "@octokit/types": 13.5.0 btoa-lite: 1.0.0 universal-user-agent: 6.0.1 - '@octokit/auth-token@2.5.0': + "@octokit/auth-token@2.5.0": dependencies: - '@octokit/types': 6.41.0 + "@octokit/types": 6.41.0 - '@octokit/auth-token@4.0.0': {} + "@octokit/auth-token@4.0.0": {} - '@octokit/auth-unauthenticated@5.0.1': + "@octokit/auth-unauthenticated@5.0.1": dependencies: - '@octokit/request-error': 5.1.0 - '@octokit/types': 12.6.0 + "@octokit/request-error": 5.1.0 + "@octokit/types": 12.6.0 - '@octokit/core@3.6.0': + "@octokit/core@3.6.0": dependencies: - '@octokit/auth-token': 2.5.0 - '@octokit/graphql': 4.8.0 - '@octokit/request': 5.6.3 - '@octokit/request-error': 2.1.0 - '@octokit/types': 6.41.0 + "@octokit/auth-token": 2.5.0 + "@octokit/graphql": 4.8.0 + "@octokit/request": 5.6.3 + "@octokit/request-error": 2.1.0 + "@octokit/types": 6.41.0 before-after-hook: 2.2.3 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding - '@octokit/core@5.1.0': + "@octokit/core@5.1.0": dependencies: - '@octokit/auth-token': 4.0.0 - '@octokit/graphql': 7.0.2 - '@octokit/request': 8.2.0 - '@octokit/request-error': 5.0.1 - '@octokit/types': 12.6.0 + "@octokit/auth-token": 4.0.0 + "@octokit/graphql": 7.0.2 + "@octokit/request": 8.2.0 + "@octokit/request-error": 5.0.1 + "@octokit/types": 12.6.0 before-after-hook: 2.2.3 universal-user-agent: 6.0.1 - '@octokit/endpoint@6.0.12': + "@octokit/endpoint@6.0.12": dependencies: - '@octokit/types': 6.41.0 + "@octokit/types": 6.41.0 is-plain-object: 5.0.0 universal-user-agent: 6.0.1 - '@octokit/endpoint@9.0.4': + "@octokit/endpoint@9.0.4": dependencies: - '@octokit/types': 12.6.0 + "@octokit/types": 12.6.0 universal-user-agent: 6.0.1 - '@octokit/graphql@4.8.0': + "@octokit/graphql@4.8.0": dependencies: - '@octokit/request': 5.6.3 - '@octokit/types': 6.41.0 + "@octokit/request": 5.6.3 + "@octokit/types": 6.41.0 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding - '@octokit/graphql@7.0.2': + "@octokit/graphql@7.0.2": dependencies: - '@octokit/request': 8.2.0 - '@octokit/types': 12.6.0 + "@octokit/request": 8.2.0 + "@octokit/types": 12.6.0 universal-user-agent: 6.0.1 - '@octokit/oauth-authorization-url@6.0.2': {} + "@octokit/oauth-authorization-url@6.0.2": {} - '@octokit/oauth-methods@4.1.0': + "@octokit/oauth-methods@4.1.0": dependencies: - '@octokit/oauth-authorization-url': 6.0.2 - '@octokit/request': 8.4.0 - '@octokit/request-error': 5.1.0 - '@octokit/types': 13.5.0 + "@octokit/oauth-authorization-url": 6.0.2 + "@octokit/request": 8.4.0 + "@octokit/request-error": 5.1.0 + "@octokit/types": 13.5.0 btoa-lite: 1.0.0 - '@octokit/openapi-types@12.11.0': {} + "@octokit/openapi-types@12.11.0": {} - '@octokit/openapi-types@20.0.0': {} + "@octokit/openapi-types@20.0.0": {} - '@octokit/openapi-types@22.2.0': {} + "@octokit/openapi-types@22.2.0": {} - '@octokit/plugin-enterprise-compatibility@4.1.0': + "@octokit/plugin-enterprise-compatibility@4.1.0": dependencies: - '@octokit/request-error': 5.1.0 - '@octokit/types': 12.6.0 + "@octokit/request-error": 5.1.0 + "@octokit/types": 12.6.0 - '@octokit/plugin-paginate-rest@2.21.3(@octokit/core@3.6.0)': + "@octokit/plugin-paginate-rest@2.21.3(@octokit/core@3.6.0)": dependencies: - '@octokit/core': 3.6.0 - '@octokit/types': 6.41.0 + "@octokit/core": 3.6.0 + "@octokit/types": 6.41.0 - '@octokit/plugin-paginate-rest@9.2.1(@octokit/core@5.1.0)': + "@octokit/plugin-paginate-rest@9.2.1(@octokit/core@5.1.0)": dependencies: - '@octokit/core': 5.1.0 - '@octokit/types': 12.6.0 + "@octokit/core": 5.1.0 + "@octokit/types": 12.6.0 - '@octokit/plugin-request-log@1.0.4(@octokit/core@3.6.0)': + "@octokit/plugin-request-log@1.0.4(@octokit/core@3.6.0)": dependencies: - '@octokit/core': 3.6.0 + "@octokit/core": 3.6.0 - '@octokit/plugin-rest-endpoint-methods@10.4.1(@octokit/core@5.1.0)': + "@octokit/plugin-rest-endpoint-methods@10.4.1(@octokit/core@5.1.0)": dependencies: - '@octokit/core': 5.1.0 - '@octokit/types': 12.6.0 + "@octokit/core": 5.1.0 + "@octokit/types": 12.6.0 - '@octokit/plugin-rest-endpoint-methods@5.16.2(@octokit/core@3.6.0)': + "@octokit/plugin-rest-endpoint-methods@5.16.2(@octokit/core@3.6.0)": dependencies: - '@octokit/core': 3.6.0 - '@octokit/types': 6.41.0 + "@octokit/core": 3.6.0 + "@octokit/types": 6.41.0 deprecation: 2.3.1 - '@octokit/plugin-retry@6.0.1(@octokit/core@5.1.0)': + "@octokit/plugin-retry@6.0.1(@octokit/core@5.1.0)": dependencies: - '@octokit/core': 5.1.0 - '@octokit/request-error': 5.1.0 - '@octokit/types': 12.6.0 + "@octokit/core": 5.1.0 + "@octokit/request-error": 5.1.0 + "@octokit/types": 12.6.0 bottleneck: 2.19.5 - '@octokit/plugin-throttling@8.2.0(@octokit/core@5.1.0)': + "@octokit/plugin-throttling@8.2.0(@octokit/core@5.1.0)": dependencies: - '@octokit/core': 5.1.0 - '@octokit/types': 12.6.0 + "@octokit/core": 5.1.0 + "@octokit/types": 12.6.0 bottleneck: 2.19.5 - '@octokit/request-error@2.1.0': + "@octokit/request-error@2.1.0": dependencies: - '@octokit/types': 6.41.0 + "@octokit/types": 6.41.0 deprecation: 2.3.1 once: 1.4.0 - '@octokit/request-error@5.0.1': + "@octokit/request-error@5.0.1": dependencies: - '@octokit/types': 12.6.0 + "@octokit/types": 12.6.0 deprecation: 2.3.1 once: 1.4.0 - '@octokit/request-error@5.1.0': + "@octokit/request-error@5.1.0": dependencies: - '@octokit/types': 13.5.0 + "@octokit/types": 13.5.0 deprecation: 2.3.1 once: 1.4.0 - '@octokit/request@5.6.3': + "@octokit/request@5.6.3": dependencies: - '@octokit/endpoint': 6.0.12 - '@octokit/request-error': 2.1.0 - '@octokit/types': 6.41.0 + "@octokit/endpoint": 6.0.12 + "@octokit/request-error": 2.1.0 + "@octokit/types": 6.41.0 is-plain-object: 5.0.0 node-fetch: 2.7.0 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding - '@octokit/request@8.2.0': + "@octokit/request@8.2.0": dependencies: - '@octokit/endpoint': 9.0.4 - '@octokit/request-error': 5.0.1 - '@octokit/types': 12.6.0 + "@octokit/endpoint": 9.0.4 + "@octokit/request-error": 5.0.1 + "@octokit/types": 12.6.0 universal-user-agent: 6.0.1 - '@octokit/request@8.4.0': + "@octokit/request@8.4.0": dependencies: - '@octokit/endpoint': 9.0.4 - '@octokit/request-error': 5.1.0 - '@octokit/types': 13.5.0 + "@octokit/endpoint": 9.0.4 + "@octokit/request-error": 5.1.0 + "@octokit/types": 13.5.0 universal-user-agent: 6.0.1 - '@octokit/rest@18.12.0': + "@octokit/rest@18.12.0": dependencies: - '@octokit/core': 3.6.0 - '@octokit/plugin-paginate-rest': 2.21.3(@octokit/core@3.6.0) - '@octokit/plugin-request-log': 1.0.4(@octokit/core@3.6.0) - '@octokit/plugin-rest-endpoint-methods': 5.16.2(@octokit/core@3.6.0) + "@octokit/core": 3.6.0 + "@octokit/plugin-paginate-rest": 2.21.3(@octokit/core@3.6.0) + "@octokit/plugin-request-log": 1.0.4(@octokit/core@3.6.0) + "@octokit/plugin-rest-endpoint-methods": 5.16.2(@octokit/core@3.6.0) transitivePeerDependencies: - encoding - '@octokit/types@12.6.0': + "@octokit/types@12.6.0": dependencies: - '@octokit/openapi-types': 20.0.0 + "@octokit/openapi-types": 20.0.0 - '@octokit/types@13.5.0': + "@octokit/types@13.5.0": dependencies: - '@octokit/openapi-types': 22.2.0 + "@octokit/openapi-types": 22.2.0 - '@octokit/types@6.41.0': + "@octokit/types@6.41.0": dependencies: - '@octokit/openapi-types': 12.11.0 + "@octokit/openapi-types": 12.11.0 - '@octokit/webhooks-methods@4.1.0': {} + "@octokit/webhooks-methods@4.1.0": {} - '@octokit/webhooks-types@7.4.0': {} + "@octokit/webhooks-types@7.4.0": {} - '@octokit/webhooks@12.2.0': + "@octokit/webhooks@12.2.0": dependencies: - '@octokit/request-error': 5.0.1 - '@octokit/webhooks-methods': 4.1.0 - '@octokit/webhooks-types': 7.4.0 + "@octokit/request-error": 5.0.1 + "@octokit/webhooks-methods": 4.1.0 + "@octokit/webhooks-types": 7.4.0 aggregate-error: 3.1.0 - '@open-draft/deferred-promise@2.2.0': {} + "@open-draft/deferred-promise@2.2.0": {} - '@open-draft/logger@0.3.0': + "@open-draft/logger@0.3.0": dependencies: is-node-process: 1.2.0 outvariant: 1.4.2 - '@open-draft/until@2.1.0': {} + "@open-draft/until@2.1.0": {} - '@open-rpc/client-js@1.8.1': + "@open-rpc/client-js@1.8.1": dependencies: isomorphic-fetch: 3.0.0 isomorphic-ws: 5.0.0(ws@7.5.10) @@ -37509,165 +53842,165 @@ snapshots: - encoding - utf-8-validate - '@opentelemetry/api-logs@0.52.1': + "@opentelemetry/api-logs@0.52.1": dependencies: - '@opentelemetry/api': 1.9.0 + "@opentelemetry/api": 1.9.0 - '@opentelemetry/api@1.8.0': {} + "@opentelemetry/api@1.8.0": {} - '@opentelemetry/api@1.9.0': {} + "@opentelemetry/api@1.9.0": {} - '@opentelemetry/context-async-hooks@1.25.1(@opentelemetry/api@1.9.0)': + "@opentelemetry/context-async-hooks@1.25.1(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 + "@opentelemetry/api": 1.9.0 - '@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0)': + "@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/semantic-conventions': 1.25.1 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/semantic-conventions": 1.25.1 - '@opentelemetry/instrumentation-connect@0.37.0(@opentelemetry/api@1.9.0)': + "@opentelemetry/instrumentation-connect@0.37.0(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.25.1 - '@types/connect': 3.4.36 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/semantic-conventions": 1.25.1 + "@types/connect": 3.4.36 transitivePeerDependencies: - supports-color - '@opentelemetry/instrumentation-express@0.40.1(@opentelemetry/api@1.9.0)': + "@opentelemetry/instrumentation-express@0.40.1(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.25.1 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/semantic-conventions": 1.25.1 transitivePeerDependencies: - supports-color - '@opentelemetry/instrumentation-fastify@0.37.0(@opentelemetry/api@1.9.0)': + "@opentelemetry/instrumentation-fastify@0.37.0(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.25.1 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/semantic-conventions": 1.25.1 transitivePeerDependencies: - supports-color - '@opentelemetry/instrumentation-graphql@0.41.0(@opentelemetry/api@1.9.0)': + "@opentelemetry/instrumentation-graphql@0.41.0(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/api": 1.9.0 + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) transitivePeerDependencies: - supports-color - '@opentelemetry/instrumentation-hapi@0.39.0(@opentelemetry/api@1.9.0)': + "@opentelemetry/instrumentation-hapi@0.39.0(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.25.1 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/semantic-conventions": 1.25.1 transitivePeerDependencies: - supports-color - '@opentelemetry/instrumentation-http@0.52.1(@opentelemetry/api@1.9.0)': + "@opentelemetry/instrumentation-http@0.52.1(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.25.1 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/semantic-conventions": 1.25.1 semver: 7.6.3 transitivePeerDependencies: - supports-color - '@opentelemetry/instrumentation-ioredis@0.41.0(@opentelemetry/api@1.9.0)': + "@opentelemetry/instrumentation-ioredis@0.41.0(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/redis-common': 0.36.2 - '@opentelemetry/semantic-conventions': 1.25.1 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/redis-common": 0.36.2 + "@opentelemetry/semantic-conventions": 1.25.1 transitivePeerDependencies: - supports-color - '@opentelemetry/instrumentation-koa@0.41.0(@opentelemetry/api@1.9.0)': + "@opentelemetry/instrumentation-koa@0.41.0(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.25.1 - '@types/koa': 2.14.0 - '@types/koa__router': 12.0.3 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/semantic-conventions": 1.25.1 + "@types/koa": 2.14.0 + "@types/koa__router": 12.0.3 transitivePeerDependencies: - supports-color - '@opentelemetry/instrumentation-mongodb@0.45.0(@opentelemetry/api@1.9.0)': + "@opentelemetry/instrumentation-mongodb@0.45.0(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/sdk-metrics': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.25.1 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/sdk-metrics": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/semantic-conventions": 1.25.1 transitivePeerDependencies: - supports-color - '@opentelemetry/instrumentation-mongoose@0.39.0(@opentelemetry/api@1.9.0)': + "@opentelemetry/instrumentation-mongoose@0.39.0(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.25.1 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/semantic-conventions": 1.25.1 transitivePeerDependencies: - supports-color - '@opentelemetry/instrumentation-mysql2@0.39.0(@opentelemetry/api@1.9.0)': + "@opentelemetry/instrumentation-mysql2@0.39.0(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.25.1 - '@opentelemetry/sql-common': 0.40.1(@opentelemetry/api@1.9.0) + "@opentelemetry/api": 1.9.0 + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/semantic-conventions": 1.25.1 + "@opentelemetry/sql-common": 0.40.1(@opentelemetry/api@1.9.0) transitivePeerDependencies: - supports-color - '@opentelemetry/instrumentation-mysql@0.39.0(@opentelemetry/api@1.9.0)': + "@opentelemetry/instrumentation-mysql@0.39.0(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.25.1 - '@types/mysql': 2.15.22 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/semantic-conventions": 1.25.1 + "@types/mysql": 2.15.22 transitivePeerDependencies: - supports-color - '@opentelemetry/instrumentation-nestjs-core@0.38.0(@opentelemetry/api@1.9.0)': + "@opentelemetry/instrumentation-nestjs-core@0.38.0(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.25.1 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/semantic-conventions": 1.25.1 transitivePeerDependencies: - supports-color - '@opentelemetry/instrumentation-pg@0.42.0(@opentelemetry/api@1.9.0)': + "@opentelemetry/instrumentation-pg@0.42.0(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.25.1 - '@opentelemetry/sql-common': 0.40.1(@opentelemetry/api@1.9.0) - '@types/pg': 8.6.1 - '@types/pg-pool': 2.0.4 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/semantic-conventions": 1.25.1 + "@opentelemetry/sql-common": 0.40.1(@opentelemetry/api@1.9.0) + "@types/pg": 8.6.1 + "@types/pg-pool": 2.0.4 transitivePeerDependencies: - supports-color - '@opentelemetry/instrumentation-redis-4@0.40.0(@opentelemetry/api@1.9.0)': + "@opentelemetry/instrumentation-redis-4@0.40.0(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/redis-common': 0.36.2 - '@opentelemetry/semantic-conventions': 1.25.1 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/redis-common": 0.36.2 + "@opentelemetry/semantic-conventions": 1.25.1 transitivePeerDependencies: - supports-color - '@opentelemetry/instrumentation@0.43.0(@opentelemetry/api@1.9.0)': + "@opentelemetry/instrumentation@0.43.0(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@types/shimmer': 1.2.0 + "@opentelemetry/api": 1.9.0 + "@types/shimmer": 1.2.0 import-in-the-middle: 1.4.2 require-in-the-middle: 7.3.0 semver: 7.6.3 @@ -37676,11 +54009,11 @@ snapshots: - supports-color optional: true - '@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0)': + "@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/api-logs': 0.52.1 - '@types/shimmer': 1.2.0 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/api-logs": 0.52.1 + "@types/shimmer": 1.2.0 import-in-the-middle: 1.10.0 require-in-the-middle: 7.3.0 semver: 7.6.3 @@ -37688,49 +54021,49 @@ snapshots: transitivePeerDependencies: - supports-color - '@opentelemetry/redis-common@0.36.2': {} + "@opentelemetry/redis-common@0.36.2": {} - '@opentelemetry/resources@1.25.1(@opentelemetry/api@1.9.0)': + "@opentelemetry/resources@1.25.1(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.25.1 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/semantic-conventions": 1.25.1 - '@opentelemetry/sdk-metrics@1.25.1(@opentelemetry/api@1.9.0)': + "@opentelemetry/sdk-metrics@1.25.1(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/resources': 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/api": 1.9.0 + "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/resources": 1.25.1(@opentelemetry/api@1.9.0) lodash.merge: 4.6.2 - '@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0)': + "@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/resources': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.25.1 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/resources": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/semantic-conventions": 1.25.1 - '@opentelemetry/semantic-conventions@1.25.1': {} + "@opentelemetry/semantic-conventions@1.25.1": {} - '@opentelemetry/sql-common@0.40.1(@opentelemetry/api@1.9.0)': + "@opentelemetry/sql-common@0.40.1(@opentelemetry/api@1.9.0)": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/api": 1.9.0 + "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) - '@pkgjs/parseargs@0.11.0': + "@pkgjs/parseargs@0.11.0": optional: true - '@pkgr/core@0.1.1': {} + "@pkgr/core@0.1.1": {} - '@playwright/test@1.40.1': + "@playwright/test@1.40.1": dependencies: playwright: 1.40.1 - '@playwright/test@1.45.0': + "@playwright/test@1.45.0": dependencies: playwright: 1.45.0 - '@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.10.0)(webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0))(webpack@5.91.0(webpack-cli@4.10.0))': + "@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.10.0)(webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0))(webpack@5.91.0(webpack-cli@4.10.0))": dependencies: ansi-html-community: 0.0.8 common-path-prefix: 3.0.0 @@ -37746,7 +54079,7 @@ snapshots: optionalDependencies: webpack-dev-server: 4.15.2(webpack-cli@4.10.0)(webpack@5.91.0) - '@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.11.0)(webpack-dev-server@4.15.2(webpack@5.94.0))(webpack@5.94.0)': + "@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.11.0)(webpack-dev-server@4.15.2(webpack@5.94.0))(webpack@5.94.0)": dependencies: ansi-html-community: 0.0.8 common-path-prefix: 3.0.0 @@ -37762,7 +54095,7 @@ snapshots: optionalDependencies: webpack-dev-server: 4.15.2(webpack@5.94.0) - '@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.0)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.8)))(webpack@5.94.0(metro@0.80.8))': + "@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.2)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12)))(webpack@5.94.0(metro@0.80.12))": dependencies: ansi-html-community: 0.0.8 common-path-prefix: 3.0.0 @@ -37771,14 +54104,14 @@ snapshots: find-up: 5.0.0 html-entities: 2.5.2 loader-utils: 2.0.4 - react-refresh: 0.14.0 + react-refresh: 0.14.2 schema-utils: 3.3.0 source-map: 0.7.4 - webpack: 5.94.0(metro@0.80.8) + webpack: 5.94.0(metro@0.80.12) optionalDependencies: - webpack-dev-server: 4.15.2(webpack@5.91.0(metro@0.80.8)) + webpack-dev-server: 4.15.2(webpack@5.91.0(metro@0.80.12)) - '@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.0)(webpack@5.94.0(esbuild@0.19.12))': + "@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.2)(webpack@5.94.0(esbuild@0.19.12))": dependencies: ansi-html-community: 0.0.8 common-path-prefix: 3.0.0 @@ -37787,67 +54120,67 @@ snapshots: find-up: 5.0.0 html-entities: 2.5.2 loader-utils: 2.0.4 - react-refresh: 0.14.0 + react-refresh: 0.14.2 schema-utils: 3.3.0 source-map: 0.7.4 webpack: 5.94.0(esbuild@0.19.12) - '@polka/url@1.0.0-next.25': {} + "@polka/url@1.0.0-next.25": {} - '@polkadot-api/json-rpc-provider-proxy@0.0.1': + "@polkadot-api/json-rpc-provider-proxy@0.0.1": optional: true - '@polkadot-api/json-rpc-provider@0.0.1': + "@polkadot-api/json-rpc-provider@0.0.1": optional: true - '@polkadot-api/metadata-builders@0.0.1': + "@polkadot-api/metadata-builders@0.0.1": dependencies: - '@polkadot-api/substrate-bindings': 0.0.1 - '@polkadot-api/utils': 0.0.1 + "@polkadot-api/substrate-bindings": 0.0.1 + "@polkadot-api/utils": 0.0.1 optional: true - '@polkadot-api/observable-client@0.1.0(rxjs@7.8.1)': + "@polkadot-api/observable-client@0.1.0(rxjs@7.8.1)": dependencies: - '@polkadot-api/metadata-builders': 0.0.1 - '@polkadot-api/substrate-bindings': 0.0.1 - '@polkadot-api/substrate-client': 0.0.1 - '@polkadot-api/utils': 0.0.1 + "@polkadot-api/metadata-builders": 0.0.1 + "@polkadot-api/substrate-bindings": 0.0.1 + "@polkadot-api/substrate-client": 0.0.1 + "@polkadot-api/utils": 0.0.1 rxjs: 7.8.1 optional: true - '@polkadot-api/substrate-bindings@0.0.1': + "@polkadot-api/substrate-bindings@0.0.1": dependencies: - '@noble/hashes': 1.4.0 - '@polkadot-api/utils': 0.0.1 - '@scure/base': 1.1.6 + "@noble/hashes": 1.4.0 + "@polkadot-api/utils": 0.0.1 + "@scure/base": 1.1.6 scale-ts: 1.6.0 optional: true - '@polkadot-api/substrate-client@0.0.1': + "@polkadot-api/substrate-client@0.0.1": optional: true - '@polkadot-api/utils@0.0.1': + "@polkadot-api/utils@0.0.1": optional: true - '@polkadot/api-augment@11.2.1': + "@polkadot/api-augment@11.2.1": dependencies: - '@polkadot/api-base': 11.2.1 - '@polkadot/rpc-augment': 11.2.1 - '@polkadot/types': 11.2.1 - '@polkadot/types-augment': 11.2.1 - '@polkadot/types-codec': 11.2.1 - '@polkadot/util': 12.6.2 + "@polkadot/api-base": 11.2.1 + "@polkadot/rpc-augment": 11.2.1 + "@polkadot/types": 11.2.1 + "@polkadot/types-augment": 11.2.1 + "@polkadot/types-codec": 11.2.1 + "@polkadot/util": 12.6.2 tslib: 2.6.2 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/api-base@11.2.1': + "@polkadot/api-base@11.2.1": dependencies: - '@polkadot/rpc-core': 11.2.1 - '@polkadot/types': 11.2.1 - '@polkadot/util': 12.6.2 + "@polkadot/rpc-core": 11.2.1 + "@polkadot/types": 11.2.1 + "@polkadot/util": 12.6.2 rxjs: 7.8.1 tslib: 2.6.2 transitivePeerDependencies: @@ -37855,16 +54188,16 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api-derive@11.2.1': + "@polkadot/api-derive@11.2.1": dependencies: - '@polkadot/api': 11.2.1 - '@polkadot/api-augment': 11.2.1 - '@polkadot/api-base': 11.2.1 - '@polkadot/rpc-core': 11.2.1 - '@polkadot/types': 11.2.1 - '@polkadot/types-codec': 11.2.1 - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) + "@polkadot/api": 11.2.1 + "@polkadot/api-augment": 11.2.1 + "@polkadot/api-base": 11.2.1 + "@polkadot/rpc-core": 11.2.1 + "@polkadot/types": 11.2.1 + "@polkadot/types-codec": 11.2.1 + "@polkadot/util": 12.6.2 + "@polkadot/util-crypto": 12.6.2(@polkadot/util@12.6.2) rxjs: 7.8.1 tslib: 2.6.2 transitivePeerDependencies: @@ -37872,22 +54205,22 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/api@11.2.1': - dependencies: - '@polkadot/api-augment': 11.2.1 - '@polkadot/api-base': 11.2.1 - '@polkadot/api-derive': 11.2.1 - '@polkadot/keyring': 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) - '@polkadot/rpc-augment': 11.2.1 - '@polkadot/rpc-core': 11.2.1 - '@polkadot/rpc-provider': 11.2.1 - '@polkadot/types': 11.2.1 - '@polkadot/types-augment': 11.2.1 - '@polkadot/types-codec': 11.2.1 - '@polkadot/types-create': 11.2.1 - '@polkadot/types-known': 11.2.1 - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) + "@polkadot/api@11.2.1": + dependencies: + "@polkadot/api-augment": 11.2.1 + "@polkadot/api-base": 11.2.1 + "@polkadot/api-derive": 11.2.1 + "@polkadot/keyring": 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) + "@polkadot/rpc-augment": 11.2.1 + "@polkadot/rpc-core": 11.2.1 + "@polkadot/rpc-provider": 11.2.1 + "@polkadot/types": 11.2.1 + "@polkadot/types-augment": 11.2.1 + "@polkadot/types-codec": 11.2.1 + "@polkadot/types-create": 11.2.1 + "@polkadot/types-known": 11.2.1 + "@polkadot/util": 12.6.2 + "@polkadot/util-crypto": 12.6.2(@polkadot/util@12.6.2) eventemitter3: 5.0.1 rxjs: 7.8.1 tslib: 2.6.2 @@ -37896,36 +54229,36 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/keyring@12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2)': + "@polkadot/keyring@12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2)": dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) + "@polkadot/util": 12.6.2 + "@polkadot/util-crypto": 12.6.2(@polkadot/util@12.6.2) tslib: 2.6.2 - '@polkadot/networks@12.6.2': + "@polkadot/networks@12.6.2": dependencies: - '@polkadot/util': 12.6.2 - '@substrate/ss58-registry': 1.47.0 + "@polkadot/util": 12.6.2 + "@substrate/ss58-registry": 1.47.0 tslib: 2.6.2 - '@polkadot/rpc-augment@11.2.1': + "@polkadot/rpc-augment@11.2.1": dependencies: - '@polkadot/rpc-core': 11.2.1 - '@polkadot/types': 11.2.1 - '@polkadot/types-codec': 11.2.1 - '@polkadot/util': 12.6.2 + "@polkadot/rpc-core": 11.2.1 + "@polkadot/types": 11.2.1 + "@polkadot/types-codec": 11.2.1 + "@polkadot/util": 12.6.2 tslib: 2.6.2 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/rpc-core@11.2.1': + "@polkadot/rpc-core@11.2.1": dependencies: - '@polkadot/rpc-augment': 11.2.1 - '@polkadot/rpc-provider': 11.2.1 - '@polkadot/types': 11.2.1 - '@polkadot/util': 12.6.2 + "@polkadot/rpc-augment": 11.2.1 + "@polkadot/rpc-provider": 11.2.1 + "@polkadot/types": 11.2.1 + "@polkadot/util": 12.6.2 rxjs: 7.8.1 tslib: 2.6.2 transitivePeerDependencies: @@ -37933,199 +54266,199 @@ snapshots: - supports-color - utf-8-validate - '@polkadot/rpc-provider@11.2.1': + "@polkadot/rpc-provider@11.2.1": dependencies: - '@polkadot/keyring': 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) - '@polkadot/types': 11.2.1 - '@polkadot/types-support': 11.2.1 - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) - '@polkadot/x-fetch': 12.6.2 - '@polkadot/x-global': 12.6.2 - '@polkadot/x-ws': 12.6.2 + "@polkadot/keyring": 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) + "@polkadot/types": 11.2.1 + "@polkadot/types-support": 11.2.1 + "@polkadot/util": 12.6.2 + "@polkadot/util-crypto": 12.6.2(@polkadot/util@12.6.2) + "@polkadot/x-fetch": 12.6.2 + "@polkadot/x-global": 12.6.2 + "@polkadot/x-ws": 12.6.2 eventemitter3: 5.0.1 mock-socket: 9.3.1 nock: 13.5.4 tslib: 2.6.2 optionalDependencies: - '@substrate/connect': 0.8.10 + "@substrate/connect": 0.8.10 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - '@polkadot/types-augment@11.2.1': + "@polkadot/types-augment@11.2.1": dependencies: - '@polkadot/types': 11.2.1 - '@polkadot/types-codec': 11.2.1 - '@polkadot/util': 12.6.2 + "@polkadot/types": 11.2.1 + "@polkadot/types-codec": 11.2.1 + "@polkadot/util": 12.6.2 tslib: 2.6.2 - '@polkadot/types-codec@11.2.1': + "@polkadot/types-codec@11.2.1": dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/x-bigint': 12.6.2 + "@polkadot/util": 12.6.2 + "@polkadot/x-bigint": 12.6.2 tslib: 2.6.2 - '@polkadot/types-create@11.2.1': + "@polkadot/types-create@11.2.1": dependencies: - '@polkadot/types-codec': 11.2.1 - '@polkadot/util': 12.6.2 + "@polkadot/types-codec": 11.2.1 + "@polkadot/util": 12.6.2 tslib: 2.6.2 - '@polkadot/types-known@11.2.1': + "@polkadot/types-known@11.2.1": dependencies: - '@polkadot/networks': 12.6.2 - '@polkadot/types': 11.2.1 - '@polkadot/types-codec': 11.2.1 - '@polkadot/types-create': 11.2.1 - '@polkadot/util': 12.6.2 + "@polkadot/networks": 12.6.2 + "@polkadot/types": 11.2.1 + "@polkadot/types-codec": 11.2.1 + "@polkadot/types-create": 11.2.1 + "@polkadot/util": 12.6.2 tslib: 2.6.2 - '@polkadot/types-support@11.2.1': + "@polkadot/types-support@11.2.1": dependencies: - '@polkadot/util': 12.6.2 + "@polkadot/util": 12.6.2 tslib: 2.6.2 - '@polkadot/types@11.2.1': + "@polkadot/types@11.2.1": dependencies: - '@polkadot/keyring': 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) - '@polkadot/types-augment': 11.2.1 - '@polkadot/types-codec': 11.2.1 - '@polkadot/types-create': 11.2.1 - '@polkadot/util': 12.6.2 - '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) + "@polkadot/keyring": 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) + "@polkadot/types-augment": 11.2.1 + "@polkadot/types-codec": 11.2.1 + "@polkadot/types-create": 11.2.1 + "@polkadot/util": 12.6.2 + "@polkadot/util-crypto": 12.6.2(@polkadot/util@12.6.2) rxjs: 7.8.1 tslib: 2.6.2 - '@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2)': - dependencies: - '@noble/curves': 1.4.0 - '@noble/hashes': 1.4.0 - '@polkadot/networks': 12.6.2 - '@polkadot/util': 12.6.2 - '@polkadot/wasm-crypto': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) - '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/x-bigint': 12.6.2 - '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) - '@scure/base': 1.1.6 + "@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2)": + dependencies: + "@noble/curves": 1.4.0 + "@noble/hashes": 1.4.0 + "@polkadot/networks": 12.6.2 + "@polkadot/util": 12.6.2 + "@polkadot/wasm-crypto": 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) + "@polkadot/wasm-util": 7.3.2(@polkadot/util@12.6.2) + "@polkadot/x-bigint": 12.6.2 + "@polkadot/x-randomvalues": 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) + "@scure/base": 1.1.6 tslib: 2.6.2 - '@polkadot/util@12.6.2': + "@polkadot/util@12.6.2": dependencies: - '@polkadot/x-bigint': 12.6.2 - '@polkadot/x-global': 12.6.2 - '@polkadot/x-textdecoder': 12.6.2 - '@polkadot/x-textencoder': 12.6.2 - '@types/bn.js': 5.1.5 + "@polkadot/x-bigint": 12.6.2 + "@polkadot/x-global": 12.6.2 + "@polkadot/x-textdecoder": 12.6.2 + "@polkadot/x-textencoder": 12.6.2 + "@types/bn.js": 5.1.5 bn.js: 5.2.1 tslib: 2.6.2 - '@polkadot/wasm-bridge@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))': + "@polkadot/wasm-bridge@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))": dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) + "@polkadot/util": 12.6.2 + "@polkadot/wasm-util": 7.3.2(@polkadot/util@12.6.2) + "@polkadot/x-randomvalues": 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) tslib: 2.6.2 - '@polkadot/wasm-crypto-asmjs@7.3.2(@polkadot/util@12.6.2)': + "@polkadot/wasm-crypto-asmjs@7.3.2(@polkadot/util@12.6.2)": dependencies: - '@polkadot/util': 12.6.2 + "@polkadot/util": 12.6.2 tslib: 2.6.2 - '@polkadot/wasm-crypto-init@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))': + "@polkadot/wasm-crypto-init@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))": dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/wasm-bridge': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) - '@polkadot/wasm-crypto-asmjs': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/wasm-crypto-wasm': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) + "@polkadot/util": 12.6.2 + "@polkadot/wasm-bridge": 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) + "@polkadot/wasm-crypto-asmjs": 7.3.2(@polkadot/util@12.6.2) + "@polkadot/wasm-crypto-wasm": 7.3.2(@polkadot/util@12.6.2) + "@polkadot/wasm-util": 7.3.2(@polkadot/util@12.6.2) + "@polkadot/x-randomvalues": 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) tslib: 2.6.2 - '@polkadot/wasm-crypto-wasm@7.3.2(@polkadot/util@12.6.2)': + "@polkadot/wasm-crypto-wasm@7.3.2(@polkadot/util@12.6.2)": dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) + "@polkadot/util": 12.6.2 + "@polkadot/wasm-util": 7.3.2(@polkadot/util@12.6.2) tslib: 2.6.2 - '@polkadot/wasm-crypto@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))': + "@polkadot/wasm-crypto@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))": dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/wasm-bridge': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) - '@polkadot/wasm-crypto-asmjs': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/wasm-crypto-init': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) - '@polkadot/wasm-crypto-wasm': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) + "@polkadot/util": 12.6.2 + "@polkadot/wasm-bridge": 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) + "@polkadot/wasm-crypto-asmjs": 7.3.2(@polkadot/util@12.6.2) + "@polkadot/wasm-crypto-init": 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) + "@polkadot/wasm-crypto-wasm": 7.3.2(@polkadot/util@12.6.2) + "@polkadot/wasm-util": 7.3.2(@polkadot/util@12.6.2) + "@polkadot/x-randomvalues": 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) tslib: 2.6.2 - '@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)': + "@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)": dependencies: - '@polkadot/util': 12.6.2 + "@polkadot/util": 12.6.2 tslib: 2.6.2 - '@polkadot/x-bigint@12.6.2': + "@polkadot/x-bigint@12.6.2": dependencies: - '@polkadot/x-global': 12.6.2 + "@polkadot/x-global": 12.6.2 tslib: 2.6.2 - '@polkadot/x-fetch@12.6.2': + "@polkadot/x-fetch@12.6.2": dependencies: - '@polkadot/x-global': 12.6.2 + "@polkadot/x-global": 12.6.2 node-fetch: 3.3.2 tslib: 2.6.2 - '@polkadot/x-global@12.6.2': + "@polkadot/x-global@12.6.2": dependencies: tslib: 2.6.2 - '@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))': + "@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))": dependencies: - '@polkadot/util': 12.6.2 - '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) - '@polkadot/x-global': 12.6.2 + "@polkadot/util": 12.6.2 + "@polkadot/wasm-util": 7.3.2(@polkadot/util@12.6.2) + "@polkadot/x-global": 12.6.2 tslib: 2.6.2 - '@polkadot/x-textdecoder@12.6.2': + "@polkadot/x-textdecoder@12.6.2": dependencies: - '@polkadot/x-global': 12.6.2 + "@polkadot/x-global": 12.6.2 tslib: 2.6.2 - '@polkadot/x-textencoder@12.6.2': + "@polkadot/x-textencoder@12.6.2": dependencies: - '@polkadot/x-global': 12.6.2 + "@polkadot/x-global": 12.6.2 tslib: 2.6.2 - '@polkadot/x-ws@12.6.2': + "@polkadot/x-ws@12.6.2": dependencies: - '@polkadot/x-global': 12.6.2 + "@polkadot/x-global": 12.6.2 tslib: 2.6.2 ws: 8.18.0 transitivePeerDependencies: - bufferutil - utf-8-validate - '@popperjs/core@2.11.8': {} + "@popperjs/core@2.11.8": {} - '@prisma/instrumentation@5.16.1': + "@prisma/instrumentation@5.16.1": dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/sdk-trace-base': 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/api": 1.9.0 + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/sdk-trace-base": 1.25.1(@opentelemetry/api@1.9.0) transitivePeerDependencies: - supports-color - '@probot/get-private-key@1.1.2': {} + "@probot/get-private-key@1.1.2": {} - '@probot/octokit-plugin-config@2.0.1(@octokit/core@5.1.0)': + "@probot/octokit-plugin-config@2.0.1(@octokit/core@5.1.0)": dependencies: - '@octokit/core': 5.1.0 + "@octokit/core": 5.1.0 js-yaml: 4.1.0 - '@probot/pino@2.3.5': + "@probot/pino@2.3.5": dependencies: - '@sentry/node': 6.19.7 + "@sentry/node": 6.19.7 pino-pretty: 6.0.0 pump: 3.0.0 readable-stream: 3.6.2 @@ -38133,576 +54466,626 @@ snapshots: transitivePeerDependencies: - supports-color - '@protobufjs/aspromise@1.1.2': {} + "@protobufjs/aspromise@1.1.2": {} - '@protobufjs/base64@1.1.2': {} + "@protobufjs/base64@1.1.2": {} - '@protobufjs/codegen@2.0.4': {} + "@protobufjs/codegen@2.0.4": {} - '@protobufjs/eventemitter@1.1.0': {} + "@protobufjs/eventemitter@1.1.0": {} - '@protobufjs/fetch@1.1.0': + "@protobufjs/fetch@1.1.0": dependencies: - '@protobufjs/aspromise': 1.1.2 - '@protobufjs/inquire': 1.1.0 + "@protobufjs/aspromise": 1.1.2 + "@protobufjs/inquire": 1.1.0 - '@protobufjs/float@1.0.2': {} + "@protobufjs/float@1.0.2": {} - '@protobufjs/inquire@1.1.0': {} + "@protobufjs/inquire@1.1.0": {} - '@protobufjs/path@1.1.2': {} + "@protobufjs/path@1.1.2": {} - '@protobufjs/pool@1.1.0': {} + "@protobufjs/pool@1.1.0": {} - '@protobufjs/utf8@1.1.0': {} + "@protobufjs/utf8@1.1.0": {} - '@radix-ui/number@1.0.1': + "@radix-ui/number@1.0.1": dependencies: - '@babel/runtime': 7.25.0 + "@babel/runtime": 7.25.0 - '@radix-ui/primitive@1.0.1': + "@radix-ui/primitive@1.0.1": dependencies: - '@babel/runtime': 7.25.0 + "@babel/runtime": 7.25.0 - '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 - '@types/react-dom': 18.2.23(@types/react@18.2.73) + "@types/react": 18.2.73 + "@types/react-dom": 18.2.23(@types/react@18.2.73) - '@radix-ui/react-arrow@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-arrow@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.73)(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 - '@types/react-dom': 18.2.23(@types/react@18.2.73) + "@types/react": 18.2.73 + "@types/react-dom": 18.2.23(@types/react@18.2.73) - '@radix-ui/react-collection@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-collection@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.73)(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.73)(react@18.2.0)': + "@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.73)(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 + "@babel/runtime": 7.25.0 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-context@1.0.1(@types/react@18.2.73)(react@18.2.0)': + "@radix-ui/react-context@1.0.1(@types/react@18.2.73)(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 + "@babel/runtime": 7.25.0 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-direction@1.0.1(@types/react@18.2.73)(react@18.2.0)': + "@radix-ui/react-direction@1.0.1(@types/react@18.2.73)(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 + "@babel/runtime": 7.25.0 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.73)(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/primitive": 1.0.1 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 - '@types/react-dom': 18.2.23(@types/react@18.2.73) + "@types/react": 18.2.73 + "@types/react-dom": 18.2.23(@types/react@18.2.73) - '@radix-ui/react-dismissable-layer@1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-dismissable-layer@1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.73)(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/primitive": 1.0.1 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.73)(react@18.2.0)': + "@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.73)(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 + "@babel/runtime": 7.25.0 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 - '@types/react-dom': 18.2.23(@types/react@18.2.73) + "@types/react": 18.2.73 + "@types/react-dom": 18.2.23(@types/react@18.2.73) - '@radix-ui/react-focus-scope@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-focus-scope@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-id@1.0.1(@types/react@18.2.73)(react@18.2.0)': + "@radix-ui/react-id@1.0.1(@types/react@18.2.73)(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 optionalDependencies: - '@types/react': 18.2.73 - - '@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.25.0 - '@floating-ui/react-dom': 2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/rect': 1.0.1 + "@types/react": 18.2.73 + + "@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@babel/runtime": 7.25.0 + "@floating-ui/react-dom": 2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-arrow": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-rect": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-size": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/rect": 1.0.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 - '@types/react-dom': 18.2.23(@types/react@18.2.73) - - '@radix-ui/react-popper@1.1.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.25.0 - '@floating-ui/react-dom': 2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-arrow': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/rect': 1.0.1 + "@types/react": 18.2.73 + "@types/react-dom": 18.2.23(@types/react@18.2.73) + + "@radix-ui/react-popper@1.1.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@babel/runtime": 7.25.0 + "@floating-ui/react-dom": 2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-arrow": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-rect": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-size": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/rect": 1.0.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 - '@types/react-dom': 18.2.23(@types/react@18.2.73) + "@types/react": 18.2.73 + "@types/react-dom": 18.2.23(@types/react@18.2.73) - '@radix-ui/react-portal@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-portal@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.73)(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 - '@types/react-dom': 18.2.23(@types/react@18.2.73) + "@types/react": 18.2.73 + "@types/react-dom": 18.2.23(@types/react@18.2.73) - '@radix-ui/react-primitive@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-primitive@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.73)(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 - - '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@types/react": 18.2.73 + + "@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@babel/runtime": 7.25.0 + "@radix-ui/primitive": 1.0.1 + "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 - '@types/react-dom': 18.2.23(@types/react@18.2.73) - - '@radix-ui/react-roving-focus@1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@types/react": 18.2.73 + "@types/react-dom": 18.2.23(@types/react@18.2.73) + + "@radix-ui/react-roving-focus@1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@babel/runtime": 7.25.0 + "@radix-ui/primitive": 1.0.1 + "@radix-ui/react-collection": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 - - '@radix-ui/react-select@1.2.2(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/number': 1.0.1 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@types/react": 18.2.73 + + "@radix-ui/react-select@1.2.2(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@babel/runtime": 7.25.0 + "@radix-ui/number": 1.0.1 + "@radix-ui/primitive": 1.0.1 + "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-dismissable-layer": 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-focus-scope": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-popper": 1.1.2(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-portal": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-previous": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-visually-hidden": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) aria-hidden: 1.2.4 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-remove-scroll: 2.5.5(@types/react@18.2.73)(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 - '@types/react-dom': 18.2.23(@types/react@18.2.73) - - '@radix-ui/react-select@1.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/number': 1.0.1 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-popper': 1.1.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-portal': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@types/react": 18.2.73 + "@types/react-dom": 18.2.23(@types/react@18.2.73) + + "@radix-ui/react-select@1.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@babel/runtime": 7.25.0 + "@radix-ui/number": 1.0.1 + "@radix-ui/primitive": 1.0.1 + "@radix-ui/react-collection": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-dismissable-layer": 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-focus-scope": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-id": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-popper": 1.1.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-portal": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-slot": 1.0.2(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-use-previous": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-visually-hidden": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) aria-hidden: 1.2.4 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-remove-scroll: 2.5.5(@types/react@18.2.73)(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 - '@types/react-dom': 18.2.23(@types/react@18.2.73) + "@types/react": 18.2.73 + "@types/react-dom": 18.2.23(@types/react@18.2.73) - '@radix-ui/react-separator@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-separator@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-slot@1.0.2(@types/react@18.2.73)(react@18.2.0)': + "@radix-ui/react-slot@1.0.2(@types/react@18.2.73)(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 optionalDependencies: - '@types/react': 18.2.73 - - '@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@types/react": 18.2.73 + + "@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@babel/runtime": 7.25.0 + "@radix-ui/primitive": 1.0.1 + "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-toggle": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 - '@types/react-dom': 18.2.23(@types/react@18.2.73) - - '@radix-ui/react-toggle-group@1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toggle': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@types/react": 18.2.73 + "@types/react-dom": 18.2.23(@types/react@18.2.73) + + "@radix-ui/react-toggle-group@1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@babel/runtime": 7.25.0 + "@radix-ui/primitive": 1.0.1 + "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-roving-focus": 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-toggle": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/primitive": 1.0.1 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 - '@types/react-dom': 18.2.23(@types/react@18.2.73) + "@types/react": 18.2.73 + "@types/react-dom": 18.2.23(@types/react@18.2.73) - '@radix-ui/react-toggle@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-toggle@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/primitive": 1.0.1 + "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 - - '@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@types/react": 18.2.73 + + "@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@babel/runtime": 7.25.0 + "@radix-ui/primitive": 1.0.1 + "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-separator": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-toggle-group": 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 - '@types/react-dom': 18.2.23(@types/react@18.2.73) - - '@radix-ui/react-toolbar@1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.73)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-separator': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toggle-group': 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@types/react": 18.2.73 + "@types/react-dom": 18.2.23(@types/react@18.2.73) + + "@radix-ui/react-toolbar@1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@babel/runtime": 7.25.0 + "@radix-ui/primitive": 1.0.1 + "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-direction": 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-roving-focus": 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-separator": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-toggle-group": 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.73)(react@18.2.0)': + "@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.73)(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 + "@babel/runtime": 7.25.0 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.73)(react@18.2.0)': + "@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.73)(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.73)(react@18.2.0)': + "@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.73)(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.73)(react@18.2.0)': + "@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.73)(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 + "@babel/runtime": 7.25.0 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-use-previous@1.0.1(@types/react@18.2.73)(react@18.2.0)': + "@radix-ui/react-use-previous@1.0.1(@types/react@18.2.73)(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 + "@babel/runtime": 7.25.0 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-use-rect@1.0.1(@types/react@18.2.73)(react@18.2.0)': + "@radix-ui/react-use-rect@1.0.1(@types/react@18.2.73)(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/rect': 1.0.1 + "@babel/runtime": 7.25.0 + "@radix-ui/rect": 1.0.1 react: 18.2.0 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-use-size@1.0.1(@types/react@18.2.73)(react@18.2.0)': + "@radix-ui/react-use-size@1.0.1(@types/react@18.2.73)(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.73)(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 - '@types/react-dom': 18.2.23(@types/react@18.2.73) + "@types/react": 18.2.73 + "@types/react-dom": 18.2.23(@types/react@18.2.73) - '@radix-ui/react-visually-hidden@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@radix-ui/react-visually-hidden@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.25.0 - '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@babel/runtime": 7.25.0 + "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@radix-ui/rect@1.0.1': + "@radix-ui/rect@1.0.1": dependencies: - '@babel/runtime': 7.25.0 + "@babel/runtime": 7.25.0 - '@react-native-async-storage/async-storage@1.17.12(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))': + "@react-native-async-storage/async-storage@1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))": dependencies: merge-options: 3.0.4 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) - '@react-native-async-storage/async-storage@1.23.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))': + "@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))": dependencies: merge-options: 3.0.4 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - '@react-native-clipboard/clipboard@1.13.2(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)': + "@react-native-clipboard/clipboard@1.13.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - '@react-native-community/cli-clean@12.3.6': + "@react-native-community/cli-clean@13.6.1": dependencies: - '@react-native-community/cli-tools': 12.3.6 + "@react-native-community/cli-tools": 13.6.1 chalk: 4.1.2 execa: 5.1.1 + fast-glob: 3.3.2 transitivePeerDependencies: - encoding - '@react-native-community/cli-config@12.3.6': + "@react-native-community/cli-clean@13.6.9": dependencies: - '@react-native-community/cli-tools': 12.3.6 + "@react-native-community/cli-tools": 13.6.9 + chalk: 4.1.2 + execa: 5.1.1 + fast-glob: 3.3.2 + transitivePeerDependencies: + - encoding + + "@react-native-community/cli-config@13.6.1": + dependencies: + "@react-native-community/cli-tools": 13.6.1 chalk: 4.1.2 cosmiconfig: 5.2.1 deepmerge: 4.3.1 - glob: 7.2.3 + fast-glob: 3.3.2 + joi: 17.12.2 + transitivePeerDependencies: + - encoding + + "@react-native-community/cli-config@13.6.9": + dependencies: + "@react-native-community/cli-tools": 13.6.9 + chalk: 4.1.2 + cosmiconfig: 5.2.1 + deepmerge: 4.3.1 + fast-glob: 3.3.2 joi: 17.12.2 transitivePeerDependencies: - encoding - '@react-native-community/cli-debugger-ui@12.3.6': + "@react-native-community/cli-debugger-ui@13.6.1": dependencies: serve-static: 1.15.0 transitivePeerDependencies: - supports-color - '@react-native-community/cli-debugger-ui@7.0.3': + "@react-native-community/cli-debugger-ui@13.6.9": dependencies: serve-static: 1.15.0 transitivePeerDependencies: - supports-color - '@react-native-community/cli-doctor@12.3.6': + "@react-native-community/cli-debugger-ui@7.0.3": + dependencies: + serve-static: 1.15.0 + transitivePeerDependencies: + - supports-color + + "@react-native-community/cli-doctor@13.6.1": + dependencies: + "@react-native-community/cli-config": 13.6.1 + "@react-native-community/cli-platform-android": 13.6.1 + "@react-native-community/cli-platform-apple": 13.6.1 + "@react-native-community/cli-platform-ios": 13.6.1 + "@react-native-community/cli-tools": 13.6.1 + chalk: 4.1.2 + command-exists: 1.2.9 + deepmerge: 4.3.1 + envinfo: 7.11.1 + execa: 5.1.1 + hermes-profile-transformer: 0.0.6 + node-stream-zip: 1.15.0 + ora: 5.4.1 + semver: 7.6.3 + strip-ansi: 5.2.0 + wcwidth: 1.0.1 + yaml: 2.4.1 + transitivePeerDependencies: + - encoding + + "@react-native-community/cli-doctor@13.6.9": dependencies: - '@react-native-community/cli-config': 12.3.6 - '@react-native-community/cli-platform-android': 12.3.6 - '@react-native-community/cli-platform-ios': 12.3.6 - '@react-native-community/cli-tools': 12.3.6 + "@react-native-community/cli-config": 13.6.9 + "@react-native-community/cli-platform-android": 13.6.9 + "@react-native-community/cli-platform-apple": 13.6.9 + "@react-native-community/cli-platform-ios": 13.6.9 + "@react-native-community/cli-tools": 13.6.9 chalk: 4.1.2 command-exists: 1.2.9 deepmerge: 4.3.1 @@ -38718,43 +55101,86 @@ snapshots: transitivePeerDependencies: - encoding - '@react-native-community/cli-hermes@12.3.6': + "@react-native-community/cli-hermes@13.6.1": + dependencies: + "@react-native-community/cli-platform-android": 13.6.1 + "@react-native-community/cli-tools": 13.6.1 + chalk: 4.1.2 + hermes-profile-transformer: 0.0.6 + transitivePeerDependencies: + - encoding + + "@react-native-community/cli-hermes@13.6.9": dependencies: - '@react-native-community/cli-platform-android': 12.3.6 - '@react-native-community/cli-tools': 12.3.6 + "@react-native-community/cli-platform-android": 13.6.9 + "@react-native-community/cli-tools": 13.6.9 chalk: 4.1.2 hermes-profile-transformer: 0.0.6 transitivePeerDependencies: - encoding - '@react-native-community/cli-platform-android@12.3.6': + "@react-native-community/cli-platform-android@13.6.1": dependencies: - '@react-native-community/cli-tools': 12.3.6 + "@react-native-community/cli-tools": 13.6.1 chalk: 4.1.2 execa: 5.1.1 - fast-xml-parser: 4.3.6 - glob: 7.2.3 + fast-glob: 3.3.2 + fast-xml-parser: 4.4.1 logkitty: 0.7.1 transitivePeerDependencies: - encoding - '@react-native-community/cli-platform-ios@12.3.6': + "@react-native-community/cli-platform-android@13.6.9": dependencies: - '@react-native-community/cli-tools': 12.3.6 + "@react-native-community/cli-tools": 13.6.9 chalk: 4.1.2 execa: 5.1.1 - fast-xml-parser: 4.3.6 - glob: 7.2.3 + fast-glob: 3.3.2 + fast-xml-parser: 4.4.1 + logkitty: 0.7.1 + transitivePeerDependencies: + - encoding + + "@react-native-community/cli-platform-apple@13.6.1": + dependencies: + "@react-native-community/cli-tools": 13.6.1 + chalk: 4.1.2 + execa: 5.1.1 + fast-glob: 3.3.2 + fast-xml-parser: 4.4.1 + ora: 5.4.1 + transitivePeerDependencies: + - encoding + + "@react-native-community/cli-platform-apple@13.6.9": + dependencies: + "@react-native-community/cli-tools": 13.6.9 + chalk: 4.1.2 + execa: 5.1.1 + fast-glob: 3.3.2 + fast-xml-parser: 4.4.1 ora: 5.4.1 transitivePeerDependencies: - encoding - '@react-native-community/cli-plugin-metro@12.3.6': {} + "@react-native-community/cli-platform-ios@13.6.1": + dependencies: + "@react-native-community/cli-platform-apple": 13.6.1 + execa: 5.0.0 + transitivePeerDependencies: + - encoding + + "@react-native-community/cli-platform-ios@13.6.9": + dependencies: + "@react-native-community/cli-platform-apple": 13.6.9 + execa: 5.0.0 + transitivePeerDependencies: + - encoding - '@react-native-community/cli-server-api@12.3.6': + "@react-native-community/cli-server-api@13.6.1": dependencies: - '@react-native-community/cli-debugger-ui': 12.3.6 - '@react-native-community/cli-tools': 12.3.6 + "@react-native-community/cli-debugger-ui": 13.6.1 + "@react-native-community/cli-tools": 13.6.1 compression: 1.7.4 connect: 3.7.0 errorhandler: 1.5.1 @@ -38768,10 +55194,27 @@ snapshots: - supports-color - utf-8-validate - '@react-native-community/cli-server-api@7.0.4': + "@react-native-community/cli-server-api@13.6.9": dependencies: - '@react-native-community/cli-debugger-ui': 7.0.3 - '@react-native-community/cli-tools': 6.2.1 + "@react-native-community/cli-debugger-ui": 13.6.9 + "@react-native-community/cli-tools": 13.6.9 + compression: 1.7.4 + connect: 3.7.0 + errorhandler: 1.5.1 + nocache: 3.0.4 + pretty-format: 26.6.2 + serve-static: 1.15.0 + ws: 6.2.3 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + "@react-native-community/cli-server-api@7.0.4": + dependencies: + "@react-native-community/cli-debugger-ui": 7.0.3 + "@react-native-community/cli-tools": 6.2.1 compression: 1.7.4 connect: 3.7.0 errorhandler: 1.5.1 @@ -38786,11 +55229,27 @@ snapshots: - supports-color - utf-8-validate - '@react-native-community/cli-tools@12.3.6': + "@react-native-community/cli-tools@13.6.1": dependencies: appdirsjs: 1.2.7 chalk: 4.1.2 - execa: 5.0.0 + execa: 5.1.1 + find-up: 5.0.0 + mime: 2.6.0 + node-fetch: 2.7.0 + open: 6.4.0 + ora: 5.4.1 + semver: 7.6.3 + shell-quote: 1.8.1 + sudo-prompt: 9.2.1 + transitivePeerDependencies: + - encoding + + "@react-native-community/cli-tools@13.6.9": + dependencies: + appdirsjs: 1.2.7 + chalk: 4.1.2 + execa: 5.1.1 find-up: 5.0.0 mime: 2.6.0 node-fetch: 2.7.0 @@ -38802,7 +55261,7 @@ snapshots: transitivePeerDependencies: - encoding - '@react-native-community/cli-tools@6.2.1': + "@react-native-community/cli-tools@6.2.1": dependencies: appdirsjs: 1.2.7 chalk: 4.1.2 @@ -38816,21 +55275,24 @@ snapshots: transitivePeerDependencies: - encoding - '@react-native-community/cli-types@12.3.6': + "@react-native-community/cli-types@13.6.1": + dependencies: + joi: 17.12.2 + + "@react-native-community/cli-types@13.6.9": dependencies: joi: 17.12.2 - '@react-native-community/cli@12.3.6': - dependencies: - '@react-native-community/cli-clean': 12.3.6 - '@react-native-community/cli-config': 12.3.6 - '@react-native-community/cli-debugger-ui': 12.3.6 - '@react-native-community/cli-doctor': 12.3.6 - '@react-native-community/cli-hermes': 12.3.6 - '@react-native-community/cli-plugin-metro': 12.3.6 - '@react-native-community/cli-server-api': 12.3.6 - '@react-native-community/cli-tools': 12.3.6 - '@react-native-community/cli-types': 12.3.6 + "@react-native-community/cli@13.6.1": + dependencies: + "@react-native-community/cli-clean": 13.6.1 + "@react-native-community/cli-config": 13.6.1 + "@react-native-community/cli-debugger-ui": 13.6.1 + "@react-native-community/cli-doctor": 13.6.1 + "@react-native-community/cli-hermes": 13.6.1 + "@react-native-community/cli-server-api": 13.6.1 + "@react-native-community/cli-tools": 13.6.1 + "@react-native-community/cli-types": 13.6.1 chalk: 4.1.2 commander: 9.5.0 deepmerge: 4.3.1 @@ -38839,24 +55301,48 @@ snapshots: fs-extra: 8.1.0 graceful-fs: 4.2.11 prompts: 2.4.2 - semver: 7.5.4 + semver: 7.6.3 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + + "@react-native-community/cli@13.6.9": + dependencies: + "@react-native-community/cli-clean": 13.6.9 + "@react-native-community/cli-config": 13.6.9 + "@react-native-community/cli-debugger-ui": 13.6.9 + "@react-native-community/cli-doctor": 13.6.9 + "@react-native-community/cli-hermes": 13.6.9 + "@react-native-community/cli-server-api": 13.6.9 + "@react-native-community/cli-tools": 13.6.9 + "@react-native-community/cli-types": 13.6.9 + chalk: 4.1.2 + commander: 9.5.0 + deepmerge: 4.3.1 + execa: 5.1.1 + find-up: 4.1.0 + fs-extra: 8.1.0 + graceful-fs: 4.2.11 + prompts: 2.4.2 + semver: 7.6.3 transitivePeerDependencies: - bufferutil - encoding - supports-color - utf-8-validate - '@react-native-community/cli@12.3.6(metro-resolver@0.80.8)': - dependencies: - '@react-native-community/cli-clean': 12.3.6 - '@react-native-community/cli-config': 12.3.6 - '@react-native-community/cli-debugger-ui': 12.3.6 - '@react-native-community/cli-doctor': 12.3.6 - '@react-native-community/cli-hermes': 12.3.6 - '@react-native-community/cli-plugin-metro': 12.3.6 - '@react-native-community/cli-server-api': 12.3.6 - '@react-native-community/cli-tools': 12.3.6 - '@react-native-community/cli-types': 12.3.6 + "@react-native-community/cli@13.6.9(metro-resolver@0.80.12)": + dependencies: + "@react-native-community/cli-clean": 13.6.9 + "@react-native-community/cli-config": 13.6.9 + "@react-native-community/cli-debugger-ui": 13.6.9 + "@react-native-community/cli-doctor": 13.6.9 + "@react-native-community/cli-hermes": 13.6.9 + "@react-native-community/cli-server-api": 13.6.9 + "@react-native-community/cli-tools": 13.6.9 + "@react-native-community/cli-types": 13.6.9 chalk: 4.1.2 commander: 9.5.0 deepmerge: 4.3.1 @@ -38865,322 +55351,225 @@ snapshots: fs-extra: 8.1.0 graceful-fs: 4.2.11 prompts: 2.4.2 - semver: 7.5.4 + semver: 7.6.3 optionalDependencies: - metro-resolver: 0.80.8 + metro-resolver: 0.80.12 transitivePeerDependencies: - bufferutil - encoding - supports-color - utf-8-validate - '@react-native-community/datetimepicker@6.7.5': + "@react-native-community/datetimepicker@6.7.5": dependencies: invariant: 2.2.4 - '@react-native-community/netinfo@9.5.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))': + "@react-native-community/netinfo@9.5.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))": dependencies: - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - '@react-native-community/slider@4.5.0': {} + "@react-native-community/slider@4.5.0": {} - '@react-native-firebase/app@14.12.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)': + "@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: - '@expo/config-plugins': 4.1.5 + "@expo/config-plugins": 4.1.5 opencollective-postinstall: 2.0.3 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) superstruct: 0.6.2 transitivePeerDependencies: - supports-color - '@react-native-firebase/messaging@14.12.0(@react-native-firebase/app@14.12.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))': + "@react-native-firebase/messaging@14.12.0(@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))": dependencies: - '@react-native-firebase/app': 14.12.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + "@react-native-firebase/app": 14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - '@react-native-firebase/remote-config@14.12.0(@react-native-firebase/app@14.12.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))': + "@react-native-firebase/remote-config@14.12.0(@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))": dependencies: - '@react-native-firebase/app': 14.12.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + "@react-native-firebase/app": 14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - '@react-native-masked-view/masked-view@0.2.9(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)': + "@react-native-masked-view/masked-view@0.2.9(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - '@react-native/assets-registry@0.73.1': {} + "@react-native/assets-registry@0.74.87": {} - '@react-native/babel-plugin-codegen@0.73.2': - dependencies: - '@react-native/codegen': 0.73.2 - transitivePeerDependencies: - - '@babel/preset-env' - - supports-color + "@react-native/assets-registry@0.74.88": {} - '@react-native/babel-plugin-codegen@0.73.2(@babel/preset-env@7.24.3(@babel/core@7.24.3))': + "@react-native/babel-plugin-codegen@0.74.87": dependencies: - '@react-native/codegen': 0.73.2(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + "@react-native/codegen": 0.74.87 transitivePeerDependencies: - - '@babel/preset-env' + - "@babel/preset-env" - supports-color - '@react-native/babel-plugin-codegen@0.73.4': + "@react-native/babel-plugin-codegen@0.74.88": dependencies: - '@react-native/codegen': 0.73.3 + "@react-native/codegen": 0.74.88 transitivePeerDependencies: - - '@babel/preset-env' + - "@babel/preset-env" - supports-color - '@react-native/babel-plugin-codegen@0.73.4(@babel/preset-env@7.24.3(@babel/core@7.24.3))': + "@react-native/babel-plugin-codegen@0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3))": dependencies: - '@react-native/codegen': 0.73.3(@babel/preset-env@7.24.3(@babel/core@7.24.3)) - transitivePeerDependencies: - - '@babel/preset-env' - - supports-color - - '@react-native/babel-preset@0.73.19(@babel/core@7.24.3)': - dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) - '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) - '@babel/template': 7.24.0 - '@react-native/babel-plugin-codegen': 0.73.2 - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.3) - react-refresh: 0.14.0 + "@react-native/codegen": 0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3)) transitivePeerDependencies: - - '@babel/preset-env' + - "@babel/preset-env" - supports-color - '@react-native/babel-preset@0.73.19(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))': - dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) - '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) - '@babel/template': 7.24.0 - '@react-native/babel-plugin-codegen': 0.73.2(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + "@react-native/babel-preset@0.74.87(@babel/core@7.24.3)": + dependencies: + "@babel/core": 7.24.3 + "@babel/plugin-proposal-async-generator-functions": 7.20.7(@babel/core@7.24.3) + "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-export-default-from": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-proposal-logical-assignment-operators": 7.20.7(@babel/core@7.24.3) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-numeric-separator": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.24.3) + "@babel/plugin-proposal-optional-catch-binding": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.24.3) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-export-default-from": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-syntax-flow": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-async-to-generator": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-block-scoping": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-classes": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-computed-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-destructuring": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-flow-strip-types": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-function-name": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-literals": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.24.3) + "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-private-methods": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-private-property-in-object": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-display-name": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx-self": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx-source": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-runtime": 7.24.3(@babel/core@7.24.3) + "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-spread": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-sticky-regex": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-typescript": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-unicode-regex": 7.24.1(@babel/core@7.24.3) + "@babel/template": 7.24.0 + "@react-native/babel-plugin-codegen": 0.74.87 babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.3) - react-refresh: 0.14.0 - transitivePeerDependencies: - - '@babel/preset-env' - - supports-color - - '@react-native/babel-preset@0.73.21': - dependencies: - '@babel/plugin-proposal-async-generator-functions': 7.20.7 - '@babel/plugin-proposal-class-properties': 7.18.6 - '@babel/plugin-proposal-export-default-from': 7.24.1 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6 - '@babel/plugin-proposal-numeric-separator': 7.18.6 - '@babel/plugin-proposal-object-rest-spread': 7.20.7 - '@babel/plugin-proposal-optional-catch-binding': 7.18.6 - '@babel/plugin-proposal-optional-chaining': 7.21.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3 - '@babel/plugin-syntax-export-default-from': 7.24.1 - '@babel/plugin-syntax-flow': 7.24.1 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3 - '@babel/plugin-syntax-optional-chaining': 7.8.3 - '@babel/plugin-transform-arrow-functions': 7.24.1 - '@babel/plugin-transform-async-to-generator': 7.24.1 - '@babel/plugin-transform-block-scoping': 7.24.1 - '@babel/plugin-transform-classes': 7.24.1 - '@babel/plugin-transform-computed-properties': 7.24.1 - '@babel/plugin-transform-destructuring': 7.24.1 - '@babel/plugin-transform-flow-strip-types': 7.24.1 - '@babel/plugin-transform-function-name': 7.24.1 - '@babel/plugin-transform-literals': 7.24.1 - '@babel/plugin-transform-modules-commonjs': 7.24.1 - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5 - '@babel/plugin-transform-parameters': 7.24.1 - '@babel/plugin-transform-private-methods': 7.24.1 - '@babel/plugin-transform-private-property-in-object': 7.24.1 - '@babel/plugin-transform-react-display-name': 7.24.1 - '@babel/plugin-transform-react-jsx': 7.23.4 - '@babel/plugin-transform-react-jsx-self': 7.24.1 - '@babel/plugin-transform-react-jsx-source': 7.24.1 - '@babel/plugin-transform-runtime': 7.24.3 - '@babel/plugin-transform-shorthand-properties': 7.24.1 - '@babel/plugin-transform-spread': 7.24.1 - '@babel/plugin-transform-sticky-regex': 7.24.1 - '@babel/plugin-transform-typescript': 7.24.1 - '@babel/plugin-transform-unicode-regex': 7.24.1 - '@babel/template': 7.24.0 - '@react-native/babel-plugin-codegen': 0.73.4 - babel-plugin-transform-flow-enums: 0.0.2 - react-refresh: 0.14.0 + react-refresh: 0.14.2 transitivePeerDependencies: - - '@babel/preset-env' + - "@babel/preset-env" - supports-color - '@react-native/babel-preset@0.73.21(@babel/core@7.24.3)': - dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) - '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) - '@babel/template': 7.24.0 - '@react-native/babel-plugin-codegen': 0.73.4 + "@react-native/babel-preset@0.74.88(@babel/core@7.24.3)": + dependencies: + "@babel/core": 7.24.3 + "@babel/plugin-proposal-async-generator-functions": 7.20.7(@babel/core@7.24.3) + "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-export-default-from": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-proposal-logical-assignment-operators": 7.20.7(@babel/core@7.24.3) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-numeric-separator": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.24.3) + "@babel/plugin-proposal-optional-catch-binding": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.24.3) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-export-default-from": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-syntax-flow": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-async-to-generator": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-block-scoping": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-classes": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-computed-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-destructuring": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-flow-strip-types": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-function-name": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-literals": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.24.3) + "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-private-methods": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-private-property-in-object": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-display-name": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx-self": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx-source": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-runtime": 7.24.3(@babel/core@7.24.3) + "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-spread": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-sticky-regex": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-typescript": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-unicode-regex": 7.24.1(@babel/core@7.24.3) + "@babel/template": 7.24.0 + "@react-native/babel-plugin-codegen": 0.74.88 babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.3) react-refresh: 0.14.0 transitivePeerDependencies: - - '@babel/preset-env' + - "@babel/preset-env" - supports-color - '@react-native/babel-preset@0.73.21(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))': - dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) - '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) - '@babel/template': 7.24.0 - '@react-native/babel-plugin-codegen': 0.73.4(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + "@react-native/babel-preset@0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))": + dependencies: + "@babel/core": 7.24.3 + "@babel/plugin-proposal-async-generator-functions": 7.20.7(@babel/core@7.24.3) + "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-export-default-from": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-proposal-logical-assignment-operators": 7.20.7(@babel/core@7.24.3) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-numeric-separator": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.24.3) + "@babel/plugin-proposal-optional-catch-binding": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.24.3) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-export-default-from": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-syntax-flow": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-async-to-generator": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-block-scoping": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-classes": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-computed-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-destructuring": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-flow-strip-types": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-function-name": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-literals": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.24.3) + "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-private-methods": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-private-property-in-object": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-display-name": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx-self": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx-source": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-runtime": 7.24.3(@babel/core@7.24.3) + "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-spread": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-sticky-regex": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-typescript": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-unicode-regex": 7.24.1(@babel/core@7.24.3) + "@babel/template": 7.24.0 + "@react-native/babel-plugin-codegen": 0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3)) babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.3) react-refresh: 0.14.0 transitivePeerDependencies: - - '@babel/preset-env' + - "@babel/preset-env" - supports-color - '@react-native/codegen@0.73.2': + "@react-native/codegen@0.74.87": dependencies: - '@babel/parser': 7.24.1 - flow-parser: 0.206.0 + "@babel/parser": 7.24.1 glob: 7.2.3 + hermes-parser: 0.19.1 invariant: 2.2.4 jscodeshift: 0.14.0 mkdirp: 0.5.6 @@ -39188,141 +55577,140 @@ snapshots: transitivePeerDependencies: - supports-color - '@react-native/codegen@0.73.2(@babel/preset-env@7.24.3(@babel/core@7.24.3))': + "@react-native/codegen@0.74.88": dependencies: - '@babel/parser': 7.24.1 - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) - flow-parser: 0.206.0 - glob: 7.2.3 - invariant: 2.2.4 - jscodeshift: 0.14.0(@babel/preset-env@7.24.3(@babel/core@7.24.3)) - mkdirp: 0.5.6 - nullthrows: 1.1.1 - transitivePeerDependencies: - - supports-color - - '@react-native/codegen@0.73.3': - dependencies: - '@babel/parser': 7.24.1 - flow-parser: 0.206.0 + "@babel/parser": 7.24.1 glob: 7.2.3 + hermes-parser: 0.19.1 invariant: 2.2.4 jscodeshift: 0.14.0 mkdirp: 0.5.6 nullthrows: 1.1.1 + yargs: 17.7.2 transitivePeerDependencies: - supports-color - '@react-native/codegen@0.73.3(@babel/preset-env@7.24.3(@babel/core@7.24.3))': + "@react-native/codegen@0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3))": dependencies: - '@babel/parser': 7.24.1 - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) - flow-parser: 0.206.0 + "@babel/parser": 7.24.1 + "@babel/preset-env": 7.24.3(@babel/core@7.24.3) glob: 7.2.3 + hermes-parser: 0.19.1 invariant: 2.2.4 jscodeshift: 0.14.0(@babel/preset-env@7.24.3(@babel/core@7.24.3)) mkdirp: 0.5.6 nullthrows: 1.1.1 + yargs: 17.7.2 transitivePeerDependencies: - supports-color - '@react-native/community-cli-plugin@0.73.17': + "@react-native/community-cli-plugin@0.74.87": dependencies: - '@react-native-community/cli-server-api': 12.3.6 - '@react-native-community/cli-tools': 12.3.6 - '@react-native/dev-middleware': 0.73.8 - '@react-native/metro-babel-transformer': 0.73.15 + "@react-native-community/cli-server-api": 13.6.9 + "@react-native-community/cli-tools": 13.6.9 + "@react-native/dev-middleware": 0.74.87 + "@react-native/metro-babel-transformer": 0.74.87 chalk: 4.1.2 execa: 5.1.1 - metro: 0.80.8 - metro-config: 0.80.8 - metro-core: 0.80.8 + metro: 0.80.12 + metro-config: 0.80.12 + metro-core: 0.80.12 node-fetch: 2.7.0 + querystring: 0.2.1 readline: 1.3.0 transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' + - "@babel/preset-env" - bufferutil - encoding - metro-transform-worker - supports-color - utf-8-validate - '@react-native/community-cli-plugin@0.73.17(@babel/core@7.24.3)': + "@react-native/community-cli-plugin@0.74.88(@babel/core@7.24.3)": dependencies: - '@react-native-community/cli-server-api': 12.3.6 - '@react-native-community/cli-tools': 12.3.6 - '@react-native/dev-middleware': 0.73.8 - '@react-native/metro-babel-transformer': 0.73.15(@babel/core@7.24.3) + "@react-native-community/cli-server-api": 13.6.9 + "@react-native-community/cli-tools": 13.6.9 + "@react-native/dev-middleware": 0.74.88 + "@react-native/metro-babel-transformer": 0.74.88(@babel/core@7.24.3) chalk: 4.1.2 execa: 5.1.1 - metro: 0.80.8 - metro-config: 0.80.8 - metro-core: 0.80.8 + metro: 0.80.12 + metro-config: 0.80.12 + metro-core: 0.80.12 node-fetch: 2.7.0 + querystring: 0.2.1 readline: 1.3.0 transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' + - "@babel/core" + - "@babel/preset-env" - bufferutil - encoding - metro-transform-worker - supports-color - utf-8-validate - '@react-native/community-cli-plugin@0.73.17(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-transform-worker@0.80.8)': + "@react-native/community-cli-plugin@0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-transform-worker@0.80.12)": dependencies: - '@react-native-community/cli-server-api': 12.3.6 - '@react-native-community/cli-tools': 12.3.6 - '@react-native/dev-middleware': 0.73.8 - '@react-native/metro-babel-transformer': 0.73.15(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + "@react-native-community/cli-server-api": 13.6.9 + "@react-native-community/cli-tools": 13.6.9 + "@react-native/dev-middleware": 0.74.88 + "@react-native/metro-babel-transformer": 0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3)) chalk: 4.1.2 execa: 5.1.1 - metro: 0.80.8 - metro-config: 0.80.8(metro-transform-worker@0.80.8) - metro-core: 0.80.8 + metro: 0.80.12 + metro-config: 0.80.12(metro-transform-worker@0.80.12) + metro-core: 0.80.12 node-fetch: 2.7.0 + querystring: 0.2.1 readline: 1.3.0 transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' + - "@babel/core" + - "@babel/preset-env" - bufferutil - encoding - metro-transform-worker - supports-color - utf-8-validate - '@react-native/debugger-frontend@0.73.3': {} + "@react-native/debugger-frontend@0.74.85": {} + + "@react-native/debugger-frontend@0.74.87": {} + + "@react-native/debugger-frontend@0.74.88": {} - '@react-native/dev-middleware@0.73.7': + "@react-native/dev-middleware@0.74.85": dependencies: - '@isaacs/ttlcache': 1.4.1 - '@react-native/debugger-frontend': 0.73.3 + "@isaacs/ttlcache": 1.4.1 + "@react-native/debugger-frontend": 0.74.85 + "@rnx-kit/chromium-edge-launcher": 1.0.0 chrome-launcher: 0.15.2 - chromium-edge-launcher: 1.0.0 connect: 3.7.0 debug: 2.6.9 node-fetch: 2.7.0 + nullthrows: 1.1.1 open: 7.4.2 + selfsigned: 2.4.1 serve-static: 1.15.0 temp-dir: 2.0.0 - ws: 8.18.0 + ws: 6.2.3 transitivePeerDependencies: - bufferutil - encoding - supports-color - utf-8-validate - '@react-native/dev-middleware@0.73.8': + "@react-native/dev-middleware@0.74.87": dependencies: - '@isaacs/ttlcache': 1.4.1 - '@react-native/debugger-frontend': 0.73.3 + "@isaacs/ttlcache": 1.4.1 + "@react-native/debugger-frontend": 0.74.87 + "@rnx-kit/chromium-edge-launcher": 1.0.0 chrome-launcher: 0.15.2 - chromium-edge-launcher: 1.0.0 connect: 3.7.0 debug: 2.6.9 node-fetch: 2.7.0 + nullthrows: 1.1.1 open: 7.4.2 + selfsigned: 2.4.1 serve-static: 1.15.0 temp-dir: 2.0.0 ws: 6.2.3 @@ -39332,100 +55720,129 @@ snapshots: - supports-color - utf-8-validate - '@react-native/gradle-plugin@0.73.4': {} - - '@react-native/js-polyfills@0.73.1': {} - - '@react-native/metro-babel-transformer@0.73.13(@babel/core@7.24.3)': + "@react-native/dev-middleware@0.74.88": dependencies: - '@babel/core': 7.24.3 - '@react-native/babel-preset': 0.73.19(@babel/core@7.24.3) - hermes-parser: 0.15.0 + "@isaacs/ttlcache": 1.4.1 + "@react-native/debugger-frontend": 0.74.88 + "@rnx-kit/chromium-edge-launcher": 1.0.0 + chrome-launcher: 0.15.2 + connect: 3.7.0 + debug: 2.6.9 + node-fetch: 2.7.0 nullthrows: 1.1.1 + open: 7.4.2 + selfsigned: 2.4.1 + serve-static: 1.15.0 + temp-dir: 2.0.0 + ws: 6.2.3 transitivePeerDependencies: - - '@babel/preset-env' + - bufferutil + - encoding - supports-color + - utf-8-validate + + "@react-native/gradle-plugin@0.74.87": {} + + "@react-native/gradle-plugin@0.74.88": {} + + "@react-native/js-polyfills@0.74.87": {} - '@react-native/metro-babel-transformer@0.73.15': + "@react-native/js-polyfills@0.74.88": {} + + "@react-native/metro-babel-transformer@0.74.87": dependencies: - '@react-native/babel-preset': 0.73.21 - hermes-parser: 0.15.0 + "@babel/core": 7.24.3 + "@react-native/babel-preset": 0.74.87(@babel/core@7.24.3) + hermes-parser: 0.19.1 nullthrows: 1.1.1 transitivePeerDependencies: - - '@babel/preset-env' + - "@babel/preset-env" - supports-color - '@react-native/metro-babel-transformer@0.73.15(@babel/core@7.24.3)': + "@react-native/metro-babel-transformer@0.74.88(@babel/core@7.24.3)": dependencies: - '@babel/core': 7.24.3 - '@react-native/babel-preset': 0.73.21(@babel/core@7.24.3) - hermes-parser: 0.15.0 + "@babel/core": 7.24.3 + "@react-native/babel-preset": 0.74.88(@babel/core@7.24.3) + hermes-parser: 0.19.1 nullthrows: 1.1.1 transitivePeerDependencies: - - '@babel/preset-env' + - "@babel/preset-env" - supports-color - '@react-native/metro-babel-transformer@0.73.15(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))': + "@react-native/metro-babel-transformer@0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))": dependencies: - '@babel/core': 7.24.3 - '@react-native/babel-preset': 0.73.21(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3)) - hermes-parser: 0.15.0 + "@babel/core": 7.24.3 + "@react-native/babel-preset": 0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + hermes-parser: 0.19.1 nullthrows: 1.1.1 transitivePeerDependencies: - - '@babel/preset-env' + - "@babel/preset-env" - supports-color - '@react-native/metro-config@0.73.3(@babel/core@7.24.3)': + "@react-native/metro-config@0.74.88(@babel/core@7.24.3)": dependencies: - '@react-native/js-polyfills': 0.73.1 - '@react-native/metro-babel-transformer': 0.73.13(@babel/core@7.24.3) + "@react-native/js-polyfills": 0.74.88 + "@react-native/metro-babel-transformer": 0.74.88(@babel/core@7.24.3) metro-config: 0.80.8 metro-runtime: 0.80.8 transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' + - "@babel/core" + - "@babel/preset-env" - bufferutil - encoding - metro-transform-worker - supports-color - utf-8-validate - '@react-native/normalize-color@2.1.0': {} + "@react-native/normalize-color@2.1.0": {} + + "@react-native/normalize-colors@0.74.85": {} - '@react-native/normalize-colors@0.73.2': {} + "@react-native/normalize-colors@0.74.87": {} - '@react-native/virtualized-lists@0.73.4(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))': + "@react-native/normalize-colors@0.74.88": {} + + "@react-native/virtualized-lists@0.74.87(@types/react@18.2.73)(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: invariant: 2.2.4 nullthrows: 1.1.1 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react: 18.2.0 + react-native: 0.74.5(@types/react@18.2.73)(react@18.2.0) + optionalDependencies: + "@types/react": 18.2.73 - '@react-native/virtualized-lists@0.73.4(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))': + "@react-native/virtualized-lists@0.74.88(@types/react@18.2.73)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)": dependencies: invariant: 2.2.4 nullthrows: 1.1.1 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react: 18.2.0 + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) + optionalDependencies: + "@types/react": 18.2.73 - '@react-native/virtualized-lists@0.73.4(react-native@0.73.6(react@18.2.0))': + "@react-native/virtualized-lists@0.74.88(@types/react@18.2.73)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: invariant: 2.2.4 nullthrows: 1.1.1 - react-native: 0.73.6(react@18.2.0) + react: 18.2.0 + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) + optionalDependencies: + "@types/react": 18.2.73 - '@react-navigation/bottom-tabs@6.5.20(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-screens@3.30.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)': + "@react-navigation/bottom-tabs@6.5.20(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: - '@react-navigation/elements': 1.3.30(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@react-navigation/native': 6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + "@react-navigation/elements": 1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@react-navigation/native": 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) color: 4.2.3 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) - react-native-safe-area-context: 4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - react-native-screens: 3.30.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) + react-native-safe-area-context: 4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + react-native-screens: 3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) warn-once: 0.1.1 - '@react-navigation/core@6.4.16(react@18.2.0)': + "@react-navigation/core@6.4.16(react@18.2.0)": dependencies: - '@react-navigation/routers': 6.1.9 + "@react-navigation/routers": 6.1.9 escape-string-regexp: 4.0.0 nanoid: 3.3.7 query-string: 7.1.3 @@ -39433,66 +55850,59 @@ snapshots: react-is: 16.13.1 use-latest-callback: 0.1.9(react@18.2.0) - '@react-navigation/devtools@6.0.26(react@18.2.0)': + "@react-navigation/elements@1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: - deep-equal: 2.2.3 - nanoid: 3.3.7 + "@react-navigation/native": 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react: 18.2.0 - stacktrace-parser: 0.1.10 + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) + react-native-safe-area-context: 4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - '@react-navigation/elements@1.3.30(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)': + "@react-navigation/material-top-tabs@6.6.13(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-tab-view@3.5.2(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: - '@react-navigation/native': 6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) - react-native-safe-area-context: 4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - - '@react-navigation/material-top-tabs@6.6.13(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-pager-view@6.3.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-tab-view@3.5.2(react-native-pager-view@6.3.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-navigation/native': 6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + "@react-navigation/native": 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) color: 4.2.3 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) - react-native-pager-view: 6.3.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - react-native-tab-view: 3.5.2(react-native-pager-view@6.3.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) + react-native-pager-view: 6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + react-native-tab-view: 3.5.2(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) warn-once: 0.1.1 - '@react-navigation/native-stack@6.9.26(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-screens@3.30.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)': + "@react-navigation/native-stack@6.9.26(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: - '@react-navigation/elements': 1.3.30(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@react-navigation/native': 6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + "@react-navigation/elements": 1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@react-navigation/native": 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) - react-native-safe-area-context: 4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - react-native-screens: 3.30.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) + react-native-safe-area-context: 4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + react-native-screens: 3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) warn-once: 0.1.1 - '@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)': + "@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: - '@react-navigation/core': 6.4.16(react@18.2.0) + "@react-navigation/core": 6.4.16(react@18.2.0) escape-string-regexp: 4.0.0 fast-deep-equal: 3.1.3 nanoid: 3.3.7 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - '@react-navigation/routers@6.1.9': + "@react-navigation/routers@6.1.9": dependencies: nanoid: 3.3.7 - '@react-navigation/stack@6.3.29(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-gesture-handler@2.16.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-screens@3.30.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)': + "@react-navigation/stack@6.3.29(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: - '@react-navigation/elements': 1.3.30(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@react-navigation/native': 6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + "@react-navigation/elements": 1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@react-navigation/native": 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) color: 4.2.3 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) - react-native-gesture-handler: 2.16.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - react-native-safe-area-context: 4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - react-native-screens: 3.30.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) + react-native-gesture-handler: 2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + react-native-safe-area-context: 4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + react-native-screens: 3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) warn-once: 0.1.1 - '@reduxjs/toolkit@2.0.1(react-redux@7.2.9(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': + "@reduxjs/toolkit@2.0.1(react-redux@7.2.9(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: immer: 10.0.3 redux: 5.0.0 @@ -39502,16 +55912,27 @@ snapshots: react: 18.2.0 react-redux: 7.2.9(@types/react@18.2.73)(react@18.2.0) - '@rollup/plugin-babel@5.3.1(@babel/core@7.24.3)(rollup@2.79.1)': + "@rnx-kit/chromium-edge-launcher@1.0.0": dependencies: - '@babel/core': 7.24.3 - '@babel/helper-module-imports': 7.24.3 - '@rollup/pluginutils': 3.1.0(rollup@2.79.1) + "@types/node": 18.19.26 + escape-string-regexp: 4.0.0 + is-wsl: 2.2.0 + lighthouse-logger: 1.4.2 + mkdirp: 1.0.4 + rimraf: 3.0.2 + transitivePeerDependencies: + - supports-color + + "@rollup/plugin-babel@5.3.1(@babel/core@7.24.3)(rollup@2.79.1)": + dependencies: + "@babel/core": 7.24.3 + "@babel/helper-module-imports": 7.24.3 + "@rollup/pluginutils": 3.1.0(rollup@2.79.1) rollup: 2.79.1 - '@rollup/plugin-commonjs@25.0.7(rollup@4.17.2)': + "@rollup/plugin-commonjs@25.0.7(rollup@4.17.2)": dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.17.2) + "@rollup/pluginutils": 5.1.0(rollup@4.17.2) commondir: 1.0.1 estree-walker: 2.0.2 glob: 8.1.0 @@ -39520,20 +55941,20 @@ snapshots: optionalDependencies: rollup: 4.17.2 - '@rollup/plugin-node-resolve@11.2.1(rollup@2.79.1)': + "@rollup/plugin-node-resolve@11.2.1(rollup@2.79.1)": dependencies: - '@rollup/pluginutils': 3.1.0(rollup@2.79.1) - '@types/resolve': 1.17.1 + "@rollup/pluginutils": 3.1.0(rollup@2.79.1) + "@types/resolve": 1.17.1 builtin-modules: 3.3.0 deepmerge: 4.3.1 is-module: 1.0.0 resolve: 1.22.8 rollup: 2.79.1 - '@rollup/plugin-node-resolve@15.2.3(rollup@4.17.2)': + "@rollup/plugin-node-resolve@15.2.3(rollup@4.17.2)": dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.17.2) - '@types/resolve': 1.20.2 + "@rollup/pluginutils": 5.1.0(rollup@4.17.2) + "@types/resolve": 1.20.2 deepmerge: 4.3.1 is-builtin-module: 3.2.1 is-module: 1.0.0 @@ -39541,78 +55962,78 @@ snapshots: optionalDependencies: rollup: 4.17.2 - '@rollup/plugin-replace@2.4.2(rollup@2.79.1)': + "@rollup/plugin-replace@2.4.2(rollup@2.79.1)": dependencies: - '@rollup/pluginutils': 3.1.0(rollup@2.79.1) + "@rollup/pluginutils": 3.1.0(rollup@2.79.1) magic-string: 0.25.9 rollup: 2.79.1 - '@rollup/pluginutils@3.1.0(rollup@2.79.1)': + "@rollup/pluginutils@3.1.0(rollup@2.79.1)": dependencies: - '@types/estree': 0.0.39 + "@types/estree": 0.0.39 estree-walker: 1.0.1 picomatch: 2.3.1 rollup: 2.79.1 - '@rollup/pluginutils@5.1.0(rollup@4.17.2)': + "@rollup/pluginutils@5.1.0(rollup@4.17.2)": dependencies: - '@types/estree': 1.0.5 + "@types/estree": 1.0.5 estree-walker: 2.0.2 picomatch: 2.3.1 optionalDependencies: rollup: 4.17.2 - '@rollup/rollup-android-arm-eabi@4.17.2': + "@rollup/rollup-android-arm-eabi@4.17.2": optional: true - '@rollup/rollup-android-arm64@4.17.2': + "@rollup/rollup-android-arm64@4.17.2": optional: true - '@rollup/rollup-darwin-arm64@4.17.2': + "@rollup/rollup-darwin-arm64@4.17.2": optional: true - '@rollup/rollup-darwin-x64@4.17.2': + "@rollup/rollup-darwin-x64@4.17.2": optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.17.2': + "@rollup/rollup-linux-arm-gnueabihf@4.17.2": optional: true - '@rollup/rollup-linux-arm-musleabihf@4.17.2': + "@rollup/rollup-linux-arm-musleabihf@4.17.2": optional: true - '@rollup/rollup-linux-arm64-gnu@4.17.2': + "@rollup/rollup-linux-arm64-gnu@4.17.2": optional: true - '@rollup/rollup-linux-arm64-musl@4.17.2': + "@rollup/rollup-linux-arm64-musl@4.17.2": optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.17.2': + "@rollup/rollup-linux-powerpc64le-gnu@4.17.2": optional: true - '@rollup/rollup-linux-riscv64-gnu@4.17.2': + "@rollup/rollup-linux-riscv64-gnu@4.17.2": optional: true - '@rollup/rollup-linux-s390x-gnu@4.17.2': + "@rollup/rollup-linux-s390x-gnu@4.17.2": optional: true - '@rollup/rollup-linux-x64-gnu@4.17.2': + "@rollup/rollup-linux-x64-gnu@4.17.2": optional: true - '@rollup/rollup-linux-x64-musl@4.17.2': + "@rollup/rollup-linux-x64-musl@4.17.2": optional: true - '@rollup/rollup-win32-arm64-msvc@4.17.2': + "@rollup/rollup-win32-arm64-msvc@4.17.2": optional: true - '@rollup/rollup-win32-ia32-msvc@4.17.2': + "@rollup/rollup-win32-ia32-msvc@4.17.2": optional: true - '@rollup/rollup-win32-x64-msvc@4.17.2': + "@rollup/rollup-win32-x64-msvc@4.17.2": optional: true - '@rushstack/eslint-patch@1.10.1': {} + "@rushstack/eslint-patch@1.10.1": {} - '@samverschueren/stream-to-observable@0.3.1(rxjs@6.6.7)': + "@samverschueren/stream-to-observable@0.3.1(rxjs@6.6.7)": dependencies: any-observable: 0.3.0(rxjs@6.6.7) optionalDependencies: @@ -39620,176 +56041,177 @@ snapshots: transitivePeerDependencies: - zenObservable - '@scure/base@1.1.6': {} + "@scure/base@1.1.6": {} - '@scure/bip32@1.3.3': + "@scure/bip32@1.3.3": dependencies: - '@noble/curves': 1.3.0 - '@noble/hashes': 1.3.3 - '@scure/base': 1.1.6 + "@noble/curves": 1.3.0 + "@noble/hashes": 1.3.3 + "@scure/base": 1.1.6 - '@scure/bip32@1.4.0': + "@scure/bip32@1.4.0": dependencies: - '@noble/curves': 1.4.0 - '@noble/hashes': 1.4.0 - '@scure/base': 1.1.6 + "@noble/curves": 1.4.0 + "@noble/hashes": 1.4.0 + "@scure/base": 1.1.6 - '@scure/bip39@1.2.2': + "@scure/bip39@1.2.2": dependencies: - '@noble/hashes': 1.3.3 - '@scure/base': 1.1.6 + "@noble/hashes": 1.3.3 + "@scure/base": 1.1.6 - '@scure/bip39@1.3.0': + "@scure/bip39@1.3.0": dependencies: - '@noble/hashes': 1.4.0 - '@scure/base': 1.1.6 + "@noble/hashes": 1.4.0 + "@scure/base": 1.1.6 - '@segment/analytics-react-native@2.19.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)))(@segment/sovran-react-native@0.4.5(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-get-random-values@1.11.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)': + "@segment/analytics-react-native@2.19.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)))(@segment/sovran-react-native@0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-get-random-values@1.11.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: - '@segment/sovran-react-native': 0.4.5(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@segment/tsub': 2.0.0 + "@segment/sovran-react-native": 0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@segment/tsub": 2.0.0 deepmerge: 4.3.1 js-base64: 3.7.7 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) - react-native-get-random-values: 1.11.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) + react-native-get-random-values: 1.11.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) uuid: 9.0.1 optionalDependencies: - '@react-native-async-storage/async-storage': 1.23.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + "@react-native-async-storage/async-storage": 1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) transitivePeerDependencies: - supports-color - '@segment/loosely-validate-event@2.0.0': + "@segment/loosely-validate-event@2.0.0": dependencies: component-type: 1.2.2 join-component: 1.1.0 - '@segment/sovran-react-native@0.4.5(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)': + "@segment/sovran-react-native@0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: - '@react-native-async-storage/async-storage': 1.23.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + "@react-native-async-storage/async-storage": 1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) ansi-regex: 5.0.1 deepmerge: 4.3.1 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) shell-quote: 1.7.3 - '@segment/tsub@2.0.0': + "@segment/tsub@2.0.0": dependencies: - '@stdlib/math-base-special-ldexp': 0.0.5 + "@stdlib/math-base-special-ldexp": 0.0.5 dlv: 1.1.3 dset: 3.1.3 tiny-hashes: 1.0.1 transitivePeerDependencies: - supports-color - '@sentry-internal/browser-utils@8.16.0': + "@sentry-internal/browser-utils@8.16.0": dependencies: - '@sentry/core': 8.16.0 - '@sentry/types': 8.16.0 - '@sentry/utils': 8.16.0 + "@sentry/core": 8.16.0 + "@sentry/types": 8.16.0 + "@sentry/utils": 8.16.0 - '@sentry-internal/feedback@7.100.1': + "@sentry-internal/feedback@7.117.0": dependencies: - '@sentry/core': 7.100.1 - '@sentry/types': 7.100.1 - '@sentry/utils': 7.100.1 + "@sentry/core": 7.117.0 + "@sentry/types": 7.117.0 + "@sentry/utils": 7.117.0 - '@sentry-internal/feedback@8.16.0': + "@sentry-internal/feedback@8.16.0": dependencies: - '@sentry/core': 8.16.0 - '@sentry/types': 8.16.0 - '@sentry/utils': 8.16.0 + "@sentry/core": 8.16.0 + "@sentry/types": 8.16.0 + "@sentry/utils": 8.16.0 - '@sentry-internal/replay-canvas@7.100.1': + "@sentry-internal/replay-canvas@7.117.0": dependencies: - '@sentry/core': 7.100.1 - '@sentry/replay': 7.100.1 - '@sentry/types': 7.100.1 - '@sentry/utils': 7.100.1 + "@sentry/core": 7.117.0 + "@sentry/replay": 7.117.0 + "@sentry/types": 7.117.0 + "@sentry/utils": 7.117.0 - '@sentry-internal/replay-canvas@8.16.0': + "@sentry-internal/replay-canvas@8.16.0": dependencies: - '@sentry-internal/replay': 8.16.0 - '@sentry/core': 8.16.0 - '@sentry/types': 8.16.0 - '@sentry/utils': 8.16.0 + "@sentry-internal/replay": 8.16.0 + "@sentry/core": 8.16.0 + "@sentry/types": 8.16.0 + "@sentry/utils": 8.16.0 - '@sentry-internal/replay@8.16.0': + "@sentry-internal/replay@8.16.0": dependencies: - '@sentry-internal/browser-utils': 8.16.0 - '@sentry/core': 8.16.0 - '@sentry/types': 8.16.0 - '@sentry/utils': 8.16.0 + "@sentry-internal/browser-utils": 8.16.0 + "@sentry/core": 8.16.0 + "@sentry/types": 8.16.0 + "@sentry/utils": 8.16.0 - '@sentry-internal/tracing@7.100.1': + "@sentry-internal/tracing@7.117.0": dependencies: - '@sentry/core': 7.100.1 - '@sentry/types': 7.100.1 - '@sentry/utils': 7.100.1 + "@sentry/core": 7.117.0 + "@sentry/types": 7.117.0 + "@sentry/utils": 7.117.0 - '@sentry/browser@7.100.1': + "@sentry/browser@7.117.0": dependencies: - '@sentry-internal/feedback': 7.100.1 - '@sentry-internal/replay-canvas': 7.100.1 - '@sentry-internal/tracing': 7.100.1 - '@sentry/core': 7.100.1 - '@sentry/replay': 7.100.1 - '@sentry/types': 7.100.1 - '@sentry/utils': 7.100.1 + "@sentry-internal/feedback": 7.117.0 + "@sentry-internal/replay-canvas": 7.117.0 + "@sentry-internal/tracing": 7.117.0 + "@sentry/core": 7.117.0 + "@sentry/integrations": 7.117.0 + "@sentry/replay": 7.117.0 + "@sentry/types": 7.117.0 + "@sentry/utils": 7.117.0 - '@sentry/browser@8.16.0': + "@sentry/browser@8.16.0": dependencies: - '@sentry-internal/browser-utils': 8.16.0 - '@sentry-internal/feedback': 8.16.0 - '@sentry-internal/replay': 8.16.0 - '@sentry-internal/replay-canvas': 8.16.0 - '@sentry/core': 8.16.0 - '@sentry/types': 8.16.0 - '@sentry/utils': 8.16.0 + "@sentry-internal/browser-utils": 8.16.0 + "@sentry-internal/feedback": 8.16.0 + "@sentry-internal/replay": 8.16.0 + "@sentry-internal/replay-canvas": 8.16.0 + "@sentry/core": 8.16.0 + "@sentry/types": 8.16.0 + "@sentry/utils": 8.16.0 - '@sentry/cli-darwin@2.30.0': + "@sentry/cli-darwin@2.31.0": optional: true - '@sentry/cli-darwin@2.31.0': + "@sentry/cli-darwin@2.31.2": optional: true - '@sentry/cli-linux-arm64@2.30.0': + "@sentry/cli-linux-arm64@2.31.0": optional: true - '@sentry/cli-linux-arm64@2.31.0': + "@sentry/cli-linux-arm64@2.31.2": optional: true - '@sentry/cli-linux-arm@2.30.0': + "@sentry/cli-linux-arm@2.31.0": optional: true - '@sentry/cli-linux-arm@2.31.0': + "@sentry/cli-linux-arm@2.31.2": optional: true - '@sentry/cli-linux-i686@2.30.0': + "@sentry/cli-linux-i686@2.31.0": optional: true - '@sentry/cli-linux-i686@2.31.0': + "@sentry/cli-linux-i686@2.31.2": optional: true - '@sentry/cli-linux-x64@2.30.0': + "@sentry/cli-linux-x64@2.31.0": optional: true - '@sentry/cli-linux-x64@2.31.0': + "@sentry/cli-linux-x64@2.31.2": optional: true - '@sentry/cli-win32-i686@2.30.0': + "@sentry/cli-win32-i686@2.31.0": optional: true - '@sentry/cli-win32-i686@2.31.0': + "@sentry/cli-win32-i686@2.31.2": optional: true - '@sentry/cli-win32-x64@2.30.0': + "@sentry/cli-win32-x64@2.31.0": optional: true - '@sentry/cli-win32-x64@2.31.0': + "@sentry/cli-win32-x64@2.31.2": optional: true - '@sentry/cli@2.30.0': + "@sentry/cli@2.31.0": dependencies: https-proxy-agent: 5.0.1 node-fetch: 2.7.0 @@ -39797,18 +56219,18 @@ snapshots: proxy-from-env: 1.1.0 which: 2.0.2 optionalDependencies: - '@sentry/cli-darwin': 2.30.0 - '@sentry/cli-linux-arm': 2.30.0 - '@sentry/cli-linux-arm64': 2.30.0 - '@sentry/cli-linux-i686': 2.30.0 - '@sentry/cli-linux-x64': 2.30.0 - '@sentry/cli-win32-i686': 2.30.0 - '@sentry/cli-win32-x64': 2.30.0 + "@sentry/cli-darwin": 2.31.0 + "@sentry/cli-linux-arm": 2.31.0 + "@sentry/cli-linux-arm64": 2.31.0 + "@sentry/cli-linux-i686": 2.31.0 + "@sentry/cli-linux-x64": 2.31.0 + "@sentry/cli-win32-i686": 2.31.0 + "@sentry/cli-win32-x64": 2.31.0 transitivePeerDependencies: - encoding - supports-color - '@sentry/cli@2.31.0': + "@sentry/cli@2.31.2": dependencies: https-proxy-agent: 5.0.1 node-fetch: 2.7.0 @@ -39816,77 +56238,77 @@ snapshots: proxy-from-env: 1.1.0 which: 2.0.2 optionalDependencies: - '@sentry/cli-darwin': 2.31.0 - '@sentry/cli-linux-arm': 2.31.0 - '@sentry/cli-linux-arm64': 2.31.0 - '@sentry/cli-linux-i686': 2.31.0 - '@sentry/cli-linux-x64': 2.31.0 - '@sentry/cli-win32-i686': 2.31.0 - '@sentry/cli-win32-x64': 2.31.0 + "@sentry/cli-darwin": 2.31.2 + "@sentry/cli-linux-arm": 2.31.2 + "@sentry/cli-linux-arm64": 2.31.2 + "@sentry/cli-linux-i686": 2.31.2 + "@sentry/cli-linux-x64": 2.31.2 + "@sentry/cli-win32-i686": 2.31.2 + "@sentry/cli-win32-x64": 2.31.2 transitivePeerDependencies: - encoding - supports-color - '@sentry/core@6.19.7': + "@sentry/core@6.19.7": dependencies: - '@sentry/hub': 6.19.7 - '@sentry/minimal': 6.19.7 - '@sentry/types': 6.19.7 - '@sentry/utils': 6.19.7 + "@sentry/hub": 6.19.7 + "@sentry/minimal": 6.19.7 + "@sentry/types": 6.19.7 + "@sentry/utils": 6.19.7 tslib: 2.6.2 - '@sentry/core@7.100.1': + "@sentry/core@7.117.0": dependencies: - '@sentry/types': 7.100.1 - '@sentry/utils': 7.100.1 + "@sentry/types": 7.117.0 + "@sentry/utils": 7.117.0 - '@sentry/core@8.16.0': + "@sentry/core@8.16.0": dependencies: - '@sentry/types': 8.16.0 - '@sentry/utils': 8.16.0 + "@sentry/types": 8.16.0 + "@sentry/utils": 8.16.0 - '@sentry/electron@5.2.0': + "@sentry/electron@5.2.0": dependencies: - '@sentry/browser': 8.16.0 - '@sentry/core': 8.16.0 - '@sentry/node': 8.16.0 - '@sentry/types': 8.16.0 - '@sentry/utils': 8.16.0 + "@sentry/browser": 8.16.0 + "@sentry/core": 8.16.0 + "@sentry/node": 8.16.0 + "@sentry/types": 8.16.0 + "@sentry/utils": 8.16.0 deepmerge: 4.3.1 transitivePeerDependencies: - supports-color - '@sentry/hub@6.19.7': + "@sentry/hub@6.19.7": dependencies: - '@sentry/types': 6.19.7 - '@sentry/utils': 6.19.7 + "@sentry/types": 6.19.7 + "@sentry/utils": 6.19.7 tslib: 2.6.2 - '@sentry/hub@7.100.1': + "@sentry/hub@7.117.0": dependencies: - '@sentry/core': 7.100.1 - '@sentry/types': 7.100.1 - '@sentry/utils': 7.100.1 + "@sentry/core": 7.117.0 + "@sentry/types": 7.117.0 + "@sentry/utils": 7.117.0 - '@sentry/integrations@7.100.1': + "@sentry/integrations@7.117.0": dependencies: - '@sentry/core': 7.100.1 - '@sentry/types': 7.100.1 - '@sentry/utils': 7.100.1 + "@sentry/core": 7.117.0 + "@sentry/types": 7.117.0 + "@sentry/utils": 7.117.0 localforage: 1.10.0 - '@sentry/minimal@6.19.7': + "@sentry/minimal@6.19.7": dependencies: - '@sentry/hub': 6.19.7 - '@sentry/types': 6.19.7 + "@sentry/hub": 6.19.7 + "@sentry/types": 6.19.7 tslib: 2.6.2 - '@sentry/node@6.19.7': + "@sentry/node@6.19.7": dependencies: - '@sentry/core': 6.19.7 - '@sentry/hub': 6.19.7 - '@sentry/types': 6.19.7 - '@sentry/utils': 6.19.7 + "@sentry/core": 6.19.7 + "@sentry/hub": 6.19.7 + "@sentry/types": 6.19.7 + "@sentry/utils": 6.19.7 cookie: 0.4.2 https-proxy-agent: 5.0.1 lru_map: 0.3.3 @@ -39894,802 +56316,802 @@ snapshots: transitivePeerDependencies: - supports-color - '@sentry/node@8.16.0': - dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/context-async-hooks': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation-connect': 0.37.0(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation-express': 0.40.1(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation-fastify': 0.37.0(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation-graphql': 0.41.0(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation-hapi': 0.39.0(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation-http': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation-ioredis': 0.41.0(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation-koa': 0.41.0(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation-mongodb': 0.45.0(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation-mongoose': 0.39.0(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation-mysql': 0.39.0(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation-mysql2': 0.39.0(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation-nestjs-core': 0.38.0(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation-pg': 0.42.0(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation-redis-4': 0.40.0(@opentelemetry/api@1.9.0) - '@opentelemetry/resources': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/sdk-trace-base': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.25.1 - '@prisma/instrumentation': 5.16.1 - '@sentry/core': 8.16.0 - '@sentry/opentelemetry': 8.16.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.25.1) - '@sentry/types': 8.16.0 - '@sentry/utils': 8.16.0 + "@sentry/node@8.16.0": + dependencies: + "@opentelemetry/api": 1.9.0 + "@opentelemetry/context-async-hooks": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation-connect": 0.37.0(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation-express": 0.40.1(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation-fastify": 0.37.0(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation-graphql": 0.41.0(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation-hapi": 0.39.0(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation-http": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation-ioredis": 0.41.0(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation-koa": 0.41.0(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation-mongodb": 0.45.0(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation-mongoose": 0.39.0(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation-mysql": 0.39.0(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation-mysql2": 0.39.0(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation-nestjs-core": 0.38.0(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation-pg": 0.42.0(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation-redis-4": 0.40.0(@opentelemetry/api@1.9.0) + "@opentelemetry/resources": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/sdk-trace-base": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/semantic-conventions": 1.25.1 + "@prisma/instrumentation": 5.16.1 + "@sentry/core": 8.16.0 + "@sentry/opentelemetry": 8.16.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.25.1) + "@sentry/types": 8.16.0 + "@sentry/utils": 8.16.0 optionalDependencies: opentelemetry-instrumentation-fetch-node: 1.2.0 transitivePeerDependencies: - supports-color - '@sentry/opentelemetry@8.16.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.25.1)': - dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) - '@opentelemetry/sdk-trace-base': 1.25.1(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.25.1 - '@sentry/core': 8.16.0 - '@sentry/types': 8.16.0 - '@sentry/utils': 8.16.0 - - '@sentry/react-native@5.20.0(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)': - dependencies: - '@sentry/browser': 7.100.1 - '@sentry/cli': 2.30.0 - '@sentry/core': 7.100.1 - '@sentry/hub': 7.100.1 - '@sentry/integrations': 7.100.1 - '@sentry/react': 7.100.1(react@18.2.0) - '@sentry/types': 7.100.1 - '@sentry/utils': 7.100.1 + "@sentry/opentelemetry@8.16.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.25.1)": + dependencies: + "@opentelemetry/api": 1.9.0 + "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + "@opentelemetry/sdk-trace-base": 1.25.1(@opentelemetry/api@1.9.0) + "@opentelemetry/semantic-conventions": 1.25.1 + "@sentry/core": 8.16.0 + "@sentry/types": 8.16.0 + "@sentry/utils": 8.16.0 + + "@sentry/react-native@5.24.3(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + dependencies: + "@sentry/browser": 7.117.0 + "@sentry/cli": 2.31.2 + "@sentry/core": 7.117.0 + "@sentry/hub": 7.117.0 + "@sentry/integrations": 7.117.0 + "@sentry/react": 7.117.0(react@18.2.0) + "@sentry/types": 7.117.0 + "@sentry/utils": 7.117.0 promise: 8.3.0 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) tslib: 2.6.2 optionalDependencies: - expo: 50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) transitivePeerDependencies: - encoding - supports-color - '@sentry/react@7.100.1(react@18.2.0)': + "@sentry/react@7.117.0(react@18.2.0)": dependencies: - '@sentry/browser': 7.100.1 - '@sentry/core': 7.100.1 - '@sentry/types': 7.100.1 - '@sentry/utils': 7.100.1 + "@sentry/browser": 7.117.0 + "@sentry/core": 7.117.0 + "@sentry/types": 7.117.0 + "@sentry/utils": 7.117.0 hoist-non-react-statics: 3.3.2 react: 18.2.0 - '@sentry/replay@7.100.1': + "@sentry/replay@7.117.0": dependencies: - '@sentry-internal/tracing': 7.100.1 - '@sentry/core': 7.100.1 - '@sentry/types': 7.100.1 - '@sentry/utils': 7.100.1 + "@sentry-internal/tracing": 7.117.0 + "@sentry/core": 7.117.0 + "@sentry/types": 7.117.0 + "@sentry/utils": 7.117.0 - '@sentry/types@6.19.7': {} + "@sentry/types@6.19.7": {} - '@sentry/types@7.100.1': {} + "@sentry/types@7.117.0": {} - '@sentry/types@8.16.0': {} + "@sentry/types@8.16.0": {} - '@sentry/utils@6.19.7': + "@sentry/utils@6.19.7": dependencies: - '@sentry/types': 6.19.7 + "@sentry/types": 6.19.7 tslib: 2.6.2 - '@sentry/utils@7.100.1': + "@sentry/utils@7.117.0": dependencies: - '@sentry/types': 7.100.1 + "@sentry/types": 7.117.0 - '@sentry/utils@8.16.0': + "@sentry/utils@8.16.0": dependencies: - '@sentry/types': 8.16.0 + "@sentry/types": 8.16.0 - '@shopify/flash-list@1.6.4(@babel/runtime@7.24.1)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)': + "@shopify/flash-list@1.6.4(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.24.1 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) - recyclerlistview: 4.2.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) + recyclerlistview: 4.2.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) tslib: 2.6.2 - '@shopify/react-native-performance-navigation@3.0.0(@babel/runtime@7.24.1)(@react-navigation/core@6.4.16(react@18.2.0))(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(@react-navigation/stack@6.3.29(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-gesture-handler@2.16.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-screens@3.30.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(@shopify/react-native-performance@4.1.2(@babel/runtime@7.24.1)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)': + "@shopify/react-native-performance-navigation@3.0.0(bdlxoipflge4zkd3tdq4b64jgq)": dependencies: - '@babel/runtime': 7.24.1 - '@react-navigation/core': 6.4.16(react@18.2.0) - '@react-navigation/native': 6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@react-navigation/stack': 6.3.29(@react-navigation/native@6.1.17(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-gesture-handler@2.16.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-screens@3.30.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - '@shopify/react-native-performance': 4.1.2(@babel/runtime@7.24.1)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + "@babel/runtime": 7.24.1 + "@react-navigation/core": 6.4.16(react@18.2.0) + "@react-navigation/native": 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@react-navigation/stack": 6.3.29(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + "@shopify/react-native-performance": 4.1.2(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) lodash.isequal: 4.5.0 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) tslib: 2.6.2 - '@shopify/react-native-performance@4.1.2(@babel/runtime@7.24.1)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)': + "@shopify/react-native-performance@4.1.2(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.24.1 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) tslib: 2.6.2 - '@sideway/address@4.1.5': + "@sideway/address@4.1.5": dependencies: - '@hapi/hoek': 9.3.0 + "@hapi/hoek": 9.3.0 - '@sideway/formula@3.0.1': {} + "@sideway/formula@3.0.1": {} - '@sideway/pinpoint@2.0.0': {} + "@sideway/pinpoint@2.0.0": {} - '@sinclair/typebox@0.24.51': {} + "@sinclair/typebox@0.24.51": {} - '@sinclair/typebox@0.27.8': {} + "@sinclair/typebox@0.27.8": {} - '@sindresorhus/is@0.14.0': {} + "@sindresorhus/is@0.14.0": {} - '@sindresorhus/is@4.6.0': {} + "@sindresorhus/is@4.6.0": {} - '@sinonjs/commons@1.8.6': + "@sinonjs/commons@1.8.6": dependencies: type-detect: 4.0.8 - '@sinonjs/commons@3.0.1': + "@sinonjs/commons@3.0.1": dependencies: type-detect: 4.0.8 - '@sinonjs/fake-timers@10.3.0': + "@sinonjs/fake-timers@10.3.0": dependencies: - '@sinonjs/commons': 3.0.1 + "@sinonjs/commons": 3.0.1 - '@sinonjs/fake-timers@8.1.0': + "@sinonjs/fake-timers@8.1.0": dependencies: - '@sinonjs/commons': 1.8.6 + "@sinonjs/commons": 1.8.6 - '@sinonjs/fake-timers@9.1.2': + "@sinonjs/fake-timers@9.1.2": dependencies: - '@sinonjs/commons': 1.8.6 + "@sinonjs/commons": 1.8.6 - '@smithy/abort-controller@2.2.0': + "@smithy/abort-controller@2.2.0": dependencies: - '@smithy/types': 2.12.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/abort-controller@3.1.2': + "@smithy/abort-controller@3.1.2": dependencies: - '@smithy/types': 3.4.0 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/chunked-blob-reader-native@2.2.0': + "@smithy/chunked-blob-reader-native@2.2.0": dependencies: - '@smithy/util-base64': 2.3.0 + "@smithy/util-base64": 2.3.0 tslib: 2.6.2 - '@smithy/chunked-blob-reader-native@3.0.0': + "@smithy/chunked-blob-reader-native@3.0.0": dependencies: - '@smithy/util-base64': 3.0.0 + "@smithy/util-base64": 3.0.0 tslib: 2.6.2 - '@smithy/chunked-blob-reader@2.2.0': + "@smithy/chunked-blob-reader@2.2.0": dependencies: tslib: 2.6.2 - '@smithy/chunked-blob-reader@3.0.0': + "@smithy/chunked-blob-reader@3.0.0": dependencies: tslib: 2.6.2 - '@smithy/config-resolver@2.2.0': + "@smithy/config-resolver@2.2.0": dependencies: - '@smithy/node-config-provider': 2.3.0 - '@smithy/types': 2.12.0 - '@smithy/util-config-provider': 2.3.0 - '@smithy/util-middleware': 2.2.0 + "@smithy/node-config-provider": 2.3.0 + "@smithy/types": 2.12.0 + "@smithy/util-config-provider": 2.3.0 + "@smithy/util-middleware": 2.2.0 tslib: 2.6.2 - '@smithy/config-resolver@3.0.6': + "@smithy/config-resolver@3.0.6": dependencies: - '@smithy/node-config-provider': 3.1.5 - '@smithy/types': 3.4.0 - '@smithy/util-config-provider': 3.0.0 - '@smithy/util-middleware': 3.0.4 + "@smithy/node-config-provider": 3.1.5 + "@smithy/types": 3.4.0 + "@smithy/util-config-provider": 3.0.0 + "@smithy/util-middleware": 3.0.4 tslib: 2.6.2 - '@smithy/core@1.4.0': + "@smithy/core@1.4.0": dependencies: - '@smithy/middleware-endpoint': 2.5.0 - '@smithy/middleware-retry': 2.2.0 - '@smithy/middleware-serde': 2.3.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/smithy-client': 2.5.0 - '@smithy/types': 2.12.0 - '@smithy/util-middleware': 2.2.0 + "@smithy/middleware-endpoint": 2.5.0 + "@smithy/middleware-retry": 2.2.0 + "@smithy/middleware-serde": 2.3.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/smithy-client": 2.5.0 + "@smithy/types": 2.12.0 + "@smithy/util-middleware": 2.2.0 tslib: 2.6.2 - '@smithy/core@2.4.1': - dependencies: - '@smithy/middleware-endpoint': 3.1.1 - '@smithy/middleware-retry': 3.0.16 - '@smithy/middleware-serde': 3.0.4 - '@smithy/protocol-http': 4.1.1 - '@smithy/smithy-client': 3.3.0 - '@smithy/types': 3.4.0 - '@smithy/util-body-length-browser': 3.0.0 - '@smithy/util-middleware': 3.0.4 - '@smithy/util-utf8': 3.0.0 + "@smithy/core@2.4.1": + dependencies: + "@smithy/middleware-endpoint": 3.1.1 + "@smithy/middleware-retry": 3.0.16 + "@smithy/middleware-serde": 3.0.4 + "@smithy/protocol-http": 4.1.1 + "@smithy/smithy-client": 3.3.0 + "@smithy/types": 3.4.0 + "@smithy/util-body-length-browser": 3.0.0 + "@smithy/util-middleware": 3.0.4 + "@smithy/util-utf8": 3.0.0 tslib: 2.6.2 - '@smithy/credential-provider-imds@2.3.0': + "@smithy/credential-provider-imds@2.3.0": dependencies: - '@smithy/node-config-provider': 2.3.0 - '@smithy/property-provider': 2.2.0 - '@smithy/types': 2.12.0 - '@smithy/url-parser': 2.2.0 + "@smithy/node-config-provider": 2.3.0 + "@smithy/property-provider": 2.2.0 + "@smithy/types": 2.12.0 + "@smithy/url-parser": 2.2.0 tslib: 2.6.2 - '@smithy/credential-provider-imds@3.2.1': + "@smithy/credential-provider-imds@3.2.1": dependencies: - '@smithy/node-config-provider': 3.1.5 - '@smithy/property-provider': 3.1.4 - '@smithy/types': 3.4.0 - '@smithy/url-parser': 3.0.4 + "@smithy/node-config-provider": 3.1.5 + "@smithy/property-provider": 3.1.4 + "@smithy/types": 3.4.0 + "@smithy/url-parser": 3.0.4 tslib: 2.6.2 - '@smithy/eventstream-codec@2.2.0': + "@smithy/eventstream-codec@2.2.0": dependencies: - '@aws-crypto/crc32': 3.0.0 - '@smithy/types': 2.12.0 - '@smithy/util-hex-encoding': 2.2.0 + "@aws-crypto/crc32": 3.0.0 + "@smithy/types": 2.12.0 + "@smithy/util-hex-encoding": 2.2.0 tslib: 2.6.2 - '@smithy/eventstream-codec@3.1.3': + "@smithy/eventstream-codec@3.1.3": dependencies: - '@aws-crypto/crc32': 5.2.0 - '@smithy/types': 3.4.0 - '@smithy/util-hex-encoding': 3.0.0 + "@aws-crypto/crc32": 5.2.0 + "@smithy/types": 3.4.0 + "@smithy/util-hex-encoding": 3.0.0 tslib: 2.6.2 - '@smithy/eventstream-serde-browser@2.2.0': + "@smithy/eventstream-serde-browser@2.2.0": dependencies: - '@smithy/eventstream-serde-universal': 2.2.0 - '@smithy/types': 2.12.0 + "@smithy/eventstream-serde-universal": 2.2.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/eventstream-serde-browser@3.0.7': + "@smithy/eventstream-serde-browser@3.0.7": dependencies: - '@smithy/eventstream-serde-universal': 3.0.6 - '@smithy/types': 3.4.0 + "@smithy/eventstream-serde-universal": 3.0.6 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/eventstream-serde-config-resolver@2.2.0': + "@smithy/eventstream-serde-config-resolver@2.2.0": dependencies: - '@smithy/types': 2.12.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/eventstream-serde-config-resolver@3.0.4': + "@smithy/eventstream-serde-config-resolver@3.0.4": dependencies: - '@smithy/types': 3.4.0 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/eventstream-serde-node@2.2.0': + "@smithy/eventstream-serde-node@2.2.0": dependencies: - '@smithy/eventstream-serde-universal': 2.2.0 - '@smithy/types': 2.12.0 + "@smithy/eventstream-serde-universal": 2.2.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/eventstream-serde-node@3.0.6': + "@smithy/eventstream-serde-node@3.0.6": dependencies: - '@smithy/eventstream-serde-universal': 3.0.6 - '@smithy/types': 3.4.0 + "@smithy/eventstream-serde-universal": 3.0.6 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/eventstream-serde-universal@2.2.0': + "@smithy/eventstream-serde-universal@2.2.0": dependencies: - '@smithy/eventstream-codec': 2.2.0 - '@smithy/types': 2.12.0 + "@smithy/eventstream-codec": 2.2.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/eventstream-serde-universal@3.0.6': + "@smithy/eventstream-serde-universal@3.0.6": dependencies: - '@smithy/eventstream-codec': 3.1.3 - '@smithy/types': 3.4.0 + "@smithy/eventstream-codec": 3.1.3 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/fetch-http-handler@2.5.0': + "@smithy/fetch-http-handler@2.5.0": dependencies: - '@smithy/protocol-http': 3.3.0 - '@smithy/querystring-builder': 2.2.0 - '@smithy/types': 2.12.0 - '@smithy/util-base64': 2.3.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/querystring-builder": 2.2.0 + "@smithy/types": 2.12.0 + "@smithy/util-base64": 2.3.0 tslib: 2.6.2 - '@smithy/fetch-http-handler@3.2.5': + "@smithy/fetch-http-handler@3.2.5": dependencies: - '@smithy/protocol-http': 4.1.1 - '@smithy/querystring-builder': 3.0.4 - '@smithy/types': 3.4.0 - '@smithy/util-base64': 3.0.0 + "@smithy/protocol-http": 4.1.1 + "@smithy/querystring-builder": 3.0.4 + "@smithy/types": 3.4.0 + "@smithy/util-base64": 3.0.0 tslib: 2.6.2 - '@smithy/hash-blob-browser@2.2.0': + "@smithy/hash-blob-browser@2.2.0": dependencies: - '@smithy/chunked-blob-reader': 2.2.0 - '@smithy/chunked-blob-reader-native': 2.2.0 - '@smithy/types': 2.12.0 + "@smithy/chunked-blob-reader": 2.2.0 + "@smithy/chunked-blob-reader-native": 2.2.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/hash-blob-browser@3.1.3': + "@smithy/hash-blob-browser@3.1.3": dependencies: - '@smithy/chunked-blob-reader': 3.0.0 - '@smithy/chunked-blob-reader-native': 3.0.0 - '@smithy/types': 3.4.0 + "@smithy/chunked-blob-reader": 3.0.0 + "@smithy/chunked-blob-reader-native": 3.0.0 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/hash-node@2.2.0': + "@smithy/hash-node@2.2.0": dependencies: - '@smithy/types': 2.12.0 - '@smithy/util-buffer-from': 2.2.0 - '@smithy/util-utf8': 2.3.0 + "@smithy/types": 2.12.0 + "@smithy/util-buffer-from": 2.2.0 + "@smithy/util-utf8": 2.3.0 tslib: 2.6.2 - '@smithy/hash-node@3.0.4': + "@smithy/hash-node@3.0.4": dependencies: - '@smithy/types': 3.4.0 - '@smithy/util-buffer-from': 3.0.0 - '@smithy/util-utf8': 3.0.0 + "@smithy/types": 3.4.0 + "@smithy/util-buffer-from": 3.0.0 + "@smithy/util-utf8": 3.0.0 tslib: 2.6.2 - '@smithy/hash-stream-node@2.2.0': + "@smithy/hash-stream-node@2.2.0": dependencies: - '@smithy/types': 2.12.0 - '@smithy/util-utf8': 2.3.0 + "@smithy/types": 2.12.0 + "@smithy/util-utf8": 2.3.0 tslib: 2.6.2 - '@smithy/hash-stream-node@3.1.3': + "@smithy/hash-stream-node@3.1.3": dependencies: - '@smithy/types': 3.4.0 - '@smithy/util-utf8': 3.0.0 + "@smithy/types": 3.4.0 + "@smithy/util-utf8": 3.0.0 tslib: 2.6.2 - '@smithy/invalid-dependency@2.2.0': + "@smithy/invalid-dependency@2.2.0": dependencies: - '@smithy/types': 2.12.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/invalid-dependency@3.0.4': + "@smithy/invalid-dependency@3.0.4": dependencies: - '@smithy/types': 3.4.0 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/is-array-buffer@2.2.0': + "@smithy/is-array-buffer@2.2.0": dependencies: tslib: 2.6.2 - '@smithy/is-array-buffer@3.0.0': + "@smithy/is-array-buffer@3.0.0": dependencies: tslib: 2.6.2 - '@smithy/md5-js@2.2.0': + "@smithy/md5-js@2.2.0": dependencies: - '@smithy/types': 2.12.0 - '@smithy/util-utf8': 2.3.0 + "@smithy/types": 2.12.0 + "@smithy/util-utf8": 2.3.0 tslib: 2.6.2 - '@smithy/md5-js@3.0.4': + "@smithy/md5-js@3.0.4": dependencies: - '@smithy/types': 3.4.0 - '@smithy/util-utf8': 3.0.0 + "@smithy/types": 3.4.0 + "@smithy/util-utf8": 3.0.0 tslib: 2.6.2 - '@smithy/middleware-content-length@2.2.0': + "@smithy/middleware-content-length@2.2.0": dependencies: - '@smithy/protocol-http': 3.3.0 - '@smithy/types': 2.12.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/middleware-content-length@3.0.6': + "@smithy/middleware-content-length@3.0.6": dependencies: - '@smithy/protocol-http': 4.1.1 - '@smithy/types': 3.4.0 + "@smithy/protocol-http": 4.1.1 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/middleware-endpoint@2.5.0': + "@smithy/middleware-endpoint@2.5.0": dependencies: - '@smithy/middleware-serde': 2.3.0 - '@smithy/node-config-provider': 2.3.0 - '@smithy/shared-ini-file-loader': 2.4.0 - '@smithy/types': 2.12.0 - '@smithy/url-parser': 2.2.0 - '@smithy/util-middleware': 2.2.0 + "@smithy/middleware-serde": 2.3.0 + "@smithy/node-config-provider": 2.3.0 + "@smithy/shared-ini-file-loader": 2.4.0 + "@smithy/types": 2.12.0 + "@smithy/url-parser": 2.2.0 + "@smithy/util-middleware": 2.2.0 tslib: 2.6.2 - '@smithy/middleware-endpoint@3.1.1': + "@smithy/middleware-endpoint@3.1.1": dependencies: - '@smithy/middleware-serde': 3.0.4 - '@smithy/node-config-provider': 3.1.5 - '@smithy/shared-ini-file-loader': 3.1.5 - '@smithy/types': 3.4.0 - '@smithy/url-parser': 3.0.4 - '@smithy/util-middleware': 3.0.4 + "@smithy/middleware-serde": 3.0.4 + "@smithy/node-config-provider": 3.1.5 + "@smithy/shared-ini-file-loader": 3.1.5 + "@smithy/types": 3.4.0 + "@smithy/url-parser": 3.0.4 + "@smithy/util-middleware": 3.0.4 tslib: 2.6.2 - '@smithy/middleware-retry@2.2.0': + "@smithy/middleware-retry@2.2.0": dependencies: - '@smithy/node-config-provider': 2.3.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/service-error-classification': 2.1.5 - '@smithy/smithy-client': 2.5.0 - '@smithy/types': 2.12.0 - '@smithy/util-middleware': 2.2.0 - '@smithy/util-retry': 2.2.0 + "@smithy/node-config-provider": 2.3.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/service-error-classification": 2.1.5 + "@smithy/smithy-client": 2.5.0 + "@smithy/types": 2.12.0 + "@smithy/util-middleware": 2.2.0 + "@smithy/util-retry": 2.2.0 tslib: 2.6.2 uuid: 8.3.2 - '@smithy/middleware-retry@3.0.16': + "@smithy/middleware-retry@3.0.16": dependencies: - '@smithy/node-config-provider': 3.1.5 - '@smithy/protocol-http': 4.1.1 - '@smithy/service-error-classification': 3.0.4 - '@smithy/smithy-client': 3.3.0 - '@smithy/types': 3.4.0 - '@smithy/util-middleware': 3.0.4 - '@smithy/util-retry': 3.0.4 + "@smithy/node-config-provider": 3.1.5 + "@smithy/protocol-http": 4.1.1 + "@smithy/service-error-classification": 3.0.4 + "@smithy/smithy-client": 3.3.0 + "@smithy/types": 3.4.0 + "@smithy/util-middleware": 3.0.4 + "@smithy/util-retry": 3.0.4 tslib: 2.6.2 uuid: 9.0.1 - '@smithy/middleware-serde@2.3.0': + "@smithy/middleware-serde@2.3.0": dependencies: - '@smithy/types': 2.12.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/middleware-serde@3.0.4': + "@smithy/middleware-serde@3.0.4": dependencies: - '@smithy/types': 3.4.0 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/middleware-stack@2.2.0': + "@smithy/middleware-stack@2.2.0": dependencies: - '@smithy/types': 2.12.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/middleware-stack@3.0.4': + "@smithy/middleware-stack@3.0.4": dependencies: - '@smithy/types': 3.4.0 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/node-config-provider@2.3.0': + "@smithy/node-config-provider@2.3.0": dependencies: - '@smithy/property-provider': 2.2.0 - '@smithy/shared-ini-file-loader': 2.4.0 - '@smithy/types': 2.12.0 + "@smithy/property-provider": 2.2.0 + "@smithy/shared-ini-file-loader": 2.4.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/node-config-provider@3.1.5': + "@smithy/node-config-provider@3.1.5": dependencies: - '@smithy/property-provider': 3.1.4 - '@smithy/shared-ini-file-loader': 3.1.5 - '@smithy/types': 3.4.0 + "@smithy/property-provider": 3.1.4 + "@smithy/shared-ini-file-loader": 3.1.5 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/node-http-handler@2.5.0': + "@smithy/node-http-handler@2.5.0": dependencies: - '@smithy/abort-controller': 2.2.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/querystring-builder': 2.2.0 - '@smithy/types': 2.12.0 + "@smithy/abort-controller": 2.2.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/querystring-builder": 2.2.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/node-http-handler@3.2.0': + "@smithy/node-http-handler@3.2.0": dependencies: - '@smithy/abort-controller': 3.1.2 - '@smithy/protocol-http': 4.1.1 - '@smithy/querystring-builder': 3.0.4 - '@smithy/types': 3.4.0 + "@smithy/abort-controller": 3.1.2 + "@smithy/protocol-http": 4.1.1 + "@smithy/querystring-builder": 3.0.4 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/property-provider@2.2.0': + "@smithy/property-provider@2.2.0": dependencies: - '@smithy/types': 2.12.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/property-provider@3.1.4': + "@smithy/property-provider@3.1.4": dependencies: - '@smithy/types': 3.4.0 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/protocol-http@3.3.0': + "@smithy/protocol-http@3.3.0": dependencies: - '@smithy/types': 2.12.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/protocol-http@4.1.1': + "@smithy/protocol-http@4.1.1": dependencies: - '@smithy/types': 3.4.0 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/querystring-builder@2.2.0': + "@smithy/querystring-builder@2.2.0": dependencies: - '@smithy/types': 2.12.0 - '@smithy/util-uri-escape': 2.2.0 + "@smithy/types": 2.12.0 + "@smithy/util-uri-escape": 2.2.0 tslib: 2.6.2 - '@smithy/querystring-builder@3.0.4': + "@smithy/querystring-builder@3.0.4": dependencies: - '@smithy/types': 3.4.0 - '@smithy/util-uri-escape': 3.0.0 + "@smithy/types": 3.4.0 + "@smithy/util-uri-escape": 3.0.0 tslib: 2.6.2 - '@smithy/querystring-parser@2.2.0': + "@smithy/querystring-parser@2.2.0": dependencies: - '@smithy/types': 2.12.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/querystring-parser@3.0.4': + "@smithy/querystring-parser@3.0.4": dependencies: - '@smithy/types': 3.4.0 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/service-error-classification@2.1.5': + "@smithy/service-error-classification@2.1.5": dependencies: - '@smithy/types': 2.12.0 + "@smithy/types": 2.12.0 - '@smithy/service-error-classification@3.0.4': + "@smithy/service-error-classification@3.0.4": dependencies: - '@smithy/types': 3.4.0 + "@smithy/types": 3.4.0 - '@smithy/shared-ini-file-loader@2.4.0': + "@smithy/shared-ini-file-loader@2.4.0": dependencies: - '@smithy/types': 2.12.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/shared-ini-file-loader@3.1.5': + "@smithy/shared-ini-file-loader@3.1.5": dependencies: - '@smithy/types': 3.4.0 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/signature-v4@2.2.0': + "@smithy/signature-v4@2.2.0": dependencies: - '@smithy/eventstream-codec': 2.2.0 - '@smithy/is-array-buffer': 2.2.0 - '@smithy/types': 2.12.0 - '@smithy/util-hex-encoding': 2.2.0 - '@smithy/util-middleware': 2.2.0 - '@smithy/util-uri-escape': 2.2.0 - '@smithy/util-utf8': 2.3.0 + "@smithy/eventstream-codec": 2.2.0 + "@smithy/is-array-buffer": 2.2.0 + "@smithy/types": 2.12.0 + "@smithy/util-hex-encoding": 2.2.0 + "@smithy/util-middleware": 2.2.0 + "@smithy/util-uri-escape": 2.2.0 + "@smithy/util-utf8": 2.3.0 tslib: 2.6.2 - '@smithy/signature-v4@4.1.1': + "@smithy/signature-v4@4.1.1": dependencies: - '@smithy/is-array-buffer': 3.0.0 - '@smithy/protocol-http': 4.1.1 - '@smithy/types': 3.4.0 - '@smithy/util-hex-encoding': 3.0.0 - '@smithy/util-middleware': 3.0.4 - '@smithy/util-uri-escape': 3.0.0 - '@smithy/util-utf8': 3.0.0 + "@smithy/is-array-buffer": 3.0.0 + "@smithy/protocol-http": 4.1.1 + "@smithy/types": 3.4.0 + "@smithy/util-hex-encoding": 3.0.0 + "@smithy/util-middleware": 3.0.4 + "@smithy/util-uri-escape": 3.0.0 + "@smithy/util-utf8": 3.0.0 tslib: 2.6.2 - '@smithy/smithy-client@2.5.0': + "@smithy/smithy-client@2.5.0": dependencies: - '@smithy/middleware-endpoint': 2.5.0 - '@smithy/middleware-stack': 2.2.0 - '@smithy/protocol-http': 3.3.0 - '@smithy/types': 2.12.0 - '@smithy/util-stream': 2.2.0 + "@smithy/middleware-endpoint": 2.5.0 + "@smithy/middleware-stack": 2.2.0 + "@smithy/protocol-http": 3.3.0 + "@smithy/types": 2.12.0 + "@smithy/util-stream": 2.2.0 tslib: 2.6.2 - '@smithy/smithy-client@3.3.0': + "@smithy/smithy-client@3.3.0": dependencies: - '@smithy/middleware-endpoint': 3.1.1 - '@smithy/middleware-stack': 3.0.4 - '@smithy/protocol-http': 4.1.1 - '@smithy/types': 3.4.0 - '@smithy/util-stream': 3.1.4 + "@smithy/middleware-endpoint": 3.1.1 + "@smithy/middleware-stack": 3.0.4 + "@smithy/protocol-http": 4.1.1 + "@smithy/types": 3.4.0 + "@smithy/util-stream": 3.1.4 tslib: 2.6.2 - '@smithy/types@2.12.0': + "@smithy/types@2.12.0": dependencies: tslib: 2.6.2 - '@smithy/types@3.4.0': + "@smithy/types@3.4.0": dependencies: tslib: 2.6.2 - '@smithy/url-parser@2.2.0': + "@smithy/url-parser@2.2.0": dependencies: - '@smithy/querystring-parser': 2.2.0 - '@smithy/types': 2.12.0 + "@smithy/querystring-parser": 2.2.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/url-parser@3.0.4': + "@smithy/url-parser@3.0.4": dependencies: - '@smithy/querystring-parser': 3.0.4 - '@smithy/types': 3.4.0 + "@smithy/querystring-parser": 3.0.4 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/util-base64@2.3.0': + "@smithy/util-base64@2.3.0": dependencies: - '@smithy/util-buffer-from': 2.2.0 - '@smithy/util-utf8': 2.3.0 + "@smithy/util-buffer-from": 2.2.0 + "@smithy/util-utf8": 2.3.0 tslib: 2.6.2 - '@smithy/util-base64@3.0.0': + "@smithy/util-base64@3.0.0": dependencies: - '@smithy/util-buffer-from': 3.0.0 - '@smithy/util-utf8': 3.0.0 + "@smithy/util-buffer-from": 3.0.0 + "@smithy/util-utf8": 3.0.0 tslib: 2.6.2 - '@smithy/util-body-length-browser@2.2.0': + "@smithy/util-body-length-browser@2.2.0": dependencies: tslib: 2.6.2 - '@smithy/util-body-length-browser@3.0.0': + "@smithy/util-body-length-browser@3.0.0": dependencies: tslib: 2.6.2 - '@smithy/util-body-length-node@2.3.0': + "@smithy/util-body-length-node@2.3.0": dependencies: tslib: 2.6.2 - '@smithy/util-body-length-node@3.0.0': + "@smithy/util-body-length-node@3.0.0": dependencies: tslib: 2.6.2 - '@smithy/util-buffer-from@2.2.0': + "@smithy/util-buffer-from@2.2.0": dependencies: - '@smithy/is-array-buffer': 2.2.0 + "@smithy/is-array-buffer": 2.2.0 tslib: 2.6.2 - '@smithy/util-buffer-from@3.0.0': + "@smithy/util-buffer-from@3.0.0": dependencies: - '@smithy/is-array-buffer': 3.0.0 + "@smithy/is-array-buffer": 3.0.0 tslib: 2.6.2 - '@smithy/util-config-provider@2.3.0': + "@smithy/util-config-provider@2.3.0": dependencies: tslib: 2.6.2 - '@smithy/util-config-provider@3.0.0': + "@smithy/util-config-provider@3.0.0": dependencies: tslib: 2.6.2 - '@smithy/util-defaults-mode-browser@2.2.0': + "@smithy/util-defaults-mode-browser@2.2.0": dependencies: - '@smithy/property-provider': 2.2.0 - '@smithy/smithy-client': 2.5.0 - '@smithy/types': 2.12.0 + "@smithy/property-provider": 2.2.0 + "@smithy/smithy-client": 2.5.0 + "@smithy/types": 2.12.0 bowser: 2.11.0 tslib: 2.6.2 - '@smithy/util-defaults-mode-browser@3.0.16': + "@smithy/util-defaults-mode-browser@3.0.16": dependencies: - '@smithy/property-provider': 3.1.4 - '@smithy/smithy-client': 3.3.0 - '@smithy/types': 3.4.0 + "@smithy/property-provider": 3.1.4 + "@smithy/smithy-client": 3.3.0 + "@smithy/types": 3.4.0 bowser: 2.11.0 tslib: 2.6.2 - '@smithy/util-defaults-mode-node@2.3.0': + "@smithy/util-defaults-mode-node@2.3.0": dependencies: - '@smithy/config-resolver': 2.2.0 - '@smithy/credential-provider-imds': 2.3.0 - '@smithy/node-config-provider': 2.3.0 - '@smithy/property-provider': 2.2.0 - '@smithy/smithy-client': 2.5.0 - '@smithy/types': 2.12.0 + "@smithy/config-resolver": 2.2.0 + "@smithy/credential-provider-imds": 2.3.0 + "@smithy/node-config-provider": 2.3.0 + "@smithy/property-provider": 2.2.0 + "@smithy/smithy-client": 2.5.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/util-defaults-mode-node@3.0.16': + "@smithy/util-defaults-mode-node@3.0.16": dependencies: - '@smithy/config-resolver': 3.0.6 - '@smithy/credential-provider-imds': 3.2.1 - '@smithy/node-config-provider': 3.1.5 - '@smithy/property-provider': 3.1.4 - '@smithy/smithy-client': 3.3.0 - '@smithy/types': 3.4.0 + "@smithy/config-resolver": 3.0.6 + "@smithy/credential-provider-imds": 3.2.1 + "@smithy/node-config-provider": 3.1.5 + "@smithy/property-provider": 3.1.4 + "@smithy/smithy-client": 3.3.0 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/util-endpoints@1.2.0': + "@smithy/util-endpoints@1.2.0": dependencies: - '@smithy/node-config-provider': 2.3.0 - '@smithy/types': 2.12.0 + "@smithy/node-config-provider": 2.3.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/util-endpoints@2.1.0': + "@smithy/util-endpoints@2.1.0": dependencies: - '@smithy/node-config-provider': 3.1.5 - '@smithy/types': 3.4.0 + "@smithy/node-config-provider": 3.1.5 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/util-hex-encoding@2.2.0': + "@smithy/util-hex-encoding@2.2.0": dependencies: tslib: 2.6.2 - '@smithy/util-hex-encoding@3.0.0': + "@smithy/util-hex-encoding@3.0.0": dependencies: tslib: 2.6.2 - '@smithy/util-middleware@2.2.0': + "@smithy/util-middleware@2.2.0": dependencies: - '@smithy/types': 2.12.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/util-middleware@3.0.4': + "@smithy/util-middleware@3.0.4": dependencies: - '@smithy/types': 3.4.0 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/util-retry@2.2.0': + "@smithy/util-retry@2.2.0": dependencies: - '@smithy/service-error-classification': 2.1.5 - '@smithy/types': 2.12.0 + "@smithy/service-error-classification": 2.1.5 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/util-retry@3.0.4': + "@smithy/util-retry@3.0.4": dependencies: - '@smithy/service-error-classification': 3.0.4 - '@smithy/types': 3.4.0 + "@smithy/service-error-classification": 3.0.4 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@smithy/util-stream@2.2.0': + "@smithy/util-stream@2.2.0": dependencies: - '@smithy/fetch-http-handler': 2.5.0 - '@smithy/node-http-handler': 2.5.0 - '@smithy/types': 2.12.0 - '@smithy/util-base64': 2.3.0 - '@smithy/util-buffer-from': 2.2.0 - '@smithy/util-hex-encoding': 2.2.0 - '@smithy/util-utf8': 2.3.0 + "@smithy/fetch-http-handler": 2.5.0 + "@smithy/node-http-handler": 2.5.0 + "@smithy/types": 2.12.0 + "@smithy/util-base64": 2.3.0 + "@smithy/util-buffer-from": 2.2.0 + "@smithy/util-hex-encoding": 2.2.0 + "@smithy/util-utf8": 2.3.0 tslib: 2.6.2 - '@smithy/util-stream@3.1.4': + "@smithy/util-stream@3.1.4": dependencies: - '@smithy/fetch-http-handler': 3.2.5 - '@smithy/node-http-handler': 3.2.0 - '@smithy/types': 3.4.0 - '@smithy/util-base64': 3.0.0 - '@smithy/util-buffer-from': 3.0.0 - '@smithy/util-hex-encoding': 3.0.0 - '@smithy/util-utf8': 3.0.0 + "@smithy/fetch-http-handler": 3.2.5 + "@smithy/node-http-handler": 3.2.0 + "@smithy/types": 3.4.0 + "@smithy/util-base64": 3.0.0 + "@smithy/util-buffer-from": 3.0.0 + "@smithy/util-hex-encoding": 3.0.0 + "@smithy/util-utf8": 3.0.0 tslib: 2.6.2 - '@smithy/util-uri-escape@2.2.0': + "@smithy/util-uri-escape@2.2.0": dependencies: tslib: 2.6.2 - '@smithy/util-uri-escape@3.0.0': + "@smithy/util-uri-escape@3.0.0": dependencies: tslib: 2.6.2 - '@smithy/util-utf8@2.3.0': + "@smithy/util-utf8@2.3.0": dependencies: - '@smithy/util-buffer-from': 2.2.0 + "@smithy/util-buffer-from": 2.2.0 tslib: 2.6.2 - '@smithy/util-utf8@3.0.0': + "@smithy/util-utf8@3.0.0": dependencies: - '@smithy/util-buffer-from': 3.0.0 + "@smithy/util-buffer-from": 3.0.0 tslib: 2.6.2 - '@smithy/util-waiter@2.2.0': + "@smithy/util-waiter@2.2.0": dependencies: - '@smithy/abort-controller': 2.2.0 - '@smithy/types': 2.12.0 + "@smithy/abort-controller": 2.2.0 + "@smithy/types": 2.12.0 tslib: 2.6.2 - '@smithy/util-waiter@3.1.3': + "@smithy/util-waiter@3.1.3": dependencies: - '@smithy/abort-controller': 3.1.2 - '@smithy/types': 3.4.0 + "@smithy/abort-controller": 3.1.2 + "@smithy/types": 3.4.0 tslib: 2.6.2 - '@soda/friendly-errors-webpack-plugin@1.8.1(webpack@5.94.0)': + "@soda/friendly-errors-webpack-plugin@1.8.1(webpack@5.94.0)": dependencies: chalk: 3.0.0 error-stack-parser: 2.1.4 @@ -40697,12 +57119,12 @@ snapshots: strip-ansi: 6.0.1 webpack: 5.94.0 - '@soda/get-current-script@1.0.2': {} + "@soda/get-current-script@1.0.2": {} - '@solana/buffer-layout-utils@0.2.0': + "@solana/buffer-layout-utils@0.2.0": dependencies: - '@solana/buffer-layout': 4.0.1 - '@solana/web3.js': 1.77.3 + "@solana/buffer-layout": 4.0.1 + "@solana/web3.js": 1.77.3 bigint-buffer: 1.1.5 bignumber.js: 9.1.2 transitivePeerDependencies: @@ -40710,27 +57132,27 @@ snapshots: - encoding - utf-8-validate - '@solana/buffer-layout@4.0.1': + "@solana/buffer-layout@4.0.1": dependencies: buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) - '@solana/spl-token@0.3.8(@solana/web3.js@1.77.3)': + "@solana/spl-token@0.3.8(@solana/web3.js@1.77.3)": dependencies: - '@solana/buffer-layout': 4.0.1 - '@solana/buffer-layout-utils': 0.2.0 - '@solana/web3.js': 1.77.3 + "@solana/buffer-layout": 4.0.1 + "@solana/buffer-layout-utils": 0.2.0 + "@solana/web3.js": 1.77.3 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) transitivePeerDependencies: - bufferutil - encoding - utf-8-validate - '@solana/web3.js@1.77.3': + "@solana/web3.js@1.77.3": dependencies: - '@babel/runtime': 7.24.1 - '@noble/curves': 1.4.0 - '@noble/hashes': 1.4.0 - '@solana/buffer-layout': 4.0.1 + "@babel/runtime": 7.24.1 + "@noble/curves": 1.4.0 + "@noble/hashes": 1.4.0 + "@solana/buffer-layout": 4.0.1 agentkeepalive: 4.5.0 bigint-buffer: 1.1.5 bn.js: 5.2.1 @@ -40747,72 +57169,72 @@ snapshots: - encoding - utf-8-validate - '@stablelib/binary@1.0.1': + "@stablelib/binary@1.0.1": dependencies: - '@stablelib/int': 1.0.1 + "@stablelib/int": 1.0.1 - '@stablelib/blake2b@1.0.1': + "@stablelib/blake2b@1.0.1": dependencies: - '@stablelib/binary': 1.0.1 - '@stablelib/hash': 1.0.1 - '@stablelib/wipe': 1.0.1 + "@stablelib/binary": 1.0.1 + "@stablelib/hash": 1.0.1 + "@stablelib/wipe": 1.0.1 - '@stablelib/ed25519@1.0.3': + "@stablelib/ed25519@1.0.3": dependencies: - '@stablelib/random': 1.0.2 - '@stablelib/sha512': 1.0.1 - '@stablelib/wipe': 1.0.1 + "@stablelib/random": 1.0.2 + "@stablelib/sha512": 1.0.1 + "@stablelib/wipe": 1.0.1 - '@stablelib/hash@1.0.1': {} + "@stablelib/hash@1.0.1": {} - '@stablelib/int@1.0.1': {} + "@stablelib/int@1.0.1": {} - '@stablelib/random@1.0.2': + "@stablelib/random@1.0.2": dependencies: - '@stablelib/binary': 1.0.1 - '@stablelib/wipe': 1.0.1 + "@stablelib/binary": 1.0.1 + "@stablelib/wipe": 1.0.1 - '@stablelib/sha512@1.0.1': + "@stablelib/sha512@1.0.1": dependencies: - '@stablelib/binary': 1.0.1 - '@stablelib/hash': 1.0.1 - '@stablelib/wipe': 1.0.1 + "@stablelib/binary": 1.0.1 + "@stablelib/hash": 1.0.1 + "@stablelib/wipe": 1.0.1 - '@stablelib/wipe@1.0.1': {} + "@stablelib/wipe@1.0.1": {} - '@stacks/common@4.3.5': + "@stacks/common@4.3.5": dependencies: - '@types/bn.js': 5.1.5 - '@types/node': 18.19.26 + "@types/bn.js": 5.1.5 + "@types/node": 18.19.26 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) - '@stacks/common@6.13.0': + "@stacks/common@6.13.0": dependencies: - '@types/bn.js': 5.1.5 - '@types/node': 18.19.26 + "@types/bn.js": 5.1.5 + "@types/node": 18.19.26 - '@stacks/network@4.3.5': + "@stacks/network@4.3.5": dependencies: - '@stacks/common': 4.3.5 + "@stacks/common": 4.3.5 cross-fetch: 3.1.8 transitivePeerDependencies: - encoding - '@stacks/network@6.10.0': + "@stacks/network@6.10.0": dependencies: - '@stacks/common': 6.13.0 + "@stacks/common": 6.13.0 cross-fetch: 3.1.8 transitivePeerDependencies: - encoding - '@stacks/transactions@4.3.8': + "@stacks/transactions@4.3.8": dependencies: - '@noble/hashes': 1.4.0 - '@noble/secp256k1': 1.7.1 - '@stacks/common': 4.3.5 - '@stacks/network': 4.3.5 - '@types/node': 18.19.26 - '@types/sha.js': 2.4.4 + "@noble/hashes": 1.4.0 + "@noble/secp256k1": 1.7.1 + "@stacks/common": 4.3.5 + "@stacks/network": 4.3.5 + "@types/node": 18.19.26 + "@types/sha.js": 2.4.4 c32check: 1.1.3 lodash.clonedeep: 4.5.0 ripemd160-min: 0.0.6 @@ -40821,640 +57243,640 @@ snapshots: transitivePeerDependencies: - encoding - '@stacks/transactions@6.11.0': + "@stacks/transactions@6.11.0": dependencies: - '@noble/hashes': 1.1.5 - '@noble/secp256k1': 1.7.1 - '@stacks/common': 6.13.0 - '@stacks/network': 6.10.0 + "@noble/hashes": 1.1.5 + "@noble/secp256k1": 1.7.1 + "@stacks/common": 6.13.0 + "@stacks/network": 6.10.0 c32check: 2.0.0 lodash.clonedeep: 4.5.0 transitivePeerDependencies: - encoding - '@stdlib/array-float32@0.0.6': + "@stdlib/array-float32@0.0.6": dependencies: - '@stdlib/assert-has-float32array-support': 0.0.8 + "@stdlib/assert-has-float32array-support": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/array-float64@0.0.6': + "@stdlib/array-float64@0.0.6": dependencies: - '@stdlib/assert-has-float64array-support': 0.0.8 + "@stdlib/assert-has-float64array-support": 0.0.8 - '@stdlib/array-uint16@0.0.6': + "@stdlib/array-uint16@0.0.6": dependencies: - '@stdlib/assert-has-uint16array-support': 0.0.8 + "@stdlib/assert-has-uint16array-support": 0.0.8 - '@stdlib/array-uint32@0.0.6': + "@stdlib/array-uint32@0.0.6": dependencies: - '@stdlib/assert-has-uint32array-support': 0.0.8 + "@stdlib/assert-has-uint32array-support": 0.0.8 - '@stdlib/array-uint8@0.0.7': + "@stdlib/array-uint8@0.0.7": dependencies: - '@stdlib/assert-has-uint8array-support': 0.0.8 + "@stdlib/assert-has-uint8array-support": 0.0.8 - '@stdlib/assert-has-float32array-support@0.0.8': + "@stdlib/assert-has-float32array-support@0.0.8": dependencies: - '@stdlib/assert-is-float32array': 0.0.8 - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/constants-float64-pinf': 0.0.8 - '@stdlib/fs-read-file': 0.0.8 + "@stdlib/assert-is-float32array": 0.0.8 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/constants-float64-pinf": 0.0.8 + "@stdlib/fs-read-file": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/assert-has-float64array-support@0.0.8': + "@stdlib/assert-has-float64array-support@0.0.8": dependencies: - '@stdlib/assert-is-float64array': 0.0.8 - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/fs-read-file': 0.0.8 + "@stdlib/assert-is-float64array": 0.0.8 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/fs-read-file": 0.0.8 - '@stdlib/assert-has-node-buffer-support@0.0.8': + "@stdlib/assert-has-node-buffer-support@0.0.8": dependencies: - '@stdlib/assert-is-buffer': 0.0.8 - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/fs-read-file': 0.0.8 + "@stdlib/assert-is-buffer": 0.0.8 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/fs-read-file": 0.0.8 - '@stdlib/assert-has-own-property@0.0.7': {} + "@stdlib/assert-has-own-property@0.0.7": {} - '@stdlib/assert-has-symbol-support@0.0.8': + "@stdlib/assert-has-symbol-support@0.0.8": dependencies: - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/fs-read-file': 0.0.8 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/fs-read-file": 0.0.8 - '@stdlib/assert-has-tostringtag-support@0.0.9': + "@stdlib/assert-has-tostringtag-support@0.0.9": dependencies: - '@stdlib/assert-has-symbol-support': 0.0.8 - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/fs-read-file': 0.0.8 + "@stdlib/assert-has-symbol-support": 0.0.8 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/fs-read-file": 0.0.8 - '@stdlib/assert-has-uint16array-support@0.0.8': + "@stdlib/assert-has-uint16array-support@0.0.8": dependencies: - '@stdlib/assert-is-uint16array': 0.0.8 - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/constants-uint16-max': 0.0.7 - '@stdlib/fs-read-file': 0.0.8 + "@stdlib/assert-is-uint16array": 0.0.8 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/constants-uint16-max": 0.0.7 + "@stdlib/fs-read-file": 0.0.8 - '@stdlib/assert-has-uint32array-support@0.0.8': + "@stdlib/assert-has-uint32array-support@0.0.8": dependencies: - '@stdlib/assert-is-uint32array': 0.0.8 - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/constants-uint32-max': 0.0.7 - '@stdlib/fs-read-file': 0.0.8 + "@stdlib/assert-is-uint32array": 0.0.8 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/constants-uint32-max": 0.0.7 + "@stdlib/fs-read-file": 0.0.8 - '@stdlib/assert-has-uint8array-support@0.0.8': + "@stdlib/assert-has-uint8array-support@0.0.8": dependencies: - '@stdlib/assert-is-uint8array': 0.0.8 - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/constants-uint8-max': 0.0.7 - '@stdlib/fs-read-file': 0.0.8 + "@stdlib/assert-is-uint8array": 0.0.8 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/constants-uint8-max": 0.0.7 + "@stdlib/fs-read-file": 0.0.8 - '@stdlib/assert-is-array@0.0.7': + "@stdlib/assert-is-array@0.0.7": dependencies: - '@stdlib/utils-native-class': 0.0.8 + "@stdlib/utils-native-class": 0.0.8 - '@stdlib/assert-is-big-endian@0.0.7': + "@stdlib/assert-is-big-endian@0.0.7": dependencies: - '@stdlib/array-uint16': 0.0.6 - '@stdlib/array-uint8': 0.0.7 - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/fs-read-file': 0.0.8 + "@stdlib/array-uint16": 0.0.6 + "@stdlib/array-uint8": 0.0.7 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/fs-read-file": 0.0.8 - '@stdlib/assert-is-boolean@0.0.8': + "@stdlib/assert-is-boolean@0.0.8": dependencies: - '@stdlib/assert-has-tostringtag-support': 0.0.9 - '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 - '@stdlib/utils-native-class': 0.0.8 + "@stdlib/assert-has-tostringtag-support": 0.0.9 + "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 + "@stdlib/utils-native-class": 0.0.8 - '@stdlib/assert-is-buffer@0.0.8': + "@stdlib/assert-is-buffer@0.0.8": dependencies: - '@stdlib/assert-is-object-like': 0.0.8 + "@stdlib/assert-is-object-like": 0.0.8 - '@stdlib/assert-is-float32array@0.0.8': + "@stdlib/assert-is-float32array@0.0.8": dependencies: - '@stdlib/utils-native-class': 0.0.8 + "@stdlib/utils-native-class": 0.0.8 - '@stdlib/assert-is-float64array@0.0.8': + "@stdlib/assert-is-float64array@0.0.8": dependencies: - '@stdlib/utils-native-class': 0.0.8 + "@stdlib/utils-native-class": 0.0.8 - '@stdlib/assert-is-function@0.0.8': + "@stdlib/assert-is-function@0.0.8": dependencies: - '@stdlib/utils-type-of': 0.0.8 + "@stdlib/utils-type-of": 0.0.8 - '@stdlib/assert-is-little-endian@0.0.7': + "@stdlib/assert-is-little-endian@0.0.7": dependencies: - '@stdlib/array-uint16': 0.0.6 - '@stdlib/array-uint8': 0.0.7 - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/fs-read-file': 0.0.8 + "@stdlib/array-uint16": 0.0.6 + "@stdlib/array-uint8": 0.0.7 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/fs-read-file": 0.0.8 - '@stdlib/assert-is-number@0.0.7': + "@stdlib/assert-is-number@0.0.7": dependencies: - '@stdlib/assert-has-tostringtag-support': 0.0.9 - '@stdlib/number-ctor': 0.0.7 - '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 - '@stdlib/utils-native-class': 0.0.8 + "@stdlib/assert-has-tostringtag-support": 0.0.9 + "@stdlib/number-ctor": 0.0.7 + "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 + "@stdlib/utils-native-class": 0.0.8 - '@stdlib/assert-is-object-like@0.0.8': + "@stdlib/assert-is-object-like@0.0.8": dependencies: - '@stdlib/assert-tools-array-function': 0.0.7 - '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 + "@stdlib/assert-tools-array-function": 0.0.7 + "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 - '@stdlib/assert-is-object@0.0.8': + "@stdlib/assert-is-object@0.0.8": dependencies: - '@stdlib/assert-is-array': 0.0.7 + "@stdlib/assert-is-array": 0.0.7 - '@stdlib/assert-is-plain-object@0.0.7': + "@stdlib/assert-is-plain-object@0.0.7": dependencies: - '@stdlib/assert-has-own-property': 0.0.7 - '@stdlib/assert-is-function': 0.0.8 - '@stdlib/assert-is-object': 0.0.8 - '@stdlib/utils-get-prototype-of': 0.0.7 - '@stdlib/utils-native-class': 0.0.8 + "@stdlib/assert-has-own-property": 0.0.7 + "@stdlib/assert-is-function": 0.0.8 + "@stdlib/assert-is-object": 0.0.8 + "@stdlib/utils-get-prototype-of": 0.0.7 + "@stdlib/utils-native-class": 0.0.8 - '@stdlib/assert-is-regexp-string@0.0.9': + "@stdlib/assert-is-regexp-string@0.0.9": dependencies: - '@stdlib/assert-is-string': 0.0.8 - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/fs-read-file': 0.0.8 - '@stdlib/process-read-stdin': 0.0.7 - '@stdlib/regexp-eol': 0.0.7 - '@stdlib/regexp-regexp': 0.0.8 - '@stdlib/streams-node-stdin': 0.0.7 + "@stdlib/assert-is-string": 0.0.8 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/fs-read-file": 0.0.8 + "@stdlib/process-read-stdin": 0.0.7 + "@stdlib/regexp-eol": 0.0.7 + "@stdlib/regexp-regexp": 0.0.8 + "@stdlib/streams-node-stdin": 0.0.7 - '@stdlib/assert-is-regexp@0.0.7': + "@stdlib/assert-is-regexp@0.0.7": dependencies: - '@stdlib/assert-has-tostringtag-support': 0.0.9 - '@stdlib/utils-native-class': 0.0.8 + "@stdlib/assert-has-tostringtag-support": 0.0.9 + "@stdlib/utils-native-class": 0.0.8 - '@stdlib/assert-is-string@0.0.8': + "@stdlib/assert-is-string@0.0.8": dependencies: - '@stdlib/assert-has-tostringtag-support': 0.0.9 - '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 - '@stdlib/utils-native-class': 0.0.8 + "@stdlib/assert-has-tostringtag-support": 0.0.9 + "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 + "@stdlib/utils-native-class": 0.0.8 - '@stdlib/assert-is-uint16array@0.0.8': + "@stdlib/assert-is-uint16array@0.0.8": dependencies: - '@stdlib/utils-native-class': 0.0.8 + "@stdlib/utils-native-class": 0.0.8 - '@stdlib/assert-is-uint32array@0.0.8': + "@stdlib/assert-is-uint32array@0.0.8": dependencies: - '@stdlib/utils-native-class': 0.0.8 + "@stdlib/utils-native-class": 0.0.8 - '@stdlib/assert-is-uint8array@0.0.8': + "@stdlib/assert-is-uint8array@0.0.8": dependencies: - '@stdlib/utils-native-class': 0.0.8 + "@stdlib/utils-native-class": 0.0.8 - '@stdlib/assert-tools-array-function@0.0.7': + "@stdlib/assert-tools-array-function@0.0.7": dependencies: - '@stdlib/assert-is-array': 0.0.7 + "@stdlib/assert-is-array": 0.0.7 - '@stdlib/buffer-ctor@0.0.7': + "@stdlib/buffer-ctor@0.0.7": dependencies: - '@stdlib/assert-has-node-buffer-support': 0.0.8 + "@stdlib/assert-has-node-buffer-support": 0.0.8 - '@stdlib/buffer-from-string@0.0.8': + "@stdlib/buffer-from-string@0.0.8": dependencies: - '@stdlib/assert-is-function': 0.0.8 - '@stdlib/assert-is-string': 0.0.8 - '@stdlib/buffer-ctor': 0.0.7 - '@stdlib/string-format': 0.0.3 + "@stdlib/assert-is-function": 0.0.8 + "@stdlib/assert-is-string": 0.0.8 + "@stdlib/buffer-ctor": 0.0.7 + "@stdlib/string-format": 0.0.3 - '@stdlib/cli-ctor@0.0.3': + "@stdlib/cli-ctor@0.0.3": dependencies: - '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 - '@stdlib/utils-noop': 0.0.14 + "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 + "@stdlib/utils-noop": 0.0.14 minimist: 1.2.8 - '@stdlib/complex-float32@0.0.7': + "@stdlib/complex-float32@0.0.7": dependencies: - '@stdlib/assert-is-number': 0.0.7 - '@stdlib/number-float64-base-to-float32': 0.0.7 - '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 - '@stdlib/utils-define-property': 0.0.9 - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/assert-is-number": 0.0.7 + "@stdlib/number-float64-base-to-float32": 0.0.7 + "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 + "@stdlib/utils-define-property": 0.0.9 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/complex-float64@0.0.8': + "@stdlib/complex-float64@0.0.8": dependencies: - '@stdlib/assert-is-number': 0.0.7 - '@stdlib/complex-float32': 0.0.7 - '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 - '@stdlib/utils-define-property': 0.0.9 - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/assert-is-number": 0.0.7 + "@stdlib/complex-float32": 0.0.7 + "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 + "@stdlib/utils-define-property": 0.0.9 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/complex-reim@0.0.6': + "@stdlib/complex-reim@0.0.6": dependencies: - '@stdlib/array-float64': 0.0.6 - '@stdlib/complex-float64': 0.0.8 - '@stdlib/types': 0.0.14 - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/array-float64": 0.0.6 + "@stdlib/complex-float64": 0.0.8 + "@stdlib/types": 0.0.14 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/complex-reimf@0.0.1': + "@stdlib/complex-reimf@0.0.1": dependencies: - '@stdlib/array-float32': 0.0.6 - '@stdlib/complex-float32': 0.0.7 - '@stdlib/types': 0.0.14 - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/array-float32": 0.0.6 + "@stdlib/complex-float32": 0.0.7 + "@stdlib/types": 0.0.14 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/constants-float64-exponent-bias@0.0.8': + "@stdlib/constants-float64-exponent-bias@0.0.8": dependencies: - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/constants-float64-high-word-abs-mask@0.0.1': + "@stdlib/constants-float64-high-word-abs-mask@0.0.1": dependencies: - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/constants-float64-high-word-exponent-mask@0.0.8': + "@stdlib/constants-float64-high-word-exponent-mask@0.0.8": dependencies: - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/constants-float64-high-word-sign-mask@0.0.1': + "@stdlib/constants-float64-high-word-sign-mask@0.0.1": dependencies: - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/constants-float64-max-base2-exponent-subnormal@0.0.8': + "@stdlib/constants-float64-max-base2-exponent-subnormal@0.0.8": dependencies: - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/constants-float64-max-base2-exponent@0.0.8': + "@stdlib/constants-float64-max-base2-exponent@0.0.8": dependencies: - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/constants-float64-min-base2-exponent-subnormal@0.0.8': + "@stdlib/constants-float64-min-base2-exponent-subnormal@0.0.8": dependencies: - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/constants-float64-ninf@0.0.8': + "@stdlib/constants-float64-ninf@0.0.8": dependencies: - '@stdlib/number-ctor': 0.0.7 - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/number-ctor": 0.0.7 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/constants-float64-pinf@0.0.8': + "@stdlib/constants-float64-pinf@0.0.8": dependencies: - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/constants-float64-smallest-normal@0.0.8': + "@stdlib/constants-float64-smallest-normal@0.0.8": dependencies: - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/constants-uint16-max@0.0.7': {} + "@stdlib/constants-uint16-max@0.0.7": {} - '@stdlib/constants-uint32-max@0.0.7': {} + "@stdlib/constants-uint32-max@0.0.7": {} - '@stdlib/constants-uint8-max@0.0.7': {} + "@stdlib/constants-uint8-max@0.0.7": {} - '@stdlib/fs-exists@0.0.8': + "@stdlib/fs-exists@0.0.8": dependencies: - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/fs-read-file': 0.0.8 - '@stdlib/process-cwd': 0.0.8 - '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/fs-read-file": 0.0.8 + "@stdlib/process-cwd": 0.0.8 + "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 - '@stdlib/fs-read-file@0.0.8': + "@stdlib/fs-read-file@0.0.8": dependencies: - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 - '@stdlib/fs-resolve-parent-path@0.0.8': + "@stdlib/fs-resolve-parent-path@0.0.8": dependencies: - '@stdlib/assert-has-own-property': 0.0.7 - '@stdlib/assert-is-function': 0.0.8 - '@stdlib/assert-is-plain-object': 0.0.7 - '@stdlib/assert-is-string': 0.0.8 - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/fs-exists': 0.0.8 - '@stdlib/fs-read-file': 0.0.8 - '@stdlib/process-cwd': 0.0.8 - '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 + "@stdlib/assert-has-own-property": 0.0.7 + "@stdlib/assert-is-function": 0.0.8 + "@stdlib/assert-is-plain-object": 0.0.7 + "@stdlib/assert-is-string": 0.0.8 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/fs-exists": 0.0.8 + "@stdlib/fs-read-file": 0.0.8 + "@stdlib/process-cwd": 0.0.8 + "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 - '@stdlib/math-base-assert-is-infinite@0.0.9': + "@stdlib/math-base-assert-is-infinite@0.0.9": dependencies: - '@stdlib/constants-float64-ninf': 0.0.8 - '@stdlib/constants-float64-pinf': 0.0.8 - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/constants-float64-ninf": 0.0.8 + "@stdlib/constants-float64-pinf": 0.0.8 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/math-base-assert-is-nan@0.0.8': + "@stdlib/math-base-assert-is-nan@0.0.8": dependencies: - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/math-base-napi-binary@0.0.8': + "@stdlib/math-base-napi-binary@0.0.8": dependencies: - '@stdlib/complex-float32': 0.0.7 - '@stdlib/complex-float64': 0.0.8 - '@stdlib/complex-reim': 0.0.6 - '@stdlib/complex-reimf': 0.0.1 - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/complex-float32": 0.0.7 + "@stdlib/complex-float64": 0.0.8 + "@stdlib/complex-reim": 0.0.6 + "@stdlib/complex-reimf": 0.0.1 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/math-base-napi-unary@0.0.9': + "@stdlib/math-base-napi-unary@0.0.9": dependencies: - '@stdlib/complex-float32': 0.0.7 - '@stdlib/complex-float64': 0.0.8 - '@stdlib/complex-reim': 0.0.6 - '@stdlib/complex-reimf': 0.0.1 - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/complex-float32": 0.0.7 + "@stdlib/complex-float64": 0.0.8 + "@stdlib/complex-reim": 0.0.6 + "@stdlib/complex-reimf": 0.0.1 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/math-base-special-abs@0.0.6': + "@stdlib/math-base-special-abs@0.0.6": dependencies: - '@stdlib/math-base-napi-unary': 0.0.9 - '@stdlib/number-float64-base-to-words': 0.0.7 - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/math-base-napi-unary": 0.0.9 + "@stdlib/number-float64-base-to-words": 0.0.7 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/math-base-special-copysign@0.0.7': + "@stdlib/math-base-special-copysign@0.0.7": dependencies: - '@stdlib/constants-float64-high-word-abs-mask': 0.0.1 - '@stdlib/constants-float64-high-word-sign-mask': 0.0.1 - '@stdlib/math-base-napi-binary': 0.0.8 - '@stdlib/number-float64-base-from-words': 0.0.6 - '@stdlib/number-float64-base-get-high-word': 0.0.6 - '@stdlib/number-float64-base-to-words': 0.0.7 - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/constants-float64-high-word-abs-mask": 0.0.1 + "@stdlib/constants-float64-high-word-sign-mask": 0.0.1 + "@stdlib/math-base-napi-binary": 0.0.8 + "@stdlib/number-float64-base-from-words": 0.0.6 + "@stdlib/number-float64-base-get-high-word": 0.0.6 + "@stdlib/number-float64-base-to-words": 0.0.7 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/math-base-special-ldexp@0.0.5': - dependencies: - '@stdlib/constants-float64-exponent-bias': 0.0.8 - '@stdlib/constants-float64-max-base2-exponent': 0.0.8 - '@stdlib/constants-float64-max-base2-exponent-subnormal': 0.0.8 - '@stdlib/constants-float64-min-base2-exponent-subnormal': 0.0.8 - '@stdlib/constants-float64-ninf': 0.0.8 - '@stdlib/constants-float64-pinf': 0.0.8 - '@stdlib/math-base-assert-is-infinite': 0.0.9 - '@stdlib/math-base-assert-is-nan': 0.0.8 - '@stdlib/math-base-special-copysign': 0.0.7 - '@stdlib/number-float64-base-exponent': 0.0.6 - '@stdlib/number-float64-base-from-words': 0.0.6 - '@stdlib/number-float64-base-normalize': 0.0.9 - '@stdlib/number-float64-base-to-words': 0.0.7 + "@stdlib/math-base-special-ldexp@0.0.5": + dependencies: + "@stdlib/constants-float64-exponent-bias": 0.0.8 + "@stdlib/constants-float64-max-base2-exponent": 0.0.8 + "@stdlib/constants-float64-max-base2-exponent-subnormal": 0.0.8 + "@stdlib/constants-float64-min-base2-exponent-subnormal": 0.0.8 + "@stdlib/constants-float64-ninf": 0.0.8 + "@stdlib/constants-float64-pinf": 0.0.8 + "@stdlib/math-base-assert-is-infinite": 0.0.9 + "@stdlib/math-base-assert-is-nan": 0.0.8 + "@stdlib/math-base-special-copysign": 0.0.7 + "@stdlib/number-float64-base-exponent": 0.0.6 + "@stdlib/number-float64-base-from-words": 0.0.6 + "@stdlib/number-float64-base-normalize": 0.0.9 + "@stdlib/number-float64-base-to-words": 0.0.7 transitivePeerDependencies: - supports-color - '@stdlib/number-ctor@0.0.7': {} + "@stdlib/number-ctor@0.0.7": {} - '@stdlib/number-float64-base-exponent@0.0.6': + "@stdlib/number-float64-base-exponent@0.0.6": dependencies: - '@stdlib/constants-float64-exponent-bias': 0.0.8 - '@stdlib/constants-float64-high-word-exponent-mask': 0.0.8 - '@stdlib/number-float64-base-get-high-word': 0.0.6 + "@stdlib/constants-float64-exponent-bias": 0.0.8 + "@stdlib/constants-float64-high-word-exponent-mask": 0.0.8 + "@stdlib/number-float64-base-get-high-word": 0.0.6 transitivePeerDependencies: - supports-color - '@stdlib/number-float64-base-from-words@0.0.6': + "@stdlib/number-float64-base-from-words@0.0.6": dependencies: - '@stdlib/array-float64': 0.0.6 - '@stdlib/array-uint32': 0.0.6 - '@stdlib/assert-is-little-endian': 0.0.7 - '@stdlib/number-float64-base-to-words': 0.0.7 - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/array-float64": 0.0.6 + "@stdlib/array-uint32": 0.0.6 + "@stdlib/assert-is-little-endian": 0.0.7 + "@stdlib/number-float64-base-to-words": 0.0.7 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/number-float64-base-get-high-word@0.0.6': + "@stdlib/number-float64-base-get-high-word@0.0.6": dependencies: - '@stdlib/array-float64': 0.0.6 - '@stdlib/array-uint32': 0.0.6 - '@stdlib/assert-is-little-endian': 0.0.7 - '@stdlib/number-float64-base-to-words': 0.0.7 - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/array-float64": 0.0.6 + "@stdlib/array-uint32": 0.0.6 + "@stdlib/assert-is-little-endian": 0.0.7 + "@stdlib/number-float64-base-to-words": 0.0.7 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/number-float64-base-normalize@0.0.9': + "@stdlib/number-float64-base-normalize@0.0.9": dependencies: - '@stdlib/constants-float64-smallest-normal': 0.0.8 - '@stdlib/math-base-assert-is-infinite': 0.0.9 - '@stdlib/math-base-assert-is-nan': 0.0.8 - '@stdlib/math-base-special-abs': 0.0.6 - '@stdlib/types': 0.0.14 - '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/constants-float64-smallest-normal": 0.0.8 + "@stdlib/math-base-assert-is-infinite": 0.0.9 + "@stdlib/math-base-assert-is-nan": 0.0.8 + "@stdlib/math-base-special-abs": 0.0.6 + "@stdlib/types": 0.0.14 + "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/number-float64-base-to-float32@0.0.7': + "@stdlib/number-float64-base-to-float32@0.0.7": dependencies: - '@stdlib/array-float32': 0.0.6 + "@stdlib/array-float32": 0.0.6 transitivePeerDependencies: - supports-color - '@stdlib/number-float64-base-to-words@0.0.7': + "@stdlib/number-float64-base-to-words@0.0.7": dependencies: - '@stdlib/array-float64': 0.0.6 - '@stdlib/array-uint32': 0.0.6 - '@stdlib/assert-is-little-endian': 0.0.7 - '@stdlib/os-byte-order': 0.0.7 - '@stdlib/os-float-word-order': 0.0.7 - '@stdlib/types': 0.0.14 - '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/array-float64": 0.0.6 + "@stdlib/array-uint32": 0.0.6 + "@stdlib/assert-is-little-endian": 0.0.7 + "@stdlib/os-byte-order": 0.0.7 + "@stdlib/os-float-word-order": 0.0.7 + "@stdlib/types": 0.0.14 + "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/os-byte-order@0.0.7': + "@stdlib/os-byte-order@0.0.7": dependencies: - '@stdlib/assert-is-big-endian': 0.0.7 - '@stdlib/assert-is-little-endian': 0.0.7 - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/fs-read-file': 0.0.8 - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/assert-is-big-endian": 0.0.7 + "@stdlib/assert-is-little-endian": 0.0.7 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/fs-read-file": 0.0.8 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/os-float-word-order@0.0.7': + "@stdlib/os-float-word-order@0.0.7": dependencies: - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/fs-read-file': 0.0.8 - '@stdlib/os-byte-order': 0.0.7 - '@stdlib/utils-library-manifest': 0.0.8 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/fs-read-file": 0.0.8 + "@stdlib/os-byte-order": 0.0.7 + "@stdlib/utils-library-manifest": 0.0.8 transitivePeerDependencies: - supports-color - '@stdlib/process-cwd@0.0.8': + "@stdlib/process-cwd@0.0.8": dependencies: - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/fs-read-file': 0.0.8 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/fs-read-file": 0.0.8 - '@stdlib/process-read-stdin@0.0.7': + "@stdlib/process-read-stdin@0.0.7": dependencies: - '@stdlib/assert-is-function': 0.0.8 - '@stdlib/assert-is-string': 0.0.8 - '@stdlib/buffer-ctor': 0.0.7 - '@stdlib/buffer-from-string': 0.0.8 - '@stdlib/streams-node-stdin': 0.0.7 - '@stdlib/utils-next-tick': 0.0.8 + "@stdlib/assert-is-function": 0.0.8 + "@stdlib/assert-is-string": 0.0.8 + "@stdlib/buffer-ctor": 0.0.7 + "@stdlib/buffer-from-string": 0.0.8 + "@stdlib/streams-node-stdin": 0.0.7 + "@stdlib/utils-next-tick": 0.0.8 - '@stdlib/regexp-eol@0.0.7': + "@stdlib/regexp-eol@0.0.7": dependencies: - '@stdlib/assert-has-own-property': 0.0.7 - '@stdlib/assert-is-boolean': 0.0.8 - '@stdlib/assert-is-plain-object': 0.0.7 - '@stdlib/assert-is-string': 0.0.8 - '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 + "@stdlib/assert-has-own-property": 0.0.7 + "@stdlib/assert-is-boolean": 0.0.8 + "@stdlib/assert-is-plain-object": 0.0.7 + "@stdlib/assert-is-string": 0.0.8 + "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 - '@stdlib/regexp-extended-length-path@0.0.7': + "@stdlib/regexp-extended-length-path@0.0.7": dependencies: - '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 + "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 - '@stdlib/regexp-function-name@0.0.7': + "@stdlib/regexp-function-name@0.0.7": dependencies: - '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 + "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 - '@stdlib/regexp-regexp@0.0.8': + "@stdlib/regexp-regexp@0.0.8": dependencies: - '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 + "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 - '@stdlib/streams-node-stdin@0.0.7': {} + "@stdlib/streams-node-stdin@0.0.7": {} - '@stdlib/string-base-format-interpolate@0.0.4': {} + "@stdlib/string-base-format-interpolate@0.0.4": {} - '@stdlib/string-base-format-tokenize@0.0.4': {} + "@stdlib/string-base-format-tokenize@0.0.4": {} - '@stdlib/string-format@0.0.3': + "@stdlib/string-format@0.0.3": dependencies: - '@stdlib/string-base-format-interpolate': 0.0.4 - '@stdlib/string-base-format-tokenize': 0.0.4 + "@stdlib/string-base-format-interpolate": 0.0.4 + "@stdlib/string-base-format-tokenize": 0.0.4 - '@stdlib/string-lowercase@0.0.9': + "@stdlib/string-lowercase@0.0.9": dependencies: - '@stdlib/assert-is-string': 0.0.8 - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/fs-read-file': 0.0.8 - '@stdlib/process-read-stdin': 0.0.7 - '@stdlib/streams-node-stdin': 0.0.7 - '@stdlib/string-format': 0.0.3 + "@stdlib/assert-is-string": 0.0.8 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/fs-read-file": 0.0.8 + "@stdlib/process-read-stdin": 0.0.7 + "@stdlib/streams-node-stdin": 0.0.7 + "@stdlib/string-format": 0.0.3 - '@stdlib/string-replace@0.0.11': + "@stdlib/string-replace@0.0.11": dependencies: - '@stdlib/assert-is-function': 0.0.8 - '@stdlib/assert-is-regexp': 0.0.7 - '@stdlib/assert-is-regexp-string': 0.0.9 - '@stdlib/assert-is-string': 0.0.8 - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/fs-read-file': 0.0.8 - '@stdlib/process-read-stdin': 0.0.7 - '@stdlib/regexp-eol': 0.0.7 - '@stdlib/streams-node-stdin': 0.0.7 - '@stdlib/string-format': 0.0.3 - '@stdlib/utils-escape-regexp-string': 0.0.9 - '@stdlib/utils-regexp-from-string': 0.0.9 + "@stdlib/assert-is-function": 0.0.8 + "@stdlib/assert-is-regexp": 0.0.7 + "@stdlib/assert-is-regexp-string": 0.0.9 + "@stdlib/assert-is-string": 0.0.8 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/fs-read-file": 0.0.8 + "@stdlib/process-read-stdin": 0.0.7 + "@stdlib/regexp-eol": 0.0.7 + "@stdlib/streams-node-stdin": 0.0.7 + "@stdlib/string-format": 0.0.3 + "@stdlib/utils-escape-regexp-string": 0.0.9 + "@stdlib/utils-regexp-from-string": 0.0.9 - '@stdlib/types@0.0.14': {} + "@stdlib/types@0.0.14": {} - '@stdlib/utils-constructor-name@0.0.8': + "@stdlib/utils-constructor-name@0.0.8": dependencies: - '@stdlib/assert-is-buffer': 0.0.8 - '@stdlib/regexp-function-name': 0.0.7 - '@stdlib/utils-native-class': 0.0.8 + "@stdlib/assert-is-buffer": 0.0.8 + "@stdlib/regexp-function-name": 0.0.7 + "@stdlib/utils-native-class": 0.0.8 - '@stdlib/utils-convert-path@0.0.8': + "@stdlib/utils-convert-path@0.0.8": dependencies: - '@stdlib/assert-is-string': 0.0.8 - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/fs-read-file': 0.0.8 - '@stdlib/process-read-stdin': 0.0.7 - '@stdlib/regexp-eol': 0.0.7 - '@stdlib/regexp-extended-length-path': 0.0.7 - '@stdlib/streams-node-stdin': 0.0.7 - '@stdlib/string-lowercase': 0.0.9 - '@stdlib/string-replace': 0.0.11 + "@stdlib/assert-is-string": 0.0.8 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/fs-read-file": 0.0.8 + "@stdlib/process-read-stdin": 0.0.7 + "@stdlib/regexp-eol": 0.0.7 + "@stdlib/regexp-extended-length-path": 0.0.7 + "@stdlib/streams-node-stdin": 0.0.7 + "@stdlib/string-lowercase": 0.0.9 + "@stdlib/string-replace": 0.0.11 - '@stdlib/utils-define-nonenumerable-read-only-property@0.0.7': + "@stdlib/utils-define-nonenumerable-read-only-property@0.0.7": dependencies: - '@stdlib/types': 0.0.14 - '@stdlib/utils-define-property': 0.0.9 + "@stdlib/types": 0.0.14 + "@stdlib/utils-define-property": 0.0.9 - '@stdlib/utils-define-property@0.0.9': + "@stdlib/utils-define-property@0.0.9": dependencies: - '@stdlib/types': 0.0.14 + "@stdlib/types": 0.0.14 - '@stdlib/utils-escape-regexp-string@0.0.9': + "@stdlib/utils-escape-regexp-string@0.0.9": dependencies: - '@stdlib/assert-is-string': 0.0.8 - '@stdlib/string-format': 0.0.3 + "@stdlib/assert-is-string": 0.0.8 + "@stdlib/string-format": 0.0.3 - '@stdlib/utils-get-prototype-of@0.0.7': + "@stdlib/utils-get-prototype-of@0.0.7": dependencies: - '@stdlib/assert-is-function': 0.0.8 - '@stdlib/utils-native-class': 0.0.8 + "@stdlib/assert-is-function": 0.0.8 + "@stdlib/utils-native-class": 0.0.8 - '@stdlib/utils-global@0.0.7': + "@stdlib/utils-global@0.0.7": dependencies: - '@stdlib/assert-is-boolean': 0.0.8 + "@stdlib/assert-is-boolean": 0.0.8 - '@stdlib/utils-library-manifest@0.0.8': + "@stdlib/utils-library-manifest@0.0.8": dependencies: - '@stdlib/cli-ctor': 0.0.3 - '@stdlib/fs-resolve-parent-path': 0.0.8 - '@stdlib/utils-convert-path': 0.0.8 + "@stdlib/cli-ctor": 0.0.3 + "@stdlib/fs-resolve-parent-path": 0.0.8 + "@stdlib/utils-convert-path": 0.0.8 debug: 2.6.9 resolve: 1.22.8 transitivePeerDependencies: - supports-color - '@stdlib/utils-native-class@0.0.8': + "@stdlib/utils-native-class@0.0.8": dependencies: - '@stdlib/assert-has-own-property': 0.0.7 - '@stdlib/assert-has-tostringtag-support': 0.0.9 + "@stdlib/assert-has-own-property": 0.0.7 + "@stdlib/assert-has-tostringtag-support": 0.0.9 - '@stdlib/utils-next-tick@0.0.8': {} + "@stdlib/utils-next-tick@0.0.8": {} - '@stdlib/utils-noop@0.0.14': {} + "@stdlib/utils-noop@0.0.14": {} - '@stdlib/utils-regexp-from-string@0.0.9': + "@stdlib/utils-regexp-from-string@0.0.9": dependencies: - '@stdlib/assert-is-string': 0.0.8 - '@stdlib/regexp-regexp': 0.0.8 - '@stdlib/string-format': 0.0.3 + "@stdlib/assert-is-string": 0.0.8 + "@stdlib/regexp-regexp": 0.0.8 + "@stdlib/string-format": 0.0.3 - '@stdlib/utils-type-of@0.0.8': + "@stdlib/utils-type-of@0.0.8": dependencies: - '@stdlib/utils-constructor-name': 0.0.8 - '@stdlib/utils-global': 0.0.7 + "@stdlib/utils-constructor-name": 0.0.8 + "@stdlib/utils-global": 0.0.7 - '@stellar/js-xdr@3.1.1': {} + "@stellar/js-xdr@3.1.1": {} - '@stellar/stellar-base@11.0.1': + "@stellar/stellar-base@11.0.1": dependencies: - '@stellar/js-xdr': 3.1.1 + "@stellar/js-xdr": 3.1.1 base32.js: 0.1.0 bignumber.js: 9.1.2 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) @@ -41463,9 +57885,9 @@ snapshots: optionalDependencies: sodium-native: 4.1.1 - '@stellar/stellar-sdk@11.3.0': + "@stellar/stellar-sdk@11.3.0": dependencies: - '@stellar/stellar-base': 11.0.1 + "@stellar/stellar-base": 11.0.1 axios: 1.7.7 bignumber.js: 9.1.2 eventsource: 2.0.2 @@ -41473,79 +57895,79 @@ snapshots: toml: 3.0.0 urijs: 1.19.11 - '@storybook/addon-actions@7.6.17': + "@storybook/addon-actions@7.6.17": dependencies: - '@storybook/core-events': 7.6.17 - '@storybook/global': 5.0.0 - '@types/uuid': 9.0.8 + "@storybook/core-events": 7.6.17 + "@storybook/global": 5.0.0 + "@types/uuid": 9.0.8 dequal: 2.0.3 polished: 4.3.1 uuid: 9.0.1 - '@storybook/addon-actions@7.6.20': + "@storybook/addon-actions@7.6.20": dependencies: - '@storybook/core-events': 7.6.20 - '@storybook/global': 5.0.0 - '@types/uuid': 9.0.8 + "@storybook/core-events": 7.6.20 + "@storybook/global": 5.0.0 + "@types/uuid": 9.0.8 dequal: 2.0.3 polished: 4.3.1 uuid: 9.0.1 - '@storybook/addon-backgrounds@7.6.17': + "@storybook/addon-backgrounds@7.6.17": dependencies: - '@storybook/global': 5.0.0 + "@storybook/global": 5.0.0 memoizerific: 1.11.3 ts-dedent: 2.2.0 - '@storybook/addon-backgrounds@7.6.20': + "@storybook/addon-backgrounds@7.6.20": dependencies: - '@storybook/global': 5.0.0 + "@storybook/global": 5.0.0 memoizerific: 1.11.3 ts-dedent: 2.2.0 - '@storybook/addon-controls@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/addon-controls@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/blocks': 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/blocks": 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) lodash: 4.17.21 ts-dedent: 2.2.0 transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' + - "@types/react" + - "@types/react-dom" - encoding - react - react-dom - supports-color - '@storybook/addon-controls@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/addon-controls@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/blocks': 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/blocks": 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) lodash: 4.17.21 ts-dedent: 2.2.0 transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' + - "@types/react" + - "@types/react-dom" - encoding - react - react-dom - supports-color - '@storybook/addon-docs@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@jest/transform': 29.7.0 - '@mdx-js/react': 2.3.0(@types/react@18.2.73)(react@18.2.0) - '@storybook/blocks': 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/client-logger': 7.6.17 - '@storybook/components': 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/csf-plugin': 7.6.17 - '@storybook/csf-tools': 7.6.17 - '@storybook/global': 5.0.0 - '@storybook/mdx2-csf': 1.1.0 - '@storybook/node-logger': 7.6.17 - '@storybook/postinstall': 7.6.17 - '@storybook/preview-api': 7.6.17 - '@storybook/react-dom-shim': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.6.17 + "@storybook/addon-docs@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@jest/transform": 29.7.0 + "@mdx-js/react": 2.3.0(@types/react@18.2.73)(react@18.2.0) + "@storybook/blocks": 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/client-logger": 7.6.17 + "@storybook/components": 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/csf-plugin": 7.6.17 + "@storybook/csf-tools": 7.6.17 + "@storybook/global": 5.0.0 + "@storybook/mdx2-csf": 1.1.0 + "@storybook/node-logger": 7.6.17 + "@storybook/postinstall": 7.6.17 + "@storybook/preview-api": 7.6.17 + "@storybook/react-dom-shim": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/theming": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/types": 7.6.17 fs-extra: 11.2.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -41553,29 +57975,29 @@ snapshots: remark-slug: 6.1.0 ts-dedent: 2.2.0 transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' + - "@types/react" + - "@types/react-dom" - encoding - metro - supports-color - '@storybook/addon-docs@7.6.20(@types/react@18.2.73)(metro@0.80.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@jest/transform': 29.7.0(metro@0.80.8) - '@mdx-js/react': 2.3.0(@types/react@18.2.73)(react@18.2.0) - '@storybook/blocks': 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/client-logger': 7.6.20 - '@storybook/components': 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/csf-plugin': 7.6.20 - '@storybook/csf-tools': 7.6.20 - '@storybook/global': 5.0.0 - '@storybook/mdx2-csf': 1.1.0 - '@storybook/node-logger': 7.6.20 - '@storybook/postinstall': 7.6.20 - '@storybook/preview-api': 7.6.20 - '@storybook/react-dom-shim': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/theming': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.6.20 + "@storybook/addon-docs@7.6.20(@types/react@18.2.73)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@jest/transform": 29.7.0(metro@0.80.12) + "@mdx-js/react": 2.3.0(@types/react@18.2.73)(react@18.2.0) + "@storybook/blocks": 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/client-logger": 7.6.20 + "@storybook/components": 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/csf-plugin": 7.6.20 + "@storybook/csf-tools": 7.6.20 + "@storybook/global": 5.0.0 + "@storybook/mdx2-csf": 1.1.0 + "@storybook/node-logger": 7.6.20 + "@storybook/postinstall": 7.6.20 + "@storybook/preview-api": 7.6.20 + "@storybook/react-dom-shim": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/theming": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/types": 7.6.20 fs-extra: 11.2.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -41583,224 +58005,224 @@ snapshots: remark-slug: 6.1.0 ts-dedent: 2.2.0 transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' + - "@types/react" + - "@types/react-dom" - encoding - metro - supports-color - '@storybook/addon-essentials@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@storybook/addon-actions': 7.6.17 - '@storybook/addon-backgrounds': 7.6.17 - '@storybook/addon-controls': 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/addon-docs': 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/addon-highlight': 7.6.17 - '@storybook/addon-measure': 7.6.17 - '@storybook/addon-outline': 7.6.17 - '@storybook/addon-toolbars': 7.6.17 - '@storybook/addon-viewport': 7.6.17 - '@storybook/core-common': 7.6.17 - '@storybook/manager-api': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/node-logger': 7.6.17 - '@storybook/preview-api': 7.6.17 + "@storybook/addon-essentials@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@storybook/addon-actions": 7.6.17 + "@storybook/addon-backgrounds": 7.6.17 + "@storybook/addon-controls": 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/addon-docs": 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/addon-highlight": 7.6.17 + "@storybook/addon-measure": 7.6.17 + "@storybook/addon-outline": 7.6.17 + "@storybook/addon-toolbars": 7.6.17 + "@storybook/addon-viewport": 7.6.17 + "@storybook/core-common": 7.6.17 + "@storybook/manager-api": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/node-logger": 7.6.17 + "@storybook/preview-api": 7.6.17 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' + - "@types/react" + - "@types/react-dom" - encoding - metro - supports-color - '@storybook/addon-essentials@7.6.20(@types/react@18.2.73)(metro@0.80.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@storybook/addon-actions': 7.6.20 - '@storybook/addon-backgrounds': 7.6.20 - '@storybook/addon-controls': 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/addon-docs': 7.6.20(@types/react@18.2.73)(metro@0.80.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/addon-highlight': 7.6.20 - '@storybook/addon-measure': 7.6.20 - '@storybook/addon-outline': 7.6.20 - '@storybook/addon-toolbars': 7.6.20 - '@storybook/addon-viewport': 7.6.20 - '@storybook/core-common': 7.6.20 - '@storybook/manager-api': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/node-logger': 7.6.20 - '@storybook/preview-api': 7.6.20 + "@storybook/addon-essentials@7.6.20(@types/react@18.2.73)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@storybook/addon-actions": 7.6.20 + "@storybook/addon-backgrounds": 7.6.20 + "@storybook/addon-controls": 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/addon-docs": 7.6.20(@types/react@18.2.73)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/addon-highlight": 7.6.20 + "@storybook/addon-measure": 7.6.20 + "@storybook/addon-outline": 7.6.20 + "@storybook/addon-toolbars": 7.6.20 + "@storybook/addon-viewport": 7.6.20 + "@storybook/core-common": 7.6.20 + "@storybook/manager-api": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/node-logger": 7.6.20 + "@storybook/preview-api": 7.6.20 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' + - "@types/react" + - "@types/react-dom" - encoding - metro - supports-color - '@storybook/addon-highlight@7.6.17': + "@storybook/addon-highlight@7.6.17": dependencies: - '@storybook/global': 5.0.0 + "@storybook/global": 5.0.0 - '@storybook/addon-highlight@7.6.20': + "@storybook/addon-highlight@7.6.20": dependencies: - '@storybook/global': 5.0.0 + "@storybook/global": 5.0.0 - '@storybook/addon-links@7.6.17(react@18.2.0)': + "@storybook/addon-links@7.6.17(react@18.2.0)": dependencies: - '@storybook/csf': 0.1.3 - '@storybook/global': 5.0.0 + "@storybook/csf": 0.1.3 + "@storybook/global": 5.0.0 ts-dedent: 2.2.0 optionalDependencies: react: 18.2.0 - '@storybook/addon-links@7.6.20(react@18.2.0)': + "@storybook/addon-links@7.6.20(react@18.2.0)": dependencies: - '@storybook/csf': 0.1.3 - '@storybook/global': 5.0.0 + "@storybook/csf": 0.1.3 + "@storybook/global": 5.0.0 ts-dedent: 2.2.0 optionalDependencies: react: 18.2.0 - '@storybook/addon-measure@7.6.17': + "@storybook/addon-measure@7.6.17": dependencies: - '@storybook/global': 5.0.0 + "@storybook/global": 5.0.0 tiny-invariant: 1.3.3 - '@storybook/addon-measure@7.6.20': + "@storybook/addon-measure@7.6.20": dependencies: - '@storybook/global': 5.0.0 + "@storybook/global": 5.0.0 tiny-invariant: 1.3.3 - '@storybook/addon-ondevice-actions@6.5.7(@storybook/addon-actions@7.6.20)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0)': + "@storybook/addon-ondevice-actions@6.5.7(@storybook/addon-actions@7.6.20)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/addon-actions': 7.6.20 - '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/core-events': 6.5.16 + "@storybook/addon-actions": 7.6.20 + "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/core-events": 6.5.16 fast-deep-equal: 2.0.1 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) transitivePeerDependencies: - react-dom - '@storybook/addon-ondevice-backgrounds@6.5.7(@emotion/native@11.11.0(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0)': + "@storybook/addon-ondevice-backgrounds@6.5.7(@emotion/native@11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/api': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/client-api': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/react-native-theming': 6.5.7(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/api": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/client-api": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/react-native-theming": 6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) core-js: 3.36.1 prop-types: 15.8.1 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) optionalDependencies: - '@emotion/native': 11.11.0(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + "@emotion/native": 11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) transitivePeerDependencies: - react-dom - '@storybook/addon-ondevice-controls@6.5.7(@react-native-community/datetimepicker@6.7.5)(@react-native-community/slider@4.5.0)(@storybook/addon-controls@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0)': + "@storybook/addon-ondevice-controls@6.5.7(@react-native-community/datetimepicker@6.7.5)(@react-native-community/slider@4.5.0)(@storybook/addon-controls@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)": dependencies: - '@react-native-community/datetimepicker': 6.7.5 - '@react-native-community/slider': 4.5.0 - '@storybook/addon-controls': 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/client-logger': 6.5.16 - '@storybook/core-events': 6.5.16 - '@storybook/react-native-theming': 6.5.7(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + "@react-native-community/datetimepicker": 6.7.5 + "@react-native-community/slider": 4.5.0 + "@storybook/addon-controls": 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/client-logger": 6.5.16 + "@storybook/core-events": 6.5.16 + "@storybook/react-native-theming": 6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) core-js: 3.36.1 deep-equal: 1.1.2 prop-types: 15.8.1 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) - react-native-modal-datetime-picker: 14.0.1(@react-native-community/datetimepicker@6.7.5)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0)) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) + react-native-modal-datetime-picker: 14.0.1(@react-native-community/datetimepicker@6.7.5)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0)) react-native-modal-selector: 2.1.2 tinycolor2: 1.6.0 transitivePeerDependencies: - react-dom - '@storybook/addon-ondevice-notes@6.5.7(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0)': + "@storybook/addon-ondevice-notes@6.5.7(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/api': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/client-api': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/client-logger': 6.5.16 - '@storybook/core-events': 6.5.16 - '@storybook/react-native-theming': 6.5.7(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/api": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/client-api": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/client-logger": 6.5.16 + "@storybook/core-events": 6.5.16 + "@storybook/react-native-theming": 6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) core-js: 3.36.1 prop-types: 15.8.1 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) simple-markdown: 0.7.3(@types/react@18.2.73) transitivePeerDependencies: - - '@types/react' + - "@types/react" - react-dom - '@storybook/addon-outline@7.6.17': + "@storybook/addon-outline@7.6.17": dependencies: - '@storybook/global': 5.0.0 + "@storybook/global": 5.0.0 ts-dedent: 2.2.0 - '@storybook/addon-outline@7.6.20': + "@storybook/addon-outline@7.6.20": dependencies: - '@storybook/global': 5.0.0 + "@storybook/global": 5.0.0 ts-dedent: 2.2.0 - '@storybook/addon-react-native-web@0.0.21(babel-plugin-react-native-web@0.19.10)(metro-react-native-babel-preset@0.77.0(@babel/core@7.24.3))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(webpack@5.91.0(metro@0.80.8))': + "@storybook/addon-react-native-web@0.0.21(babel-plugin-react-native-web@0.19.10)(metro-react-native-babel-preset@0.77.0(@babel/core@7.24.3))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(webpack@5.91.0(metro@0.80.12))": dependencies: babel-plugin-react-native-web: 0.19.10 metro-react-native-babel-preset: 0.77.0(@babel/core@7.24.3) optionalDependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - webpack: 5.91.0(metro@0.80.8) + webpack: 5.91.0(metro@0.80.12) - '@storybook/addon-toolbars@7.6.17': {} + "@storybook/addon-toolbars@7.6.17": {} - '@storybook/addon-toolbars@7.6.20': {} + "@storybook/addon-toolbars@7.6.20": {} - '@storybook/addon-viewport@7.6.17': + "@storybook/addon-viewport@7.6.17": dependencies: memoizerific: 1.11.3 - '@storybook/addon-viewport@7.6.20': + "@storybook/addon-viewport@7.6.20": dependencies: memoizerific: 1.11.3 - '@storybook/addons@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/addons@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/api': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/channels': 6.5.16 - '@storybook/client-logger': 6.5.16 - '@storybook/core-events': 6.5.16 - '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/theming': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@types/webpack-env': 1.18.4 + "@storybook/api": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/channels": 6.5.16 + "@storybook/client-logger": 6.5.16 + "@storybook/core-events": 6.5.16 + "@storybook/csf": 0.0.2--canary.4566f4d.1 + "@storybook/router": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/theming": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@types/webpack-env": 1.18.4 core-js: 3.36.1 global: 4.4.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) regenerator-runtime: 0.13.11 - '@storybook/addons@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/addons@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/manager-api': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/preview-api': 7.6.17 - '@storybook/types': 7.6.17 + "@storybook/manager-api": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/preview-api": 7.6.17 + "@storybook/types": 7.6.17 transitivePeerDependencies: - react - react-dom - '@storybook/api@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/api@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/channels': 6.5.16 - '@storybook/client-logger': 6.5.16 - '@storybook/core-events': 6.5.16 - '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/router': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/channels": 6.5.16 + "@storybook/client-logger": 6.5.16 + "@storybook/core-events": 6.5.16 + "@storybook/csf": 0.0.2--canary.4566f4d.1 + "@storybook/router": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/semver": 7.3.2 + "@storybook/theming": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) core-js: 3.36.1 fast-deep-equal: 3.1.3 global: 4.4.0 @@ -41814,20 +58236,20 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - '@storybook/blocks@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@storybook/channels': 7.6.17 - '@storybook/client-logger': 7.6.17 - '@storybook/components': 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/core-events': 7.6.17 - '@storybook/csf': 0.1.3 - '@storybook/docs-tools': 7.6.17 - '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/preview-api': 7.6.17 - '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.6.17 - '@types/lodash': 4.17.7 + "@storybook/blocks@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@storybook/channels": 7.6.17 + "@storybook/client-logger": 7.6.17 + "@storybook/components": 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/core-events": 7.6.17 + "@storybook/csf": 0.1.3 + "@storybook/docs-tools": 7.6.17 + "@storybook/global": 5.0.0 + "@storybook/manager-api": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/preview-api": 7.6.17 + "@storybook/theming": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/types": 7.6.17 + "@types/lodash": 4.17.7 color-convert: 2.0.1 dequal: 2.0.3 lodash: 4.17.21 @@ -41842,25 +58264,25 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' + - "@types/react" + - "@types/react-dom" - encoding - supports-color - '@storybook/blocks@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@storybook/channels': 7.6.20 - '@storybook/client-logger': 7.6.20 - '@storybook/components': 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/core-events': 7.6.20 - '@storybook/csf': 0.1.3 - '@storybook/docs-tools': 7.6.20 - '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/preview-api': 7.6.20 - '@storybook/theming': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.6.20 - '@types/lodash': 4.17.7 + "@storybook/blocks@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@storybook/channels": 7.6.20 + "@storybook/client-logger": 7.6.20 + "@storybook/components": 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/core-events": 7.6.20 + "@storybook/csf": 0.1.3 + "@storybook/docs-tools": 7.6.20 + "@storybook/global": 5.0.0 + "@storybook/manager-api": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/preview-api": 7.6.20 + "@storybook/theming": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/types": 7.6.20 + "@types/lodash": 4.17.7 color-convert: 2.0.1 dequal: 2.0.3 lodash: 4.17.21 @@ -41875,20 +58297,20 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' + - "@types/react" + - "@types/react-dom" - encoding - supports-color - '@storybook/builder-manager@7.6.17': + "@storybook/builder-manager@7.6.17": dependencies: - '@fal-works/esbuild-plugin-global-externals': 2.1.2 - '@storybook/core-common': 7.6.17 - '@storybook/manager': 7.6.17 - '@storybook/node-logger': 7.6.17 - '@types/ejs': 3.1.5 - '@types/find-cache-dir': 3.2.1 - '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.20) + "@fal-works/esbuild-plugin-global-externals": 2.1.2 + "@storybook/core-common": 7.6.17 + "@storybook/manager": 7.6.17 + "@storybook/node-logger": 7.6.17 + "@types/ejs": 3.1.5 + "@types/find-cache-dir": 3.2.1 + "@yarnpkg/esbuild-plugin-pnp": 3.0.0-rc.15(esbuild@0.18.20) browser-assert: 1.2.1 ejs: 3.1.9 esbuild: 0.18.20 @@ -41902,15 +58324,15 @@ snapshots: - encoding - supports-color - '@storybook/builder-manager@7.6.20': + "@storybook/builder-manager@7.6.20": dependencies: - '@fal-works/esbuild-plugin-global-externals': 2.1.2 - '@storybook/core-common': 7.6.20 - '@storybook/manager': 7.6.20 - '@storybook/node-logger': 7.6.20 - '@types/ejs': 3.1.5 - '@types/find-cache-dir': 3.2.1 - '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.20) + "@fal-works/esbuild-plugin-global-externals": 2.1.2 + "@storybook/core-common": 7.6.20 + "@storybook/manager": 7.6.20 + "@storybook/node-logger": 7.6.20 + "@types/ejs": 3.1.5 + "@types/find-cache-dir": 3.2.1 + "@yarnpkg/esbuild-plugin-pnp": 3.0.0-rc.15(esbuild@0.18.20) browser-assert: 1.2.1 ejs: 3.1.9 esbuild: 0.18.20 @@ -41924,20 +58346,20 @@ snapshots: - encoding - supports-color - '@storybook/builder-webpack5@7.6.17(esbuild@0.19.12)(typescript@5.4.3)': - dependencies: - '@babel/core': 7.24.3 - '@storybook/channels': 7.6.17 - '@storybook/client-logger': 7.6.17 - '@storybook/core-common': 7.6.17 - '@storybook/core-events': 7.6.17 - '@storybook/core-webpack': 7.6.17 - '@storybook/node-logger': 7.6.17 - '@storybook/preview': 7.6.17 - '@storybook/preview-api': 7.6.17 - '@swc/core': 1.4.11 - '@types/node': 18.19.26 - '@types/semver': 7.5.8 + "@storybook/builder-webpack5@7.6.17(esbuild@0.19.12)(typescript@5.4.3)": + dependencies: + "@babel/core": 7.24.3 + "@storybook/channels": 7.6.17 + "@storybook/client-logger": 7.6.17 + "@storybook/core-common": 7.6.17 + "@storybook/core-events": 7.6.17 + "@storybook/core-webpack": 7.6.17 + "@storybook/node-logger": 7.6.17 + "@storybook/preview": 7.6.17 + "@storybook/preview-api": 7.6.17 + "@swc/core": 1.4.11 + "@types/node": 18.19.26 + "@types/semver": 7.5.8 babel-loader: 9.1.3(@babel/core@7.24.3)(webpack@5.94.0(@swc/core@1.4.11)(esbuild@0.19.12)) browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 @@ -41967,8 +58389,8 @@ snapshots: optionalDependencies: typescript: 5.4.3 transitivePeerDependencies: - - '@rspack/core' - - '@swc/helpers' + - "@rspack/core" + - "@swc/helpers" - encoding - esbuild - metro @@ -41976,51 +58398,51 @@ snapshots: - uglify-js - webpack-cli - '@storybook/builder-webpack5@7.6.20(metro@0.80.8)(typescript@5.4.3)': - dependencies: - '@babel/core': 7.24.3 - '@storybook/channels': 7.6.20 - '@storybook/client-logger': 7.6.20 - '@storybook/core-common': 7.6.20 - '@storybook/core-events': 7.6.20 - '@storybook/core-webpack': 7.6.20 - '@storybook/node-logger': 7.6.20 - '@storybook/preview': 7.6.20 - '@storybook/preview-api': 7.6.20 - '@swc/core': 1.4.11 - '@types/node': 18.19.26 - '@types/semver': 7.5.8 - babel-loader: 9.1.3(@babel/core@7.24.3)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8)) + "@storybook/builder-webpack5@7.6.20(metro@0.80.12)(typescript@5.4.3)": + dependencies: + "@babel/core": 7.24.3 + "@storybook/channels": 7.6.20 + "@storybook/client-logger": 7.6.20 + "@storybook/core-common": 7.6.20 + "@storybook/core-events": 7.6.20 + "@storybook/core-webpack": 7.6.20 + "@storybook/node-logger": 7.6.20 + "@storybook/preview": 7.6.20 + "@storybook/preview-api": 7.6.20 + "@swc/core": 1.4.11 + "@types/node": 18.19.26 + "@types/semver": 7.5.8 + babel-loader: 9.1.3(@babel/core@7.24.3)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)) browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 cjs-module-lexer: 1.2.3 constants-browserify: 1.0.0 - css-loader: 6.10.0(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8)) + css-loader: 6.10.0(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)) es-module-lexer: 1.5.0 express: 4.19.2 - fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8)) + fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)) fs-extra: 11.2.0 - html-webpack-plugin: 5.6.0(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8)) + html-webpack-plugin: 5.6.0(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)) magic-string: 0.30.8 path-browserify: 1.0.1 process: 0.11.10 semver: 7.6.3 - style-loader: 3.3.4(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8)) - swc-loader: 0.2.6(@swc/core@1.4.11)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8)) - terser-webpack-plugin: 5.3.10(@swc/core@1.4.11)(metro@0.80.8)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8)) + style-loader: 3.3.4(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)) + swc-loader: 0.2.6(@swc/core@1.4.11)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)) + terser-webpack-plugin: 5.3.10(@swc/core@1.4.11)(metro@0.80.12)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)) ts-dedent: 2.2.0 url: 0.11.3 util: 0.12.5 util-deprecate: 1.0.2 - webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.8) - webpack-dev-middleware: 6.1.2(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8)) + webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.12) + webpack-dev-middleware: 6.1.2(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)) webpack-hot-middleware: 2.26.1 webpack-virtual-modules: 0.5.0 optionalDependencies: typescript: 5.4.3 transitivePeerDependencies: - - '@rspack/core' - - '@swc/helpers' + - "@rspack/core" + - "@swc/helpers" - encoding - esbuild - metro @@ -42028,83 +58450,83 @@ snapshots: - uglify-js - webpack-cli - '@storybook/channel-postmessage@6.5.16': + "@storybook/channel-postmessage@6.5.16": dependencies: - '@storybook/channels': 6.5.16 - '@storybook/client-logger': 6.5.16 - '@storybook/core-events': 6.5.16 + "@storybook/channels": 6.5.16 + "@storybook/client-logger": 6.5.16 + "@storybook/core-events": 6.5.16 core-js: 3.36.1 global: 4.4.0 qs: 6.12.0 telejson: 6.0.8 - '@storybook/channel-websocket@6.5.16': + "@storybook/channel-websocket@6.5.16": dependencies: - '@storybook/channels': 6.5.16 - '@storybook/client-logger': 6.5.16 + "@storybook/channels": 6.5.16 + "@storybook/client-logger": 6.5.16 core-js: 3.36.1 global: 4.4.0 telejson: 6.0.8 - '@storybook/channels@6.5.16': + "@storybook/channels@6.5.16": dependencies: core-js: 3.36.1 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - '@storybook/channels@7.5.3': + "@storybook/channels@7.5.3": dependencies: - '@storybook/client-logger': 7.5.3 - '@storybook/core-events': 7.5.3 - '@storybook/global': 5.0.0 + "@storybook/client-logger": 7.5.3 + "@storybook/core-events": 7.5.3 + "@storybook/global": 5.0.0 qs: 6.12.0 telejson: 7.2.0 tiny-invariant: 1.3.3 - '@storybook/channels@7.6.17': + "@storybook/channels@7.6.17": dependencies: - '@storybook/client-logger': 7.6.17 - '@storybook/core-events': 7.6.17 - '@storybook/global': 5.0.0 + "@storybook/client-logger": 7.6.17 + "@storybook/core-events": 7.6.17 + "@storybook/global": 5.0.0 qs: 6.12.0 telejson: 7.2.0 tiny-invariant: 1.3.3 - '@storybook/channels@7.6.18': + "@storybook/channels@7.6.18": dependencies: - '@storybook/client-logger': 7.6.18 - '@storybook/core-events': 7.6.18 - '@storybook/global': 5.0.0 + "@storybook/client-logger": 7.6.18 + "@storybook/core-events": 7.6.18 + "@storybook/global": 5.0.0 qs: 6.12.0 telejson: 7.2.0 tiny-invariant: 1.3.3 - '@storybook/channels@7.6.20': + "@storybook/channels@7.6.20": dependencies: - '@storybook/client-logger': 7.6.20 - '@storybook/core-events': 7.6.20 - '@storybook/global': 5.0.0 + "@storybook/client-logger": 7.6.20 + "@storybook/core-events": 7.6.20 + "@storybook/global": 5.0.0 qs: 6.12.0 telejson: 7.2.0 tiny-invariant: 1.3.3 - '@storybook/cli@7.6.17': - dependencies: - '@babel/core': 7.24.3 - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) - '@babel/types': 7.24.0 - '@ndelangen/get-tarball': 3.0.9 - '@storybook/codemod': 7.6.17 - '@storybook/core-common': 7.6.17 - '@storybook/core-events': 7.6.17 - '@storybook/core-server': 7.6.17 - '@storybook/csf-tools': 7.6.17 - '@storybook/node-logger': 7.6.17 - '@storybook/telemetry': 7.6.17 - '@storybook/types': 7.6.17 - '@types/semver': 7.5.8 - '@yarnpkg/fslib': 2.10.3 - '@yarnpkg/libzip': 2.3.0 + "@storybook/cli@7.6.17": + dependencies: + "@babel/core": 7.24.3 + "@babel/preset-env": 7.24.3(@babel/core@7.24.3) + "@babel/types": 7.24.0 + "@ndelangen/get-tarball": 3.0.9 + "@storybook/codemod": 7.6.17 + "@storybook/core-common": 7.6.17 + "@storybook/core-events": 7.6.17 + "@storybook/core-server": 7.6.17 + "@storybook/csf-tools": 7.6.17 + "@storybook/node-logger": 7.6.17 + "@storybook/telemetry": 7.6.17 + "@storybook/types": 7.6.17 + "@types/semver": 7.5.8 + "@yarnpkg/fslib": 2.10.3 + "@yarnpkg/libzip": 2.3.0 chalk: 4.1.2 commander: 6.2.1 cross-spawn: 7.0.3 @@ -42136,23 +58558,23 @@ snapshots: - supports-color - utf-8-validate - '@storybook/cli@7.6.20': - dependencies: - '@babel/core': 7.24.3 - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) - '@babel/types': 7.24.0 - '@ndelangen/get-tarball': 3.0.9 - '@storybook/codemod': 7.6.20 - '@storybook/core-common': 7.6.20 - '@storybook/core-events': 7.6.20 - '@storybook/core-server': 7.6.20 - '@storybook/csf-tools': 7.6.20 - '@storybook/node-logger': 7.6.20 - '@storybook/telemetry': 7.6.20 - '@storybook/types': 7.6.20 - '@types/semver': 7.5.8 - '@yarnpkg/fslib': 2.10.3 - '@yarnpkg/libzip': 2.3.0 + "@storybook/cli@7.6.20": + dependencies: + "@babel/core": 7.24.3 + "@babel/preset-env": 7.24.3(@babel/core@7.24.3) + "@babel/types": 7.24.0 + "@ndelangen/get-tarball": 3.0.9 + "@storybook/codemod": 7.6.20 + "@storybook/core-common": 7.6.20 + "@storybook/core-events": 7.6.20 + "@storybook/core-server": 7.6.20 + "@storybook/csf-tools": 7.6.20 + "@storybook/node-logger": 7.6.20 + "@storybook/telemetry": 7.6.20 + "@storybook/types": 7.6.20 + "@types/semver": 7.5.8 + "@yarnpkg/fslib": 2.10.3 + "@yarnpkg/libzip": 2.3.0 chalk: 4.1.2 commander: 6.2.1 cross-spawn: 7.0.3 @@ -42184,17 +58606,17 @@ snapshots: - supports-color - utf-8-validate - '@storybook/client-api@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/channel-postmessage': 6.5.16 - '@storybook/channels': 6.5.16 - '@storybook/client-logger': 6.5.16 - '@storybook/core-events': 6.5.16 - '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@types/qs': 6.9.14 - '@types/webpack-env': 1.18.4 + "@storybook/client-api@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/channel-postmessage": 6.5.16 + "@storybook/channels": 6.5.16 + "@storybook/client-logger": 6.5.16 + "@storybook/core-events": 6.5.16 + "@storybook/csf": 0.0.2--canary.4566f4d.1 + "@storybook/store": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@types/qs": 6.9.14 + "@types/webpack-env": 1.18.4 core-js: 3.36.1 fast-deep-equal: 3.1.3 global: 4.4.0 @@ -42209,37 +58631,37 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - '@storybook/client-logger@6.5.16': + "@storybook/client-logger@6.5.16": dependencies: core-js: 3.36.1 global: 4.4.0 - '@storybook/client-logger@7.5.3': + "@storybook/client-logger@7.5.3": dependencies: - '@storybook/global': 5.0.0 + "@storybook/global": 5.0.0 - '@storybook/client-logger@7.6.17': + "@storybook/client-logger@7.6.17": dependencies: - '@storybook/global': 5.0.0 + "@storybook/global": 5.0.0 - '@storybook/client-logger@7.6.18': + "@storybook/client-logger@7.6.18": dependencies: - '@storybook/global': 5.0.0 + "@storybook/global": 5.0.0 - '@storybook/client-logger@7.6.20': + "@storybook/client-logger@7.6.20": dependencies: - '@storybook/global': 5.0.0 + "@storybook/global": 5.0.0 - '@storybook/codemod@7.6.17': + "@storybook/codemod@7.6.17": dependencies: - '@babel/core': 7.24.3 - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) - '@babel/types': 7.24.0 - '@storybook/csf': 0.1.3 - '@storybook/csf-tools': 7.6.17 - '@storybook/node-logger': 7.6.17 - '@storybook/types': 7.6.17 - '@types/cross-spawn': 6.0.6 + "@babel/core": 7.24.3 + "@babel/preset-env": 7.24.3(@babel/core@7.24.3) + "@babel/types": 7.24.0 + "@storybook/csf": 0.1.3 + "@storybook/csf-tools": 7.6.17 + "@storybook/node-logger": 7.6.17 + "@storybook/types": 7.6.17 + "@types/cross-spawn": 6.0.6 cross-spawn: 7.0.3 globby: 11.1.0 jscodeshift: 0.15.2(@babel/preset-env@7.24.3(@babel/core@7.24.3)) @@ -42249,16 +58671,16 @@ snapshots: transitivePeerDependencies: - supports-color - '@storybook/codemod@7.6.20': + "@storybook/codemod@7.6.20": dependencies: - '@babel/core': 7.24.3 - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) - '@babel/types': 7.24.0 - '@storybook/csf': 0.1.3 - '@storybook/csf-tools': 7.6.20 - '@storybook/node-logger': 7.6.20 - '@storybook/types': 7.6.20 - '@types/cross-spawn': 6.0.6 + "@babel/core": 7.24.3 + "@babel/preset-env": 7.24.3(@babel/core@7.24.3) + "@babel/types": 7.24.0 + "@storybook/csf": 0.1.3 + "@storybook/csf-tools": 7.6.20 + "@storybook/node-logger": 7.6.20 + "@storybook/types": 7.6.20 + "@types/cross-spawn": 6.0.6 cross-spawn: 7.0.3 globby: 11.1.0 jscodeshift: 0.15.2(@babel/preset-env@7.24.3(@babel/core@7.24.3)) @@ -42268,11 +58690,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@storybook/components@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/components@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/client-logger': 6.5.16 - '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/theming': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/client-logger": 6.5.16 + "@storybook/csf": 0.0.2--canary.4566f4d.1 + "@storybook/theming": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) core-js: 3.36.1 memoizerific: 1.11.3 qs: 6.12.0 @@ -42281,72 +58703,72 @@ snapshots: regenerator-runtime: 0.13.11 util-deprecate: 1.0.2 - '@storybook/components@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/components@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/client-logger': 7.6.17 - '@storybook/csf': 0.1.3 - '@storybook/global': 5.0.0 - '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.6.17 + "@radix-ui/react-select": 1.2.2(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-toolbar": 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/client-logger": 7.6.17 + "@storybook/csf": 0.1.3 + "@storybook/global": 5.0.0 + "@storybook/theming": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/types": 7.6.17 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) use-resize-observer: 9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) util-deprecate: 1.0.2 transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' + - "@types/react" + - "@types/react-dom" - '@storybook/components@7.6.17(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/components@7.6.17(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@radix-ui/react-select': 1.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toolbar': 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/client-logger': 7.6.17 - '@storybook/csf': 0.1.3 - '@storybook/global': 5.0.0 - '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.6.17 + "@radix-ui/react-select": 1.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-toolbar": 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/client-logger": 7.6.17 + "@storybook/csf": 0.1.3 + "@storybook/global": 5.0.0 + "@storybook/theming": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/types": 7.6.17 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) use-resize-observer: 9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) util-deprecate: 1.0.2 transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' + - "@types/react" + - "@types/react-dom" - '@storybook/components@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/components@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@radix-ui/react-select': 1.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@radix-ui/react-toolbar': 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/client-logger': 7.6.20 - '@storybook/csf': 0.1.3 - '@storybook/global': 5.0.0 - '@storybook/theming': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.6.20 + "@radix-ui/react-select": 1.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@radix-ui/react-toolbar": 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/client-logger": 7.6.20 + "@storybook/csf": 0.1.3 + "@storybook/global": 5.0.0 + "@storybook/theming": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/types": 7.6.20 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) use-resize-observer: 9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) util-deprecate: 1.0.2 transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' - - '@storybook/core-client@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack@5.91.0(metro@0.80.8))': - dependencies: - '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/channel-postmessage': 6.5.16 - '@storybook/channel-websocket': 6.5.16 - '@storybook/client-api': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/client-logger': 6.5.16 - '@storybook/core-events': 6.5.16 - '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/preview-web': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/store': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/ui': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + - "@types/react" + - "@types/react-dom" + + "@storybook/core-client@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack@5.91.0(metro@0.80.12))": + dependencies: + "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/channel-postmessage": 6.5.16 + "@storybook/channel-websocket": 6.5.16 + "@storybook/client-api": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/client-logger": 6.5.16 + "@storybook/core-events": 6.5.16 + "@storybook/csf": 0.0.2--canary.4566f4d.1 + "@storybook/preview-web": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/store": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/ui": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.36.1 @@ -42359,29 +58781,29 @@ snapshots: ts-dedent: 2.2.0 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 5.91.0(metro@0.80.8) + webpack: 5.91.0(metro@0.80.12) optionalDependencies: typescript: 5.4.3 - '@storybook/core-client@7.6.17': + "@storybook/core-client@7.6.17": dependencies: - '@storybook/client-logger': 7.6.17 - '@storybook/preview-api': 7.6.17 + "@storybook/client-logger": 7.6.17 + "@storybook/preview-api": 7.6.17 - '@storybook/core-client@7.6.20': + "@storybook/core-client@7.6.20": dependencies: - '@storybook/client-logger': 7.6.20 - '@storybook/preview-api': 7.6.20 + "@storybook/client-logger": 7.6.20 + "@storybook/preview-api": 7.6.20 - '@storybook/core-common@7.6.17': + "@storybook/core-common@7.6.17": dependencies: - '@storybook/core-events': 7.6.17 - '@storybook/node-logger': 7.6.17 - '@storybook/types': 7.6.17 - '@types/find-cache-dir': 3.2.1 - '@types/node': 18.19.26 - '@types/node-fetch': 2.6.11 - '@types/pretty-hrtime': 1.0.3 + "@storybook/core-events": 7.6.17 + "@storybook/node-logger": 7.6.17 + "@storybook/types": 7.6.17 + "@types/find-cache-dir": 3.2.1 + "@types/node": 18.19.26 + "@types/node-fetch": 2.6.11 + "@types/pretty-hrtime": 1.0.3 chalk: 4.1.2 esbuild: 0.18.20 esbuild-register: 3.5.0(esbuild@0.18.20) @@ -42402,15 +58824,15 @@ snapshots: - encoding - supports-color - '@storybook/core-common@7.6.20': + "@storybook/core-common@7.6.20": dependencies: - '@storybook/core-events': 7.6.20 - '@storybook/node-logger': 7.6.20 - '@storybook/types': 7.6.20 - '@types/find-cache-dir': 3.2.1 - '@types/node': 18.19.26 - '@types/node-fetch': 2.6.11 - '@types/pretty-hrtime': 1.0.3 + "@storybook/core-events": 7.6.20 + "@storybook/node-logger": 7.6.20 + "@storybook/types": 7.6.20 + "@types/find-cache-dir": 3.2.1 + "@types/node": 18.19.26 + "@types/node-fetch": 2.6.11 + "@types/pretty-hrtime": 1.0.3 chalk: 4.1.2 esbuild: 0.18.20 esbuild-register: 3.5.0(esbuild@0.18.20) @@ -42431,47 +58853,47 @@ snapshots: - encoding - supports-color - '@storybook/core-events@6.5.16': + "@storybook/core-events@6.5.16": dependencies: core-js: 3.36.1 - '@storybook/core-events@7.5.3': + "@storybook/core-events@7.5.3": dependencies: ts-dedent: 2.2.0 - '@storybook/core-events@7.6.17': + "@storybook/core-events@7.6.17": dependencies: ts-dedent: 2.2.0 - '@storybook/core-events@7.6.18': + "@storybook/core-events@7.6.18": dependencies: ts-dedent: 2.2.0 - '@storybook/core-events@7.6.20': + "@storybook/core-events@7.6.20": dependencies: ts-dedent: 2.2.0 - '@storybook/core-server@7.6.17': - dependencies: - '@aw-web-design/x-default-browser': 1.4.126 - '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-manager': 7.6.17 - '@storybook/channels': 7.6.17 - '@storybook/core-common': 7.6.17 - '@storybook/core-events': 7.6.17 - '@storybook/csf': 0.1.3 - '@storybook/csf-tools': 7.6.17 - '@storybook/docs-mdx': 0.1.0 - '@storybook/global': 5.0.0 - '@storybook/manager': 7.6.17 - '@storybook/node-logger': 7.6.17 - '@storybook/preview-api': 7.6.17 - '@storybook/telemetry': 7.6.17 - '@storybook/types': 7.6.17 - '@types/detect-port': 1.3.5 - '@types/node': 18.19.26 - '@types/pretty-hrtime': 1.0.3 - '@types/semver': 7.5.8 + "@storybook/core-server@7.6.17": + dependencies: + "@aw-web-design/x-default-browser": 1.4.126 + "@discoveryjs/json-ext": 0.5.7 + "@storybook/builder-manager": 7.6.17 + "@storybook/channels": 7.6.17 + "@storybook/core-common": 7.6.17 + "@storybook/core-events": 7.6.17 + "@storybook/csf": 0.1.3 + "@storybook/csf-tools": 7.6.17 + "@storybook/docs-mdx": 0.1.0 + "@storybook/global": 5.0.0 + "@storybook/manager": 7.6.17 + "@storybook/node-logger": 7.6.17 + "@storybook/preview-api": 7.6.17 + "@storybook/telemetry": 7.6.17 + "@storybook/types": 7.6.17 + "@types/detect-port": 1.3.5 + "@types/node": 18.19.26 + "@types/pretty-hrtime": 1.0.3 + "@types/semver": 7.5.8 better-opn: 3.0.2 chalk: 4.1.2 cli-table3: 0.6.4 @@ -42500,27 +58922,27 @@ snapshots: - supports-color - utf-8-validate - '@storybook/core-server@7.6.20': - dependencies: - '@aw-web-design/x-default-browser': 1.4.126 - '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-manager': 7.6.20 - '@storybook/channels': 7.6.20 - '@storybook/core-common': 7.6.20 - '@storybook/core-events': 7.6.20 - '@storybook/csf': 0.1.3 - '@storybook/csf-tools': 7.6.20 - '@storybook/docs-mdx': 0.1.0 - '@storybook/global': 5.0.0 - '@storybook/manager': 7.6.20 - '@storybook/node-logger': 7.6.20 - '@storybook/preview-api': 7.6.20 - '@storybook/telemetry': 7.6.20 - '@storybook/types': 7.6.20 - '@types/detect-port': 1.3.5 - '@types/node': 18.19.26 - '@types/pretty-hrtime': 1.0.3 - '@types/semver': 7.5.8 + "@storybook/core-server@7.6.20": + dependencies: + "@aw-web-design/x-default-browser": 1.4.126 + "@discoveryjs/json-ext": 0.5.7 + "@storybook/builder-manager": 7.6.20 + "@storybook/channels": 7.6.20 + "@storybook/core-common": 7.6.20 + "@storybook/core-events": 7.6.20 + "@storybook/csf": 0.1.3 + "@storybook/csf-tools": 7.6.20 + "@storybook/docs-mdx": 0.1.0 + "@storybook/global": 5.0.0 + "@storybook/manager": 7.6.20 + "@storybook/node-logger": 7.6.20 + "@storybook/preview-api": 7.6.20 + "@storybook/telemetry": 7.6.20 + "@storybook/types": 7.6.20 + "@types/detect-port": 1.3.5 + "@types/node": 18.19.26 + "@types/pretty-hrtime": 1.0.3 + "@types/semver": 7.5.8 better-opn: 3.0.2 chalk: 4.1.2 cli-table3: 0.6.4 @@ -42548,90 +58970,90 @@ snapshots: - supports-color - utf-8-validate - '@storybook/core-webpack@7.6.17': + "@storybook/core-webpack@7.6.17": dependencies: - '@storybook/core-common': 7.6.17 - '@storybook/node-logger': 7.6.17 - '@storybook/types': 7.6.17 - '@types/node': 18.19.26 + "@storybook/core-common": 7.6.17 + "@storybook/node-logger": 7.6.17 + "@storybook/types": 7.6.17 + "@types/node": 18.19.26 ts-dedent: 2.2.0 transitivePeerDependencies: - encoding - supports-color - '@storybook/core-webpack@7.6.20': + "@storybook/core-webpack@7.6.20": dependencies: - '@storybook/core-common': 7.6.20 - '@storybook/node-logger': 7.6.20 - '@storybook/types': 7.6.20 - '@types/node': 18.19.26 + "@storybook/core-common": 7.6.20 + "@storybook/node-logger": 7.6.20 + "@storybook/types": 7.6.20 + "@types/node": 18.19.26 ts-dedent: 2.2.0 transitivePeerDependencies: - encoding - supports-color - '@storybook/csf-plugin@7.6.17': + "@storybook/csf-plugin@7.6.17": dependencies: - '@storybook/csf-tools': 7.6.17 + "@storybook/csf-tools": 7.6.17 unplugin: 1.10.0 transitivePeerDependencies: - supports-color - '@storybook/csf-plugin@7.6.20': + "@storybook/csf-plugin@7.6.20": dependencies: - '@storybook/csf-tools': 7.6.20 + "@storybook/csf-tools": 7.6.20 unplugin: 1.10.0 transitivePeerDependencies: - supports-color - '@storybook/csf-tools@7.6.17': + "@storybook/csf-tools@7.6.17": dependencies: - '@babel/generator': 7.24.1 - '@babel/parser': 7.24.1 - '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 - '@storybook/csf': 0.1.3 - '@storybook/types': 7.6.17 + "@babel/generator": 7.24.1 + "@babel/parser": 7.24.1 + "@babel/traverse": 7.24.1 + "@babel/types": 7.24.0 + "@storybook/csf": 0.1.3 + "@storybook/types": 7.6.17 fs-extra: 11.2.0 recast: 0.23.6 ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color - '@storybook/csf-tools@7.6.20': + "@storybook/csf-tools@7.6.20": dependencies: - '@babel/generator': 7.24.1 - '@babel/parser': 7.24.1 - '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 - '@storybook/csf': 0.1.3 - '@storybook/types': 7.6.20 + "@babel/generator": 7.24.1 + "@babel/parser": 7.24.1 + "@babel/traverse": 7.24.1 + "@babel/types": 7.24.0 + "@storybook/csf": 0.1.3 + "@storybook/types": 7.6.20 fs-extra: 11.2.0 recast: 0.23.6 ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color - '@storybook/csf@0.0.1': + "@storybook/csf@0.0.1": dependencies: lodash: 4.17.21 - '@storybook/csf@0.0.2--canary.4566f4d.1': + "@storybook/csf@0.0.2--canary.4566f4d.1": dependencies: lodash: 4.17.21 - '@storybook/csf@0.1.3': + "@storybook/csf@0.1.3": dependencies: type-fest: 2.19.0 - '@storybook/docs-mdx@0.1.0': {} + "@storybook/docs-mdx@0.1.0": {} - '@storybook/docs-tools@7.6.17': + "@storybook/docs-tools@7.6.17": dependencies: - '@storybook/core-common': 7.6.17 - '@storybook/preview-api': 7.6.17 - '@storybook/types': 7.6.17 - '@types/doctrine': 0.0.3 + "@storybook/core-common": 7.6.17 + "@storybook/preview-api": 7.6.17 + "@storybook/types": 7.6.17 + "@types/doctrine": 0.0.3 assert: 2.1.0 doctrine: 3.0.0 lodash: 4.17.21 @@ -42639,12 +59061,12 @@ snapshots: - encoding - supports-color - '@storybook/docs-tools@7.6.20': + "@storybook/docs-tools@7.6.20": dependencies: - '@storybook/core-common': 7.6.20 - '@storybook/preview-api': 7.6.20 - '@storybook/types': 7.6.20 - '@types/doctrine': 0.0.3 + "@storybook/core-common": 7.6.20 + "@storybook/preview-api": 7.6.20 + "@storybook/types": 7.6.20 + "@types/doctrine": 0.0.3 assert: 2.1.0 doctrine: 3.0.0 lodash: 4.17.21 @@ -42652,18 +59074,18 @@ snapshots: - encoding - supports-color - '@storybook/global@5.0.0': {} + "@storybook/global@5.0.0": {} - '@storybook/manager-api@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/manager-api@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/channels': 7.5.3 - '@storybook/client-logger': 7.5.3 - '@storybook/core-events': 7.5.3 - '@storybook/csf': 0.1.3 - '@storybook/global': 5.0.0 - '@storybook/router': 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/theming': 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.5.3 + "@storybook/channels": 7.5.3 + "@storybook/client-logger": 7.5.3 + "@storybook/core-events": 7.5.3 + "@storybook/csf": 0.1.3 + "@storybook/global": 5.0.0 + "@storybook/router": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/theming": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/types": 7.5.3 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -42674,16 +59096,16 @@ snapshots: telejson: 7.2.0 ts-dedent: 2.2.0 - '@storybook/manager-api@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/manager-api@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/channels': 7.6.17 - '@storybook/client-logger': 7.6.17 - '@storybook/core-events': 7.6.17 - '@storybook/csf': 0.1.3 - '@storybook/global': 5.0.0 - '@storybook/router': 7.6.17 - '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.6.17 + "@storybook/channels": 7.6.17 + "@storybook/client-logger": 7.6.17 + "@storybook/core-events": 7.6.17 + "@storybook/csf": 0.1.3 + "@storybook/global": 5.0.0 + "@storybook/router": 7.6.17 + "@storybook/theming": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/types": 7.6.17 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -42694,16 +59116,16 @@ snapshots: - react - react-dom - '@storybook/manager-api@7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/manager-api@7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/channels': 7.6.18 - '@storybook/client-logger': 7.6.18 - '@storybook/core-events': 7.6.18 - '@storybook/csf': 0.1.3 - '@storybook/global': 5.0.0 - '@storybook/router': 7.6.18 - '@storybook/theming': 7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.6.18 + "@storybook/channels": 7.6.18 + "@storybook/client-logger": 7.6.18 + "@storybook/core-events": 7.6.18 + "@storybook/csf": 0.1.3 + "@storybook/global": 5.0.0 + "@storybook/router": 7.6.18 + "@storybook/theming": 7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/types": 7.6.18 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -42714,16 +59136,16 @@ snapshots: - react - react-dom - '@storybook/manager-api@7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/manager-api@7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/channels': 7.6.20 - '@storybook/client-logger': 7.6.20 - '@storybook/core-events': 7.6.20 - '@storybook/csf': 0.1.3 - '@storybook/global': 5.0.0 - '@storybook/router': 7.6.20 - '@storybook/theming': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.6.20 + "@storybook/channels": 7.6.20 + "@storybook/client-logger": 7.6.20 + "@storybook/core-events": 7.6.20 + "@storybook/csf": 0.1.3 + "@storybook/global": 5.0.0 + "@storybook/router": 7.6.20 + "@storybook/theming": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/types": 7.6.20 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -42734,47 +59156,47 @@ snapshots: - react - react-dom - '@storybook/manager@7.6.17': {} + "@storybook/manager@7.6.17": {} - '@storybook/manager@7.6.20': {} + "@storybook/manager@7.6.20": {} - '@storybook/mdx2-csf@1.1.0': {} + "@storybook/mdx2-csf@1.1.0": {} - '@storybook/node-logger@7.6.17': {} + "@storybook/node-logger@7.6.17": {} - '@storybook/node-logger@7.6.20': {} + "@storybook/node-logger@7.6.20": {} - '@storybook/postinstall@7.6.17': {} + "@storybook/postinstall@7.6.17": {} - '@storybook/postinstall@7.6.20': {} + "@storybook/postinstall@7.6.20": {} - '@storybook/preset-react-webpack@7.6.17(@babel/core@7.24.3)(esbuild@0.19.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)': + "@storybook/preset-react-webpack@7.6.17(@babel/core@7.24.3)(esbuild@0.19.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)": dependencies: - '@babel/preset-flow': 7.24.1(@babel/core@7.24.3) - '@babel/preset-react': 7.24.1(@babel/core@7.24.3) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.94.0(esbuild@0.19.12)) - '@storybook/core-webpack': 7.6.17 - '@storybook/docs-tools': 7.6.17 - '@storybook/node-logger': 7.6.17 - '@storybook/react': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) - '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.94.0(esbuild@0.19.12)) - '@types/node': 18.19.26 - '@types/semver': 7.5.8 + "@babel/preset-flow": 7.24.1(@babel/core@7.24.3) + "@babel/preset-react": 7.24.1(@babel/core@7.24.3) + "@pmmmwh/react-refresh-webpack-plugin": 0.5.11(react-refresh@0.14.2)(webpack@5.94.0(esbuild@0.19.12)) + "@storybook/core-webpack": 7.6.17 + "@storybook/docs-tools": 7.6.17 + "@storybook/node-logger": 7.6.17 + "@storybook/react": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) + "@storybook/react-docgen-typescript-plugin": 1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.94.0(esbuild@0.19.12)) + "@types/node": 18.19.26 + "@types/semver": 7.5.8 babel-plugin-add-react-displayname: 0.0.5 fs-extra: 11.2.0 magic-string: 0.30.8 react: 18.2.0 react-docgen: 7.0.3 react-dom: 18.2.0(react@18.2.0) - react-refresh: 0.14.0 + react-refresh: 0.14.2 semver: 7.6.3 webpack: 5.94.0(esbuild@0.19.12) optionalDependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 typescript: 5.4.3 transitivePeerDependencies: - - '@swc/core' - - '@types/webpack' + - "@swc/core" + - "@types/webpack" - encoding - esbuild - metro @@ -42787,33 +59209,33 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@storybook/preset-react-webpack@7.6.20(@babel/core@7.24.3)(metro@0.80.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.8)))': - dependencies: - '@babel/preset-flow': 7.24.1(@babel/core@7.24.3) - '@babel/preset-react': 7.24.1(@babel/core@7.24.3) - '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.8)))(webpack@5.94.0(metro@0.80.8)) - '@storybook/core-webpack': 7.6.20 - '@storybook/docs-tools': 7.6.20 - '@storybook/node-logger': 7.6.20 - '@storybook/react': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) - '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.94.0(metro@0.80.8)) - '@types/node': 18.19.26 - '@types/semver': 7.5.8 + "@storybook/preset-react-webpack@7.6.20(@babel/core@7.24.3)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12)))": + dependencies: + "@babel/preset-flow": 7.24.1(@babel/core@7.24.3) + "@babel/preset-react": 7.24.1(@babel/core@7.24.3) + "@pmmmwh/react-refresh-webpack-plugin": 0.5.11(react-refresh@0.14.2)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12)))(webpack@5.94.0(metro@0.80.12)) + "@storybook/core-webpack": 7.6.20 + "@storybook/docs-tools": 7.6.20 + "@storybook/node-logger": 7.6.20 + "@storybook/react": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) + "@storybook/react-docgen-typescript-plugin": 1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.94.0(metro@0.80.12)) + "@types/node": 18.19.26 + "@types/semver": 7.5.8 babel-plugin-add-react-displayname: 0.0.5 fs-extra: 11.2.0 magic-string: 0.30.8 react: 18.2.0 react-docgen: 7.0.3 react-dom: 18.2.0(react@18.2.0) - react-refresh: 0.14.0 + react-refresh: 0.14.2 semver: 7.6.3 - webpack: 5.94.0(metro@0.80.8) + webpack: 5.94.0(metro@0.80.12) optionalDependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 typescript: 5.4.3 transitivePeerDependencies: - - '@swc/core' - - '@types/webpack' + - "@swc/core" + - "@types/webpack" - encoding - esbuild - metro @@ -42826,15 +59248,15 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@storybook/preview-api@7.6.17': + "@storybook/preview-api@7.6.17": dependencies: - '@storybook/channels': 7.6.17 - '@storybook/client-logger': 7.6.17 - '@storybook/core-events': 7.6.17 - '@storybook/csf': 0.1.3 - '@storybook/global': 5.0.0 - '@storybook/types': 7.6.17 - '@types/qs': 6.9.14 + "@storybook/channels": 7.6.17 + "@storybook/client-logger": 7.6.17 + "@storybook/core-events": 7.6.17 + "@storybook/csf": 0.1.3 + "@storybook/global": 5.0.0 + "@storybook/types": 7.6.17 + "@types/qs": 6.9.14 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -42843,15 +59265,15 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - '@storybook/preview-api@7.6.20': + "@storybook/preview-api@7.6.20": dependencies: - '@storybook/channels': 7.6.20 - '@storybook/client-logger': 7.6.20 - '@storybook/core-events': 7.6.20 - '@storybook/csf': 0.1.3 - '@storybook/global': 5.0.0 - '@storybook/types': 7.6.20 - '@types/qs': 6.9.14 + "@storybook/channels": 7.6.20 + "@storybook/client-logger": 7.6.20 + "@storybook/core-events": 7.6.20 + "@storybook/csf": 0.1.3 + "@storybook/global": 5.0.0 + "@storybook/types": 7.6.20 + "@types/qs": 6.9.14 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -42860,14 +59282,14 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - '@storybook/preview-web@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/preview-web@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/channel-postmessage': 6.5.16 - '@storybook/client-logger': 6.5.16 - '@storybook/core-events': 6.5.16 - '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/store': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/channel-postmessage": 6.5.16 + "@storybook/client-logger": 6.5.16 + "@storybook/core-events": 6.5.16 + "@storybook/csf": 0.0.2--canary.4566f4d.1 + "@storybook/store": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) ansi-to-html: 0.6.15 core-js: 3.36.1 global: 4.4.0 @@ -42881,11 +59303,11 @@ snapshots: unfetch: 4.2.0 util-deprecate: 1.0.2 - '@storybook/preview@7.6.17': {} + "@storybook/preview@7.6.17": {} - '@storybook/preview@7.6.20': {} + "@storybook/preview@7.6.20": {} - '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.94.0(esbuild@0.19.12))': + "@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.94.0(esbuild@0.19.12))": dependencies: debug: 4.3.4 endent: 2.1.0 @@ -42899,7 +59321,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.94.0(metro@0.80.8))': + "@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.94.0(metro@0.80.12))": dependencies: debug: 4.3.4 endent: 2.1.0 @@ -42909,38 +59331,38 @@ snapshots: react-docgen-typescript: 2.2.2(typescript@5.4.3) tslib: 2.6.2 typescript: 5.4.3 - webpack: 5.94.0(metro@0.80.8) + webpack: 5.94.0(metro@0.80.12) transitivePeerDependencies: - supports-color - '@storybook/react-dom-shim@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/react-dom-shim@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@storybook/react-dom-shim@7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/react-dom-shim@7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@storybook/react-native-theming@6.5.7(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0)': + "@storybook/react-native-theming@6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)": dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) - - '@storybook/react-native@6.5.7(@react-native-async-storage/async-storage@1.17.12(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0)))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack@5.91.0(metro@0.80.8))': - dependencies: - '@react-native-async-storage/async-storage': 1.17.12(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0)) - '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/channel-websocket': 6.5.16 - '@storybook/channels': 6.5.16 - '@storybook/client-api': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/client-logger': 6.5.16 - '@storybook/core-client': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack@5.91.0(metro@0.80.8)) - '@storybook/core-events': 6.5.16 - '@storybook/csf': 0.0.2--canary.4566f4d.1 - '@storybook/preview-web': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/react-native-theming': 6.5.7(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) + + "@storybook/react-native@6.5.7(@react-native-async-storage/async-storage@1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0)))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react-native-safe-area-context@4.10.9(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack@5.91.0(metro@0.80.12))": + dependencies: + "@react-native-async-storage/async-storage": 1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0)) + "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/channel-websocket": 6.5.16 + "@storybook/channels": 6.5.16 + "@storybook/client-api": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/client-logger": 6.5.16 + "@storybook/core-client": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack@5.91.0(metro@0.80.12)) + "@storybook/core-events": 6.5.16 + "@storybook/csf": 0.0.2--canary.4566f4d.1 + "@storybook/preview-web": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/react-native-theming": 6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) chokidar: 3.6.0 commander: 8.3.0 deepmerge: 4.3.1 @@ -42948,32 +59370,32 @@ snapshots: jotai: 2.7.1(@types/react@18.2.73)(react@18.2.0) prettier: 2.8.8 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) - react-native-safe-area-context: 4.9.0(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) + react-native-safe-area-context: 4.10.9(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react-native-swipe-gestures: 1.0.5 util: 0.12.5 transitivePeerDependencies: - - '@types/react' + - "@types/react" - react-dom - typescript - webpack - '@storybook/react-webpack5@7.6.17(@babel/core@7.24.3)(esbuild@0.19.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)': + "@storybook/react-webpack5@7.6.17(@babel/core@7.24.3)(esbuild@0.19.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)": dependencies: - '@storybook/builder-webpack5': 7.6.17(esbuild@0.19.12)(typescript@5.4.3) - '@storybook/preset-react-webpack': 7.6.17(@babel/core@7.24.3)(esbuild@0.19.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) - '@storybook/react': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) - '@types/node': 18.19.26 + "@storybook/builder-webpack5": 7.6.17(esbuild@0.19.12)(typescript@5.4.3) + "@storybook/preset-react-webpack": 7.6.17(@babel/core@7.24.3)(esbuild@0.19.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) + "@storybook/react": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) + "@types/node": 18.19.26 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 typescript: 5.4.3 transitivePeerDependencies: - - '@rspack/core' - - '@swc/core' - - '@swc/helpers' - - '@types/webpack' + - "@rspack/core" + - "@swc/core" + - "@swc/helpers" + - "@types/webpack" - encoding - esbuild - metro @@ -42986,22 +59408,22 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@storybook/react-webpack5@7.6.20(@babel/core@7.24.3)(metro@0.80.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.8)))': + "@storybook/react-webpack5@7.6.20(@babel/core@7.24.3)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12)))": dependencies: - '@storybook/builder-webpack5': 7.6.20(metro@0.80.8)(typescript@5.4.3) - '@storybook/preset-react-webpack': 7.6.20(@babel/core@7.24.3)(metro@0.80.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.8))) - '@storybook/react': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) - '@types/node': 18.19.26 + "@storybook/builder-webpack5": 7.6.20(metro@0.80.12)(typescript@5.4.3) + "@storybook/preset-react-webpack": 7.6.20(@babel/core@7.24.3)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12))) + "@storybook/react": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) + "@types/node": 18.19.26 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 typescript: 5.4.3 transitivePeerDependencies: - - '@rspack/core' - - '@swc/core' - - '@swc/helpers' - - '@types/webpack' + - "@rspack/core" + - "@swc/core" + - "@swc/helpers" + - "@types/webpack" - encoding - esbuild - metro @@ -43014,18 +59436,18 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - '@storybook/react@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)': - dependencies: - '@storybook/client-logger': 7.6.17 - '@storybook/core-client': 7.6.17 - '@storybook/docs-tools': 7.6.17 - '@storybook/global': 5.0.0 - '@storybook/preview-api': 7.6.17 - '@storybook/react-dom-shim': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.6.17 - '@types/escodegen': 0.0.6 - '@types/estree': 0.0.51 - '@types/node': 18.19.26 + "@storybook/react@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)": + dependencies: + "@storybook/client-logger": 7.6.17 + "@storybook/core-client": 7.6.17 + "@storybook/docs-tools": 7.6.17 + "@storybook/global": 5.0.0 + "@storybook/preview-api": 7.6.17 + "@storybook/react-dom-shim": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/types": 7.6.17 + "@types/escodegen": 0.0.6 + "@types/estree": 0.0.51 + "@types/node": 18.19.26 acorn: 7.4.1 acorn-jsx: 5.3.2(acorn@7.4.1) acorn-walk: 7.2.0 @@ -43045,18 +59467,18 @@ snapshots: - encoding - supports-color - '@storybook/react@7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)': - dependencies: - '@storybook/client-logger': 7.6.20 - '@storybook/core-client': 7.6.20 - '@storybook/docs-tools': 7.6.20 - '@storybook/global': 5.0.0 - '@storybook/preview-api': 7.6.20 - '@storybook/react-dom-shim': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/types': 7.6.20 - '@types/escodegen': 0.0.6 - '@types/estree': 0.0.51 - '@types/node': 18.19.26 + "@storybook/react@7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)": + dependencies: + "@storybook/client-logger": 7.6.20 + "@storybook/core-client": 7.6.20 + "@storybook/docs-tools": 7.6.20 + "@storybook/global": 5.0.0 + "@storybook/preview-api": 7.6.20 + "@storybook/react-dom-shim": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/types": 7.6.20 + "@types/escodegen": 0.0.6 + "@types/estree": 0.0.51 + "@types/node": 18.19.26 acorn: 7.4.1 acorn-jsx: 5.3.2(acorn@7.4.1) acorn-walk: 7.2.0 @@ -43076,9 +59498,9 @@ snapshots: - encoding - supports-color - '@storybook/router@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/router@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/client-logger': 6.5.16 + "@storybook/client-logger": 6.5.16 core-js: 3.36.1 memoizerific: 1.11.3 qs: 6.12.0 @@ -43086,43 +59508,43 @@ snapshots: react-dom: 18.2.0(react@18.2.0) regenerator-runtime: 0.13.11 - '@storybook/router@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/router@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/client-logger': 7.5.3 + "@storybook/client-logger": 7.5.3 memoizerific: 1.11.3 qs: 6.12.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@storybook/router@7.6.17': + "@storybook/router@7.6.17": dependencies: - '@storybook/client-logger': 7.6.17 + "@storybook/client-logger": 7.6.17 memoizerific: 1.11.3 qs: 6.12.0 - '@storybook/router@7.6.18': + "@storybook/router@7.6.18": dependencies: - '@storybook/client-logger': 7.6.18 + "@storybook/client-logger": 7.6.18 memoizerific: 1.11.3 qs: 6.12.0 - '@storybook/router@7.6.20': + "@storybook/router@7.6.20": dependencies: - '@storybook/client-logger': 7.6.20 + "@storybook/client-logger": 7.6.20 memoizerific: 1.11.3 qs: 6.12.0 - '@storybook/semver@7.3.2': + "@storybook/semver@7.3.2": dependencies: core-js: 3.36.1 find-up: 4.1.0 - '@storybook/store@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/store@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/client-logger': 6.5.16 - '@storybook/core-events': 6.5.16 - '@storybook/csf': 0.0.2--canary.4566f4d.1 + "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/client-logger": 6.5.16 + "@storybook/core-events": 6.5.16 + "@storybook/csf": 0.0.2--canary.4566f4d.1 core-js: 3.36.1 fast-deep-equal: 3.1.3 global: 4.4.0 @@ -43137,11 +59559,11 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - '@storybook/telemetry@7.6.17': + "@storybook/telemetry@7.6.17": dependencies: - '@storybook/client-logger': 7.6.17 - '@storybook/core-common': 7.6.17 - '@storybook/csf-tools': 7.6.17 + "@storybook/client-logger": 7.6.17 + "@storybook/core-common": 7.6.17 + "@storybook/csf-tools": 7.6.17 chalk: 4.1.2 detect-package-manager: 2.0.1 fetch-retry: 5.0.6 @@ -43151,11 +59573,11 @@ snapshots: - encoding - supports-color - '@storybook/telemetry@7.6.20': + "@storybook/telemetry@7.6.20": dependencies: - '@storybook/client-logger': 7.6.20 - '@storybook/core-common': 7.6.20 - '@storybook/csf-tools': 7.6.20 + "@storybook/client-logger": 7.6.20 + "@storybook/core-common": 7.6.20 + "@storybook/csf-tools": 7.6.20 chalk: 4.1.2 detect-package-manager: 2.0.1 fetch-retry: 5.0.6 @@ -43165,90 +59587,90 @@ snapshots: - encoding - supports-color - '@storybook/theming@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/theming@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@storybook/client-logger': 6.5.16 + "@storybook/client-logger": 6.5.16 core-js: 3.36.1 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) regenerator-runtime: 0.13.11 - '@storybook/theming@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/theming@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) - '@storybook/client-logger': 7.5.3 - '@storybook/global': 5.0.0 + "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) + "@storybook/client-logger": 7.5.3 + "@storybook/global": 5.0.0 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@storybook/theming@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/theming@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) - '@storybook/client-logger': 7.6.17 - '@storybook/global': 5.0.0 + "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) + "@storybook/client-logger": 7.6.17 + "@storybook/global": 5.0.0 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@storybook/theming@7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/theming@7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) - '@storybook/client-logger': 7.6.18 - '@storybook/global': 5.0.0 + "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) + "@storybook/client-logger": 7.6.18 + "@storybook/global": 5.0.0 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@storybook/theming@7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@storybook/theming@7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) - '@storybook/client-logger': 7.6.20 - '@storybook/global': 5.0.0 + "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) + "@storybook/client-logger": 7.6.20 + "@storybook/global": 5.0.0 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@storybook/types@7.5.3': + "@storybook/types@7.5.3": dependencies: - '@storybook/channels': 7.5.3 - '@types/babel__core': 7.20.5 - '@types/express': 4.17.21 + "@storybook/channels": 7.5.3 + "@types/babel__core": 7.20.5 + "@types/express": 4.17.21 file-system-cache: 2.3.0 - '@storybook/types@7.6.17': + "@storybook/types@7.6.17": dependencies: - '@storybook/channels': 7.6.17 - '@types/babel__core': 7.20.5 - '@types/express': 4.17.21 + "@storybook/channels": 7.6.17 + "@types/babel__core": 7.20.5 + "@types/express": 4.17.21 file-system-cache: 2.3.0 - '@storybook/types@7.6.18': + "@storybook/types@7.6.18": dependencies: - '@storybook/channels': 7.6.18 - '@types/babel__core': 7.20.5 - '@types/express': 4.17.21 + "@storybook/channels": 7.6.18 + "@types/babel__core": 7.20.5 + "@types/express": 4.17.21 file-system-cache: 2.3.0 - '@storybook/types@7.6.20': + "@storybook/types@7.6.20": dependencies: - '@storybook/channels': 7.6.20 - '@types/babel__core': 7.20.5 - '@types/express': 4.17.21 + "@storybook/channels": 7.6.20 + "@types/babel__core": 7.20.5 + "@types/express": 4.17.21 file-system-cache: 2.3.0 - '@storybook/ui@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/api': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/channels': 6.5.16 - '@storybook/client-logger': 6.5.16 - '@storybook/components': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/core-events': 6.5.16 - '@storybook/router': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/semver': 7.3.2 - '@storybook/theming': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/ui@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + dependencies: + "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/api": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/channels": 6.5.16 + "@storybook/client-logger": 6.5.16 + "@storybook/components": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/core-events": 6.5.16 + "@storybook/router": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/semver": 7.3.2 + "@storybook/theming": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) core-js: 3.36.1 memoizerific: 1.11.3 qs: 6.12.0 @@ -43257,7 +59679,7 @@ snapshots: regenerator-runtime: 0.13.11 resolve-from: 5.0.0 - '@stricahq/bip32ed25519@1.0.4': + "@stricahq/bip32ed25519@1.0.4": dependencies: blakejs: 1.2.1 bn.js: 5.2.1 @@ -43267,14 +59689,14 @@ snapshots: hash.js: 1.1.7 pbkdf2: 3.1.2 - '@stricahq/cbors@1.0.2': + "@stricahq/cbors@1.0.2": dependencies: bignumber.js: 9.1.2 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) - '@stricahq/typhonjs@2.0.0': + "@stricahq/typhonjs@2.0.0": dependencies: - '@stricahq/cbors': 1.0.2 + "@stricahq/cbors": 1.0.2 bech32: 2.0.0 bignumber.js: 9.1.2 blakejs: 1.2.1 @@ -43282,357 +59704,357 @@ snapshots: buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) lodash: 4.17.21 - '@styled-system/background@5.1.2': + "@styled-system/background@5.1.2": dependencies: - '@styled-system/core': 5.1.2 + "@styled-system/core": 5.1.2 - '@styled-system/border@5.1.5': + "@styled-system/border@5.1.5": dependencies: - '@styled-system/core': 5.1.2 + "@styled-system/core": 5.1.2 - '@styled-system/color@5.1.2': + "@styled-system/color@5.1.2": dependencies: - '@styled-system/core': 5.1.2 + "@styled-system/core": 5.1.2 - '@styled-system/core@5.1.2': + "@styled-system/core@5.1.2": dependencies: object-assign: 4.1.1 - '@styled-system/css@5.1.5': {} + "@styled-system/css@5.1.5": {} - '@styled-system/flexbox@5.1.2': + "@styled-system/flexbox@5.1.2": dependencies: - '@styled-system/core': 5.1.2 + "@styled-system/core": 5.1.2 - '@styled-system/grid@5.1.2': + "@styled-system/grid@5.1.2": dependencies: - '@styled-system/core': 5.1.2 + "@styled-system/core": 5.1.2 - '@styled-system/layout@5.1.2': + "@styled-system/layout@5.1.2": dependencies: - '@styled-system/core': 5.1.2 + "@styled-system/core": 5.1.2 - '@styled-system/position@5.1.2': + "@styled-system/position@5.1.2": dependencies: - '@styled-system/core': 5.1.2 + "@styled-system/core": 5.1.2 - '@styled-system/shadow@5.1.2': + "@styled-system/shadow@5.1.2": dependencies: - '@styled-system/core': 5.1.2 + "@styled-system/core": 5.1.2 - '@styled-system/space@5.1.2': + "@styled-system/space@5.1.2": dependencies: - '@styled-system/core': 5.1.2 + "@styled-system/core": 5.1.2 - '@styled-system/typography@5.1.2': + "@styled-system/typography@5.1.2": dependencies: - '@styled-system/core': 5.1.2 + "@styled-system/core": 5.1.2 - '@styled-system/variant@5.1.5': + "@styled-system/variant@5.1.5": dependencies: - '@styled-system/core': 5.1.2 - '@styled-system/css': 5.1.5 + "@styled-system/core": 5.1.2 + "@styled-system/css": 5.1.5 - '@substrate/connect-extension-protocol@2.0.0': + "@substrate/connect-extension-protocol@2.0.0": optional: true - '@substrate/connect-known-chains@1.1.6': + "@substrate/connect-known-chains@1.1.6": optional: true - '@substrate/connect@0.8.10': + "@substrate/connect@0.8.10": dependencies: - '@substrate/connect-extension-protocol': 2.0.0 - '@substrate/connect-known-chains': 1.1.6 - '@substrate/light-client-extension-helpers': 0.0.6(smoldot@2.0.22) + "@substrate/connect-extension-protocol": 2.0.0 + "@substrate/connect-known-chains": 1.1.6 + "@substrate/light-client-extension-helpers": 0.0.6(smoldot@2.0.22) smoldot: 2.0.22 transitivePeerDependencies: - bufferutil - utf-8-validate optional: true - '@substrate/light-client-extension-helpers@0.0.6(smoldot@2.0.22)': + "@substrate/light-client-extension-helpers@0.0.6(smoldot@2.0.22)": dependencies: - '@polkadot-api/json-rpc-provider': 0.0.1 - '@polkadot-api/json-rpc-provider-proxy': 0.0.1 - '@polkadot-api/observable-client': 0.1.0(rxjs@7.8.1) - '@polkadot-api/substrate-client': 0.0.1 - '@substrate/connect-extension-protocol': 2.0.0 - '@substrate/connect-known-chains': 1.1.6 + "@polkadot-api/json-rpc-provider": 0.0.1 + "@polkadot-api/json-rpc-provider-proxy": 0.0.1 + "@polkadot-api/observable-client": 0.1.0(rxjs@7.8.1) + "@polkadot-api/substrate-client": 0.0.1 + "@substrate/connect-extension-protocol": 2.0.0 + "@substrate/connect-known-chains": 1.1.6 rxjs: 7.8.1 smoldot: 2.0.22 optional: true - '@substrate/ss58-registry@1.47.0': {} + "@substrate/ss58-registry@1.47.0": {} - '@surma/rollup-plugin-off-main-thread@2.2.3': + "@surma/rollup-plugin-off-main-thread@2.2.3": dependencies: ejs: 3.1.9 json5: 2.2.3 magic-string: 0.25.9 string.prototype.matchall: 4.0.11 - '@svgr/babel-plugin-add-jsx-attribute@5.4.0': {} + "@svgr/babel-plugin-add-jsx-attribute@5.4.0": {} - '@svgr/babel-plugin-remove-jsx-attribute@5.4.0': {} + "@svgr/babel-plugin-remove-jsx-attribute@5.4.0": {} - '@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1': {} + "@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1": {} - '@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1': {} + "@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1": {} - '@svgr/babel-plugin-svg-dynamic-title@5.4.0': {} + "@svgr/babel-plugin-svg-dynamic-title@5.4.0": {} - '@svgr/babel-plugin-svg-em-dimensions@5.4.0': {} + "@svgr/babel-plugin-svg-em-dimensions@5.4.0": {} - '@svgr/babel-plugin-transform-react-native-svg@5.4.0': {} + "@svgr/babel-plugin-transform-react-native-svg@5.4.0": {} - '@svgr/babel-plugin-transform-svg-component@5.5.0': {} + "@svgr/babel-plugin-transform-svg-component@5.5.0": {} - '@svgr/babel-preset@5.5.0': + "@svgr/babel-preset@5.5.0": dependencies: - '@svgr/babel-plugin-add-jsx-attribute': 5.4.0 - '@svgr/babel-plugin-remove-jsx-attribute': 5.4.0 - '@svgr/babel-plugin-remove-jsx-empty-expression': 5.0.1 - '@svgr/babel-plugin-replace-jsx-attribute-value': 5.0.1 - '@svgr/babel-plugin-svg-dynamic-title': 5.4.0 - '@svgr/babel-plugin-svg-em-dimensions': 5.4.0 - '@svgr/babel-plugin-transform-react-native-svg': 5.4.0 - '@svgr/babel-plugin-transform-svg-component': 5.5.0 + "@svgr/babel-plugin-add-jsx-attribute": 5.4.0 + "@svgr/babel-plugin-remove-jsx-attribute": 5.4.0 + "@svgr/babel-plugin-remove-jsx-empty-expression": 5.0.1 + "@svgr/babel-plugin-replace-jsx-attribute-value": 5.0.1 + "@svgr/babel-plugin-svg-dynamic-title": 5.4.0 + "@svgr/babel-plugin-svg-em-dimensions": 5.4.0 + "@svgr/babel-plugin-transform-react-native-svg": 5.4.0 + "@svgr/babel-plugin-transform-svg-component": 5.5.0 - '@svgr/core@5.5.0': + "@svgr/core@5.5.0": dependencies: - '@svgr/plugin-jsx': 5.5.0 + "@svgr/plugin-jsx": 5.5.0 camelcase: 6.3.0 cosmiconfig: 7.1.0 transitivePeerDependencies: - supports-color - '@svgr/core@5.5.0(@svgr/plugin-svgo@5.5.0)': + "@svgr/core@5.5.0(@svgr/plugin-svgo@5.5.0)": dependencies: - '@svgr/plugin-jsx': 5.5.0 + "@svgr/plugin-jsx": 5.5.0 camelcase: 6.3.0 cosmiconfig: 7.1.0 optionalDependencies: - '@svgr/plugin-svgo': 5.5.0 + "@svgr/plugin-svgo": 5.5.0 transitivePeerDependencies: - supports-color - '@svgr/hast-util-to-babel-ast@5.5.0': + "@svgr/hast-util-to-babel-ast@5.5.0": dependencies: - '@babel/types': 7.24.0 + "@babel/types": 7.24.0 - '@svgr/plugin-jsx@5.5.0': + "@svgr/plugin-jsx@5.5.0": dependencies: - '@babel/core': 7.24.3 - '@svgr/babel-preset': 5.5.0 - '@svgr/hast-util-to-babel-ast': 5.5.0 + "@babel/core": 7.24.3 + "@svgr/babel-preset": 5.5.0 + "@svgr/hast-util-to-babel-ast": 5.5.0 svg-parser: 2.0.4 transitivePeerDependencies: - supports-color - '@svgr/plugin-svgo@5.5.0': + "@svgr/plugin-svgo@5.5.0": dependencies: cosmiconfig: 7.1.0 deepmerge: 4.3.1 svgo: 1.3.2 - '@svgr/webpack@5.5.0': + "@svgr/webpack@5.5.0": dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-transform-react-constant-elements': 7.24.1(@babel/core@7.24.3) - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) - '@babel/preset-react': 7.24.1(@babel/core@7.24.3) - '@svgr/core': 5.5.0(@svgr/plugin-svgo@5.5.0) - '@svgr/plugin-jsx': 5.5.0 - '@svgr/plugin-svgo': 5.5.0 + "@babel/core": 7.24.3 + "@babel/plugin-transform-react-constant-elements": 7.24.1(@babel/core@7.24.3) + "@babel/preset-env": 7.24.3(@babel/core@7.24.3) + "@babel/preset-react": 7.24.1(@babel/core@7.24.3) + "@svgr/core": 5.5.0(@svgr/plugin-svgo@5.5.0) + "@svgr/plugin-jsx": 5.5.0 + "@svgr/plugin-svgo": 5.5.0 loader-utils: 2.0.4 transitivePeerDependencies: - supports-color - '@swc/core-darwin-arm64@1.4.11': + "@swc/core-darwin-arm64@1.4.11": optional: true - '@swc/core-darwin-x64@1.4.11': + "@swc/core-darwin-x64@1.4.11": optional: true - '@swc/core-linux-arm-gnueabihf@1.4.11': + "@swc/core-linux-arm-gnueabihf@1.4.11": optional: true - '@swc/core-linux-arm64-gnu@1.4.11': + "@swc/core-linux-arm64-gnu@1.4.11": optional: true - '@swc/core-linux-arm64-musl@1.4.11': + "@swc/core-linux-arm64-musl@1.4.11": optional: true - '@swc/core-linux-x64-gnu@1.4.11': + "@swc/core-linux-x64-gnu@1.4.11": optional: true - '@swc/core-linux-x64-musl@1.4.11': + "@swc/core-linux-x64-musl@1.4.11": optional: true - '@swc/core-win32-arm64-msvc@1.4.11': + "@swc/core-win32-arm64-msvc@1.4.11": optional: true - '@swc/core-win32-ia32-msvc@1.4.11': + "@swc/core-win32-ia32-msvc@1.4.11": optional: true - '@swc/core-win32-x64-msvc@1.4.11': + "@swc/core-win32-x64-msvc@1.4.11": optional: true - '@swc/core@1.4.11': + "@swc/core@1.4.11": dependencies: - '@swc/counter': 0.1.3 - '@swc/types': 0.1.6 + "@swc/counter": 0.1.3 + "@swc/types": 0.1.6 optionalDependencies: - '@swc/core-darwin-arm64': 1.4.11 - '@swc/core-darwin-x64': 1.4.11 - '@swc/core-linux-arm-gnueabihf': 1.4.11 - '@swc/core-linux-arm64-gnu': 1.4.11 - '@swc/core-linux-arm64-musl': 1.4.11 - '@swc/core-linux-x64-gnu': 1.4.11 - '@swc/core-linux-x64-musl': 1.4.11 - '@swc/core-win32-arm64-msvc': 1.4.11 - '@swc/core-win32-ia32-msvc': 1.4.11 - '@swc/core-win32-x64-msvc': 1.4.11 + "@swc/core-darwin-arm64": 1.4.11 + "@swc/core-darwin-x64": 1.4.11 + "@swc/core-linux-arm-gnueabihf": 1.4.11 + "@swc/core-linux-arm64-gnu": 1.4.11 + "@swc/core-linux-arm64-musl": 1.4.11 + "@swc/core-linux-x64-gnu": 1.4.11 + "@swc/core-linux-x64-musl": 1.4.11 + "@swc/core-win32-arm64-msvc": 1.4.11 + "@swc/core-win32-ia32-msvc": 1.4.11 + "@swc/core-win32-x64-msvc": 1.4.11 - '@swc/counter@0.1.3': {} + "@swc/counter@0.1.3": {} - '@swc/helpers@0.4.14': + "@swc/helpers@0.4.14": dependencies: tslib: 2.6.2 - '@swc/helpers@0.5.5': + "@swc/helpers@0.5.5": dependencies: - '@swc/counter': 0.1.3 + "@swc/counter": 0.1.3 tslib: 2.6.2 - '@swc/jest@0.2.36(@swc/core@1.4.11)': + "@swc/jest@0.2.36(@swc/core@1.4.11)": dependencies: - '@jest/create-cache-key-function': 29.7.0 - '@swc/core': 1.4.11 - '@swc/counter': 0.1.3 + "@jest/create-cache-key-function": 29.7.0 + "@swc/core": 1.4.11 + "@swc/counter": 0.1.3 jsonc-parser: 3.2.1 - '@swc/types@0.1.6': + "@swc/types@0.1.6": dependencies: - '@swc/counter': 0.1.3 + "@swc/counter": 0.1.3 - '@szmarczak/http-timer@1.1.2': + "@szmarczak/http-timer@1.1.2": dependencies: defer-to-connect: 1.1.3 - '@szmarczak/http-timer@4.0.6': + "@szmarczak/http-timer@4.0.6": dependencies: defer-to-connect: 2.0.1 - '@tanstack/query-core@5.28.9': {} + "@tanstack/query-core@5.28.9": {} - '@tanstack/query-devtools@5.28.10': {} + "@tanstack/query-devtools@5.28.10": {} - '@tanstack/react-query-devtools@5.28.14(@tanstack/react-query@5.28.9(react@18.2.0))(react@18.2.0)': + "@tanstack/react-query-devtools@5.28.14(@tanstack/react-query@5.28.9(react@18.2.0))(react@18.2.0)": dependencies: - '@tanstack/query-devtools': 5.28.10 - '@tanstack/react-query': 5.28.9(react@18.2.0) + "@tanstack/query-devtools": 5.28.10 + "@tanstack/react-query": 5.28.9(react@18.2.0) react: 18.2.0 - '@tanstack/react-query@5.28.9(react@18.2.0)': + "@tanstack/react-query@5.28.9(react@18.2.0)": dependencies: - '@tanstack/query-core': 5.28.9 + "@tanstack/query-core": 5.28.9 react: 18.2.0 - '@tanstack/react-virtual@3.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@tanstack/react-virtual@3.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@tanstack/virtual-core': 3.2.0 + "@tanstack/virtual-core": 3.2.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@tanstack/virtual-core@3.2.0': {} + "@tanstack/virtual-core@3.2.0": {} - '@taquito/core@20.0.0': + "@taquito/core@20.0.0": dependencies: json-stringify-safe: 5.0.1 - '@taquito/core@20.0.1': + "@taquito/core@20.0.1": dependencies: json-stringify-safe: 5.0.1 - '@taquito/http-utils@20.0.1': + "@taquito/http-utils@20.0.1": dependencies: - '@taquito/core': 20.0.1 + "@taquito/core": 20.0.1 node-fetch: 2.7.0 transitivePeerDependencies: - encoding - '@taquito/ledger-signer@20.0.0': + "@taquito/ledger-signer@20.0.0": dependencies: - '@ledgerhq/hw-transport': 6.30.6 - '@stablelib/blake2b': 1.0.1 - '@taquito/core': 20.0.0 - '@taquito/taquito': 20.0.1 - '@taquito/utils': 20.0.1 + "@ledgerhq/hw-transport": 6.30.6 + "@stablelib/blake2b": 1.0.1 + "@taquito/core": 20.0.0 + "@taquito/taquito": 20.0.1 + "@taquito/utils": 20.0.1 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) transitivePeerDependencies: - encoding - '@taquito/ledger-signer@20.0.1': + "@taquito/ledger-signer@20.0.1": dependencies: - '@ledgerhq/hw-transport': 6.30.6 - '@stablelib/blake2b': 1.0.1 - '@taquito/core': 20.0.1 - '@taquito/taquito': 20.0.1 - '@taquito/utils': 20.0.1 + "@ledgerhq/hw-transport": 6.30.6 + "@stablelib/blake2b": 1.0.1 + "@taquito/core": 20.0.1 + "@taquito/taquito": 20.0.1 + "@taquito/utils": 20.0.1 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) transitivePeerDependencies: - encoding - '@taquito/local-forging@20.0.1': + "@taquito/local-forging@20.0.1": dependencies: - '@taquito/core': 20.0.1 - '@taquito/utils': 20.0.1 + "@taquito/core": 20.0.1 + "@taquito/utils": 20.0.1 bignumber.js: 9.1.2 - '@taquito/michel-codec@20.0.1': + "@taquito/michel-codec@20.0.1": dependencies: - '@taquito/core': 20.0.1 + "@taquito/core": 20.0.1 - '@taquito/michelson-encoder@20.0.1': + "@taquito/michelson-encoder@20.0.1": dependencies: - '@taquito/core': 20.0.1 - '@taquito/rpc': 20.0.1 - '@taquito/utils': 20.0.1 + "@taquito/core": 20.0.1 + "@taquito/rpc": 20.0.1 + "@taquito/utils": 20.0.1 bignumber.js: 9.1.2 fast-json-stable-stringify: 2.1.0 transitivePeerDependencies: - encoding - '@taquito/rpc@20.0.1': + "@taquito/rpc@20.0.1": dependencies: - '@taquito/core': 20.0.1 - '@taquito/http-utils': 20.0.1 - '@taquito/utils': 20.0.1 + "@taquito/core": 20.0.1 + "@taquito/http-utils": 20.0.1 + "@taquito/utils": 20.0.1 bignumber.js: 9.1.2 transitivePeerDependencies: - encoding - '@taquito/taquito@20.0.1': + "@taquito/taquito@20.0.1": dependencies: - '@taquito/core': 20.0.1 - '@taquito/http-utils': 20.0.1 - '@taquito/local-forging': 20.0.1 - '@taquito/michel-codec': 20.0.1 - '@taquito/michelson-encoder': 20.0.1 - '@taquito/rpc': 20.0.1 - '@taquito/utils': 20.0.1 + "@taquito/core": 20.0.1 + "@taquito/http-utils": 20.0.1 + "@taquito/local-forging": 20.0.1 + "@taquito/michel-codec": 20.0.1 + "@taquito/michelson-encoder": 20.0.1 + "@taquito/rpc": 20.0.1 + "@taquito/utils": 20.0.1 bignumber.js: 9.1.2 rxjs: 7.8.1 transitivePeerDependencies: - encoding - '@taquito/utils@20.0.1': + "@taquito/utils@20.0.1": dependencies: - '@stablelib/blake2b': 1.0.1 - '@stablelib/ed25519': 1.0.3 - '@taquito/core': 20.0.1 - '@types/bs58check': 2.1.2 + "@stablelib/blake2b": 1.0.1 + "@stablelib/ed25519": 1.0.3 + "@taquito/core": 20.0.1 + "@types/bs58check": 2.1.2 bignumber.js: 9.1.2 blakejs: 1.2.1 bs58check: 3.0.1 @@ -43640,21 +60062,21 @@ snapshots: elliptic: 6.5.5 typedarray-to-buffer: 4.0.0 - '@testing-library/dom@9.3.4': + "@testing-library/dom@9.3.4": dependencies: - '@babel/code-frame': 7.24.2 - '@babel/runtime': 7.24.1 - '@types/aria-query': 5.0.4 + "@babel/code-frame": 7.24.2 + "@babel/runtime": 7.24.1 + "@types/aria-query": 5.0.4 aria-query: 5.1.3 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.4.2(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)))': + "@testing-library/jest-dom@6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)))": dependencies: - '@adobe/css-tools': 4.3.3 - '@babel/runtime': 7.24.1 + "@adobe/css-tools": 4.3.3 + "@babel/runtime": 7.24.1 aria-query: 5.3.0 chalk: 3.0.0 css.escape: 1.5.1 @@ -43662,14 +60084,14 @@ snapshots: lodash: 4.17.21 redent: 3.0.0 optionalDependencies: - '@jest/globals': 29.7.0 - '@types/jest': 29.5.12 + "@jest/globals": 29.7.0 + "@types/jest": 29.5.12 jest: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) - '@testing-library/jest-dom@6.4.2(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.12.12))': + "@testing-library/jest-dom@6.4.2(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.12.12))": dependencies: - '@adobe/css-tools': 4.3.3 - '@babel/runtime': 7.24.1 + "@adobe/css-tools": 4.3.3 + "@babel/runtime": 7.24.1 aria-query: 5.3.0 chalk: 3.0.0 css.escape: 1.5.1 @@ -43677,64 +60099,64 @@ snapshots: lodash: 4.17.21 redent: 3.0.0 optionalDependencies: - '@types/jest': 29.5.12 + "@types/jest": 29.5.12 jest: 29.7.0(@types/node@20.12.12) - '@testing-library/jest-native@5.4.3(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0)': + "@testing-library/jest-native@5.4.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: chalk: 4.1.2 jest-diff: 29.7.0 jest-matcher-utils: 29.7.0 pretty-format: 29.7.0 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) react-test-renderer: 18.2.0(react@18.2.0) redent: 3.0.0 - '@testing-library/react-native@12.4.5(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0)': + "@testing-library/react-native@12.4.5(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: jest-matcher-utils: 29.7.0 pretty-format: 29.7.0 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) react-test-renderer: 18.2.0(react@18.2.0) redent: 3.0.0 optionalDependencies: jest: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) - '@testing-library/react@14.2.2': + "@testing-library/react@14.2.2": dependencies: - '@babel/runtime': 7.24.1 - '@testing-library/dom': 9.3.4 - '@types/react-dom': 18.2.23 + "@babel/runtime": 7.24.1 + "@testing-library/dom": 9.3.4 + "@types/react-dom": 18.2.23 transitivePeerDependencies: - - '@types/react' + - "@types/react" - '@testing-library/react@14.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@testing-library/react@14.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.24.1 - '@testing-library/dom': 9.3.4 - '@types/react-dom': 18.2.23(@types/react@18.2.73) + "@babel/runtime": 7.24.1 + "@testing-library/dom": 9.3.4 + "@types/react-dom": 18.2.23(@types/react@18.2.73) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - - '@types/react' + - "@types/react" - '@testing-library/react@14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@testing-library/react@14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: - '@babel/runtime': 7.24.1 - '@testing-library/dom': 9.3.4 - '@types/react-dom': 18.2.23 + "@babel/runtime": 7.24.1 + "@testing-library/dom": 9.3.4 + "@types/react-dom": 18.2.23 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - - '@types/react' + - "@types/react" - '@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4)': + "@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4)": dependencies: - '@testing-library/dom': 9.3.4 + "@testing-library/dom": 9.3.4 - '@theguild/remark-mermaid@0.0.5(react@18.2.0)': + "@theguild/remark-mermaid@0.0.5(react@18.2.0)": dependencies: mermaid: 10.9.0 react: 18.2.0 @@ -43742,618 +60164,623 @@ snapshots: transitivePeerDependencies: - supports-color - '@theguild/remark-npm2yarn@0.2.1': + "@theguild/remark-npm2yarn@0.2.1": dependencies: npm-to-yarn: 2.2.1 unist-util-visit: 5.0.0 - '@tippyjs/react@4.2.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@tippyjs/react@4.2.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) tippy.js: 6.3.7 - '@ton-community/ton-ledger@7.0.1(@ton/core@0.56.3(@ton/crypto@3.3.0))': + "@ton-community/ton-ledger@7.0.1(@ton/core@0.56.3(@ton/crypto@3.3.0))": dependencies: - '@ledgerhq/hw-transport': 6.30.6 - '@ton/core': 0.56.3(@ton/crypto@3.3.0) - '@ton/crypto': 3.3.0 + "@ledgerhq/hw-transport": 6.30.6 + "@ton/core": 0.56.3(@ton/crypto@3.3.0) + "@ton/crypto": 3.3.0 teslabot: 1.5.0 - '@ton/core@0.56.3(@ton/crypto@3.3.0)': + "@ton/core@0.56.3(@ton/crypto@3.3.0)": dependencies: - '@ton/crypto': 3.3.0 + "@ton/crypto": 3.3.0 symbol.inspect: 1.0.1 - '@ton/crypto-primitives@2.1.0': + "@ton/crypto-primitives@2.1.0": dependencies: jssha: 3.2.0 - '@ton/crypto@3.3.0': + "@ton/crypto@3.3.0": dependencies: - '@ton/crypto-primitives': 2.1.0 + "@ton/crypto-primitives": 2.1.0 jssha: 3.2.0 tweetnacl: 1.0.3 - '@ton/ton@13.11.2(@ton/core@0.56.3(@ton/crypto@3.3.0))(@ton/crypto@3.3.0)': + "@ton/ton@13.11.2(@ton/core@0.56.3(@ton/crypto@3.3.0))(@ton/crypto@3.3.0)": dependencies: - '@ton/core': 0.56.3(@ton/crypto@3.3.0) - '@ton/crypto': 3.3.0 + "@ton/core": 0.56.3(@ton/crypto@3.3.0) + "@ton/crypto": 3.3.0 axios: 1.7.7 dataloader: 2.2.2 symbol.inspect: 1.0.1 teslabot: 1.5.0 zod: 3.22.4 - '@tootallnate/once@1.1.2': {} + "@tootallnate/once@1.1.2": {} - '@tootallnate/once@2.0.0': {} + "@tootallnate/once@2.0.0": {} - '@tronweb3/google-protobuf@3.21.2': {} + "@tronweb3/google-protobuf@3.21.2": {} - '@trust/keyto@1.0.1': + "@trust/keyto@1.0.1": dependencies: asn1.js: 5.4.1 base64url: 3.0.1 elliptic: 6.5.5 - '@trysound/sax@0.2.0': {} + "@trysound/sax@0.2.0": {} - '@tsconfig/node10@1.0.11': {} + "@tsconfig/node10@1.0.11": {} - '@tsconfig/node12@1.0.11': {} + "@tsconfig/node12@1.0.11": {} - '@tsconfig/node14@1.0.3': {} + "@tsconfig/node14@1.0.3": {} - '@tsconfig/node16@1.0.4': {} + "@tsconfig/node16@1.0.4": {} - '@tsconfig/recommended@1.0.6': {} + "@tsconfig/recommended@1.0.6": {} - '@types/accepts@1.3.7': + "@types/accepts@1.3.7": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/acorn@4.0.6': + "@types/acorn@4.0.6": dependencies: - '@types/estree': 1.0.5 + "@types/estree": 1.0.5 - '@types/aria-query@5.0.4': {} + "@types/aria-query@5.0.4": {} - '@types/axios@0.14.0': + "@types/axios@0.14.0": dependencies: axios: 1.7.7 - '@types/babel__core@7.20.5': + "@types/babel__core@7.20.5": dependencies: - '@babel/parser': 7.24.1 - '@babel/types': 7.24.0 - '@types/babel__generator': 7.6.8 - '@types/babel__template': 7.4.4 - '@types/babel__traverse': 7.20.5 + "@babel/parser": 7.24.1 + "@babel/types": 7.24.0 + "@types/babel__generator": 7.6.8 + "@types/babel__template": 7.4.4 + "@types/babel__traverse": 7.20.5 - '@types/babel__generator@7.6.8': + "@types/babel__generator@7.6.8": dependencies: - '@babel/types': 7.24.0 + "@babel/types": 7.24.0 - '@types/babel__template@7.4.4': + "@types/babel__template@7.4.4": dependencies: - '@babel/parser': 7.24.1 - '@babel/types': 7.24.0 + "@babel/parser": 7.24.1 + "@babel/types": 7.24.0 - '@types/babel__traverse@7.20.5': + "@types/babel__traverse@7.20.5": dependencies: - '@babel/types': 7.24.0 + "@babel/types": 7.24.0 - '@types/bchaddrjs@0.4.3': {} + "@types/bchaddrjs@0.4.3": {} - '@types/blake2b@2.1.3': {} + "@types/blake2b@2.1.3": {} - '@types/bluebird@3.5.42': {} + "@types/bluebird@3.5.42": {} - '@types/bn.js@4.11.6': + "@types/bn.js@4.11.6": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/bn.js@5.1.5': + "@types/bn.js@5.1.5": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/body-parser@1.19.5': + "@types/body-parser@1.19.5": dependencies: - '@types/connect': 3.4.38 - '@types/node': 20.12.12 + "@types/connect": 3.4.38 + "@types/node": 20.12.12 - '@types/bonjour@3.5.13': + "@types/bonjour@3.5.13": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/bs58@4.0.4': + "@types/bs58@4.0.4": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 base-x: 3.0.9 - '@types/bs58check@2.1.2': + "@types/bs58check@2.1.2": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/btoa-lite@1.0.2': {} + "@types/btoa-lite@1.0.2": {} - '@types/cacheable-request@6.0.3': + "@types/cacheable-request@6.0.3": dependencies: - '@types/http-cache-semantics': 4.0.4 - '@types/keyv': 3.1.4 - '@types/node': 20.12.12 - '@types/responselike': 1.0.3 + "@types/http-cache-semantics": 4.0.4 + "@types/keyv": 3.1.4 + "@types/node": 20.12.12 + "@types/responselike": 1.0.3 - '@types/cashaddrjs@0.3.3': {} + "@types/cashaddrjs@0.3.3": {} - '@types/cbor@6.0.0': + "@types/cbor@6.0.0": dependencies: cbor: 9.0.2 - '@types/chart.js@2.9.41': + "@types/chart.js@2.9.41": dependencies: moment: 2.30.1 - '@types/color-convert@2.0.3': + "@types/color-convert@2.0.3": dependencies: - '@types/color-name': 1.1.3 + "@types/color-name": 1.1.3 - '@types/color-name@1.1.3': {} + "@types/color-name@1.1.3": {} - '@types/color@3.0.6': + "@types/color@3.0.6": dependencies: - '@types/color-convert': 2.0.3 + "@types/color-convert": 2.0.3 - '@types/command-line-args@5.2.3': {} + "@types/command-line-args@5.2.3": {} - '@types/connect-history-api-fallback@1.5.4': + "@types/connect-history-api-fallback@1.5.4": dependencies: - '@types/express-serve-static-core': 4.17.43 - '@types/node': 20.12.12 + "@types/express-serve-static-core": 4.17.43 + "@types/node": 20.12.12 - '@types/connect@3.4.36': + "@types/connect@3.4.36": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/connect@3.4.38': + "@types/connect@3.4.38": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/content-disposition@0.5.8': {} + "@types/content-disposition@0.5.8": {} - '@types/cookie@0.6.0': {} + "@types/cookie@0.6.0": {} - '@types/cookies@0.9.0': + "@types/cookies@0.9.0": dependencies: - '@types/connect': 3.4.38 - '@types/express': 4.17.21 - '@types/keygrip': 1.0.6 - '@types/node': 20.12.12 + "@types/connect": 3.4.38 + "@types/express": 4.17.21 + "@types/keygrip": 1.0.6 + "@types/node": 20.12.12 - '@types/cors@2.8.17': + "@types/cors@2.8.17": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/create-hmac@1.1.3': + "@types/create-hmac@1.1.3": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/cross-spawn@6.0.6': + "@types/cross-spawn@6.0.6": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/crypto-js@4.2.2': {} + "@types/crypto-js@4.2.2": {} - '@types/d3-array@2.3.0': {} + "@types/d3-array@2.3.0": {} - '@types/d3-path@3.1.0': {} + "@types/d3-path@3.1.0": {} - '@types/d3-scale-chromatic@3.0.3': {} + "@types/d3-scale-chromatic@3.0.3": {} - '@types/d3-scale@3.3.5': + "@types/d3-scale@3.3.5": dependencies: - '@types/d3-time': 2.1.4 + "@types/d3-time": 2.1.4 - '@types/d3-scale@4.0.8': + "@types/d3-scale@4.0.8": dependencies: - '@types/d3-time': 3.0.3 + "@types/d3-time": 3.0.3 - '@types/d3-shape@3.1.6': + "@types/d3-shape@3.1.6": dependencies: - '@types/d3-path': 3.1.0 + "@types/d3-path": 3.1.0 - '@types/d3-time@2.1.4': {} + "@types/d3-time@2.1.4": {} - '@types/d3-time@3.0.3': {} + "@types/d3-time@3.0.3": {} - '@types/debug@4.1.12': + "@types/debug@4.1.12": dependencies: - '@types/ms': 0.7.34 + "@types/ms": 0.7.34 - '@types/detect-port@1.3.5': {} + "@types/detect-port@1.3.5": {} - '@types/doctrine@0.0.3': {} + "@types/doctrine@0.0.3": {} - '@types/doctrine@0.0.9': {} + "@types/doctrine@0.0.9": {} - '@types/ejs@3.1.5': {} + "@types/ejs@3.1.5": {} - '@types/elliptic@6.4.18': + "@types/elliptic@6.4.18": dependencies: - '@types/bn.js': 5.1.5 + "@types/bn.js": 5.1.5 - '@types/emscripten@1.39.10': {} + "@types/emscripten@1.39.10": {} - '@types/escodegen@0.0.6': {} + "@types/escodegen@0.0.6": {} - '@types/eslint-scope@3.7.7': + "@types/eslint-scope@3.7.7": dependencies: - '@types/eslint': 8.56.6 - '@types/estree': 1.0.5 + "@types/eslint": 8.56.6 + "@types/estree": 1.0.5 - '@types/eslint@8.56.6': + "@types/eslint@8.56.6": dependencies: - '@types/estree': 1.0.5 - '@types/json-schema': 7.0.15 + "@types/estree": 1.0.5 + "@types/json-schema": 7.0.15 - '@types/estree-jsx@1.0.5': + "@types/estree-jsx@1.0.5": dependencies: - '@types/estree': 1.0.5 + "@types/estree": 1.0.5 - '@types/estree@0.0.39': {} + "@types/estree@0.0.39": {} - '@types/estree@0.0.51': {} + "@types/estree@0.0.51": {} - '@types/estree@1.0.5': {} + "@types/estree@1.0.5": {} - '@types/ethereumjs-util@5.2.0': + "@types/ethereumjs-util@5.2.0": dependencies: - '@types/bn.js': 5.1.5 - '@types/node': 20.12.12 + "@types/bn.js": 5.1.5 + "@types/node": 20.12.12 - '@types/events@3.0.3': {} + "@types/events@3.0.3": {} - '@types/express-serve-static-core@4.17.43': + "@types/express-serve-static-core@4.17.43": dependencies: - '@types/node': 20.12.12 - '@types/qs': 6.9.14 - '@types/range-parser': 1.2.7 - '@types/send': 0.17.4 + "@types/node": 20.12.12 + "@types/qs": 6.9.14 + "@types/range-parser": 1.2.7 + "@types/send": 0.17.4 - '@types/express@4.17.21': + "@types/express@4.17.21": dependencies: - '@types/body-parser': 1.19.5 - '@types/express-serve-static-core': 4.17.43 - '@types/qs': 6.9.14 - '@types/serve-static': 1.15.5 + "@types/body-parser": 1.19.5 + "@types/express-serve-static-core": 4.17.43 + "@types/qs": 6.9.14 + "@types/serve-static": 1.15.5 - '@types/extend@3.0.4': {} + "@types/extend@3.0.4": {} - '@types/find-cache-dir@3.2.1': {} + "@types/find-cache-dir@3.2.1": {} - '@types/fs-extra@11.0.4': + "@types/fs-extra@11.0.4": dependencies: - '@types/jsonfile': 6.1.4 - '@types/node': 20.12.12 + "@types/jsonfile": 6.1.4 + "@types/node": 20.12.12 - '@types/fs-extra@9.0.13': + "@types/fs-extra@9.0.13": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/glob@7.2.0': + "@types/glob@7.2.0": dependencies: - '@types/minimatch': 5.1.2 - '@types/node': 20.12.12 + "@types/minimatch": 5.1.2 + "@types/node": 20.12.12 - '@types/graceful-fs@4.1.9': + "@types/graceful-fs@4.1.9": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/hammerjs@2.0.45': {} + "@types/hammerjs@2.0.45": {} - '@types/hast@2.3.10': + "@types/hast@2.3.10": dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 - '@types/hast@3.0.4': + "@types/hast@3.0.4": dependencies: - '@types/unist': 3.0.2 + "@types/unist": 3.0.2 - '@types/history@4.7.11': {} + "@types/history@4.7.11": {} - '@types/hoist-non-react-statics@3.3.5(@types/react@18.2.73)': + "@types/hoist-non-react-statics@3.3.5(@types/react@18.2.73)": dependencies: hoist-non-react-statics: 3.3.2 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/html-minifier-terser@6.1.0': {} + "@types/html-minifier-terser@6.1.0": {} - '@types/http-assert@1.5.5': {} + "@types/http-assert@1.5.5": {} - '@types/http-cache-semantics@4.0.4': {} + "@types/http-cache-semantics@4.0.4": {} - '@types/http-errors@2.0.4': {} + "@types/http-errors@2.0.4": {} - '@types/http-proxy@1.17.14': + "@types/http-proxy@1.17.14": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/imurmurhash@0.1.4': {} + "@types/imurmurhash@0.1.4": {} - '@types/invariant@2.2.37': {} + "@types/invariant@2.2.37": {} - '@types/is-function@1.0.3': {} + "@types/is-function@1.0.3": {} - '@types/istanbul-lib-coverage@2.0.6': {} + "@types/istanbul-lib-coverage@2.0.6": {} - '@types/istanbul-lib-report@3.0.3': + "@types/istanbul-lib-report@3.0.3": dependencies: - '@types/istanbul-lib-coverage': 2.0.6 + "@types/istanbul-lib-coverage": 2.0.6 - '@types/istanbul-reports@3.0.4': + "@types/istanbul-reports@1.1.2": dependencies: - '@types/istanbul-lib-report': 3.0.3 + "@types/istanbul-lib-coverage": 2.0.6 + "@types/istanbul-lib-report": 3.0.3 - '@types/jest@27.5.2': + "@types/istanbul-reports@3.0.4": + dependencies: + "@types/istanbul-lib-report": 3.0.3 + + "@types/jest@27.5.2": dependencies: jest-matcher-utils: 27.5.1 pretty-format: 27.5.1 - '@types/jest@28.1.8': + "@types/jest@28.1.8": dependencies: expect: 28.1.3 pretty-format: 28.1.3 - '@types/jest@29.5.12': + "@types/jest@29.5.12": dependencies: expect: 29.7.0 pretty-format: 29.7.0 - '@types/js-yaml@4.0.9': {} + "@types/js-yaml@4.0.9": {} - '@types/jsdom@16.2.15': + "@types/jsdom@16.2.15": dependencies: - '@types/node': 20.12.12 - '@types/parse5': 6.0.3 - '@types/tough-cookie': 4.0.5 + "@types/node": 20.12.12 + "@types/parse5": 6.0.3 + "@types/tough-cookie": 4.0.5 - '@types/jsdom@20.0.1': + "@types/jsdom@20.0.1": dependencies: - '@types/node': 20.12.12 - '@types/tough-cookie': 4.0.5 + "@types/node": 20.12.12 + "@types/tough-cookie": 4.0.5 parse5: 7.1.2 - '@types/json-schema@7.0.15': {} + "@types/json-schema@7.0.15": {} - '@types/json5@0.0.29': {} + "@types/json5@0.0.29": {} - '@types/jsonfile@6.1.4': + "@types/jsonfile@6.1.4": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/jsonwebtoken@9.0.6': + "@types/jsonwebtoken@9.0.6": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/katex@0.16.7': {} + "@types/katex@0.16.7": {} - '@types/keygrip@1.0.6': {} + "@types/keygrip@1.0.6": {} - '@types/keyv@3.1.4': + "@types/keyv@3.1.4": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/koa-compose@3.2.8': + "@types/koa-compose@3.2.8": dependencies: - '@types/koa': 2.14.0 + "@types/koa": 2.14.0 - '@types/koa@2.14.0': + "@types/koa@2.14.0": dependencies: - '@types/accepts': 1.3.7 - '@types/content-disposition': 0.5.8 - '@types/cookies': 0.9.0 - '@types/http-assert': 1.5.5 - '@types/http-errors': 2.0.4 - '@types/keygrip': 1.0.6 - '@types/koa-compose': 3.2.8 - '@types/node': 20.12.12 + "@types/accepts": 1.3.7 + "@types/content-disposition": 0.5.8 + "@types/cookies": 0.9.0 + "@types/http-assert": 1.5.5 + "@types/http-errors": 2.0.4 + "@types/keygrip": 1.0.6 + "@types/koa-compose": 3.2.8 + "@types/node": 20.12.12 - '@types/koa__router@12.0.3': + "@types/koa__router@12.0.3": dependencies: - '@types/koa': 2.14.0 + "@types/koa": 2.14.0 - '@types/ledgerhq__hw-transport@4.21.8': + "@types/ledgerhq__hw-transport@4.21.8": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/libsodium-wrappers@0.7.13': {} + "@types/libsodium-wrappers@0.7.13": {} - '@types/linkify-it@5.0.0': {} + "@types/linkify-it@5.0.0": {} - '@types/lodash@4.17.0': {} + "@types/lodash@4.17.0": {} - '@types/lodash@4.17.4': {} + "@types/lodash@4.17.4": {} - '@types/lodash@4.17.7': {} + "@types/lodash@4.17.7": {} - '@types/long@4.0.2': {} + "@types/long@4.0.2": {} - '@types/markdown-it@14.1.1': + "@types/markdown-it@14.1.1": dependencies: - '@types/linkify-it': 5.0.0 - '@types/mdurl': 2.0.0 + "@types/linkify-it": 5.0.0 + "@types/mdurl": 2.0.0 - '@types/mdast@3.0.15': + "@types/mdast@3.0.15": dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 - '@types/mdast@4.0.4': + "@types/mdast@4.0.4": dependencies: - '@types/unist': 3.0.2 + "@types/unist": 3.0.2 - '@types/mdurl@2.0.0': {} + "@types/mdurl@2.0.0": {} - '@types/mdx@2.0.12': {} + "@types/mdx@2.0.12": {} - '@types/mime-types@2.1.4': {} + "@types/mime-types@2.1.4": {} - '@types/mime@1.3.5': {} + "@types/mime@1.3.5": {} - '@types/mime@3.0.4': {} + "@types/mime@3.0.4": {} - '@types/minimatch@5.1.2': {} + "@types/minimatch@5.1.2": {} - '@types/minimist@1.2.5': {} + "@types/minimist@1.2.5": {} - '@types/ms@0.7.34': {} + "@types/ms@0.7.34": {} - '@types/mute-stream@0.0.4': + "@types/mute-stream@0.0.4": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/mysql@2.15.22': + "@types/mysql@2.15.22": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/node-fetch@2.6.11': + "@types/node-fetch@2.6.11": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 form-data: 4.0.0 - '@types/node-forge@1.3.11': + "@types/node-forge@1.3.11": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/node-hid@1.3.4': + "@types/node-hid@1.3.4": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/node@10.12.18': {} + "@types/node@10.12.18": {} - '@types/node@10.17.60': {} + "@types/node@10.17.60": {} - '@types/node@11.11.6': {} + "@types/node@11.11.6": {} - '@types/node@12.20.55': {} + "@types/node@12.20.55": {} - '@types/node@13.13.52': {} + "@types/node@13.13.52": {} - '@types/node@18.15.13': {} + "@types/node@18.15.13": {} - '@types/node@18.19.26': + "@types/node@18.19.26": dependencies: undici-types: 5.26.5 - '@types/node@20.12.12': + "@types/node@20.12.12": dependencies: undici-types: 5.26.5 - '@types/node@20.5.1': {} + "@types/node@20.5.1": {} - '@types/node@20.8.10': + "@types/node@20.8.10": dependencies: undici-types: 5.26.5 - '@types/normalize-package-data@2.4.4': {} + "@types/normalize-package-data@2.4.4": {} - '@types/numeral@2.0.5': {} + "@types/numeral@2.0.5": {} - '@types/object-hash@2.2.1': {} + "@types/object-hash@2.2.1": {} - '@types/pako@2.0.3': {} + "@types/pako@2.0.3": {} - '@types/parse-json@4.0.2': {} + "@types/parse-json@4.0.2": {} - '@types/parse5@6.0.3': {} + "@types/parse5@6.0.3": {} - '@types/pbkdf2@3.1.2': + "@types/pbkdf2@3.1.2": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/pg-pool@2.0.4': + "@types/pg-pool@2.0.4": dependencies: - '@types/pg': 8.6.1 + "@types/pg": 8.6.1 - '@types/pg@8.6.1': + "@types/pg@8.6.1": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 pg-protocol: 1.6.1 pg-types: 2.2.0 - '@types/plist@3.0.2': + "@types/plist@3.0.2": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 xmlbuilder: 15.1.1 optional: true - '@types/prettier@2.7.3': {} + "@types/prettier@2.7.3": {} - '@types/pretty-hrtime@1.0.3': {} + "@types/pretty-hrtime@1.0.3": {} - '@types/prop-types@15.7.12': {} + "@types/prop-types@15.7.12": {} - '@types/ps-tree@1.1.6': {} + "@types/ps-tree@1.1.6": {} - '@types/q@1.5.8': {} + "@types/q@1.5.8": {} - '@types/qrcode@1.5.5': + "@types/qrcode@1.5.5": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/qs@6.9.14': {} + "@types/qs@6.9.14": {} - '@types/range-parser@1.2.7': {} + "@types/range-parser@1.2.7": {} - '@types/react-dom@18.2.23': {} + "@types/react-dom@18.2.23": {} - '@types/react-dom@18.2.23(@types/react@18.2.73)': + "@types/react-dom@18.2.23(@types/react@18.2.73)": optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/react-dom@18.3.0(@types/react@18.3.5)': + "@types/react-dom@18.3.0(@types/react@18.3.5)": optionalDependencies: - '@types/react': 18.3.5 + "@types/react": 18.3.5 - '@types/react-inspector@4.0.6(@types/react@18.3.5)': + "@types/react-inspector@4.0.6(@types/react@18.3.5)": dependencies: csstype: 3.1.3 optionalDependencies: - '@types/react': 18.3.5 + "@types/react": 18.3.5 - '@types/react-is@17.0.7(@types/react@18.2.73)': + "@types/react-is@17.0.7(@types/react@18.2.73)": optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/react-key-handler@1.2.4(@types/react@18.2.73)': + "@types/react-key-handler@1.2.4(@types/react@18.2.73)": optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/react-lottie@1.2.10(@types/react@18.2.73)': + "@types/react-lottie@1.2.10(@types/react@18.2.73)": optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/react-motion@0.0.40(@types/react@18.2.73)': + "@types/react-motion@0.0.40(@types/react@18.2.73)": optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/react-native-extra-dimensions-android@1.2.3': {} + "@types/react-native-extra-dimensions-android@1.2.3": {} - '@types/react-native-vector-icons@6.4.18(@types/react@18.2.73)': + "@types/react-native-vector-icons@6.4.18(@types/react@18.2.73)": dependencies: - '@types/react-native': 0.70.19(@types/react@18.2.73) + "@types/react-native": 0.70.19(@types/react@18.2.73) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/react-native-video@5.0.20(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)': + "@types/react-native-video@5.0.20(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)": dependencies: - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' + - "@babel/core" + - "@babel/preset-env" - bufferutil - encoding - metro-resolver @@ -44362,262 +60789,266 @@ snapshots: - supports-color - utf-8-validate - '@types/react-native@0.70.19(@types/react@18.2.73)': + "@types/react-native@0.70.19(@types/react@18.2.73)": optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/react-redux@7.1.33(@types/react@18.2.73)': + "@types/react-redux@7.1.33(@types/react@18.2.73)": dependencies: - '@types/hoist-non-react-statics': 3.3.5(@types/react@18.2.73) + "@types/hoist-non-react-statics": 3.3.5(@types/react@18.2.73) hoist-non-react-statics: 3.3.2 redux: 4.2.1 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/react-router-dom@5.3.3(@types/react@18.2.73)': + "@types/react-router-dom@5.3.3(@types/react@18.2.73)": dependencies: - '@types/history': 4.7.11 - '@types/react-router': 5.1.20(@types/react@18.2.73) + "@types/history": 4.7.11 + "@types/react-router": 5.1.20(@types/react@18.2.73) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/react-router@5.1.20(@types/react@18.2.73)': + "@types/react-router@5.1.20(@types/react@18.2.73)": dependencies: - '@types/history': 4.7.11 + "@types/history": 4.7.11 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/react-select@4.0.18(@types/react@18.2.73)': + "@types/react-select@4.0.18(@types/react@18.2.73)": dependencies: - '@emotion/serialize': 1.1.3 - '@types/react-dom': 18.2.23(@types/react@18.2.73) - '@types/react-transition-group': 4.4.10(@types/react@18.2.73) + "@emotion/serialize": 1.1.3 + "@types/react-dom": 18.2.23(@types/react@18.2.73) + "@types/react-transition-group": 4.4.10(@types/react@18.2.73) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/react-table@6.8.15(@types/react@18.3.5)': + "@types/react-table@6.8.15(@types/react@18.3.5)": optionalDependencies: - '@types/react': 18.3.5 + "@types/react": 18.3.5 - '@types/react-table@7.7.20(@types/react@18.3.5)': + "@types/react-table@7.7.20(@types/react@18.3.5)": optionalDependencies: - '@types/react': 18.3.5 + "@types/react": 18.3.5 - '@types/react-test-renderer@18.0.7(@types/react@18.2.73)': + "@types/react-test-renderer@18.0.7(@types/react@18.2.73)": optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/react-transition-group@4.4.10(@types/react@18.2.73)': + "@types/react-transition-group@4.4.10(@types/react@18.2.73)": optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/react-transition-group@4.4.10(@types/react@18.3.5)': + "@types/react-transition-group@4.4.10(@types/react@18.3.5)": optionalDependencies: - '@types/react': 18.3.5 + "@types/react": 18.3.5 - '@types/react-virtualized-auto-sizer@1.0.4(@types/react@18.2.73)': + "@types/react-virtualized-auto-sizer@1.0.4(@types/react@18.2.73)": optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/react-window-infinite-loader@1.0.9(@types/react@18.2.73)': + "@types/react-window-infinite-loader@1.0.9(@types/react@18.2.73)": dependencies: - '@types/react-window': 1.8.8(@types/react@18.2.73) + "@types/react-window": 1.8.8(@types/react@18.2.73) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/react-window@1.8.8(@types/react@18.2.73)': + "@types/react-window@1.8.8(@types/react@18.2.73)": optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/react@18.2.73': + "@types/react@18.2.73": dependencies: - '@types/prop-types': 15.7.12 + "@types/prop-types": 15.7.12 csstype: 3.1.3 - '@types/react@18.3.5': + "@types/react@18.3.5": dependencies: - '@types/prop-types': 15.7.12 + "@types/prop-types": 15.7.12 csstype: 3.1.3 - '@types/redux-actions@2.6.5': {} + "@types/redux-actions@2.6.5": {} - '@types/resolve@1.17.1': + "@types/resolve@1.17.1": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/resolve@1.20.2': {} + "@types/resolve@1.20.2": {} - '@types/resolve@1.20.6': {} + "@types/resolve@1.20.6": {} - '@types/responselike@1.0.3': + "@types/responselike@1.0.3": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/retry@0.12.0': {} + "@types/retry@0.12.0": {} - '@types/retry@0.12.2': {} + "@types/retry@0.12.2": {} - '@types/ripemd160@2.0.3': + "@types/ripemd160@2.0.3": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/secp256k1@4.0.6': + "@types/secp256k1@4.0.6": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/semver@7.5.7': {} + "@types/semver@7.5.7": {} - '@types/semver@7.5.8': {} + "@types/semver@7.5.8": {} - '@types/send@0.17.4': + "@types/send@0.17.4": dependencies: - '@types/mime': 1.3.5 - '@types/node': 20.12.12 + "@types/mime": 1.3.5 + "@types/node": 20.12.12 - '@types/serve-handler@6.1.4': + "@types/serve-handler@6.1.4": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/serve-index@1.9.4': + "@types/serve-index@1.9.4": dependencies: - '@types/express': 4.17.21 + "@types/express": 4.17.21 - '@types/serve-static@1.15.5': + "@types/serve-static@1.15.5": dependencies: - '@types/http-errors': 2.0.4 - '@types/mime': 3.0.4 - '@types/node': 20.12.12 + "@types/http-errors": 2.0.4 + "@types/mime": 3.0.4 + "@types/node": 20.12.12 - '@types/sha.js@2.4.4': + "@types/sha.js@2.4.4": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/shimmer@1.2.0': {} + "@types/shimmer@1.2.0": {} - '@types/sockjs@0.3.36': + "@types/sockjs@0.3.36": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/stack-utils@2.0.3': {} + "@types/stack-utils@2.0.3": {} - '@types/statuses@2.0.5': {} + "@types/statuses@2.0.5": {} - '@types/stream-chain@2.0.4': + "@types/stream-chain@2.0.4": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/stream-json@1.7.7': + "@types/stream-json@1.7.7": dependencies: - '@types/node': 20.12.12 - '@types/stream-chain': 2.0.4 + "@types/node": 20.12.12 + "@types/stream-chain": 2.0.4 - '@types/styled-components-react-native@5.2.5(@types/react@18.2.73)': + "@types/styled-components-react-native@5.2.5(@types/react@18.2.73)": dependencies: - '@types/react-native': 0.70.19(@types/react@18.2.73) - '@types/styled-components': 5.1.34(@types/react@18.2.73) + "@types/react-native": 0.70.19(@types/react@18.2.73) + "@types/styled-components": 5.1.34(@types/react@18.2.73) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/styled-components@5.1.34(@types/react@18.2.73)': + "@types/styled-components@5.1.34(@types/react@18.2.73)": dependencies: - '@types/hoist-non-react-statics': 3.3.5(@types/react@18.2.73) + "@types/hoist-non-react-statics": 3.3.5(@types/react@18.2.73) csstype: 3.1.3 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 - '@types/styled-system@5.1.22': + "@types/styled-system@5.1.22": dependencies: csstype: 3.1.3 - '@types/stylis@4.2.0': {} + "@types/stylis@4.2.0": {} - '@types/supports-color@8.1.3': {} + "@types/supports-color@8.1.3": {} - '@types/testing-library__jest-dom@5.14.9': + "@types/testing-library__jest-dom@5.14.9": dependencies: - '@types/jest': 29.5.12 + "@types/jest": 29.5.12 - '@types/tough-cookie@4.0.5': {} + "@types/tough-cookie@4.0.5": {} - '@types/triple-beam@1.3.5': {} + "@types/triple-beam@1.3.5": {} - '@types/trust__keyto@1.0.4': + "@types/trust__keyto@1.0.4": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/trusted-types@2.0.7': {} + "@types/trusted-types@2.0.7": {} - '@types/tunnel@0.0.3': + "@types/tunnel@0.0.3": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/unist@2.0.10': {} + "@types/unist@2.0.10": {} - '@types/unist@3.0.2': {} + "@types/unist@3.0.2": {} - '@types/unzipper@0.10.9': + "@types/unzipper@0.10.9": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/utf8@2.1.6': {} + "@types/utf8@2.1.6": {} - '@types/uuid@8.3.4': {} + "@types/uuid@8.3.4": {} - '@types/uuid@9.0.8': {} + "@types/uuid@9.0.8": {} - '@types/verror@1.10.10': + "@types/verror@1.10.10": optional: true - '@types/w3c-web-hid@1.0.6': {} + "@types/w3c-web-hid@1.0.6": {} - '@types/w3c-web-usb@1.0.10': {} + "@types/w3c-web-usb@1.0.10": {} - '@types/web-bluetooth@0.0.20': {} + "@types/web-bluetooth@0.0.20": {} - '@types/webpack-env@1.18.4': {} + "@types/webpack-env@1.18.4": {} - '@types/which@3.0.3': {} + "@types/which@3.0.3": {} - '@types/wrap-ansi@3.0.0': {} + "@types/wrap-ansi@3.0.0": {} - '@types/write-file-atomic@4.0.3': + "@types/write-file-atomic@4.0.3": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/ws@7.4.7': + "@types/ws@7.4.7": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/ws@8.5.10': + "@types/ws@8.5.10": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 - '@types/yargs-parser@21.0.3': {} + "@types/yargs-parser@21.0.3": {} + + "@types/yargs@13.0.12": + dependencies: + "@types/yargs-parser": 21.0.3 - '@types/yargs@15.0.19': + "@types/yargs@15.0.19": dependencies: - '@types/yargs-parser': 21.0.3 + "@types/yargs-parser": 21.0.3 - '@types/yargs@16.0.9': + "@types/yargs@16.0.9": dependencies: - '@types/yargs-parser': 21.0.3 + "@types/yargs-parser": 21.0.3 - '@types/yargs@17.0.32': + "@types/yargs@17.0.32": dependencies: - '@types/yargs-parser': 21.0.3 + "@types/yargs-parser": 21.0.3 - '@types/yauzl@2.10.3': + "@types/yauzl@2.10.3": dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 optional: true - '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3)': + "@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3)": dependencies: - '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.3) - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) + "@eslint-community/regexpp": 4.10.0 + "@typescript-eslint/parser": 5.62.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/scope-manager": 5.62.0 + "@typescript-eslint/type-utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) debug: 4.3.4 eslint: 8.57.0 graphemer: 1.4.0 @@ -44630,14 +61061,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3)': + "@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3)": dependencies: - '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) - '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.4.3) - '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.3) - '@typescript-eslint/visitor-keys': 6.21.0 + "@eslint-community/regexpp": 4.10.0 + "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/scope-manager": 6.21.0 + "@typescript-eslint/type-utils": 6.21.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/utils": 6.21.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/visitor-keys": 6.21.0 debug: 4.3.4 eslint: 8.57.0 graphemer: 1.4.0 @@ -44650,19 +61081,19 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/experimental-utils@5.62.0(eslint@8.57.0)(typescript@5.4.3)': + "@typescript-eslint/experimental-utils@5.62.0(eslint@8.57.0)(typescript@5.4.3)": dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5)': + "@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5)": dependencies: - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) + "@typescript-eslint/scope-manager": 5.62.0 + "@typescript-eslint/types": 5.62.0 + "@typescript-eslint/typescript-estree": 5.62.0(typescript@4.9.5) debug: 4.3.4 eslint: 8.57.0 optionalDependencies: @@ -44670,11 +61101,11 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3)': + "@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3)": dependencies: - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.3) + "@typescript-eslint/scope-manager": 5.62.0 + "@typescript-eslint/types": 5.62.0 + "@typescript-eslint/typescript-estree": 5.62.0(typescript@5.4.3) debug: 4.3.4 eslint: 8.57.0 optionalDependencies: @@ -44682,12 +61113,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2)': + "@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2)": dependencies: - '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.2.2) - '@typescript-eslint/visitor-keys': 6.21.0 + "@typescript-eslint/scope-manager": 6.21.0 + "@typescript-eslint/types": 6.21.0 + "@typescript-eslint/typescript-estree": 6.21.0(typescript@5.2.2) + "@typescript-eslint/visitor-keys": 6.21.0 debug: 4.3.4 eslint: 8.57.0 optionalDependencies: @@ -44695,12 +61126,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3)': + "@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3)": dependencies: - '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.3) - '@typescript-eslint/visitor-keys': 6.21.0 + "@typescript-eslint/scope-manager": 6.21.0 + "@typescript-eslint/types": 6.21.0 + "@typescript-eslint/typescript-estree": 6.21.0(typescript@5.4.3) + "@typescript-eslint/visitor-keys": 6.21.0 debug: 4.3.4 eslint: 8.57.0 optionalDependencies: @@ -44708,20 +61139,20 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@5.62.0': + "@typescript-eslint/scope-manager@5.62.0": dependencies: - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/visitor-keys': 5.62.0 + "@typescript-eslint/types": 5.62.0 + "@typescript-eslint/visitor-keys": 5.62.0 - '@typescript-eslint/scope-manager@6.21.0': + "@typescript-eslint/scope-manager@6.21.0": dependencies: - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/visitor-keys': 6.21.0 + "@typescript-eslint/types": 6.21.0 + "@typescript-eslint/visitor-keys": 6.21.0 - '@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.4.3)': + "@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.4.3)": dependencies: - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.3) - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/typescript-estree": 5.62.0(typescript@5.4.3) + "@typescript-eslint/utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) debug: 4.3.4 eslint: 8.57.0 tsutils: 3.21.0(typescript@5.4.3) @@ -44730,10 +61161,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.4.3)': + "@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.4.3)": dependencies: - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.3) - '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/typescript-estree": 6.21.0(typescript@5.4.3) + "@typescript-eslint/utils": 6.21.0(eslint@8.57.0)(typescript@5.4.3) debug: 4.3.4 eslint: 8.57.0 ts-api-utils: 1.3.0(typescript@5.4.3) @@ -44742,14 +61173,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/types@5.62.0': {} + "@typescript-eslint/types@5.62.0": {} - '@typescript-eslint/types@6.21.0': {} + "@typescript-eslint/types@6.21.0": {} - '@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5)': + "@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5)": dependencies: - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/visitor-keys': 5.62.0 + "@typescript-eslint/types": 5.62.0 + "@typescript-eslint/visitor-keys": 5.62.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -44760,10 +61191,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.3)': + "@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.3)": dependencies: - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/visitor-keys': 5.62.0 + "@typescript-eslint/types": 5.62.0 + "@typescript-eslint/visitor-keys": 5.62.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -44774,10 +61205,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@6.21.0(typescript@5.2.2)': + "@typescript-eslint/typescript-estree@6.21.0(typescript@5.2.2)": dependencies: - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/visitor-keys': 6.21.0 + "@typescript-eslint/types": 6.21.0 + "@typescript-eslint/visitor-keys": 6.21.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -44789,10 +61220,10 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.3)': + "@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.3)": dependencies: - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/visitor-keys': 6.21.0 + "@typescript-eslint/types": 6.21.0 + "@typescript-eslint/visitor-keys": 6.21.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -44804,14 +61235,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.3)': + "@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.3)": dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) - '@types/json-schema': 7.0.15 - '@types/semver': 7.5.8 - '@typescript-eslint/scope-manager': 5.62.0 - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.3) + "@eslint-community/eslint-utils": 4.4.0(eslint@8.57.0) + "@types/json-schema": 7.0.15 + "@types/semver": 7.5.8 + "@typescript-eslint/scope-manager": 5.62.0 + "@typescript-eslint/types": 5.62.0 + "@typescript-eslint/typescript-estree": 5.62.0(typescript@5.4.3) eslint: 8.57.0 eslint-scope: 5.1.1 semver: 7.6.3 @@ -44819,69 +61250,69 @@ snapshots: - supports-color - typescript - '@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.4.3)': + "@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.4.3)": dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) - '@types/json-schema': 7.0.15 - '@types/semver': 7.5.8 - '@typescript-eslint/scope-manager': 6.21.0 - '@typescript-eslint/types': 6.21.0 - '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.3) + "@eslint-community/eslint-utils": 4.4.0(eslint@8.57.0) + "@types/json-schema": 7.0.15 + "@types/semver": 7.5.8 + "@typescript-eslint/scope-manager": 6.21.0 + "@typescript-eslint/types": 6.21.0 + "@typescript-eslint/typescript-estree": 6.21.0(typescript@5.4.3) eslint: 8.57.0 semver: 7.6.3 transitivePeerDependencies: - supports-color - typescript - '@typescript-eslint/visitor-keys@5.62.0': + "@typescript-eslint/visitor-keys@5.62.0": dependencies: - '@typescript-eslint/types': 5.62.0 + "@typescript-eslint/types": 5.62.0 eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@6.21.0': + "@typescript-eslint/visitor-keys@6.21.0": dependencies: - '@typescript-eslint/types': 6.21.0 + "@typescript-eslint/types": 6.21.0 eslint-visitor-keys: 3.4.3 - '@uiw/codemirror-extensions-basic-setup@4.22.2(@codemirror/view@6.28.2)': + "@uiw/codemirror-extensions-basic-setup@4.22.2(@codemirror/view@6.28.2)": dependencies: - '@codemirror/autocomplete': 6.16.3(@codemirror/state@6.4.1)(@codemirror/view@6.28.2) - '@codemirror/commands': 6.6.0 - '@codemirror/language': 6.10.2 - '@codemirror/lint': 6.8.1 - '@codemirror/search': 6.5.6 - '@codemirror/state': 6.4.1 - '@codemirror/view': 6.28.2 + "@codemirror/autocomplete": 6.16.3(@codemirror/state@6.4.1)(@codemirror/view@6.28.2) + "@codemirror/commands": 6.6.0 + "@codemirror/language": 6.10.2 + "@codemirror/lint": 6.8.1 + "@codemirror/search": 6.5.6 + "@codemirror/state": 6.4.1 + "@codemirror/view": 6.28.2 - '@uiw/react-codemirror@4.22.2(@codemirror/view@6.28.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + "@uiw/react-codemirror@4.22.2(@codemirror/view@6.28.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": dependencies: - '@babel/runtime': 7.24.1 - '@codemirror/commands': 6.6.0 - '@codemirror/state': 6.4.1 - '@codemirror/theme-one-dark': 6.1.2 - '@codemirror/view': 6.28.2 - '@uiw/codemirror-extensions-basic-setup': 4.22.2(@codemirror/view@6.28.2) + "@babel/runtime": 7.24.1 + "@codemirror/commands": 6.6.0 + "@codemirror/state": 6.4.1 + "@codemirror/theme-one-dark": 6.1.2 + "@codemirror/view": 6.28.2 + "@uiw/codemirror-extensions-basic-setup": 4.22.2(@codemirror/view@6.28.2) codemirror: 6.0.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@ungap/structured-clone@1.2.0': {} + "@ungap/structured-clone@1.2.0": {} - '@urql/core@2.3.6(graphql@15.8.0)': + "@urql/core@2.3.6(graphql@15.8.0)": dependencies: - '@graphql-typed-document-node/core': 3.2.0(graphql@15.8.0) + "@graphql-typed-document-node/core": 3.2.0(graphql@15.8.0) graphql: 15.8.0 wonka: 4.0.15 - '@urql/exchange-retry@0.3.0(graphql@15.8.0)': + "@urql/exchange-retry@0.3.0(graphql@15.8.0)": dependencies: - '@urql/core': 2.3.6(graphql@15.8.0) + "@urql/core": 2.3.6(graphql@15.8.0) graphql: 15.8.0 wonka: 4.0.15 - '@vechain/ethers@4.0.27-5': + "@vechain/ethers@4.0.27-5": dependencies: - '@types/node': 10.17.60 + "@types/node": 10.17.60 aes-js: 3.0.0 bn.js: 4.12.0 elliptic: 6.5.4 @@ -44892,43 +61323,43 @@ snapshots: uuid: 2.0.1 xmlhttprequest: 1.8.0 - '@vitejs/plugin-react@3.1.0(vite@4.5.3)': + "@vitejs/plugin-react@3.1.0(vite@4.5.3)": dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/plugin-transform-react-jsx-self": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx-source": 7.24.1(@babel/core@7.24.3) magic-string: 0.27.0 react-refresh: 0.14.0 vite: 4.5.3 transitivePeerDependencies: - supports-color - '@vitejs/plugin-react@4.2.1(vite@4.5.3(@types/node@20.12.12))': + "@vitejs/plugin-react@4.2.1(vite@4.5.3(@types/node@20.12.12))": dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) - '@types/babel__core': 7.20.5 + "@babel/core": 7.24.3 + "@babel/plugin-transform-react-jsx-self": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx-source": 7.24.1(@babel/core@7.24.3) + "@types/babel__core": 7.20.5 react-refresh: 0.14.0 vite: 4.5.3(@types/node@20.12.12) transitivePeerDependencies: - supports-color - '@vue/cli-overlay@5.0.8': {} + "@vue/cli-overlay@5.0.8": {} - '@vue/cli-plugin-router@5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16))': + "@vue/cli-plugin-router@5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16))": dependencies: - '@vue/cli-service': 5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16) - '@vue/cli-shared-utils': 5.0.8 + "@vue/cli-service": 5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16) + "@vue/cli-shared-utils": 5.0.8 transitivePeerDependencies: - encoding - '@vue/cli-plugin-typescript@5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16))(eslint@8.57.0)(typescript@5.1.3)(vue-template-compiler@2.7.16)(vue@2.7.16)': + "@vue/cli-plugin-typescript@5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16))(eslint@8.57.0)(typescript@5.1.3)(vue-template-compiler@2.7.16)(vue@2.7.16)": dependencies: - '@babel/core': 7.24.3 - '@types/webpack-env': 1.18.4 - '@vue/cli-service': 5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16) - '@vue/cli-shared-utils': 5.0.8 + "@babel/core": 7.24.3 + "@types/webpack-env": 1.18.4 + "@vue/cli-service": 5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16) + "@vue/cli-shared-utils": 5.0.8 babel-loader: 8.3.0(@babel/core@7.24.3)(webpack@5.94.0) fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.57.0)(typescript@5.1.3)(vue-template-compiler@2.7.16)(webpack@5.94.0) globby: 11.1.0 @@ -44940,7 +61371,7 @@ snapshots: optionalDependencies: vue-template-compiler: 2.7.16 transitivePeerDependencies: - - '@swc/core' + - "@swc/core" - encoding - esbuild - eslint @@ -44949,23 +61380,23 @@ snapshots: - uglify-js - webpack-cli - '@vue/cli-plugin-vuex@5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16))': + "@vue/cli-plugin-vuex@5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16))": dependencies: - '@vue/cli-service': 5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16) + "@vue/cli-service": 5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16) - '@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16)': + "@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16)": dependencies: - '@babel/helper-compilation-targets': 7.23.6 - '@soda/friendly-errors-webpack-plugin': 1.8.1(webpack@5.94.0) - '@soda/get-current-script': 1.0.2 - '@types/minimist': 1.2.5 - '@vue/cli-overlay': 5.0.8 - '@vue/cli-plugin-router': 5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16)) - '@vue/cli-plugin-vuex': 5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16)) - '@vue/cli-shared-utils': 5.0.8 - '@vue/component-compiler-utils': 3.3.0(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@vue/vue-loader-v15': vue-loader@15.11.1(css-loader@6.10.0(webpack@5.94.0))(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(webpack@5.94.0) - '@vue/web-component-wrapper': 1.3.0 + "@babel/helper-compilation-targets": 7.23.6 + "@soda/friendly-errors-webpack-plugin": 1.8.1(webpack@5.94.0) + "@soda/get-current-script": 1.0.2 + "@types/minimist": 1.2.5 + "@vue/cli-overlay": 5.0.8 + "@vue/cli-plugin-router": 5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16)) + "@vue/cli-plugin-vuex": 5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16)) + "@vue/cli-shared-utils": 5.0.8 + "@vue/component-compiler-utils": 3.3.0(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@vue/vue-loader-v15": vue-loader@15.11.1(css-loader@6.10.0(webpack@5.94.0))(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(webpack@5.94.0) + "@vue/web-component-wrapper": 1.3.0 acorn: 8.11.3 acorn-walk: 8.3.2 address: 1.2.2 @@ -45013,10 +61444,10 @@ snapshots: optionalDependencies: vue-template-compiler: 2.7.16 transitivePeerDependencies: - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@vue/compiler-sfc' + - "@parcel/css" + - "@rspack/core" + - "@swc/core" + - "@vue/compiler-sfc" - arc-templates - atpl - babel-core @@ -45083,9 +61514,9 @@ snapshots: - webpack-cli - whiskers - '@vue/cli-shared-utils@5.0.8': + "@vue/cli-shared-utils@5.0.8": dependencies: - '@achrinza/node-ipc': 9.2.9 + "@achrinza/node-ipc": 9.2.9 chalk: 4.1.2 execa: 1.0.0 joi: 17.12.2 @@ -45100,49 +61531,49 @@ snapshots: transitivePeerDependencies: - encoding - '@vue/compiler-core@3.4.21': + "@vue/compiler-core@3.4.21": dependencies: - '@babel/parser': 7.24.1 - '@vue/shared': 3.4.21 + "@babel/parser": 7.24.1 + "@vue/shared": 3.4.21 entities: 4.5.0 estree-walker: 2.0.2 source-map-js: 1.2.0 optional: true - '@vue/compiler-dom@3.4.21': + "@vue/compiler-dom@3.4.21": dependencies: - '@vue/compiler-core': 3.4.21 - '@vue/shared': 3.4.21 + "@vue/compiler-core": 3.4.21 + "@vue/shared": 3.4.21 optional: true - '@vue/compiler-sfc@2.7.16': + "@vue/compiler-sfc@2.7.16": dependencies: - '@babel/parser': 7.24.1 + "@babel/parser": 7.24.1 postcss: 8.4.38 source-map: 0.6.1 optionalDependencies: prettier: 2.8.8 - '@vue/compiler-sfc@3.4.21': + "@vue/compiler-sfc@3.4.21": dependencies: - '@babel/parser': 7.24.1 - '@vue/compiler-core': 3.4.21 - '@vue/compiler-dom': 3.4.21 - '@vue/compiler-ssr': 3.4.21 - '@vue/shared': 3.4.21 + "@babel/parser": 7.24.1 + "@vue/compiler-core": 3.4.21 + "@vue/compiler-dom": 3.4.21 + "@vue/compiler-ssr": 3.4.21 + "@vue/shared": 3.4.21 estree-walker: 2.0.2 magic-string: 0.30.8 postcss: 8.4.38 source-map-js: 1.2.0 optional: true - '@vue/compiler-ssr@3.4.21': + "@vue/compiler-ssr@3.4.21": dependencies: - '@vue/compiler-dom': 3.4.21 - '@vue/shared': 3.4.21 + "@vue/compiler-dom": 3.4.21 + "@vue/shared": 3.4.21 optional: true - '@vue/component-compiler-utils@3.3.0(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + "@vue/component-compiler-utils@3.3.0(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": dependencies: consolidate: 0.15.1(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) hash-sum: 1.0.2 @@ -45209,117 +61640,117 @@ snapshots: - walrus - whiskers - '@vue/shared@3.4.21': + "@vue/shared@3.4.21": optional: true - '@vue/web-component-wrapper@1.3.0': {} + "@vue/web-component-wrapper@1.3.0": {} - '@webassemblyjs/ast@1.12.1': + "@webassemblyjs/ast@1.12.1": dependencies: - '@webassemblyjs/helper-numbers': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + "@webassemblyjs/helper-numbers": 1.11.6 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - '@webassemblyjs/floating-point-hex-parser@1.11.6': {} + "@webassemblyjs/floating-point-hex-parser@1.11.6": {} - '@webassemblyjs/helper-api-error@1.11.6': {} + "@webassemblyjs/helper-api-error@1.11.6": {} - '@webassemblyjs/helper-buffer@1.12.1': {} + "@webassemblyjs/helper-buffer@1.12.1": {} - '@webassemblyjs/helper-numbers@1.11.6': + "@webassemblyjs/helper-numbers@1.11.6": dependencies: - '@webassemblyjs/floating-point-hex-parser': 1.11.6 - '@webassemblyjs/helper-api-error': 1.11.6 - '@xtuc/long': 4.2.2 + "@webassemblyjs/floating-point-hex-parser": 1.11.6 + "@webassemblyjs/helper-api-error": 1.11.6 + "@xtuc/long": 4.2.2 - '@webassemblyjs/helper-wasm-bytecode@1.11.6': {} + "@webassemblyjs/helper-wasm-bytecode@1.11.6": {} - '@webassemblyjs/helper-wasm-section@1.12.1': + "@webassemblyjs/helper-wasm-section@1.12.1": dependencies: - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/helper-buffer': 1.12.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/wasm-gen': 1.12.1 + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/helper-buffer": 1.12.1 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/wasm-gen": 1.12.1 - '@webassemblyjs/ieee754@1.11.6': + "@webassemblyjs/ieee754@1.11.6": dependencies: - '@xtuc/ieee754': 1.2.0 + "@xtuc/ieee754": 1.2.0 - '@webassemblyjs/leb128@1.11.6': + "@webassemblyjs/leb128@1.11.6": dependencies: - '@xtuc/long': 4.2.2 + "@xtuc/long": 4.2.2 - '@webassemblyjs/utf8@1.11.6': {} + "@webassemblyjs/utf8@1.11.6": {} - '@webassemblyjs/wasm-edit@1.12.1': + "@webassemblyjs/wasm-edit@1.12.1": dependencies: - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/helper-buffer': 1.12.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/helper-wasm-section': 1.12.1 - '@webassemblyjs/wasm-gen': 1.12.1 - '@webassemblyjs/wasm-opt': 1.12.1 - '@webassemblyjs/wasm-parser': 1.12.1 - '@webassemblyjs/wast-printer': 1.12.1 + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/helper-buffer": 1.12.1 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/helper-wasm-section": 1.12.1 + "@webassemblyjs/wasm-gen": 1.12.1 + "@webassemblyjs/wasm-opt": 1.12.1 + "@webassemblyjs/wasm-parser": 1.12.1 + "@webassemblyjs/wast-printer": 1.12.1 - '@webassemblyjs/wasm-gen@1.12.1': + "@webassemblyjs/wasm-gen@1.12.1": dependencies: - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ieee754': 1.11.6 - '@webassemblyjs/leb128': 1.11.6 - '@webassemblyjs/utf8': 1.11.6 + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/ieee754": 1.11.6 + "@webassemblyjs/leb128": 1.11.6 + "@webassemblyjs/utf8": 1.11.6 - '@webassemblyjs/wasm-opt@1.12.1': + "@webassemblyjs/wasm-opt@1.12.1": dependencies: - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/helper-buffer': 1.12.1 - '@webassemblyjs/wasm-gen': 1.12.1 - '@webassemblyjs/wasm-parser': 1.12.1 + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/helper-buffer": 1.12.1 + "@webassemblyjs/wasm-gen": 1.12.1 + "@webassemblyjs/wasm-parser": 1.12.1 - '@webassemblyjs/wasm-parser@1.12.1': + "@webassemblyjs/wasm-parser@1.12.1": dependencies: - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/helper-api-error': 1.11.6 - '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - '@webassemblyjs/ieee754': 1.11.6 - '@webassemblyjs/leb128': 1.11.6 - '@webassemblyjs/utf8': 1.11.6 + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/helper-api-error": 1.11.6 + "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + "@webassemblyjs/ieee754": 1.11.6 + "@webassemblyjs/leb128": 1.11.6 + "@webassemblyjs/utf8": 1.11.6 - '@webassemblyjs/wast-printer@1.12.1': + "@webassemblyjs/wast-printer@1.12.1": dependencies: - '@webassemblyjs/ast': 1.12.1 - '@xtuc/long': 4.2.2 + "@webassemblyjs/ast": 1.12.1 + "@xtuc/long": 4.2.2 - '@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack@5.91.0(webpack-cli@4.10.0))': + "@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack@5.91.0(webpack-cli@4.10.0))": dependencies: webpack: 5.91.0(webpack-cli@4.10.0) webpack-cli: 4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0) - '@webpack-cli/info@1.5.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))': + "@webpack-cli/info@1.5.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))": dependencies: envinfo: 7.11.1 webpack-cli: 4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0) - '@webpack-cli/serve@1.7.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0))': + "@webpack-cli/serve@1.7.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0))": dependencies: webpack-cli: 4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0) optionalDependencies: webpack-dev-server: 4.15.2(webpack-cli@4.10.0)(webpack@5.91.0) - '@xmldom/xmldom@0.7.13': {} + "@xmldom/xmldom@0.7.13": {} - '@xmldom/xmldom@0.8.10': {} + "@xmldom/xmldom@0.8.10": {} - '@xrplf/isomorphic@1.0.0': + "@xrplf/isomorphic@1.0.0": dependencies: - '@noble/hashes': 1.4.0 + "@noble/hashes": 1.4.0 eventemitter3: 5.0.1 ws: 8.18.0 transitivePeerDependencies: - bufferutil - utf-8-validate - '@xstate/react@1.6.3(@types/react@18.2.73)(react@18.2.0)(xstate@4.38.3)': + "@xstate/react@1.6.3(@types/react@18.2.73)(react@18.2.0)(xstate@4.38.3)": dependencies: react: 18.2.0 use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.73)(react@18.2.0) @@ -45327,46 +61758,46 @@ snapshots: optionalDependencies: xstate: 4.38.3 transitivePeerDependencies: - - '@types/react' + - "@types/react" - '@xtuc/ieee754@1.2.0': {} + "@xtuc/ieee754@1.2.0": {} - '@xtuc/long@4.2.2': {} + "@xtuc/long@4.2.2": {} - '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20)': + "@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20)": dependencies: esbuild: 0.18.20 tslib: 2.6.2 - '@yarnpkg/fslib@2.10.3': + "@yarnpkg/fslib@2.10.3": dependencies: - '@yarnpkg/libzip': 2.3.0 + "@yarnpkg/libzip": 2.3.0 tslib: 2.6.2 - '@yarnpkg/libzip@2.3.0': + "@yarnpkg/libzip@2.3.0": dependencies: - '@types/emscripten': 1.39.10 + "@types/emscripten": 1.39.10 tslib: 2.6.2 - '@zondax/cbor@8.1.0-zondax-no-bigint': + "@zondax/cbor@8.1.0-zondax-no-bigint": dependencies: big-integer: 1.6.52 nofilter: 3.1.0 - '@zondax/ledger-casper@2.6.1': + "@zondax/ledger-casper@2.6.1": dependencies: - '@babel/runtime': 7.24.1 - '@ledgerhq/hw-transport': 6.30.6 - '@types/ledgerhq__hw-transport': 4.21.8 + "@babel/runtime": 7.24.1 + "@ledgerhq/hw-transport": 6.30.6 + "@types/ledgerhq__hw-transport": 4.21.8 - '@zondax/ledger-cosmos-js@3.0.3(@types/node@20.12.12)(eslint@8.57.0)(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.1.3)': + "@zondax/ledger-cosmos-js@3.0.3(@types/node@20.12.12)(eslint@8.57.0)(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.1.3)": dependencies: - '@babel/runtime': 7.24.1 - '@ledgerhq/hw-transport': 6.27.1 - '@ledgerhq/hw-transport-u2f': 5.36.0-deprecated - '@types/node': 20.12.12 - '@vue/cli-plugin-typescript': 5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16))(eslint@8.57.0)(typescript@5.1.3)(vue-template-compiler@2.7.16)(vue@2.7.16) - '@vue/cli-service': 5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16) + "@babel/runtime": 7.24.1 + "@ledgerhq/hw-transport": 6.27.1 + "@ledgerhq/hw-transport-u2f": 5.36.0-deprecated + "@types/node": 20.12.12 + "@vue/cli-plugin-typescript": 5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16))(eslint@8.57.0)(typescript@5.1.3)(vue-template-compiler@2.7.16)(vue@2.7.16) + "@vue/cli-service": 5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16) bech32: 1.1.4 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) crypto-browserify: 3.12.0 @@ -45375,10 +61806,10 @@ snapshots: vue: 2.7.16 vue-template-compiler: 2.7.16 transitivePeerDependencies: - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@vue/compiler-sfc' + - "@parcel/css" + - "@rspack/core" + - "@swc/core" + - "@vue/compiler-sfc" - arc-templates - atpl - babel-core @@ -45453,36 +61884,36 @@ snapshots: - webpack-sources - whiskers - '@zondax/ledger-filecoin@0.11.2': + "@zondax/ledger-filecoin@0.11.2": dependencies: - '@babel/runtime': 7.24.1 - '@ledgerhq/hw-transport': 5.51.1 + "@babel/runtime": 7.24.1 + "@ledgerhq/hw-transport": 5.51.1 - '@zondax/ledger-icp@0.7.0': + "@zondax/ledger-icp@0.7.0": dependencies: - '@zondax/ledger-js': 0.2.2 + "@zondax/ledger-js": 0.2.2 - '@zondax/ledger-js@0.2.2': + "@zondax/ledger-js@0.2.2": dependencies: - '@ledgerhq/hw-transport': 6.28.1 + "@ledgerhq/hw-transport": 6.28.1 - '@zondax/ledger-js@0.8.2': + "@zondax/ledger-js@0.8.2": dependencies: - '@ledgerhq/hw-transport': 6.30.6 + "@ledgerhq/hw-transport": 6.30.6 - '@zondax/ledger-stacks@1.0.4': + "@zondax/ledger-stacks@1.0.4": dependencies: - '@babel/runtime': 7.24.1 - '@ledgerhq/hw-transport': 6.30.6 - '@stacks/transactions': 4.3.8 + "@babel/runtime": 7.24.1 + "@ledgerhq/hw-transport": 6.30.6 + "@stacks/transactions": 4.3.8 varuint-bitcoin: 1.1.2 transitivePeerDependencies: - encoding - '@zondax/ledger-substrate@0.44.2': + "@zondax/ledger-substrate@0.44.2": dependencies: - '@ledgerhq/hw-transport': 6.30.6 - '@zondax/ledger-js': 0.8.2 + "@ledgerhq/hw-transport": 6.30.6 + "@zondax/ledger-js": 0.8.2 axios: 1.7.7 JSONStream@1.3.5: @@ -45663,7 +62094,7 @@ snapshots: allure-playwright@2.15.1: dependencies: - '@playwright/test': 1.45.0 + "@playwright/test": 1.45.0 allure-js-commons: 2.15.1 anser@1.4.10: {} @@ -45737,12 +62168,12 @@ snapshots: app-builder-lib@24.13.3(dmg-builder@24.13.3(lodash@4.17.21))(lodash@4.17.21): dependencies: - '@develar/schema-utils': 2.6.5 - '@electron/notarize': 2.2.1 - '@electron/osx-sign': 1.0.5 - '@electron/universal': 1.5.1 - '@malept/flatpak-bundler': 0.4.0 - '@types/fs-extra': 9.0.13 + "@develar/schema-utils": 2.6.5 + "@electron/notarize": 2.2.1 + "@electron/osx-sign": 1.0.5 + "@electron/universal": 1.5.1 + "@malept/flatpak-bundler": 0.4.0 + "@types/fs-extra": 9.0.13 async-exit-hook: 2.0.1 bluebird-lst: 1.0.9 builder-util: 24.13.1 @@ -46015,7 +62446,7 @@ snapshots: asynckit@0.4.0: {} - asyncstorage-down@4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))): + asyncstorage-down@4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))): dependencies: abstract-leveldown: 2.6.1 argsarray: 0.0.1 @@ -46023,7 +62454,7 @@ snapshots: ltgt: 2.2.1 tiny-queue: 0.2.0 optionalDependencies: - '@react-native-async-storage/async-storage': 1.23.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + "@react-native-async-storage/async-storage": 1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) at-least-node@1.0.0: {} @@ -46098,14 +62529,14 @@ snapshots: babel-core@7.0.0-bridge.0(@babel/core@7.24.3): dependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 babel-jest@27.5.1(@babel/core@7.24.3): dependencies: - '@babel/core': 7.24.3 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 - '@types/babel__core': 7.20.5 + "@babel/core": 7.24.3 + "@jest/transform": 27.5.1 + "@jest/types": 27.5.1 + "@types/babel__core": 7.20.5 babel-plugin-istanbul: 6.1.1 babel-preset-jest: 27.5.1(@babel/core@7.24.3) chalk: 4.1.2 @@ -46117,9 +62548,9 @@ snapshots: babel-jest@28.1.3(@babel/core@7.24.3): dependencies: - '@babel/core': 7.24.3 - '@jest/transform': 28.1.3 - '@types/babel__core': 7.20.5 + "@babel/core": 7.24.3 + "@jest/transform": 28.1.3 + "@types/babel__core": 7.20.5 babel-plugin-istanbul: 6.1.1 babel-preset-jest: 28.1.3(@babel/core@7.24.3) chalk: 4.1.2 @@ -46131,9 +62562,9 @@ snapshots: babel-jest@29.7.0(@babel/core@7.24.3): dependencies: - '@babel/core': 7.24.3 - '@jest/transform': 29.7.0 - '@types/babel__core': 7.20.5 + "@babel/core": 7.24.3 + "@jest/transform": 29.7.0 + "@types/babel__core": 7.20.5 babel-plugin-istanbul: 6.1.1 babel-preset-jest: 29.6.3(@babel/core@7.24.3) chalk: 4.1.2 @@ -46145,25 +62576,25 @@ snapshots: babel-loader@8.3.0(@babel/core@7.24.3)(webpack@5.91.0(esbuild@0.19.12)): dependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 webpack: 5.91.0(esbuild@0.19.12) - babel-loader@8.3.0(@babel/core@7.24.3)(webpack@5.91.0(metro@0.80.8)): + babel-loader@8.3.0(@babel/core@7.24.3)(webpack@5.91.0(metro@0.80.12)): dependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 5.91.0(metro@0.80.8) + webpack: 5.91.0(metro@0.80.12) babel-loader@8.3.0(@babel/core@7.24.3)(webpack@5.91.0(webpack-cli@4.10.0)): dependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 @@ -46172,7 +62603,7 @@ snapshots: babel-loader@8.3.0(@babel/core@7.24.3)(webpack@5.94.0): dependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 @@ -46181,26 +62612,26 @@ snapshots: babel-loader@9.1.3(@babel/core@7.24.3)(webpack@5.94.0(@swc/core@1.4.11)(esbuild@0.19.12)): dependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 find-cache-dir: 4.0.0 schema-utils: 4.2.0 webpack: 5.94.0(@swc/core@1.4.11)(esbuild@0.19.12) - babel-loader@9.1.3(@babel/core@7.24.3)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8)): + babel-loader@9.1.3(@babel/core@7.24.3)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)): dependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 find-cache-dir: 4.0.0 schema-utils: 4.2.0 - webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.8) + webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.12) babel-plugin-add-react-displayname@0.0.5: {} babel-plugin-emotion@10.2.2: dependencies: - '@babel/helper-module-imports': 7.24.3 - '@emotion/hash': 0.8.0 - '@emotion/memoize': 0.7.4 - '@emotion/serialize': 0.11.16 + "@babel/helper-module-imports": 7.24.3 + "@emotion/hash": 0.8.0 + "@emotion/memoize": 0.7.4 + "@emotion/serialize": 0.11.16 babel-plugin-macros: 2.8.0 babel-plugin-syntax-jsx: 6.18.0 convert-source-map: 1.9.0 @@ -46210,9 +62641,9 @@ snapshots: babel-plugin-istanbul@6.1.1: dependencies: - '@babel/helper-plugin-utils': 7.24.0 - '@istanbuljs/load-nyc-config': 1.1.0 - '@istanbuljs/schema': 0.1.3 + "@babel/helper-plugin-utils": 7.24.0 + "@istanbuljs/load-nyc-config": 1.1.0 + "@istanbuljs/schema": 0.1.3 istanbul-lib-instrument: 5.2.1 test-exclude: 6.0.0 transitivePeerDependencies: @@ -46220,34 +62651,34 @@ snapshots: babel-plugin-jest-hoist@27.5.1: dependencies: - '@babel/template': 7.24.0 - '@babel/types': 7.24.0 - '@types/babel__core': 7.20.5 - '@types/babel__traverse': 7.20.5 + "@babel/template": 7.24.0 + "@babel/types": 7.24.0 + "@types/babel__core": 7.20.5 + "@types/babel__traverse": 7.20.5 babel-plugin-jest-hoist@28.1.3: dependencies: - '@babel/template': 7.24.0 - '@babel/types': 7.24.0 - '@types/babel__core': 7.20.5 - '@types/babel__traverse': 7.20.5 + "@babel/template": 7.24.0 + "@babel/types": 7.24.0 + "@types/babel__core": 7.20.5 + "@types/babel__traverse": 7.20.5 babel-plugin-jest-hoist@29.6.3: dependencies: - '@babel/template': 7.24.0 - '@babel/types': 7.24.0 - '@types/babel__core': 7.20.5 - '@types/babel__traverse': 7.20.5 + "@babel/template": 7.24.0 + "@babel/types": 7.24.0 + "@types/babel__core": 7.20.5 + "@types/babel__traverse": 7.20.5 babel-plugin-macros@2.8.0: dependencies: - '@babel/runtime': 7.25.0 + "@babel/runtime": 7.25.0 cosmiconfig: 6.0.0 resolve: 1.22.8 babel-plugin-macros@3.1.0: dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.25.0 cosmiconfig: 7.1.0 resolve: 1.22.8 @@ -46269,56 +62700,45 @@ snapshots: babel-plugin-named-asset-import@0.3.8(@babel/core@7.24.3): dependencies: - '@babel/core': 7.24.3 - - babel-plugin-polyfill-corejs2@0.4.10: - dependencies: - '@babel/compat-data': 7.24.1 - '@babel/helper-define-polyfill-provider': 0.6.1 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + "@babel/core": 7.24.3 babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.3): dependencies: - '@babel/compat-data': 7.24.1 - '@babel/core': 7.24.3 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3) + "@babel/compat-data": 7.24.1 + "@babel/core": 7.24.3 + "@babel/helper-define-polyfill-provider": 0.6.1(@babel/core@7.24.3) semver: 6.3.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.10.4: - dependencies: - '@babel/helper-define-polyfill-provider': 0.6.1 - core-js-compat: 3.36.1 - transitivePeerDependencies: - - supports-color - babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.3): dependencies: - '@babel/core': 7.24.3 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/helper-define-polyfill-provider": 0.6.1(@babel/core@7.24.3) core-js-compat: 3.36.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.6.1: + babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.24.3): dependencies: - '@babel/helper-define-polyfill-provider': 0.6.1 + "@babel/core": 7.24.3 + "@babel/helper-define-polyfill-provider": 0.6.1(@babel/core@7.24.3) transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.24.3): + babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517: dependencies: - '@babel/core': 7.24.3 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3) - transitivePeerDependencies: - - supports-color + "@babel/generator": 7.2.0 + "@babel/types": 7.24.0 + chalk: 4.1.2 + invariant: 2.2.4 + pretty-format: 24.9.0 + zod: 3.23.8 + zod-validation-error: 2.1.0(zod@3.23.8) babel-plugin-react-docgen-typescript@1.5.1(@babel/core@7.24.3)(typescript@5.4.3): dependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 react-docgen-typescript: 1.22.0(typescript@5.4.3) transitivePeerDependencies: - typescript @@ -46329,203 +62749,199 @@ snapshots: babel-plugin-styled-components@2.1.4(@babel/core@7.24.3)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0)): dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.24.3 - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-module-imports": 7.24.3 + "@babel/plugin-syntax-jsx": 7.24.1(@babel/core@7.24.3) lodash: 4.17.21 picomatch: 2.3.1 styled-components: 5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0) transitivePeerDependencies: - - '@babel/core' + - "@babel/core" babel-plugin-styled-components@2.1.4(@babel/core@7.24.3)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0)): dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.24.3 - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-module-imports": 7.24.3 + "@babel/plugin-syntax-jsx": 7.24.1(@babel/core@7.24.3) lodash: 4.17.21 picomatch: 2.3.1 styled-components: 5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0) transitivePeerDependencies: - - '@babel/core' + - "@babel/core" babel-plugin-styled-components@2.1.4(@babel/core@7.24.3)(styled-components@5.3.11(@babel/core@7.24.3)(react-is@18.2.0)(react@18.2.0)): dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.24.3 - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-module-imports": 7.24.3 + "@babel/plugin-syntax-jsx": 7.24.1(@babel/core@7.24.3) lodash: 4.17.21 picomatch: 2.3.1 styled-components: 5.3.11(@babel/core@7.24.3)(react-is@18.2.0)(react@18.2.0) transitivePeerDependencies: - - '@babel/core' + - "@babel/core" babel-plugin-styled-components@2.1.4(styled-components@5.3.11(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0)): dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.24.3 - '@babel/plugin-syntax-jsx': 7.24.1 + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-module-imports": 7.24.3 + "@babel/plugin-syntax-jsx": 7.24.1 lodash: 4.17.21 picomatch: 2.3.1 styled-components: 5.3.11(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0) transitivePeerDependencies: - - '@babel/core' + - "@babel/core" babel-plugin-styled-components@2.1.4(styled-components@5.3.11(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0)): dependencies: - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.24.3 - '@babel/plugin-syntax-jsx': 7.24.1 + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-module-imports": 7.24.3 + "@babel/plugin-syntax-jsx": 7.24.1 lodash: 4.17.21 picomatch: 2.3.1 styled-components: 5.3.11(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0) transitivePeerDependencies: - - '@babel/core' + - "@babel/core" babel-plugin-syntax-jsx@6.18.0: {} babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: {} - babel-plugin-transform-flow-enums@0.0.2: - dependencies: - '@babel/plugin-syntax-flow': 7.24.1 - transitivePeerDependencies: - - '@babel/core' - babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.3): dependencies: - '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) + "@babel/plugin-syntax-flow": 7.24.1(@babel/core@7.24.3) transitivePeerDependencies: - - '@babel/core' + - "@babel/core" babel-plugin-transform-react-remove-prop-types@0.4.24: {} babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.3): dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.3) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.3) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.3) - - babel-preset-expo@10.0.1(@babel/core@7.24.3): - dependencies: - '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) - '@babel/preset-react': 7.24.1(@babel/core@7.24.3) - '@react-native/babel-preset': 0.73.19(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3)) - babel-plugin-react-native-web: 0.18.12 - react-refresh: 0.14.0 + "@babel/core": 7.24.3 + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.24.3) + "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.24.3) + "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.24.3) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.24.3) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.24.3) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.24.3) + + babel-preset-expo@11.0.15(@babel/core@7.24.3): + dependencies: + "@babel/plugin-proposal-decorators": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-export-namespace-from": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-object-rest-spread": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) + "@babel/preset-react": 7.24.1(@babel/core@7.24.3) + "@babel/preset-typescript": 7.24.1(@babel/core@7.24.3) + "@react-native/babel-preset": 0.74.87(@babel/core@7.24.3) + babel-plugin-react-compiler: 0.0.0-experimental-592953e-20240517 + babel-plugin-react-native-web: 0.19.10 + react-refresh: 0.14.2 transitivePeerDependencies: - - '@babel/core' + - "@babel/core" + - "@babel/preset-env" - supports-color babel-preset-expo@9.5.2(@babel/core@7.24.3): dependencies: - '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.24.3) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) + "@babel/plugin-proposal-decorators": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-proposal-export-namespace-from": 7.18.9(@babel/core@7.24.3) + "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) + "@babel/preset-env": 7.24.3(@babel/core@7.24.3) babel-plugin-module-resolver: 5.0.0 babel-plugin-react-native-web: 0.18.12 metro-react-native-babel-preset: 0.76.8(@babel/core@7.24.3) transitivePeerDependencies: - - '@babel/core' + - "@babel/core" - supports-color babel-preset-expo@9.9.0(@babel/core@7.24.3): dependencies: - '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) - '@babel/preset-react': 7.24.1(@babel/core@7.24.3) + "@babel/plugin-proposal-decorators": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.24.3) + "@babel/plugin-transform-export-namespace-from": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) + "@babel/preset-env": 7.24.3(@babel/core@7.24.3) + "@babel/preset-react": 7.24.1(@babel/core@7.24.3) babel-plugin-module-resolver: 5.0.0 babel-plugin-react-native-web: 0.18.12 metro-react-native-babel-preset: 0.76.8(@babel/core@7.24.3) transitivePeerDependencies: - - '@babel/core' + - "@babel/core" - supports-color babel-preset-fbjs@3.4.0(@babel/core@7.24.3): dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.3) - '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.24.3) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.24.3) + "@babel/plugin-syntax-flow": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-syntax-jsx": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-block-scoped-functions": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-block-scoping": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-classes": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-computed-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-destructuring": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-flow-strip-types": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-for-of": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-function-name": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-literals": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-member-expression-literals": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-object-super": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-property-literals": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-display-name": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) + "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-spread": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-template-literals": 7.24.1(@babel/core@7.24.3) babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 babel-preset-jest@27.5.1(@babel/core@7.24.3): dependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 babel-plugin-jest-hoist: 27.5.1 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3) babel-preset-jest@28.1.3(@babel/core@7.24.3): dependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 babel-plugin-jest-hoist: 28.1.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3) babel-preset-jest@29.6.3(@babel/core@7.24.3): dependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 babel-plugin-jest-hoist: 29.6.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3) babel-preset-react-app@10.0.1: dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) - '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.24.3) - '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) - '@babel/preset-react': 7.24.1(@babel/core@7.24.3) - '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) - '@babel/runtime': 7.24.1 + "@babel/core": 7.24.3 + "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-decorators": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-numeric-separator": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.24.3) + "@babel/plugin-proposal-private-methods": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-private-property-in-object": 7.21.11(@babel/core@7.24.3) + "@babel/plugin-transform-flow-strip-types": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-display-name": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-runtime": 7.24.3(@babel/core@7.24.3) + "@babel/preset-env": 7.24.3(@babel/core@7.24.3) + "@babel/preset-react": 7.24.1(@babel/core@7.24.3) + "@babel/preset-typescript": 7.24.1(@babel/core@7.24.3) + "@babel/runtime": 7.25.0 babel-plugin-macros: 3.1.0 babel-plugin-transform-react-remove-prop-types: 0.4.24 transitivePeerDependencies: @@ -46650,7 +63066,7 @@ snapshots: bip32@2.0.6: dependencies: - '@types/node': 10.12.18 + "@types/node": 10.12.18 bs58check: 2.1.2 create-hash: 1.2.0 create-hmac: 1.1.7 @@ -46660,21 +63076,21 @@ snapshots: bip32@4.0.0: dependencies: - '@noble/hashes': 1.4.0 - '@scure/base': 1.1.6 + "@noble/hashes": 1.4.0 + "@scure/base": 1.1.6 typeforce: 1.18.0 wif: 2.0.6 bip39@3.0.2: dependencies: - '@types/node': 11.11.6 + "@types/node": 11.11.6 create-hash: 1.2.0 pbkdf2: 3.1.2 randombytes: 2.1.0 bip39@3.1.0: dependencies: - '@noble/hashes': 1.4.0 + "@noble/hashes": 1.4.0 bip66@1.1.5: dependencies: @@ -46802,6 +63218,10 @@ snapshots: bowser@2.11.0: {} + bplist-creator@0.0.7: + dependencies: + stream-buffers: 2.2.0 + bplist-creator@0.1.0: dependencies: stream-buffers: 2.2.0 @@ -46916,7 +63336,7 @@ snapshots: bs58check@3.0.1: dependencies: - '@noble/hashes': 1.4.0 + "@noble/hashes": 1.4.0 bs58: 5.0.0 bser@2.1.1: @@ -47004,7 +63424,7 @@ snapshots: builder-util@24.13.1: dependencies: 7zip-bin: 5.2.0 - '@types/debug': 4.1.12 + "@types/debug": 4.1.12 app-builder-bin: 4.0.0 bluebird-lst: 1.0.9 builder-util-runtime: 9.2.4 @@ -47035,14 +63455,14 @@ snapshots: bunyamin@1.5.2: dependencies: - '@flatten-js/interval-tree': 1.1.3 + "@flatten-js/interval-tree": 1.1.3 multi-sort-stream: 1.0.4 stream-json: 1.8.0 trace-event-lib: 1.4.1 bunyamin@1.5.2(bunyan@2.0.5): dependencies: - '@flatten-js/interval-tree': 1.1.3 + "@flatten-js/interval-tree": 1.1.3 multi-sort-stream: 1.0.4 stream-json: 1.8.0 trace-event-lib: 1.4.1 @@ -47051,7 +63471,7 @@ snapshots: bunyamin@1.6.3: dependencies: - '@flatten-js/interval-tree': 1.1.3 + "@flatten-js/interval-tree": 1.1.3 multi-sort-stream: 1.0.4 stream-json: 1.8.0 trace-event-lib: 1.4.1 @@ -47100,15 +63520,15 @@ snapshots: c32check@2.0.0: dependencies: - '@noble/hashes': 1.4.0 + "@noble/hashes": 1.4.0 base-x: 4.0.0 cac@6.7.14: {} cacache@15.3.0: dependencies: - '@npmcli/fs': 1.1.1 - '@npmcli/move-file': 1.1.2 + "@npmcli/fs": 1.1.1 + "@npmcli/move-file": 1.1.2 chownr: 2.0.0 fs-minipass: 2.1.0 glob: 7.2.3 @@ -47128,6 +63548,21 @@ snapshots: transitivePeerDependencies: - bluebird + cacache@18.0.4: + dependencies: + "@npmcli/fs": 3.1.1 + fs-minipass: 3.0.3 + glob: 10.3.12 + lru-cache: 10.2.0 + minipass: 7.0.4 + minipass-collect: 2.0.1 + minipass-flush: 1.0.5 + minipass-pipeline: 1.2.4 + p-map: 4.0.0 + ssri: 10.0.6 + tar: 6.2.1 + unique-filename: 3.0.0 + cache-content-type@1.0.1: dependencies: mime-types: 2.1.35 @@ -47226,17 +63661,17 @@ snapshots: casper-js-sdk@2.15.4: dependencies: - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@noble/curves': 1.4.0 - '@noble/ed25519': 1.7.3 - '@noble/hashes': 1.4.0 - '@noble/secp256k1': 1.7.1 - '@open-rpc/client-js': 1.8.1 - '@scure/bip32': 1.4.0 - '@scure/bip39': 1.3.0 - '@types/ws': 8.5.10 + "@ethersproject/bignumber": 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/constants": 5.7.0 + "@noble/curves": 1.4.0 + "@noble/ed25519": 1.7.3 + "@noble/hashes": 1.4.0 + "@noble/secp256k1": 1.7.1 + "@open-rpc/client-js": 1.8.1 + "@scure/bip32": 1.4.0 + "@scure/bip39": 1.3.0 + "@types/ws": 8.5.10 eventsource: 2.0.2 glob: 7.2.3 humanize-duration: 3.31.0 @@ -47244,7 +63679,7 @@ snapshots: lodash: 4.17.21 node-fetch: 2.6.13 reflect-metadata: 0.1.14 - ts-results: '@casperlabs/ts-results@3.3.5' + ts-results: "@casperlabs/ts-results@3.3.5" typedjson: 1.8.0 transitivePeerDependencies: - bufferutil @@ -47375,7 +63810,7 @@ snapshots: chrome-launcher@0.15.2: dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 lighthouse-logger: 1.4.2 @@ -47384,17 +63819,6 @@ snapshots: chrome-trace-event@1.0.3: {} - chromium-edge-launcher@1.0.0: - dependencies: - '@types/node': 20.12.12 - escape-string-regexp: 4.0.0 - is-wsl: 2.2.0 - lighthouse-logger: 1.4.2 - mkdirp: 1.0.4 - rimraf: 3.0.2 - transitivePeerDependencies: - - supports-color - chromium-pickle-js@0.2.0: {} ci-info@2.0.0: {} @@ -47430,10 +63854,10 @@ snapshots: clean-stack@2.2.0: {} - clean-webpack-plugin@4.0.0(webpack@5.91.0(metro@0.80.8)): + clean-webpack-plugin@4.0.0(webpack@5.91.0(metro@0.80.12)): dependencies: del: 4.1.1 - webpack: 5.91.0(metro@0.80.8) + webpack: 5.91.0(metro@0.80.12) cli-cursor@2.1.0: dependencies: @@ -47462,7 +63886,7 @@ snapshots: dependencies: string-width: 4.2.3 optionalDependencies: - '@colors/colors': 1.5.0 + "@colors/colors": 1.5.0 cli-truncate@0.2.1: dependencies: @@ -47552,7 +63976,7 @@ snapshots: coa@2.0.2: dependencies: - '@types/q': 1.5.8 + "@types/q": 1.5.8 chalk: 2.4.2 q: 1.5.1 @@ -47560,13 +63984,13 @@ snapshots: codemirror@6.0.1: dependencies: - '@codemirror/autocomplete': 6.16.3(@codemirror/state@6.4.1)(@codemirror/view@6.28.2) - '@codemirror/commands': 6.6.0 - '@codemirror/language': 6.10.2 - '@codemirror/lint': 6.8.1 - '@codemirror/search': 6.5.6 - '@codemirror/state': 6.4.1 - '@codemirror/view': 6.28.2 + "@codemirror/autocomplete": 6.16.3(@codemirror/state@6.4.1)(@codemirror/view@6.28.2) + "@codemirror/commands": 6.6.0 + "@codemirror/language": 6.10.2 + "@codemirror/lint": 6.8.1 + "@codemirror/search": 6.5.6 + "@codemirror/state": 6.4.1 + "@codemirror/view": 6.28.2 coininfo@5.2.1: dependencies: @@ -47832,7 +64256,7 @@ snapshots: copy-to@2.0.1: {} - copy-webpack-plugin@10.2.4(webpack@5.91.0(metro@0.80.8)): + copy-webpack-plugin@10.2.4(webpack@5.91.0(metro@0.80.12)): dependencies: fast-glob: 3.3.2 glob-parent: 6.0.2 @@ -47840,7 +64264,7 @@ snapshots: normalize-path: 3.0.0 schema-utils: 4.2.0 serialize-javascript: 6.0.2 - webpack: 5.91.0(metro@0.80.8) + webpack: 5.91.0(metro@0.80.12) copy-webpack-plugin@9.1.0(webpack@5.94.0): dependencies: @@ -47879,7 +64303,7 @@ snapshots: cosmiconfig-typescript-loader@4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6(typescript@5.4.5))(ts-node@10.9.2(@types/node@20.5.1)(typescript@5.4.5))(typescript@5.4.5): dependencies: - '@types/node': 20.5.1 + "@types/node": 20.5.1 cosmiconfig: 8.3.6(typescript@5.4.5) ts-node: 10.9.2(@types/node@20.5.1)(typescript@5.4.5) typescript: 5.4.5 @@ -47893,7 +64317,7 @@ snapshots: cosmiconfig@6.0.0: dependencies: - '@types/parse-json': 4.0.2 + "@types/parse-json": 4.0.2 import-fresh: 3.3.0 parse-json: 5.2.0 path-type: 4.0.0 @@ -47901,7 +64325,7 @@ snapshots: cosmiconfig@7.1.0: dependencies: - '@types/parse-json': 4.0.2 + "@types/parse-json": 4.0.2 import-fresh: 3.3.0 parse-json: 5.2.0 path-type: 4.0.0 @@ -47971,7 +64395,7 @@ snapshots: create-jest@29.7.0: dependencies: - '@jest/types': 29.6.3 + "@jest/types": 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -47979,7 +64403,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -47987,7 +64411,7 @@ snapshots: create-jest@29.7.0(@types/node@18.19.26)(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)): dependencies: - '@jest/types': 29.6.3 + "@jest/types": 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -47995,7 +64419,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -48003,7 +64427,7 @@ snapshots: create-jest@29.7.0(@types/node@20.12.12): dependencies: - '@jest/types': 29.6.3 + "@jest/types": 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -48011,7 +64435,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -48019,7 +64443,7 @@ snapshots: create-jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)): dependencies: - '@jest/types': 29.6.3 + "@jest/types": 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -48027,7 +64451,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -48035,7 +64459,7 @@ snapshots: create-jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)): dependencies: - '@jest/types': 29.6.3 + "@jest/types": 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -48043,7 +64467,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -48051,7 +64475,7 @@ snapshots: create-jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)): dependencies: - '@jest/types': 29.6.3 + "@jest/types": 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -48059,7 +64483,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -48067,7 +64491,7 @@ snapshots: create-jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)): dependencies: - '@jest/types': 29.6.3 + "@jest/types": 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -48075,7 +64499,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -48083,7 +64507,7 @@ snapshots: create-jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)): dependencies: - '@jest/types': 29.6.3 + "@jest/types": 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -48091,7 +64515,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -48099,7 +64523,7 @@ snapshots: create-jest@29.7.0(ts-node@10.9.2(typescript@5.4.3)): dependencies: - '@jest/types': 29.6.3 + "@jest/types": 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -48107,7 +64531,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -48212,7 +64636,7 @@ snapshots: dependencies: hyphenate-style-name: 1.0.4 - css-loader@6.10.0(webpack@5.91.0(metro@0.80.8)): + css-loader@6.10.0(webpack@5.91.0(metro@0.80.12)): dependencies: icss-utils: 5.1.0(postcss@8.4.38) postcss: 8.4.38 @@ -48223,7 +64647,7 @@ snapshots: postcss-value-parser: 4.2.0 semver: 7.6.3 optionalDependencies: - webpack: 5.91.0(metro@0.80.8) + webpack: 5.91.0(metro@0.80.12) css-loader@6.10.0(webpack@5.94.0(@swc/core@1.4.11)(esbuild@0.19.12)): dependencies: @@ -48238,7 +64662,7 @@ snapshots: optionalDependencies: webpack: 5.94.0(@swc/core@1.4.11)(esbuild@0.19.12) - css-loader@6.10.0(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8)): + css-loader@6.10.0(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)): dependencies: icss-utils: 5.1.0(postcss@8.4.38) postcss: 8.4.38 @@ -48249,7 +64673,7 @@ snapshots: postcss-value-parser: 4.2.0 semver: 7.6.3 optionalDependencies: - webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.8) + webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.12) css-loader@6.10.0(webpack@5.94.0): dependencies: @@ -48264,15 +64688,15 @@ snapshots: optionalDependencies: webpack: 5.94.0 - css-minimizer-webpack-plugin@3.4.1(metro@0.80.8)(webpack@5.91.0(metro@0.80.8)): + css-minimizer-webpack-plugin@3.4.1(metro@0.80.12)(webpack@5.91.0(metro@0.80.12)): dependencies: cssnano: 5.1.15(postcss@8.4.38) - jest-worker: 27.5.1(metro@0.80.8) + jest-worker: 27.5.1(metro@0.80.12) postcss: 8.4.38 schema-utils: 4.2.0 serialize-javascript: 6.0.2 source-map: 0.6.1 - webpack: 5.91.0(metro@0.80.8) + webpack: 5.91.0(metro@0.80.12) transitivePeerDependencies: - metro @@ -48415,8 +64839,6 @@ snapshots: curve25519-js@0.0.4: {} - cycle@1.0.3: {} - cytoscape-cose-bilkent@4.1.0(cytoscape@3.28.1): dependencies: cose-base: 1.0.3 @@ -48678,7 +65100,7 @@ snapshots: date-fns@2.30.0: dependencies: - '@babel/runtime': 7.25.0 + "@babel/runtime": 7.25.0 dateformat@4.6.3: {} @@ -48835,7 +65257,7 @@ snapshots: del@4.1.1: dependencies: - '@types/glob': 7.2.0 + "@types/glob": 7.2.0 globby: 6.1.0 is-path-cwd: 2.2.0 is-path-in-cwd: 2.1.0 @@ -48878,13 +65300,7 @@ snapshots: deprecated-react-native-prop-types@2.3.0: dependencies: - '@react-native/normalize-color': 2.1.0 - invariant: 2.2.4 - prop-types: 15.8.1 - - deprecated-react-native-prop-types@5.0.0: - dependencies: - '@react-native/normalize-colors': 0.73.2 + "@react-native/normalize-color": 2.1.0 invariant: 2.2.4 prop-types: 15.8.1 @@ -48940,7 +65356,7 @@ snapshots: detox@20.26.2(patch_hash=yanhspfjw3apvvf4gev5ovygia)(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3))): dependencies: - '@jest/reporters': 29.7.0 + "@jest/reporters": 29.7.0 ajv: 8.17.1 bunyan: 1.8.15 bunyan-debug-stream: 3.1.0(bunyan@1.8.15) @@ -48982,9 +65398,9 @@ snapshots: optionalDependencies: jest: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) transitivePeerDependencies: - - '@jest/environment' - - '@jest/types' - - '@types/bunyan' + - "@jest/environment" + - "@jest/types" + - "@types/bunyan" - babel-plugin-macros - bufferutil - jest-environment-jsdom @@ -49052,8 +65468,8 @@ snapshots: dmg-license@1.0.11: dependencies: - '@types/plist': 3.0.2 - '@types/verror': 1.10.10 + "@types/plist": 3.0.2 + "@types/verror": 1.10.10 ajv: 6.12.6 crc: 3.8.0 iconv-corefoundation: 1.1.7 @@ -49064,7 +65480,7 @@ snapshots: dns-packet@5.6.1: dependencies: - '@leichtgewicht/ip-codec': 2.0.5 + "@leichtgewicht/ip-codec": 2.0.5 docker-compose@0.24.8: dependencies: @@ -49084,11 +65500,11 @@ snapshots: documentation@14.0.2: dependencies: - '@babel/core': 7.24.3 - '@babel/generator': 7.24.1 - '@babel/parser': 7.24.1 - '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 + "@babel/core": 7.24.3 + "@babel/generator": 7.24.1 + "@babel/parser": 7.24.1 + "@babel/traverse": 7.24.1 + "@babel/types": 7.24.0 chalk: 5.3.0 chokidar: 3.6.0 diff: 5.2.0 @@ -49123,7 +65539,7 @@ snapshots: vfile-sort: 3.0.1 yargs: 17.7.2 optionalDependencies: - '@vue/compiler-sfc': 3.4.21 + "@vue/compiler-sfc": 3.4.21 vue-template-compiler: 2.7.16 transitivePeerDependencies: - supports-color @@ -49138,7 +65554,7 @@ snapshots: dom-helpers@5.2.1: dependencies: - '@babel/runtime': 7.25.0 + "@babel/runtime": 7.25.0 csstype: 3.1.3 dom-serializer@0.2.2: @@ -49224,6 +65640,10 @@ snapshots: dotenv-expand@10.0.0: {} + dotenv-expand@11.0.6: + dependencies: + dotenv: 16.4.5 + dotenv-expand@5.1.0: {} dotenv@10.0.0: {} @@ -49329,7 +65749,7 @@ snapshots: electron-publish@24.13.1: dependencies: - '@types/fs-extra': 9.0.13 + "@types/fs-extra": 9.0.13 builder-util: 24.13.1 builder-util-runtime: 9.2.4 chalk: 4.1.2 @@ -49361,8 +65781,8 @@ snapshots: electron@32.0.2: dependencies: - '@electron/get': 2.0.3 - '@types/node': 20.12.12 + "@electron/get": 2.0.3 + "@types/node": 20.12.12 extract-zip: 2.0.1 transitivePeerDependencies: - supports-color @@ -49654,80 +66074,80 @@ snapshots: esbuild@0.18.20: optionalDependencies: - '@esbuild/android-arm': 0.18.20 - '@esbuild/android-arm64': 0.18.20 - '@esbuild/android-x64': 0.18.20 - '@esbuild/darwin-arm64': 0.18.20 - '@esbuild/darwin-x64': 0.18.20 - '@esbuild/freebsd-arm64': 0.18.20 - '@esbuild/freebsd-x64': 0.18.20 - '@esbuild/linux-arm': 0.18.20 - '@esbuild/linux-arm64': 0.18.20 - '@esbuild/linux-ia32': 0.18.20 - '@esbuild/linux-loong64': 0.18.20 - '@esbuild/linux-mips64el': 0.18.20 - '@esbuild/linux-ppc64': 0.18.20 - '@esbuild/linux-riscv64': 0.18.20 - '@esbuild/linux-s390x': 0.18.20 - '@esbuild/linux-x64': 0.18.20 - '@esbuild/netbsd-x64': 0.18.20 - '@esbuild/openbsd-x64': 0.18.20 - '@esbuild/sunos-x64': 0.18.20 - '@esbuild/win32-arm64': 0.18.20 - '@esbuild/win32-ia32': 0.18.20 - '@esbuild/win32-x64': 0.18.20 + "@esbuild/android-arm": 0.18.20 + "@esbuild/android-arm64": 0.18.20 + "@esbuild/android-x64": 0.18.20 + "@esbuild/darwin-arm64": 0.18.20 + "@esbuild/darwin-x64": 0.18.20 + "@esbuild/freebsd-arm64": 0.18.20 + "@esbuild/freebsd-x64": 0.18.20 + "@esbuild/linux-arm": 0.18.20 + "@esbuild/linux-arm64": 0.18.20 + "@esbuild/linux-ia32": 0.18.20 + "@esbuild/linux-loong64": 0.18.20 + "@esbuild/linux-mips64el": 0.18.20 + "@esbuild/linux-ppc64": 0.18.20 + "@esbuild/linux-riscv64": 0.18.20 + "@esbuild/linux-s390x": 0.18.20 + "@esbuild/linux-x64": 0.18.20 + "@esbuild/netbsd-x64": 0.18.20 + "@esbuild/openbsd-x64": 0.18.20 + "@esbuild/sunos-x64": 0.18.20 + "@esbuild/win32-arm64": 0.18.20 + "@esbuild/win32-ia32": 0.18.20 + "@esbuild/win32-x64": 0.18.20 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.20.2: optionalDependencies: - '@esbuild/aix-ppc64': 0.20.2 - '@esbuild/android-arm': 0.20.2 - '@esbuild/android-arm64': 0.20.2 - '@esbuild/android-x64': 0.20.2 - '@esbuild/darwin-arm64': 0.20.2 - '@esbuild/darwin-x64': 0.20.2 - '@esbuild/freebsd-arm64': 0.20.2 - '@esbuild/freebsd-x64': 0.20.2 - '@esbuild/linux-arm': 0.20.2 - '@esbuild/linux-arm64': 0.20.2 - '@esbuild/linux-ia32': 0.20.2 - '@esbuild/linux-loong64': 0.20.2 - '@esbuild/linux-mips64el': 0.20.2 - '@esbuild/linux-ppc64': 0.20.2 - '@esbuild/linux-riscv64': 0.20.2 - '@esbuild/linux-s390x': 0.20.2 - '@esbuild/linux-x64': 0.20.2 - '@esbuild/netbsd-x64': 0.20.2 - '@esbuild/openbsd-x64': 0.20.2 - '@esbuild/sunos-x64': 0.20.2 - '@esbuild/win32-arm64': 0.20.2 - '@esbuild/win32-ia32': 0.20.2 - '@esbuild/win32-x64': 0.20.2 + "@esbuild/aix-ppc64": 0.20.2 + "@esbuild/android-arm": 0.20.2 + "@esbuild/android-arm64": 0.20.2 + "@esbuild/android-x64": 0.20.2 + "@esbuild/darwin-arm64": 0.20.2 + "@esbuild/darwin-x64": 0.20.2 + "@esbuild/freebsd-arm64": 0.20.2 + "@esbuild/freebsd-x64": 0.20.2 + "@esbuild/linux-arm": 0.20.2 + "@esbuild/linux-arm64": 0.20.2 + "@esbuild/linux-ia32": 0.20.2 + "@esbuild/linux-loong64": 0.20.2 + "@esbuild/linux-mips64el": 0.20.2 + "@esbuild/linux-ppc64": 0.20.2 + "@esbuild/linux-riscv64": 0.20.2 + "@esbuild/linux-s390x": 0.20.2 + "@esbuild/linux-x64": 0.20.2 + "@esbuild/netbsd-x64": 0.20.2 + "@esbuild/openbsd-x64": 0.20.2 + "@esbuild/sunos-x64": 0.20.2 + "@esbuild/win32-arm64": 0.20.2 + "@esbuild/win32-ia32": 0.20.2 + "@esbuild/win32-x64": 0.20.2 escalade@3.1.2: {} @@ -49762,9 +66182,9 @@ snapshots: eslint-config-next@13.5.6(eslint@8.57.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3): dependencies: - '@next/eslint-plugin-next': 13.5.6 - '@rushstack/eslint-patch': 1.10.1 - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) + "@next/eslint-plugin-next": 13.5.6 + "@rushstack/eslint-patch": 1.10.1 + "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) @@ -49776,9 +66196,9 @@ snapshots: optionalDependencies: typescript: 5.4.3 transitivePeerDependencies: - - '@babel/core' - - '@opentelemetry/api' - - '@playwright/test' + - "@babel/core" + - "@opentelemetry/api" + - "@playwright/test" - babel-plugin-macros - eslint-import-resolver-webpack - react @@ -49788,9 +66208,9 @@ snapshots: eslint-config-next@13.5.6(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.2.2): dependencies: - '@next/eslint-plugin-next': 13.5.6 - '@rushstack/eslint-patch': 1.10.1 - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.2.2) + "@next/eslint-plugin-next": 13.5.6 + "@rushstack/eslint-patch": 1.10.1 + "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.2.2) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) @@ -49802,9 +66222,9 @@ snapshots: optionalDependencies: typescript: 5.2.2 transitivePeerDependencies: - - '@babel/core' - - '@opentelemetry/api' - - '@playwright/test' + - "@babel/core" + - "@opentelemetry/api" + - "@playwright/test" - babel-plugin-macros - eslint-import-resolver-webpack - react @@ -49818,11 +66238,11 @@ snapshots: eslint-config-react-app@7.0.1(eslint@8.57.0)(jest@27.5.1)(typescript@5.4.3): dependencies: - '@babel/core': 7.24.3 - '@babel/eslint-parser': 7.24.1(@babel/core@7.24.3)(eslint@8.57.0) - '@rushstack/eslint-patch': 1.10.1 - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.3) + "@babel/core": 7.24.3 + "@babel/eslint-parser": 7.24.1(@babel/core@7.24.3)(eslint@8.57.0) + "@rushstack/eslint-patch": 1.10.1 + "@typescript-eslint/eslint-plugin": 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/parser": 5.62.0(eslint@8.57.0)(typescript@5.4.3) babel-preset-react-app: 10.0.1 confusing-browser-globals: 1.0.11 eslint: 8.57.0 @@ -49836,8 +66256,8 @@ snapshots: optionalDependencies: typescript: 5.4.3 transitivePeerDependencies: - - '@babel/plugin-syntax-flow' - - '@babel/plugin-transform-react-jsx' + - "@babel/plugin-syntax-flow" + - "@babel/plugin-transform-react-jsx" - eslint-import-resolver-typescript - eslint-import-resolver-webpack - jest @@ -49863,7 +66283,7 @@ snapshots: is-core-module: 2.13.1 is-glob: 4.0.3 transitivePeerDependencies: - - '@typescript-eslint/parser' + - "@typescript-eslint/parser" - eslint-import-resolver-node - eslint-import-resolver-webpack - supports-color @@ -49880,7 +66300,7 @@ snapshots: is-core-module: 2.13.1 is-glob: 4.0.3 transitivePeerDependencies: - - '@typescript-eslint/parser' + - "@typescript-eslint/parser" - eslint-import-resolver-node - eslint-import-resolver-webpack - supports-color @@ -49889,7 +66309,7 @@ snapshots: dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/parser": 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: @@ -49899,7 +66319,7 @@ snapshots: dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) @@ -49910,7 +66330,7 @@ snapshots: dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint-plugin-import@2.29.1)(eslint@8.57.0) @@ -49921,7 +66341,7 @@ snapshots: dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: @@ -49931,7 +66351,7 @@ snapshots: dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint-plugin-import@2.29.1)(eslint@8.57.0) transitivePeerDependencies: @@ -49978,7 +66398,7 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/parser": 5.62.0(eslint@8.57.0)(typescript@5.4.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -50005,7 +66425,7 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.4.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -50032,7 +66452,7 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.4.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -50040,10 +66460,10 @@ snapshots: eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(jest@27.5.1)(typescript@5.4.3): dependencies: - '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/experimental-utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 optionalDependencies: - '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/eslint-plugin": 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) jest: 27.5.1 transitivePeerDependencies: - supports-color @@ -50051,10 +66471,10 @@ snapshots: eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(jest@29.7.0(@types/node@20.12.12))(typescript@5.4.3): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 optionalDependencies: - '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/eslint-plugin": 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) jest: 29.7.0(@types/node@20.12.12) transitivePeerDependencies: - supports-color @@ -50062,10 +66482,10 @@ snapshots: eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)))(typescript@5.4.3): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 optionalDependencies: - '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/eslint-plugin": 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) jest: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) transitivePeerDependencies: - supports-color @@ -50073,10 +66493,10 @@ snapshots: eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(jest@29.7.0(ts-node@10.9.2(typescript@5.4.3)))(typescript@5.4.3): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 optionalDependencies: - '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/eslint-plugin": 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) jest: 29.7.0(ts-node@10.9.2(typescript@5.4.3)) transitivePeerDependencies: - supports-color @@ -50089,7 +66509,7 @@ snapshots: eslint-plugin-jsx-a11y@6.8.0(eslint@8.57.0): dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.24.1 aria-query: 5.3.0 array-includes: 3.1.8 array.prototype.flatmap: 1.3.2 @@ -50148,8 +66568,8 @@ snapshots: eslint-plugin-storybook@0.6.15(eslint@8.57.0)(typescript@5.4.3): dependencies: - '@storybook/csf': 0.0.1 - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) + "@storybook/csf": 0.0.1 + "@typescript-eslint/utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 requireindex: 1.2.0 ts-dedent: 2.2.0 @@ -50159,7 +66579,7 @@ snapshots: eslint-plugin-testing-library@5.11.1(eslint@8.57.0)(typescript@5.4.3): dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) + "@typescript-eslint/utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 transitivePeerDependencies: - supports-color @@ -50181,7 +66601,7 @@ snapshots: eslint-webpack-plugin@3.2.0(eslint@8.57.0)(webpack@5.94.0): dependencies: - '@types/eslint': 8.56.6 + "@types/eslint": 8.56.6 eslint: 8.57.0 jest-worker: 28.1.3 micromatch: 4.0.7 @@ -50193,14 +66613,14 @@ snapshots: eslint@8.57.0: dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) - '@eslint-community/regexpp': 4.10.0 - '@eslint/eslintrc': 2.1.4 - '@eslint/js': 8.57.0 - '@humanwhocodes/config-array': 0.11.14 - '@humanwhocodes/module-importer': 1.0.1 - '@nodelib/fs.walk': 1.2.8 - '@ungap/structured-clone': 1.2.0 + "@eslint-community/eslint-utils": 4.4.0(eslint@8.57.0) + "@eslint-community/regexpp": 4.10.0 + "@eslint/eslintrc": 2.1.4 + "@eslint/js": 8.57.0 + "@humanwhocodes/config-array": 0.11.14 + "@humanwhocodes/module-importer": 1.0.1 + "@nodelib/fs.walk": 1.2.8 + "@ungap/structured-clone": 1.2.0 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 @@ -50265,11 +66685,11 @@ snapshots: estree-util-attach-comments@2.1.1: dependencies: - '@types/estree': 1.0.5 + "@types/estree": 1.0.5 estree-util-build-jsx@2.2.2: dependencies: - '@types/estree-jsx': 1.0.5 + "@types/estree-jsx": 1.0.5 estree-util-is-identifier-name: 2.1.0 estree-walker: 3.0.3 @@ -50277,7 +66697,7 @@ snapshots: estree-util-to-js@1.2.0: dependencies: - '@types/estree-jsx': 1.0.5 + "@types/estree-jsx": 1.0.5 astring: 1.8.6 source-map: 0.7.4 @@ -50287,8 +66707,8 @@ snapshots: estree-util-visit@1.2.1: dependencies: - '@types/estree-jsx': 1.0.5 - '@types/unist': 2.0.10 + "@types/estree-jsx": 1.0.5 + "@types/unist": 2.0.10 estree-walker@1.0.1: {} @@ -50296,7 +66716,7 @@ snapshots: estree-walker@3.0.3: dependencies: - '@types/estree': 1.0.5 + "@types/estree": 1.0.5 esutils@2.0.3: {} @@ -50332,8 +66752,8 @@ snapshots: ethereum-cryptography@0.1.3: dependencies: - '@types/pbkdf2': 3.1.2 - '@types/secp256k1': 4.0.6 + "@types/pbkdf2": 3.1.2 + "@types/secp256k1": 4.0.6 blakejs: 1.2.1 browserify-aes: 1.2.0 bs58check: 2.1.2 @@ -50350,10 +66770,10 @@ snapshots: ethereum-cryptography@2.1.3: dependencies: - '@noble/curves': 1.3.0 - '@noble/hashes': 1.3.3 - '@scure/bip32': 1.3.3 - '@scure/bip39': 1.2.2 + "@noble/curves": 1.3.0 + "@noble/hashes": 1.3.3 + "@scure/bip32": 1.3.3 + "@scure/bip39": 1.2.2 ethereumjs-common@1.5.2: {} @@ -50374,7 +66794,7 @@ snapshots: ethereumjs-util@6.2.1: dependencies: - '@types/bn.js': 4.11.6 + "@types/bn.js": 4.11.6 bn.js: 4.12.0 create-hash: 1.2.0 elliptic: 6.5.5 @@ -50384,7 +66804,7 @@ snapshots: ethereumjs-util@7.1.5: dependencies: - '@types/bn.js': 5.1.5 + "@types/bn.js": 5.1.5 bn.js: 5.2.1 create-hash: 1.2.0 ethereum-cryptography: 0.1.3 @@ -50392,46 +66812,46 @@ snapshots: ethers@5.7.2: dependencies: - '@ethersproject/abi': 5.7.0 - '@ethersproject/abstract-provider': 5.7.0 - '@ethersproject/abstract-signer': 5.7.0 - '@ethersproject/address': 5.7.0 - '@ethersproject/base64': 5.7.0 - '@ethersproject/basex': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/constants': 5.7.0 - '@ethersproject/contracts': 5.7.0 - '@ethersproject/hash': 5.7.0 - '@ethersproject/hdnode': 5.7.0 - '@ethersproject/json-wallets': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/networks': 5.7.1 - '@ethersproject/pbkdf2': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/providers': 5.7.2 - '@ethersproject/random': 5.7.0 - '@ethersproject/rlp': 5.7.0 - '@ethersproject/sha2': 5.7.0 - '@ethersproject/signing-key': 5.7.0 - '@ethersproject/solidity': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@ethersproject/transactions': 5.7.0 - '@ethersproject/units': 5.7.0 - '@ethersproject/wallet': 5.7.0 - '@ethersproject/web': 5.7.1 - '@ethersproject/wordlists': 5.7.0 + "@ethersproject/abi": 5.7.0 + "@ethersproject/abstract-provider": 5.7.0 + "@ethersproject/abstract-signer": 5.7.0 + "@ethersproject/address": 5.7.0 + "@ethersproject/base64": 5.7.0 + "@ethersproject/basex": 5.7.0 + "@ethersproject/bignumber": 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/constants": 5.7.0 + "@ethersproject/contracts": 5.7.0 + "@ethersproject/hash": 5.7.0 + "@ethersproject/hdnode": 5.7.0 + "@ethersproject/json-wallets": 5.7.0 + "@ethersproject/keccak256": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/networks": 5.7.1 + "@ethersproject/pbkdf2": 5.7.0 + "@ethersproject/properties": 5.7.0 + "@ethersproject/providers": 5.7.2 + "@ethersproject/random": 5.7.0 + "@ethersproject/rlp": 5.7.0 + "@ethersproject/sha2": 5.7.0 + "@ethersproject/signing-key": 5.7.0 + "@ethersproject/solidity": 5.7.0 + "@ethersproject/strings": 5.7.0 + "@ethersproject/transactions": 5.7.0 + "@ethersproject/units": 5.7.0 + "@ethersproject/wallet": 5.7.0 + "@ethersproject/web": 5.7.1 + "@ethersproject/wordlists": 5.7.0 transitivePeerDependencies: - bufferutil - utf-8-validate ethers@6.12.1: dependencies: - '@adraffy/ens-normalize': 1.10.1 - '@noble/curves': 1.2.0 - '@noble/hashes': 1.3.2 - '@types/node': 18.15.13 + "@adraffy/ens-normalize": 1.10.1 + "@noble/curves": 1.2.0 + "@noble/hashes": 1.3.2 + "@types/node": 18.15.13 aes-js: 4.0.0-beta.5 tslib: 2.6.2 ws: 8.5.0 @@ -50567,14 +66987,14 @@ snapshots: expect@27.5.1: dependencies: - '@jest/types': 27.5.1 + "@jest/types": 27.5.1 jest-get-type: 27.5.1 jest-matcher-utils: 27.5.1 jest-message-util: 27.5.1 expect@28.1.3: dependencies: - '@jest/expect-utils': 28.1.3 + "@jest/expect-utils": 28.1.3 jest-get-type: 28.0.2 jest-matcher-utils: 28.1.3 jest-message-util: 28.1.3 @@ -50582,321 +67002,319 @@ snapshots: expect@29.7.0: dependencies: - '@jest/expect-utils': 29.7.0 + "@jest/expect-utils": 29.7.0 jest-get-type: 29.6.3 jest-matcher-utils: 29.7.0 jest-message-util: 29.7.0 jest-util: 29.7.0 - expo-application@5.3.1(tw2cl75ufjodqrrf2cewclqsqi): + expo-application@5.3.1(rxkmd2ynqonhzhnkgmzjv3uahy): dependencies: - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) optionalDependencies: - expo-constants: 14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo-constants: 14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) - expo-asset@8.10.1(expo-constants@14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0): + expo-asset@10.0.10(tns433hakj4ir7nudcudkynxq4): dependencies: - blueimp-md5: 2.19.0 - expo-file-system: 15.4.5(expo-constants@14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + expo-constants: 16.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) invariant: 2.2.4 md5-file: 3.2.3 - path-browserify: 1.0.1 - url-parse: 1.5.10 optionalDependencies: - expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo-file-system: 17.0.1(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) transitivePeerDependencies: - - expo + - supports-color - expo-asset@8.10.1(tw2cl75ufjodqrrf2cewclqsqi): + expo-asset@8.10.1(fwfwxrny4no4cg4koyqmr3oiha): dependencies: blueimp-md5: 2.19.0 - expo-file-system: 15.4.5(tw2cl75ufjodqrrf2cewclqsqi) + expo-file-system: 15.4.5(fwfwxrny4no4cg4koyqmr3oiha) invariant: 2.2.4 md5-file: 3.2.3 path-browserify: 1.0.1 url-parse: 1.5.10 optionalDependencies: - expo-constants: 14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) transitivePeerDependencies: - expo - expo-asset@9.0.2(x6jx2c3uh37zhhy4kbscqiikyy): + expo-asset@8.10.1(rxkmd2ynqonhzhnkgmzjv3uahy): dependencies: - '@react-native/assets-registry': 0.73.1 blueimp-md5: 2.19.0 - expo-constants: 15.4.5(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo-file-system: 15.4.5(rxkmd2ynqonhzhnkgmzjv3uahy) invariant: 2.2.4 md5-file: 3.2.3 + path-browserify: 1.0.1 + url-parse: 1.5.10 optionalDependencies: - expo-file-system: 16.0.8(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - expo-modules-core: 1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo-constants: 14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) transitivePeerDependencies: - expo - - supports-color - expo-barcode-scanner@12.9.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + expo-barcode-scanner@13.0.1(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - expo: 50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - expo-image-loader: 4.6.0(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + expo-image-loader: 4.7.0(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) optionalDependencies: - expo-modules-core: 1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - expo-camera@14.1.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + expo-camera@15.0.16(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - expo: 50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) invariant: 2.2.4 optionalDependencies: - expo-modules-core: 1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - expo-constants@14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0): + expo-constants@14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0): dependencies: - '@expo/config': 8.1.2 - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + "@expo/config": 8.1.2 + expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) uuid: 3.4.0 optionalDependencies: - expo-constants: 14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo-constants: 14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) transitivePeerDependencies: - supports-color - expo-constants@14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0): + expo-constants@14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0): dependencies: - '@expo/config': 8.2.1 - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + "@expo/config": 8.2.1 + expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) uuid: 3.4.0 optionalDependencies: - expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) transitivePeerDependencies: - supports-color - expo-constants@15.4.5(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + expo-constants@16.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - '@expo/config': 8.5.4 - expo: 50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + "@expo/config": 9.0.4 + "@expo/env": 0.3.0 + expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) optionalDependencies: - expo-constants: 15.4.5(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - expo-modules-core: 1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo-constants: 16.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) transitivePeerDependencies: - supports-color - expo-crypto@10.2.0(react-native@0.73.6(react@18.2.0))(react@18.2.0): + expo-crypto@10.2.0(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): optionalDependencies: react: 18.2.0 - react-native: 0.73.6(react@18.2.0) + react-native: 0.74.5(@types/react@18.2.73)(react@18.2.0) - expo-crypto@12.8.1(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + expo-crypto@13.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: base64-js: 1.5.1 - expo: 50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) optionalDependencies: - expo-modules-core: 1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - expo-file-system@15.4.5(expo-constants@14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0): + expo-file-system@15.4.5(fwfwxrny4no4cg4koyqmr3oiha): dependencies: - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) uuid: 3.4.0 optionalDependencies: - expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) - expo-file-system@15.4.5(tw2cl75ufjodqrrf2cewclqsqi): + expo-file-system@15.4.5(rxkmd2ynqonhzhnkgmzjv3uahy): dependencies: - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) uuid: 3.4.0 optionalDependencies: - expo-constants: 14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo-constants: 14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) - expo-file-system@16.0.8(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + expo-file-system@17.0.1(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - expo: 50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) optionalDependencies: - expo-modules-core: 1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - expo-font@11.10.3(aohfghhpfvc4boieka7amvkmgi): + expo-font@11.10.3(7z3muwlk7isvqku6vvnpavkrqa): dependencies: - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) fontfaceobserver: 2.3.0 optionalDependencies: - expo-asset: 8.10.1(expo-constants@14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo-asset: 8.10.1(fwfwxrny4no4cg4koyqmr3oiha) + expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) - expo-font@11.10.3(expo-asset@9.0.2(x6jx2c3uh37zhhy4kbscqiikyy))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + expo-font@11.4.0(zetkxmi6vkr5536rw42p64xrum): dependencies: - expo: 50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) fontfaceobserver: 2.3.0 optionalDependencies: - expo-asset: 9.0.2(x6jx2c3uh37zhhy4kbscqiikyy) - expo-modules-core: 1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo-asset: 8.10.1(fwfwxrny4no4cg4koyqmr3oiha) + expo-constants: 14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) - expo-font@11.4.0(hxmq25pkdf6fvmayb5kzqynb3q): + expo-font@12.0.10(expo-asset@10.0.10(tns433hakj4ir7nudcudkynxq4))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) fontfaceobserver: 2.3.0 optionalDependencies: - expo-asset: 8.10.1(expo-constants@14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - expo-constants: 14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo-asset: 10.0.10(tns433hakj4ir7nudcudkynxq4) + expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - expo-image-loader@4.6.0(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + expo-image-loader@4.7.0(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - expo: 50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) optionalDependencies: - expo-modules-core: 1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - expo-image-manipulator@11.8.0(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + expo-image-manipulator@12.0.5(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - expo: 50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - expo-image-loader: 4.6.0(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + expo-image-loader: 4.7.0(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) optionalDependencies: - expo-modules-core: 1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - expo-keep-awake@12.3.0(tw2cl75ufjodqrrf2cewclqsqi): + expo-keep-awake@12.3.0(rxkmd2ynqonhzhnkgmzjv3uahy): dependencies: - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) optionalDependencies: - expo-constants: 14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo-constants: 14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) - expo-keep-awake@12.8.2(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + expo-keep-awake@13.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - expo: 50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) optionalDependencies: - expo-modules-core: 1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - '@expo/config': 8.5.4 chalk: 4.1.2 commander: 7.2.0 fast-glob: 3.3.2 find-up: 5.0.0 fs-extra: 9.1.0 + require-from-string: 2.0.2 + resolve-from: 5.0.0 optionalDependencies: - expo-modules-core: 1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) - transitivePeerDependencies: - - supports-color + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - expo-modules-autolinking@1.5.1(55fu4l7dolnnxrys6pt2pnhfne): + expo-modules-autolinking@1.5.1(epzs5mtkmt3672rwgv2fv7s7qa): dependencies: - '@expo/config': 8.1.2 + "@expo/config": 8.1.2 chalk: 4.1.2 commander: 7.2.0 fast-glob: 3.3.2 find-up: 5.0.0 fs-extra: 9.1.0 optionalDependencies: - expo-constants: 14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo-constants: 14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) transitivePeerDependencies: - supports-color - expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: invariant: 2.2.4 optionalDependencies: - expo-modules-core: 1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0): + expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0): dependencies: compare-versions: 3.6.0 invariant: 2.2.4 optionalDependencies: - expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) - expo-pwa@0.0.126(expo-constants@14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0): + expo-pwa@0.0.126(fwfwxrny4no4cg4koyqmr3oiha): dependencies: - '@expo/config': 8.5.4 - '@expo/image-utils': 0.3.23 + "@expo/config": 9.0.1 + "@expo/image-utils": 0.3.23 chalk: 4.1.2 commander: 2.20.0 - expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) update-check: 1.5.3 optionalDependencies: - expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo-constants: 14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) transitivePeerDependencies: - encoding - supports-color - expo-random@12.3.0(react-native@0.73.6(react@18.2.0))(react@18.2.0): + expo-random@12.3.0(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: base64-js: 1.5.1 optionalDependencies: react: 18.2.0 - react-native: 0.73.6(react@18.2.0) + react-native: 0.74.5(@types/react@18.2.73)(react@18.2.0) - expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0): + expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0): dependencies: - '@babel/runtime': 7.24.1 - '@expo/cli': 0.10.17(@expo/metro-config@0.10.7)(expo-modules-autolinking@1.5.1(55fu4l7dolnnxrys6pt2pnhfne))(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6) - '@expo/config': 8.1.2 - '@expo/config-plugins': 7.2.5 - '@expo/vector-icons': 13.0.0 + "@babel/runtime": 7.24.1 + "@expo/cli": 0.10.17(@expo/metro-config@0.10.7)(expo-modules-autolinking@1.5.1(epzs5mtkmt3672rwgv2fv7s7qa))(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6) + "@expo/config": 8.1.2 + "@expo/config-plugins": 7.2.5 + "@expo/vector-icons": 13.0.0 babel-preset-expo: 9.5.2(@babel/core@7.24.3) - expo-application: 5.3.1(tw2cl75ufjodqrrf2cewclqsqi) - expo-asset: 8.10.1(tw2cl75ufjodqrrf2cewclqsqi) - expo-constants: 14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.8)(metro@0.80.8)(minimatch@5.1.6)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) - expo-file-system: 15.4.5(tw2cl75ufjodqrrf2cewclqsqi) - expo-font: 11.4.0(hxmq25pkdf6fvmayb5kzqynb3q) - expo-keep-awake: 12.3.0(tw2cl75ufjodqrrf2cewclqsqi) - expo-modules-autolinking: 1.5.1(55fu4l7dolnnxrys6pt2pnhfne) + expo-application: 5.3.1(rxkmd2ynqonhzhnkgmzjv3uahy) + expo-asset: 8.10.1(rxkmd2ynqonhzhnkgmzjv3uahy) + expo-constants: 14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + expo-file-system: 15.4.5(rxkmd2ynqonhzhnkgmzjv3uahy) + expo-font: 11.4.0(zetkxmi6vkr5536rw42p64xrum) + expo-keep-awake: 12.3.0(rxkmd2ynqonhzhnkgmzjv3uahy) + expo-modules-autolinking: 1.5.1(epzs5mtkmt3672rwgv2fv7s7qa) fbemitter: 3.0.0 invariant: 2.2.4 md5-file: 3.2.3 @@ -50904,12 +67322,12 @@ snapshots: pretty-format: 26.6.2 uuid: 3.4.0 optionalDependencies: - expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) transitivePeerDependencies: - - '@babel/core' - - '@expo/metro-config' + - "@babel/core" + - "@expo/metro-config" - bluebird - bufferutil - encoding @@ -50920,30 +67338,29 @@ snapshots: - supports-color - utf-8-validate - expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): - dependencies: - '@babel/runtime': 7.24.1 - '@expo/cli': 0.17.8(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0)) - '@expo/config': 8.5.4 - '@expo/config-plugins': 7.8.4 - '@expo/metro-config': 0.17.6(@react-native/babel-preset@0.73.19(@babel/core@7.24.3)) - '@expo/vector-icons': 14.0.0 - babel-preset-expo: 10.0.1(@babel/core@7.24.3) - expo-asset: 9.0.2(x6jx2c3uh37zhhy4kbscqiikyy) - expo-file-system: 16.0.8(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - expo-font: 11.10.3(expo-asset@9.0.2(x6jx2c3uh37zhhy4kbscqiikyy))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - expo-keep-awake: 12.8.2(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo@50.0.14(@babel/core@7.24.3)(@react-native/babel-preset@0.73.19(@babel/core@7.24.3))(expo-modules-autolinking@1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): + dependencies: + "@babel/runtime": 7.25.0 + "@expo/cli": 0.18.30(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)) + "@expo/config": 9.0.4 + "@expo/config-plugins": 8.0.10 + "@expo/metro-config": 0.18.11 + "@expo/vector-icons": 14.0.4 + babel-preset-expo: 11.0.15(@babel/core@7.24.3) + expo-asset: 10.0.10(tns433hakj4ir7nudcudkynxq4) + expo-file-system: 17.0.1(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + expo-font: 12.0.10(expo-asset@10.0.10(tns433hakj4ir7nudcudkynxq4))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + expo-keep-awake: 13.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) fbemitter: 3.0.0 whatwg-url-without-unicode: 8.0.0-3 optionalDependencies: - expo-modules-autolinking: 1.10.3(expo-modules-core@1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - expo-modules-core: 1.11.12(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + expo-modules-autolinking: 1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + expo-modules-core: 1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) transitivePeerDependencies: - - '@babel/core' - - '@react-native/babel-preset' - - bluebird + - "@babel/core" + - "@babel/preset-env" - bufferutil - encoding - expo-constants @@ -50952,6 +67369,8 @@ snapshots: - supports-color - utf-8-validate + exponential-backoff@3.1.1: {} + express@4.19.2: dependencies: accepts: 1.3.8 @@ -51030,7 +67449,7 @@ snapshots: get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: - '@types/yauzl': 2.10.3 + "@types/yauzl": 2.10.3 transitivePeerDependencies: - supports-color @@ -51059,8 +67478,8 @@ snapshots: fast-glob@3.3.2: 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.7 @@ -51089,10 +67508,6 @@ snapshots: dependencies: strnum: 1.0.5 - fast-xml-parser@4.3.6: - dependencies: - strnum: 1.0.5 - fast-xml-parser@4.4.1: dependencies: strnum: 1.0.5 @@ -51289,32 +67704,32 @@ snapshots: firebase@9.23.0: dependencies: - '@firebase/analytics': 0.10.0(@firebase/app@0.9.13) - '@firebase/analytics-compat': 0.2.6(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) - '@firebase/app': 0.9.13 - '@firebase/app-check': 0.8.0(@firebase/app@0.9.13) - '@firebase/app-check-compat': 0.3.7(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) - '@firebase/app-compat': 0.2.13 - '@firebase/app-types': 0.9.0 - '@firebase/auth': 0.23.2(@firebase/app@0.9.13) - '@firebase/auth-compat': 0.4.2(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13) - '@firebase/database': 0.14.4 - '@firebase/database-compat': 0.3.4 - '@firebase/firestore': 3.13.0(@firebase/app@0.9.13) - '@firebase/firestore-compat': 0.3.12(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13) - '@firebase/functions': 0.10.0(@firebase/app@0.9.13) - '@firebase/functions-compat': 0.3.5(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) - '@firebase/installations': 0.6.4(@firebase/app@0.9.13) - '@firebase/installations-compat': 0.2.4(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13) - '@firebase/messaging': 0.12.4(@firebase/app@0.9.13) - '@firebase/messaging-compat': 0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) - '@firebase/performance': 0.6.4(@firebase/app@0.9.13) - '@firebase/performance-compat': 0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) - '@firebase/remote-config': 0.4.4(@firebase/app@0.9.13) - '@firebase/remote-config-compat': 0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) - '@firebase/storage': 0.11.2(@firebase/app@0.9.13) - '@firebase/storage-compat': 0.3.2(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13) - '@firebase/util': 1.9.3 + "@firebase/analytics": 0.10.0(@firebase/app@0.9.13) + "@firebase/analytics-compat": 0.2.6(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) + "@firebase/app": 0.9.13 + "@firebase/app-check": 0.8.0(@firebase/app@0.9.13) + "@firebase/app-check-compat": 0.3.7(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) + "@firebase/app-compat": 0.2.13 + "@firebase/app-types": 0.9.0 + "@firebase/auth": 0.23.2(@firebase/app@0.9.13) + "@firebase/auth-compat": 0.4.2(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13) + "@firebase/database": 0.14.4 + "@firebase/database-compat": 0.3.4 + "@firebase/firestore": 3.13.0(@firebase/app@0.9.13) + "@firebase/firestore-compat": 0.3.12(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13) + "@firebase/functions": 0.10.0(@firebase/app@0.9.13) + "@firebase/functions-compat": 0.3.5(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) + "@firebase/installations": 0.6.4(@firebase/app@0.9.13) + "@firebase/installations-compat": 0.2.4(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13) + "@firebase/messaging": 0.12.4(@firebase/app@0.9.13) + "@firebase/messaging-compat": 0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) + "@firebase/performance": 0.6.4(@firebase/app@0.9.13) + "@firebase/performance-compat": 0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) + "@firebase/remote-config": 0.4.4(@firebase/app@0.9.13) + "@firebase/remote-config-compat": 0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) + "@firebase/storage": 0.11.2(@firebase/app@0.9.13) + "@firebase/storage-compat": 0.3.2(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13) + "@firebase/util": 1.9.3 transitivePeerDependencies: - encoding @@ -51334,8 +67749,6 @@ snapshots: flow-parser@0.156.0: {} - flow-parser@0.206.0: {} - flow-parser@0.232.0: {} flow-remove-types@2.156.0: @@ -51390,8 +67803,8 @@ snapshots: fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.0)(typescript@5.1.3)(vue-template-compiler@2.7.16)(webpack@5.94.0): dependencies: - '@babel/code-frame': 7.24.6 - '@types/json-schema': 7.0.15 + "@babel/code-frame": 7.24.6 + "@types/json-schema": 7.0.15 chalk: 4.1.2 chokidar: 3.6.0 cosmiconfig: 6.0.0 @@ -51411,8 +67824,8 @@ snapshots: fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.0)(typescript@5.4.3)(webpack@5.94.0): dependencies: - '@babel/code-frame': 7.24.6 - '@types/json-schema': 7.0.15 + "@babel/code-frame": 7.24.6 + "@types/json-schema": 7.0.15 chalk: 4.1.2 chokidar: 3.6.0 cosmiconfig: 6.0.0 @@ -51431,7 +67844,7 @@ snapshots: fork-ts-checker-webpack-plugin@8.0.0(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.4.11)(esbuild@0.19.12)): dependencies: - '@babel/code-frame': 7.24.6 + "@babel/code-frame": 7.24.6 chalk: 4.1.2 chokidar: 3.6.0 cosmiconfig: 7.1.0 @@ -51446,9 +67859,9 @@ snapshots: typescript: 5.4.3 webpack: 5.94.0(@swc/core@1.4.11)(esbuild@0.19.12) - fork-ts-checker-webpack-plugin@8.0.0(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8)): + fork-ts-checker-webpack-plugin@8.0.0(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)): dependencies: - '@babel/code-frame': 7.24.6 + "@babel/code-frame": 7.24.6 chalk: 4.1.2 chokidar: 3.6.0 cosmiconfig: 7.1.0 @@ -51461,7 +67874,7 @@ snapshots: semver: 7.6.3 tapable: 2.2.1 typescript: 5.4.3 - webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.8) + webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.12) form-data@2.3.3: dependencies: @@ -51573,7 +67986,7 @@ snapshots: at-least-node: 1.0.0 graceful-fs: 4.2.11 jsonfile: 6.1.0 - universalify: 2.0.0 + universalify: 2.0.1 fs-minipass@1.2.7: dependencies: @@ -51583,6 +67996,10 @@ snapshots: dependencies: minipass: 3.3.6 + fs-minipass@3.0.3: + dependencies: + minipass: 7.0.4 + fs-monkey@1.0.5: {} fs.realpath@1.0.0: {} @@ -51883,10 +68300,10 @@ snapshots: got@11.8.6: dependencies: - '@sindresorhus/is': 4.6.0 - '@szmarczak/http-timer': 4.0.6 - '@types/cacheable-request': 6.0.3 - '@types/responselike': 1.0.3 + "@sindresorhus/is": 4.6.0 + "@szmarczak/http-timer": 4.0.6 + "@types/cacheable-request": 6.0.3 + "@types/responselike": 1.0.3 cacheable-lookup: 5.0.4 cacheable-request: 7.0.4 decompress-response: 6.0.0 @@ -51897,10 +68314,10 @@ snapshots: got@9.6.0: dependencies: - '@sindresorhus/is': 0.14.0 - '@szmarczak/http-timer': 1.1.2 - '@types/keyv': 3.1.4 - '@types/responselike': 1.0.3 + "@sindresorhus/is": 0.14.0 + "@szmarczak/http-timer": 1.1.2 + "@types/keyv": 3.1.4 + "@types/responselike": 1.0.3 cacheable-request: 6.1.0 decompress-response: 3.3.0 duplexer3: 0.1.5 @@ -52032,20 +68449,20 @@ snapshots: hast-util-from-dom@5.0.0: dependencies: - '@types/hast': 3.0.4 + "@types/hast": 3.0.4 hastscript: 8.0.0 web-namespaces: 2.0.1 hast-util-from-html-isomorphic@2.0.0: dependencies: - '@types/hast': 3.0.4 + "@types/hast": 3.0.4 hast-util-from-dom: 5.0.0 hast-util-from-html: 2.0.1 unist-util-remove-position: 5.0.0 hast-util-from-html@2.0.1: dependencies: - '@types/hast': 3.0.4 + "@types/hast": 3.0.4 devlop: 1.1.0 hast-util-from-parse5: 8.0.1 parse5: 7.1.2 @@ -52054,8 +68471,8 @@ snapshots: hast-util-from-parse5@7.1.2: dependencies: - '@types/hast': 2.3.10 - '@types/unist': 2.0.10 + "@types/hast": 2.3.10 + "@types/unist": 2.0.10 hastscript: 7.2.0 property-information: 6.4.1 vfile: 5.3.7 @@ -52064,8 +68481,8 @@ snapshots: hast-util-from-parse5@8.0.1: dependencies: - '@types/hast': 3.0.4 - '@types/unist': 3.0.2 + "@types/hast": 3.0.4 + "@types/unist": 3.0.2 devlop: 1.1.0 hastscript: 8.0.0 property-information: 6.4.1 @@ -52075,20 +68492,20 @@ snapshots: hast-util-is-element@3.0.0: dependencies: - '@types/hast': 3.0.4 + "@types/hast": 3.0.4 hast-util-parse-selector@3.1.1: dependencies: - '@types/hast': 2.3.10 + "@types/hast": 2.3.10 hast-util-parse-selector@4.0.0: dependencies: - '@types/hast': 3.0.4 + "@types/hast": 3.0.4 hast-util-raw@7.2.3: dependencies: - '@types/hast': 2.3.10 - '@types/parse5': 6.0.3 + "@types/hast": 2.3.10 + "@types/parse5": 6.0.3 hast-util-from-parse5: 7.1.2 hast-util-to-parse5: 7.1.0 html-void-elements: 2.0.1 @@ -52101,9 +68518,9 @@ snapshots: hast-util-raw@9.0.3: dependencies: - '@types/hast': 3.0.4 - '@types/unist': 3.0.2 - '@ungap/structured-clone': 1.2.0 + "@types/hast": 3.0.4 + "@types/unist": 3.0.2 + "@ungap/structured-clone": 1.2.0 hast-util-from-parse5: 8.0.1 hast-util-to-parse5: 8.0.0 html-void-elements: 3.0.0 @@ -52117,14 +68534,14 @@ snapshots: hast-util-sanitize@4.1.0: dependencies: - '@types/hast': 2.3.10 + "@types/hast": 2.3.10 hast-util-to-estree@2.3.3: dependencies: - '@types/estree': 1.0.5 - '@types/estree-jsx': 1.0.5 - '@types/hast': 2.3.10 - '@types/unist': 2.0.10 + "@types/estree": 1.0.5 + "@types/estree-jsx": 1.0.5 + "@types/hast": 2.3.10 + "@types/unist": 2.0.10 comma-separated-tokens: 2.0.3 estree-util-attach-comments: 2.1.1 estree-util-is-identifier-name: 2.1.0 @@ -52141,8 +68558,8 @@ snapshots: hast-util-to-html@8.0.4: dependencies: - '@types/hast': 2.3.10 - '@types/unist': 2.0.10 + "@types/hast": 2.3.10 + "@types/unist": 2.0.10 ccount: 2.0.1 comma-separated-tokens: 2.0.3 hast-util-raw: 7.2.3 @@ -52155,7 +68572,7 @@ snapshots: hast-util-to-parse5@7.1.0: dependencies: - '@types/hast': 2.3.10 + "@types/hast": 2.3.10 comma-separated-tokens: 2.0.3 property-information: 6.4.1 space-separated-tokens: 2.0.2 @@ -52164,7 +68581,7 @@ snapshots: hast-util-to-parse5@8.0.0: dependencies: - '@types/hast': 3.0.4 + "@types/hast": 3.0.4 comma-separated-tokens: 2.0.3 devlop: 1.1.0 property-information: 6.4.1 @@ -52174,8 +68591,8 @@ snapshots: hast-util-to-text@4.0.2: dependencies: - '@types/hast': 3.0.4 - '@types/unist': 3.0.2 + "@types/hast": 3.0.4 + "@types/unist": 3.0.2 hast-util-is-element: 3.0.0 unist-util-find-after: 5.0.0 @@ -52183,7 +68600,7 @@ snapshots: hastscript@7.2.0: dependencies: - '@types/hast': 2.3.10 + "@types/hast": 2.3.10 comma-separated-tokens: 2.0.3 hast-util-parse-selector: 3.1.1 property-information: 6.4.1 @@ -52191,7 +68608,7 @@ snapshots: 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.4.1 @@ -52205,22 +68622,28 @@ snapshots: hermes-estree@0.14.0: {} - hermes-estree@0.15.0: {} + hermes-estree@0.19.1: {} hermes-estree@0.20.1: {} + hermes-estree@0.23.1: {} + hermes-parser@0.14.0: dependencies: hermes-estree: 0.14.0 - hermes-parser@0.15.0: + hermes-parser@0.19.1: dependencies: - hermes-estree: 0.15.0 + hermes-estree: 0.19.1 hermes-parser@0.20.1: dependencies: hermes-estree: 0.20.1 + hermes-parser@0.23.1: + dependencies: + hermes-estree: 0.23.1 + hermes-profile-transformer@0.0.6: dependencies: source-map: 0.7.4 @@ -52235,7 +68658,7 @@ snapshots: history@4.10.1: dependencies: - '@babel/runtime': 7.25.0 + "@babel/runtime": 7.25.0 loose-envify: 1.4.0 resolve-pathname: 3.0.0 tiny-invariant: 1.3.3 @@ -52310,19 +68733,19 @@ snapshots: html-void-elements@3.0.0: {} - html-webpack-plugin@5.6.0(webpack@5.91.0(metro@0.80.8)): + html-webpack-plugin@5.6.0(webpack@5.91.0(metro@0.80.12)): dependencies: - '@types/html-minifier-terser': 6.1.0 + "@types/html-minifier-terser": 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 optionalDependencies: - webpack: 5.91.0(metro@0.80.8) + webpack: 5.91.0(metro@0.80.12) html-webpack-plugin@5.6.0(webpack@5.91.0(webpack-cli@4.10.0)): dependencies: - '@types/html-minifier-terser': 6.1.0 + "@types/html-minifier-terser": 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 @@ -52332,7 +68755,7 @@ snapshots: html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.4.11)(esbuild@0.19.12)): dependencies: - '@types/html-minifier-terser': 6.1.0 + "@types/html-minifier-terser": 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 @@ -52340,19 +68763,19 @@ snapshots: optionalDependencies: webpack: 5.94.0(@swc/core@1.4.11)(esbuild@0.19.12) - html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8)): + html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)): dependencies: - '@types/html-minifier-terser': 6.1.0 + "@types/html-minifier-terser": 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 optionalDependencies: - webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.8) + webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.12) html-webpack-plugin@5.6.0(webpack@5.94.0): dependencies: - '@types/html-minifier-terser': 6.1.0 + "@types/html-minifier-terser": 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 @@ -52420,7 +68843,7 @@ snapshots: http-proxy-agent@4.0.1: dependencies: - '@tootallnate/once': 1.1.2 + "@tootallnate/once": 1.1.2 agent-base: 6.0.2 debug: 4.3.4 transitivePeerDependencies: @@ -52428,7 +68851,7 @@ snapshots: http-proxy-agent@5.0.0: dependencies: - '@tootallnate/once': 2.0.0 + "@tootallnate/once": 2.0.0 agent-base: 6.0.2 debug: 4.3.4 transitivePeerDependencies: @@ -52436,13 +68859,13 @@ snapshots: http-proxy-middleware@2.0.6(@types/express@4.17.21): dependencies: - '@types/http-proxy': 1.17.14 + "@types/http-proxy": 1.17.14 http-proxy: 1.18.1 is-glob: 4.0.3 is-plain-obj: 3.0.0 micromatch: 4.0.7 optionalDependencies: - '@types/express': 4.17.21 + "@types/express": 4.17.21 http-proxy@1.18.1: dependencies: @@ -52513,15 +68936,15 @@ snapshots: i18next@20.6.1: dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.24.1 i18next@23.10.1: dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.24.1 icon-sdk-js@1.5.2: dependencies: - '@babel/runtime-corejs3': 7.24.8 + "@babel/runtime-corejs3": 7.24.8 bignumber.js: 9.1.2 bip66: 1.1.5 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) @@ -52701,7 +69124,7 @@ snapshots: ioredis@5.3.2: dependencies: - '@ioredis/commands': 1.2.0 + "@ioredis/commands": 1.2.0 cluster-key-slot: 1.1.2 debug: 4.3.4 denque: 2.1.0 @@ -52935,11 +69358,11 @@ snapshots: is-reference@1.2.1: dependencies: - '@types/estree': 1.0.5 + "@types/estree": 1.0.5 is-reference@3.0.2: dependencies: - '@types/estree': 1.0.5 + "@types/estree": 1.0.5 is-regex@1.1.4: dependencies: @@ -53048,11 +69471,11 @@ snapshots: iso-filecoin@4.1.0: dependencies: - '@ipld/dag-cbor': 9.2.1 - '@noble/curves': 1.4.0 - '@noble/hashes': 1.4.0 - '@scure/bip32': 1.4.0 - '@scure/bip39': 1.3.0 + "@ipld/dag-cbor": 9.2.1 + "@noble/curves": 1.4.0 + "@noble/hashes": 1.4.0 + "@scure/bip32": 1.4.0 + "@scure/bip39": 1.3.0 bignumber.js: 9.1.2 iso-base: 4.0.0 iso-web: 1.0.6 @@ -53109,8 +69532,8 @@ snapshots: istanbul-lib-instrument@4.0.3: dependencies: - '@babel/core': 7.24.3 - '@istanbuljs/schema': 0.1.3 + "@babel/core": 7.24.3 + "@istanbuljs/schema": 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 6.3.1 transitivePeerDependencies: @@ -53118,9 +69541,9 @@ snapshots: istanbul-lib-instrument@5.2.1: dependencies: - '@babel/core': 7.24.3 - '@babel/parser': 7.24.1 - '@istanbuljs/schema': 0.1.3 + "@babel/core": 7.24.3 + "@babel/parser": 7.24.1 + "@istanbuljs/schema": 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 6.3.1 transitivePeerDependencies: @@ -53128,9 +69551,9 @@ snapshots: istanbul-lib-instrument@6.0.2: dependencies: - '@babel/core': 7.24.3 - '@babel/parser': 7.24.1 - '@istanbuljs/schema': 0.1.3 + "@babel/core": 7.24.3 + "@babel/parser": 7.24.1 + "@istanbuljs/schema": 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 7.6.3 transitivePeerDependencies: @@ -53181,9 +69604,9 @@ snapshots: jackspeak@2.3.6: dependencies: - '@isaacs/cliui': 8.0.2 + "@isaacs/cliui": 8.0.2 optionalDependencies: - '@pkgjs/parseargs': 0.11.0 + "@pkgjs/parseargs": 0.11.0 jake@10.8.7: dependencies: @@ -53196,9 +69619,9 @@ snapshots: jayson@4.1.0: dependencies: - '@types/connect': 3.4.38 - '@types/node': 12.20.55 - '@types/ws': 7.4.7 + "@types/connect": 3.4.38 + "@types/node": 12.20.55 + "@types/ws": 7.4.7 JSONStream: 1.3.5 commander: 2.20.3 delay: 5.0.0 @@ -53231,10 +69654,10 @@ snapshots: jest: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) jest-docblock: 29.7.0 transitivePeerDependencies: - - '@jest/environment' - - '@jest/reporters' - - '@jest/types' - - '@types/bunyan' + - "@jest/environment" + - "@jest/reporters" + - "@jest/types" + - "@types/bunyan" - bunyan - encoding - jest-environment-jsdom @@ -53247,7 +69670,7 @@ snapshots: jest-changed-files@27.5.1: dependencies: - '@jest/types': 27.5.1 + "@jest/types": 27.5.1 execa: 5.1.1 throat: 6.0.2 @@ -53264,10 +69687,10 @@ snapshots: jest-circus@27.5.1: dependencies: - '@jest/environment': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 20.12.12 + "@jest/environment": 27.5.1 + "@jest/test-result": 27.5.1 + "@jest/types": 27.5.1 + "@types/node": 20.12.12 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -53289,11 +69712,11 @@ snapshots: jest-circus@28.1.3: dependencies: - '@jest/environment': 28.1.3 - '@jest/expect': 28.1.3 - '@jest/test-result': 28.1.3 - '@jest/types': 28.1.3 - '@types/node': 20.12.12 + "@jest/environment": 28.1.3 + "@jest/expect": 28.1.3 + "@jest/test-result": 28.1.3 + "@jest/types": 28.1.3 + "@types/node": 20.12.12 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -53314,11 +69737,11 @@ snapshots: jest-circus@29.7.0: dependencies: - '@jest/environment': 29.7.0 - '@jest/expect': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 + "@jest/environment": 29.7.0 + "@jest/expect": 29.7.0 + "@jest/test-result": 29.7.0 + "@jest/types": 29.6.3 + "@types/node": 20.12.12 chalk: 4.1.2 co: 4.6.0 dedent: 1.5.1 @@ -53341,9 +69764,9 @@ snapshots: jest-cli@27.5.1: dependencies: - '@jest/core': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/types': 27.5.1 + "@jest/core": 27.5.1 + "@jest/test-result": 27.5.1 + "@jest/types": 27.5.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -53363,9 +69786,9 @@ snapshots: jest-cli@28.1.3(@types/node@18.19.26): dependencies: - '@jest/core': 28.1.3 - '@jest/test-result': 28.1.3 - '@jest/types': 28.1.3 + "@jest/core": 28.1.3 + "@jest/test-result": 28.1.3 + "@jest/types": 28.1.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -53376,16 +69799,16 @@ snapshots: prompts: 2.4.2 yargs: 17.7.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - metro - supports-color - ts-node jest-cli@28.1.3(@types/node@20.12.12): dependencies: - '@jest/core': 28.1.3 - '@jest/test-result': 28.1.3 - '@jest/types': 28.1.3 + "@jest/core": 28.1.3 + "@jest/test-result": 28.1.3 + "@jest/types": 28.1.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -53396,16 +69819,16 @@ snapshots: prompts: 2.4.2 yargs: 17.7.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - metro - supports-color - ts-node jest-cli@29.7.0: dependencies: - '@jest/core': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 + "@jest/core": 29.7.0 + "@jest/test-result": 29.7.0 + "@jest/types": 29.6.3 chalk: 4.1.2 create-jest: 29.7.0 exit: 0.1.2 @@ -53415,7 +69838,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -53423,9 +69846,9 @@ snapshots: jest-cli@29.7.0(@types/node@18.19.26)(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)) - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 + "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)) + "@jest/test-result": 29.7.0 + "@jest/types": 29.6.3 chalk: 4.1.2 create-jest: 29.7.0(@types/node@18.19.26)(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)) exit: 0.1.2 @@ -53435,7 +69858,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -53443,9 +69866,9 @@ snapshots: jest-cli@29.7.0(@types/node@20.12.12): dependencies: - '@jest/core': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 + "@jest/core": 29.7.0 + "@jest/test-result": 29.7.0 + "@jest/types": 29.6.3 chalk: 4.1.2 create-jest: 29.7.0(@types/node@20.12.12) exit: 0.1.2 @@ -53455,7 +69878,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -53463,9 +69886,9 @@ snapshots: jest-cli@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)) - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 + "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)) + "@jest/test-result": 29.7.0 + "@jest/types": 29.6.3 chalk: 4.1.2 create-jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)) exit: 0.1.2 @@ -53475,7 +69898,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -53483,9 +69906,9 @@ snapshots: jest-cli@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)) - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 + "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)) + "@jest/test-result": 29.7.0 + "@jest/types": 29.6.3 chalk: 4.1.2 create-jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)) exit: 0.1.2 @@ -53495,7 +69918,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -53503,9 +69926,9 @@ snapshots: jest-cli@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)) - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 + "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)) + "@jest/test-result": 29.7.0 + "@jest/types": 29.6.3 chalk: 4.1.2 create-jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)) exit: 0.1.2 @@ -53515,7 +69938,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -53523,9 +69946,9 @@ snapshots: jest-cli@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 + "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) + "@jest/test-result": 29.7.0 + "@jest/types": 29.6.3 chalk: 4.1.2 create-jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) exit: 0.1.2 @@ -53535,7 +69958,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -53543,9 +69966,9 @@ snapshots: jest-cli@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 + "@jest/core": 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) + "@jest/test-result": 29.7.0 + "@jest/types": 29.6.3 chalk: 4.1.2 create-jest: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) exit: 0.1.2 @@ -53555,7 +69978,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -53563,9 +69986,9 @@ snapshots: jest-cli@29.7.0(ts-node@10.9.2(typescript@5.4.3)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(typescript@5.4.3)) - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 + "@jest/core": 29.7.0(ts-node@10.9.2(typescript@5.4.3)) + "@jest/test-result": 29.7.0 + "@jest/types": 29.6.3 chalk: 4.1.2 create-jest: 29.7.0(ts-node@10.9.2(typescript@5.4.3)) exit: 0.1.2 @@ -53575,7 +69998,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -53583,9 +70006,9 @@ snapshots: jest-config@27.5.1: dependencies: - '@babel/core': 7.24.3 - '@jest/test-sequencer': 27.5.1 - '@jest/types': 27.5.1 + "@babel/core": 7.24.3 + "@jest/test-sequencer": 27.5.1 + "@jest/types": 27.5.1 babel-jest: 27.5.1(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -53616,9 +70039,9 @@ snapshots: jest-config@28.1.3(@types/node@18.19.26): dependencies: - '@babel/core': 7.24.3 - '@jest/test-sequencer': 28.1.3 - '@jest/types': 28.1.3 + "@babel/core": 7.24.3 + "@jest/test-sequencer": 28.1.3 + "@jest/types": 28.1.3 babel-jest: 28.1.3(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -53639,16 +70062,16 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 18.19.26 + "@types/node": 18.19.26 transitivePeerDependencies: - metro - supports-color jest-config@28.1.3(@types/node@20.12.12): dependencies: - '@babel/core': 7.24.3 - '@jest/test-sequencer': 28.1.3 - '@jest/types': 28.1.3 + "@babel/core": 7.24.3 + "@jest/test-sequencer": 28.1.3 + "@jest/types": 28.1.3 babel-jest: 28.1.3(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -53669,16 +70092,16 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 transitivePeerDependencies: - metro - supports-color jest-config@29.7.0: dependencies: - '@babel/core': 7.24.3 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 + "@babel/core": 7.24.3 + "@jest/test-sequencer": 29.7.0 + "@jest/types": 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -53705,9 +70128,9 @@ snapshots: jest-config@29.7.0(@types/node@18.19.26)(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)): dependencies: - '@babel/core': 7.24.3 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 + "@babel/core": 7.24.3 + "@jest/test-sequencer": 29.7.0 + "@jest/types": 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -53728,7 +70151,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 18.19.26 + "@types/node": 18.19.26 ts-node: 10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5) transitivePeerDependencies: - babel-plugin-macros @@ -53737,9 +70160,9 @@ snapshots: jest-config@29.7.0(@types/node@20.12.12): dependencies: - '@babel/core': 7.24.3 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 + "@babel/core": 7.24.3 + "@jest/test-sequencer": 29.7.0 + "@jest/types": 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -53760,7 +70183,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 transitivePeerDependencies: - babel-plugin-macros - metro @@ -53768,9 +70191,9 @@ snapshots: jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)): dependencies: - '@babel/core': 7.24.3 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 + "@babel/core": 7.24.3 + "@jest/test-sequencer": 29.7.0 + "@jest/types": 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -53791,7 +70214,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 ts-node: 10.9.2(@swc/core@1.4.11)(typescript@5.4.3) transitivePeerDependencies: - babel-plugin-macros @@ -53800,9 +70223,9 @@ snapshots: jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)): dependencies: - '@babel/core': 7.24.3 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 + "@babel/core": 7.24.3 + "@jest/test-sequencer": 29.7.0 + "@jest/types": 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -53823,7 +70246,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 ts-node: 10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5) transitivePeerDependencies: - babel-plugin-macros @@ -53832,9 +70255,9 @@ snapshots: jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)): dependencies: - '@babel/core': 7.24.3 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 + "@babel/core": 7.24.3 + "@jest/test-sequencer": 29.7.0 + "@jest/types": 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -53855,7 +70278,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 ts-node: 10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3) transitivePeerDependencies: - babel-plugin-macros @@ -53864,9 +70287,9 @@ snapshots: jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)): dependencies: - '@babel/core': 7.24.3 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 + "@babel/core": 7.24.3 + "@jest/test-sequencer": 29.7.0 + "@jest/types": 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -53887,7 +70310,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 ts-node: 10.9.2(@types/node@20.12.12)(typescript@5.1.3) transitivePeerDependencies: - babel-plugin-macros @@ -53896,9 +70319,9 @@ snapshots: jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)): dependencies: - '@babel/core': 7.24.3 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 + "@babel/core": 7.24.3 + "@jest/test-sequencer": 29.7.0 + "@jest/types": 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -53919,7 +70342,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 ts-node: 10.9.2(@types/node@20.12.12)(typescript@5.4.3) transitivePeerDependencies: - babel-plugin-macros @@ -53928,9 +70351,9 @@ snapshots: jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)): dependencies: - '@babel/core': 7.24.3 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 + "@babel/core": 7.24.3 + "@jest/test-sequencer": 29.7.0 + "@jest/types": 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -53951,7 +70374,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 ts-node: 10.9.2(@types/node@20.12.12)(typescript@5.4.5) transitivePeerDependencies: - babel-plugin-macros @@ -53960,9 +70383,9 @@ snapshots: jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(typescript@5.4.3)): dependencies: - '@babel/core': 7.24.3 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 + "@babel/core": 7.24.3 + "@jest/test-sequencer": 29.7.0 + "@jest/types": 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -53983,7 +70406,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 ts-node: 10.9.2(typescript@5.4.3) transitivePeerDependencies: - babel-plugin-macros @@ -53992,9 +70415,9 @@ snapshots: jest-config@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)): dependencies: - '@babel/core': 7.24.3 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 + "@babel/core": 7.24.3 + "@jest/test-sequencer": 29.7.0 + "@jest/types": 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -54023,9 +70446,9 @@ snapshots: jest-config@29.7.0(ts-node@10.9.2(typescript@5.4.3)): dependencies: - '@babel/core': 7.24.3 - '@jest/test-sequencer': 29.7.0 - '@jest/types': 29.6.3 + "@babel/core": 7.24.3 + "@jest/test-sequencer": 29.7.0 + "@jest/types": 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -54094,7 +70517,7 @@ snapshots: jest-each@27.5.1: dependencies: - '@jest/types': 27.5.1 + "@jest/types": 27.5.1 chalk: 4.1.2 jest-get-type: 27.5.1 jest-util: 27.5.1 @@ -54102,7 +70525,7 @@ snapshots: jest-each@28.1.3: dependencies: - '@jest/types': 28.1.3 + "@jest/types": 28.1.3 chalk: 4.1.2 jest-get-type: 28.0.2 jest-util: 28.1.3 @@ -54110,7 +70533,7 @@ snapshots: jest-each@29.7.0: dependencies: - '@jest/types': 29.6.3 + "@jest/types": 29.6.3 chalk: 4.1.2 jest-get-type: 29.6.3 jest-util: 29.7.0 @@ -54130,14 +70553,14 @@ snapshots: jest: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) jest-environment-node: 29.7.0 transitivePeerDependencies: - - '@types/bunyan' + - "@types/bunyan" jest-environment-jsdom@27.5.1: dependencies: - '@jest/environment': 27.5.1 - '@jest/fake-timers': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 20.12.12 + "@jest/environment": 27.5.1 + "@jest/fake-timers": 27.5.1 + "@jest/types": 27.5.1 + "@types/node": 20.12.12 jest-mock: 27.5.1 jest-util: 27.5.1 jsdom: 16.7.0 @@ -54149,11 +70572,11 @@ snapshots: jest-environment-jsdom@28.1.3: dependencies: - '@jest/environment': 28.1.3 - '@jest/fake-timers': 28.1.3 - '@jest/types': 28.1.3 - '@types/jsdom': 16.2.15 - '@types/node': 20.12.12 + "@jest/environment": 28.1.3 + "@jest/fake-timers": 28.1.3 + "@jest/types": 28.1.3 + "@types/jsdom": 16.2.15 + "@types/node": 20.12.12 jest-mock: 28.1.3 jest-util: 28.1.3 jsdom: 19.0.0 @@ -54165,11 +70588,11 @@ snapshots: jest-environment-jsdom@29.7.0: dependencies: - '@jest/environment': 29.7.0 - '@jest/fake-timers': 29.7.0 - '@jest/types': 29.6.3 - '@types/jsdom': 20.0.1 - '@types/node': 20.12.12 + "@jest/environment": 29.7.0 + "@jest/fake-timers": 29.7.0 + "@jest/types": 29.6.3 + "@types/jsdom": 20.0.1 + "@types/node": 20.12.12 jest-mock: 29.7.0 jest-util: 29.7.0 jsdom: 20.0.3 @@ -54180,28 +70603,28 @@ snapshots: jest-environment-node@27.5.1: dependencies: - '@jest/environment': 27.5.1 - '@jest/fake-timers': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 20.12.12 + "@jest/environment": 27.5.1 + "@jest/fake-timers": 27.5.1 + "@jest/types": 27.5.1 + "@types/node": 20.12.12 jest-mock: 27.5.1 jest-util: 27.5.1 jest-environment-node@28.1.3: dependencies: - '@jest/environment': 28.1.3 - '@jest/fake-timers': 28.1.3 - '@jest/types': 28.1.3 - '@types/node': 20.12.12 + "@jest/environment": 28.1.3 + "@jest/fake-timers": 28.1.3 + "@jest/types": 28.1.3 + "@types/node": 20.12.12 jest-mock: 28.1.3 jest-util: 28.1.3 jest-environment-node@29.7.0: dependencies: - '@jest/environment': 29.7.0 - '@jest/fake-timers': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 + "@jest/environment": 29.7.0 + "@jest/fake-timers": 29.7.0 + "@jest/types": 29.6.3 + "@types/node": 20.12.12 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -54224,9 +70647,9 @@ snapshots: jest-haste-map@27.5.1: dependencies: - '@jest/types': 27.5.1 - '@types/graceful-fs': 4.1.9 - '@types/node': 20.12.12 + "@jest/types": 27.5.1 + "@types/graceful-fs": 4.1.9 + "@types/node": 20.12.12 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -54243,9 +70666,9 @@ snapshots: jest-haste-map@28.1.3: dependencies: - '@jest/types': 28.1.3 - '@types/graceful-fs': 4.1.9 - '@types/node': 20.12.12 + "@jest/types": 28.1.3 + "@types/graceful-fs": 4.1.9 + "@types/node": 20.12.12 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -54261,9 +70684,9 @@ snapshots: jest-haste-map@29.7.0: dependencies: - '@jest/types': 29.6.3 - '@types/graceful-fs': 4.1.9 - '@types/node': 20.12.12 + "@jest/types": 29.6.3 + "@types/graceful-fs": 4.1.9 + "@types/node": 20.12.12 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -54277,17 +70700,17 @@ snapshots: transitivePeerDependencies: - metro - jest-haste-map@29.7.0(metro@0.80.8): + jest-haste-map@29.7.0(metro@0.80.12): dependencies: - '@jest/types': 29.6.3 - '@types/graceful-fs': 4.1.9 - '@types/node': 20.12.12 + "@jest/types": 29.6.3 + "@types/graceful-fs": 4.1.9 + "@types/node": 20.12.12 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 jest-regex-util: 29.6.3 jest-util: 29.7.0 - jest-worker: 29.7.0(metro@0.80.8) + jest-worker: 29.7.0(metro@0.80.12) micromatch: 4.0.7 walker: 1.0.8 optionalDependencies: @@ -54297,11 +70720,11 @@ snapshots: jest-jasmine2@27.5.1: dependencies: - '@jest/environment': 27.5.1 - '@jest/source-map': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 20.12.12 + "@jest/environment": 27.5.1 + "@jest/source-map": 27.5.1 + "@jest/test-result": 27.5.1 + "@jest/types": 27.5.1 + "@types/node": 20.12.12 chalk: 4.1.2 co: 4.6.0 expect: 27.5.1 @@ -54356,9 +70779,9 @@ snapshots: jest-message-util@27.5.1: dependencies: - '@babel/code-frame': 7.24.6 - '@jest/types': 27.5.1 - '@types/stack-utils': 2.0.3 + "@babel/code-frame": 7.24.6 + "@jest/types": 27.5.1 + "@types/stack-utils": 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.7 @@ -54368,9 +70791,9 @@ snapshots: jest-message-util@28.1.3: dependencies: - '@babel/code-frame': 7.24.6 - '@jest/types': 28.1.3 - '@types/stack-utils': 2.0.3 + "@babel/code-frame": 7.24.6 + "@jest/types": 28.1.3 + "@types/stack-utils": 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.7 @@ -54380,9 +70803,9 @@ snapshots: jest-message-util@29.7.0: dependencies: - '@babel/code-frame': 7.24.6 - '@jest/types': 29.6.3 - '@types/stack-utils': 2.0.3 + "@babel/code-frame": 7.24.6 + "@jest/types": 29.6.3 + "@types/stack-utils": 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.7 @@ -54401,27 +70824,27 @@ snapshots: strip-ansi: 6.0.1 tslib: 2.6.2 optionalDependencies: - '@jest/reporters': 29.7.0 + "@jest/reporters": 29.7.0 jest: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) jest-environment-node: 29.7.0 transitivePeerDependencies: - - '@types/bunyan' + - "@types/bunyan" - bunyan jest-mock@27.5.1: dependencies: - '@jest/types': 27.5.1 - '@types/node': 20.12.12 + "@jest/types": 27.5.1 + "@types/node": 20.12.12 jest-mock@28.1.3: dependencies: - '@jest/types': 28.1.3 - '@types/node': 20.12.12 + "@jest/types": 28.1.3 + "@types/node": 20.12.12 jest-mock@29.7.0: dependencies: - '@jest/types': 29.6.3 - '@types/node': 20.12.12 + "@jest/types": 29.6.3 + "@types/node": 20.12.12 jest-util: 29.7.0 jest-pnp-resolver@1.2.3(jest-resolve@27.5.1): @@ -54444,7 +70867,7 @@ snapshots: jest-resolve-dependencies@27.5.1: dependencies: - '@jest/types': 27.5.1 + "@jest/types": 27.5.1 jest-regex-util: 27.5.1 jest-snapshot: 27.5.1 transitivePeerDependencies: @@ -54469,7 +70892,7 @@ snapshots: jest-resolve@27.5.1: dependencies: - '@jest/types': 27.5.1 + "@jest/types": 27.5.1 chalk: 4.1.2 graceful-fs: 4.2.11 jest-haste-map: 27.5.1 @@ -54512,12 +70935,12 @@ snapshots: jest-runner@27.5.1: dependencies: - '@jest/console': 27.5.1 - '@jest/environment': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 20.12.12 + "@jest/console": 27.5.1 + "@jest/environment": 27.5.1 + "@jest/test-result": 27.5.1 + "@jest/transform": 27.5.1 + "@jest/types": 27.5.1 + "@types/node": 20.12.12 chalk: 4.1.2 emittery: 0.8.1 graceful-fs: 4.2.11 @@ -54542,12 +70965,12 @@ snapshots: jest-runner@28.1.3: dependencies: - '@jest/console': 28.1.3 - '@jest/environment': 28.1.3 - '@jest/test-result': 28.1.3 - '@jest/transform': 28.1.3 - '@jest/types': 28.1.3 - '@types/node': 20.12.12 + "@jest/console": 28.1.3 + "@jest/environment": 28.1.3 + "@jest/test-result": 28.1.3 + "@jest/transform": 28.1.3 + "@jest/types": 28.1.3 + "@types/node": 20.12.12 chalk: 4.1.2 emittery: 0.10.2 graceful-fs: 4.2.11 @@ -54569,12 +70992,12 @@ snapshots: jest-runner@29.7.0: dependencies: - '@jest/console': 29.7.0 - '@jest/environment': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 + "@jest/console": 29.7.0 + "@jest/environment": 29.7.0 + "@jest/test-result": 29.7.0 + "@jest/transform": 29.7.0 + "@jest/types": 29.6.3 + "@types/node": 20.12.12 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -54596,13 +71019,13 @@ snapshots: jest-runtime@27.5.1: dependencies: - '@jest/environment': 27.5.1 - '@jest/fake-timers': 27.5.1 - '@jest/globals': 27.5.1 - '@jest/source-map': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 + "@jest/environment": 27.5.1 + "@jest/fake-timers": 27.5.1 + "@jest/globals": 27.5.1 + "@jest/source-map": 27.5.1 + "@jest/test-result": 27.5.1 + "@jest/transform": 27.5.1 + "@jest/types": 27.5.1 chalk: 4.1.2 cjs-module-lexer: 1.2.3 collect-v8-coverage: 1.0.2 @@ -54624,13 +71047,13 @@ snapshots: jest-runtime@28.1.3: dependencies: - '@jest/environment': 28.1.3 - '@jest/fake-timers': 28.1.3 - '@jest/globals': 28.1.3 - '@jest/source-map': 28.1.2 - '@jest/test-result': 28.1.3 - '@jest/transform': 28.1.3 - '@jest/types': 28.1.3 + "@jest/environment": 28.1.3 + "@jest/fake-timers": 28.1.3 + "@jest/globals": 28.1.3 + "@jest/source-map": 28.1.2 + "@jest/test-result": 28.1.3 + "@jest/transform": 28.1.3 + "@jest/types": 28.1.3 chalk: 4.1.2 cjs-module-lexer: 1.2.3 collect-v8-coverage: 1.0.2 @@ -54652,14 +71075,14 @@ snapshots: jest-runtime@29.7.0: dependencies: - '@jest/environment': 29.7.0 - '@jest/fake-timers': 29.7.0 - '@jest/globals': 29.7.0 - '@jest/source-map': 29.6.3 - '@jest/test-result': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 + "@jest/environment": 29.7.0 + "@jest/fake-timers": 29.7.0 + "@jest/globals": 29.7.0 + "@jest/source-map": 29.6.3 + "@jest/test-result": 29.7.0 + "@jest/transform": 29.7.0 + "@jest/types": 29.6.3 + "@types/node": 20.12.12 chalk: 4.1.2 cjs-module-lexer: 1.2.3 collect-v8-coverage: 1.0.2 @@ -54680,20 +71103,20 @@ snapshots: jest-serializer@27.5.1: dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 graceful-fs: 4.2.11 jest-snapshot@27.5.1: dependencies: - '@babel/core': 7.24.3 - '@babel/generator': 7.24.1 - '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3) - '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 - '@types/babel__traverse': 7.20.5 - '@types/prettier': 2.7.3 + "@babel/core": 7.24.3 + "@babel/generator": 7.24.1 + "@babel/plugin-syntax-typescript": 7.24.1(@babel/core@7.24.3) + "@babel/traverse": 7.24.1 + "@babel/types": 7.24.0 + "@jest/transform": 27.5.1 + "@jest/types": 27.5.1 + "@types/babel__traverse": 7.20.5 + "@types/prettier": 2.7.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3) chalk: 4.1.2 expect: 27.5.1 @@ -54713,16 +71136,16 @@ snapshots: jest-snapshot@28.1.3: dependencies: - '@babel/core': 7.24.3 - '@babel/generator': 7.24.1 - '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3) - '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 - '@jest/expect-utils': 28.1.3 - '@jest/transform': 28.1.3 - '@jest/types': 28.1.3 - '@types/babel__traverse': 7.20.5 - '@types/prettier': 2.7.3 + "@babel/core": 7.24.3 + "@babel/generator": 7.24.1 + "@babel/plugin-syntax-typescript": 7.24.1(@babel/core@7.24.3) + "@babel/traverse": 7.24.1 + "@babel/types": 7.24.0 + "@jest/expect-utils": 28.1.3 + "@jest/transform": 28.1.3 + "@jest/types": 28.1.3 + "@types/babel__traverse": 7.20.5 + "@types/prettier": 2.7.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3) chalk: 4.1.2 expect: 28.1.3 @@ -54742,14 +71165,14 @@ snapshots: jest-snapshot@29.7.0: dependencies: - '@babel/core': 7.24.3 - '@babel/generator': 7.24.1 - '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3) - '@babel/types': 7.24.0 - '@jest/expect-utils': 29.7.0 - '@jest/transform': 29.7.0 - '@jest/types': 29.6.3 + "@babel/core": 7.24.3 + "@babel/generator": 7.24.1 + "@babel/plugin-syntax-jsx": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-syntax-typescript": 7.24.1(@babel/core@7.24.3) + "@babel/types": 7.24.0 + "@jest/expect-utils": 29.7.0 + "@jest/transform": 29.7.0 + "@jest/types": 29.6.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3) chalk: 4.1.2 expect: 29.7.0 @@ -54768,8 +71191,8 @@ snapshots: jest-util@27.5.1: dependencies: - '@jest/types': 27.5.1 - '@types/node': 20.12.12 + "@jest/types": 27.5.1 + "@types/node": 20.12.12 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -54777,8 +71200,8 @@ snapshots: jest-util@28.1.3: dependencies: - '@jest/types': 28.1.3 - '@types/node': 20.12.12 + "@jest/types": 28.1.3 + "@types/node": 20.12.12 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -54786,8 +71209,8 @@ snapshots: jest-util@29.7.0: dependencies: - '@jest/types': 29.6.3 - '@types/node': 20.12.12 + "@jest/types": 29.6.3 + "@types/node": 20.12.12 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -54795,7 +71218,7 @@ snapshots: jest-validate@27.5.1: dependencies: - '@jest/types': 27.5.1 + "@jest/types": 27.5.1 camelcase: 6.3.0 chalk: 4.1.2 jest-get-type: 27.5.1 @@ -54804,7 +71227,7 @@ snapshots: jest-validate@28.1.3: dependencies: - '@jest/types': 28.1.3 + "@jest/types": 28.1.3 camelcase: 6.3.0 chalk: 4.1.2 jest-get-type: 28.0.2 @@ -54813,7 +71236,7 @@ snapshots: jest-validate@29.7.0: dependencies: - '@jest/types': 29.6.3 + "@jest/types": 29.6.3 camelcase: 6.3.0 chalk: 4.1.2 jest-get-type: 29.6.3 @@ -54833,9 +71256,9 @@ snapshots: jest-watcher@27.5.1: dependencies: - '@jest/test-result': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 20.12.12 + "@jest/test-result": 27.5.1 + "@jest/types": 27.5.1 + "@types/node": 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 jest-util: 27.5.1 @@ -54843,9 +71266,9 @@ snapshots: jest-watcher@28.1.3: dependencies: - '@jest/test-result': 28.1.3 - '@jest/types': 28.1.3 - '@types/node': 20.12.12 + "@jest/test-result": 28.1.3 + "@jest/types": 28.1.3 + "@types/node": 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.10.2 @@ -54854,9 +71277,9 @@ snapshots: jest-watcher@29.7.0: dependencies: - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 - '@types/node': 20.12.12 + "@jest/test-result": 29.7.0 + "@jest/types": 29.6.3 + "@types/node": 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -54865,40 +71288,49 @@ snapshots: jest-worker@26.6.2: dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 merge-stream: 2.0.0 supports-color: 7.2.0 jest-worker@27.5.1: dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 merge-stream: 2.0.0 supports-color: 8.1.1 - jest-worker@27.5.1(metro@0.80.8): + jest-worker@27.5.1(metro@0.80.12): dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 merge-stream: 2.0.0 supports-color: 8.1.1 optionalDependencies: - metro: 0.80.8 + metro: 0.80.12 jest-worker@28.1.3: dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@29.7.0: dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 + jest-util: 29.7.0 + merge-stream: 2.0.0 + supports-color: 8.1.1 + + jest-worker@29.7.0(metro@0.80.12): + dependencies: + "@types/node": 20.12.12 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 + optionalDependencies: + metro: 0.80.12 jest-worker@29.7.0(metro@0.80.8): dependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -54907,7 +71339,7 @@ snapshots: jest@27.5.1: dependencies: - '@jest/core': 27.5.1 + "@jest/core": 27.5.1 import-local: 3.1.0 jest-cli: 27.5.1 transitivePeerDependencies: @@ -54920,36 +71352,36 @@ snapshots: jest@28.1.3(@types/node@18.19.26): dependencies: - '@jest/core': 28.1.3 - '@jest/types': 28.1.3 + "@jest/core": 28.1.3 + "@jest/types": 28.1.3 import-local: 3.1.0 jest-cli: 28.1.3(@types/node@18.19.26) transitivePeerDependencies: - - '@types/node' + - "@types/node" - metro - supports-color - ts-node jest@28.1.3(@types/node@20.12.12): dependencies: - '@jest/core': 28.1.3 - '@jest/types': 28.1.3 + "@jest/core": 28.1.3 + "@jest/types": 28.1.3 import-local: 3.1.0 jest-cli: 28.1.3(@types/node@20.12.12) transitivePeerDependencies: - - '@types/node' + - "@types/node" - metro - supports-color - ts-node jest@29.7.0: dependencies: - '@jest/core': 29.7.0 - '@jest/types': 29.6.3 + "@jest/core": 29.7.0 + "@jest/types": 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0 transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -54957,12 +71389,12 @@ snapshots: jest@29.7.0(@types/node@18.19.26)(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)) - '@jest/types': 29.6.3 + "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)) + "@jest/types": 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0(@types/node@18.19.26)(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)) transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -54970,12 +71402,12 @@ snapshots: jest@29.7.0(@types/node@20.12.12): dependencies: - '@jest/core': 29.7.0 - '@jest/types': 29.6.3 + "@jest/core": 29.7.0 + "@jest/types": 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0(@types/node@20.12.12) transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -54983,12 +71415,12 @@ snapshots: jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)) - '@jest/types': 29.6.3 + "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)) + "@jest/types": 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)) transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -54996,12 +71428,12 @@ snapshots: jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)) - '@jest/types': 29.6.3 + "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)) + "@jest/types": 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)) transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -55009,12 +71441,12 @@ snapshots: jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)) - '@jest/types': 29.6.3 + "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)) + "@jest/types": 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)) transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -55022,12 +71454,12 @@ snapshots: jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) - '@jest/types': 29.6.3 + "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) + "@jest/types": 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -55035,12 +71467,12 @@ snapshots: jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) - '@jest/types': 29.6.3 + "@jest/core": 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) + "@jest/types": 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -55048,12 +71480,12 @@ snapshots: jest@29.7.0(ts-node@10.9.2(typescript@5.4.3)): dependencies: - '@jest/core': 29.7.0(ts-node@10.9.2(typescript@5.4.3)) - '@jest/types': 29.6.3 + "@jest/core": 29.7.0(ts-node@10.9.2(typescript@5.4.3)) + "@jest/types": 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0(ts-node@10.9.2(typescript@5.4.3)) transitivePeerDependencies: - - '@types/node' + - "@types/node" - babel-plugin-macros - metro - supports-color @@ -55069,17 +71501,17 @@ snapshots: joi@17.12.2: dependencies: - '@hapi/hoek': 9.3.0 - '@hapi/topo': 5.1.0 - '@sideway/address': 4.1.5 - '@sideway/formula': 3.0.1 - '@sideway/pinpoint': 2.0.0 + "@hapi/hoek": 9.3.0 + "@hapi/topo": 5.1.0 + "@sideway/address": 4.1.5 + "@sideway/formula": 3.0.1 + "@sideway/pinpoint": 2.0.0 join-component@1.1.0: {} jotai@2.7.1(@types/react@18.2.73)(react@18.2.0): optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 react: 18.2.0 joycon@3.1.1: {} @@ -55153,15 +71585,15 @@ snapshots: jscodeshift@0.14.0: dependencies: - '@babel/core': 7.24.3 - '@babel/parser': 7.24.1 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) - '@babel/preset-flow': 7.24.1(@babel/core@7.24.3) - '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) - '@babel/register': 7.23.7(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/parser": 7.24.1 + "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.24.3) + "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) + "@babel/preset-flow": 7.24.1(@babel/core@7.24.3) + "@babel/preset-typescript": 7.24.1(@babel/core@7.24.3) + "@babel/register": 7.23.7(@babel/core@7.24.3) babel-core: 7.0.0-bridge.0(@babel/core@7.24.3) chalk: 4.1.2 flow-parser: 0.232.0 @@ -55177,16 +71609,16 @@ snapshots: jscodeshift@0.14.0(@babel/preset-env@7.24.3(@babel/core@7.24.3)): dependencies: - '@babel/core': 7.24.3 - '@babel/parser': 7.24.1 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) - '@babel/preset-flow': 7.24.1(@babel/core@7.24.3) - '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) - '@babel/register': 7.23.7(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/parser": 7.24.1 + "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.24.3) + "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) + "@babel/preset-env": 7.24.3(@babel/core@7.24.3) + "@babel/preset-flow": 7.24.1(@babel/core@7.24.3) + "@babel/preset-typescript": 7.24.1(@babel/core@7.24.3) + "@babel/register": 7.23.7(@babel/core@7.24.3) babel-core: 7.0.0-bridge.0(@babel/core@7.24.3) chalk: 4.1.2 flow-parser: 0.232.0 @@ -55202,16 +71634,16 @@ snapshots: jscodeshift@0.15.2(@babel/preset-env@7.24.3(@babel/core@7.24.3)): dependencies: - '@babel/core': 7.24.3 - '@babel/parser': 7.24.1 - '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) - '@babel/preset-flow': 7.24.1(@babel/core@7.24.3) - '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) - '@babel/register': 7.23.7(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/parser": 7.24.1 + "@babel/plugin-transform-class-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-nullish-coalescing-operator": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-optional-chaining": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-private-methods": 7.24.1(@babel/core@7.24.3) + "@babel/preset-flow": 7.24.1(@babel/core@7.24.3) + "@babel/preset-typescript": 7.24.1(@babel/core@7.24.3) + "@babel/register": 7.23.7(@babel/core@7.24.3) babel-core: 7.0.0-bridge.0(@babel/core@7.24.3) chalk: 4.1.2 flow-parser: 0.232.0 @@ -55223,15 +71655,15 @@ snapshots: temp: 0.8.4 write-file-atomic: 2.4.3 optionalDependencies: - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) + "@babel/preset-env": 7.24.3(@babel/core@7.24.3) transitivePeerDependencies: - supports-color jsdoc@4.0.3: dependencies: - '@babel/parser': 7.24.1 - '@jsdoc/salty': 0.2.8 - '@types/markdown-it': 14.1.1 + "@babel/parser": 7.24.1 + "@jsdoc/salty": 0.2.8 + "@types/markdown-it": 14.1.1 bluebird: 3.7.2 catharsis: 0.9.0 escape-string-regexp: 2.0.0 @@ -55453,7 +71885,7 @@ snapshots: jsonfile@6.1.0: dependencies: - universalify: 2.0.0 + universalify: 2.0.1 optionalDependencies: graceful-fs: 4.2.11 @@ -55536,7 +71968,7 @@ snapshots: key-encoder@2.0.3: dependencies: - '@types/elliptic': 6.4.18 + "@types/elliptic": 6.4.18 asn1.js: 5.4.1 bn.js: 4.12.0 elliptic: 6.5.5 @@ -55670,8 +72102,8 @@ snapshots: konan@2.1.1: dependencies: - '@babel/parser': 7.24.1 - '@babel/traverse': 7.24.1 + "@babel/parser": 7.24.1 + "@babel/traverse": 7.24.1 transitivePeerDependencies: - supports-color @@ -55909,7 +72341,7 @@ snapshots: listr@0.14.3: dependencies: - '@samverschueren/stream-to-observable': 0.3.1(rxjs@6.6.7) + "@samverschueren/stream-to-observable": 0.3.1(rxjs@6.6.7) is-observable: 1.1.0 is-promise: 2.2.2 is-stream: 1.1.0 @@ -56108,8 +72540,8 @@ snapshots: logform@2.6.0: dependencies: - '@colors/colors': 1.6.0 - '@types/triple-beam': 1.3.5 + "@colors/colors": 1.6.0 + "@types/triple-beam": 1.3.5 fecha: 4.2.3 ms: 2.1.3 safe-stable-stringify: 2.4.3 @@ -56131,10 +72563,10 @@ snapshots: dependencies: js-tokens: 4.0.0 - lottie-react-native@6.7.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + lottie-react-native@6.7.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) lottie-web@5.12.2: {} @@ -56197,7 +72629,7 @@ snapshots: lws-cors@3.1.1: dependencies: - '@koa/cors': 3.4.3 + "@koa/cors": 3.4.3 lws-index@2.0.0: dependencies: @@ -56276,11 +72708,11 @@ snapshots: magic-string@0.27.0: dependencies: - '@jridgewell/sourcemap-codec': 1.4.15 + "@jridgewell/sourcemap-codec": 1.4.15 magic-string@0.30.8: dependencies: - '@jridgewell/sourcemap-codec': 1.4.15 + "@jridgewell/sourcemap-codec": 1.4.15 make-dir@2.1.0: dependencies: @@ -56317,7 +72749,7 @@ snapshots: markdown-it-anchor@8.6.7(@types/markdown-it@14.1.1)(markdown-it@14.1.0): dependencies: - '@types/markdown-it': 14.1.1 + "@types/markdown-it": 14.1.1 markdown-it: 14.1.0 markdown-it@14.1.0: @@ -56341,7 +72773,7 @@ snapshots: match-sorter@6.3.4: dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.25.0 remove-accents: 0.5.0 matcher@3.0.0: @@ -56385,21 +72817,21 @@ snapshots: mdast-util-definitions@5.1.2: dependencies: - '@types/mdast': 3.0.15 - '@types/unist': 2.0.10 + "@types/mdast": 3.0.15 + "@types/unist": 2.0.10 unist-util-visit: 4.1.2 mdast-util-find-and-replace@2.2.2: dependencies: - '@types/mdast': 3.0.15 + "@types/mdast": 3.0.15 escape-string-regexp: 5.0.0 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 mdast-util-from-markdown@1.3.1: dependencies: - '@types/mdast': 3.0.15 - '@types/unist': 2.0.10 + "@types/mdast": 3.0.15 + "@types/unist": 2.0.10 decode-named-character-reference: 1.0.2 mdast-util-to-string: 3.2.0 micromark: 3.2.0 @@ -56415,25 +72847,25 @@ snapshots: mdast-util-gfm-autolink-literal@1.0.3: dependencies: - '@types/mdast': 3.0.15 + "@types/mdast": 3.0.15 ccount: 2.0.1 mdast-util-find-and-replace: 2.2.2 micromark-util-character: 1.2.0 mdast-util-gfm-footnote@1.0.2: dependencies: - '@types/mdast': 3.0.15 + "@types/mdast": 3.0.15 mdast-util-to-markdown: 1.5.0 micromark-util-normalize-identifier: 1.1.0 mdast-util-gfm-strikethrough@1.0.3: dependencies: - '@types/mdast': 3.0.15 + "@types/mdast": 3.0.15 mdast-util-to-markdown: 1.5.0 mdast-util-gfm-table@1.0.7: dependencies: - '@types/mdast': 3.0.15 + "@types/mdast": 3.0.15 markdown-table: 3.0.3 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 @@ -56442,7 +72874,7 @@ snapshots: mdast-util-gfm-task-list-item@1.0.2: dependencies: - '@types/mdast': 3.0.15 + "@types/mdast": 3.0.15 mdast-util-to-markdown: 1.5.0 mdast-util-gfm@2.0.2: @@ -56463,15 +72895,15 @@ snapshots: mdast-util-math@2.0.2: dependencies: - '@types/mdast': 3.0.15 + "@types/mdast": 3.0.15 longest-streak: 3.1.0 mdast-util-to-markdown: 1.5.0 mdast-util-mdx-expression@1.3.2: dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 2.3.10 - '@types/mdast': 3.0.15 + "@types/estree-jsx": 1.0.5 + "@types/hast": 2.3.10 + "@types/mdast": 3.0.15 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 transitivePeerDependencies: @@ -56479,10 +72911,10 @@ snapshots: mdast-util-mdx-jsx@2.1.4: dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 2.3.10 - '@types/mdast': 3.0.15 - '@types/unist': 2.0.10 + "@types/estree-jsx": 1.0.5 + "@types/hast": 2.3.10 + "@types/mdast": 3.0.15 + "@types/unist": 2.0.10 ccount: 2.0.1 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 @@ -56506,9 +72938,9 @@ snapshots: mdast-util-mdxjs-esm@1.3.1: dependencies: - '@types/estree-jsx': 1.0.5 - '@types/hast': 2.3.10 - '@types/mdast': 3.0.15 + "@types/estree-jsx": 1.0.5 + "@types/hast": 2.3.10 + "@types/mdast": 3.0.15 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 transitivePeerDependencies: @@ -56516,13 +72948,13 @@ snapshots: mdast-util-phrasing@3.0.1: dependencies: - '@types/mdast': 3.0.15 + "@types/mdast": 3.0.15 unist-util-is: 5.2.1 mdast-util-to-hast@12.3.0: dependencies: - '@types/hast': 2.3.10 - '@types/mdast': 3.0.15 + "@types/hast": 2.3.10 + "@types/mdast": 3.0.15 mdast-util-definitions: 5.1.2 micromark-util-sanitize-uri: 1.2.0 trim-lines: 3.0.1 @@ -56532,9 +72964,9 @@ snapshots: mdast-util-to-hast@13.1.0: dependencies: - '@types/hast': 3.0.4 - '@types/mdast': 4.0.4 - '@ungap/structured-clone': 1.2.0 + "@types/hast": 3.0.4 + "@types/mdast": 4.0.4 + "@ungap/structured-clone": 1.2.0 devlop: 1.1.0 micromark-util-sanitize-uri: 2.0.0 trim-lines: 3.0.1 @@ -56544,8 +72976,8 @@ snapshots: mdast-util-to-markdown@1.5.0: dependencies: - '@types/mdast': 3.0.15 - '@types/unist': 2.0.10 + "@types/mdast": 3.0.15 + "@types/unist": 2.0.10 longest-streak: 3.1.0 mdast-util-phrasing: 3.0.1 mdast-util-to-string: 3.2.0 @@ -56557,12 +72989,12 @@ snapshots: mdast-util-to-string@3.2.0: dependencies: - '@types/mdast': 3.0.15 + "@types/mdast": 3.0.15 mdast-util-toc@6.1.1: dependencies: - '@types/extend': 3.0.4 - '@types/mdast': 3.0.15 + "@types/extend": 3.0.4 + "@types/mdast": 3.0.15 extend: 3.0.2 github-slugger: 2.0.0 mdast-util-to-string: 3.2.0 @@ -56593,7 +73025,7 @@ snapshots: meow@8.1.2: dependencies: - '@types/minimist': 1.2.5 + "@types/minimist": 1.2.5 camelcase-keys: 6.2.2 decamelize-keys: 1.1.1 hard-rejection: 2.1.0 @@ -56607,7 +73039,7 @@ snapshots: meow@9.0.0: dependencies: - '@types/minimist': 1.2.5 + "@types/minimist": 1.2.5 camelcase-keys: 6.2.2 decamelize: 1.2.0 decamelize-keys: 1.1.1 @@ -56638,9 +73070,9 @@ snapshots: mermaid@10.9.0: dependencies: - '@braintree/sanitize-url': 6.0.4 - '@types/d3-scale': 4.0.8 - '@types/d3-scale-chromatic': 3.0.3 + "@braintree/sanitize-url": 6.0.4 + "@types/d3-scale": 4.0.8 + "@types/d3-scale-chromatic": 3.0.3 cytoscape: 3.28.1 cytoscape-cose-bilkent: 4.1.0(cytoscape@3.28.1) d3: 7.9.0 @@ -56663,21 +73095,72 @@ snapshots: methods@1.1.2: {} + metro-babel-transformer@0.80.12: + dependencies: + "@babel/core": 7.24.3 + flow-enums-runtime: 0.0.6 + hermes-parser: 0.23.1 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + metro-babel-transformer@0.80.8: dependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 hermes-parser: 0.20.1 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color + metro-cache-key@0.80.12: + dependencies: + flow-enums-runtime: 0.0.6 + metro-cache-key@0.80.8: {} + metro-cache@0.80.12: + dependencies: + exponential-backoff: 3.1.1 + flow-enums-runtime: 0.0.6 + metro-core: 0.80.12 + metro-cache@0.80.8: dependencies: metro-core: 0.80.8 rimraf: 3.0.2 + metro-config@0.80.12: + dependencies: + connect: 3.7.0 + cosmiconfig: 5.2.1 + flow-enums-runtime: 0.0.6 + jest-validate: 29.7.0 + metro: 0.80.12 + metro-cache: 0.80.12 + metro-core: 0.80.12 + metro-runtime: 0.80.12 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + metro-config@0.80.12(metro-transform-worker@0.80.12): + dependencies: + connect: 3.7.0 + cosmiconfig: 5.2.1 + flow-enums-runtime: 0.0.6 + jest-validate: 29.7.0 + metro: 0.80.12 + metro-cache: 0.80.12 + metro-core: 0.80.12 + metro-runtime: 0.80.12 + optionalDependencies: + metro-transform-worker: 0.80.12 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + metro-config@0.80.8: dependencies: connect: 3.7.0 @@ -56705,16 +73188,38 @@ snapshots: optionalDependencies: metro-transform-worker: 0.80.8 transitivePeerDependencies: - - bufferutil - - encoding - supports-color - - utf-8-validate + + metro-core@0.80.12: + dependencies: + flow-enums-runtime: 0.0.6 + lodash.throttle: 4.1.1 + metro-resolver: 0.80.12 metro-core@0.80.8: dependencies: lodash.throttle: 4.1.1 metro-resolver: 0.80.8 + metro-file-map@0.80.12(metro@0.80.12): + dependencies: + anymatch: 3.1.3 + debug: 2.6.9 + fb-watchman: 2.0.2 + flow-enums-runtime: 0.0.6 + graceful-fs: 4.2.11 + invariant: 2.2.4 + jest-worker: 29.7.0(metro@0.80.12) + micromatch: 4.0.7 + node-abort-controller: 3.1.1 + nullthrows: 1.1.1 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.3 + transitivePeerDependencies: + - metro + - supports-color + metro-file-map@0.80.8(metro@0.80.8): dependencies: anymatch: 3.1.3 @@ -56733,6 +73238,11 @@ snapshots: - metro - supports-color + metro-minify-terser@0.80.12: + dependencies: + flow-enums-runtime: 0.0.6 + terser: 5.30.0 + metro-minify-terser@0.80.8: dependencies: terser: 5.30.0 @@ -56743,43 +73253,43 @@ snapshots: metro-react-native-babel-preset@0.76.8(@babel/core@7.24.3): dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) - '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) - '@babel/template': 7.24.0 + "@babel/core": 7.24.3 + "@babel/plugin-proposal-async-generator-functions": 7.20.7(@babel/core@7.24.3) + "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-export-default-from": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-numeric-separator": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.24.3) + "@babel/plugin-proposal-optional-catch-binding": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.24.3) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-export-default-from": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-syntax-flow": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-async-to-generator": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-block-scoping": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-classes": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-computed-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-destructuring": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-flow-strip-types": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-function-name": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-literals": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.24.3) + "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-display-name": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx-self": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx-source": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-runtime": 7.24.3(@babel/core@7.24.3) + "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-spread": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-sticky-regex": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-typescript": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-unicode-regex": 7.24.1(@babel/core@7.24.3) + "@babel/template": 7.24.0 babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.3) react-refresh: 0.4.3 transitivePeerDependencies: @@ -56787,43 +73297,43 @@ snapshots: metro-react-native-babel-preset@0.77.0(@babel/core@7.24.3): dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.3) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) - '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) - '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) - '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) - '@babel/template': 7.24.0 + "@babel/core": 7.24.3 + "@babel/plugin-proposal-async-generator-functions": 7.20.7(@babel/core@7.24.3) + "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-export-default-from": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-numeric-separator": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.24.3) + "@babel/plugin-proposal-optional-catch-binding": 7.18.6(@babel/core@7.24.3) + "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.24.3) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-export-default-from": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-syntax-flow": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) + "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-async-to-generator": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-block-scoping": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-classes": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-computed-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-destructuring": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-flow-strip-types": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-function-name": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-literals": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.24.3) + "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-display-name": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx-self": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-react-jsx-source": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-runtime": 7.24.3(@babel/core@7.24.3) + "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-spread": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-sticky-regex": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-typescript": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-unicode-regex": 7.24.1(@babel/core@7.24.3) + "@babel/template": 7.24.0 babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.3) react-refresh: 0.4.3 transitivePeerDependencies: @@ -56831,7 +73341,7 @@ snapshots: metro-react-native-babel-transformer@0.77.0(@babel/core@7.24.3): dependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 babel-preset-fbjs: 3.4.0(@babel/core@7.24.3) hermes-parser: 0.14.0 metro-react-native-babel-preset: 0.77.0(@babel/core@7.24.3) @@ -56839,16 +73349,39 @@ snapshots: transitivePeerDependencies: - supports-color + metro-resolver@0.80.12: + dependencies: + flow-enums-runtime: 0.0.6 + metro-resolver@0.80.8: {} + metro-runtime@0.80.12: + dependencies: + "@babel/runtime": 7.25.0 + flow-enums-runtime: 0.0.6 + metro-runtime@0.80.8: dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.25.0 + + metro-source-map@0.80.12: + dependencies: + "@babel/traverse": 7.24.1 + "@babel/types": 7.24.0 + flow-enums-runtime: 0.0.6 + invariant: 2.2.4 + metro-symbolicate: 0.80.12 + nullthrows: 1.1.1 + ob1: 0.80.12 + source-map: 0.5.7 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color metro-source-map@0.80.8: dependencies: - '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 + "@babel/traverse": 7.24.1 + "@babel/types": 7.24.0 invariant: 2.2.4 metro-symbolicate: 0.80.8 nullthrows: 1.1.1 @@ -56858,6 +73391,18 @@ snapshots: transitivePeerDependencies: - supports-color + metro-symbolicate@0.80.12: + dependencies: + flow-enums-runtime: 0.0.6 + invariant: 2.2.4 + metro-source-map: 0.80.12 + nullthrows: 1.1.1 + source-map: 0.5.7 + through2: 2.0.5 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color + metro-symbolicate@0.80.8: dependencies: invariant: 2.2.4 @@ -56869,22 +73414,53 @@ snapshots: transitivePeerDependencies: - supports-color + metro-transform-plugins@0.80.12: + dependencies: + "@babel/core": 7.24.3 + "@babel/generator": 7.24.1 + "@babel/template": 7.24.0 + "@babel/traverse": 7.24.1 + flow-enums-runtime: 0.0.6 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + metro-transform-plugins@0.80.8: dependencies: - '@babel/core': 7.24.3 - '@babel/generator': 7.24.1 - '@babel/template': 7.24.0 - '@babel/traverse': 7.24.1 + "@babel/core": 7.24.3 + "@babel/generator": 7.24.1 + "@babel/template": 7.24.0 + "@babel/traverse": 7.24.1 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + + metro-transform-worker@0.80.12: + dependencies: + "@babel/core": 7.24.3 + "@babel/generator": 7.24.1 + "@babel/parser": 7.24.1 + "@babel/types": 7.24.0 + flow-enums-runtime: 0.0.6 + metro: 0.80.12 + metro-babel-transformer: 0.80.12 + metro-cache: 0.80.12 + metro-cache-key: 0.80.12 + metro-minify-terser: 0.80.12 + metro-source-map: 0.80.12 + metro-transform-plugins: 0.80.12 nullthrows: 1.1.1 transitivePeerDependencies: + - bufferutil - supports-color + - utf-8-validate metro-transform-worker@0.80.8: dependencies: - '@babel/core': 7.24.3 - '@babel/generator': 7.24.1 - '@babel/parser': 7.24.1 - '@babel/types': 7.24.0 + "@babel/core": 7.24.3 + "@babel/generator": 7.24.1 + "@babel/parser": 7.24.1 + "@babel/types": 7.24.0 metro: 0.80.8 metro-babel-transformer: 0.80.8 metro-cache: 0.80.8 @@ -56899,15 +73475,64 @@ snapshots: - supports-color - utf-8-validate + metro@0.80.12: + dependencies: + "@babel/code-frame": 7.24.6 + "@babel/core": 7.24.3 + "@babel/generator": 7.24.1 + "@babel/parser": 7.24.1 + "@babel/template": 7.24.0 + "@babel/traverse": 7.24.1 + "@babel/types": 7.24.0 + accepts: 1.3.8 + chalk: 4.1.2 + ci-info: 2.0.0 + connect: 3.7.0 + debug: 2.6.9 + denodeify: 1.2.1 + error-stack-parser: 2.1.4 + flow-enums-runtime: 0.0.6 + graceful-fs: 4.2.11 + hermes-parser: 0.23.1 + image-size: 1.1.1 + invariant: 2.2.4 + jest-worker: 29.7.0(metro@0.80.12) + jsc-safe-url: 0.2.4 + lodash.throttle: 4.1.1 + metro-babel-transformer: 0.80.12 + metro-cache: 0.80.12 + metro-cache-key: 0.80.12 + metro-config: 0.80.12(metro-transform-worker@0.80.12) + metro-core: 0.80.12 + metro-file-map: 0.80.12(metro@0.80.12) + metro-resolver: 0.80.12 + metro-runtime: 0.80.12 + metro-source-map: 0.80.12 + metro-symbolicate: 0.80.12 + metro-transform-plugins: 0.80.12 + metro-transform-worker: 0.80.12 + mime-types: 2.1.35 + nullthrows: 1.1.1 + serialize-error: 2.1.0 + source-map: 0.5.7 + strip-ansi: 6.0.1 + throat: 5.0.0 + ws: 7.5.10 + yargs: 17.7.2 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + metro@0.80.8: dependencies: - '@babel/code-frame': 7.24.2 - '@babel/core': 7.24.3 - '@babel/generator': 7.24.1 - '@babel/parser': 7.24.1 - '@babel/template': 7.24.0 - '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 + "@babel/code-frame": 7.24.6 + "@babel/core": 7.24.3 + "@babel/generator": 7.24.1 + "@babel/parser": 7.24.1 + "@babel/template": 7.24.0 + "@babel/traverse": 7.24.1 + "@babel/types": 7.24.0 accepts: 1.3.8 chalk: 4.1.2 ci-info: 2.0.0 @@ -57048,7 +73673,7 @@ snapshots: micromark-extension-math@2.1.2: dependencies: - '@types/katex': 0.16.7 + "@types/katex": 0.16.7 katex: 0.16.10 micromark-factory-space: 1.1.0 micromark-util-character: 1.2.0 @@ -57058,7 +73683,7 @@ snapshots: micromark-extension-mdx-expression@1.0.8: dependencies: - '@types/estree': 1.0.5 + "@types/estree": 1.0.5 micromark-factory-mdx-expression: 1.0.9 micromark-factory-space: 1.1.0 micromark-util-character: 1.2.0 @@ -57069,8 +73694,8 @@ snapshots: micromark-extension-mdx-jsx@1.0.5: dependencies: - '@types/acorn': 4.0.6 - '@types/estree': 1.0.5 + "@types/acorn": 4.0.6 + "@types/estree": 1.0.5 estree-util-is-identifier-name: 2.1.0 micromark-factory-mdx-expression: 1.0.9 micromark-factory-space: 1.1.0 @@ -57086,7 +73711,7 @@ snapshots: micromark-extension-mdxjs-esm@1.0.5: dependencies: - '@types/estree': 1.0.5 + "@types/estree": 1.0.5 micromark-core-commonmark: 1.1.0 micromark-util-character: 1.2.0 micromark-util-events-to-acorn: 1.2.3 @@ -57135,7 +73760,7 @@ snapshots: micromark-factory-mdx-expression@1.0.9: dependencies: - '@types/estree': 1.0.5 + "@types/estree": 1.0.5 micromark-util-character: 1.2.0 micromark-util-events-to-acorn: 1.2.3 micromark-util-symbol: 1.1.0 @@ -57243,9 +73868,9 @@ snapshots: micromark-util-events-to-acorn@1.2.3: dependencies: - '@types/acorn': 4.0.6 - '@types/estree': 1.0.5 - '@types/unist': 2.0.10 + "@types/acorn": 4.0.6 + "@types/estree": 1.0.5 + "@types/unist": 2.0.10 estree-util-visit: 1.2.1 micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 @@ -57308,7 +73933,7 @@ snapshots: micromark@3.2.0: dependencies: - '@types/debug': 4.1.12 + "@types/debug": 4.1.12 debug: 4.3.4 decode-named-character-reference: 1.0.2 micromark-core-commonmark: 1.1.0 @@ -57330,7 +73955,7 @@ snapshots: micromark@4.0.0: dependencies: - '@types/debug': 4.1.12 + "@types/debug": 4.1.12 debug: 4.3.4 decode-named-character-reference: 1.0.2 devlop: 1.1.0 @@ -57399,11 +74024,11 @@ snapshots: min-indent@1.0.1: {} - mini-css-extract-plugin@2.8.1(webpack@5.91.0(metro@0.80.8)): + mini-css-extract-plugin@2.8.1(webpack@5.91.0(metro@0.80.12)): dependencies: schema-utils: 4.2.0 tapable: 2.2.1 - webpack: 5.91.0(metro@0.80.8) + webpack: 5.91.0(metro@0.80.12) mini-css-extract-plugin@2.8.1(webpack@5.94.0): dependencies: @@ -57447,6 +74072,10 @@ snapshots: dependencies: minipass: 3.3.6 + minipass-collect@2.0.1: + dependencies: + minipass: 7.0.4 + minipass-flush@1.0.5: dependencies: minipass: 3.3.6 @@ -57544,14 +74173,14 @@ snapshots: msw@2.2.12(typescript@5.4.3): dependencies: - '@bundled-es-modules/cookie': 2.0.0 - '@bundled-es-modules/statuses': 1.0.1 - '@inquirer/confirm': 3.1.7 - '@mswjs/cookies': 1.1.0 - '@mswjs/interceptors': 0.26.14 - '@open-draft/until': 2.1.0 - '@types/cookie': 0.6.0 - '@types/statuses': 2.0.5 + "@bundled-es-modules/cookie": 2.0.0 + "@bundled-es-modules/statuses": 1.0.1 + "@inquirer/confirm": 3.1.7 + "@mswjs/cookies": 1.1.0 + "@mswjs/interceptors": 0.26.14 + "@open-draft/until": 2.1.0 + "@types/cookie": 0.6.0 + "@types/statuses": 2.0.5 chalk: 4.1.2 graphql: 16.8.1 headers-polyfill: 4.0.3 @@ -57566,14 +74195,14 @@ snapshots: msw@2.2.13(typescript@5.4.3): dependencies: - '@bundled-es-modules/cookie': 2.0.0 - '@bundled-es-modules/statuses': 1.0.1 - '@inquirer/confirm': 3.1.7 - '@mswjs/cookies': 1.1.0 - '@mswjs/interceptors': 0.26.14 - '@open-draft/until': 2.1.0 - '@types/cookie': 0.6.0 - '@types/statuses': 2.0.5 + "@bundled-es-modules/cookie": 2.0.0 + "@bundled-es-modules/statuses": 1.0.1 + "@inquirer/confirm": 3.1.7 + "@mswjs/cookies": 1.1.0 + "@mswjs/interceptors": 0.26.14 + "@open-draft/until": 2.1.0 + "@types/cookie": 0.6.0 + "@types/statuses": 2.0.5 chalk: 4.1.2 graphql: 16.8.1 headers-polyfill: 4.0.3 @@ -57588,14 +74217,14 @@ snapshots: msw@2.2.13(typescript@5.4.5): dependencies: - '@bundled-es-modules/cookie': 2.0.0 - '@bundled-es-modules/statuses': 1.0.1 - '@inquirer/confirm': 3.1.7 - '@mswjs/cookies': 1.1.0 - '@mswjs/interceptors': 0.26.14 - '@open-draft/until': 2.1.0 - '@types/cookie': 0.6.0 - '@types/statuses': 2.0.5 + "@bundled-es-modules/cookie": 2.0.0 + "@bundled-es-modules/statuses": 1.0.1 + "@inquirer/confirm": 3.1.7 + "@mswjs/cookies": 1.1.0 + "@mswjs/interceptors": 0.26.14 + "@open-draft/until": 2.1.0 + "@types/cookie": 0.6.0 + "@types/statuses": 2.0.5 chalk: 4.1.2 graphql: 16.8.1 headers-polyfill: 4.0.3 @@ -57610,14 +74239,14 @@ snapshots: msw@2.3.4(typescript@5.4.3): dependencies: - '@bundled-es-modules/cookie': 2.0.0 - '@bundled-es-modules/statuses': 1.0.1 - '@bundled-es-modules/tough-cookie': 0.1.6 - '@inquirer/confirm': 3.1.7 - '@mswjs/interceptors': 0.29.1 - '@open-draft/until': 2.1.0 - '@types/cookie': 0.6.0 - '@types/statuses': 2.0.5 + "@bundled-es-modules/cookie": 2.0.0 + "@bundled-es-modules/statuses": 1.0.1 + "@bundled-es-modules/tough-cookie": 0.1.6 + "@inquirer/confirm": 3.1.7 + "@mswjs/interceptors": 0.29.1 + "@open-draft/until": 2.1.0 + "@types/cookie": 0.6.0 + "@types/statuses": 2.0.5 chalk: 4.1.2 graphql: 16.8.1 headers-polyfill: 4.0.3 @@ -57714,22 +74343,22 @@ snapshots: near-abi@0.1.1: dependencies: - '@types/json-schema': 7.0.15 + "@types/json-schema": 7.0.15 near-api-js@3.0.2: dependencies: - '@near-js/accounts': 1.0.2 - '@near-js/crypto': 1.2.0 - '@near-js/keystores': 0.0.8 - '@near-js/keystores-browser': 0.0.8 - '@near-js/keystores-node': 0.0.8 - '@near-js/providers': 0.0.10 - '@near-js/signers': 0.1.0 - '@near-js/transactions': 1.1.0 - '@near-js/types': 0.0.4 - '@near-js/utils': 0.0.5 - '@near-js/wallet-account': 1.0.2 - '@noble/curves': 1.2.0 + "@near-js/accounts": 1.0.2 + "@near-js/crypto": 1.2.0 + "@near-js/keystores": 0.0.8 + "@near-js/keystores-browser": 0.0.8 + "@near-js/keystores-node": 0.0.8 + "@near-js/providers": 0.0.10 + "@near-js/signers": 0.1.0 + "@near-js/transactions": 1.1.0 + "@near-js/types": 0.0.4 + "@near-js/utils": 0.0.5 + "@near-js/wallet-account": 1.0.2 + "@noble/curves": 1.2.0 ajv: 8.11.2 ajv-formats: 2.1.1 bn.js: 5.2.1 @@ -57749,14 +74378,14 @@ snapshots: next-mdx-remote@4.4.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@mdx-js/mdx': 2.3.0 - '@mdx-js/react': 2.3.0(react@18.2.0) + "@mdx-js/mdx": 2.3.0 + "@mdx-js/react": 2.3.0(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) vfile: 5.3.7 vfile-matter: 3.0.1 transitivePeerDependencies: - - '@types/react' + - "@types/react" - supports-color next-seo@6.5.0(next@14.2.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0): @@ -57775,35 +74404,35 @@ snapshots: next@13.2.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@next/env': 13.2.4 - '@swc/helpers': 0.4.14 + "@next/env": 13.2.4 + "@swc/helpers": 0.4.14 caniuse-lite: 1.0.30001600 postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) styled-jsx: 5.1.1(react@18.2.0) optionalDependencies: - '@next/swc-android-arm-eabi': 13.2.4 - '@next/swc-android-arm64': 13.2.4 - '@next/swc-darwin-arm64': 13.2.4 - '@next/swc-darwin-x64': 13.2.4 - '@next/swc-freebsd-x64': 13.2.4 - '@next/swc-linux-arm-gnueabihf': 13.2.4 - '@next/swc-linux-arm64-gnu': 13.2.4 - '@next/swc-linux-arm64-musl': 13.2.4 - '@next/swc-linux-x64-gnu': 13.2.4 - '@next/swc-linux-x64-musl': 13.2.4 - '@next/swc-win32-arm64-msvc': 13.2.4 - '@next/swc-win32-ia32-msvc': 13.2.4 - '@next/swc-win32-x64-msvc': 13.2.4 - transitivePeerDependencies: - - '@babel/core' + "@next/swc-android-arm-eabi": 13.2.4 + "@next/swc-android-arm64": 13.2.4 + "@next/swc-darwin-arm64": 13.2.4 + "@next/swc-darwin-x64": 13.2.4 + "@next/swc-freebsd-x64": 13.2.4 + "@next/swc-linux-arm-gnueabihf": 13.2.4 + "@next/swc-linux-arm64-gnu": 13.2.4 + "@next/swc-linux-arm64-musl": 13.2.4 + "@next/swc-linux-x64-gnu": 13.2.4 + "@next/swc-linux-x64-musl": 13.2.4 + "@next/swc-win32-arm64-msvc": 13.2.4 + "@next/swc-win32-ia32-msvc": 13.2.4 + "@next/swc-win32-x64-msvc": 13.2.4 + transitivePeerDependencies: + - "@babel/core" - babel-plugin-macros next@14.2.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@next/env': 14.2.12 - '@swc/helpers': 0.5.5 + "@next/env": 14.2.12 + "@swc/helpers": 0.5.5 busboy: 1.6.0 caniuse-lite: 1.0.30001600 graceful-fs: 4.2.11 @@ -57812,23 +74441,23 @@ snapshots: react-dom: 18.2.0(react@18.2.0) styled-jsx: 5.1.1(react@18.2.0) optionalDependencies: - '@next/swc-darwin-arm64': 14.2.12 - '@next/swc-darwin-x64': 14.2.12 - '@next/swc-linux-arm64-gnu': 14.2.12 - '@next/swc-linux-arm64-musl': 14.2.12 - '@next/swc-linux-x64-gnu': 14.2.12 - '@next/swc-linux-x64-musl': 14.2.12 - '@next/swc-win32-arm64-msvc': 14.2.12 - '@next/swc-win32-ia32-msvc': 14.2.12 - '@next/swc-win32-x64-msvc': 14.2.12 - transitivePeerDependencies: - - '@babel/core' + "@next/swc-darwin-arm64": 14.2.12 + "@next/swc-darwin-x64": 14.2.12 + "@next/swc-linux-arm64-gnu": 14.2.12 + "@next/swc-linux-arm64-musl": 14.2.12 + "@next/swc-linux-x64-gnu": 14.2.12 + "@next/swc-linux-x64-musl": 14.2.12 + "@next/swc-win32-arm64-msvc": 14.2.12 + "@next/swc-win32-ia32-msvc": 14.2.12 + "@next/swc-win32-x64-msvc": 14.2.12 + transitivePeerDependencies: + - "@babel/core" - babel-plugin-macros next@14.2.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@next/env': 14.2.12 - '@swc/helpers': 0.5.5 + "@next/env": 14.2.12 + "@swc/helpers": 0.5.5 busboy: 1.6.0 caniuse-lite: 1.0.30001600 graceful-fs: 4.2.11 @@ -57837,23 +74466,23 @@ snapshots: react-dom: 18.3.1(react@18.3.1) styled-jsx: 5.1.1(react@18.3.1) optionalDependencies: - '@next/swc-darwin-arm64': 14.2.12 - '@next/swc-darwin-x64': 14.2.12 - '@next/swc-linux-arm64-gnu': 14.2.12 - '@next/swc-linux-arm64-musl': 14.2.12 - '@next/swc-linux-x64-gnu': 14.2.12 - '@next/swc-linux-x64-musl': 14.2.12 - '@next/swc-win32-arm64-msvc': 14.2.12 - '@next/swc-win32-ia32-msvc': 14.2.12 - '@next/swc-win32-x64-msvc': 14.2.12 - transitivePeerDependencies: - - '@babel/core' + "@next/swc-darwin-arm64": 14.2.12 + "@next/swc-darwin-x64": 14.2.12 + "@next/swc-linux-arm64-gnu": 14.2.12 + "@next/swc-linux-arm64-musl": 14.2.12 + "@next/swc-linux-x64-gnu": 14.2.12 + "@next/swc-linux-x64-musl": 14.2.12 + "@next/swc-win32-arm64-msvc": 14.2.12 + "@next/swc-win32-ia32-msvc": 14.2.12 + "@next/swc-win32-x64-msvc": 14.2.12 + transitivePeerDependencies: + - "@babel/core" - babel-plugin-macros nextra-theme-docs@2.13.4(next@14.2.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nextra@2.13.4(next@14.2.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@headlessui/react': 1.7.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@popperjs/core': 2.11.8 + "@headlessui/react": 1.7.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@popperjs/core": 2.11.8 clsx: 2.1.1 escape-string-regexp: 5.0.0 flexsearch: 0.7.43 @@ -57872,12 +74501,12 @@ snapshots: nextra@2.13.4(next@14.2.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@headlessui/react': 1.7.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@mdx-js/mdx': 2.3.0 - '@mdx-js/react': 2.3.0(react@18.2.0) - '@napi-rs/simple-git': 0.1.16 - '@theguild/remark-mermaid': 0.0.5(react@18.2.0) - '@theguild/remark-npm2yarn': 0.2.1 + "@headlessui/react": 1.7.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@mdx-js/mdx": 2.3.0 + "@mdx-js/react": 2.3.0(react@18.2.0) + "@napi-rs/simple-git": 0.1.16 + "@theguild/remark-mermaid": 0.0.5(react@18.2.0) + "@theguild/remark-npm2yarn": 0.2.1 clsx: 2.1.1 github-slugger: 2.0.0 graceful-fs: 4.2.11 @@ -57902,7 +74531,7 @@ snapshots: unist-util-visit: 5.0.0 zod: 3.22.4 transitivePeerDependencies: - - '@types/react' + - "@types/react" - supports-color nice-try@1.0.5: {} @@ -58127,8 +74756,8 @@ snapshots: nyc@15.1.0: dependencies: - '@istanbuljs/load-nyc-config': 1.1.0 - '@istanbuljs/schema': 0.1.3 + "@istanbuljs/load-nyc-config": 1.1.0 + "@istanbuljs/schema": 0.1.3 caching-transform: 4.0.0 convert-source-map: 1.9.0 decamelize: 1.2.0 @@ -58167,6 +74796,10 @@ snapshots: oauth-sign@0.9.0: {} + ob1@0.80.12: + dependencies: + flow-enums-runtime: 0.0.6 + ob1@0.80.8: {} object-assign@4.1.1: {} @@ -58250,11 +74883,11 @@ snapshots: octokit-auth-probot@2.0.0(@octokit/core@5.1.0): dependencies: - '@octokit/auth-app': 6.1.1 - '@octokit/auth-token': 4.0.0 - '@octokit/auth-unauthenticated': 5.0.1 - '@octokit/core': 5.1.0 - '@octokit/types': 12.6.0 + "@octokit/auth-app": 6.1.1 + "@octokit/auth-token": 4.0.0 + "@octokit/auth-unauthenticated": 5.0.1 + "@octokit/core": 5.1.0 + "@octokit/types": 12.6.0 ohash@1.1.3: {} @@ -58313,9 +74946,9 @@ snapshots: opentelemetry-instrumentation-fetch-node@1.2.0: dependencies: - '@opentelemetry/api': 1.9.0 - '@opentelemetry/instrumentation': 0.43.0(@opentelemetry/api@1.9.0) - '@opentelemetry/semantic-conventions': 1.25.1 + "@opentelemetry/api": 1.9.0 + "@opentelemetry/instrumentation": 0.43.0(@opentelemetry/api@1.9.0) + "@opentelemetry/semantic-conventions": 1.25.1 transitivePeerDependencies: - supports-color optional: true @@ -58331,7 +74964,7 @@ snapshots: optionator@0.9.3: dependencies: - '@aashutoshrathi/word-wrap': 1.2.6 + "@aashutoshrathi/word-wrap": 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 @@ -58428,12 +75061,12 @@ snapshots: p-retry@4.6.2: dependencies: - '@types/retry': 0.12.0 + "@types/retry": 0.12.0 retry: 0.13.1 p-retry@6.2.0: dependencies: - '@types/retry': 0.12.2 + "@types/retry": 0.12.2 is-network-error: 1.1.0 retry: 0.13.1 @@ -58481,7 +75114,7 @@ snapshots: parse-entities@4.0.1: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 character-entities: 2.0.2 character-entities-legacy: 3.0.0 character-reference-invalid: 2.0.1 @@ -58505,7 +75138,7 @@ snapshots: parse-json@5.2.0: dependencies: - '@babel/code-frame': 7.24.6 + "@babel/code-frame": 7.24.6 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -58632,7 +75265,7 @@ snapshots: periscopic@3.1.0: dependencies: - '@types/estree': 1.0.5 + "@types/estree": 1.0.5 estree-walker: 3.0.3 is-reference: 3.0.2 @@ -58686,7 +75319,7 @@ snapshots: pino-pretty@6.0.0: dependencies: - '@hapi/bourne': 2.1.0 + "@hapi/bourne": 2.1.0 args: 5.0.3 colorette: 1.4.0 dateformat: 4.6.3 @@ -58766,7 +75399,7 @@ snapshots: plist@3.1.0: dependencies: - '@xmldom/xmldom': 0.8.10 + "@xmldom/xmldom": 0.8.10 base64-js: 1.5.1 xmlbuilder: 15.1.1 @@ -58776,7 +75409,7 @@ snapshots: polished@4.3.1: dependencies: - '@babel/runtime': 7.25.0 + "@babel/runtime": 7.25.0 portfinder@1.0.32: dependencies: @@ -58926,13 +75559,13 @@ snapshots: postcss-double-position-gradients@3.1.2(postcss@8.4.32): dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32) + "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.32) postcss: 8.4.32 postcss-value-parser: 4.2.0 postcss-double-position-gradients@3.1.2(postcss@8.4.38): dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.38) + "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.38) postcss: 8.4.38 postcss-value-parser: 4.2.0 @@ -59022,13 +75655,13 @@ snapshots: postcss-lab-function@4.2.1(postcss@8.4.32): dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32) + "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.32) postcss: 8.4.32 postcss-value-parser: 4.2.0 postcss-lab-function@4.2.1(postcss@8.4.38): dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.38) + "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.38) postcss: 8.4.38 postcss-value-parser: 4.2.0 @@ -59154,13 +75787,13 @@ snapshots: postcss-nesting@10.2.0(postcss@8.4.32): dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.16) + "@csstools/selector-specificity": 2.2.0(postcss-selector-parser@6.0.16) postcss: 8.4.32 postcss-selector-parser: 6.0.16 postcss-nesting@10.2.0(postcss@8.4.38): dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.16) + "@csstools/selector-specificity": 2.2.0(postcss-selector-parser@6.0.16) postcss: 8.4.38 postcss-selector-parser: 6.0.16 @@ -59212,7 +75845,7 @@ snapshots: postcss-normalize@10.0.1(browserslist@4.23.0)(postcss@8.4.32): dependencies: - '@csstools/normalize.css': 12.1.1 + "@csstools/normalize.css": 12.1.1 browserslist: 4.23.0 postcss: 8.4.32 postcss-browser-comments: 4.0.0(browserslist@4.23.0)(postcss@8.4.32) @@ -59220,7 +75853,7 @@ snapshots: postcss-normalize@10.0.1(browserslist@4.23.0)(postcss@8.4.38): dependencies: - '@csstools/normalize.css': 12.1.1 + "@csstools/normalize.css": 12.1.1 browserslist: 4.23.0 postcss: 8.4.38 postcss-browser-comments: 4.0.0(browserslist@4.23.0)(postcss@8.4.38) @@ -59270,20 +75903,20 @@ snapshots: postcss-preset-env@7.8.3(postcss@8.4.32): dependencies: - '@csstools/postcss-cascade-layers': 1.1.1(postcss@8.4.32) - '@csstools/postcss-color-function': 1.1.1(postcss@8.4.32) - '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.32) - '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.32) - '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.32) - '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.32) - '@csstools/postcss-nested-calc': 1.0.0(postcss@8.4.32) - '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.32) - '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.32) - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32) - '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.32) - '@csstools/postcss-text-decoration-shorthand': 1.0.0(postcss@8.4.32) - '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.32) - '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.32) + "@csstools/postcss-cascade-layers": 1.1.1(postcss@8.4.32) + "@csstools/postcss-color-function": 1.1.1(postcss@8.4.32) + "@csstools/postcss-font-format-keywords": 1.0.1(postcss@8.4.32) + "@csstools/postcss-hwb-function": 1.0.2(postcss@8.4.32) + "@csstools/postcss-ic-unit": 1.0.1(postcss@8.4.32) + "@csstools/postcss-is-pseudo-class": 2.0.7(postcss@8.4.32) + "@csstools/postcss-nested-calc": 1.0.0(postcss@8.4.32) + "@csstools/postcss-normalize-display-values": 1.0.1(postcss@8.4.32) + "@csstools/postcss-oklab-function": 1.1.1(postcss@8.4.32) + "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.32) + "@csstools/postcss-stepped-value-functions": 1.0.1(postcss@8.4.32) + "@csstools/postcss-text-decoration-shorthand": 1.0.0(postcss@8.4.32) + "@csstools/postcss-trigonometric-functions": 1.0.2(postcss@8.4.32) + "@csstools/postcss-unset-value": 1.0.2(postcss@8.4.32) autoprefixer: 10.4.19(postcss@8.4.32) browserslist: 4.23.0 css-blank-pseudo: 3.0.3(postcss@8.4.32) @@ -59323,20 +75956,20 @@ snapshots: postcss-preset-env@7.8.3(postcss@8.4.38): dependencies: - '@csstools/postcss-cascade-layers': 1.1.1(postcss@8.4.38) - '@csstools/postcss-color-function': 1.1.1(postcss@8.4.38) - '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.38) - '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.38) - '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.38) - '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.38) - '@csstools/postcss-nested-calc': 1.0.0(postcss@8.4.38) - '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.38) - '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.38) - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.38) - '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.38) - '@csstools/postcss-text-decoration-shorthand': 1.0.0(postcss@8.4.38) - '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.38) - '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.38) + "@csstools/postcss-cascade-layers": 1.1.1(postcss@8.4.38) + "@csstools/postcss-color-function": 1.1.1(postcss@8.4.38) + "@csstools/postcss-font-format-keywords": 1.0.1(postcss@8.4.38) + "@csstools/postcss-hwb-function": 1.0.2(postcss@8.4.38) + "@csstools/postcss-ic-unit": 1.0.1(postcss@8.4.38) + "@csstools/postcss-is-pseudo-class": 2.0.7(postcss@8.4.38) + "@csstools/postcss-nested-calc": 1.0.0(postcss@8.4.38) + "@csstools/postcss-normalize-display-values": 1.0.1(postcss@8.4.38) + "@csstools/postcss-oklab-function": 1.1.1(postcss@8.4.38) + "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.38) + "@csstools/postcss-stepped-value-functions": 1.0.1(postcss@8.4.38) + "@csstools/postcss-text-decoration-shorthand": 1.0.0(postcss@8.4.38) + "@csstools/postcss-trigonometric-functions": 1.0.2(postcss@8.4.38) + "@csstools/postcss-unset-value": 1.0.2(postcss@8.4.38) autoprefixer: 10.4.19(postcss@8.4.38) browserslist: 4.23.0 css-blank-pseudo: 3.0.3(postcss@8.4.38) @@ -59523,9 +76156,16 @@ snapshots: lodash: 4.17.21 renderkid: 3.0.0 + pretty-format@24.9.0: + dependencies: + "@jest/types": 24.9.0 + ansi-regex: 4.1.1 + ansi-styles: 3.2.1 + react-is: 16.13.1 + pretty-format@26.6.2: dependencies: - '@jest/types': 26.6.2 + "@jest/types": 26.6.2 ansi-regex: 5.0.1 ansi-styles: 4.3.0 react-is: 17.0.2 @@ -59538,14 +76178,14 @@ snapshots: pretty-format@28.1.3: dependencies: - '@jest/schemas': 28.1.3 + "@jest/schemas": 28.1.3 ansi-regex: 5.0.1 ansi-styles: 5.2.0 react-is: 18.2.0 pretty-format@29.7.0: dependencies: - '@jest/schemas': 29.6.3 + "@jest/schemas": 29.6.3 ansi-styles: 5.2.0 react-is: 18.2.0 @@ -59553,19 +76193,19 @@ snapshots: probot@13.2.2: dependencies: - '@octokit/core': 5.1.0 - '@octokit/plugin-enterprise-compatibility': 4.1.0 - '@octokit/plugin-paginate-rest': 9.2.1(@octokit/core@5.1.0) - '@octokit/plugin-rest-endpoint-methods': 10.4.1(@octokit/core@5.1.0) - '@octokit/plugin-retry': 6.0.1(@octokit/core@5.1.0) - '@octokit/plugin-throttling': 8.2.0(@octokit/core@5.1.0) - '@octokit/request': 8.2.0 - '@octokit/types': 12.6.0 - '@octokit/webhooks': 12.2.0 - '@probot/get-private-key': 1.1.2 - '@probot/octokit-plugin-config': 2.0.1(@octokit/core@5.1.0) - '@probot/pino': 2.3.5 - '@types/express': 4.17.21 + "@octokit/core": 5.1.0 + "@octokit/plugin-enterprise-compatibility": 4.1.0 + "@octokit/plugin-paginate-rest": 9.2.1(@octokit/core@5.1.0) + "@octokit/plugin-rest-endpoint-methods": 10.4.1(@octokit/core@5.1.0) + "@octokit/plugin-retry": 6.0.1(@octokit/core@5.1.0) + "@octokit/plugin-throttling": 8.2.0(@octokit/core@5.1.0) + "@octokit/request": 8.2.0 + "@octokit/types": 12.6.0 + "@octokit/webhooks": 12.2.0 + "@probot/get-private-key": 1.1.2 + "@probot/octokit-plugin-config": 2.0.1(@octokit/core@5.1.0) + "@probot/pino": 2.3.5 + "@types/express": 4.17.21 bottleneck: 2.19.5 commander: 12.0.0 deepmerge: 4.3.1 @@ -59676,80 +76316,80 @@ snapshots: protobufjs@6.10.3: dependencies: - '@protobufjs/aspromise': 1.1.2 - '@protobufjs/base64': 1.1.2 - '@protobufjs/codegen': 2.0.4 - '@protobufjs/eventemitter': 1.1.0 - '@protobufjs/fetch': 1.1.0 - '@protobufjs/float': 1.0.2 - '@protobufjs/inquire': 1.1.0 - '@protobufjs/path': 1.1.2 - '@protobufjs/pool': 1.1.0 - '@protobufjs/utf8': 1.1.0 - '@types/long': 4.0.2 - '@types/node': 13.13.52 + "@protobufjs/aspromise": 1.1.2 + "@protobufjs/base64": 1.1.2 + "@protobufjs/codegen": 2.0.4 + "@protobufjs/eventemitter": 1.1.0 + "@protobufjs/fetch": 1.1.0 + "@protobufjs/float": 1.0.2 + "@protobufjs/inquire": 1.1.0 + "@protobufjs/path": 1.1.2 + "@protobufjs/pool": 1.1.0 + "@protobufjs/utf8": 1.1.0 + "@types/long": 4.0.2 + "@types/node": 13.13.52 long: 4.0.0 protobufjs@6.11.3: dependencies: - '@protobufjs/aspromise': 1.1.2 - '@protobufjs/base64': 1.1.2 - '@protobufjs/codegen': 2.0.4 - '@protobufjs/eventemitter': 1.1.0 - '@protobufjs/fetch': 1.1.0 - '@protobufjs/float': 1.0.2 - '@protobufjs/inquire': 1.1.0 - '@protobufjs/path': 1.1.2 - '@protobufjs/pool': 1.1.0 - '@protobufjs/utf8': 1.1.0 - '@types/long': 4.0.2 - '@types/node': 20.12.12 + "@protobufjs/aspromise": 1.1.2 + "@protobufjs/base64": 1.1.2 + "@protobufjs/codegen": 2.0.4 + "@protobufjs/eventemitter": 1.1.0 + "@protobufjs/fetch": 1.1.0 + "@protobufjs/float": 1.0.2 + "@protobufjs/inquire": 1.1.0 + "@protobufjs/path": 1.1.2 + "@protobufjs/pool": 1.1.0 + "@protobufjs/utf8": 1.1.0 + "@types/long": 4.0.2 + "@types/node": 20.12.12 long: 4.0.0 protobufjs@6.11.4: dependencies: - '@protobufjs/aspromise': 1.1.2 - '@protobufjs/base64': 1.1.2 - '@protobufjs/codegen': 2.0.4 - '@protobufjs/eventemitter': 1.1.0 - '@protobufjs/fetch': 1.1.0 - '@protobufjs/float': 1.0.2 - '@protobufjs/inquire': 1.1.0 - '@protobufjs/path': 1.1.2 - '@protobufjs/pool': 1.1.0 - '@protobufjs/utf8': 1.1.0 - '@types/long': 4.0.2 - '@types/node': 20.12.12 + "@protobufjs/aspromise": 1.1.2 + "@protobufjs/base64": 1.1.2 + "@protobufjs/codegen": 2.0.4 + "@protobufjs/eventemitter": 1.1.0 + "@protobufjs/fetch": 1.1.0 + "@protobufjs/float": 1.0.2 + "@protobufjs/inquire": 1.1.0 + "@protobufjs/path": 1.1.2 + "@protobufjs/pool": 1.1.0 + "@protobufjs/utf8": 1.1.0 + "@types/long": 4.0.2 + "@types/node": 20.12.12 long: 4.0.0 protobufjs@7.2.5: dependencies: - '@protobufjs/aspromise': 1.1.2 - '@protobufjs/base64': 1.1.2 - '@protobufjs/codegen': 2.0.4 - '@protobufjs/eventemitter': 1.1.0 - '@protobufjs/fetch': 1.1.0 - '@protobufjs/float': 1.0.2 - '@protobufjs/inquire': 1.1.0 - '@protobufjs/path': 1.1.2 - '@protobufjs/pool': 1.1.0 - '@protobufjs/utf8': 1.1.0 - '@types/node': 20.12.12 + "@protobufjs/aspromise": 1.1.2 + "@protobufjs/base64": 1.1.2 + "@protobufjs/codegen": 2.0.4 + "@protobufjs/eventemitter": 1.1.0 + "@protobufjs/fetch": 1.1.0 + "@protobufjs/float": 1.0.2 + "@protobufjs/inquire": 1.1.0 + "@protobufjs/path": 1.1.2 + "@protobufjs/pool": 1.1.0 + "@protobufjs/utf8": 1.1.0 + "@types/node": 20.12.12 long: 5.2.3 protobufjs@7.3.2: dependencies: - '@protobufjs/aspromise': 1.1.2 - '@protobufjs/base64': 1.1.2 - '@protobufjs/codegen': 2.0.4 - '@protobufjs/eventemitter': 1.1.0 - '@protobufjs/fetch': 1.1.0 - '@protobufjs/float': 1.0.2 - '@protobufjs/inquire': 1.1.0 - '@protobufjs/path': 1.1.2 - '@protobufjs/pool': 1.1.0 - '@protobufjs/utf8': 1.1.0 - '@types/node': 20.12.12 + "@protobufjs/aspromise": 1.1.2 + "@protobufjs/base64": 1.1.2 + "@protobufjs/codegen": 2.0.4 + "@protobufjs/eventemitter": 1.1.0 + "@protobufjs/fetch": 1.1.0 + "@protobufjs/float": 1.0.2 + "@protobufjs/inquire": 1.1.0 + "@protobufjs/path": 1.1.2 + "@protobufjs/pool": 1.1.0 + "@protobufjs/utf8": 1.1.0 + "@types/node": 20.12.12 long: 5.2.3 protocols@2.0.1: {} @@ -59814,7 +76454,7 @@ snapshots: puppeteer-core@2.1.1: dependencies: - '@types/mime-types': 2.1.4 + "@types/mime-types": 2.1.4 debug: 4.3.4 extract-zip: 1.7.0 https-proxy-agent: 4.0.0 @@ -59878,6 +76518,8 @@ snapshots: querystring-es3@0.2.1: {} + querystring@0.2.1: {} + querystringify@2.2.0: {} queue-microtask@1.2.3: {} @@ -59948,7 +76590,7 @@ snapshots: react-dev-utils@12.0.1(eslint@8.57.0)(typescript@5.4.3)(webpack@5.94.0): dependencies: - '@babel/code-frame': 7.24.6 + "@babel/code-frame": 7.24.6 address: 1.2.2 browserslist: 4.23.0 chalk: 4.1.2 @@ -59980,7 +76622,7 @@ snapshots: - supports-color - vue-template-compiler - react-devtools-core@4.28.5: + react-devtools-core@5.3.1: dependencies: shell-quote: 1.8.1 ws: 7.5.10 @@ -59998,13 +76640,13 @@ snapshots: react-docgen@7.0.3: dependencies: - '@babel/core': 7.24.3 - '@babel/traverse': 7.24.1 - '@babel/types': 7.24.0 - '@types/babel__core': 7.20.5 - '@types/babel__traverse': 7.20.5 - '@types/doctrine': 0.0.9 - '@types/resolve': 1.20.6 + "@babel/core": 7.24.3 + "@babel/traverse": 7.24.1 + "@babel/types": 7.24.0 + "@types/babel__core": 7.20.5 + "@types/babel__traverse": 7.20.5 + "@types/doctrine": 0.0.9 + "@types/resolve": 1.20.6 doctrine: 3.0.0 resolve: 1.22.8 strip-indent: 4.0.0 @@ -60039,7 +76681,7 @@ snapshots: react-element-to-jsx-string@15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@base2/pretty-print-object': 1.0.1 + "@base2/pretty-print-object": 1.0.1 is-plain-object: 5.0.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -60051,18 +76693,18 @@ snapshots: dependencies: react: 18.2.0 - react-i18next@11.18.6(i18next@20.6.1)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-i18next@11.18.6(i18next@20.6.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.24.1 html-parse-stringify: 3.0.1 i18next: 20.6.1 react: 18.2.0 optionalDependencies: - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) react-i18next@13.5.0(i18next@23.10.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.24.1 html-parse-stringify: 3.0.1 i18next: 23.10.1 react: 18.2.0 @@ -60076,7 +76718,7 @@ snapshots: react-inspector@4.0.1(react@18.3.1): dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.24.1 is-dom: 1.1.0 prop-types: 15.8.1 react: 18.3.1 @@ -60133,46 +76775,46 @@ snapshots: react-native-adjust@4.38.0: {} - react-native-android-location-services-dialog-box@2.8.2(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)): + react-native-android-location-services-dialog-box@2.8.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)): dependencies: - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-animatable@1.3.3(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0): + react-native-animatable@1.3.3(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0): dependencies: prop-types: 15.8.1 optionalDependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) - react-native-animatable@1.3.3(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-animatable@1.3.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: prop-types: 15.8.1 optionalDependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-animatable@1.4.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-animatable@1.4.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: prop-types: 15.8.1 optionalDependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-biometrics@3.0.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)): + react-native-biometrics@3.0.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)): dependencies: - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) react-native-ble-plx@3.1.2: dependencies: - '@expo/config-plugins': 7.8.4 + "@expo/config-plugins": 7.8.4 transitivePeerDependencies: - supports-color - react-native-ble-plx@3.1.2(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-ble-plx@3.1.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - '@expo/config-plugins': 7.8.4 + "@expo/config-plugins": 7.8.4 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) transitivePeerDependencies: - supports-color @@ -60185,9 +76827,9 @@ snapshots: open: 8.4.2 source-map-explorer: 2.5.3 - react-native-config@1.5.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)): + react-native-config@1.5.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)): optionalDependencies: - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) react-native-crypto@2.2.0(react-native-randombytes@3.6.1): dependencies: @@ -60210,247 +76852,231 @@ snapshots: minimist: 1.2.8 semver: 5.7.2 - react-native-device-info@11.1.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)): + react-native-device-info@11.1.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)): dependencies: - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-easy-markdown@2.0.0(prop-types@15.8.1)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)): + react-native-easy-markdown@2.0.0(prop-types@15.8.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)): dependencies: - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) simple-markdown: 0.4.4 optionalDependencies: prop-types: 15.8.1 react-native-extra-dimensions-android@1.2.5: {} - react-native-fast-crypto@2.2.0(patch_hash=jdmv3zyvsaug2f6l23zgrmwdli)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)): + react-native-fast-crypto@2.2.0(patch_hash=jdmv3zyvsaug2f6l23zgrmwdli)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)): dependencies: buffer: 5.7.1 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) rfc4648: 1.5.3 - react-native-fast-image@8.6.3(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-fast-image@8.6.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-fast-pbkdf2@0.3.1(patch_hash=hsxraxacbj7ixutjkwcickkwma)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-fast-pbkdf2@0.3.1(patch_hash=hsxraxacbj7ixutjkwcickkwma)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-flipper-performance-plugin@0.4.0: {} - - react-native-flipper@0.163.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) - - react-native-gesture-handler@2.16.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): - dependencies: - '@egjs/hammerjs': 2.0.17 + "@egjs/hammerjs": 2.0.17 hoist-non-react-statics: 3.3.2 invariant: 2.2.4 lodash: 4.17.21 prop-types: 15.8.1 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) react-native-get-random-values@1.11.0: dependencies: fast-base64-decode: 1.0.0 - react-native-get-random-values@1.11.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)): + react-native-get-random-values@1.11.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)): dependencies: fast-base64-decode: 1.0.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-haptic-feedback@2.2.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)): + react-native-haptic-feedback@2.2.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)): dependencies: - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-image-crop-tools@1.6.4(patch_hash=p6wzwon3gzjcspjalwhmuroog4)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-image-crop-tools@1.6.4(patch_hash=p6wzwon3gzjcspjalwhmuroog4)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-image-picker@5.7.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-image-picker@5.7.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-inappbrowser-reborn@3.7.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)): + react-native-inappbrowser-reborn@3.7.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)): dependencies: invariant: 2.2.4 opencollective-postinstall: 2.0.3 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-iphone-x-helper@1.3.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)): + react-native-iphone-x-helper@1.3.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)): dependencies: - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-keyboard-aware-scroll-view@0.9.5(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)): + react-native-keyboard-aware-scroll-view@0.9.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)): dependencies: prop-types: 15.8.1 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) - react-native-iphone-x-helper: 1.3.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) + react-native-iphone-x-helper: 1.3.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) react-native-keychain@7.0.0: {} - react-native-launch-arguments@4.0.2(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-launch-arguments@4.0.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-level-fs@3.0.1(asyncstorage-down@4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)))): + react-native-level-fs@3.0.1(asyncstorage-down@4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)))): dependencies: - asyncstorage-down: 4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))) + asyncstorage-down: 4.2.0(patch_hash=2npkndps6fxdasqj3xzcrnnfbe)(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))) level-filesystem: 1.2.0 levelup: 0.18.6 - react-native-localize@2.2.6(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-localize@2.2.6(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-modal-datetime-picker@14.0.1(@react-native-community/datetimepicker@6.7.5)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0)): + react-native-modal-datetime-picker@14.0.1(@react-native-community/datetimepicker@6.7.5)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0)): dependencies: - '@react-native-community/datetimepicker': 6.7.5 + "@react-native-community/datetimepicker": 6.7.5 prop-types: 15.8.1 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) react-native-modal-selector@2.1.2: dependencies: prop-types: 15.8.1 - react-native-modal@13.0.1(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0): + react-native-modal@13.0.1(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0): dependencies: prop-types: 15.8.1 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) - react-native-animatable: 1.3.3(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) + react-native-animatable: 1.3.3(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) - react-native-modal@13.0.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-modal@13.0.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: prop-types: 15.8.1 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) - react-native-animatable: 1.3.3(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) + react-native-animatable: 1.3.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-navigation-bar-color@2.0.2: {} - react-native-pager-view@6.3.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-performance-flipper-reporter@3.0.0(react-native-flipper@0.163.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native-performance@3.1.2(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))): + react-native-performance@3.1.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)): dependencies: - react-native-flipper: 0.163.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - react-native-performance: 3.1.2(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-performance@3.1.2(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)): - dependencies: - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) - - react-native-qrcode-svg@6.1.1(react-native-svg@13.14.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-qrcode-svg@6.1.1(react-native-svg@13.14.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: prop-types: 15.8.1 qrcode: 1.5.3 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) - react-native-svg: 13.14.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) + react-native-svg: 13.14.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-randombytes@3.6.1: dependencies: buffer: 4.9.2 sjcl: 1.0.8 - react-native-reanimated@3.8.1(@babel/core@7.24.3)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0): + react-native-reanimated@3.8.1(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0): dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.3) - '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-nullish-coalescing-operator": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-optional-chaining": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-template-literals": 7.24.1(@babel/core@7.24.3) + "@babel/preset-typescript": 7.24.1(@babel/core@7.24.3) convert-source-map: 2.0.0 invariant: 2.2.4 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) - react-native-reanimated@3.8.1(@babel/core@7.24.3)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-reanimated@3.9.0(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - '@babel/core': 7.24.3 - '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) - '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.3) - '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) + "@babel/core": 7.24.3 + "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-nullish-coalescing-operator": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-optional-chaining": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) + "@babel/plugin-transform-template-literals": 7.24.1(@babel/core@7.24.3) + "@babel/preset-typescript": 7.24.1(@babel/core@7.24.3) convert-source-map: 2.0.0 invariant: 2.2.4 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-restart@0.0.24(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-restart@0.0.24(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0): + react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-safe-area-context@4.9.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-safe-area-context@4.10.9(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) - react-native-screens@3.30.1(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 react-freeze: 1.0.4(react@18.2.0) - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) warn-once: 0.1.1 react-native-share@10.1.0: {} - react-native-slider@0.11.0: - dependencies: - prop-types: 15.8.1 - - react-native-splash-screen@3.2.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)): + react-native-splash-screen@3.2.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)): dependencies: - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-startup-time@2.1.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-startup-time@2.1.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - react-native-svg@13.14.0(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0): + react-native-svg@13.14.0(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: css-select: 5.1.0 css-tree: 1.1.3 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.5(@types/react@18.2.73)(react@18.2.0) - react-native-svg@13.14.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-svg@13.14.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0): dependencies: css-select: 5.1.0 css-tree: 1.1.3 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) - react-native-svg@13.14.0(react-native@0.73.6(react@18.2.0))(react@18.2.0): + react-native-svg@13.14.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: css-select: 5.1.0 css-tree: 1.1.3 react: 18.2.0 - react-native: 0.73.6(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) react-native-svg@13.14.0(react@18.2.0): dependencies: @@ -60460,30 +77086,30 @@ snapshots: react-native-swipe-gestures@1.0.5: {} - react-native-tab-view@3.5.2(react-native-pager-view@6.3.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-tab-view@3.5.2(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) - react-native-pager-view: 6.3.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) + react-native-pager-view: 6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) use-latest-callback: 0.1.9(react@18.2.0) - react-native-tcp-socket@6.0.6(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)): + react-native-tcp-socket@6.0.6(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)): dependencies: buffer: 5.7.1 eventemitter3: 4.0.7 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) react-native-udp@4.1.7: dependencies: buffer: 5.7.1 events: 3.3.0 - react-native-url-polyfill@1.3.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)): + react-native-url-polyfill@1.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)): dependencies: - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) whatwg-url-without-unicode: 8.0.0-3 - react-native-vector-icons@10.0.3: + react-native-vector-icons@10.2.0: dependencies: prop-types: 15.8.1 yargs: 16.2.0 @@ -60499,8 +77125,8 @@ snapshots: react-native-web@0.19.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@babel/runtime': 7.24.1 - '@react-native/normalize-color': 2.1.0 + "@babel/runtime": 7.24.1 + "@react-native/normalize-color": 2.1.0 fbjs: 3.0.5 inline-style-prefixer: 6.0.4 memoize-one: 6.0.0 @@ -60512,32 +77138,31 @@ snapshots: transitivePeerDependencies: - encoding - react-native-webview@13.10.3(patch_hash=42avlvajmp3nsjxv67iugfa7uq)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + react-native-webview@13.10.3(patch_hash=42avlvajmp3nsjxv67iugfa7uq)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: escape-string-regexp: 2.0.0 invariant: 2.2.4 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) - - react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0): - dependencies: - '@jest/create-cache-key-function': 29.7.0 - '@react-native-community/cli': 12.3.6(metro-resolver@0.80.8) - '@react-native-community/cli-platform-android': 12.3.6 - '@react-native-community/cli-platform-ios': 12.3.6 - '@react-native/assets-registry': 0.73.1 - '@react-native/codegen': 0.73.3(@babel/preset-env@7.24.3(@babel/core@7.24.3)) - '@react-native/community-cli-plugin': 0.73.17(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-transform-worker@0.80.8) - '@react-native/gradle-plugin': 0.73.4 - '@react-native/js-polyfills': 0.73.1 - '@react-native/normalize-colors': 0.73.2 - '@react-native/virtualized-lists': 0.73.4(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0)) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) + + react-native@0.74.5(@types/react@18.2.73)(react@18.2.0): + dependencies: + "@jest/create-cache-key-function": 29.7.0 + "@react-native-community/cli": 13.6.9 + "@react-native-community/cli-platform-android": 13.6.9 + "@react-native-community/cli-platform-ios": 13.6.9 + "@react-native/assets-registry": 0.74.87 + "@react-native/codegen": 0.74.87 + "@react-native/community-cli-plugin": 0.74.87 + "@react-native/gradle-plugin": 0.74.87 + "@react-native/js-polyfills": 0.74.87 + "@react-native/normalize-colors": 0.74.87 + "@react-native/virtualized-lists": 0.74.87(@types/react@18.2.73)(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 base64-js: 1.5.1 chalk: 4.1.2 - deprecated-react-native-prop-types: 5.0.0 event-target-shim: 5.0.1 flow-enums-runtime: 0.0.6 invariant: 2.2.4 @@ -60551,7 +77176,7 @@ snapshots: pretty-format: 26.6.2 promise: 8.3.0 react: 18.2.0 - react-devtools-core: 4.28.5 + react-devtools-core: 5.3.1 react-refresh: 0.14.0 react-shallow-renderer: 16.15.0(react@18.2.0) regenerator-runtime: 0.13.11 @@ -60560,9 +77185,10 @@ snapshots: whatwg-fetch: 3.6.20 ws: 6.2.3 yargs: 17.7.2 + optionalDependencies: + "@types/react": 18.2.73 transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' + - "@babel/preset-env" - bufferutil - encoding - metro-resolver @@ -60570,27 +77196,27 @@ snapshots: - supports-color - utf-8-validate - react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0): - dependencies: - '@jest/create-cache-key-function': 29.7.0 - '@react-native-community/cli': 12.3.6 - '@react-native-community/cli-platform-android': 12.3.6 - '@react-native-community/cli-platform-ios': 12.3.6 - '@react-native/assets-registry': 0.73.1 - '@react-native/codegen': 0.73.3 - '@react-native/community-cli-plugin': 0.73.17(@babel/core@7.24.3) - '@react-native/gradle-plugin': 0.73.4 - '@react-native/js-polyfills': 0.73.1 - '@react-native/normalize-colors': 0.73.2 - '@react-native/virtualized-lists': 0.73.4(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0)) + react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0): + dependencies: + "@jest/create-cache-key-function": 29.7.0 + "@react-native-community/cli": 13.6.9(metro-resolver@0.80.12) + "@react-native-community/cli-platform-android": 13.6.9 + "@react-native-community/cli-platform-ios": 13.6.9 + "@react-native/assets-registry": 0.74.88 + "@react-native/codegen": 0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + "@react-native/community-cli-plugin": 0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-transform-worker@0.80.12) + "@react-native/gradle-plugin": 0.74.88 + "@react-native/js-polyfills": 0.74.88 + "@react-native/normalize-colors": 0.74.88 + "@react-native/virtualized-lists": 0.74.88(@types/react@18.2.73)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 base64-js: 1.5.1 chalk: 4.1.2 - deprecated-react-native-prop-types: 5.0.0 event-target-shim: 5.0.1 flow-enums-runtime: 0.0.6 + glob: 7.2.3 invariant: 2.2.4 jest-environment-node: 29.7.0 jsc-android: 250231.0.0 @@ -60602,7 +77228,7 @@ snapshots: pretty-format: 26.6.2 promise: 8.3.0 react: 18.2.0 - react-devtools-core: 4.28.5 + react-devtools-core: 5.3.1 react-refresh: 0.14.0 react-shallow-renderer: 16.15.0(react@18.2.0) regenerator-runtime: 0.13.11 @@ -60611,9 +77237,11 @@ snapshots: whatwg-fetch: 3.6.20 ws: 6.2.3 yargs: 17.7.2 + optionalDependencies: + "@types/react": 18.2.73 transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' + - "@babel/core" + - "@babel/preset-env" - bufferutil - encoding - metro-resolver @@ -60621,27 +77249,27 @@ snapshots: - supports-color - utf-8-validate - react-native@0.73.6(react@18.2.0): - dependencies: - '@jest/create-cache-key-function': 29.7.0 - '@react-native-community/cli': 12.3.6 - '@react-native-community/cli-platform-android': 12.3.6 - '@react-native-community/cli-platform-ios': 12.3.6 - '@react-native/assets-registry': 0.73.1 - '@react-native/codegen': 0.73.3 - '@react-native/community-cli-plugin': 0.73.17 - '@react-native/gradle-plugin': 0.73.4 - '@react-native/js-polyfills': 0.73.1 - '@react-native/normalize-colors': 0.73.2 - '@react-native/virtualized-lists': 0.73.4(react-native@0.73.6(react@18.2.0)) + react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0): + dependencies: + "@jest/create-cache-key-function": 29.7.0 + "@react-native-community/cli": 13.6.9 + "@react-native-community/cli-platform-android": 13.6.9 + "@react-native-community/cli-platform-ios": 13.6.9 + "@react-native/assets-registry": 0.74.88 + "@react-native/codegen": 0.74.88 + "@react-native/community-cli-plugin": 0.74.88(@babel/core@7.24.3) + "@react-native/gradle-plugin": 0.74.88 + "@react-native/js-polyfills": 0.74.88 + "@react-native/normalize-colors": 0.74.88 + "@react-native/virtualized-lists": 0.74.88(@types/react@18.2.73)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 base64-js: 1.5.1 chalk: 4.1.2 - deprecated-react-native-prop-types: 5.0.0 event-target-shim: 5.0.1 flow-enums-runtime: 0.0.6 + glob: 7.2.3 invariant: 2.2.4 jest-environment-node: 29.7.0 jsc-android: 250231.0.0 @@ -60653,7 +77281,7 @@ snapshots: pretty-format: 26.6.2 promise: 8.3.0 react: 18.2.0 - react-devtools-core: 4.28.5 + react-devtools-core: 5.3.1 react-refresh: 0.14.0 react-shallow-renderer: 16.15.0(react@18.2.0) regenerator-runtime: 0.13.11 @@ -60662,9 +77290,11 @@ snapshots: whatwg-fetch: 3.6.20 ws: 6.2.3 yargs: 17.7.2 + optionalDependencies: + "@types/react": 18.2.73 transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' + - "@babel/core" + - "@babel/preset-env" - bufferutil - encoding - metro-resolver @@ -60681,8 +77311,8 @@ snapshots: react-redux@7.2.9(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@babel/runtime': 7.24.1 - '@types/react-redux': 7.1.33(@types/react@18.2.73) + "@babel/runtime": 7.24.1 + "@types/react-redux": 7.1.33(@types/react@18.2.73) hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -60691,19 +77321,19 @@ snapshots: optionalDependencies: react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - - '@types/react' + - "@types/react" react-redux@7.2.9(@types/react@18.2.73)(react@18.2.0): dependencies: - '@babel/runtime': 7.24.1 - '@types/react-redux': 7.1.33(@types/react@18.2.73) + "@babel/runtime": 7.24.1 + "@types/react-redux": 7.1.33(@types/react@18.2.73) hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 prop-types: 15.8.1 react: 18.2.0 react-is: 17.0.2 transitivePeerDependencies: - - '@types/react' + - "@types/react" react-refresh@0.10.0: {} @@ -60711,6 +77341,8 @@ snapshots: react-refresh@0.14.0: {} + react-refresh@0.14.2: {} + react-refresh@0.4.3: {} react-remove-scroll-bar@2.3.6(@types/react@18.2.73)(react@18.2.0): @@ -60719,7 +77351,7 @@ snapshots: react-style-singleton: 2.2.1(@types/react@18.2.73)(react@18.2.0) tslib: 2.6.2 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 react-remove-scroll@2.5.5(@types/react@18.2.73)(react@18.2.0): dependencies: @@ -60730,11 +77362,11 @@ snapshots: use-callback-ref: 1.3.2(@types/react@18.2.73)(react@18.2.0) use-sidecar: 1.1.2(@types/react@18.2.73)(react@18.2.0) optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 react-router-dom@5.3.4(react@18.2.0): dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.24.1 history: 4.10.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -60745,7 +77377,7 @@ snapshots: react-router@5.3.4(react@18.2.0): dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.24.1 history: 4.10.1 hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 @@ -60758,9 +77390,9 @@ snapshots: react-scripts@5.0.1(react@18.2.0)(typescript@5.4.3): dependencies: - '@babel/core': 7.24.3 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.11.0)(webpack-dev-server@4.15.2(webpack@5.94.0))(webpack@5.94.0) - '@svgr/webpack': 5.5.0 + "@babel/core": 7.24.3 + "@pmmmwh/react-refresh-webpack-plugin": 0.5.11(react-refresh@0.11.0)(webpack-dev-server@4.15.2(webpack@5.94.0))(webpack@5.94.0) + "@svgr/webpack": 5.5.0 babel-jest: 27.5.1(@babel/core@7.24.3) babel-loader: 8.3.0(@babel/core@7.24.3)(webpack@5.94.0) babel-plugin-named-asset-import: 0.3.8(@babel/core@7.24.3) @@ -60810,13 +77442,13 @@ snapshots: fsevents: 2.3.3 typescript: 5.4.3 transitivePeerDependencies: - - '@babel/plugin-syntax-flow' - - '@babel/plugin-transform-react-jsx' - - '@parcel/css' - - '@rspack/core' - - '@swc/core' - - '@types/babel__core' - - '@types/webpack' + - "@babel/plugin-syntax-flow" + - "@babel/plugin-transform-react-jsx" + - "@parcel/css" + - "@rspack/core" + - "@swc/core" + - "@types/babel__core" + - "@types/webpack" - bufferutil - canvas - clean-css @@ -60845,10 +77477,10 @@ snapshots: react-select@3.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@babel/runtime': 7.24.1 - '@emotion/cache': 10.0.29 - '@emotion/core': 10.3.1(react@18.2.0) - '@emotion/css': 10.0.27 + "@babel/runtime": 7.24.1 + "@emotion/cache": 10.0.29 + "@emotion/core": 10.3.1(react@18.2.0) + "@emotion/css": 10.0.27 memoize-one: 5.2.1 prop-types: 15.8.1 react: 18.2.0 @@ -60858,11 +77490,11 @@ snapshots: react-select@5.8.0(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@babel/runtime': 7.24.1 - '@emotion/cache': 11.11.0 - '@emotion/react': 11.11.4(@types/react@18.2.73)(react@18.2.0) - '@floating-ui/dom': 1.6.3 - '@types/react-transition-group': 4.4.10(@types/react@18.2.73) + "@babel/runtime": 7.24.1 + "@emotion/cache": 11.11.0 + "@emotion/react": 11.11.4(@types/react@18.2.73)(react@18.2.0) + "@floating-ui/dom": 1.6.3 + "@types/react-transition-group": 4.4.10(@types/react@18.2.73) memoize-one: 6.0.0 prop-types: 15.8.1 react: 18.2.0 @@ -60870,15 +77502,15 @@ snapshots: react-transition-group: 4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.73)(react@18.2.0) transitivePeerDependencies: - - '@types/react' + - "@types/react" react-select@5.8.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@babel/runtime': 7.24.1 - '@emotion/cache': 11.11.0 - '@emotion/react': 11.11.4(@types/react@18.3.5)(react@18.3.1) - '@floating-ui/dom': 1.6.3 - '@types/react-transition-group': 4.4.10(@types/react@18.3.5) + "@babel/runtime": 7.24.1 + "@emotion/cache": 11.11.0 + "@emotion/react": 11.11.4(@types/react@18.3.5)(react@18.3.1) + "@floating-ui/dom": 1.6.3 + "@types/react-transition-group": 4.4.10(@types/react@18.3.5) memoize-one: 6.0.0 prop-types: 15.8.1 react: 18.3.1 @@ -60886,17 +77518,17 @@ snapshots: react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.5)(react@18.3.1) transitivePeerDependencies: - - '@types/react' + - "@types/react" react-shallow-renderer@16.15.0(react@18.2.0): dependencies: object-assign: 4.1.1 react: 18.2.0 - react-is: 17.0.2 + react-is: 18.2.0 react-spring@8.0.27(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.24.1 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -60908,18 +77540,18 @@ snapshots: react: 18.2.0 tslib: 2.6.2 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 react-table@6.11.5(@types/react@18.3.5)(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@types/react-table': 6.8.15(@types/react@18.3.5) + "@types/react-table": 6.8.15(@types/react@18.3.5) classnames: 2.5.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 16.13.1 transitivePeerDependencies: - - '@types/react' + - "@types/react" react-test-renderer@18.2.0(react@18.2.0): dependencies: @@ -60930,14 +77562,14 @@ snapshots: react-tooltip@5.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@floating-ui/dom': 1.6.3 + "@floating-ui/dom": 1.6.3 classnames: 2.5.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-transition-group@4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.24.1 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -60946,7 +77578,7 @@ snapshots: react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.24.1 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -60965,7 +77597,7 @@ snapshots: react-window@1.8.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.24.1 memoize-one: 5.2.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -61005,14 +77637,14 @@ snapshots: read-pkg@5.2.0: dependencies: - '@types/normalize-package-data': 2.4.4 + "@types/normalize-package-data": 2.4.4 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 read-pkg@7.1.0: dependencies: - '@types/normalize-package-data': 2.4.4 + "@types/normalize-package-data": 2.4.4 normalize-package-data: 3.0.3 parse-json: 5.2.0 type-fest: 2.19.0 @@ -61101,12 +77733,12 @@ snapshots: dependencies: minimatch: 3.1.2 - recyclerlistview@4.2.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + recyclerlistview@4.2.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: lodash.debounce: 4.0.8 prop-types: 15.8.1 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) ts-object-utils: 0.0.5 redent@3.0.0: @@ -61134,14 +77766,6 @@ snapshots: reduce-reducers: 0.4.3 to-camel-case: 1.0.0 - redux-flipper@2.0.3(react-native-flipper@0.163.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0))(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(redux@4.2.1): - dependencies: - cycle: 1.0.3 - dayjs: 1.11.10 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) - react-native-flipper: 0.163.0(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0) - redux: 4.2.1 - redux-thunk@2.4.2(redux@4.2.1): dependencies: redux: 4.2.1 @@ -61152,7 +77776,7 @@ snapshots: redux@4.2.1: dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.24.1 redux@5.0.0: {} @@ -61182,7 +77806,7 @@ snapshots: regenerator-transform@0.15.2: dependencies: - '@babel/runtime': 7.25.0 + "@babel/runtime": 7.25.0 regex-parser@2.3.0: {} @@ -61195,7 +77819,7 @@ snapshots: regexpu-core@5.3.2: dependencies: - '@babel/regjsgen': 0.8.0 + "@babel/regjsgen": 0.8.0 regenerate: 1.4.2 regenerate-unicode-properties: 10.1.1 regjsparser: 0.9.1 @@ -61217,8 +77841,8 @@ snapshots: rehype-katex@7.0.0: dependencies: - '@types/hast': 3.0.4 - '@types/katex': 0.16.7 + "@types/hast": 3.0.4 + "@types/katex": 0.16.7 hast-util-from-html-isomorphic: 2.0.0 hast-util-to-text: 4.0.2 katex: 0.16.10 @@ -61227,14 +77851,14 @@ snapshots: rehype-pretty-code@0.9.11(shiki@0.14.7): dependencies: - '@types/hast': 2.3.10 + "@types/hast": 2.3.10 hash-obj: 4.0.0 parse-numeric-range: 1.3.0 shiki: 0.14.7 rehype-raw@7.0.0: dependencies: - '@types/hast': 3.0.4 + "@types/hast": 3.0.4 hast-util-raw: 9.0.3 vfile: 6.0.1 @@ -61254,7 +77878,7 @@ snapshots: remark-gfm@3.0.1: dependencies: - '@types/mdast': 3.0.15 + "@types/mdast": 3.0.15 mdast-util-gfm: 2.0.2 micromark-extension-gfm: 2.0.3 unified: 10.1.2 @@ -61263,7 +77887,7 @@ snapshots: remark-html@15.0.2: dependencies: - '@types/mdast': 3.0.15 + "@types/mdast": 3.0.15 hast-util-sanitize: 4.1.0 hast-util-to-html: 8.0.4 mdast-util-to-hast: 12.3.0 @@ -61271,7 +77895,7 @@ snapshots: remark-math@5.1.1: dependencies: - '@types/mdast': 3.0.15 + "@types/mdast": 3.0.15 mdast-util-math: 2.0.2 micromark-extension-math: 2.1.2 unified: 10.1.2 @@ -61285,7 +77909,7 @@ snapshots: remark-parse@10.0.2: dependencies: - '@types/mdast': 3.0.15 + "@types/mdast": 3.0.15 mdast-util-from-markdown: 1.3.1 unified: 10.1.2 transitivePeerDependencies: @@ -61318,14 +77942,14 @@ snapshots: remark-reference-links@6.0.1: dependencies: - '@types/mdast': 3.0.15 + "@types/mdast": 3.0.15 unified: 10.1.2 unist-util-visit: 4.1.2 remark-rehype@10.1.0: dependencies: - '@types/hast': 2.3.10 - '@types/mdast': 3.0.15 + "@types/hast": 2.3.10 + "@types/mdast": 3.0.15 mdast-util-to-hast: 12.3.0 unified: 10.1.2 @@ -61337,19 +77961,19 @@ snapshots: remark-stringify@10.0.3: dependencies: - '@types/mdast': 3.0.15 + "@types/mdast": 3.0.15 mdast-util-to-markdown: 1.5.0 unified: 10.1.2 remark-toc@8.0.1: dependencies: - '@types/mdast': 3.0.15 + "@types/mdast": 3.0.15 mdast-util-toc: 6.1.1 unified: 10.1.2 remark@14.0.3: dependencies: - '@types/mdast': 3.0.15 + "@types/mdast": 3.0.15 remark-parse: 10.0.2 remark-stringify: 10.0.3 unified: 10.1.2 @@ -61552,8 +78176,8 @@ snapshots: ripple-address-codec@5.0.0: dependencies: - '@scure/base': 1.1.6 - '@xrplf/isomorphic': 1.0.0 + "@scure/base": 1.1.6 + "@xrplf/isomorphic": 1.0.0 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -61569,8 +78193,8 @@ snapshots: ripple-keypairs@2.0.0: dependencies: - '@noble/curves': 1.4.0 - '@xrplf/isomorphic': 1.0.0 + "@noble/curves": 1.4.0 + "@xrplf/isomorphic": 1.0.0 ripple-address-codec: 5.0.0 transitivePeerDependencies: - bufferutil @@ -61588,11 +78212,11 @@ snapshots: glob: 7.0.6 lodash: 4.17.21 - rn-range-slider@2.1.1(prop-types@15.8.1)(react-native@0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0))(react@18.2.0): + rn-range-slider@2.1.1(prop-types@15.8.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0): optionalDependencies: prop-types: 15.8.1 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-resolver@0.80.8)(metro-transform-worker@0.80.8)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) roarr@2.15.4: dependencies: @@ -61612,11 +78236,11 @@ snapshots: rollup: 4.17.2 typescript: 5.4.3 optionalDependencies: - '@babel/code-frame': 7.24.6 + "@babel/code-frame": 7.24.6 rollup-plugin-esbuild@6.1.1(esbuild@0.19.12)(rollup@4.17.2): dependencies: - '@rollup/pluginutils': 5.1.0(rollup@4.17.2) + "@rollup/pluginutils": 5.1.0(rollup@4.17.2) debug: 4.3.4 es-module-lexer: 1.5.0 esbuild: 0.19.12 @@ -61627,7 +78251,7 @@ snapshots: rollup-plugin-terser@7.0.2(rollup@2.79.1): dependencies: - '@babel/code-frame': 7.24.6 + "@babel/code-frame": 7.24.6 jest-worker: 26.6.2 rollup: 2.79.1 serialize-javascript: 4.0.0 @@ -61645,29 +78269,29 @@ snapshots: rollup@4.17.2: dependencies: - '@types/estree': 1.0.5 + "@types/estree": 1.0.5 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.17.2 - '@rollup/rollup-android-arm64': 4.17.2 - '@rollup/rollup-darwin-arm64': 4.17.2 - '@rollup/rollup-darwin-x64': 4.17.2 - '@rollup/rollup-linux-arm-gnueabihf': 4.17.2 - '@rollup/rollup-linux-arm-musleabihf': 4.17.2 - '@rollup/rollup-linux-arm64-gnu': 4.17.2 - '@rollup/rollup-linux-arm64-musl': 4.17.2 - '@rollup/rollup-linux-powerpc64le-gnu': 4.17.2 - '@rollup/rollup-linux-riscv64-gnu': 4.17.2 - '@rollup/rollup-linux-s390x-gnu': 4.17.2 - '@rollup/rollup-linux-x64-gnu': 4.17.2 - '@rollup/rollup-linux-x64-musl': 4.17.2 - '@rollup/rollup-win32-arm64-msvc': 4.17.2 - '@rollup/rollup-win32-ia32-msvc': 4.17.2 - '@rollup/rollup-win32-x64-msvc': 4.17.2 + "@rollup/rollup-android-arm-eabi": 4.17.2 + "@rollup/rollup-android-arm64": 4.17.2 + "@rollup/rollup-darwin-arm64": 4.17.2 + "@rollup/rollup-darwin-x64": 4.17.2 + "@rollup/rollup-linux-arm-gnueabihf": 4.17.2 + "@rollup/rollup-linux-arm-musleabihf": 4.17.2 + "@rollup/rollup-linux-arm64-gnu": 4.17.2 + "@rollup/rollup-linux-arm64-musl": 4.17.2 + "@rollup/rollup-linux-powerpc64le-gnu": 4.17.2 + "@rollup/rollup-linux-riscv64-gnu": 4.17.2 + "@rollup/rollup-linux-s390x-gnu": 4.17.2 + "@rollup/rollup-linux-x64-gnu": 4.17.2 + "@rollup/rollup-linux-x64-musl": 4.17.2 + "@rollup/rollup-win32-arm64-msvc": 4.17.2 + "@rollup/rollup-win32-ia32-msvc": 4.17.2 + "@rollup/rollup-win32-x64-msvc": 4.17.2 fsevents: 2.3.3 rpc-websockets@7.9.0: dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.25.0 eventemitter3: 4.0.7 uuid: 8.3.2 ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -61758,25 +78382,25 @@ snapshots: schema-utils@2.7.0: dependencies: - '@types/json-schema': 7.0.15 + "@types/json-schema": 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) schema-utils@2.7.1: dependencies: - '@types/json-schema': 7.0.15 + "@types/json-schema": 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) schema-utils@3.3.0: dependencies: - '@types/json-schema': 7.0.15 + "@types/json-schema": 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) schema-utils@4.2.0: dependencies: - '@types/json-schema': 7.0.15 + "@types/json-schema": 7.0.15 ajv: 8.16.0 ajv-formats: 2.1.1 ajv-keywords: 5.1.0(ajv@8.16.0) @@ -61809,9 +78433,9 @@ snapshots: secretjs@0.17.8: dependencies: - '@iov/crypto': 2.1.0 - '@iov/encoding': 2.1.0 - '@iov/utils': 2.0.2 + "@iov/crypto": 2.1.0 + "@iov/encoding": 2.1.0 + "@iov/utils": 2.0.2 axios: 0.21.1 curve25519-js: 0.0.4 fast-deep-equal: 3.1.1 @@ -61834,7 +78458,7 @@ snapshots: selfsigned@2.4.1: dependencies: - '@types/node-forge': 1.3.11 + "@types/node-forge": 1.3.11 node-forge: 1.3.1 semver-compare@1.0.0: @@ -62066,8 +78690,8 @@ snapshots: simple-git@3.24.0: dependencies: - '@kwsites/file-exists': 1.1.1 - '@kwsites/promise-deferred': 1.1.1 + "@kwsites/file-exists": 1.1.1 + "@kwsites/promise-deferred": 1.1.1 debug: 4.3.4 transitivePeerDependencies: - supports-color @@ -62076,7 +78700,7 @@ snapshots: simple-markdown@0.7.3(@types/react@18.2.73): optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 simple-plist@1.3.1: dependencies: @@ -62094,7 +78718,7 @@ snapshots: sirv@2.0.4: dependencies: - '@polka/url': 1.0.0-next.25 + "@polka/url": 1.0.0-next.25 mrmime: 2.0.0 totalist: 3.0.1 @@ -62206,12 +78830,12 @@ snapshots: source-map-js@1.2.0: {} - source-map-loader@3.0.2(webpack@5.91.0(metro@0.80.8)): + source-map-loader@3.0.2(webpack@5.91.0(metro@0.80.12)): dependencies: abab: 2.0.6 iconv-lite: 0.6.3 source-map-js: 1.2.0 - webpack: 5.91.0(metro@0.80.8) + webpack: 5.91.0(metro@0.80.12) source-map-loader@3.0.2(webpack@5.94.0): dependencies: @@ -62334,6 +78958,10 @@ snapshots: ssr-window@4.0.2: {} + ssri@10.0.6: + dependencies: + minipass: 7.0.4 + ssri@8.0.1: dependencies: minipass: 3.3.6 @@ -62389,24 +79017,24 @@ snapshots: storybook-dark-mode@3.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@storybook/addons': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/components': 7.6.17(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/core-events': 7.6.17 - '@storybook/global': 5.0.0 - '@storybook/manager-api': 7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/addons": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/components": 7.6.17(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/core-events": 7.6.17 + "@storybook/global": 5.0.0 + "@storybook/manager-api": 7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@storybook/theming": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) fast-deep-equal: 3.1.3 memoizerific: 1.11.3 optionalDependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - - '@types/react' - - '@types/react-dom' + - "@types/react" + - "@types/react-dom" storybook@7.6.17: dependencies: - '@storybook/cli': 7.6.17 + "@storybook/cli": 7.6.17 transitivePeerDependencies: - bufferutil - encoding @@ -62415,23 +79043,23 @@ snapshots: storybook@7.6.20: dependencies: - '@storybook/cli': 7.6.20 + "@storybook/cli": 7.6.20 transitivePeerDependencies: - bufferutil - encoding - supports-color - utf-8-validate - storyly-react-native@3.6.0(prop-types@15.8.1)(react-native@0.73.6(@babel/core@7.24.3)(react@18.2.0))(react@18.2.0): + storyly-react-native@3.6.2(prop-types@15.8.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: react: 18.2.0 - react-native: 0.73.6(@babel/core@7.24.3)(react@18.2.0) + react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) optionalDependencies: prop-types: 15.8.1 storyly-web@3.6.7: dependencies: - '@babel/runtime': 7.25.0 + "@babel/runtime": 7.25.0 canvas-confetti: 1.9.2 platform: 1.3.6 swiper: 7.4.1 @@ -62671,17 +79299,17 @@ snapshots: stubborn-fs@1.2.5: {} - style-loader@3.3.4(webpack@5.91.0(metro@0.80.8)): + style-loader@3.3.4(webpack@5.91.0(metro@0.80.12)): dependencies: - webpack: 5.91.0(metro@0.80.8) + webpack: 5.91.0(metro@0.80.12) style-loader@3.3.4(webpack@5.94.0(@swc/core@1.4.11)(esbuild@0.19.12)): dependencies: webpack: 5.94.0(@swc/core@1.4.11)(esbuild@0.19.12) - style-loader@3.3.4(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8)): + style-loader@3.3.4(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)): dependencies: - webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.8) + webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.12) style-loader@3.3.4(webpack@5.94.0): dependencies: @@ -62697,11 +79325,11 @@ snapshots: styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0): dependencies: - '@babel/helper-module-imports': 7.24.3 - '@babel/traverse': 7.24.1(supports-color@5.5.0) - '@emotion/is-prop-valid': 1.2.2 - '@emotion/stylis': 0.8.5 - '@emotion/unitless': 0.7.5 + "@babel/helper-module-imports": 7.24.3 + "@babel/traverse": 7.24.1(supports-color@5.5.0) + "@emotion/is-prop-valid": 1.2.2 + "@emotion/stylis": 0.8.5 + "@emotion/unitless": 0.7.5 babel-plugin-styled-components: 2.1.4(@babel/core@7.24.3)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0)) css-to-react-native: 3.2.0 hoist-non-react-statics: 3.3.2 @@ -62711,15 +79339,15 @@ snapshots: shallowequal: 1.1.0 supports-color: 5.5.0 transitivePeerDependencies: - - '@babel/core' + - "@babel/core" styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0): dependencies: - '@babel/helper-module-imports': 7.24.3 - '@babel/traverse': 7.24.1(supports-color@5.5.0) - '@emotion/is-prop-valid': 1.2.2 - '@emotion/stylis': 0.8.5 - '@emotion/unitless': 0.7.5 + "@babel/helper-module-imports": 7.24.3 + "@babel/traverse": 7.24.1(supports-color@5.5.0) + "@emotion/is-prop-valid": 1.2.2 + "@emotion/stylis": 0.8.5 + "@emotion/unitless": 0.7.5 babel-plugin-styled-components: 2.1.4(@babel/core@7.24.3)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0)) css-to-react-native: 3.2.0 hoist-non-react-statics: 3.3.2 @@ -62729,15 +79357,15 @@ snapshots: shallowequal: 1.1.0 supports-color: 5.5.0 transitivePeerDependencies: - - '@babel/core' + - "@babel/core" styled-components@5.3.11(@babel/core@7.24.3)(react-is@18.2.0)(react@18.2.0): dependencies: - '@babel/helper-module-imports': 7.24.3 - '@babel/traverse': 7.24.1(supports-color@5.5.0) - '@emotion/is-prop-valid': 1.2.2 - '@emotion/stylis': 0.8.5 - '@emotion/unitless': 0.7.5 + "@babel/helper-module-imports": 7.24.3 + "@babel/traverse": 7.24.1(supports-color@5.5.0) + "@emotion/is-prop-valid": 1.2.2 + "@emotion/stylis": 0.8.5 + "@emotion/unitless": 0.7.5 babel-plugin-styled-components: 2.1.4(@babel/core@7.24.3)(styled-components@5.3.11(@babel/core@7.24.3)(react-is@18.2.0)(react@18.2.0)) css-to-react-native: 3.2.0 hoist-non-react-statics: 3.3.2 @@ -62746,15 +79374,15 @@ snapshots: shallowequal: 1.1.0 supports-color: 5.5.0 transitivePeerDependencies: - - '@babel/core' + - "@babel/core" styled-components@5.3.11(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0): dependencies: - '@babel/helper-module-imports': 7.24.3 - '@babel/traverse': 7.24.1(supports-color@5.5.0) - '@emotion/is-prop-valid': 1.2.2 - '@emotion/stylis': 0.8.5 - '@emotion/unitless': 0.7.5 + "@babel/helper-module-imports": 7.24.3 + "@babel/traverse": 7.24.1(supports-color@5.5.0) + "@emotion/is-prop-valid": 1.2.2 + "@emotion/stylis": 0.8.5 + "@emotion/unitless": 0.7.5 babel-plugin-styled-components: 2.1.4(styled-components@5.3.11(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0)) css-to-react-native: 3.2.0 hoist-non-react-statics: 3.3.2 @@ -62764,15 +79392,15 @@ snapshots: shallowequal: 1.1.0 supports-color: 5.5.0 transitivePeerDependencies: - - '@babel/core' + - "@babel/core" styled-components@5.3.11(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0): dependencies: - '@babel/helper-module-imports': 7.24.3 - '@babel/traverse': 7.24.1(supports-color@5.5.0) - '@emotion/is-prop-valid': 1.2.2 - '@emotion/stylis': 0.8.5 - '@emotion/unitless': 0.7.5 + "@babel/helper-module-imports": 7.24.3 + "@babel/traverse": 7.24.1(supports-color@5.5.0) + "@emotion/is-prop-valid": 1.2.2 + "@emotion/stylis": 0.8.5 + "@emotion/unitless": 0.7.5 babel-plugin-styled-components: 2.1.4(styled-components@5.3.11(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0)) css-to-react-native: 3.2.0 hoist-non-react-statics: 3.3.2 @@ -62782,13 +79410,13 @@ snapshots: shallowequal: 1.1.0 supports-color: 5.5.0 transitivePeerDependencies: - - '@babel/core' + - "@babel/core" styled-components@6.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@emotion/is-prop-valid': 1.2.1 - '@emotion/unitless': 0.8.0 - '@types/stylis': 4.2.0 + "@emotion/is-prop-valid": 1.2.1 + "@emotion/unitless": 0.8.0 + "@types/stylis": 4.2.0 css-to-react-native: 3.2.0 csstype: 3.1.2 postcss: 8.4.31 @@ -62810,18 +79438,18 @@ snapshots: styled-system@5.1.5: dependencies: - '@styled-system/background': 5.1.2 - '@styled-system/border': 5.1.5 - '@styled-system/color': 5.1.2 - '@styled-system/core': 5.1.2 - '@styled-system/flexbox': 5.1.2 - '@styled-system/grid': 5.1.2 - '@styled-system/layout': 5.1.2 - '@styled-system/position': 5.1.2 - '@styled-system/shadow': 5.1.2 - '@styled-system/space': 5.1.2 - '@styled-system/typography': 5.1.2 - '@styled-system/variant': 5.1.5 + "@styled-system/background": 5.1.2 + "@styled-system/border": 5.1.5 + "@styled-system/color": 5.1.2 + "@styled-system/core": 5.1.2 + "@styled-system/flexbox": 5.1.2 + "@styled-system/grid": 5.1.2 + "@styled-system/layout": 5.1.2 + "@styled-system/position": 5.1.2 + "@styled-system/shadow": 5.1.2 + "@styled-system/space": 5.1.2 + "@styled-system/typography": 5.1.2 + "@styled-system/variant": 5.1.5 object-assign: 4.1.1 stylehacks@5.1.1(postcss@8.4.38): @@ -62838,8 +79466,8 @@ snapshots: stylelint-processor-styled-components@1.10.0: dependencies: - '@babel/parser': 7.24.1 - '@babel/traverse': 7.24.1 + "@babel/parser": 7.24.1 + "@babel/traverse": 7.24.1 micromatch: 4.0.5 postcss: 7.0.39 transitivePeerDependencies: @@ -62847,7 +79475,7 @@ snapshots: stylelint@14.16.1: dependencies: - '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.16) + "@csstools/selector-specificity": 2.2.0(postcss-selector-parser@6.0.16) balanced-match: 2.0.0 colord: 2.9.3 cosmiconfig: 7.1.0 @@ -62896,7 +79524,7 @@ snapshots: sucrase@3.34.0: dependencies: - '@jridgewell/gen-mapping': 0.3.5 + "@jridgewell/gen-mapping": 0.3.5 commander: 4.1.1 glob: 7.1.6 lines-and-columns: 1.2.4 @@ -62906,7 +79534,7 @@ snapshots: sucrase@3.35.0: dependencies: - '@jridgewell/gen-mapping': 0.3.5 + "@jridgewell/gen-mapping": 0.3.5 commander: 4.1.1 glob: 10.3.12 lines-and-columns: 1.2.4 @@ -63013,7 +79641,7 @@ snapshots: svgo@2.8.0: dependencies: - '@trysound/sax': 0.2.0 + "@trysound/sax": 0.2.0 commander: 7.2.0 css-select: 4.3.0 css-tree: 1.1.3 @@ -63041,15 +79669,15 @@ snapshots: swc-loader@0.2.6(@swc/core@1.4.11)(webpack@5.94.0(@swc/core@1.4.11)(esbuild@0.19.12)): dependencies: - '@swc/core': 1.4.11 - '@swc/counter': 0.1.3 + "@swc/core": 1.4.11 + "@swc/counter": 0.1.3 webpack: 5.94.0(@swc/core@1.4.11)(esbuild@0.19.12) - swc-loader@0.2.6(@swc/core@1.4.11)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8)): + swc-loader@0.2.6(@swc/core@1.4.11)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)): dependencies: - '@swc/core': 1.4.11 - '@swc/counter': 0.1.3 - webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.8) + "@swc/core": 1.4.11 + "@swc/counter": 0.1.3 + webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.12) swiper@7.4.1: dependencies: @@ -63076,7 +79704,7 @@ snapshots: synckit@0.8.8: dependencies: - '@pkgr/core': 0.1.1 + "@pkgr/core": 0.1.1 tslib: 2.6.2 tabbable@5.3.3: {} @@ -63098,7 +79726,7 @@ snapshots: tailwindcss@3.4.3: 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 @@ -63169,7 +79797,7 @@ snapshots: telejson@6.0.8: dependencies: - '@types/is-function': 1.0.3 + "@types/is-function": 1.0.3 global: 4.4.0 is-function: 1.0.2 is-regex: 1.1.4 @@ -63247,34 +79875,34 @@ snapshots: terser-webpack-plugin@5.3.10(@swc/core@1.4.11)(esbuild@0.19.12)(webpack@5.94.0(@swc/core@1.4.11)(esbuild@0.19.12)): dependencies: - '@jridgewell/trace-mapping': 0.3.25 + "@jridgewell/trace-mapping": 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.30.0 webpack: 5.94.0(@swc/core@1.4.11)(esbuild@0.19.12) optionalDependencies: - '@swc/core': 1.4.11 + "@swc/core": 1.4.11 esbuild: 0.19.12 transitivePeerDependencies: - metro - terser-webpack-plugin@5.3.10(@swc/core@1.4.11)(metro@0.80.8)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8)): + terser-webpack-plugin@5.3.10(@swc/core@1.4.11)(metro@0.80.12)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)): dependencies: - '@jridgewell/trace-mapping': 0.3.25 - jest-worker: 27.5.1(metro@0.80.8) + "@jridgewell/trace-mapping": 0.3.25 + jest-worker: 27.5.1(metro@0.80.12) schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.30.0 - webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.8) + webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.12) optionalDependencies: - '@swc/core': 1.4.11 + "@swc/core": 1.4.11 transitivePeerDependencies: - metro terser-webpack-plugin@5.3.10(esbuild@0.19.12)(webpack@5.91.0(esbuild@0.19.12)): dependencies: - '@jridgewell/trace-mapping': 0.3.25 + "@jridgewell/trace-mapping": 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 @@ -63287,7 +79915,7 @@ snapshots: terser-webpack-plugin@5.3.10(esbuild@0.19.12)(webpack@5.94.0(esbuild@0.19.12)): dependencies: - '@jridgewell/trace-mapping': 0.3.25 + "@jridgewell/trace-mapping": 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 @@ -63298,31 +79926,31 @@ snapshots: transitivePeerDependencies: - metro - terser-webpack-plugin@5.3.10(metro@0.80.8)(webpack@5.91.0(metro@0.80.8)): + terser-webpack-plugin@5.3.10(metro@0.80.12)(webpack@5.91.0(metro@0.80.12)): dependencies: - '@jridgewell/trace-mapping': 0.3.25 - jest-worker: 27.5.1(metro@0.80.8) + "@jridgewell/trace-mapping": 0.3.25 + jest-worker: 27.5.1(metro@0.80.12) schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.30.0 - webpack: 5.91.0(metro@0.80.8) + webpack: 5.91.0(metro@0.80.12) transitivePeerDependencies: - metro - terser-webpack-plugin@5.3.10(metro@0.80.8)(webpack@5.94.0(metro@0.80.8)): + terser-webpack-plugin@5.3.10(metro@0.80.12)(webpack@5.94.0(metro@0.80.12)): dependencies: - '@jridgewell/trace-mapping': 0.3.25 - jest-worker: 27.5.1(metro@0.80.8) + "@jridgewell/trace-mapping": 0.3.25 + jest-worker: 27.5.1(metro@0.80.12) schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.30.0 - webpack: 5.94.0(metro@0.80.8) + webpack: 5.94.0(metro@0.80.12) transitivePeerDependencies: - metro terser-webpack-plugin@5.3.10(webpack@5.91.0(webpack-cli@4.10.0)): dependencies: - '@jridgewell/trace-mapping': 0.3.25 + "@jridgewell/trace-mapping": 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 @@ -63333,7 +79961,7 @@ snapshots: terser-webpack-plugin@5.3.10(webpack@5.94.0): dependencies: - '@jridgewell/trace-mapping': 0.3.25 + "@jridgewell/trace-mapping": 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 @@ -63344,7 +79972,7 @@ snapshots: terser@5.30.0: dependencies: - '@jridgewell/source-map': 0.3.6 + "@jridgewell/source-map": 0.3.6 acorn: 8.11.3 commander: 2.20.3 source-map-support: 0.5.21 @@ -63353,7 +79981,7 @@ snapshots: test-exclude@6.0.0: dependencies: - '@istanbuljs/schema': 0.1.3 + "@istanbuljs/schema": 0.1.3 glob: 7.2.3 minimatch: 3.1.2 @@ -63381,7 +80009,7 @@ snapshots: thor-devkit@2.0.9: dependencies: - '@vechain/ethers': 4.0.27-5 + "@vechain/ethers": 4.0.27-5 bignumber.js: 7.2.1 blakejs: 1.2.1 elliptic: 6.5.4 @@ -63454,7 +80082,7 @@ snapshots: tippy.js@6.3.7: dependencies: - '@popperjs/core': 2.11.8 + "@popperjs/core": 2.11.8 title@3.5.3: dependencies: @@ -63566,6 +80194,8 @@ snapshots: dependencies: escape-string-regexp: 1.0.5 + trim-right@1.0.1: {} + trim-trailing-lines@1.1.4: {} trim@0.0.1: {} @@ -63574,17 +80204,17 @@ snapshots: tronweb@5.3.2: dependencies: - '@babel/runtime': 7.24.1 - '@ethersproject/abi': 5.7.0 - '@ethersproject/bignumber': 5.7.0 - '@ethersproject/bytes': 5.7.0 - '@ethersproject/keccak256': 5.7.0 - '@ethersproject/logger': 5.7.0 - '@ethersproject/properties': 5.7.0 - '@ethersproject/strings': 5.7.0 - '@noble/hashes': 1.4.0 - '@noble/secp256k1': 1.7.1 - '@tronweb3/google-protobuf': 3.21.2 + "@babel/runtime": 7.24.1 + "@ethersproject/abi": 5.7.0 + "@ethersproject/bignumber": 5.7.0 + "@ethersproject/bytes": 5.7.0 + "@ethersproject/keccak256": 5.7.0 + "@ethersproject/logger": 5.7.0 + "@ethersproject/properties": 5.7.0 + "@ethersproject/strings": 5.7.0 + "@noble/hashes": 1.4.0 + "@noble/secp256k1": 1.7.1 + "@tronweb3/google-protobuf": 3.21.2 aes-js: 3.1.2 axios: 1.7.7 bignumber.js: 9.1.2 @@ -63661,7 +80291,7 @@ snapshots: typescript: 5.4.3 yargs-parser: 21.1.1 optionalDependencies: - '@babel/core': 7.24.3 + "@babel/core": 7.24.3 babel-jest: 29.7.0(@babel/core@7.24.3) ts-jest@29.1.2(jest@29.7.0(@types/node@18.19.26)(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)))(typescript@4.9.5): @@ -63884,11 +80514,11 @@ snapshots: ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3): dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.11 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 + "@cspotcode/source-map-support": 0.8.1 + "@tsconfig/node10": 1.0.11 + "@tsconfig/node12": 1.0.11 + "@tsconfig/node14": 1.0.3 + "@tsconfig/node16": 1.0.4 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -63899,18 +80529,18 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: - '@swc/core': 1.4.11 + "@swc/core": 1.4.11 transitivePeerDependencies: - source-map-support ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5): dependencies: - '@cspotcode/source-map-support': 0.8.1(source-map-support@0.5.21) - '@tsconfig/node10': 1.0.11 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 - '@types/node': 18.19.26 + "@cspotcode/source-map-support": 0.8.1(source-map-support@0.5.21) + "@tsconfig/node10": 1.0.11 + "@tsconfig/node12": 1.0.11 + "@tsconfig/node14": 1.0.3 + "@tsconfig/node16": 1.0.4 + "@types/node": 18.19.26 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -63925,12 +80555,12 @@ snapshots: ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3): dependencies: - '@cspotcode/source-map-support': 0.8.1(source-map-support@0.5.21) - '@tsconfig/node10': 1.0.11 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 - '@types/node': 20.12.12 + "@cspotcode/source-map-support": 0.8.1(source-map-support@0.5.21) + "@tsconfig/node10": 1.0.11 + "@tsconfig/node12": 1.0.11 + "@tsconfig/node14": 1.0.3 + "@tsconfig/node16": 1.0.4 + "@types/node": 20.12.12 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -63945,12 +80575,12 @@ snapshots: ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3): dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.11 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 - '@types/node': 20.12.12 + "@cspotcode/source-map-support": 0.8.1 + "@tsconfig/node10": 1.0.11 + "@tsconfig/node12": 1.0.11 + "@tsconfig/node14": 1.0.3 + "@tsconfig/node16": 1.0.4 + "@types/node": 20.12.12 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -63965,12 +80595,12 @@ snapshots: ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3): dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.11 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 - '@types/node': 20.12.12 + "@cspotcode/source-map-support": 0.8.1 + "@tsconfig/node10": 1.0.11 + "@tsconfig/node12": 1.0.11 + "@tsconfig/node14": 1.0.3 + "@tsconfig/node16": 1.0.4 + "@types/node": 20.12.12 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -63985,12 +80615,12 @@ snapshots: ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5): dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.11 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 - '@types/node': 20.12.12 + "@cspotcode/source-map-support": 0.8.1 + "@tsconfig/node10": 1.0.11 + "@tsconfig/node12": 1.0.11 + "@tsconfig/node14": 1.0.3 + "@tsconfig/node16": 1.0.4 + "@types/node": 20.12.12 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -64005,12 +80635,12 @@ snapshots: ts-node@10.9.2(@types/node@20.5.1)(typescript@5.4.5): dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.11 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 - '@types/node': 20.5.1 + "@cspotcode/source-map-support": 0.8.1 + "@tsconfig/node10": 1.0.11 + "@tsconfig/node12": 1.0.11 + "@tsconfig/node14": 1.0.3 + "@tsconfig/node16": 1.0.4 + "@types/node": 20.5.1 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -64025,11 +80655,11 @@ snapshots: ts-node@10.9.2(typescript@5.4.3): dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@tsconfig/node10': 1.0.11 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 + "@cspotcode/source-map-support": 0.8.1 + "@tsconfig/node10": 1.0.11 + "@tsconfig/node12": 1.0.11 + "@tsconfig/node14": 1.0.3 + "@tsconfig/node16": 1.0.4 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -64046,7 +80676,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 @@ -64284,12 +80914,12 @@ snapshots: uncontrollable@7.2.1(@types/react@18.2.73)(react@18.2.0): dependencies: - '@babel/runtime': 7.24.1 + "@babel/runtime": 7.24.1 invariant: 2.2.4 react: 18.2.0 react-lifecycles-compat: 3.0.4 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 undefsafe@2.0.5: {} @@ -64301,7 +80931,7 @@ snapshots: undici@5.28.3: dependencies: - '@fastify/busboy': 2.1.1 + "@fastify/busboy": 2.1.1 undici@6.10.2: {} @@ -64327,7 +80957,7 @@ snapshots: unified@10.1.2: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 bail: 2.0.2 extend: 3.0.2 is-buffer: 2.0.5 @@ -64337,7 +80967,7 @@ snapshots: unified@6.2.0: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 bail: 1.0.5 extend: 3.0.2 is-plain-obj: 1.1.0 @@ -64347,8 +80977,8 @@ snapshots: unimported@1.30.0(eslint@8.57.0): dependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@4.9.5) - '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) + "@typescript-eslint/parser": 5.62.0(eslint@8.57.0)(typescript@4.9.5) + "@typescript-eslint/typescript-estree": 5.62.0(typescript@4.9.5) chalk: 4.1.2 cosmiconfig: 8.3.6(typescript@4.9.5) debug: 4.3.4 @@ -64375,10 +81005,18 @@ snapshots: dependencies: unique-slug: 2.0.2 + unique-filename@3.0.0: + dependencies: + unique-slug: 4.0.0 + unique-slug@2.0.2: dependencies: imurmurhash: 0.1.4 + unique-slug@4.0.0: + dependencies: + imurmurhash: 0.1.4 + unique-string@1.0.0: dependencies: crypto-random-string: 1.0.0 @@ -64389,11 +81027,11 @@ snapshots: unist-builder@3.0.1: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 unist-util-find-after@5.0.0: dependencies: - '@types/unist': 3.0.2 + "@types/unist": 3.0.2 unist-util-is: 6.0.0 unist-util-generated@2.0.1: {} @@ -64404,23 +81042,23 @@ snapshots: unist-util-is@5.2.1: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 unist-util-is@6.0.0: dependencies: - '@types/unist': 3.0.2 + "@types/unist": 3.0.2 unist-util-position-from-estree@1.1.2: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 unist-util-position@4.0.4: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 unist-util-position@5.0.0: dependencies: - '@types/unist': 3.0.2 + "@types/unist": 3.0.2 unist-util-remove-position@1.1.4: dependencies: @@ -64428,17 +81066,17 @@ snapshots: unist-util-remove-position@4.0.2: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 unist-util-visit: 4.1.2 unist-util-remove-position@5.0.0: dependencies: - '@types/unist': 3.0.2 + "@types/unist": 3.0.2 unist-util-visit: 5.0.0 unist-util-remove@4.0.0: dependencies: - '@types/unist': 3.0.2 + "@types/unist": 3.0.2 unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 @@ -64446,11 +81084,11 @@ snapshots: unist-util-stringify-position@3.0.3: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 unist-util-stringify-position@4.0.0: dependencies: - '@types/unist': 3.0.2 + "@types/unist": 3.0.2 unist-util-visit-parents@1.1.2: {} @@ -64460,22 +81098,22 @@ snapshots: unist-util-visit-parents@3.1.1: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 unist-util-is: 4.1.0 unist-util-visit-parents@4.1.1: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 unist-util-is: 5.2.1 unist-util-visit-parents@5.1.3: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 unist-util-is: 5.2.1 unist-util-visit-parents@6.0.1: dependencies: - '@types/unist': 3.0.2 + "@types/unist": 3.0.2 unist-util-is: 6.0.0 unist-util-visit@1.4.1: @@ -64484,31 +81122,31 @@ snapshots: unist-util-visit@2.0.3: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 unist-util-is: 4.1.0 unist-util-visit-parents: 3.1.1 unist-util-visit@3.1.0: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 unist-util-is: 5.2.1 unist-util-visit-parents: 4.1.1 unist-util-visit@4.1.2: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 unist-util-visit@5.0.0: dependencies: - '@types/unist': 3.0.2 + "@types/unist": 3.0.2 unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 universal-github-app-jwt@1.1.2: dependencies: - '@types/jsonwebtoken': 9.0.6 + "@types/jsonwebtoken": 9.0.6 jsonwebtoken: 9.0.2 universal-user-agent@6.0.1: {} @@ -64607,7 +81245,7 @@ snapshots: usb@2.9.0(patch_hash=d5pno5rjlboai2klvccu6wv334): dependencies: - '@types/w3c-web-usb': 1.0.10 + "@types/w3c-web-usb": 1.0.10 node-addon-api: 6.1.0 node-gyp-build: 4.8.0 @@ -64616,19 +81254,19 @@ snapshots: react: 18.2.0 tslib: 2.6.2 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 use-isomorphic-layout-effect@1.1.2(@types/react@18.2.73)(react@18.2.0): dependencies: react: 18.2.0 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 use-isomorphic-layout-effect@1.1.2(@types/react@18.3.5)(react@18.3.1): dependencies: react: 18.3.1 optionalDependencies: - '@types/react': 18.3.5 + "@types/react": 18.3.5 use-latest-callback@0.1.9(react@18.2.0): dependencies: @@ -64636,7 +81274,7 @@ snapshots: use-resize-observer@9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@juggle/resize-observer': 3.4.0 + "@juggle/resize-observer": 3.4.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -64646,7 +81284,7 @@ snapshots: react: 18.2.0 tslib: 2.6.2 optionalDependencies: - '@types/react': 18.2.73 + "@types/react": 18.2.73 use-subscription@1.8.0(react@18.2.0): dependencies: @@ -64726,14 +81364,14 @@ snapshots: v8-to-istanbul@8.1.1: dependencies: - '@types/istanbul-lib-coverage': 2.0.6 + "@types/istanbul-lib-coverage": 2.0.6 convert-source-map: 1.9.0 source-map: 0.7.4 v8-to-istanbul@9.2.0: dependencies: - '@jridgewell/trace-mapping': 0.3.25 - '@types/istanbul-lib-coverage': 2.0.6 + "@jridgewell/trace-mapping": 0.3.25 + "@types/istanbul-lib-coverage": 2.0.6 convert-source-map: 2.0.0 valid-url@1.0.9: {} @@ -64776,17 +81414,17 @@ snapshots: vfile-location@4.1.0: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 vfile: 5.3.7 vfile-location@5.0.2: dependencies: - '@types/unist': 3.0.2 + "@types/unist": 3.0.2 vfile: 6.0.1 vfile-matter@3.0.1: dependencies: - '@types/js-yaml': 4.0.9 + "@types/js-yaml": 4.0.9 is-buffer: 2.0.5 js-yaml: 4.1.0 @@ -64796,17 +81434,17 @@ snapshots: vfile-message@3.1.4: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 unist-util-stringify-position: 3.0.3 vfile-message@4.0.2: dependencies: - '@types/unist': 3.0.2 + "@types/unist": 3.0.2 unist-util-stringify-position: 4.0.0 vfile-reporter@7.0.5: dependencies: - '@types/supports-color': 8.1.3 + "@types/supports-color": 8.1.3 string-width: 5.1.2 supports-color: 9.4.0 unist-util-stringify-position: 3.0.3 @@ -64834,14 +81472,14 @@ snapshots: vfile@5.3.7: dependencies: - '@types/unist': 2.0.10 + "@types/unist": 2.0.10 is-buffer: 2.0.5 unist-util-stringify-position: 3.0.3 vfile-message: 3.1.4 vfile@6.0.1: dependencies: - '@types/unist': 3.0.2 + "@types/unist": 3.0.2 unist-util-stringify-position: 4.0.0 vfile-message: 4.0.2 @@ -64865,7 +81503,7 @@ snapshots: postcss: 8.4.32 rollup: 3.29.4 optionalDependencies: - '@types/node': 20.12.12 + "@types/node": 20.12.12 fsevents: 2.3.3 vlq@0.2.3: {} @@ -64898,7 +81536,7 @@ snapshots: vue-loader@15.11.1(css-loader@6.10.0(webpack@5.94.0))(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(webpack@5.94.0): dependencies: - '@vue/component-compiler-utils': 3.3.0(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + "@vue/component-compiler-utils": 3.3.0(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) css-loader: 6.10.0(webpack@5.94.0) hash-sum: 1.0.2 loader-utils: 1.4.2 @@ -64986,7 +81624,7 @@ snapshots: vue@2.7.16: dependencies: - '@vue/compiler-sfc': 2.7.16 + "@vue/compiler-sfc": 2.7.16 csstype: 3.1.3 w3c-hr-time@1.0.2: @@ -65036,7 +81674,7 @@ snapshots: web3-bzz@1.3.6: dependencies: - '@types/node': 12.20.55 + "@types/node": 12.20.55 got: 9.6.0 swarm-js: 0.1.42 underscore: 1.12.1 @@ -65047,7 +81685,7 @@ snapshots: web3-bzz@1.5.2: dependencies: - '@types/node': 12.20.55 + "@types/node": 12.20.55 got: 9.6.0 swarm-js: 0.1.42 transitivePeerDependencies: @@ -65068,7 +81706,7 @@ snapshots: web3-core-method@1.3.6: dependencies: - '@ethersproject/transactions': 5.7.0 + "@ethersproject/transactions": 5.7.0 underscore: 1.12.1 web3-core-helpers: 1.3.6 web3-core-promievent: 1.3.6 @@ -65077,8 +81715,8 @@ snapshots: web3-core-method@1.5.2: dependencies: - '@ethereumjs/common': 2.6.5 - '@ethersproject/transactions': 5.7.0 + "@ethereumjs/common": 2.6.5 + "@ethersproject/transactions": 5.7.0 web3-core-helpers: 1.5.2 web3-core-promievent: 1.5.2 web3-core-subscriptions: 1.5.2 @@ -65126,8 +81764,8 @@ snapshots: web3-core@1.3.6: dependencies: - '@types/bn.js': 4.11.6 - '@types/node': 12.20.55 + "@types/bn.js": 4.11.6 + "@types/node": 12.20.55 bignumber.js: 9.1.2 web3-core-helpers: 1.3.6 web3-core-method: 1.3.6 @@ -65138,8 +81776,8 @@ snapshots: web3-core@1.5.2: dependencies: - '@types/bn.js': 4.11.6 - '@types/node': 12.20.55 + "@types/bn.js": 4.11.6 + "@types/node": 12.20.55 bignumber.js: 9.1.2 web3-core-helpers: 1.5.2 web3-core-method: 1.5.2 @@ -65150,13 +81788,13 @@ snapshots: web3-eth-abi@1.3.6: dependencies: - '@ethersproject/abi': 5.0.7 + "@ethersproject/abi": 5.0.7 underscore: 1.12.1 web3-utils: 1.3.6 web3-eth-abi@1.5.2: dependencies: - '@ethersproject/abi': 5.0.7 + "@ethersproject/abi": 5.0.7 web3-utils: 1.5.2 web3-eth-accounts@1.3.6: @@ -65177,8 +81815,8 @@ snapshots: web3-eth-accounts@1.5.2: dependencies: - '@ethereumjs/common': 2.6.5 - '@ethereumjs/tx': 3.5.2 + "@ethereumjs/common": 2.6.5 + "@ethereumjs/tx": 3.5.2 crypto-browserify: 3.12.0 eth-lib: 0.2.8 ethereumjs-util: 7.1.5 @@ -65193,7 +81831,7 @@ snapshots: web3-eth-contract@1.3.6: dependencies: - '@types/bn.js': 4.11.6 + "@types/bn.js": 4.11.6 underscore: 1.12.1 web3-core: 1.3.6 web3-core-helpers: 1.3.6 @@ -65207,7 +81845,7 @@ snapshots: web3-eth-contract@1.5.2: dependencies: - '@types/bn.js': 4.11.6 + "@types/bn.js": 4.11.6 web3-core: 1.5.2 web3-core-helpers: 1.5.2 web3-core-method: 1.5.2 @@ -65257,7 +81895,7 @@ snapshots: web3-eth-personal@1.3.6: dependencies: - '@types/node': 12.20.55 + "@types/node": 12.20.55 web3-core: 1.3.6 web3-core-helpers: 1.3.6 web3-core-method: 1.3.6 @@ -65268,7 +81906,7 @@ snapshots: web3-eth-personal@1.5.2: dependencies: - '@types/node': 12.20.55 + "@types/node": 12.20.55 web3-core: 1.5.2 web3-core-helpers: 1.5.2 web3-core-method: 1.5.2 @@ -65445,7 +82083,7 @@ snapshots: webpack-bundle-analyzer@4.10.2: dependencies: - '@discoveryjs/json-ext': 0.5.7 + "@discoveryjs/json-ext": 0.5.7 acorn: 8.11.3 acorn-walk: 8.3.2 commander: 7.2.0 @@ -65468,10 +82106,10 @@ snapshots: webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0): dependencies: - '@discoveryjs/json-ext': 0.5.7 - '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack@5.91.0(webpack-cli@4.10.0)) - '@webpack-cli/info': 1.5.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0)) - '@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0)) + "@discoveryjs/json-ext": 0.5.7 + "@webpack-cli/configtest": 1.2.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack@5.91.0(webpack-cli@4.10.0)) + "@webpack-cli/info": 1.5.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0)) + "@webpack-cli/serve": 1.7.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0)) colorette: 2.0.20 commander: 7.2.0 cross-spawn: 7.0.3 @@ -65484,14 +82122,14 @@ snapshots: optionalDependencies: webpack-dev-server: 4.15.2(webpack-cli@4.10.0)(webpack@5.91.0) - webpack-dev-middleware@5.3.4(webpack@5.91.0(metro@0.80.8)): + webpack-dev-middleware@5.3.4(webpack@5.91.0(metro@0.80.12)): dependencies: colorette: 2.0.20 memfs: 3.5.3 mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.2.0 - webpack: 5.91.0(metro@0.80.8) + webpack: 5.91.0(metro@0.80.12) webpack-dev-middleware@5.3.4(webpack@5.91.0(webpack-cli@4.10.0)): dependencies: @@ -65521,7 +82159,7 @@ snapshots: optionalDependencies: webpack: 5.94.0(@swc/core@1.4.11)(esbuild@0.19.12) - webpack-dev-middleware@6.1.2(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8)): + webpack-dev-middleware@6.1.2(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)): dependencies: colorette: 2.0.20 memfs: 3.5.3 @@ -65529,17 +82167,17 @@ snapshots: range-parser: 1.2.1 schema-utils: 4.2.0 optionalDependencies: - webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.8) + webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.12) webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0): dependencies: - '@types/bonjour': 3.5.13 - '@types/connect-history-api-fallback': 1.5.4 - '@types/express': 4.17.21 - '@types/serve-index': 1.9.4 - '@types/serve-static': 1.15.5 - '@types/sockjs': 0.3.36 - '@types/ws': 8.5.10 + "@types/bonjour": 3.5.13 + "@types/connect-history-api-fallback": 1.5.4 + "@types/express": 4.17.21 + "@types/serve-index": 1.9.4 + "@types/serve-static": 1.15.5 + "@types/sockjs": 0.3.36 + "@types/ws": 8.5.10 ansi-html-community: 0.0.8 bonjour-service: 1.2.1 chokidar: 3.6.0 @@ -65571,15 +82209,15 @@ snapshots: - supports-color - utf-8-validate - webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.8)): + webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12)): dependencies: - '@types/bonjour': 3.5.13 - '@types/connect-history-api-fallback': 1.5.4 - '@types/express': 4.17.21 - '@types/serve-index': 1.9.4 - '@types/serve-static': 1.15.5 - '@types/sockjs': 0.3.36 - '@types/ws': 8.5.10 + "@types/bonjour": 3.5.13 + "@types/connect-history-api-fallback": 1.5.4 + "@types/express": 4.17.21 + "@types/serve-index": 1.9.4 + "@types/serve-static": 1.15.5 + "@types/sockjs": 0.3.36 + "@types/ws": 8.5.10 ansi-html-community: 0.0.8 bonjour-service: 1.2.1 chokidar: 3.6.0 @@ -65601,10 +82239,10 @@ snapshots: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack-dev-middleware: 5.3.4(webpack@5.91.0(metro@0.80.8)) + webpack-dev-middleware: 5.3.4(webpack@5.91.0(metro@0.80.12)) ws: 8.18.0 optionalDependencies: - webpack: 5.91.0(metro@0.80.8) + webpack: 5.91.0(metro@0.80.12) transitivePeerDependencies: - bufferutil - supports-color @@ -65612,13 +82250,13 @@ snapshots: webpack-dev-server@4.15.2(webpack@5.94.0): dependencies: - '@types/bonjour': 3.5.13 - '@types/connect-history-api-fallback': 1.5.4 - '@types/express': 4.17.21 - '@types/serve-index': 1.9.4 - '@types/serve-static': 1.15.5 - '@types/sockjs': 0.3.36 - '@types/ws': 8.5.10 + "@types/bonjour": 3.5.13 + "@types/connect-history-api-fallback": 1.5.4 + "@types/express": 4.17.21 + "@types/serve-index": 1.9.4 + "@types/serve-static": 1.15.5 + "@types/sockjs": 0.3.36 + "@types/ws": 8.5.10 ansi-html-community: 0.0.8 bonjour-service: 1.2.1 chokidar: 3.6.0 @@ -65655,10 +82293,10 @@ snapshots: html-entities: 2.5.2 strip-ansi: 6.0.1 - webpack-manifest-plugin@4.1.1(webpack@5.91.0(metro@0.80.8)): + webpack-manifest-plugin@4.1.1(webpack@5.91.0(metro@0.80.12)): dependencies: tapable: 2.2.1 - webpack: 5.91.0(metro@0.80.8) + webpack: 5.91.0(metro@0.80.12) webpack-sources: 2.3.1 webpack-manifest-plugin@4.1.1(webpack@5.94.0): @@ -65693,11 +82331,11 @@ snapshots: webpack@5.91.0(esbuild@0.19.12): dependencies: - '@types/eslint-scope': 3.7.7 - '@types/estree': 1.0.5 - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/wasm-edit': 1.12.1 - '@webassemblyjs/wasm-parser': 1.12.1 + "@types/eslint-scope": 3.7.7 + "@types/estree": 1.0.5 + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/wasm-edit": 1.12.1 + "@webassemblyjs/wasm-parser": 1.12.1 acorn: 8.11.3 acorn-import-assertions: 1.9.0(acorn@8.11.3) browserslist: 4.23.0 @@ -65718,18 +82356,18 @@ snapshots: watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: - - '@swc/core' + - "@swc/core" - esbuild - metro - uglify-js - webpack@5.91.0(metro@0.80.8): + webpack@5.91.0(metro@0.80.12): dependencies: - '@types/eslint-scope': 3.7.7 - '@types/estree': 1.0.5 - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/wasm-edit': 1.12.1 - '@webassemblyjs/wasm-parser': 1.12.1 + "@types/eslint-scope": 3.7.7 + "@types/estree": 1.0.5 + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/wasm-edit": 1.12.1 + "@webassemblyjs/wasm-parser": 1.12.1 acorn: 8.11.3 acorn-import-assertions: 1.9.0(acorn@8.11.3) browserslist: 4.23.0 @@ -65746,22 +82384,22 @@ snapshots: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(metro@0.80.8)(webpack@5.91.0(metro@0.80.8)) + terser-webpack-plugin: 5.3.10(metro@0.80.12)(webpack@5.91.0(metro@0.80.12)) watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: - - '@swc/core' + - "@swc/core" - esbuild - metro - uglify-js webpack@5.91.0(webpack-cli@4.10.0): dependencies: - '@types/eslint-scope': 3.7.7 - '@types/estree': 1.0.5 - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/wasm-edit': 1.12.1 - '@webassemblyjs/wasm-parser': 1.12.1 + "@types/eslint-scope": 3.7.7 + "@types/estree": 1.0.5 + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/wasm-edit": 1.12.1 + "@webassemblyjs/wasm-parser": 1.12.1 acorn: 8.11.3 acorn-import-assertions: 1.9.0(acorn@8.11.3) browserslist: 4.23.0 @@ -65784,17 +82422,17 @@ snapshots: optionalDependencies: webpack-cli: 4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0) transitivePeerDependencies: - - '@swc/core' + - "@swc/core" - esbuild - metro - uglify-js webpack@5.94.0: dependencies: - '@types/estree': 1.0.5 - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/wasm-edit': 1.12.1 - '@webassemblyjs/wasm-parser': 1.12.1 + "@types/estree": 1.0.5 + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/wasm-edit": 1.12.1 + "@webassemblyjs/wasm-parser": 1.12.1 acorn: 8.11.3 acorn-import-attributes: 1.9.5(acorn@8.11.3) browserslist: 4.23.0 @@ -65815,17 +82453,17 @@ snapshots: watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: - - '@swc/core' + - "@swc/core" - esbuild - metro - uglify-js webpack@5.94.0(@swc/core@1.4.11)(esbuild@0.19.12): dependencies: - '@types/estree': 1.0.5 - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/wasm-edit': 1.12.1 - '@webassemblyjs/wasm-parser': 1.12.1 + "@types/estree": 1.0.5 + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/wasm-edit": 1.12.1 + "@webassemblyjs/wasm-parser": 1.12.1 acorn: 8.11.3 acorn-import-attributes: 1.9.5(acorn@8.11.3) browserslist: 4.23.0 @@ -65846,17 +82484,17 @@ snapshots: watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: - - '@swc/core' + - "@swc/core" - esbuild - metro - uglify-js - webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8): + webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12): dependencies: - '@types/estree': 1.0.5 - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/wasm-edit': 1.12.1 - '@webassemblyjs/wasm-parser': 1.12.1 + "@types/estree": 1.0.5 + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/wasm-edit": 1.12.1 + "@webassemblyjs/wasm-parser": 1.12.1 acorn: 8.11.3 acorn-import-attributes: 1.9.5(acorn@8.11.3) browserslist: 4.23.0 @@ -65873,21 +82511,21 @@ snapshots: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(@swc/core@1.4.11)(metro@0.80.8)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.8)) + terser-webpack-plugin: 5.3.10(@swc/core@1.4.11)(metro@0.80.12)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)) watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: - - '@swc/core' + - "@swc/core" - esbuild - metro - uglify-js webpack@5.94.0(esbuild@0.19.12): dependencies: - '@types/estree': 1.0.5 - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/wasm-edit': 1.12.1 - '@webassemblyjs/wasm-parser': 1.12.1 + "@types/estree": 1.0.5 + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/wasm-edit": 1.12.1 + "@webassemblyjs/wasm-parser": 1.12.1 acorn: 8.11.3 acorn-import-attributes: 1.9.5(acorn@8.11.3) browserslist: 4.23.0 @@ -65908,17 +82546,17 @@ snapshots: watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: - - '@swc/core' + - "@swc/core" - esbuild - metro - uglify-js - webpack@5.94.0(metro@0.80.8): + webpack@5.94.0(metro@0.80.12): dependencies: - '@types/estree': 1.0.5 - '@webassemblyjs/ast': 1.12.1 - '@webassemblyjs/wasm-edit': 1.12.1 - '@webassemblyjs/wasm-parser': 1.12.1 + "@types/estree": 1.0.5 + "@webassemblyjs/ast": 1.12.1 + "@webassemblyjs/wasm-edit": 1.12.1 + "@webassemblyjs/wasm-parser": 1.12.1 acorn: 8.11.3 acorn-import-attributes: 1.9.5(acorn@8.11.3) browserslist: 4.23.0 @@ -65935,11 +82573,11 @@ snapshots: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.10(metro@0.80.8)(webpack@5.94.0(metro@0.80.8)) + terser-webpack-plugin: 5.3.10(metro@0.80.12)(webpack@5.94.0(metro@0.80.12)) watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: - - '@swc/core' + - "@swc/core" - esbuild - metro - uglify-js @@ -66090,8 +82728,8 @@ snapshots: winston@3.13.0: dependencies: - '@colors/colors': 1.6.0 - '@dabh/diagnostics': 2.0.3 + "@colors/colors": 1.6.0 + "@dabh/diagnostics": 2.0.3 async: 3.2.5 is-stream: 2.0.1 logform: 2.6.0 @@ -66124,14 +82762,14 @@ snapshots: workbox-build@6.6.0: dependencies: - '@apideck/better-ajv-errors': 0.3.6(ajv@8.16.0) - '@babel/core': 7.24.3 - '@babel/preset-env': 7.24.3(@babel/core@7.24.3) - '@babel/runtime': 7.25.0 - '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.3)(rollup@2.79.1) - '@rollup/plugin-node-resolve': 11.2.1(rollup@2.79.1) - '@rollup/plugin-replace': 2.4.2(rollup@2.79.1) - '@surma/rollup-plugin-off-main-thread': 2.2.3 + "@apideck/better-ajv-errors": 0.3.6(ajv@8.16.0) + "@babel/core": 7.24.3 + "@babel/preset-env": 7.24.3(@babel/core@7.24.3) + "@babel/runtime": 7.25.0 + "@rollup/plugin-babel": 5.3.1(@babel/core@7.24.3)(rollup@2.79.1) + "@rollup/plugin-node-resolve": 11.2.1(rollup@2.79.1) + "@rollup/plugin-replace": 2.4.2(rollup@2.79.1) + "@surma/rollup-plugin-off-main-thread": 2.2.3 ajv: 8.16.0 common-tags: 1.8.2 fast-json-stable-stringify: 2.1.0 @@ -66162,7 +82800,7 @@ snapshots: workbox-sw: 6.6.0 workbox-window: 6.6.0 transitivePeerDependencies: - - '@types/babel__core' + - "@types/babel__core" - metro - supports-color @@ -66231,13 +82869,13 @@ snapshots: webpack-sources: 1.4.3 workbox-build: 6.6.0 transitivePeerDependencies: - - '@types/babel__core' + - "@types/babel__core" - metro - supports-color workbox-window@6.6.0: dependencies: - '@types/trusted-types': 2.0.7 + "@types/trusted-types": 2.0.7 workbox-core: 6.6.0 wrap-ansi@3.0.1: @@ -66490,6 +83128,10 @@ snapshots: compress-commons: 5.0.3 readable-stream: 3.6.2 + zod-validation-error@2.1.0(zod@3.23.8): + dependencies: + zod: 3.23.8 + zod@3.22.4: {} zod@3.23.8: {} @@ -66498,11 +83140,11 @@ snapshots: zx@7.2.3: dependencies: - '@types/fs-extra': 11.0.4 - '@types/minimist': 1.2.5 - '@types/node': 18.19.26 - '@types/ps-tree': 1.1.6 - '@types/which': 3.0.3 + "@types/fs-extra": 11.0.4 + "@types/minimist": 1.2.5 + "@types/node": 18.19.26 + "@types/ps-tree": 1.1.6 + "@types/which": 3.0.3 chalk: 5.3.0 fs-extra: 11.1.1 fx: 34.0.0 From 442ef28697cb624ca829c13bcc8b54e1ea79fdc8 Mon Sep 17 00:00:00 2001 From: Kant Date: Wed, 16 Oct 2024 20:09:02 +0200 Subject: [PATCH 14/57] test: fix missing expect on dapp test --- .../tests/specs/services/dapp.spec.ts | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/apps/ledger-live-desktop/tests/specs/services/dapp.spec.ts b/apps/ledger-live-desktop/tests/specs/services/dapp.spec.ts index e737e6f24c5c..b05134173e2d 100644 --- a/apps/ledger-live-desktop/tests/specs/services/dapp.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/services/dapp.spec.ts @@ -17,7 +17,7 @@ test.describe("Metamask Test Dapp", () => { process.env.MOCK_REMOTE_LIVE_MANIFEST = dummyLiveApp; }); - test("Wallet API methods @smoke", async ({ page, electronApp }) => { + test("Dapp Browser methods @smoke", async ({ page, electronApp }) => { const discoverPage = new DiscoverPage(page); const drawer = new Drawer(page); const modal = new Modal(page); @@ -34,15 +34,19 @@ test.describe("Metamask Test Dapp", () => { // Checks that we support EIP 6963 await webview.click("#provider > button"); - webview.getByText("Name: Ledger Live"); - webview.getByText("Network: 1"); - webview.getByText("ChainId: 0x1"); - webview.getByText("Accounts: 0x6EB963EFD0FEF7A4CFAB6CE6F1421C3279D11707"); + await expect(webview.getByText("Name: Ledger Live")).toBeVisible(); + await expect(webview.getByText("Network: 1")).toBeVisible(); + await expect(webview.getByText("ChainId: 0x1")).toBeVisible(); + await expect( + webview.getByText("Accounts: 0x6EB963EFD0FEF7A4CFAB6CE6F1421C3279D11707"), + ).toBeVisible(); // Checks that getAccounts returns the correct account await webview.click("#getAccounts"); - webview.getByText("eth_accounts result: 0x6EB963EFD0FEF7A4CFAB6CE6F1421C3279D11707"); + await expect( + webview.getByText("eth_accounts result: 0x6EB963EFD0FEF7A4CFAB6CE6F1421C3279D11707"), + ).toBeVisible(); // Checks that personalSign works await webview.click("#personalSign"); From 3b7bb922038bd98613f65c9267fa52446617cdf6 Mon Sep 17 00:00:00 2001 From: Lucas Werey <73439207+LucasWerey@users.noreply.github.com> Date: Thu, 17 Oct 2024 14:22:53 +0200 Subject: [PATCH 15/57] :sparkles:(lld): add description from ledgerstatus to currency warning (#8124) --- .changeset/wet-cars-perform.md | 5 +++++ .../src/renderer/components/CurrencyDownStatusAlert.tsx | 5 ++++- .../src/renderer/components/ErrorBanner.tsx | 9 ++++++++- apps/ledger-live-desktop/static/i18n/en/app.json | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) create mode 100644 .changeset/wet-cars-perform.md diff --git a/.changeset/wet-cars-perform.md b/.changeset/wet-cars-perform.md new file mode 100644 index 000000000000..5b26a3f6650c --- /dev/null +++ b/.changeset/wet-cars-perform.md @@ -0,0 +1,5 @@ +--- +"ledger-live-desktop": patch +--- + +Add the description from ledgerstatus to currencydownstatusalert so we have a better description of the error diff --git a/apps/ledger-live-desktop/src/renderer/components/CurrencyDownStatusAlert.tsx b/apps/ledger-live-desktop/src/renderer/components/CurrencyDownStatusAlert.tsx index fd755f8e0cc6..17dda8b2ccec 100644 --- a/apps/ledger-live-desktop/src/renderer/components/CurrencyDownStatusAlert.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/CurrencyDownStatusAlert.tsx @@ -10,6 +10,7 @@ type Props = { const ServiceStatusWarning = createCustomErrorClass("ServiceStatusWarning"); const CurrencyDownStatusAlert = ({ currencies, hideStatusIncidents }: Props) => { const errors: Error[] = []; + const { incidents } = useFilteredServiceStatus({ tickers: currencies.map(c => c.ticker), }); @@ -17,7 +18,9 @@ const CurrencyDownStatusAlert = ({ currencies, hideStatusIncidents }: Props) => incidents .filter(c => c.components && c.components.length > 0) .forEach(inc => { - errors.push(new ServiceStatusWarning(inc.name)); + errors.push( + new ServiceStatusWarning(inc.name, { description: inc.incident_updates?.[0].body }), + ); }); return errors.length > 0 ? (
diff --git a/apps/ledger-live-desktop/src/renderer/components/ErrorBanner.tsx b/apps/ledger-live-desktop/src/renderer/components/ErrorBanner.tsx index da70c09e6865..1975eb7d5c9c 100644 --- a/apps/ledger-live-desktop/src/renderer/components/ErrorBanner.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/ErrorBanner.tsx @@ -14,6 +14,8 @@ type Props = { const ErrorBanner = ({ error, warning, fallback }: Props) => { const maybeUrl = error ? urls.errors[String(error?.name)] : null; + const secondLink = !!maybeUrl; + return ( { learnMoreUrl={maybeUrl} mb={4} > - + ); }; diff --git a/apps/ledger-live-desktop/static/i18n/en/app.json b/apps/ledger-live-desktop/static/i18n/en/app.json index 97aeb1abb99b..c9f00baaf7f2 100644 --- a/apps/ledger-live-desktop/static/i18n/en/app.json +++ b/apps/ledger-live-desktop/static/i18n/en/app.json @@ -6161,7 +6161,7 @@ }, "ServiceStatusWarning": { "title": "{{message}}", - "description": "" + "description": "{{description}}" }, "TaprootNotActivated": { "title": "Sending to a taproot address is unsafe before mainnet activation" From d6c9096968692b64d12c6bd81e8daa48f55793b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Prohaszka?= <104785785+sprohaszka-ledger@users.noreply.github.com> Date: Thu, 17 Oct 2024 14:49:44 +0200 Subject: [PATCH 16/57] Add TON support for Swap (and Exchange in general) (#7952) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(swap): add support of ton Signed-off-by: Stéphane Prohaszka * fix(swap): infinite loader with DISABLE_BROADCAST activated Signed-off-by: Stéphane Prohaszka * fix: rebase issue Signed-off-by: Stéphane Prohaszka * chore: revert some undesired modification Signed-off-by: Stéphane Prohaszka * chore: feedback Signed-off-by: Stéphane Prohaszka * fix: lint issue Signed-off-by: Stéphane Prohaszka * chore: revert pnpm-lock file Signed-off-by: Stéphane Prohaszka * chore: changelog Signed-off-by: Stéphane Prohaszka --------- Signed-off-by: Stéphane Prohaszka --- .changeset/small-drinks-explain.md | 8 + .../Exchange/CompleteExchange/Body.tsx | 4 +- .../src/exchange/providers/index.ts | 12 +- .../src/exchange/providers/swap.ts | 17 +- .../src/exchange/swap/utils/index.ts | 2 +- .../exchange/testCurrencyConfig/data/coins.ts | 5 + .../src/families/ton/exchange.ts | 16 + .../src/generated/exchange.ts | 2 + .../packages/hw-app-exchange/package.json | 1 + .../src/Exchange.integ.test.ts | 271 +- .../packages/hw-app-exchange/src/Exchange.ts | 2 + pnpm-lock.yaml | 61649 ++++++---------- turbo.json | 8 +- 13 files changed, 23023 insertions(+), 38974 deletions(-) create mode 100644 .changeset/small-drinks-explain.md create mode 100644 libs/ledger-live-common/src/families/ton/exchange.ts diff --git a/.changeset/small-drinks-explain.md b/.changeset/small-drinks-explain.md new file mode 100644 index 000000000000..39b0b7a28ac9 --- /dev/null +++ b/.changeset/small-drinks-explain.md @@ -0,0 +1,8 @@ +--- +"@ledgerhq/hw-app-exchange": patch +"ledger-live-desktop": patch +"@ledgerhq/live-common": patch +--- + +Fix issue with infinite loader during swap with legacy swap ui +Add additionnal test to hw-app-exchange diff --git a/apps/ledger-live-desktop/src/renderer/modals/Platform/Exchange/CompleteExchange/Body.tsx b/apps/ledger-live-desktop/src/renderer/modals/Platform/Exchange/CompleteExchange/Body.tsx index b9259ab9ebb1..a11e988b4cd6 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/Platform/Exchange/CompleteExchange/Body.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/Platform/Exchange/CompleteExchange/Body.tsx @@ -210,7 +210,9 @@ const Body = ({ data, onClose }: { data: Data; onClose?: () => void | undefined if (getEnv("DISABLE_TRANSACTION_BROADCAST")) { if (!isSwapTransaction || (isSwapTransaction && !isDemo3Enabled)) { - return onCancel(new DisabledTransactionBroadcastError()); + const error = new DisabledTransactionBroadcastError(); + setError(error); + return onCancel(error); } else { return handleTransactionResult(result, operation); } diff --git a/libs/ledger-live-common/src/exchange/providers/index.ts b/libs/ledger-live-common/src/exchange/providers/index.ts index e0ce5b22e165..3045e9a4a29f 100644 --- a/libs/ledger-live-common/src/exchange/providers/index.ts +++ b/libs/ledger-live-common/src/exchange/providers/index.ts @@ -56,11 +56,14 @@ type TestProvider = { curve: "secp256k1" | "secp256r1"; data: string; }; + service: { + appVersion: number; + name: "swap" | "sell" | "fund"; + }; signature: string; - version: number; }; export function setTestProviderInfo(provider: string) { - const { name, publicKey, signature, version } = JSON.parse(provider) as TestProvider; + const { name, publicKey, signature, service } = JSON.parse(provider) as TestProvider; testProvider = { name, publicKey: { @@ -68,6 +71,9 @@ export function setTestProviderInfo(provider: string) { data: Buffer.from(publicKey.data, "hex"), }, signature: Buffer.from(signature, "hex"), - version, + version: service.appVersion, }; } +export function getTestProviderInfo(): ExchangeProviderNameAndSignature | undefined { + return testProvider; +} diff --git a/libs/ledger-live-common/src/exchange/providers/swap.ts b/libs/ledger-live-common/src/exchange/providers/swap.ts index 3d6275de9765..bb865a6c50f0 100644 --- a/libs/ledger-live-common/src/exchange/providers/swap.ts +++ b/libs/ledger-live-common/src/exchange/providers/swap.ts @@ -1,4 +1,5 @@ -import { ExchangeProviderNameAndSignature } from "."; +import { getEnv } from "@ledgerhq/live-env"; +import { ExchangeProviderNameAndSignature, getTestProviderInfo } from "."; import { isIntegrationTestEnv } from "../swap/utils/isIntegrationTestEnv"; import { getProvidersData } from "./getProvidersData"; import network from "@ledgerhq/live-network"; @@ -226,6 +227,20 @@ let providerDataCache: Record export const getSwapProvider = async ( providerName: string, ): Promise => { + const testProviderInfo = getTestProviderInfo(); + if (getEnv("MOCK_EXCHANGE_TEST_CONFIG") && testProviderInfo) { + return { + needsKYC: false, + needsBearerToken: false, + type: "CEX", + termsOfUseUrl: "https://example.com", + supportUrl: "https://example.com", + mainUrl: "https://example.com", + displayName: providerName, + ...testProviderInfo, + }; + } + const res = await fetchAndMergeProviderData(); if (!res[providerName.toLowerCase()]) { diff --git a/libs/ledger-live-common/src/exchange/swap/utils/index.ts b/libs/ledger-live-common/src/exchange/swap/utils/index.ts index 7543a845154d..c7db92121efd 100644 --- a/libs/ledger-live-common/src/exchange/swap/utils/index.ts +++ b/libs/ledger-live-common/src/exchange/swap/utils/index.ts @@ -61,7 +61,7 @@ export const isRegistrationRequired = async (provider: string): Promise }; export const getProviderName = (provider: string): string => { - const { displayName } = provider ? SWAP_DATA_CDN[provider] : { displayName: "" }; + const { displayName } = SWAP_DATA_CDN[provider] ?? { displayName: "" }; return displayName; }; diff --git a/libs/ledger-live-common/src/exchange/testCurrencyConfig/data/coins.ts b/libs/ledger-live-common/src/exchange/testCurrencyConfig/data/coins.ts index f74d6054f86f..cf1cc04ab375 100644 --- a/libs/ledger-live-common/src/exchange/testCurrencyConfig/data/coins.ts +++ b/libs/ledger-live-common/src/exchange/testCurrencyConfig/data/coins.ts @@ -29,6 +29,11 @@ const coins = [ 0x82, 0x90, 0x4, 0xfe, 0x6f, 0x1d, 0x0, 0x3a, 0x58, ]).toString("hex"), ], + [ + "ton", + "03544f4e03544f4e00", + "3045022100fe1b854d275796f89a7e24ef118767f0660b1883a27834e126ddd22ebb7fccc3022010806932659ea8bf2f46d3d9bac5fb288c2ba7e36ca690f2961a19f7b7f66a43", + ], ]; export default coins; diff --git a/libs/ledger-live-common/src/families/ton/exchange.ts b/libs/ledger-live-common/src/families/ton/exchange.ts new file mode 100644 index 000000000000..4d4d827f3b6a --- /dev/null +++ b/libs/ledger-live-common/src/families/ton/exchange.ts @@ -0,0 +1,16 @@ +import { bip32asBuffer } from "../../crypto"; + +const getSerializedAddressParameters = ( + path: string, +): { + addressParameters: Buffer; +} => { + const addressParameters = bip32asBuffer(path); + return { + addressParameters, + }; +}; + +export default { + getSerializedAddressParameters, +}; diff --git a/libs/ledger-live-common/src/generated/exchange.ts b/libs/ledger-live-common/src/generated/exchange.ts index 5e29ac018ca6..4069d0b18fe4 100644 --- a/libs/ledger-live-common/src/generated/exchange.ts +++ b/libs/ledger-live-common/src/generated/exchange.ts @@ -4,6 +4,7 @@ import polkadot from "../families/polkadot/exchange"; import solana from "../families/solana/exchange"; import stellar from "../families/stellar/exchange"; import tezos from "../families/tezos/exchange"; +import ton from "../families/ton/exchange"; import tron from "../families/tron/exchange"; import xrp from "../families/xrp/exchange"; @@ -14,6 +15,7 @@ export default { solana, stellar, tezos, + ton, tron, xrp, }; diff --git a/libs/ledgerjs/packages/hw-app-exchange/package.json b/libs/ledgerjs/packages/hw-app-exchange/package.json index 1b63dd34b394..9872c72ecb54 100644 --- a/libs/ledgerjs/packages/hw-app-exchange/package.json +++ b/libs/ledgerjs/packages/hw-app-exchange/package.json @@ -37,6 +37,7 @@ "@ledgerhq/hw-transport-node-speculos-http": "workspace:^", "@types/jest": "^29.5.10", "@types/node": "^20.8.10", + "bip32-path": "^0.4.2", "documentation": "14.0.2", "jest": "^29.7.0", "secp256k1": "5.0.0", diff --git a/libs/ledgerjs/packages/hw-app-exchange/src/Exchange.integ.test.ts b/libs/ledgerjs/packages/hw-app-exchange/src/Exchange.integ.test.ts index 283d4400f50a..7001b8cced06 100644 --- a/libs/ledgerjs/packages/hw-app-exchange/src/Exchange.integ.test.ts +++ b/libs/ledgerjs/packages/hw-app-exchange/src/Exchange.integ.test.ts @@ -1,3 +1,4 @@ +import bippath from "bip32-path"; import SpeculosTransportHttp from "@ledgerhq/hw-transport-node-speculos-http"; import Exchange, { ExchangeTypes, PartnerKeyInfo } from "./Exchange"; import Transport from "@ledgerhq/hw-transport"; @@ -127,8 +128,13 @@ describe("Check SWAP until payload signature", () => { const estimatedFees = new BigNumber(0); await exchange.processTransaction(encodedPayload, estimatedFees, "jws"); + console.log("DEBUG - SWAP partner encoded payload:", encodedPayload.toString("hex")); const payloadSignature = await signMessage(encodedPayload, partnerPrivKey, "rs"); + console.log( + "DEBUG - SWAP partner payload signature:", + Buffer.from(payloadSignature).toString("hex"), + ); await exchange.checkTransactionSignature(payloadSignature); }); @@ -143,9 +149,12 @@ describe("Check SWAP until payload signature", () => { expect(transactionId).toEqual(expect.any(String)); expect(transactionId).toHaveLength(64); - const { partnerInfo, partnerSigned } = await appExchangeDataset(ngSignFormat); + const { partnerInfo, partnerSigned, apdu } = await appExchangeDataset(ngSignFormat); await exchange.setPartnerKey(partnerInfo); + console.log("DEBUG - Swap partner APDU:", apdu.toString("hex")); + console.log("DEBUG - Swap partner signed:", Buffer.from(partnerSigned).toString("hex")); + await exchange.checkPartner(partnerSigned); const encodedPayload = Buffer.from( @@ -154,15 +163,97 @@ describe("Check SWAP until payload signature", () => { const estimatedFees = new BigNumber(0); await exchange.processTransaction(encodedPayload, estimatedFees, "jws"); + console.log("DEBUG - SWAP partner encoded payload:", encodedPayload.toString("hex")); // const payloadSignature = await signMessage(encodedPayload, partnerPrivKey, "rs"); const payloadSignature = Buffer.from( "zGcNUYKM8sLxvT7zPU1C8vrMmanVlUroELnAeil4weo1LCk0zUBRse5-3Acv7I7II90xVTIxm26BnxRbZvVmTQ==", "base64url", ); + console.log( + "DEBUG - SWAP partner payload signature:", + Buffer.from(payloadSignature).toString("hex"), + ); await exchange.checkTransactionSignature(payloadSignature); }); + it("NG SWAP with TON", async () => { + // Given + const exchange = new Exchange(transport, ExchangeTypes.SwapNg); + + // When + const transactionId = await exchange.startNewTransaction(); + + // Then + expect(transactionId).toEqual(expect.any(String)); + expect(transactionId).toHaveLength(64); + + const { partnerInfo, partnerSigned, apdu, partnerPrivKey } = + await appExchangeDatasetTest(ngSignFormat); + await exchange.setPartnerKey(partnerInfo); + + console.log("DEBUG - Swap partner APDU:", apdu.toString("hex")); + console.log("DEBUG - Swap partner signed:", Buffer.from(partnerSigned).toString("hex")); + + await exchange.checkPartner(partnerSigned); + + const amount = new BigNumber(100); + const amountToWallet = new BigNumber(1_000); + // Extra properties have a limited size of 20 (i.e. app-exchange/src/proto/protocol.options) + let encodedPayload = await generateSwapPayloadProtobuf({ + payinAddress: "UQAbvs2tCnsTWxCZX7JW-dqlk0vM8x_m8aJqF4wwRWGtTEZD", + refundAddress: "UQAbvs2tCnsTWxCZX7JW-dqlk0vM8x_m8aJqF4wwRWGtTEZD", + payoutAddress: "0x66c4371aE8FFeD2ec1c2EBbbcCfb7E494181E1E3", + // payinAddress: "UQCa_2bcwBt5eH9gOMgHC497nyfjgSl8hGpZ90O7B17WHA==", + // refundAddress: "UQCa_2bcwBt5eH9gOMgHC497nyfjgSl8hGpZ90O7B17WHA==", + // payoutAddress: "0xDad77910DbDFdE764fC21FCD4E74D71bBACA6D8D", + currencyFrom: "TON", + currencyTo: "ETH", + amountToProvider: Buffer.from(amount.toString(16), "hex"), + amountToWallet: Buffer.from(amountToWallet.toString(16), "hex"), + deviceTransactionIdNg: Buffer.from(transactionId.padStart(32, "0"), "hex"), + }); + encodedPayload = convertToJWSPayload(encodedPayload); + + const estimatedFees = new BigNumber(0); + await exchange.processTransaction(encodedPayload, estimatedFees, "jws"); + console.log("DEBUG - SWAP partner encoded payload:", encodedPayload.toString("hex")); + + const payloadSignature = await signMessage(encodedPayload, partnerPrivKey, "rs"); + console.log( + "DEBUG - SWAP partner payload signature:", + Buffer.from(payloadSignature).toString("hex"), + ); + await exchange.checkTransactionSignature(payloadSignature); + + const configEth = { + config: Buffer.from("0345544808457468657265756d050345544812", "hex"), + signature: Buffer.from( + "3044022065d7931ab3144362d57e3fdcc5de921fb65024737d917f0ab1f8b173d1ed3c2e022027493568d112dc53c7177f8e5fc915d91a903780a067badf109085a73d360323", + "hex", + ), + }; + let addressParameters = bip32asBuffer("44'/60'/0'/0/0"); + await exchange.validatePayoutOrAsset(configEth.config, configEth.signature, addressParameters); + + const delay = (milliseconds: number) => { + return new Promise(resolve => { + setTimeout(resolve, milliseconds); + }); + }; + await delay(500); + + const configTon = { + config: Buffer.from("03544f4e03544f4e00", "hex"), + signature: Buffer.from( + "3045022100b35be5d1ad0d71572b5f3d72b40766521d5492fad6ed54289a64488bec3344a902205b522b7b8c7c800826bcd0bda092e84db5d1c23f6061c8b57c8efb3641d243a7", + "hex", + ), + }; + addressParameters = bip32asBuffer("44'/607'/0'/0'/0'/0'"); + await exchange.checkRefundAddress(configTon.config, configTon.signature, addressParameters); + }); + it("NG Sell", async () => { // Given const exchange = new Exchange(transport, ExchangeTypes.SellNg); @@ -174,11 +265,11 @@ describe("Check SWAP until payload signature", () => { expect(transactionId).toEqual(expect.any(String)); expect(transactionId).toHaveLength(64); - const { partnerInfo, partnerSigned, partnerPrivKey } = + const { partnerInfo, partnerSigned, partnerPrivKey, apdu } = await appExchangeSellDataset(ngSignFormat); await exchange.setPartnerKey(partnerInfo); - console.log("DEBUG - Sell partner info:", partnerInfo); - console.log("DEBUG - Sell partner info:", partnerInfo.publicKey.toString("hex")); + console.log("DEBUG - Sell partner pubkey:", partnerInfo.publicKey.toString("hex")); + console.log("DEBUG - Sell partner APDU:", apdu.toString("hex")); console.log("DEBUG - Sell partner signed:", Buffer.from(partnerSigned).toString("hex")); await exchange.checkPartner(partnerSigned); @@ -200,12 +291,160 @@ describe("Check SWAP until payload signature", () => { const estimatedFees = new BigNumber(0); await exchange.processTransaction(encodedPayload, estimatedFees, "jws"); + console.log("DEBUG - SELL partner encoded payload:", encodedPayload.toString("hex")); const payloadSignature = await signMessage(encodedPayload, partnerPrivKey, "rs"); + console.log( + "DEBUG - SELL partner payload signature:", + Buffer.from(payloadSignature).toString("hex"), + ); await exchange.checkTransactionSignature(payloadSignature); }); }); +describe("Test internal sign and verification functionality", () => { + describe("With Ledger keys", () => { + const privKey = Buffer.from( + "b1ed47ef58f782e2bc4d5abe70ef66d9009c2957967017054470e0f3e10f5833", + "hex", + ); + const pubKey = Buffer.from( + "0420da62003c0ce097e33644a10fe4c30454069a4454f0fa9d4e84f45091429b5220af9e35c0b2d9289380137307de4dd1d418428cf21a93b33561bb09d88fe579", + "hex", + ); + + test("simple signature", async () => { + // Given + const msg = "Something important to cipher"; + + // When + const sig = await signMessage(Buffer.from(msg), privKey, "rs"); + console.log("DEBUG - Test internal: message signature", Buffer.from(sig).toString("hex")); + + // Then + const hashBuffer = await subtle.digest("SHA-256", Buffer.from(msg)); + const hash = new Uint8Array(hashBuffer); + expect(secp256k1.ecdsaVerify(sig, hash, pubKey)).toBeTruthy(); + }); + test("APDU signature generated by this test suite", async () => { + // Given + const msg = + "0953454c4c5f54455354000478d5facdae2305f48795d3ce7d9244f5060d2f800901da5746d1f4177ae8d7bbe63f3870efc0d36af8f91962811e1d8d9df91ce3b3ea2cd9f550c7d465f8b7b3"; + + // When + const sig = Buffer.from( + "30440220471b035b40dafa095d615998c82202b2bd00fb45670b828f1dda3b68e5b24cc3022022a1c64d02b8c14e1e4cc2d05b00234642c11db3d4461ff5366f5af337cf0ced", + "hex", + ); + console.log("DEBUG - Test internal: message signature", Buffer.from(sig).toString("hex")); + + // Then + const hashBuffer = await subtle.digest("SHA-256", Buffer.from(msg, "hex")); + const hash = new Uint8Array(hashBuffer); + expect(secp256k1.ecdsaVerify(convertSignatureFromDER(sig), hash, pubKey)).toBeTruthy(); + }); + test("APDU signature generated by external tool", async () => { + // Given + // {"name":"TEST_PROVIDER","payloadSignatureComputedFormat":"jws","publicKey":{"curve":"secp256r1","data":"047c13debdb9e1afac5a82bbe78da6dca98a2e59af8a9a3f827acb8ed325c79a6c5749eff65d4e3470bd2995def771f45426c58eada7227d536feeffb58fa71c24"},"service":{"appVersion":2,"name":"swap"},"signature":"3045022072e6773318af531e478c40f53815d2fa0a1c06c49519bb693ff234662fb6558802210083ab26162da41d3c429dd10051f565440576193031eb0590a9ea200af987f062"} + const msg = + "0d544553545f50524f564944455201047c13debdb9e1afac5a82bbe78da6dca98a2e59af8a9a3f827acb8ed325c79a6c5749eff65d4e3470bd2995def771f45426c58eada7227d536feeffb58fa71c24"; + const apdu = ngSignFormat({ + name: "TEST_PROVIDER", + curve: "secp256r1", + publicKey: Buffer.from( + "047c13debdb9e1afac5a82bbe78da6dca98a2e59af8a9a3f827acb8ed325c79a6c5749eff65d4e3470bd2995def771f45426c58eada7227d536feeffb58fa71c24", + "hex", + ), + // signatureComputedFormat?: PayloadSignatureComputedFormat; + }); + console.log("DEBUG - Test internal: expected APDU to sign\t", apdu.toString("hex")); + console.log("DEBUG - Test internal: APDU to sign\t", msg); + + // When + // const sig = Buffer.from( + // "3045022068e5971fdad78583e7bb28adac09212108966fd2ed4f8ad206499bca59f0ad12022100aed715d306f772524b805dd4f91afc79b4bda1a14f91d90ea78739e05461d6c7", + // "hex", + // ); + const sig = await signMessage(Buffer.from(msg, "hex"), LEDGER_FAKE_PRIVATE_KEY, "der"); + console.log("DEBUG - Test internal: message signature", Buffer.from(sig).toString("hex")); + + // Then + const hashBuffer = await subtle.digest("SHA-256", Buffer.from(msg, "hex")); + const hash = new Uint8Array(hashBuffer); + expect(secp256k1.ecdsaVerify(convertSignatureFromDER(sig), hash, pubKey)).toBeTruthy(); + }); + test("APDU signature already validated", async () => { + // Given + const msg = legacySignFormat({ + name: "Coinify", + curve: "secp256r1", + publicKey: Buffer.from( + "044f22668f5f321d3784266c932a2a3141c3ec196ddd51f42cf975267eda23d3a8b02170e4c5c70536e7d03ba4e66ee3e1f9d65e772d3217871a830a7cf60da366", + "hex", + ), + // signatureComputedFormat?: PayloadSignatureComputedFormat; + }); + console.log("DEBUG - Test internal: APDU to sign", msg.toString("hex")); + + // When + const sig = Buffer.from( + "30450221008e8b2172ddd48e196dbff81ebe8aebc4ec0988f72de1b02da202f3a8d8f33f9c02205273c1d426aeb460fd36a27696aafda68bdff4139886f29e558895ea85527749", + "hex", + ); + // const sig = await signMessage(Buffer.from(msg, "hex"), LEDGER_FAKE_PRIVATE_KEY, "der"); + console.log("DEBUG - Test internal: message signature", Buffer.from(sig).toString("hex")); + + // Then + const hashBuffer = await subtle.digest("SHA-256", msg); + const hash = new Uint8Array(hashBuffer); + expect(secp256k1.ecdsaVerify(convertSignatureFromDER(sig), hash, pubKey)).toBeTruthy(); + }); + }); + + describe("With SELL keys", () => { + const privKey = Buffer.from( + "308f6a5369aea611d89abf937d0ffaf0b43b457d42cbf0cf754786b3088f17ae", + "hex", + ); + const pubKey = Buffer.from( + "0478d5facdae2305f48795d3ce7d9244f5060d2f800901da5746d1f4177ae8d7bbe63f3870efc0d36af8f91962811e1d8d9df91ce3b3ea2cd9f550c7d465f8b7b3", + "hex", + ); + + test("SELL private and public K1 key pair", async () => { + // Given + const msg = "Something important to cipher"; + + // When + const sig = await signMessage(Buffer.from(msg), privKey, "rs"); + console.log("DEBUG - Test internal: message signature", Buffer.from(sig).toString("hex")); + + // Then + const hashBuffer = await subtle.digest("SHA-256", Buffer.from(msg)); + const hash = new Uint8Array(hashBuffer); + expect(secp256k1.ecdsaVerify(sig, hash, pubKey)).toBeTruthy(); + }); + + test("SELL verify payload signature", async () => { + // Given + const msg = + "2e436735305a584e305147786c5a47646c6369356d636849445256524947674959616949714d48686b4e6a6b79513249784d7a51324d6a5979526a55344e4551784e304930516a51334d446b314e4455774d5759324e7a4531595467794b674e465656497942416f41454145364944554b366779583930667830506467675559557048556a674273613633304c79377169705052722d42684c"; + + // When + const sig = Buffer.from( + "348e938ce75c06da9a27652c2af6146b4581f948c600b4f7093743e8af256d172324131dcc852f068d0bd20afd0c8444bc635e9520d3a29cab7ff7c27dc8b782", + "hex", + ); + console.log("DEBUG - Test internal: message signature", Buffer.from(sig).toString("hex")); + + // Then + const hashBuffer = await subtle.digest("SHA-256", Buffer.from(msg, "hex")); + const hash = new Uint8Array(hashBuffer); + expect(secp256k1.ecdsaVerify(sig, hash, pubKey)).toBeTruthy(); + }); + }); +}); + // Those information comes from dataset test of app-exchange (i.e. check signing_authority.py file). // The public key is bundle with DEBUG version of app-exchange. const LEDGER_FAKE_PRIVATE_KEY = Buffer.from( @@ -221,11 +460,15 @@ const legacySignFormat: PartnerSignFormat = (info: PartnerKeyInfo) => { info.publicKey, ]); }; +const curves = { + secp256k1: 0x00, + secp256r1: 0x01, +}; const ngSignFormat: PartnerSignFormat = (info: PartnerKeyInfo) => { return Buffer.concat([ Buffer.from([info.name.length]), Buffer.from(info.name, "ascii"), - Buffer.from([0x00]), + Buffer.from([curves[info.curve]]), info.publicKey, ]); }; @@ -250,6 +493,7 @@ async function appExchangeDatasetTest(signFormat: PartnerSignFormat) { return { partnerInfo, + apdu: msg, partnerSigned: sig, partnerPrivKey: privKey, }; @@ -272,6 +516,7 @@ async function appExchangeDataset(signFormat: PartnerSignFormat) { return { partnerInfo, + apdu: msg, partnerSigned: sig, }; } @@ -297,6 +542,7 @@ async function appExchangeSellDataset(signFormat: PartnerSignFormat) { return { partnerInfo, + apdu: msg, partnerSigned: sig, partnerPrivKey: privKey, }; @@ -384,3 +630,18 @@ function convertSignatureToDER(sig: Uint8Array): Buffer { function convertToJWSPayload(raw: Buffer): Buffer { return Buffer.from("." + raw.toString("base64url")); } + +function convertSignatureFromDER(sig: Uint8Array): Buffer { + return secp256k1.signatureImport(sig); +} + +function bip32asBuffer(path: string): Buffer { + const pathElements = !path ? [] : bippath.fromString(path).toPathArray(); + + const buffer = Buffer.alloc(1 + pathElements.length * 4); + buffer[0] = pathElements.length; + pathElements.forEach((element, index) => { + buffer.writeUInt32BE(element, 1 + 4 * index); + }); + return buffer; +} diff --git a/libs/ledgerjs/packages/hw-app-exchange/src/Exchange.ts b/libs/ledgerjs/packages/hw-app-exchange/src/Exchange.ts index 2a2a84f44ffc..b8b452f1e4b5 100644 --- a/libs/ledgerjs/packages/hw-app-exchange/src/Exchange.ts +++ b/libs/ledgerjs/packages/hw-app-exchange/src/Exchange.ts @@ -31,6 +31,8 @@ const PROCESS_TRANSACTION_RESPONSE = 0x06; const CHECK_TRANSACTION_SIGNATURE = 0x07; const CHECK_PAYOUT_ADDRESS = 0x08; const CHECK_REFUND_ADDRESS = 0x09; +// const CHECK_REFUND_ADDRESS_AND_DISPLAY = 0x09; +// const CHECK_REFUND_ADDRESS_NO_DISPLAY = 0x0c; const SIGN_COIN_TRANSACTION = 0x0a; const CHECK_ASSET_IN_AND_DISPLAY = 0x0b; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 744ed7792fbe..33808e633846 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: "9.0" +lockfileVersion: '9.0' settings: autoInstallPeers: false @@ -7,22 +7,22 @@ settings: overrides: stellar-base>sodium-native: ^3.2.1 remove-flow-types-loader>flow-remove-types: ^2 - remove-flow-types-loader>loader-utils: "*" - "@ledgerhq/devices": workspace:* + remove-flow-types-loader>loader-utils: '*' + '@ledgerhq/devices': workspace:* tslib: 2.6.2 - "@hashgraph/sdk>@grpc/grpc-js": 1.6.7 - "@hashgraph/sdk>@hashgraph/cryptography": 1.1.2 - "@ethersproject/providers>ws": 7.5.10 + '@hashgraph/sdk>@grpc/grpc-js': 1.6.7 + '@hashgraph/sdk>@hashgraph/cryptography': 1.1.2 + '@ethersproject/providers>ws': 7.5.10 packageExtensionsChecksum: bcc0ac67c2d7bcc88fe46412ebcf46be pnpmfileChecksum: ju3gjuq3tfou7jpj6cwyr6jtr4 patchedDependencies: - "@changesets/get-github-info@0.6.0": + '@changesets/get-github-info@0.6.0': hash: 7jzpsqogb5i6art53pk3h33ix4 path: patches/@changesets__get-github-info@0.6.0.patch - "@hashgraph/sdk@2.14.2": + '@hashgraph/sdk@2.14.2': hash: ftpe7kgiykw2quxzn7vgiqumd4 path: patches/@hashgraph__sdk@2.14.2.patch asyncstorage-down@4.2.0: @@ -57,33 +57,34 @@ patchedDependencies: path: patches/usb@2.9.0.patch importers: + .: devDependencies: - "@changesets/changelog-github": + '@changesets/changelog-github': specifier: ^0.5.0 version: 0.5.0 - "@changesets/cli": + '@changesets/cli': specifier: ^2.26.0 version: 2.27.7 - "@commitlint/cli": + '@commitlint/cli': specifier: ^17.4.2 version: 17.8.1 - "@commitlint/config-conventional": + '@commitlint/config-conventional': specifier: ^17.6.5 version: 17.8.1 - "@commitlint/prompt-cli": + '@commitlint/prompt-cli': specifier: ^17.4.2 version: 17.8.1 - "@ledgerhq/create-release-hash": + '@ledgerhq/create-release-hash': specifier: workspace:* version: link:tools/create-release-hash - "@ledgerhq/pnpm-utils": + '@ledgerhq/pnpm-utils': specifier: workspace:* version: link:tools/pnpm-utils - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^6.2.0 version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^6.2.0 version: 6.21.0(eslint@8.57.0)(typescript@5.4.3) chalk: @@ -125,73 +126,73 @@ importers: apps/cli: dependencies: - "@ledgerhq/coin-bitcoin": + '@ledgerhq/coin-bitcoin': specifier: workspace:^ version: link:../../libs/coin-modules/coin-bitcoin - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../libs/coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/cryptoassets - "@ledgerhq/device-core": + '@ledgerhq/device-core': specifier: workspace:^ version: link:../../libs/device-core - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../libs/ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/errors - "@ledgerhq/hw-app-btc": + '@ledgerhq/hw-app-btc': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-app-btc - "@ledgerhq/hw-ledger-key-ring-protocol": + '@ledgerhq/hw-ledger-key-ring-protocol': specifier: workspace:^ version: link:../../libs/hw-ledger-key-ring-protocol - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport - "@ledgerhq/hw-transport-http": + '@ledgerhq/hw-transport-http': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-http - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-mocker - "@ledgerhq/hw-transport-node-hid": + '@ledgerhq/hw-transport-node-hid': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-node-hid - "@ledgerhq/hw-transport-node-speculos": + '@ledgerhq/hw-transport-node-speculos': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-node-speculos - "@ledgerhq/hw-transport-node-speculos-http": + '@ledgerhq/hw-transport-node-speculos-http': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-node-speculos-http - "@ledgerhq/ledger-key-ring-protocol": + '@ledgerhq/ledger-key-ring-protocol': specifier: workspace:^ version: link:../../libs/ledger-key-ring-protocol - "@ledgerhq/live-common": + '@ledgerhq/live-common': specifier: workspace:^ version: link:../../libs/ledger-live-common - "@ledgerhq/live-config": + '@ledgerhq/live-config': specifier: workspace:^ version: link:../../libs/live-config - "@ledgerhq/live-countervalues": + '@ledgerhq/live-countervalues': specifier: workspace:^ version: link:../../libs/live-countervalues - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../../libs/env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../libs/live-network - "@ledgerhq/live-wallet": + '@ledgerhq/live-wallet': specifier: workspace:^ version: link:../../libs/live-wallet - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/logs - "@ledgerhq/types-devices": + '@ledgerhq/types-devices': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-devices asciichart: @@ -246,22 +247,22 @@ importers: specifier: ^8.6.0 version: 8.17.1 devDependencies: - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-live - "@types/command-line-args": + '@types/command-line-args': specifier: ^5.2.0 version: 5.2.3 - "@types/lodash": + '@types/lodash': specifier: ^4.14.177 version: 4.17.0 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 - "@types/pako": + '@types/pako': specifier: ^2.0.0 version: 2.0.3 ts-node: @@ -270,124 +271,124 @@ importers: apps/ledger-live-desktop: dependencies: - "@braze/web-sdk": + '@braze/web-sdk': specifier: ^4.6.3 version: 4.10.2 - "@ledgerhq/coin-bitcoin": + '@ledgerhq/coin-bitcoin': specifier: workspace:^ version: link:../../libs/coin-modules/coin-bitcoin - "@ledgerhq/coin-cosmos": + '@ledgerhq/coin-cosmos': specifier: workspace:^ version: link:../../libs/coin-modules/coin-cosmos - "@ledgerhq/coin-evm": + '@ledgerhq/coin-evm': specifier: workspace:^ version: link:../../libs/coin-modules/coin-evm - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../libs/coin-framework - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../libs/ledgerjs/packages/devices - "@ledgerhq/domain-service": + '@ledgerhq/domain-service': specifier: workspace:^ version: link:../../libs/domain-service - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/errors - "@ledgerhq/ethereum-provider": + '@ledgerhq/ethereum-provider': specifier: workspace:^ version: link:../../libs/ethereum-provider - "@ledgerhq/hw-ledger-key-ring-protocol": + '@ledgerhq/hw-ledger-key-ring-protocol': specifier: workspace:^ version: link:../../libs/hw-ledger-key-ring-protocol - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport - "@ledgerhq/hw-transport-http": + '@ledgerhq/hw-transport-http': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-http - "@ledgerhq/hw-transport-node-hid-singleton": + '@ledgerhq/hw-transport-node-hid-singleton': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-node-hid-singleton - "@ledgerhq/hw-transport-node-speculos-http": + '@ledgerhq/hw-transport-node-speculos-http': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-node-speculos-http - "@ledgerhq/hw-transport-vault": + '@ledgerhq/hw-transport-vault': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-vault - "@ledgerhq/ledger-key-ring-protocol": + '@ledgerhq/ledger-key-ring-protocol': specifier: workspace:^ version: link:../../libs/ledger-key-ring-protocol - "@ledgerhq/live-common": + '@ledgerhq/live-common': specifier: workspace:^ version: link:../../libs/ledger-live-common - "@ledgerhq/live-config": + '@ledgerhq/live-config': specifier: workspace:^ version: link:../../libs/live-config - "@ledgerhq/live-countervalues": + '@ledgerhq/live-countervalues': specifier: workspace:^ version: link:../../libs/live-countervalues - "@ledgerhq/live-countervalues-react": + '@ledgerhq/live-countervalues-react': specifier: workspace:^ version: link:../../libs/live-countervalues-react - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../../libs/env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../libs/live-network - "@ledgerhq/live-nft": + '@ledgerhq/live-nft': specifier: workspace:^ version: link:../../libs/live-nft - "@ledgerhq/live-nft-react": + '@ledgerhq/live-nft-react': specifier: workspace:^ version: link:../../libs/live-nft-react - "@ledgerhq/live-wallet": + '@ledgerhq/live-wallet': specifier: workspace:^ version: link:../../libs/live-wallet - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/logs - "@ledgerhq/react-ui": + '@ledgerhq/react-ui': specifier: workspace:^ version: link:../../libs/ui/packages/react - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-devices": + '@ledgerhq/types-devices': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-devices - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-live - "@sentry/electron": + '@sentry/electron': specifier: 5.2.0 version: 5.2.0 - "@sentry/node": + '@sentry/node': specifier: 8.16.0 version: 8.16.0 - "@tanstack/react-query": + '@tanstack/react-query': specifier: ^5.28.9 version: 5.28.9(react@18.2.0) - "@tanstack/react-query-devtools": + '@tanstack/react-query-devtools': specifier: ^5.28.9 version: 5.28.14(@tanstack/react-query@5.28.9(react@18.2.0))(react@18.2.0) - "@tippyjs/react": + '@tippyjs/react': specifier: ^4.2.6 version: 4.2.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@trust/keyto": + '@trust/keyto': specifier: ^1.0.1 version: 1.0.1 - "@types/qrcode": + '@types/qrcode': specifier: ^1.5.0 version: 1.5.5 - "@types/react-key-handler": + '@types/react-key-handler': specifier: ^1.2.0 version: 1.2.4(@types/react@18.2.73) - "@types/semver": + '@types/semver': specifier: ^7.3.9 version: 7.5.8 - "@xstate/react": + '@xstate/react': specifier: ^1.6.3 version: 1.6.3(@types/react@18.2.73)(react@18.2.0)(xstate@4.38.3) allure-commandline: @@ -583,133 +584,133 @@ importers: specifier: ^4.30.2 version: 4.38.3 devDependencies: - "@electron/notarize": + '@electron/notarize': specifier: ^2.3.0 version: 2.3.2 - "@jest/globals": + '@jest/globals': specifier: ^29.7.0 version: 29.7.0 - "@ledgerhq/esbuild-utils": + '@ledgerhq/esbuild-utils': specifier: workspace:* version: link:../../tools/esbuild-utils - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-mocker - "@ledgerhq/native-modules-tools": + '@ledgerhq/native-modules-tools': specifier: workspace:* version: link:../../tools/native-modules-tools - "@ledgerhq/speculos-transport": + '@ledgerhq/speculos-transport': specifier: workspace:^ version: link:../../libs/speculos-transport - "@ledgerhq/test-utils": + '@ledgerhq/test-utils': specifier: workspace:^ version: link:../../libs/test-utils - "@octokit/rest": + '@octokit/rest': specifier: ^18.12.0 version: 18.12.0 - "@playwright/test": + '@playwright/test': specifier: ^1.45.0 version: 1.45.0 - "@sentry/cli": + '@sentry/cli': specifier: 2.31.0 version: 2.31.0 - "@sentry/types": + '@sentry/types': specifier: 8.16.0 version: 8.16.0 - "@swc/core": + '@swc/core': specifier: ^1.3.95 version: 1.4.11 - "@swc/jest": + '@swc/jest': specifier: ^0.2.29 version: 0.2.36(@swc/core@1.4.11) - "@testing-library/dom": + '@testing-library/dom': specifier: ^9.3.3 version: 9.3.4 - "@testing-library/jest-dom": + '@testing-library/jest-dom': specifier: ^6.1.5 version: 6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3))) - "@testing-library/react": + '@testing-library/react': specifier: ^14.1.2 version: 14.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@testing-library/user-event": + '@testing-library/user-event': specifier: ^14.5.1 version: 14.5.2(@testing-library/dom@9.3.4) - "@types/chart.js": + '@types/chart.js': specifier: 2.9.41 version: 2.9.41 - "@types/color": + '@types/color': specifier: ^3.0.3 version: 3.0.6 - "@types/invariant": + '@types/invariant': specifier: ^2.2.35 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.14.182 version: 4.17.0 - "@types/react": + '@types/react': specifier: ^18.2.21 version: 18.2.73 - "@types/react-dom": + '@types/react-dom': specifier: ^18.2.13 version: 18.2.23(@types/react@18.2.73) - "@types/react-lottie": + '@types/react-lottie': specifier: ^1.2.6 version: 1.2.10(@types/react@18.2.73) - "@types/react-motion": + '@types/react-motion': specifier: ^0.0.40 version: 0.0.40(@types/react@18.2.73) - "@types/react-redux": + '@types/react-redux': specifier: ^7.1.24 version: 7.1.33(@types/react@18.2.73) - "@types/react-router": + '@types/react-router': specifier: ^5.1.20 version: 5.1.20(@types/react@18.2.73) - "@types/react-router-dom": + '@types/react-router-dom': specifier: ^5.3.2 version: 5.3.3(@types/react@18.2.73) - "@types/react-select": + '@types/react-select': specifier: ^4 version: 4.0.18(@types/react@18.2.73) - "@types/react-transition-group": + '@types/react-transition-group': specifier: ^4.4.2 version: 4.4.10(@types/react@18.2.73) - "@types/react-virtualized-auto-sizer": + '@types/react-virtualized-auto-sizer': specifier: ^1.0.1 version: 1.0.4(@types/react@18.2.73) - "@types/react-window": + '@types/react-window': specifier: ^1.8.5 version: 1.8.8(@types/react@18.2.73) - "@types/react-window-infinite-loader": + '@types/react-window-infinite-loader': specifier: ^1.0.6 version: 1.0.9(@types/react@18.2.73) - "@types/redux-actions": + '@types/redux-actions': specifier: ^2.6.2 version: 2.6.5 - "@types/secp256k1": + '@types/secp256k1': specifier: ^4.0.3 version: 4.0.6 - "@types/serve-handler": + '@types/serve-handler': specifier: ^6.1.1 version: 6.1.4 - "@types/styled-components": + '@types/styled-components': specifier: ^5.1.25 version: 5.1.34(@types/react@18.2.73) - "@types/styled-system": + '@types/styled-system': specifier: ^5.1.16 version: 5.1.22 - "@types/trust__keyto": + '@types/trust__keyto': specifier: ^1.0.0 version: 1.0.4 - "@types/uuid": + '@types/uuid': specifier: ^8.3.4 version: 8.3.4 - "@types/write-file-atomic": + '@types/write-file-atomic': specifier: ^4.0.0 version: 4.0.3 - "@vitejs/plugin-react": + '@vitejs/plugin-react': specifier: ^3.1.0 version: 3.1.0(vite@4.5.3) allure-playwright: @@ -802,184 +803,184 @@ importers: apps/ledger-live-mobile: dependencies: - "@azure/core-asynciterator-polyfill": + '@azure/core-asynciterator-polyfill': specifier: ^1.0.2 version: 1.0.2 - "@braze/react-native-sdk": + '@braze/react-native-sdk': specifier: ^8.3.0 version: 8.4.0 - "@formatjs/intl-locale": + '@formatjs/intl-locale': specifier: ^3.0.0 version: 3.4.5 - "@formatjs/intl-pluralrules": + '@formatjs/intl-pluralrules': specifier: ^5.0.0 version: 5.2.12 - "@formatjs/intl-relativetimeformat": + '@formatjs/intl-relativetimeformat': specifier: ^11.1.8 version: 11.2.12 - "@ledgerhq/coin-cosmos": + '@ledgerhq/coin-cosmos': specifier: workspace:^ version: link:../../libs/coin-modules/coin-cosmos - "@ledgerhq/coin-elrond": + '@ledgerhq/coin-elrond': specifier: workspace:^ version: link:../../libs/coin-modules/coin-elrond - "@ledgerhq/coin-evm": + '@ledgerhq/coin-evm': specifier: workspace:^ version: link:../../libs/coin-modules/coin-evm - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../libs/coin-framework - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../libs/ledgerjs/packages/devices - "@ledgerhq/domain-service": + '@ledgerhq/domain-service': specifier: workspace:^ version: link:../../libs/domain-service - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/errors - "@ledgerhq/ethereum-provider": + '@ledgerhq/ethereum-provider': specifier: workspace:^ version: link:../../libs/ethereum-provider - "@ledgerhq/hw-ledger-key-ring-protocol": + '@ledgerhq/hw-ledger-key-ring-protocol': specifier: workspace:^ version: link:../../libs/hw-ledger-key-ring-protocol - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport - "@ledgerhq/hw-transport-http": + '@ledgerhq/hw-transport-http': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-http - "@ledgerhq/icons-ui": + '@ledgerhq/icons-ui': specifier: workspace:^ version: link:../../libs/ui/packages/icons - "@ledgerhq/ledger-key-ring-protocol": + '@ledgerhq/ledger-key-ring-protocol': specifier: workspace:^ version: link:../../libs/ledger-key-ring-protocol - "@ledgerhq/live-common": + '@ledgerhq/live-common': specifier: workspace:^ version: link:../../libs/ledger-live-common - "@ledgerhq/live-config": + '@ledgerhq/live-config': specifier: workspace:^ version: link:../../libs/live-config - "@ledgerhq/live-countervalues": + '@ledgerhq/live-countervalues': specifier: workspace:^ version: link:../../libs/live-countervalues - "@ledgerhq/live-countervalues-react": + '@ledgerhq/live-countervalues-react': specifier: workspace:^ version: link:../../libs/live-countervalues-react - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../../libs/env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../libs/live-network - "@ledgerhq/live-nft": + '@ledgerhq/live-nft': specifier: workspace:^ version: link:../../libs/live-nft - "@ledgerhq/live-nft-react": + '@ledgerhq/live-nft-react': specifier: workspace:^ version: link:../../libs/live-nft-react - "@ledgerhq/live-wallet": + '@ledgerhq/live-wallet': specifier: workspace:^ version: link:../../libs/live-wallet - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/logs - "@ledgerhq/native-ui": + '@ledgerhq/native-ui': specifier: workspace:^ version: link:../../libs/ui/packages/native - "@ledgerhq/react-native-hid": + '@ledgerhq/react-native-hid': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/react-native-hid - "@ledgerhq/react-native-hw-transport-ble": + '@ledgerhq/react-native-hw-transport-ble': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/react-native-hw-transport-ble - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-devices": + '@ledgerhq/types-devices': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-devices - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-live - "@likashefqet/react-native-image-zoom": + '@likashefqet/react-native-image-zoom': specifier: ^1.3.0 version: 1.3.0(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-reanimated@3.9.0(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@react-native-async-storage/async-storage": + '@react-native-async-storage/async-storage': specifier: ^1.19.2 version: 1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) - "@react-native-clipboard/clipboard": + '@react-native-clipboard/clipboard': specifier: ^1.11.2 version: 1.13.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@react-native-community/netinfo": + '@react-native-community/netinfo': specifier: ^9.3.7 version: 9.5.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) - "@react-native-community/slider": + '@react-native-community/slider': specifier: ^4.4.2 version: 4.5.0 - "@react-native-firebase/app": + '@react-native-firebase/app': specifier: ^14.11.1 version: 14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@react-native-firebase/messaging": + '@react-native-firebase/messaging': specifier: ^14.11.1 version: 14.12.0(@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)) - "@react-native-firebase/remote-config": + '@react-native-firebase/remote-config': specifier: ^14.11.1 version: 14.12.0(@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)) - "@react-native-masked-view/masked-view": + '@react-native-masked-view/masked-view': specifier: ^0.2.6 version: 0.2.9(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@react-native/gradle-plugin": + '@react-native/gradle-plugin': specifier: 0.74.88 version: 0.74.88 - "@react-native/metro-config": + '@react-native/metro-config': specifier: 0.74.88 version: 0.74.88(@babel/core@7.24.3) - "@react-navigation/bottom-tabs": + '@react-navigation/bottom-tabs': specifier: ^6.4.0 version: 6.5.20(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@react-navigation/core": + '@react-navigation/core': specifier: ^6.4.6 version: 6.4.16(react@18.2.0) - "@react-navigation/elements": + '@react-navigation/elements': specifier: ^1.3.6 version: 1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@react-navigation/material-top-tabs": + '@react-navigation/material-top-tabs': specifier: ^6.3.0 version: 6.6.13(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-tab-view@3.5.2(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@react-navigation/native": + '@react-navigation/native': specifier: ^6.0.13 version: 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@react-navigation/native-stack": + '@react-navigation/native-stack': specifier: ^6.9.26 version: 6.9.26(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@react-navigation/stack": + '@react-navigation/stack': specifier: ^6.3.1 version: 6.3.29(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@reduxjs/toolkit": + '@reduxjs/toolkit': specifier: ^2.0.1 version: 2.0.1(react-redux@7.2.9(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@segment/analytics-react-native": + '@segment/analytics-react-native': specifier: ^2.9.1 version: 2.19.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)))(@segment/sovran-react-native@0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-get-random-values@1.11.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@segment/sovran-react-native": + '@segment/sovran-react-native': specifier: ^0.4.5 version: 0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@sentry/react-native": + '@sentry/react-native': specifier: 5.24.3 version: 5.24.3(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@shopify/flash-list": + '@shopify/flash-list': specifier: ^1.6.4 version: 1.6.4(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@shopify/react-native-performance": + '@shopify/react-native-performance': specifier: ^4.1.2 version: 4.1.2(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@shopify/react-native-performance-navigation": + '@shopify/react-native-performance-navigation': specifier: ^3.0.0 version: 3.0.0(bdlxoipflge4zkd3tdq4b64jgq) - "@tanstack/react-query": + '@tanstack/react-query': specifier: ^5.28.9 version: 5.28.9(react@18.2.0) asyncstorage-down: @@ -1250,151 +1251,151 @@ importers: specifier: ^8.3.2 version: 8.3.2 devDependencies: - "@babel/core": + '@babel/core': specifier: ^7.24.3 version: 7.24.3 - "@babel/plugin-proposal-export-namespace-from": + '@babel/plugin-proposal-export-namespace-from': specifier: ^7.18.9 version: 7.18.9(@babel/core@7.24.3) - "@babel/plugin-proposal-nullish-coalescing-operator": + '@babel/plugin-proposal-nullish-coalescing-operator': specifier: ^7.18.6 version: 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-optional-chaining": + '@babel/plugin-proposal-optional-chaining': specifier: ^7.21.0 version: 7.21.0(@babel/core@7.24.3) - "@babel/plugin-transform-arrow-functions": + '@babel/plugin-transform-arrow-functions': specifier: ^7.24.1 version: 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-class-static-block": + '@babel/plugin-transform-class-static-block': specifier: ^7.24.1 version: 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-named-capturing-groups-regex": + '@babel/plugin-transform-named-capturing-groups-regex': specifier: ^7.22.5 version: 7.22.5(@babel/core@7.24.3) - "@babel/plugin-transform-shorthand-properties": + '@babel/plugin-transform-shorthand-properties': specifier: ^7.24.1 version: 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-template-literals": + '@babel/plugin-transform-template-literals': specifier: ^7.24.1 version: 7.24.1(@babel/core@7.24.3) - "@babel/preset-react": + '@babel/preset-react': specifier: ^7.24.1 version: 7.24.1(@babel/core@7.24.3) - "@babel/runtime": + '@babel/runtime': specifier: ^7.24.1 version: 7.24.1 - "@jest/reporters": + '@jest/reporters': specifier: ^29.7.0 version: 29.7.0 - "@ledgerhq/hw-transport-node-speculos-http": + '@ledgerhq/hw-transport-node-speculos-http': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-node-speculos-http - "@ledgerhq/speculos-transport": + '@ledgerhq/speculos-transport': specifier: workspace:^ version: link:../../libs/speculos-transport - "@ledgerhq/test-utils": + '@ledgerhq/test-utils': specifier: workspace:^ version: link:../../libs/test-utils - "@react-native-community/cli": + '@react-native-community/cli': specifier: 13.6.1 version: 13.6.1 - "@react-native-community/cli-platform-android": + '@react-native-community/cli-platform-android': specifier: 13.6.1 version: 13.6.1 - "@react-native-community/cli-platform-ios": + '@react-native-community/cli-platform-ios': specifier: 13.6.1 version: 13.6.1 - "@react-native/babel-preset": + '@react-native/babel-preset': specifier: 0.74.88 version: 0.74.88(@babel/core@7.24.3) - "@react-native/dev-middleware": + '@react-native/dev-middleware': specifier: 0.74.88 version: 0.74.88 - "@sentry/cli": + '@sentry/cli': specifier: 2.31.0 version: 2.31.0 - "@swc/core": + '@swc/core': specifier: ^1.3.95 version: 1.4.11 - "@swc/jest": + '@swc/jest': specifier: ^0.2.29 version: 0.2.36(@swc/core@1.4.11) - "@testing-library/jest-native": + '@testing-library/jest-native': specifier: ^5.4.3 version: 5.4.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0) - "@testing-library/react-native": + '@testing-library/react-native': specifier: ^12.4.5 version: 12.4.5(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0) - "@types/body-parser": + '@types/body-parser': specifier: ^1.19.5 version: 1.19.5 - "@types/color": + '@types/color': specifier: ^3.0.3 version: 3.0.6 - "@types/cors": + '@types/cors': specifier: ^2.8.17 version: 2.8.17 - "@types/d3-array": + '@types/d3-array': specifier: ~2.3.0 version: 2.3.0 - "@types/d3-scale": + '@types/d3-scale': specifier: ^3.2.1 version: 3.3.5 - "@types/d3-shape": + '@types/d3-shape': specifier: ^3.0.2 version: 3.1.6 - "@types/express": + '@types/express': specifier: ^4.17.18 version: 4.17.21 - "@types/hoist-non-react-statics": + '@types/hoist-non-react-statics': specifier: ^3.3.1 version: 3.3.5(@types/react@18.2.73) - "@types/invariant": + '@types/invariant': specifier: ^2.2.35 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.3 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.14.197 version: 4.17.0 - "@types/react": + '@types/react': specifier: ^18.2.21 version: 18.2.73 - "@types/react-native-extra-dimensions-android": + '@types/react-native-extra-dimensions-android': specifier: ^1.2.0 version: 1.2.3 - "@types/react-native-vector-icons": + '@types/react-native-vector-icons': specifier: ^6.4.14 version: 6.4.18(@types/react@18.2.73) - "@types/react-native-video": + '@types/react-native-video': specifier: ^5.0.14 version: 5.0.20(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - "@types/react-redux": + '@types/react-redux': specifier: ^7.1.24 version: 7.1.33(@types/react@18.2.73) - "@types/react-test-renderer": + '@types/react-test-renderer': specifier: ^18.0.3 version: 18.0.7(@types/react@18.2.73) - "@types/redux-actions": + '@types/redux-actions': specifier: ^2.6.2 version: 2.6.5 - "@types/semver": + '@types/semver': specifier: ^7.3.9 version: 7.5.8 - "@types/styled-components": + '@types/styled-components': specifier: ^5.1.25 version: 5.1.34(@types/react@18.2.73) - "@types/styled-components-react-native": + '@types/styled-components-react-native': specifier: ^5.1.3 version: 5.2.5(@types/react@18.2.73) - "@types/styled-system": + '@types/styled-system': specifier: ^5.1.15 version: 5.1.22 - "@types/uuid": + '@types/uuid': specifier: ^8.3.4 version: 8.3.4 - "@types/ws": + '@types/ws': specifier: ^8.5.3 version: 8.5.10 babel-jest: @@ -1502,70 +1503,70 @@ importers: apps/web-tools: dependencies: - "@codemirror/lang-json": + '@codemirror/lang-json': specifier: ^6.0.1 version: 6.0.1 - "@codemirror/view": + '@codemirror/view': specifier: ^6.28.2 version: 6.28.2 - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../libs/coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/cryptoassets - "@ledgerhq/domain-service": + '@ledgerhq/domain-service': specifier: workspace:^ version: link:../../libs/domain-service - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/errors - "@ledgerhq/hw-app-eth": + '@ledgerhq/hw-app-eth': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-app-eth - "@ledgerhq/hw-ledger-key-ring-protocol": + '@ledgerhq/hw-ledger-key-ring-protocol': specifier: workspace:^ version: link:../../libs/hw-ledger-key-ring-protocol - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport - "@ledgerhq/hw-transport-http": + '@ledgerhq/hw-transport-http': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-http - "@ledgerhq/hw-transport-web-ble": + '@ledgerhq/hw-transport-web-ble': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-web-ble - "@ledgerhq/hw-transport-webhid": + '@ledgerhq/hw-transport-webhid': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-webhid - "@ledgerhq/hw-transport-webusb": + '@ledgerhq/hw-transport-webusb': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/hw-transport-webusb - "@ledgerhq/ledger-key-ring-protocol": + '@ledgerhq/ledger-key-ring-protocol': specifier: workspace:^ version: link:../../libs/ledger-key-ring-protocol - "@ledgerhq/live-common": + '@ledgerhq/live-common': specifier: workspace:^ version: link:../../libs/ledger-live-common - "@ledgerhq/live-config": + '@ledgerhq/live-config': specifier: workspace:^ version: link:../../libs/live-config - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../../libs/env - "@ledgerhq/live-wallet": + '@ledgerhq/live-wallet': specifier: workspace:^ version: link:../../libs/live-wallet - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/logs - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../libs/ledgerjs/packages/types-live - "@uiw/react-codemirror": + '@uiw/react-codemirror': specifier: ^4.22.2 version: 4.22.2(@codemirror/view@6.28.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) bignumber.js: @@ -1605,7 +1606,7 @@ importers: specifier: ^18.3.1 version: 18.3.1(react@18.3.1) react-dropzone: - specifier: "14" + specifier: '14' version: 14.2.3(react@18.3.1) react-inspector: specifier: ^4.0.1 @@ -1635,31 +1636,31 @@ importers: specifier: ^6.0.3 version: 6.0.3 devDependencies: - "@types/invariant": + '@types/invariant': specifier: ^2.2.35 version: 2.2.37 - "@types/lodash": + '@types/lodash': specifier: ^4.14.198 version: 4.17.0 - "@types/node": + '@types/node': specifier: 20.8.10 version: 20.8.10 - "@types/qrcode": - specifier: "1" + '@types/qrcode': + specifier: '1' version: 1.5.5 - "@types/react": + '@types/react': specifier: ^18.3.5 version: 18.3.5 - "@types/react-dom": + '@types/react-dom': specifier: ^18.3.0 version: 18.3.0(@types/react@18.3.5) - "@types/react-inspector": + '@types/react-inspector': specifier: ^4.0.2 version: 4.0.6(@types/react@18.3.5) - "@types/react-table": + '@types/react-table': specifier: ^7.7.15 version: 7.7.20(@types/react@18.3.5) - "@types/semver": + '@types/semver': specifier: ^7.3.9 version: 7.5.8 @@ -1681,7 +1682,7 @@ importers: specifier: ^18.2.0 version: 18.2.0(react@18.2.0) devDependencies: - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 eslint-config-next: @@ -1693,28 +1694,28 @@ importers: libs/coin-framework: dependencies: - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../ledgerjs/packages/cryptoassets - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../ledgerjs/packages/errors - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../live-network - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../ledgerjs/packages/logs - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../ledgerjs/packages/types-live bignumber.js: @@ -1739,22 +1740,22 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@ledgerhq/hw-transport-node-speculos": + '@ledgerhq/hw-transport-node-speculos': specifier: workspace:^ version: link:../ledgerjs/packages/hw-transport-node-speculos - "@ledgerhq/hw-transport-node-speculos-http": + '@ledgerhq/hw-transport-node-speculos-http': specifier: workspace:^ version: link:../ledgerjs/packages/hw-transport-node-speculos-http - "@types/invariant": + '@types/invariant': specifier: ^2.2.2 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.14.191 version: 4.17.0 - "@types/numeral": + '@types/numeral': specifier: ^2.0.2 version: 2.0.5 cross-env: @@ -1772,31 +1773,31 @@ importers: libs/coin-modules/coin-algorand: dependencies: - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../ledgerjs/packages/errors - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../../env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../live-network - "@ledgerhq/live-promise": + '@ledgerhq/live-promise': specifier: workspace:^ version: link:../../promise - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../ledgerjs/packages/types-live algo-msgpack-with-bigint: @@ -1824,13 +1825,13 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@types/invariant": + '@types/invariant': specifier: ^2.2.2 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.14.191 version: 4.17.0 jest: @@ -1842,31 +1843,31 @@ importers: libs/coin-modules/coin-bitcoin: dependencies: - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../ledgerjs/packages/errors - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../../env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../live-network - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../../ledgerjs/packages/logs - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../ledgerjs/packages/types-live bchaddrjs: @@ -1927,40 +1928,40 @@ importers: specifier: 1.1.2 version: 1.1.2 devDependencies: - "@types/bchaddrjs": + '@types/bchaddrjs': specifier: ^0.4.3 version: 0.4.3 - "@types/bs58": + '@types/bs58': specifier: ^4.0.1 version: 4.0.4 - "@types/bs58check": + '@types/bs58check': specifier: ^2.1.0 version: 2.1.2 - "@types/cashaddrjs": + '@types/cashaddrjs': specifier: ^0.3.3 version: 0.3.3 - "@types/create-hmac": + '@types/create-hmac': specifier: ^1.1.3 version: 1.1.3 - "@types/invariant": + '@types/invariant': specifier: ^2.2.2 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.14.191 version: 4.17.0 - "@types/object-hash": + '@types/object-hash': specifier: ^2.1.0 version: 2.2.1 - "@types/ripemd160": + '@types/ripemd160': specifier: ^2.0.3 version: 2.0.3 - "@types/secp256k1": + '@types/secp256k1': specifier: ^4.0.3 version: 4.0.6 - "@types/sha.js": + '@types/sha.js': specifier: ^2.4.4 version: 2.4.4 axios: @@ -1987,37 +1988,37 @@ importers: libs/coin-modules/coin-cardano: dependencies: - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../ledgerjs/packages/errors - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../../env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../live-network - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../../ledgerjs/packages/logs - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../ledgerjs/packages/types-live - "@stricahq/bip32ed25519": + '@stricahq/bip32ed25519': specifier: ^1.0.3 version: 1.0.4 - "@stricahq/typhonjs": + '@stricahq/typhonjs': specifier: ^2.0.0 version: 2.0.0 bech32: @@ -2039,13 +2040,13 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@types/invariant": + '@types/invariant': specifier: ^2.2.2 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.14.191 version: 4.17.0 jest: @@ -2057,49 +2058,49 @@ importers: libs/coin-modules/coin-cosmos: dependencies: - "@cosmjs/amino": + '@cosmjs/amino': specifier: ^0.31.1 version: 0.31.3 - "@cosmjs/crypto": + '@cosmjs/crypto': specifier: ^0.31.0 version: 0.31.3 - "@cosmjs/stargate": + '@cosmjs/stargate': specifier: ^0.26.5 version: 0.26.8 - "@keplr-wallet/cosmos": + '@keplr-wallet/cosmos': specifier: ^0.9.16 version: 0.9.16 - "@keplr-wallet/proto-types": + '@keplr-wallet/proto-types': specifier: ^0.12.76 version: 0.12.89 - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../ledgerjs/packages/errors - "@ledgerhq/live-config": + '@ledgerhq/live-config': specifier: workspace:^ version: link:../../live-config - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../../env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../live-network - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../../ledgerjs/packages/logs - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../ledgerjs/packages/types-live axios: @@ -2133,16 +2134,16 @@ importers: specifier: ^7.1.3 version: 7.6.3 devDependencies: - "@types/invariant": + '@types/invariant': specifier: ^2.2.2 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.14.191 version: 4.17.7 - "@types/semver": + '@types/semver': specifier: ^7.5.8 version: 7.5.8 jest: @@ -2154,40 +2155,40 @@ importers: libs/coin-modules/coin-elrond: dependencies: - "@elrondnetwork/erdjs": + '@elrondnetwork/erdjs': specifier: 11.0.0 version: 11.0.0 - "@elrondnetwork/erdjs-network-providers": + '@elrondnetwork/erdjs-network-providers': specifier: ^1.1.2 version: 1.2.0 - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../ledgerjs/packages/errors - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../../env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../live-network - "@ledgerhq/live-promise": + '@ledgerhq/live-promise': specifier: workspace:^ version: link:../../promise - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../../ledgerjs/packages/logs - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../ledgerjs/packages/types-live bech32: @@ -2209,13 +2210,13 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@types/invariant": + '@types/invariant': specifier: ^2.2.37 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.17.7 version: 4.17.7 jest: @@ -2227,37 +2228,37 @@ importers: libs/coin-modules/coin-evm: dependencies: - "@ethersproject/shims": + '@ethersproject/shims': specifier: ^5.7.0 version: 5.7.0 - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../ledgerjs/packages/devices - "@ledgerhq/domain-service": + '@ledgerhq/domain-service': specifier: workspace:^ version: link:../../domain-service - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../ledgerjs/packages/errors - "@ledgerhq/evm-tools": + '@ledgerhq/evm-tools': specifier: workspace:^ version: link:../../evm-tools - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../../env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../live-network - "@ledgerhq/live-promise": + '@ledgerhq/live-promise': specifier: workspace:^ version: link:../../promise - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../../ledgerjs/packages/logs axios: @@ -2291,31 +2292,31 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@ledgerhq/coin-tester": + '@ledgerhq/coin-tester': specifier: workspace:^ version: link:../../coin-tester - "@ledgerhq/hw-app-eth": + '@ledgerhq/hw-app-eth': specifier: workspace:^ version: link:../../ledgerjs/packages/hw-app-eth - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../ledgerjs/packages/types-live - "@types/bluebird": + '@types/bluebird': specifier: ^3.5.42 version: 3.5.42 - "@types/imurmurhash": + '@types/imurmurhash': specifier: ^0.1.4 version: 0.1.4 - "@types/invariant": + '@types/invariant': specifier: ^2.2.2 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.14.191 version: 4.17.0 bluebird: @@ -2354,37 +2355,37 @@ importers: libs/coin-modules/coin-icon: dependencies: - "@faker-js/faker": + '@faker-js/faker': specifier: ^8.4.1 version: 8.4.1 - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../ledgerjs/packages/errors - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../../env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../live-network - "@ledgerhq/live-promise": + '@ledgerhq/live-promise': specifier: workspace:^ version: link:../../promise - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../../ledgerjs/packages/logs - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../ledgerjs/packages/types-live bignumber.js: @@ -2409,13 +2410,13 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@types/invariant": + '@types/invariant': specifier: ^2.2.2 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.14.191 version: 4.17.4 jest: @@ -2427,28 +2428,28 @@ importers: libs/coin-modules/coin-near: dependencies: - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../ledgerjs/packages/errors - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../live-network - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../../ledgerjs/packages/logs - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../ledgerjs/packages/types-live bignumber.js: @@ -2470,13 +2471,13 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@types/invariant": + '@types/invariant': specifier: ^2.2.2 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.14.191 version: 4.17.0 jest: @@ -2488,52 +2489,52 @@ importers: libs/coin-modules/coin-polkadot: dependencies: - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../ledgerjs/packages/errors - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../../env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../live-network - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../../ledgerjs/packages/logs - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../ledgerjs/packages/types-live - "@polkadot/api": + '@polkadot/api': specifier: 11.2.1 version: 11.2.1 - "@polkadot/api-augment": + '@polkadot/api-augment': specifier: 11.2.1 version: 11.2.1 - "@polkadot/api-derive": + '@polkadot/api-derive': specifier: 11.2.1 version: 11.2.1 - "@polkadot/types": + '@polkadot/types': specifier: 11.2.1 version: 11.2.1 - "@polkadot/types-known": + '@polkadot/types-known': specifier: 11.2.1 version: 11.2.1 - "@polkadot/util": + '@polkadot/util': specifier: 12.6.2 version: 12.6.2 - "@polkadot/util-crypto": + '@polkadot/util-crypto': specifier: 12.6.2 version: 12.6.2(@polkadot/util@12.6.2) bignumber.js: @@ -2552,22 +2553,22 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@faker-js/faker": + '@faker-js/faker': specifier: ^8.4.1 version: 8.4.1 - "@ledgerhq/coin-tester": + '@ledgerhq/coin-tester': specifier: workspace:^ version: link:../../coin-tester - "@ledgerhq/hw-app-polkadot": + '@ledgerhq/hw-app-polkadot': specifier: workspace:^ version: link:../../ledgerjs/packages/hw-app-polkadot - "@types/invariant": + '@types/invariant': specifier: ^2.2.2 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.14.191 version: 4.17.0 chalk: @@ -2603,37 +2604,37 @@ importers: libs/coin-modules/coin-solana: dependencies: - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../ledgerjs/packages/errors - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../../env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../live-network - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../../ledgerjs/packages/logs - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../ledgerjs/packages/types-live - "@solana/spl-token": + '@solana/spl-token': specifier: ^0.3.7 version: 0.3.8(@solana/web3.js@1.77.3) - "@solana/web3.js": + '@solana/web3.js': specifier: 1.77.3 version: 1.77.3 bignumber.js: @@ -2661,22 +2662,22 @@ importers: specifier: 0.14.2 version: 0.14.2 devDependencies: - "@faker-js/faker": + '@faker-js/faker': specifier: ^8.4.1 version: 8.4.1 - "@types/bs58": + '@types/bs58': specifier: ^4.0.1 version: 4.0.4 - "@types/invariant": + '@types/invariant': specifier: ^2.2.2 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.14.191 version: 4.17.0 - "@types/object-hash": + '@types/object-hash': specifier: ^2.1.0 version: 2.2.1 jest: @@ -2688,31 +2689,31 @@ importers: libs/coin-modules/coin-stellar: dependencies: - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../ledgerjs/packages/errors - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../live-network - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../../ledgerjs/packages/logs - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../ledgerjs/packages/types-live - "@stellar/stellar-sdk": + '@stellar/stellar-sdk': specifier: ^11.3.0 version: 11.3.0 bignumber.js: @@ -2728,16 +2729,16 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@faker-js/faker": + '@faker-js/faker': specifier: ^8.4.1 version: 8.4.1 - "@types/invariant": + '@types/invariant': specifier: ^2.2.2 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 jest: @@ -2749,40 +2750,40 @@ importers: libs/coin-modules/coin-tezos: dependencies: - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../ledgerjs/packages/errors - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../live-network - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../../ledgerjs/packages/logs - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../ledgerjs/packages/types-live - "@taquito/ledger-signer": + '@taquito/ledger-signer': specifier: ^20.0.1 version: 20.0.1 - "@taquito/rpc": + '@taquito/rpc': specifier: ^20.0.1 version: 20.0.1 - "@taquito/taquito": + '@taquito/taquito': specifier: ^20.0.1 version: 20.0.1 - "@taquito/utils": + '@taquito/utils': specifier: ^20.0.1 version: 20.0.1 bignumber.js: @@ -2804,22 +2805,22 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@faker-js/faker": + '@faker-js/faker': specifier: ^8.4.1 version: 8.4.1 - "@types/blake2b": + '@types/blake2b': specifier: ^2.1.3 version: 2.1.3 - "@types/bs58check": + '@types/bs58check': specifier: ^2.1.2 version: 2.1.2 - "@types/invariant": + '@types/invariant': specifier: ^2.2.37 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.12 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.17.4 version: 4.17.4 jest: @@ -2831,40 +2832,40 @@ importers: libs/coin-modules/coin-ton: dependencies: - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../ledgerjs/packages/errors - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../../env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../live-network - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../../ledgerjs/packages/logs - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../ledgerjs/packages/types-live - "@ton/core": + '@ton/core': specifier: ^0.56.3 version: 0.56.3(@ton/crypto@3.3.0) - "@ton/crypto": + '@ton/crypto': specifier: ^3.3.0 version: 3.3.0 - "@ton/ton": + '@ton/ton': specifier: ^13.11.1 version: 13.11.2(@ton/core@0.56.3(@ton/crypto@3.3.0))(@ton/crypto@3.3.0) bignumber.js: @@ -2889,16 +2890,16 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@types/imurmurhash": + '@types/imurmurhash': specifier: ^0.1.4 version: 0.1.4 - "@types/invariant": + '@types/invariant': specifier: ^2.2.2 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.14.191 version: 4.17.4 jest: @@ -2910,31 +2911,31 @@ importers: libs/coin-modules/coin-tron: dependencies: - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../ledgerjs/packages/errors - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../../env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../live-network - "@ledgerhq/live-promise": + '@ledgerhq/live-promise': specifier: workspace:^ version: link:../../promise - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../../ledgerjs/packages/logs - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../ledgerjs/packages/types-live bignumber.js: @@ -2959,19 +2960,19 @@ importers: specifier: ^5.3.2 version: 5.3.2 devDependencies: - "@agrozyme/types-tronweb": + '@agrozyme/types-tronweb': specifier: ^5.3.2 version: 5.3.2 - "@types/bs58check": + '@types/bs58check': specifier: ^2.1.0 version: 2.1.2 - "@types/invariant": + '@types/invariant': specifier: ^2.2.2 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.14.191 version: 4.17.0 jest: @@ -2989,22 +2990,22 @@ importers: libs/coin-modules/coin-xrp: dependencies: - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/cryptoassets - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../../ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../../ledgerjs/packages/errors - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../../live-network - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../../ledgerjs/packages/types-live bignumber.js: @@ -3023,16 +3024,16 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@faker-js/faker": + '@faker-js/faker': specifier: ^8.4.1 version: 8.4.1 - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../../ledgerjs/packages/types-cryptoassets - "@types/invariant": + '@types/invariant': specifier: ^2.2.37 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.12 version: 29.5.12 dotenv: @@ -3056,7 +3057,7 @@ importers: libs/coin-tester: dependencies: - "@ledgerhq/hw-transport-node-speculos-http": + '@ledgerhq/hw-transport-node-speculos-http': specifier: workspace:^ version: link:../ledgerjs/packages/hw-transport-node-speculos-http axios: @@ -3075,16 +3076,16 @@ importers: specifier: 7.8.1 version: 7.8.1 devDependencies: - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../ledgerjs/packages/types-live - "@types/jest": + '@types/jest': specifier: ^28.1.8 version: 28.1.8 - "@types/node": + '@types/node': specifier: ^18.15.7 version: 18.19.26 jest: @@ -3099,22 +3100,22 @@ importers: libs/device-core: dependencies: - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../ledgerjs/packages/errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../ledgerjs/packages/hw-transport - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../live-network - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../ledgerjs/packages/logs - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../ledgerjs/packages/types-live semver: @@ -3124,19 +3125,19 @@ importers: specifier: ^2.4.11 version: 2.4.11 devDependencies: - "@testing-library/react": - specifier: "14" + '@testing-library/react': + specifier: '14' version: 14.2.2 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 - "@types/semver": + '@types/semver': specifier: 7.5.7 version: 7.5.7 - "@types/sha.js": + '@types/sha.js': specifier: ^2.4.4 version: 2.4.4 jest: @@ -3151,17 +3152,17 @@ importers: libs/device-react: dependencies: - "@ledgerhq/device-core": + '@ledgerhq/device-core': specifier: workspace:^ version: link:../device-core devDependencies: - "@testing-library/react": - specifier: "14" + '@testing-library/react': + specifier: '14' version: 14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 jest: @@ -3182,13 +3183,13 @@ importers: libs/domain-service: dependencies: - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../ledgerjs/packages/errors - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../ledgerjs/packages/logs - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../ledgerjs/packages/types-live axios: @@ -3204,22 +3205,22 @@ importers: specifier: ^18.2.0 version: 18.2.0(react@18.2.0) devDependencies: - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../ledgerjs/packages/types-cryptoassets - "@testing-library/jest-dom": + '@testing-library/jest-dom': specifier: ^6.1.5 version: 6.4.2(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.12.12)) - "@testing-library/react": + '@testing-library/react': specifier: ^14.1.2 version: 14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 - "@types/testing-library__jest-dom": + '@types/testing-library__jest-dom': specifier: ^5.14.5 version: 5.14.9 cross-env: @@ -3250,7 +3251,7 @@ importers: specifier: ^3.10.0 version: 3.11.0 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 jest: @@ -3266,13 +3267,13 @@ importers: specifier: ^3.3.0 version: 3.3.0 devDependencies: - "@rollup/plugin-commonjs": + '@rollup/plugin-commonjs': specifier: ^25.0.7 version: 25.0.7(rollup@4.17.2) - "@rollup/plugin-node-resolve": + '@rollup/plugin-node-resolve': specifier: ^15.2.3 version: 15.2.3(rollup@4.17.2) - "@types/events": + '@types/events': specifier: ^3.0.3 version: 3.0.3 esbuild: @@ -3290,10 +3291,10 @@ importers: libs/evm-tools: dependencies: - "@ledgerhq/cryptoassets-evm-signatures": + '@ledgerhq/cryptoassets-evm-signatures': specifier: workspace:^ version: link:../ledgerjs/packages/cryptoassets-evm-signatures - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../env axios: @@ -3306,19 +3307,19 @@ importers: specifier: 5.7.2 version: 5.7.2 devDependencies: - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../ledgerjs/packages/types-live - "@types/axios": + '@types/axios': specifier: ^0.14.0 version: 0.14.0 - "@types/crypto-js": + '@types/crypto-js': specifier: ^4.1.1 version: 4.2.2 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 jest: @@ -3330,26 +3331,26 @@ importers: libs/exchange-module: dependencies: - "@ledgerhq/wallet-api-client": + '@ledgerhq/wallet-api-client': specifier: ^1.6.0 version: 1.6.0 - "@ledgerhq/wallet-api-core": + '@ledgerhq/wallet-api-core': specifier: ^1.13.0 version: 1.13.0 devDependencies: - "@types/node": + '@types/node': specifier: ^20.2.5 version: 20.12.12 libs/hw-ledger-key-ring-protocol: dependencies: - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:* version: link:../ledgerjs/packages/hw-transport - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:* version: link:../env - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:* version: link:../ledgerjs/packages/logs bip32: @@ -3362,16 +3363,16 @@ importers: specifier: ^5.0.0 version: 5.0.0 tiny-secp256k1: - specifier: "1" + specifier: '1' version: 1.1.6 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/lodash": - specifier: "4" + '@types/lodash': + specifier: '4' version: 4.17.7 - "@types/secp256k1": + '@types/secp256k1': specifier: ^4.0.6 version: 4.0.6 jest: @@ -3383,47 +3384,47 @@ importers: libs/ledger-key-ring-protocol: dependencies: - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:* version: link:../ledgerjs/packages/errors - "@ledgerhq/hw-ledger-key-ring-protocol": + '@ledgerhq/hw-ledger-key-ring-protocol': specifier: workspace:* version: link:../hw-ledger-key-ring-protocol - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:* version: link:../ledgerjs/packages/hw-transport - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:* version: link:../ledgerjs/packages/hw-transport-mocker - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:* version: link:../env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:* version: link:../live-network - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:* version: link:../ledgerjs/packages/logs - "@ledgerhq/speculos-transport": + '@ledgerhq/speculos-transport': specifier: workspace:* version: link:../speculos-transport - "@ledgerhq/types-devices": + '@ledgerhq/types-devices': specifier: workspace:^ version: link:../ledgerjs/packages/types-devices base64-js: - specifier: "1" + specifier: '1' version: 1.5.1 isomorphic-ws: - specifier: "5" + specifier: '5' version: 5.0.0(ws@8.18.0) rxjs: specifier: ^7.8.1 version: 7.8.1 ws: - specifier: "8" + specifier: '8' version: 8.18.0 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 bip39: @@ -3447,259 +3448,259 @@ importers: libs/ledger-live-common: dependencies: - "@blooo/hw-app-acre": + '@blooo/hw-app-acre': specifier: ^1.0.1 version: 1.0.1 - "@cardano-foundation/ledgerjs-hw-app-cardano": + '@cardano-foundation/ledgerjs-hw-app-cardano': specifier: ^7.1.2 version: 7.1.2 - "@celo/connect": + '@celo/connect': specifier: ^3.0.1 version: 3.2.0 - "@celo/contractkit": + '@celo/contractkit': specifier: ^3.0.1 version: 3.2.0 - "@celo/utils": + '@celo/utils': specifier: ^3.0.1 version: 3.2.0 - "@celo/wallet-base": + '@celo/wallet-base': specifier: ^3.0.1 version: 3.2.0 - "@celo/wallet-ledger": + '@celo/wallet-ledger': specifier: ^3.0.1 version: 3.2.0 - "@crypto-org-chain/chain-jslib": + '@crypto-org-chain/chain-jslib': specifier: 1.1.2 version: 1.1.2 - "@dfinity/agent": + '@dfinity/agent': specifier: ^0.21.0 version: 0.21.4(@dfinity/candid@0.21.4(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)))(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)) - "@dfinity/candid": + '@dfinity/candid': specifier: ^0.21.0 version: 0.21.4(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)) - "@dfinity/principal": + '@dfinity/principal': specifier: ^0.15.6 version: 0.15.7(@types/node@20.12.12)(typescript@5.1.3) - "@hashgraph/sdk": + '@hashgraph/sdk': specifier: 2.14.2 version: 2.14.2(patch_hash=ftpe7kgiykw2quxzn7vgiqumd4)(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@ledgerhq/coin-algorand": + '@ledgerhq/coin-algorand': specifier: workspace:^ version: link:../coin-modules/coin-algorand - "@ledgerhq/coin-bitcoin": + '@ledgerhq/coin-bitcoin': specifier: workspace:^ version: link:../coin-modules/coin-bitcoin - "@ledgerhq/coin-cardano": + '@ledgerhq/coin-cardano': specifier: workspace:^ version: link:../coin-modules/coin-cardano - "@ledgerhq/coin-cosmos": + '@ledgerhq/coin-cosmos': specifier: workspace:^ version: link:../coin-modules/coin-cosmos - "@ledgerhq/coin-elrond": + '@ledgerhq/coin-elrond': specifier: workspace:^ version: link:../coin-modules/coin-elrond - "@ledgerhq/coin-evm": + '@ledgerhq/coin-evm': specifier: workspace:^ version: link:../coin-modules/coin-evm - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:^ version: link:../coin-framework - "@ledgerhq/coin-icon": + '@ledgerhq/coin-icon': specifier: workspace:^ version: link:../coin-modules/coin-icon - "@ledgerhq/coin-near": + '@ledgerhq/coin-near': specifier: workspace:^ version: link:../coin-modules/coin-near - "@ledgerhq/coin-polkadot": + '@ledgerhq/coin-polkadot': specifier: workspace:^ version: link:../coin-modules/coin-polkadot - "@ledgerhq/coin-solana": + '@ledgerhq/coin-solana': specifier: workspace:^ version: link:../coin-modules/coin-solana - "@ledgerhq/coin-stellar": + '@ledgerhq/coin-stellar': specifier: workspace:^ version: link:../coin-modules/coin-stellar - "@ledgerhq/coin-tezos": + '@ledgerhq/coin-tezos': specifier: workspace:^ version: link:../coin-modules/coin-tezos - "@ledgerhq/coin-ton": + '@ledgerhq/coin-ton': specifier: workspace:^ version: link:../coin-modules/coin-ton - "@ledgerhq/coin-tron": + '@ledgerhq/coin-tron': specifier: workspace:^ version: link:../coin-modules/coin-tron - "@ledgerhq/coin-xrp": + '@ledgerhq/coin-xrp': specifier: workspace:^ version: link:../coin-modules/coin-xrp - "@ledgerhq/crypto-icons-ui": + '@ledgerhq/crypto-icons-ui': specifier: workspace:^ version: link:../ui/packages/crypto-icons - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../ledgerjs/packages/cryptoassets - "@ledgerhq/device-core": + '@ledgerhq/device-core': specifier: workspace:^ version: link:../device-core - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../ledgerjs/packages/devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../ledgerjs/packages/errors - "@ledgerhq/hw-app-algorand": + '@ledgerhq/hw-app-algorand': specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-algorand - "@ledgerhq/hw-app-btc": + '@ledgerhq/hw-app-btc': specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-btc - "@ledgerhq/hw-app-cosmos": + '@ledgerhq/hw-app-cosmos': specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-cosmos - "@ledgerhq/hw-app-elrond": + '@ledgerhq/hw-app-elrond': specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-elrond - "@ledgerhq/hw-app-eth": + '@ledgerhq/hw-app-eth': specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-eth - "@ledgerhq/hw-app-exchange": + '@ledgerhq/hw-app-exchange': specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-exchange - "@ledgerhq/hw-app-icon": + '@ledgerhq/hw-app-icon': specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-icon - "@ledgerhq/hw-app-near": + '@ledgerhq/hw-app-near': specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-near - "@ledgerhq/hw-app-polkadot": + '@ledgerhq/hw-app-polkadot': specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-polkadot - "@ledgerhq/hw-app-solana": + '@ledgerhq/hw-app-solana': specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-solana - "@ledgerhq/hw-app-str": + '@ledgerhq/hw-app-str': specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-str - "@ledgerhq/hw-app-tezos": + '@ledgerhq/hw-app-tezos': specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-tezos - "@ledgerhq/hw-app-trx": + '@ledgerhq/hw-app-trx': specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-trx - "@ledgerhq/hw-app-vet": + '@ledgerhq/hw-app-vet': specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-vet - "@ledgerhq/hw-app-xrp": + '@ledgerhq/hw-app-xrp': specifier: workspace:^ version: link:../ledgerjs/packages/hw-app-xrp - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../ledgerjs/packages/hw-transport - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../ledgerjs/packages/hw-transport-mocker - "@ledgerhq/live-app-sdk": + '@ledgerhq/live-app-sdk': specifier: ^0.8.1 version: 0.8.2 - "@ledgerhq/live-config": + '@ledgerhq/live-config': specifier: workspace:^ version: link:../live-config - "@ledgerhq/live-countervalues": + '@ledgerhq/live-countervalues': specifier: workspace:^ version: link:../live-countervalues - "@ledgerhq/live-countervalues-react": + '@ledgerhq/live-countervalues-react': specifier: workspace:^ version: link:../live-countervalues-react - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../env - "@ledgerhq/live-hooks": + '@ledgerhq/live-hooks': specifier: workspace:* version: link:../live-hooks - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:^ version: link:../live-network - "@ledgerhq/live-nft": + '@ledgerhq/live-nft': specifier: workspace:^ version: link:../live-nft - "@ledgerhq/live-promise": + '@ledgerhq/live-promise': specifier: workspace:^ version: link:../promise - "@ledgerhq/live-wallet": + '@ledgerhq/live-wallet': specifier: workspace:^ version: link:../live-wallet - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../ledgerjs/packages/logs - "@ledgerhq/speculos-transport": + '@ledgerhq/speculos-transport': specifier: workspace:^ version: link:../speculos-transport - "@ledgerhq/wallet-api-acre-module": + '@ledgerhq/wallet-api-acre-module': specifier: workspace:^ version: link:../wallet-api-acre-module - "@ledgerhq/wallet-api-client": + '@ledgerhq/wallet-api-client': specifier: ^1.6.0 version: 1.6.0 - "@ledgerhq/wallet-api-core": + '@ledgerhq/wallet-api-core': specifier: ^1.13.0 version: 1.13.0 - "@ledgerhq/wallet-api-exchange-module": + '@ledgerhq/wallet-api-exchange-module': specifier: workspace:^ version: link:../exchange-module - "@ledgerhq/wallet-api-server": + '@ledgerhq/wallet-api-server': specifier: ^1.6.0 version: 1.6.0(react@18.2.0)(rxjs@7.8.1) - "@stacks/network": + '@stacks/network': specifier: 6.10.0 version: 6.10.0 - "@stacks/transactions": + '@stacks/transactions': specifier: 6.11.0 version: 6.11.0 - "@stricahq/typhonjs": + '@stricahq/typhonjs': specifier: ^2.0.0 version: 2.0.0 - "@taquito/ledger-signer": + '@taquito/ledger-signer': specifier: ^20.0.0 version: 20.0.0 - "@ton-community/ton-ledger": + '@ton-community/ton-ledger': specifier: ^7.0.1 version: 7.0.1(@ton/core@0.56.3(@ton/crypto@3.3.0)) - "@ton/core": + '@ton/core': specifier: ^0.56.3 version: 0.56.3(@ton/crypto@3.3.0) - "@ton/crypto": + '@ton/crypto': specifier: ^3.3.0 version: 3.3.0 - "@types/bchaddrjs": + '@types/bchaddrjs': specifier: ^0.4.0 version: 0.4.3 - "@types/pako": + '@types/pako': specifier: ^2.0.0 version: 2.0.3 - "@types/qs": + '@types/qs': specifier: ^6.9.7 version: 6.9.14 - "@types/redux-actions": + '@types/redux-actions': specifier: ^2.6.2 version: 2.6.5 - "@xstate/react": + '@xstate/react': specifier: ^1.6.3 version: 1.6.3(@types/react@18.2.73)(react@18.2.0)(xstate@4.38.3) - "@zondax/cbor": + '@zondax/cbor': specifier: v8.1.0-zondax-no-bigint version: 8.1.0-zondax-no-bigint - "@zondax/ledger-casper": + '@zondax/ledger-casper': specifier: ^2.6.1 version: 2.6.1 - "@zondax/ledger-cosmos-js": + '@zondax/ledger-cosmos-js': specifier: 3.0.3 version: 3.0.3(@types/node@20.12.12)(eslint@8.57.0)(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.1.3) - "@zondax/ledger-filecoin": + '@zondax/ledger-filecoin': specifier: ^0.11.2 version: 0.11.2 - "@zondax/ledger-icp": + '@zondax/ledger-icp': specifier: ^0.7.0 version: 0.7.0 - "@zondax/ledger-stacks": + '@zondax/ledger-stacks': specifier: ^1.0.2 version: 1.0.4 async: @@ -3838,52 +3839,52 @@ importers: specifier: ^3.22.4 version: 3.22.4 devDependencies: - "@ledgerhq/device-react": + '@ledgerhq/device-react': specifier: workspace:^ version: link:../device-react - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-devices": + '@ledgerhq/types-devices': specifier: workspace:^ version: link:../ledgerjs/packages/types-devices - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../ledgerjs/packages/types-live - "@solana/web3.js": + '@solana/web3.js': specifier: 1.77.3 version: 1.77.3 - "@svgr/core": + '@svgr/core': specifier: ^5.5.0 version: 5.5.0 - "@tanstack/react-query": + '@tanstack/react-query': specifier: ^5.28.9 version: 5.28.9(react@18.2.0) - "@testing-library/react": + '@testing-library/react': specifier: ^14.1.2 version: 14.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@types/bs58": + '@types/bs58': specifier: ^4.0.1 version: 4.0.4 - "@types/cbor": + '@types/cbor': specifier: ^6.0.0 version: 6.0.0 - "@types/invariant": + '@types/invariant': specifier: ^2.2.36 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.14.179 version: 4.17.0 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 - "@types/react": + '@types/react': specifier: ^18.2.21 version: 18.2.73 - "@types/uuid": + '@types/uuid': specifier: ^8.3.4 version: 8.3.4 benchmark: @@ -3896,7 +3897,7 @@ importers: specifier: ^7.0.3 version: 7.0.3 env-cmd: - specifier: "*" + specifier: '*' version: 10.1.0 eslint-plugin-import: specifier: ^2.28.1 @@ -3971,7 +3972,7 @@ importers: specifier: ^8.3.2 version: 8.3.2 ws: - specifier: "7" + specifier: '7' version: 7.5.10 libs/ledgerjs: @@ -3986,10 +3987,10 @@ importers: specifier: ^4.17.21 version: 4.17.21 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 eslint-plugin-react: @@ -4011,13 +4012,13 @@ importers: specifier: ^5.7.2 version: 5.7.2 devDependencies: - "@tsconfig/recommended": + '@tsconfig/recommended': specifier: ^1.0.6 version: 1.0.6 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 jest: @@ -4038,7 +4039,7 @@ importers: libs/ledgerjs/packages/cryptoassets: dependencies: - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../../../env axios: @@ -4048,19 +4049,19 @@ importers: specifier: ^2.1.2 version: 2.1.2 invariant: - specifier: "2" + specifier: '2' version: 2.2.4 devDependencies: - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../types-cryptoassets - "@types/bs58check": + '@types/bs58check': specifier: ^2.1.0 version: 2.1.2 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4084,20 +4085,20 @@ importers: libs/ledgerjs/packages/cryptoassets-evm-signatures: dependencies: - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../../../env axios: specifier: 1.7.7 version: 1.7.7 devDependencies: - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../types-cryptoassets - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4121,10 +4122,10 @@ importers: libs/ledgerjs/packages/devices: dependencies: - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs rxjs: @@ -4134,13 +4135,13 @@ importers: specifier: ^7.3.5 version: 7.5.4 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 - "@types/semver": + '@types/semver': specifier: ^7.3.9 version: 7.5.8 documentation: @@ -4164,10 +4165,10 @@ importers: libs/ledgerjs/packages/errors: devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4191,10 +4192,10 @@ importers: libs/ledgerjs/packages/hw-app-algorand: dependencies: - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport bip32-path: @@ -4210,13 +4211,13 @@ importers: specifier: ^1.0.3 version: 1.0.3 devDependencies: - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../hw-transport-mocker - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4240,10 +4241,10 @@ importers: libs/ledgerjs/packages/hw-app-btc: dependencies: - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs bip32-path: @@ -4262,13 +4263,13 @@ importers: specifier: ^2.2.4 version: 2.2.4 ripemd160: - specifier: "2" + specifier: '2' version: 2.0.2 semver: specifier: ^7.3.5 version: 7.5.4 sha.js: - specifier: "2" + specifier: '2' version: 2.4.11 tiny-secp256k1: specifier: 1.1.6 @@ -4277,16 +4278,16 @@ importers: specifier: 1.1.2 version: 1.1.2 devDependencies: - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../hw-transport-mocker - "@ledgerhq/hw-transport-node-speculos": + '@ledgerhq/hw-transport-node-speculos': specifier: workspace:^ version: link:../hw-transport-node-speculos - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 axios: @@ -4313,23 +4314,23 @@ importers: libs/ledgerjs/packages/hw-app-cosmos: dependencies: - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport bip32-path: specifier: ^0.4.2 version: 0.4.2 devDependencies: - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../hw-transport-mocker - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4353,10 +4354,10 @@ importers: libs/ledgerjs/packages/hw-app-elrond: dependencies: - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@multiversx/sdk-core": + '@multiversx/sdk-core': specifier: ^13.3.0 version: 13.3.0(bignumber.js@9.1.2)(protobufjs@7.3.2) bignumber.js: @@ -4369,13 +4370,13 @@ importers: specifier: ^7.2.6 version: 7.3.2 devDependencies: - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../hw-transport-mocker - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4399,34 +4400,34 @@ importers: libs/ledgerjs/packages/hw-app-eth: dependencies: - "@ethersproject/abi": + '@ethersproject/abi': specifier: ^5.5.0 version: 5.7.0 - "@ethersproject/rlp": + '@ethersproject/rlp': specifier: ^5.5.0 version: 5.7.0 - "@ledgerhq/cryptoassets-evm-signatures": + '@ledgerhq/cryptoassets-evm-signatures': specifier: workspace:^ version: link:../cryptoassets-evm-signatures - "@ledgerhq/domain-service": + '@ledgerhq/domain-service': specifier: workspace:^ version: link:../../../domain-service - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/evm-tools": + '@ledgerhq/evm-tools': specifier: workspace:^ version: link:../../../evm-tools - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../hw-transport-mocker - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../types-live axios: @@ -4439,10 +4440,10 @@ importers: specifier: ^7.3.5 version: 7.6.2 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4472,10 +4473,10 @@ importers: libs/ledgerjs/packages/hw-app-exchange: dependencies: - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport bignumber.js: @@ -4491,18 +4492,21 @@ importers: specifier: 1.1.2 version: 1.1.2(protobufjs@7.2.5) devDependencies: - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../hw-transport-mocker - "@ledgerhq/hw-transport-node-speculos-http": + '@ledgerhq/hw-transport-node-speculos-http': specifier: workspace:^ version: link:../hw-transport-node-speculos-http - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 + bip32-path: + specifier: ^0.4.2 + version: 0.4.2 documentation: specifier: 14.0.2 version: 14.0.2 @@ -4521,19 +4525,19 @@ importers: libs/ledgerjs/packages/hw-app-helium: dependencies: - "@helium/address": + '@helium/address': specifier: ^4.6.2 version: 4.11.1 - "@helium/proto": + '@helium/proto': specifier: ^1.6.0 version: 1.6.0 - "@helium/transactions": + '@helium/transactions': specifier: ^4.7.5 version: 4.11.1 - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport bignumber.js: @@ -4546,16 +4550,16 @@ importers: specifier: ^5.2.0 version: 5.2.3 devDependencies: - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../hw-transport-mocker - "@ledgerhq/hw-transport-node-speculos": + '@ledgerhq/hw-transport-node-speculos': specifier: workspace:^ version: link:../hw-transport-node-speculos - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 axios: @@ -4582,26 +4586,26 @@ importers: libs/ledgerjs/packages/hw-app-icon: dependencies: - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport bip32-path: specifier: ^0.4.2 version: 0.4.2 devDependencies: - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../hw-transport-mocker - "@ledgerhq/hw-transport-node-speculos": + '@ledgerhq/hw-transport-node-speculos': specifier: workspace:^ version: link:../hw-transport-node-speculos - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4625,20 +4629,20 @@ importers: libs/ledgerjs/packages/hw-app-near: dependencies: - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport near-api-js: specifier: ^3.0.2 version: 3.0.2 devDependencies: - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../hw-transport-mocker - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4662,26 +4666,26 @@ importers: libs/ledgerjs/packages/hw-app-polkadot: dependencies: - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@zondax/ledger-substrate": + '@zondax/ledger-substrate': specifier: ^0.44.2 version: 0.44.2 bip32-path: specifier: ^0.4.2 version: 0.4.2 devDependencies: - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../hw-transport-mocker - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4705,26 +4709,26 @@ importers: libs/ledgerjs/packages/hw-app-solana: dependencies: - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport bip32-path: specifier: ^0.4.2 version: 0.4.2 devDependencies: - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../hw-transport-mocker - "@ledgerhq/hw-transport-node-speculos": + '@ledgerhq/hw-transport-node-speculos': specifier: workspace:^ version: link:../hw-transport-node-speculos - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 axios: @@ -4751,23 +4755,23 @@ importers: libs/ledgerjs/packages/hw-app-str: dependencies: - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport bip32-path: specifier: ^0.4.2 version: 0.4.2 devDependencies: - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../hw-transport-mocker - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4791,7 +4795,7 @@ importers: libs/ledgerjs/packages/hw-app-tezos: dependencies: - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport blake2b: @@ -4804,13 +4808,13 @@ importers: specifier: ^2.2.4 version: 2.2.4 devDependencies: - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../hw-transport-mocker - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4834,17 +4838,17 @@ importers: libs/ledgerjs/packages/hw-app-trx: dependencies: - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport devDependencies: - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../hw-transport-mocker - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4868,29 +4872,29 @@ importers: libs/ledgerjs/packages/hw-app-vet: dependencies: - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:^ version: link:../cryptoassets - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../hw-transport-mocker - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs thor-devkit: specifier: ^2.0.6 version: 2.0.9 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^18.15.3 version: 18.19.26 documentation: @@ -4914,20 +4918,20 @@ importers: libs/ledgerjs/packages/hw-app-xrp: dependencies: - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport bip32-path: specifier: 0.4.2 version: 0.4.2 devDependencies: - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../hw-transport-mocker - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4951,23 +4955,23 @@ importers: libs/ledgerjs/packages/hw-transport: dependencies: - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs events: specifier: ^3.3.0 version: 3.3.0 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -4991,13 +4995,13 @@ importers: libs/ledgerjs/packages/hw-transport-http: dependencies: - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs axios: @@ -5007,10 +5011,10 @@ importers: specifier: ^7.5.2 version: 7.5.10 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5034,20 +5038,20 @@ importers: libs/ledgerjs/packages/hw-transport-mocker: dependencies: - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs rxjs: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5071,19 +5075,19 @@ importers: libs/ledgerjs/packages/hw-transport-node-hid: dependencies: - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@ledgerhq/hw-transport-node-hid-noevents": + '@ledgerhq/hw-transport-node-hid-noevents': specifier: workspace:^ version: link:../hw-transport-node-hid-noevents - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs lodash: @@ -5096,10 +5100,10 @@ importers: specifier: 2.9.0 version: 2.9.0(patch_hash=d5pno5rjlboai2klvccu6wv334) devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5123,29 +5127,29 @@ importers: libs/ledgerjs/packages/hw-transport-node-hid-noevents: dependencies: - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs node-hid: specifier: 2.1.2 version: 2.1.2 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 - "@types/node-hid": + '@types/node-hid': specifier: ^1.3.1 version: 1.3.4 documentation: @@ -5169,19 +5173,19 @@ importers: libs/ledgerjs/packages/hw-transport-node-hid-singleton: dependencies: - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@ledgerhq/hw-transport-node-hid-noevents": + '@ledgerhq/hw-transport-node-hid-noevents': specifier: workspace:^ version: link:../hw-transport-node-hid-noevents - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs node-hid: @@ -5191,10 +5195,10 @@ importers: specifier: 2.9.0 version: 2.9.0(patch_hash=d5pno5rjlboai2klvccu6wv334) devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5218,23 +5222,23 @@ importers: libs/ledgerjs/packages/hw-transport-node-speculos: dependencies: - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs rxjs: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5258,13 +5262,13 @@ importers: libs/ledgerjs/packages/hw-transport-node-speculos-http: dependencies: - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs axios: @@ -5274,10 +5278,10 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5301,20 +5305,20 @@ importers: libs/ledgerjs/packages/hw-transport-vault: dependencies: - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport-http": + '@ledgerhq/hw-transport-http': specifier: workspace:^ version: link:../hw-transport-http - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5338,29 +5342,29 @@ importers: libs/ledgerjs/packages/hw-transport-web-ble: dependencies: - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs rxjs: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 - "@types/web-bluetooth": + '@types/web-bluetooth': specifier: ^0.0.20 version: 0.0.20 documentation: @@ -5384,26 +5388,26 @@ importers: libs/ledgerjs/packages/hw-transport-webhid: dependencies: - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 - "@types/w3c-web-hid": + '@types/w3c-web-hid': specifier: ^1.0.2 version: 1.0.6 documentation: @@ -5427,26 +5431,26 @@ importers: libs/ledgerjs/packages/hw-transport-webusb: dependencies: - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 - "@types/w3c-web-usb": + '@types/w3c-web-usb': specifier: ^1.0.5 version: 1.0.10 documentation: @@ -5470,19 +5474,19 @@ importers: libs/ledgerjs/packages/keyring-eth: dependencies: - "@ledgerhq/coin-evm": + '@ledgerhq/coin-evm': specifier: workspace:^ version: link:../../../coin-modules/coin-evm - "@ledgerhq/context-module": + '@ledgerhq/context-module': specifier: workspace:^ version: link:../context-module - "@ledgerhq/hw-app-eth": + '@ledgerhq/hw-app-eth': specifier: workspace:^ version: link:../hw-app-eth - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:^ version: link:../types-live bignumber.js: @@ -5492,13 +5496,13 @@ importers: specifier: ^5.7.2 version: 5.7.2 devDependencies: - "@tsconfig/recommended": + '@tsconfig/recommended': specifier: ^1.0.6 version: 1.0.6 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 dotenv: @@ -5522,10 +5526,10 @@ importers: libs/ledgerjs/packages/logs: devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5549,26 +5553,26 @@ importers: libs/ledgerjs/packages/react-native-hid: dependencies: - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs rxjs: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5595,16 +5599,16 @@ importers: libs/ledgerjs/packages/react-native-hw-transport-ble: dependencies: - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../devices - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../errors - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../logs react-native-ble-plx: @@ -5617,13 +5621,13 @@ importers: specifier: ^9.0.1 version: 9.0.1 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 - "@types/uuid": + '@types/uuid': specifier: ^9.0.5 version: 9.0.8 documentation: @@ -5647,17 +5651,17 @@ importers: libs/ledgerjs/packages/swift-bridge-hw-app-eth: dependencies: - "@ledgerhq/hw-app-eth": + '@ledgerhq/hw-app-eth': specifier: workspace:^ version: link:../hw-app-eth - "@ledgerhq/swift-bridge-hw-transport-ble": + '@ledgerhq/swift-bridge-hw-transport-ble': specifier: workspace:^ version: link:../swift-bridge-hw-transport-ble devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5681,17 +5685,17 @@ importers: libs/ledgerjs/packages/swift-bridge-hw-app-solana: dependencies: - "@ledgerhq/hw-app-solana": + '@ledgerhq/hw-app-solana': specifier: workspace:^ version: link:../hw-app-solana - "@ledgerhq/swift-bridge-hw-transport-ble": + '@ledgerhq/swift-bridge-hw-transport-ble': specifier: workspace:^ version: link:../swift-bridge-hw-transport-ble devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5715,14 +5719,14 @@ importers: libs/ledgerjs/packages/swift-bridge-hw-transport-ble: dependencies: - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:^ version: link:../hw-transport devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5746,10 +5750,10 @@ importers: libs/ledgerjs/packages/types-cryptoassets: devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 jest: @@ -5770,10 +5774,10 @@ importers: libs/ledgerjs/packages/types-devices: devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5804,16 +5808,16 @@ importers: specifier: ^7.8.1 version: 7.8.1 devDependencies: - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:^ version: link:../types-cryptoassets - "@ledgerhq/types-devices": + '@ledgerhq/types-devices': specifier: workspace:^ version: link:../types-devices - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -5841,20 +5845,20 @@ importers: specifier: ^4.17.21 version: 4.17.21 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.4 version: 29.5.12 - "@types/lodash": + '@types/lodash': specifier: ^4.14.202 version: 4.17.0 - "@types/node": + '@types/node': specifier: ^20.2.5 version: 20.12.12 jest: specifier: ^28.1.1 version: 28.1.3(@types/node@20.12.12) jest-environment-jsdom: - specifier: "28" + specifier: '28' version: 28.1.3 semver: specifier: ^7.3.5 @@ -5865,39 +5869,39 @@ importers: libs/live-countervalues: dependencies: - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:* version: link:../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:* version: link:../ledgerjs/packages/cryptoassets - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:* version: link:../env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:* version: link:../live-network - "@ledgerhq/live-promise": + '@ledgerhq/live-promise': specifier: workspace:* version: link:../promise - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:* version: link:../ledgerjs/packages/logs - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:* version: link:../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:* version: link:../ledgerjs/packages/types-live devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 jest: specifier: ^29.7.0 version: 29.7.0 prando: - specifier: "6" + specifier: '6' version: 6.0.1 ts-jest: specifier: ^29.1.1 @@ -5905,35 +5909,35 @@ importers: libs/live-countervalues-react: dependencies: - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:* version: link:../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:* version: link:../ledgerjs/packages/cryptoassets - "@ledgerhq/live-countervalues": + '@ledgerhq/live-countervalues': specifier: workspace:* version: link:../live-countervalues - "@ledgerhq/live-hooks": + '@ledgerhq/live-hooks': specifier: workspace:* version: link:../live-hooks - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:* version: link:../ledgerjs/packages/logs - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:* version: link:../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:* version: link:../ledgerjs/packages/types-live bignumber.js: - specifier: "9" + specifier: '9' version: 9.1.2 devDependencies: - "@testing-library/react": - specifier: "14" + '@testing-library/react': + specifier: '14' version: 14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 jest: @@ -5954,10 +5958,10 @@ importers: libs/live-hooks: devDependencies: - "@testing-library/react": - specifier: "14" + '@testing-library/react': + specifier: '14' version: 14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 jest: @@ -5978,16 +5982,16 @@ importers: libs/live-network: dependencies: - "@ledgerhq/errors": + '@ledgerhq/errors': specifier: workspace:^ version: link:../ledgerjs/packages/errors - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:^ version: link:../env - "@ledgerhq/live-promise": + '@ledgerhq/live-promise': specifier: workspace:^ version: link:../promise - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../ledgerjs/packages/logs axios: @@ -5997,13 +6001,13 @@ importers: specifier: ^7.14.1 version: 7.18.3 devDependencies: - "@types/invariant": + '@types/invariant': specifier: ^2.2.35 version: 2.2.37 - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 jest: @@ -6015,29 +6019,29 @@ importers: libs/live-nft: dependencies: - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:* version: link:../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:* version: link:../ledgerjs/packages/cryptoassets - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:* version: link:../env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:* version: link:../live-network - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:* version: link:../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:* version: link:../ledgerjs/packages/types-live bignumber.js: - specifier: "9" + specifier: '9' version: 9.1.2 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 jest: @@ -6049,33 +6053,33 @@ importers: libs/live-nft-react: dependencies: - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:* version: link:../coin-framework - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:* version: link:../ledgerjs/packages/cryptoassets - "@ledgerhq/live-nft": + '@ledgerhq/live-nft': specifier: workspace:* version: link:../live-nft - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:* version: link:../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:* version: link:../ledgerjs/packages/types-live devDependencies: - "@tanstack/react-query": + '@tanstack/react-query': specifier: ^5.28.9 version: 5.28.9(react@18.2.0) - "@testing-library/react": - specifier: "14" + '@testing-library/react': + specifier: '14' version: 14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 bignumber.js: - specifier: "9" + specifier: '9' version: 9.1.2 jest: specifier: ^29.7.0 @@ -6095,74 +6099,74 @@ importers: libs/live-wallet: dependencies: - "@ledgerhq/coin-framework": + '@ledgerhq/coin-framework': specifier: workspace:* version: link:../coin-framework - "@ledgerhq/compressjs": + '@ledgerhq/compressjs': specifier: github:LedgerHQ/compressjs#d9e8e4d994923e0ea76a32b97289bcccfe71b82e version: https://codeload.github.com/LedgerHQ/compressjs/tar.gz/d9e8e4d994923e0ea76a32b97289bcccfe71b82e - "@ledgerhq/cryptoassets": + '@ledgerhq/cryptoassets': specifier: workspace:* version: link:../ledgerjs/packages/cryptoassets - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../ledgerjs/packages/devices - "@ledgerhq/ledger-key-ring-protocol": + '@ledgerhq/ledger-key-ring-protocol': specifier: workspace:* version: link:../ledger-key-ring-protocol - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:* version: link:../env - "@ledgerhq/live-network": + '@ledgerhq/live-network': specifier: workspace:* version: link:../live-network - "@ledgerhq/live-promise": + '@ledgerhq/live-promise': specifier: workspace:* version: link:../promise - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:* version: link:../ledgerjs/packages/logs - "@ledgerhq/types-cryptoassets": + '@ledgerhq/types-cryptoassets': specifier: workspace:* version: link:../ledgerjs/packages/types-cryptoassets - "@ledgerhq/types-live": + '@ledgerhq/types-live': specifier: workspace:* version: link:../ledgerjs/packages/types-live base64-js: - specifier: "1" + specifier: '1' version: 1.5.1 bignumber.js: - specifier: "9" + specifier: '9' version: 9.1.2 isomorphic-ws: specifier: ^5.0.0 version: 5.0.0(ws@8.17.1) lodash: - specifier: "4" + specifier: '4' version: 4.17.21 pako: specifier: ^2.0.4 version: 2.1.0 rxjs: - specifier: "7" + specifier: '7' version: 7.8.1 zod: specifier: ^3.22.4 version: 3.22.4 devDependencies: - "@ledgerhq/hw-transport-mocker": + '@ledgerhq/hw-transport-mocker': specifier: workspace:^ version: link:../ledgerjs/packages/hw-transport-mocker - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 - "@types/lodash": - specifier: "4" + '@types/lodash': + specifier: '4' version: 4.17.0 - "@types/pako": + '@types/pako': specifier: ^2.0.0 version: 2.0.3 - "@types/ws": + '@types/ws': specifier: ^8.5.3 version: 8.5.10 jest: @@ -6183,11 +6187,11 @@ importers: libs/promise: dependencies: - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:^ version: link:../ledgerjs/packages/logs devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.10 version: 29.5.12 jest: @@ -6199,26 +6203,26 @@ importers: libs/speculos-transport: dependencies: - "@ledgerhq/devices": + '@ledgerhq/devices': specifier: workspace:* version: link:../ledgerjs/packages/devices - "@ledgerhq/hw-transport-node-speculos": + '@ledgerhq/hw-transport-node-speculos': specifier: workspace:* version: link:../ledgerjs/packages/hw-transport-node-speculos - "@ledgerhq/hw-transport-node-speculos-http": + '@ledgerhq/hw-transport-node-speculos-http': specifier: workspace:* version: link:../ledgerjs/packages/hw-transport-node-speculos-http - "@ledgerhq/live-env": + '@ledgerhq/live-env': specifier: workspace:* version: link:../env - "@ledgerhq/live-promise": + '@ledgerhq/live-promise': specifier: workspace:* version: link:../promise - "@ledgerhq/logs": + '@ledgerhq/logs': specifier: workspace:* version: link:../ledgerjs/packages/logs devDependencies: - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 documentation: @@ -6227,35 +6231,35 @@ importers: libs/test-utils: dependencies: - "@ledgerhq/live-common": + '@ledgerhq/live-common': specifier: workspace:^ version: link:../ledger-live-common serve-handler: specifier: ^6.1.3 version: 6.1.5 devDependencies: - "@types/serve-handler": + '@types/serve-handler': specifier: ^6.1.1 version: 6.1.4 libs/ui: devDependencies: - "@ledgerhq/crypto-icons-ui": + '@ledgerhq/crypto-icons-ui': specifier: workspace:^ version: link:packages/crypto-icons - "@ledgerhq/icons-ui": + '@ledgerhq/icons-ui': specifier: workspace:^ version: link:packages/icons - "@ledgerhq/native-ui": + '@ledgerhq/native-ui': specifier: workspace:^ version: link:packages/native - "@ledgerhq/react-ui": + '@ledgerhq/react-ui': specifier: workspace:^ version: link:packages/react - "@ledgerhq/ui-shared": + '@ledgerhq/ui-shared': specifier: workspace:^ version: link:packages/shared - "@playwright/test": + '@playwright/test': specifier: ~1.40.0 version: 1.40.1 concurrently: @@ -6273,7 +6277,7 @@ importers: libs/ui/examples/next.js: dependencies: - "@ledgerhq/react-ui": + '@ledgerhq/react-ui': specifier: workspace:^ version: link:../../packages/react next: @@ -6286,7 +6290,7 @@ importers: specifier: 18.2.0 version: 18.2.0(react@18.2.0) react-is: - specifier: "*" + specifier: '*' version: 18.2.0 styled-components: specifier: ^5.3.3 @@ -6294,7 +6298,7 @@ importers: libs/ui/examples/webpack.js: dependencies: - "@ledgerhq/react-ui": + '@ledgerhq/react-ui': specifier: workspace:^ version: link:../../packages/react react: @@ -6304,22 +6308,22 @@ importers: specifier: ^18.2.0 version: 18.2.0(react@18.2.0) react-is: - specifier: "*" + specifier: '*' version: 18.2.0 styled-components: specifier: ^5.3.3 version: 5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0) devDependencies: - "@babel/core": + '@babel/core': specifier: ^7.15.8 version: 7.24.3 - "@babel/preset-env": + '@babel/preset-env': specifier: ^7.15.8 version: 7.24.3(@babel/core@7.24.3) - "@babel/preset-react": + '@babel/preset-react': specifier: ^7.14.5 version: 7.24.1(@babel/core@7.24.3) - "@pmmmwh/react-refresh-webpack-plugin": + '@pmmmwh/react-refresh-webpack-plugin': specifier: ^0.5.1 version: 0.5.11(react-refresh@0.10.0)(webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0))(webpack@5.91.0(webpack-cli@4.10.0)) babel-loader: @@ -6352,25 +6356,25 @@ importers: libs/ui/packages/crypto-icons: devDependencies: - "@svgr/core": + '@svgr/core': specifier: ^5.5.0 version: 5.5.0(@svgr/plugin-svgo@5.5.0) - "@svgr/plugin-svgo": + '@svgr/plugin-svgo': specifier: ^5.5.0 version: 5.5.0 - "@types/react": + '@types/react': specifier: ^18.2.21 version: 18.2.73 - "@types/react-dom": + '@types/react-dom': specifier: ^18.2.13 version: 18.2.23(@types/react@18.2.73) - "@types/styled-components": + '@types/styled-components': specifier: ^5.1.14 version: 5.1.34(@types/react@18.2.73) - "@types/styled-components-react-native": + '@types/styled-components-react-native': specifier: ^5.1.3 version: 5.2.5(@types/react@18.2.73) - "@types/styled-system": + '@types/styled-system': specifier: ^5.1.13 version: 5.1.22 camelcase: @@ -6400,25 +6404,25 @@ importers: libs/ui/packages/icons: devDependencies: - "@svgr/core": + '@svgr/core': specifier: ^5.5.0 version: 5.5.0(@svgr/plugin-svgo@5.5.0) - "@svgr/plugin-svgo": + '@svgr/plugin-svgo': specifier: ^5.5.0 version: 5.5.0 - "@types/react": + '@types/react': specifier: ^18.2.21 version: 18.2.73 - "@types/react-dom": + '@types/react-dom': specifier: ^18.2.13 version: 18.2.23(@types/react@18.2.73) - "@types/styled-components": + '@types/styled-components': specifier: ^5.1.14 version: 5.1.34(@types/react@18.2.73) - "@types/styled-components-react-native": + '@types/styled-components-react-native': specifier: ^5.1.3 version: 5.2.5(@types/react@18.2.73) - "@types/styled-system": + '@types/styled-system': specifier: ^5.1.13 version: 5.1.22 camelcase: @@ -6448,13 +6452,13 @@ importers: libs/ui/packages/native: dependencies: - "@ledgerhq/crypto-icons-ui": + '@ledgerhq/crypto-icons-ui': specifier: workspace:^ version: link:../crypto-icons - "@ledgerhq/icons-ui": + '@ledgerhq/icons-ui': specifier: workspace:^ version: link:../icons - "@ledgerhq/ui-shared": + '@ledgerhq/ui-shared': specifier: workspace:^ version: link:../shared color: @@ -6470,139 +6474,139 @@ importers: specifier: ^5.1.5 version: 5.1.5 devDependencies: - "@babel/core": + '@babel/core': specifier: ^7.24.3 version: 7.24.3 - "@babel/generator": + '@babel/generator': specifier: ^7.17.2 version: 7.24.1 - "@babel/plugin-proposal-class-properties": + '@babel/plugin-proposal-class-properties': specifier: ^7.13.0 version: 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-export-namespace-from": + '@babel/plugin-proposal-export-namespace-from': specifier: ^7.16.0 version: 7.18.9(@babel/core@7.24.3) - "@babel/plugin-proposal-nullish-coalescing-operator": + '@babel/plugin-proposal-nullish-coalescing-operator': specifier: ^7.18.6 version: 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-optional-chaining": + '@babel/plugin-proposal-optional-chaining': specifier: ^7.21.0 version: 7.21.0(@babel/core@7.24.3) - "@babel/plugin-transform-arrow-functions": + '@babel/plugin-transform-arrow-functions': specifier: ^7.24.1 version: 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-shorthand-properties": + '@babel/plugin-transform-shorthand-properties': specifier: ^7.24.1 version: 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-template-literals": + '@babel/plugin-transform-template-literals': specifier: ^7.24.1 version: 7.24.1(@babel/core@7.24.3) - "@babel/preset-env": + '@babel/preset-env': specifier: ^7.15.8 version: 7.24.3(@babel/core@7.24.3) - "@babel/runtime": + '@babel/runtime': specifier: ^7.17.2 version: 7.24.1 - "@emotion/core": + '@emotion/core': specifier: ^11.0.0 version: 11.0.0 - "@emotion/native": + '@emotion/native': specifier: ^11.0.0 version: 11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) - "@expo/metro-config": + '@expo/metro-config': specifier: ^0.10.7 version: 0.10.7 - "@expo/webpack-config": + '@expo/webpack-config': specifier: ^18.1.2 version: 18.1.4(ivfio2rwlkznsvzgftnclyrame) - "@react-native-async-storage/async-storage": + '@react-native-async-storage/async-storage': specifier: 1.17.12 version: 1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0)) - "@react-native-community/cli-server-api": + '@react-native-community/cli-server-api': specifier: ^7.0.3 version: 7.0.4 - "@react-native-community/datetimepicker": + '@react-native-community/datetimepicker': specifier: 6.7.5 version: 6.7.5 - "@react-native-community/slider": + '@react-native-community/slider': specifier: ^4.4.2 version: 4.5.0 - "@storybook/addon-actions": + '@storybook/addon-actions': specifier: ^7.6.18 version: 7.6.20 - "@storybook/addon-controls": + '@storybook/addon-controls': specifier: ^7.6.18 version: 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/addon-essentials": + '@storybook/addon-essentials': specifier: ^7.6.18 version: 7.6.20(@types/react@18.2.73)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/addon-links": + '@storybook/addon-links': specifier: ^7.6.18 version: 7.6.20(react@18.2.0) - "@storybook/addon-ondevice-actions": + '@storybook/addon-ondevice-actions': specifier: 6.5.7 version: 6.5.7(@storybook/addon-actions@7.6.20)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) - "@storybook/addon-ondevice-backgrounds": + '@storybook/addon-ondevice-backgrounds': specifier: 6.5.7 version: 6.5.7(@emotion/native@11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) - "@storybook/addon-ondevice-controls": + '@storybook/addon-ondevice-controls': specifier: 6.5.7 version: 6.5.7(@react-native-community/datetimepicker@6.7.5)(@react-native-community/slider@4.5.0)(@storybook/addon-controls@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) - "@storybook/addon-ondevice-notes": + '@storybook/addon-ondevice-notes': specifier: 6.5.7 version: 6.5.7(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) - "@storybook/addon-react-native-web": + '@storybook/addon-react-native-web': specifier: ^0.0.21 version: 0.0.21(babel-plugin-react-native-web@0.19.10)(metro-react-native-babel-preset@0.77.0(@babel/core@7.24.3))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(webpack@5.91.0(metro@0.80.12)) - "@storybook/blocks": + '@storybook/blocks': specifier: ^7.6.18 version: 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/docs-tools": + '@storybook/docs-tools': specifier: ^7.6.18 version: 7.6.20 - "@storybook/manager-api": + '@storybook/manager-api': specifier: 7.6.18 version: 7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/react": + '@storybook/react': specifier: ^7.6.18 version: 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) - "@storybook/react-native": + '@storybook/react-native': specifier: 6.5.7 version: 6.5.7(@react-native-async-storage/async-storage@1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0)))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react-native-safe-area-context@4.10.9(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack@5.91.0(metro@0.80.12)) - "@storybook/react-webpack5": + '@storybook/react-webpack5': specifier: ^7.6.18 version: 7.6.20(@babel/core@7.24.3)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12))) - "@svgr/core": + '@svgr/core': specifier: ^5.5.0 version: 5.5.0(@svgr/plugin-svgo@5.5.0) - "@svgr/plugin-jsx": + '@svgr/plugin-jsx': specifier: ^5.5.0 version: 5.5.0 - "@svgr/plugin-svgo": + '@svgr/plugin-svgo': specifier: ^5.5.0 version: 5.5.0 - "@types/color": + '@types/color': specifier: ^3.0.3 version: 3.0.6 - "@types/hoist-non-react-statics": + '@types/hoist-non-react-statics': specifier: ^3.3.1 version: 3.3.5(@types/react@18.2.73) - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 - "@types/prop-types": + '@types/prop-types': specifier: ^15.7.5 version: 15.7.12 - "@types/react": + '@types/react': specifier: ^18.2.21 version: 18.2.73 - "@types/styled-components": + '@types/styled-components': specifier: ^5.1.3 version: 5.1.34(@types/react@18.2.73) - "@types/styled-components-react-native": + '@types/styled-components-react-native': specifier: ^5.1.3 version: 5.2.5(@types/react@18.2.73) - "@types/styled-system": + '@types/styled-system': specifier: ^5.1.13 version: 5.1.22 assert: @@ -6758,19 +6762,19 @@ importers: libs/ui/packages/react: dependencies: - "@floating-ui/react-dom": + '@floating-ui/react-dom': specifier: ^0.4.0 version: 0.4.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@ledgerhq/crypto-icons-ui": + '@ledgerhq/crypto-icons-ui': specifier: workspace:^ version: file:libs/ui/packages/crypto-icons(@types/react@18.2.73)(react@18.2.0)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0))(styled-system@5.1.5) - "@ledgerhq/icons-ui": + '@ledgerhq/icons-ui': specifier: workspace:^ version: file:libs/ui/packages/icons(@types/react@18.2.73)(react@18.2.0)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0))(styled-system@5.1.5) - "@ledgerhq/ui-shared": + '@ledgerhq/ui-shared': specifier: workspace:^ version: link:../shared - "@tippyjs/react": + '@tippyjs/react': specifier: ^4.2.6 version: 4.2.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0) color: @@ -6801,70 +6805,70 @@ importers: specifier: ^5.1.5 version: 5.1.5 devDependencies: - "@babel/core": + '@babel/core': specifier: ^7.22.8 version: 7.24.3 - "@babel/preset-env": + '@babel/preset-env': specifier: ^7.15.8 version: 7.24.3(@babel/core@7.24.3) - "@babel/preset-react": + '@babel/preset-react': specifier: ^7.23.3 version: 7.24.1(@babel/core@7.24.3) - "@babel/preset-typescript": + '@babel/preset-typescript': specifier: ^7.23.3 version: 7.24.1(@babel/core@7.24.3) - "@storybook/addon-actions": + '@storybook/addon-actions': specifier: ^7.5.3 version: 7.6.17 - "@storybook/addon-essentials": + '@storybook/addon-essentials': specifier: ^7.5.3 version: 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/addon-links": + '@storybook/addon-links': specifier: ^7.5.3 version: 7.6.17(react@18.2.0) - "@storybook/blocks": + '@storybook/blocks': specifier: ^7.5.3 version: 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/manager-api": + '@storybook/manager-api': specifier: 7.5.3 version: 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/react": + '@storybook/react': specifier: ^7.5.3 version: 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) - "@storybook/react-webpack5": + '@storybook/react-webpack5': specifier: ^7.5.3 version: 7.6.17(@babel/core@7.24.3)(esbuild@0.19.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) - "@svgr/core": + '@svgr/core': specifier: ^5.5.0 version: 5.5.0(@svgr/plugin-svgo@5.5.0) - "@svgr/plugin-svgo": - specifier: "*" + '@svgr/plugin-svgo': + specifier: '*' version: 5.5.0 - "@types/color": + '@types/color': specifier: ^3.0.2 version: 3.0.6 - "@types/hoist-non-react-statics": + '@types/hoist-non-react-statics': specifier: ^3.3.1 version: 3.3.5(@types/react@18.2.73) - "@types/react": + '@types/react': specifier: ~18.2.21 version: 18.2.73 - "@types/react-dom": + '@types/react-dom': specifier: ^18.2.13 version: 18.2.23(@types/react@18.2.73) - "@types/react-is": + '@types/react-is': specifier: ^17.0.3 version: 17.0.7(@types/react@18.2.73) - "@types/react-transition-group": + '@types/react-transition-group': specifier: ^4.4.2 version: 4.4.10(@types/react@18.2.73) - "@types/react-window": + '@types/react-window': specifier: ^1.8.5 version: 1.8.8(@types/react@18.2.73) - "@types/styled-components": + '@types/styled-components': specifier: ^5.1.14 version: 5.1.34(@types/react@18.2.73) - "@types/styled-system": + '@types/styled-system': specifier: ^5.1.12 version: 5.1.22 babel-loader: @@ -6922,12 +6926,12 @@ importers: specifier: ^0.2.9 version: 0.2.9 webpack: - specifier: "*" + specifier: '*' version: 5.91.0(esbuild@0.19.12) dependenciesMeta: - "@ledgerhq/crypto-icons-ui": + '@ledgerhq/crypto-icons-ui': injected: true - "@ledgerhq/icons-ui": + '@ledgerhq/icons-ui': injected: true libs/ui/packages/shared: @@ -6941,20 +6945,20 @@ importers: libs/wallet-api-acre-module: dependencies: - "@ledgerhq/wallet-api-client": + '@ledgerhq/wallet-api-client': specifier: ^1.6.0 version: 1.6.0 - "@ledgerhq/wallet-api-core": + '@ledgerhq/wallet-api-core': specifier: ^1.13.0 version: 1.13.0 devDependencies: - "@types/node": + '@types/node': specifier: ^20.2.5 version: 20.12.12 tests/dummy-live-app: dependencies: - "@ledgerhq/live-app-sdk": + '@ledgerhq/live-app-sdk': specifier: ^0.8.0 version: 0.8.2 react: @@ -6967,16 +6971,16 @@ importers: specifier: 5.0.1 version: 5.0.1(react@18.2.0)(typescript@5.4.3) devDependencies: - "@types/jest": + '@types/jest': specifier: ^27.0.1 version: 27.5.2 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 - "@types/react": + '@types/react': specifier: ^18.2.21 version: 18.2.73 - "@types/react-dom": + '@types/react-dom': specifier: ^18.2.13 version: 18.2.23(@types/react@18.2.73) cross-env: @@ -6994,22 +6998,22 @@ importers: tests/dummy-wallet-app: dependencies: - "@ledgerhq/hw-app-eth": + '@ledgerhq/hw-app-eth': specifier: workspace:* version: link:../../libs/ledgerjs/packages/hw-app-eth - "@ledgerhq/hw-transport": + '@ledgerhq/hw-transport': specifier: workspace:* version: link:../../libs/ledgerjs/packages/hw-transport - "@ledgerhq/live-common": + '@ledgerhq/live-common': specifier: workspace:* version: link:../../libs/ledger-live-common - "@ledgerhq/wallet-api-client": + '@ledgerhq/wallet-api-client': specifier: ^1.6.0 version: 1.6.0 - "@ledgerhq/wallet-api-client-react": + '@ledgerhq/wallet-api-client-react': specifier: ^1.3.12 version: 1.3.12(react@18.2.0) - "@ledgerhq/wallet-api-simulator": + '@ledgerhq/wallet-api-simulator': specifier: ^1.2.0 version: 1.2.0(react@18.2.0) bignumber.js: @@ -7025,25 +7029,25 @@ importers: specifier: ^18.2.0 version: 18.2.0(react@18.2.0) devDependencies: - "@types/jest": + '@types/jest': specifier: ^27.0.1 version: 27.5.2 - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 - "@types/react": + '@types/react': specifier: ^18.2.21 version: 18.2.73 - "@types/react-dom": + '@types/react-dom': specifier: ^18.2.13 version: 18.2.23(@types/react@18.2.73) - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': specifier: ^6.14.0 version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) - "@typescript-eslint/parser": + '@typescript-eslint/parser': specifier: ^6.14.0 version: 6.21.0(eslint@8.57.0)(typescript@5.4.3) - "@vitejs/plugin-react": + '@vitejs/plugin-react': specifier: ^4.2.1 version: 4.2.1(vite@4.5.3(@types/node@20.12.12)) eslint: @@ -7064,22 +7068,22 @@ importers: tools/actions: devDependencies: - "@types/node": + '@types/node': specifier: ^20.8.10 version: 20.12.12 tools/actions/build-checks: devDependencies: - "@actions/core": + '@actions/core': specifier: ^1.10.1 version: 1.10.1 - "@actions/github": + '@actions/github': specifier: ^6.0.0 version: 6.0.0 - "@types/stream-json": + '@types/stream-json': specifier: ^1.7.5 version: 1.7.7 - "@types/unzipper": + '@types/unzipper': specifier: 0.10.9 version: 0.10.9 stream-json: @@ -7094,10 +7098,10 @@ importers: tools/actions/change-product-name: devDependencies: - "@actions/core": + '@actions/core': specifier: ^1.10.1 version: 1.10.1 - "@actions/github": + '@actions/github': specifier: ^6.0.0 version: 6.0.0 tsup: @@ -7106,10 +7110,10 @@ importers: tools/actions/desktop-report-build: devDependencies: - "@actions/core": + '@actions/core': specifier: ^1.10.1 version: 1.10.1 - "@actions/github": + '@actions/github': specifier: ^6.0.0 version: 6.0.0 node-fetch: @@ -7121,16 +7125,16 @@ importers: tools/actions/generate-bot-super-report: devDependencies: - "@actions/core": + '@actions/core': specifier: ^1.10.1 version: 1.10.1 - "@actions/github": + '@actions/github': specifier: ^6.0.0 version: 6.0.0 - "@types/node": + '@types/node': specifier: 20.8.10 version: 20.8.10 - "@types/unzipper": + '@types/unzipper': specifier: 0.10.9 version: 0.10.9 lodash: @@ -7151,10 +7155,10 @@ importers: tools/actions/generate-release-message: devDependencies: - "@actions/core": + '@actions/core': specifier: ^1.10.1 version: 1.10.1 - "@actions/github": + '@actions/github': specifier: ^6.0.0 version: 6.0.0 semver: @@ -7166,10 +7170,10 @@ importers: tools/actions/get-package-infos: devDependencies: - "@actions/core": + '@actions/core': specifier: ^1.10.1 version: 1.10.1 - "@actions/github": + '@actions/github': specifier: ^6.0.0 version: 6.0.0 semver: @@ -7181,10 +7185,10 @@ importers: tools/actions/get-workflow-artifacts-id: devDependencies: - "@actions/core": + '@actions/core': specifier: ^1.10.1 version: 1.10.1 - "@actions/github": + '@actions/github': specifier: ^6.0.0 version: 6.0.0 tsup: @@ -7193,10 +7197,10 @@ importers: tools/actions/live-common-affected: devDependencies: - "@actions/core": + '@actions/core': specifier: ^1.10.1 version: 1.10.1 - "@actions/github": + '@actions/github': specifier: ^6.0.0 version: 6.0.0 tsup: @@ -7205,10 +7209,10 @@ importers: tools/actions/prepare-comment-screenshots: devDependencies: - "@actions/core": + '@actions/core': specifier: ^1.10.1 version: 1.10.1 - "@actions/github": + '@actions/github': specifier: ^6.0.0 version: 6.0.0 tsup: @@ -7217,10 +7221,10 @@ importers: tools/actions/submit-bot-report: devDependencies: - "@actions/core": + '@actions/core': specifier: ^1.10.1 version: 1.10.1 - "@actions/github": + '@actions/github': specifier: ^6.0.0 version: 6.0.0 node-fetch: @@ -7232,10 +7236,10 @@ importers: tools/actions/turbo-affected: devDependencies: - "@actions/core": + '@actions/core': specifier: ^1.10.1 version: 1.10.1 - "@actions/github": + '@actions/github': specifier: ^6.0.0 version: 6.0.0 tsup: @@ -7244,16 +7248,16 @@ importers: tools/actions/turborepo-gh-cache: devDependencies: - "@actions/cache": + '@actions/cache': specifier: ^3.0.4 version: 3.2.4 - "@actions/core": + '@actions/core': specifier: ^1.10.1 version: 1.10.1 - "@actions/github": + '@actions/github': specifier: ^6.0.0 version: 6.0.0 - "@types/fs-extra": + '@types/fs-extra': specifier: ^9.0.13 version: 9.0.13 express: @@ -7268,25 +7272,25 @@ importers: tools/actions/turborepo-s3-cache: devDependencies: - "@actions/cache": + '@actions/cache': specifier: ^3.0.4 version: 3.2.4 - "@actions/core": + '@actions/core': specifier: ^1.10.1 version: 1.10.1 - "@actions/github": + '@actions/github': specifier: ^6.0.0 version: 6.0.0 - "@aws-sdk/client-s3": + '@aws-sdk/client-s3': specifier: ^3.624.0 version: 3.651.0 - "@aws-sdk/lib-storage": + '@aws-sdk/lib-storage': specifier: ^3.624.0 version: 3.651.0(@aws-sdk/client-s3@3.651.0) - "@types/express": + '@types/express': specifier: ^4.17.18 version: 4.17.21 - "@types/fs-extra": + '@types/fs-extra': specifier: ^9.0.13 version: 9.0.13 express: @@ -7301,13 +7305,13 @@ importers: tools/actions/upload-images: devDependencies: - "@actions/core": + '@actions/core': specifier: ^1.10.1 version: 1.10.1 - "@actions/github": + '@actions/github': specifier: ^6.0.0 version: 6.0.0 - "@aws-sdk/client-s3": + '@aws-sdk/client-s3': specifier: ^3.370.0 version: 3.540.0 tsup: @@ -7318,7 +7322,7 @@ importers: tools/esbuild-utils: devDependencies: - "@craftamap/esbuild-plugin-html": + '@craftamap/esbuild-plugin-html': specifier: ^0.6.0 version: 0.6.1(esbuild@0.19.12) dotenv: @@ -7340,10 +7344,10 @@ importers: specifier: ^13.1.1 version: 13.2.2 devDependencies: - "@types/jest": + '@types/jest': specifier: ^29.5.12 version: 29.5.12 - "@types/node": + '@types/node': specifier: ^20.11.30 version: 20.12.12 jest: @@ -7367,4044 +7371,2432 @@ importers: tools/pnpm-utils: {} packages: + 7zip-bin@5.2.0: - resolution: - { - integrity: sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A==, - } - - "@aashutoshrathi/word-wrap@1.2.6": - resolution: - { - integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==, - } - engines: { node: ">=0.10.0" } - - "@achrinza/node-ipc@9.2.9": - resolution: - { - integrity: sha512-7s0VcTwiK/0tNOVdSX9FWMeFdOEcsAOz9HesBldXxFMaGvIak7KC2z9tV9EgsQXn6KUsWsfIkViMNuIo0GoZDQ==, - } - engines: - { node: 8 || 9 || 10 || 11 || 12 || 13 || 14 || 15 || 16 || 17 || 18 || 19 || 20 || 21 || 22 } - - "@actions/cache@3.2.4": - resolution: - { - integrity: sha512-RuHnwfcDagtX+37s0ZWy7clbOfnZ7AlDJQ7k/9rzt2W4Gnwde3fa/qjSjVuz4vLcLIpc7fUob27CMrqiWZytYA==, - } - - "@actions/core@1.10.1": - resolution: - { - integrity: sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==, - } - - "@actions/exec@1.1.1": - resolution: - { - integrity: sha512-+sCcHHbVdk93a0XT19ECtO/gIXoxvdsgQLzb2fE2/5sIZmWQuluYyjPQtrtTHdU1YzTZ7bAPN4sITq2xi1679w==, - } - - "@actions/github@6.0.0": - resolution: - { - integrity: sha512-alScpSVnYmjNEXboZjarjukQEzgCRmjMv6Xj47fsdnqGS73bjJNDpiiXmp8jr0UZLdUB6d9jW63IcmddUP+l0g==, - } - - "@actions/glob@0.1.2": - resolution: - { - integrity: sha512-SclLR7Ia5sEqjkJTPs7Sd86maMDw43p769YxBOxvPvEWuPEhpAnBsQfENOpXjFYMmhCqd127bmf+YdvJqVqR4A==, - } - - "@actions/http-client@2.2.1": - resolution: - { - integrity: sha512-KhC/cZsq7f8I4LfZSJKgCvEwfkE8o1538VoBeoGzokVLLnbFDEAdFD3UhoMklxo2un9NJVBdANOresx7vTHlHw==, - } - - "@actions/io@1.1.3": - resolution: - { - integrity: sha512-wi9JjgKLYS7U/z8PPbco+PvTb/nRWjeoFlJ1Qer83k/3C5PHQi28hiVdeE2kHXmIL99mQFawx8qt/JPjZilJ8Q==, - } - - "@adobe/css-tools@4.3.3": - resolution: - { - integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==, - } - - "@adraffy/ens-normalize@1.10.1": - resolution: - { - integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==, - } - - "@agrozyme/types-tronweb@5.3.2": - resolution: - { - integrity: sha512-j02xjgxiHoKz779dea6Zf1zH/sDN2B0sCzb1drpW50KFPtAe3nPNN3h7ThLsMMmvZpLZgqqGiasw7YDnJOx7Zw==, - } - - "@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" - - "@aw-web-design/x-default-browser@1.4.126": - resolution: - { - integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==, - } + resolution: {integrity: sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A==} + + '@aashutoshrathi/word-wrap@1.2.6': + resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} + engines: {node: '>=0.10.0'} + + '@achrinza/node-ipc@9.2.9': + resolution: {integrity: sha512-7s0VcTwiK/0tNOVdSX9FWMeFdOEcsAOz9HesBldXxFMaGvIak7KC2z9tV9EgsQXn6KUsWsfIkViMNuIo0GoZDQ==} + engines: {node: 8 || 9 || 10 || 11 || 12 || 13 || 14 || 15 || 16 || 17 || 18 || 19 || 20 || 21 || 22} + + '@actions/cache@3.2.4': + resolution: {integrity: sha512-RuHnwfcDagtX+37s0ZWy7clbOfnZ7AlDJQ7k/9rzt2W4Gnwde3fa/qjSjVuz4vLcLIpc7fUob27CMrqiWZytYA==} + + '@actions/core@1.10.1': + resolution: {integrity: sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==} + + '@actions/exec@1.1.1': + resolution: {integrity: sha512-+sCcHHbVdk93a0XT19ECtO/gIXoxvdsgQLzb2fE2/5sIZmWQuluYyjPQtrtTHdU1YzTZ7bAPN4sITq2xi1679w==} + + '@actions/github@6.0.0': + resolution: {integrity: sha512-alScpSVnYmjNEXboZjarjukQEzgCRmjMv6Xj47fsdnqGS73bjJNDpiiXmp8jr0UZLdUB6d9jW63IcmddUP+l0g==} + + '@actions/glob@0.1.2': + resolution: {integrity: sha512-SclLR7Ia5sEqjkJTPs7Sd86maMDw43p769YxBOxvPvEWuPEhpAnBsQfENOpXjFYMmhCqd127bmf+YdvJqVqR4A==} + + '@actions/http-client@2.2.1': + resolution: {integrity: sha512-KhC/cZsq7f8I4LfZSJKgCvEwfkE8o1538VoBeoGzokVLLnbFDEAdFD3UhoMklxo2un9NJVBdANOresx7vTHlHw==} + + '@actions/io@1.1.3': + resolution: {integrity: sha512-wi9JjgKLYS7U/z8PPbco+PvTb/nRWjeoFlJ1Qer83k/3C5PHQi28hiVdeE2kHXmIL99mQFawx8qt/JPjZilJ8Q==} + + '@adobe/css-tools@4.3.3': + resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==} + + '@adraffy/ens-normalize@1.10.1': + resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==} + + '@agrozyme/types-tronweb@5.3.2': + resolution: {integrity: sha512-j02xjgxiHoKz779dea6Zf1zH/sDN2B0sCzb1drpW50KFPtAe3nPNN3h7ThLsMMmvZpLZgqqGiasw7YDnJOx7Zw==} + + '@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' + + '@aw-web-design/x-default-browser@1.4.126': + resolution: {integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==} hasBin: true - "@aws-crypto/crc32@3.0.0": - resolution: - { - integrity: sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==, - } - - "@aws-crypto/crc32@5.2.0": - resolution: - { - integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==, - } - engines: { node: ">=16.0.0" } - - "@aws-crypto/crc32c@3.0.0": - resolution: - { - integrity: sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w==, - } - - "@aws-crypto/crc32c@5.2.0": - resolution: - { - integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==, - } - - "@aws-crypto/ie11-detection@3.0.0": - resolution: - { - integrity: sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q==, - } - - "@aws-crypto/sha1-browser@3.0.0": - resolution: - { - integrity: sha512-NJth5c997GLHs6nOYTzFKTbYdMNA6/1XlKVgnZoaZcQ7z7UJlOgj2JdbHE8tiYLS3fzXNCguct77SPGat2raSw==, - } - - "@aws-crypto/sha1-browser@5.2.0": - resolution: - { - integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==, - } - - "@aws-crypto/sha256-browser@3.0.0": - resolution: - { - integrity: sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==, - } - - "@aws-crypto/sha256-browser@5.2.0": - resolution: - { - integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==, - } - - "@aws-crypto/sha256-js@3.0.0": - resolution: - { - integrity: sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==, - } - - "@aws-crypto/sha256-js@5.2.0": - resolution: - { - integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==, - } - engines: { node: ">=16.0.0" } - - "@aws-crypto/supports-web-crypto@3.0.0": - resolution: - { - integrity: sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg==, - } - - "@aws-crypto/supports-web-crypto@5.2.0": - resolution: - { - integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==, - } - - "@aws-crypto/util@3.0.0": - resolution: - { - integrity: sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==, - } - - "@aws-crypto/util@5.2.0": - resolution: - { - integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==, - } - - "@aws-sdk/client-s3@3.540.0": - resolution: - { - integrity: sha512-rYBuNB7uqCO9xZc0OAwM2K6QJAo2Syt1L5OhEaf7zG7FulNMyrK6kJPg1WrvNE90tW6gUdDaTy3XsQ7lq6O7uA==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/client-s3@3.651.0": - resolution: - { - integrity: sha512-37+kxxjnlOAUCb1aHpoLakW4XRG23HrkX8X3cEjxaFLQxorPUiMvfAYQEQQkYD5yggaG+5aM5GAhxkTUTqA5xw==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/client-sso-oidc@3.540.0": - resolution: - { - integrity: sha512-LZYK0lBRQK8D8M3Sqc96XiXkAV2v70zhTtF6weyzEpgwxZMfSuFJjs0jFyhaeZBZbZv7BBghIdhJ5TPavNxGMQ==, - } - engines: { node: ">=14.0.0" } - peerDependencies: - "@aws-sdk/credential-provider-node": ^3.540.0 - - "@aws-sdk/client-sso-oidc@3.650.0": - resolution: - { - integrity: sha512-6J7IS0f8ovhvbIAZaynOYP+jPX8344UlTjwHxjaXHgFvI8axu3+NslKtEEV5oHLhgzDvrKbinsu5lgE2n4Sqng==, - } - engines: { node: ">=16.0.0" } - peerDependencies: - "@aws-sdk/client-sts": ^3.650.0 - - "@aws-sdk/client-sso@3.540.0": - resolution: - { - integrity: sha512-rrQZMuw4sxIo3eyAUUzPQRA336mPRnrAeSlSdVHBKZD8Fjvoy0lYry2vNhkPLpFZLso1J66KRyuIv4LzRR3v1Q==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/client-sso@3.650.0": - resolution: - { - integrity: sha512-YKm14gCMChD/jlCisFlsVqB8HJujR41bl4Fup2crHwNJxhD/9LTnzwMiVVlBqlXr41Sfa6fSxczX2AMP8NM14A==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/client-sts@3.540.0": - resolution: - { - integrity: sha512-ITHUQxvpqfQX6obfpIi3KYGzZYfe/I5Ixjfxoi5lB7ISCtmxqObKB1fzD93wonkMJytJ7LUO8panZl/ojiJ1uw==, - } - engines: { node: ">=14.0.0" } - peerDependencies: - "@aws-sdk/credential-provider-node": ^3.540.0 - - "@aws-sdk/client-sts@3.650.0": - resolution: - { - integrity: sha512-ISK0ZQYA7O5/WYgslpWy956lUBudGC9d7eL0FFbiL0j50N80Gx3RUv22ezvZgxJWE0W3DqNr4CE19sPYn4Lw8g==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/core@3.535.0": - resolution: - { - integrity: sha512-+Yusa9HziuaEDta1UaLEtMAtmgvxdxhPn7jgfRY6PplqAqgsfa5FR83sxy5qr2q7xjQTwHtV4MjQVuOjG9JsLw==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/core@3.649.0": - resolution: - { - integrity: sha512-dheG/X2y25RHE7K+TlS32kcy7TgDg1OpWV44BQRoE0OBPAWmFR1D1qjjTZ7WWrdqRPKzcnDj1qED8ncyncOX8g==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/credential-provider-env@3.535.0": - resolution: - { - integrity: sha512-XppwO8c0GCGSAvdzyJOhbtktSEaShg14VJKg8mpMa1XcgqzmcqqHQjtDWbx5rZheY1VdpXZhpEzJkB6LpQejpA==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/credential-provider-env@3.649.0": - resolution: - { - integrity: sha512-tViwzM1dauksA3fdRjsg0T8mcHklDa8EfveyiQKK6pUJopkqV6FQx+X5QNda0t/LrdEVlFZvwHNdXqOEfc83TA==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/credential-provider-http@3.535.0": - resolution: - { - integrity: sha512-kdj1wCmOMZ29jSlUskRqN04S6fJ4dvt0Nq9Z32SA6wO7UG8ht6Ot9h/au/eTWJM3E1somZ7D771oK7dQt9b8yw==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/credential-provider-http@3.649.0": - resolution: - { - integrity: sha512-ODAJ+AJJq6ozbns6ejGbicpsQ0dyMOpnGlg0J9J0jITQ05DKQZ581hdB8APDOZ9N8FstShP6dLZflSj8jb5fNA==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/credential-provider-ini@3.540.0": - resolution: - { - integrity: sha512-igN/RbsnulIBwqXbwsWmR3srqmtbPF1dm+JteGvUY31FW65fTVvWvSr945Y/cf1UbhPmIQXntlsqESqpkhTHwg==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/credential-provider-ini@3.650.0": - resolution: - { - integrity: sha512-x2M9buZxIsKuUbuDgkGHhAKYBpn0/rYdKlwuFuOhXyyAcnhvPj0lgNF2KE4ld/GF1mKr7FF/uV3G9lM6PFaYmA==, - } - engines: { node: ">=16.0.0" } - peerDependencies: - "@aws-sdk/client-sts": ^3.650.0 - - "@aws-sdk/credential-provider-node@3.540.0": - resolution: - { - integrity: sha512-HKQZJbLHlrHX9A0B1poiYNXIIQfy8whTjuosTCYKPDBhhUyVAQfxy/KG726j0v43IhaNPLgTGZCJve4hAsazSw==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/credential-provider-node@3.650.0": - resolution: - { - integrity: sha512-uBra5YjzS/gWSekAogfqJfY6c+oKQkkou7Cjc4d/cpMNvQtF1IBdekJ7NaE1RfsDEz3uH1+Myd07YWZAJo/2Qw==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/credential-provider-process@3.535.0": - resolution: - { - integrity: sha512-9O1OaprGCnlb/kYl8RwmH7Mlg8JREZctB8r9sa1KhSsWFq/SWO0AuJTyowxD7zL5PkeS4eTvzFFHWCa3OO5epA==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/credential-provider-process@3.649.0": - resolution: - { - integrity: sha512-6VYPQpEVpU+6DDS/gLoI40ppuNM5RPIEprK30qZZxnhTr5wyrGOeJ7J7wbbwPOZ5dKwta290BiJDU2ipV8Y9BQ==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/credential-provider-sso@3.540.0": - resolution: - { - integrity: sha512-tKkFqK227LF5ajc5EL6asXS32p3nkofpP8G7NRpU7zOEOQCg01KUc4JRX+ItI0T007CiN1J19yNoFqHLT/SqHg==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/credential-provider-sso@3.650.0": - resolution: - { - integrity: sha512-069nkhcwximbvyGiAC6Fr2G+yrG/p1S3NQ5BZ2cMzB1hgUKo6TvgFK7nriYI4ljMQ+UWxqPwIdTqiUmn2iJmhg==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/credential-provider-web-identity@3.540.0": - resolution: - { - integrity: sha512-OpDm9w3A168B44hSjpnvECP4rvnFzD86rN4VYdGADuCvEa5uEcdA/JuT5WclFPDqdWEmFBqS1pxBIJBf0g2Q9Q==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/credential-provider-web-identity@3.649.0": - resolution: - { - integrity: sha512-XVk3WsDa0g3kQFPmnCH/LaCtGY/0R2NDv7gscYZSXiBZcG/fixasglTprgWSp8zcA0t7tEIGu9suyjz8ZwhymQ==, - } - engines: { node: ">=16.0.0" } - peerDependencies: - "@aws-sdk/client-sts": ^3.649.0 - - "@aws-sdk/lib-storage@3.651.0": - resolution: - { - integrity: sha512-AK41Gn/KWtOHC4X9fPjtG63FgssT+CS8CTWIhrM2k1cw4Ut+Wt8L1C4otXfyyLqTyLs/UGEFHn7ed68mGj6nAQ==, - } - engines: { node: ">=16.0.0" } - peerDependencies: - "@aws-sdk/client-s3": ^3.651.0 - - "@aws-sdk/middleware-bucket-endpoint@3.535.0": - resolution: - { - integrity: sha512-7sijlfQsc4UO9Fsl11mU26Y5f9E7g6UoNg/iJUBpC5pgvvmdBRO5UEhbB/gnqvOEPsBXyhmfzbstebq23Qdz7A==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/middleware-bucket-endpoint@3.649.0": - resolution: - { - integrity: sha512-ZdDICtUU4YZkrVllTUOH1Fj/F3WShLhkfNKJE3HJ/yj6pS8JS9P2lWzHiHkHiidjrHSxc6NuBo6vuZ+182XLbw==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/middleware-expect-continue@3.535.0": - resolution: - { - integrity: sha512-hFKyqUBky0NWCVku8iZ9+PACehx0p6vuMw5YnZf8FVgHP0fode0b/NwQY6UY7oor/GftvRsAlRUAWGNFEGUpwA==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/middleware-expect-continue@3.649.0": - resolution: - { - integrity: sha512-pW2id/mWNd+L0/hZKp5yL3J+8rTwsamu9E69Hc5pM3qTF4K4DTZZ+A0sQbY6duIvZvc8IbQHbSMulBOLyWNP3A==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/middleware-flexible-checksums@3.535.0": - resolution: - { - integrity: sha512-rBIzldY9jjRATxICDX7t77aW6ctqmVDgnuAOgbVT5xgHftt4o7PGWKoMvl/45hYqoQgxVFnCBof9bxkqSBebVA==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/middleware-flexible-checksums@3.651.0": - resolution: - { - integrity: sha512-mGAOIjhNDcBK5+JD+W+Ky5YJL98jTNFTENJV/GiQ9t3CdqK3p02MNr/T6VwzEpzsJvJD23amogiEZeiqSQiibg==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/middleware-host-header@3.535.0": - resolution: - { - integrity: sha512-0h6TWjBWtDaYwHMQJI9ulafeS4lLaw1vIxRjbpH0svFRt6Eve+Sy8NlVhECfTU2hNz/fLubvrUxsXoThaLBIew==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/middleware-host-header@3.649.0": - resolution: - { - integrity: sha512-PjAe2FocbicHVgNNwdSZ05upxIO7AgTPFtQLpnIAmoyzMcgv/zNB5fBn3uAnQSAeEPPCD+4SYVEUD1hw1ZBvEg==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/middleware-location-constraint@3.535.0": - resolution: - { - integrity: sha512-SxfS9wfidUZZ+WnlKRTCRn3h+XTsymXRXPJj8VV6hNRNeOwzNweoG3YhQbTowuuNfXf89m9v6meYkBBtkdacKw==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/middleware-location-constraint@3.649.0": - resolution: - { - integrity: sha512-O9AXhaFUQx34UTnp/cKCcaWW/IVk4mntlWfFjsIxvRatamKaY33b5fOiakGG+J1t0QFK0niDBSvOYUR1fdlHzw==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/middleware-logger@3.535.0": - resolution: - { - integrity: sha512-huNHpONOrEDrdRTvSQr1cJiRMNf0S52NDXtaPzdxiubTkP+vni2MohmZANMOai/qT0olmEVX01LhZ0ZAOgmg6A==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/middleware-logger@3.649.0": - resolution: - { - integrity: sha512-qdqRx6q7lYC6KL/NT9x3ShTL0TBuxdkCczGzHzY3AnOoYUjnCDH7Vlq867O6MAvb4EnGNECFzIgtkZkQ4FhY5w==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/middleware-recursion-detection@3.535.0": - resolution: - { - integrity: sha512-am2qgGs+gwqmR4wHLWpzlZ8PWhm4ktj5bYSgDrsOfjhdBlWNxvPoID9/pDAz5RWL48+oH7I6SQzMqxXsFDikrw==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/middleware-recursion-detection@3.649.0": - resolution: - { - integrity: sha512-IPnO4wlmaLRf6IYmJW2i8gJ2+UPXX0hDRv1it7Qf8DpBW+lGyF2rnoN7NrFX0WIxdGOlJF1RcOr/HjXb2QeXfQ==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/middleware-sdk-s3@3.535.0": - resolution: - { - integrity: sha512-/dLG/E3af6ohxkQ5GBHT8tZfuPIg6eItKxCXuulvYj0Tqgf3Mb+xTsvSkxQsJF06RS4sH7Qsg/PnB8ZfrJrXpg==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/middleware-sdk-s3@3.649.0": - resolution: - { - integrity: sha512-3H8735xTAD7IxNdreT6qv2YRk4CGOGfz8ufZo5pROJYZ4N5rfcdDMvb8szMSLvQHegqS4v1DqO9nrOPgc0I2Qg==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/middleware-signing@3.535.0": - resolution: - { - integrity: sha512-Rb4sfus1Gc5paRl9JJgymJGsb/i3gJKK/rTuFZICdd1PBBE5osIOHP5CpzWYBtc5LlyZE1a2QoxPMCyG+QUGPw==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/middleware-ssec@3.537.0": - resolution: - { - integrity: sha512-2QWMrbwd5eBy5KCYn9a15JEWBgrK2qFEKQN2lqb/6z0bhtevIOxIRfC99tzvRuPt6nixFQ+ynKuBjcfT4ZFrdQ==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/middleware-ssec@3.649.0": - resolution: - { - integrity: sha512-r/WBIpX+Kcx+AV5vJ+LbdDOuibk7spBqcFK2LytQjOZKPksZNRAM99khbFe9vr9S1+uDmCLVjAVkIfQ5seJrOw==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/middleware-user-agent@3.540.0": - resolution: - { - integrity: sha512-8Rd6wPeXDnOYzWj1XCmOKcx/Q87L0K1/EHqOBocGjLVbN3gmRxBvpmR1pRTjf7IsWfnnzN5btqtcAkfDPYQUMQ==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/middleware-user-agent@3.649.0": - resolution: - { - integrity: sha512-q6sO10dnCXoxe9thobMJxekhJumzd1j6dxcE1+qJdYKHJr6yYgWbogJqrLCpWd30w0lEvnuAHK8lN2kWLdJxJw==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/region-config-resolver@3.535.0": - resolution: - { - integrity: sha512-IXOznDiaItBjsQy4Fil0kzX/J3HxIOknEphqHbOfUf+LpA5ugcsxuQQONrbEQusCBnfJyymrldBvBhFmtlU9Wg==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/region-config-resolver@3.649.0": - resolution: - { - integrity: sha512-xURBvdQXvRvca5Du8IlC5FyCj3pkw8Z75+373J3Wb+vyg8GjD14HfKk1Je1HCCQDyIE9VB/scYDcm9ri0ppePw==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/signature-v4-multi-region@3.535.0": - resolution: - { - integrity: sha512-tqCsEsEj8icW0SAh3NvyhRUq54Gz2pu4NM2tOSrFp7SO55heUUaRLSzYteNZCTOupH//AAaZvbN/UUTO/DrOog==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/signature-v4-multi-region@3.649.0": - resolution: - { - integrity: sha512-feJfSHtCarFmTMZSE5k7/A+m4FrdCrmotljc/AmXArWy3wl8XFyxE5tFVW/PiUgbgeoVDN+ZLt3YYtItHfNUWQ==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/token-providers@3.540.0": - resolution: - { - integrity: sha512-9BvtiVEZe5Ev88Wa4ZIUbtT6BVcPwhxmVInQ6c12MYNb0WNL54BN6wLy/eknAfF05gpX2/NDU2pUDOyMPdm/+g==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/token-providers@3.649.0": - resolution: - { - integrity: sha512-ZBqr+JuXI9RiN+4DSZykMx5gxpL8Dr3exIfFhxMiwAP3DQojwl0ub8ONjMuAjq9OvmX6n+jHZL6fBnNgnNFC8w==, - } - engines: { node: ">=16.0.0" } - peerDependencies: - "@aws-sdk/client-sso-oidc": ^3.649.0 - - "@aws-sdk/types@3.535.0": - resolution: - { - integrity: sha512-aY4MYfduNj+sRR37U7XxYR8wemfbKP6lx00ze2M2uubn7mZotuVrWYAafbMSXrdEMSToE5JDhr28vArSOoLcSg==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/types@3.649.0": - resolution: - { - integrity: sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/util-arn-parser@3.535.0": - resolution: - { - integrity: sha512-smVo29nUPAOprp8Z5Y3GHuhiOtw6c8/EtLCm5AVMtRsTPw4V414ZXL2H66tzmb5kEeSzQlbfBSBEdIFZoxO9kg==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/util-arn-parser@3.568.0": - resolution: - { - integrity: sha512-XUKJWWo+KOB7fbnPP0+g/o5Ulku/X53t7i/h+sPHr5xxYTJJ9CYnbToo95mzxe7xWvkLrsNtJ8L+MnNn9INs2w==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/util-endpoints@3.540.0": - resolution: - { - integrity: sha512-1kMyQFAWx6f8alaI6UT65/5YW/7pDWAKAdNwL6vuJLea03KrZRX3PMoONOSJpAS5m3Ot7HlWZvf3wZDNTLELZw==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/util-endpoints@3.649.0": - resolution: - { - integrity: sha512-bZI1Wc3R/KibdDVWFxX/N4AoJFG4VJ92Dp4WYmOrVD6VPkb8jPz7ZeiYc7YwPl8NoDjYyPneBV0lEoK/V8OKAA==, - } - engines: { node: ">=16.0.0" } - - "@aws-sdk/util-locate-window@3.535.0": - resolution: - { - integrity: sha512-PHJ3SL6d2jpcgbqdgiPxkXpu7Drc2PYViwxSIqvvMKhDwzSB1W3mMvtpzwKM4IE7zLFodZo0GKjJ9AsoXndXhA==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/util-user-agent-browser@3.535.0": - resolution: - { - integrity: sha512-RWMcF/xV5n+nhaA/Ff5P3yNP3Kur/I+VNZngog4TEs92oB/nwOdAg/2JL8bVAhUbMrjTjpwm7PItziYFQoqyig==, - } - - "@aws-sdk/util-user-agent-browser@3.649.0": - resolution: - { - integrity: sha512-IY43r256LhKAvdEVQO/FPdUyVpcZS5EVxh/WHVdNzuN1bNLoUK2rIzuZqVA0EGguvCxoXVmQv9m50GvG7cGktg==, - } - - "@aws-sdk/util-user-agent-node@3.535.0": - resolution: - { - integrity: sha512-dRek0zUuIT25wOWJlsRm97nTkUlh1NDcLsQZIN2Y8KxhwoXXWtJs5vaDPT+qAg+OpcNj80i1zLR/CirqlFg/TQ==, - } - engines: { node: ">=14.0.0" } - peerDependencies: - aws-crt: ">=1.0.0" + '@aws-crypto/crc32@3.0.0': + resolution: {integrity: sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==} + + '@aws-crypto/crc32@5.2.0': + resolution: {integrity: sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==} + engines: {node: '>=16.0.0'} + + '@aws-crypto/crc32c@3.0.0': + resolution: {integrity: sha512-ENNPPManmnVJ4BTXlOjAgD7URidbAznURqD0KvfREyc4o20DPYdEldU1f5cQ7Jbj0CJJSPaMIk/9ZshdB3210w==} + + '@aws-crypto/crc32c@5.2.0': + resolution: {integrity: sha512-+iWb8qaHLYKrNvGRbiYRHSdKRWhto5XlZUEBwDjYNf+ly5SVYG6zEoYIdxvf5R3zyeP16w4PLBn3rH1xc74Rag==} + + '@aws-crypto/ie11-detection@3.0.0': + resolution: {integrity: sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q==} + + '@aws-crypto/sha1-browser@3.0.0': + resolution: {integrity: sha512-NJth5c997GLHs6nOYTzFKTbYdMNA6/1XlKVgnZoaZcQ7z7UJlOgj2JdbHE8tiYLS3fzXNCguct77SPGat2raSw==} + + '@aws-crypto/sha1-browser@5.2.0': + resolution: {integrity: sha512-OH6lveCFfcDjX4dbAvCFSYUjJZjDr/3XJ3xHtjn3Oj5b9RjojQo8npoLeA/bNwkOkrSQ0wgrHzXk4tDRxGKJeg==} + + '@aws-crypto/sha256-browser@3.0.0': + resolution: {integrity: sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==} + + '@aws-crypto/sha256-browser@5.2.0': + resolution: {integrity: sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==} + + '@aws-crypto/sha256-js@3.0.0': + resolution: {integrity: sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==} + + '@aws-crypto/sha256-js@5.2.0': + resolution: {integrity: sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==} + engines: {node: '>=16.0.0'} + + '@aws-crypto/supports-web-crypto@3.0.0': + resolution: {integrity: sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg==} + + '@aws-crypto/supports-web-crypto@5.2.0': + resolution: {integrity: sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==} + + '@aws-crypto/util@3.0.0': + resolution: {integrity: sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==} + + '@aws-crypto/util@5.2.0': + resolution: {integrity: sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==} + + '@aws-sdk/client-s3@3.540.0': + resolution: {integrity: sha512-rYBuNB7uqCO9xZc0OAwM2K6QJAo2Syt1L5OhEaf7zG7FulNMyrK6kJPg1WrvNE90tW6gUdDaTy3XsQ7lq6O7uA==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/client-s3@3.651.0': + resolution: {integrity: sha512-37+kxxjnlOAUCb1aHpoLakW4XRG23HrkX8X3cEjxaFLQxorPUiMvfAYQEQQkYD5yggaG+5aM5GAhxkTUTqA5xw==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/client-sso-oidc@3.540.0': + resolution: {integrity: sha512-LZYK0lBRQK8D8M3Sqc96XiXkAV2v70zhTtF6weyzEpgwxZMfSuFJjs0jFyhaeZBZbZv7BBghIdhJ5TPavNxGMQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + '@aws-sdk/credential-provider-node': ^3.540.0 + + '@aws-sdk/client-sso-oidc@3.650.0': + resolution: {integrity: sha512-6J7IS0f8ovhvbIAZaynOYP+jPX8344UlTjwHxjaXHgFvI8axu3+NslKtEEV5oHLhgzDvrKbinsu5lgE2n4Sqng==} + engines: {node: '>=16.0.0'} + peerDependencies: + '@aws-sdk/client-sts': ^3.650.0 + + '@aws-sdk/client-sso@3.540.0': + resolution: {integrity: sha512-rrQZMuw4sxIo3eyAUUzPQRA336mPRnrAeSlSdVHBKZD8Fjvoy0lYry2vNhkPLpFZLso1J66KRyuIv4LzRR3v1Q==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/client-sso@3.650.0': + resolution: {integrity: sha512-YKm14gCMChD/jlCisFlsVqB8HJujR41bl4Fup2crHwNJxhD/9LTnzwMiVVlBqlXr41Sfa6fSxczX2AMP8NM14A==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/client-sts@3.540.0': + resolution: {integrity: sha512-ITHUQxvpqfQX6obfpIi3KYGzZYfe/I5Ixjfxoi5lB7ISCtmxqObKB1fzD93wonkMJytJ7LUO8panZl/ojiJ1uw==} + engines: {node: '>=14.0.0'} + peerDependencies: + '@aws-sdk/credential-provider-node': ^3.540.0 + + '@aws-sdk/client-sts@3.650.0': + resolution: {integrity: sha512-ISK0ZQYA7O5/WYgslpWy956lUBudGC9d7eL0FFbiL0j50N80Gx3RUv22ezvZgxJWE0W3DqNr4CE19sPYn4Lw8g==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/core@3.535.0': + resolution: {integrity: sha512-+Yusa9HziuaEDta1UaLEtMAtmgvxdxhPn7jgfRY6PplqAqgsfa5FR83sxy5qr2q7xjQTwHtV4MjQVuOjG9JsLw==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/core@3.649.0': + resolution: {integrity: sha512-dheG/X2y25RHE7K+TlS32kcy7TgDg1OpWV44BQRoE0OBPAWmFR1D1qjjTZ7WWrdqRPKzcnDj1qED8ncyncOX8g==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/credential-provider-env@3.535.0': + resolution: {integrity: sha512-XppwO8c0GCGSAvdzyJOhbtktSEaShg14VJKg8mpMa1XcgqzmcqqHQjtDWbx5rZheY1VdpXZhpEzJkB6LpQejpA==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/credential-provider-env@3.649.0': + resolution: {integrity: sha512-tViwzM1dauksA3fdRjsg0T8mcHklDa8EfveyiQKK6pUJopkqV6FQx+X5QNda0t/LrdEVlFZvwHNdXqOEfc83TA==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/credential-provider-http@3.535.0': + resolution: {integrity: sha512-kdj1wCmOMZ29jSlUskRqN04S6fJ4dvt0Nq9Z32SA6wO7UG8ht6Ot9h/au/eTWJM3E1somZ7D771oK7dQt9b8yw==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/credential-provider-http@3.649.0': + resolution: {integrity: sha512-ODAJ+AJJq6ozbns6ejGbicpsQ0dyMOpnGlg0J9J0jITQ05DKQZ581hdB8APDOZ9N8FstShP6dLZflSj8jb5fNA==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/credential-provider-ini@3.540.0': + resolution: {integrity: sha512-igN/RbsnulIBwqXbwsWmR3srqmtbPF1dm+JteGvUY31FW65fTVvWvSr945Y/cf1UbhPmIQXntlsqESqpkhTHwg==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/credential-provider-ini@3.650.0': + resolution: {integrity: sha512-x2M9buZxIsKuUbuDgkGHhAKYBpn0/rYdKlwuFuOhXyyAcnhvPj0lgNF2KE4ld/GF1mKr7FF/uV3G9lM6PFaYmA==} + engines: {node: '>=16.0.0'} + peerDependencies: + '@aws-sdk/client-sts': ^3.650.0 + + '@aws-sdk/credential-provider-node@3.540.0': + resolution: {integrity: sha512-HKQZJbLHlrHX9A0B1poiYNXIIQfy8whTjuosTCYKPDBhhUyVAQfxy/KG726j0v43IhaNPLgTGZCJve4hAsazSw==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/credential-provider-node@3.650.0': + resolution: {integrity: sha512-uBra5YjzS/gWSekAogfqJfY6c+oKQkkou7Cjc4d/cpMNvQtF1IBdekJ7NaE1RfsDEz3uH1+Myd07YWZAJo/2Qw==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/credential-provider-process@3.535.0': + resolution: {integrity: sha512-9O1OaprGCnlb/kYl8RwmH7Mlg8JREZctB8r9sa1KhSsWFq/SWO0AuJTyowxD7zL5PkeS4eTvzFFHWCa3OO5epA==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/credential-provider-process@3.649.0': + resolution: {integrity: sha512-6VYPQpEVpU+6DDS/gLoI40ppuNM5RPIEprK30qZZxnhTr5wyrGOeJ7J7wbbwPOZ5dKwta290BiJDU2ipV8Y9BQ==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/credential-provider-sso@3.540.0': + resolution: {integrity: sha512-tKkFqK227LF5ajc5EL6asXS32p3nkofpP8G7NRpU7zOEOQCg01KUc4JRX+ItI0T007CiN1J19yNoFqHLT/SqHg==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/credential-provider-sso@3.650.0': + resolution: {integrity: sha512-069nkhcwximbvyGiAC6Fr2G+yrG/p1S3NQ5BZ2cMzB1hgUKo6TvgFK7nriYI4ljMQ+UWxqPwIdTqiUmn2iJmhg==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/credential-provider-web-identity@3.540.0': + resolution: {integrity: sha512-OpDm9w3A168B44hSjpnvECP4rvnFzD86rN4VYdGADuCvEa5uEcdA/JuT5WclFPDqdWEmFBqS1pxBIJBf0g2Q9Q==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/credential-provider-web-identity@3.649.0': + resolution: {integrity: sha512-XVk3WsDa0g3kQFPmnCH/LaCtGY/0R2NDv7gscYZSXiBZcG/fixasglTprgWSp8zcA0t7tEIGu9suyjz8ZwhymQ==} + engines: {node: '>=16.0.0'} + peerDependencies: + '@aws-sdk/client-sts': ^3.649.0 + + '@aws-sdk/lib-storage@3.651.0': + resolution: {integrity: sha512-AK41Gn/KWtOHC4X9fPjtG63FgssT+CS8CTWIhrM2k1cw4Ut+Wt8L1C4otXfyyLqTyLs/UGEFHn7ed68mGj6nAQ==} + engines: {node: '>=16.0.0'} + peerDependencies: + '@aws-sdk/client-s3': ^3.651.0 + + '@aws-sdk/middleware-bucket-endpoint@3.535.0': + resolution: {integrity: sha512-7sijlfQsc4UO9Fsl11mU26Y5f9E7g6UoNg/iJUBpC5pgvvmdBRO5UEhbB/gnqvOEPsBXyhmfzbstebq23Qdz7A==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/middleware-bucket-endpoint@3.649.0': + resolution: {integrity: sha512-ZdDICtUU4YZkrVllTUOH1Fj/F3WShLhkfNKJE3HJ/yj6pS8JS9P2lWzHiHkHiidjrHSxc6NuBo6vuZ+182XLbw==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/middleware-expect-continue@3.535.0': + resolution: {integrity: sha512-hFKyqUBky0NWCVku8iZ9+PACehx0p6vuMw5YnZf8FVgHP0fode0b/NwQY6UY7oor/GftvRsAlRUAWGNFEGUpwA==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/middleware-expect-continue@3.649.0': + resolution: {integrity: sha512-pW2id/mWNd+L0/hZKp5yL3J+8rTwsamu9E69Hc5pM3qTF4K4DTZZ+A0sQbY6duIvZvc8IbQHbSMulBOLyWNP3A==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/middleware-flexible-checksums@3.535.0': + resolution: {integrity: sha512-rBIzldY9jjRATxICDX7t77aW6ctqmVDgnuAOgbVT5xgHftt4o7PGWKoMvl/45hYqoQgxVFnCBof9bxkqSBebVA==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/middleware-flexible-checksums@3.651.0': + resolution: {integrity: sha512-mGAOIjhNDcBK5+JD+W+Ky5YJL98jTNFTENJV/GiQ9t3CdqK3p02MNr/T6VwzEpzsJvJD23amogiEZeiqSQiibg==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/middleware-host-header@3.535.0': + resolution: {integrity: sha512-0h6TWjBWtDaYwHMQJI9ulafeS4lLaw1vIxRjbpH0svFRt6Eve+Sy8NlVhECfTU2hNz/fLubvrUxsXoThaLBIew==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/middleware-host-header@3.649.0': + resolution: {integrity: sha512-PjAe2FocbicHVgNNwdSZ05upxIO7AgTPFtQLpnIAmoyzMcgv/zNB5fBn3uAnQSAeEPPCD+4SYVEUD1hw1ZBvEg==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/middleware-location-constraint@3.535.0': + resolution: {integrity: sha512-SxfS9wfidUZZ+WnlKRTCRn3h+XTsymXRXPJj8VV6hNRNeOwzNweoG3YhQbTowuuNfXf89m9v6meYkBBtkdacKw==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/middleware-location-constraint@3.649.0': + resolution: {integrity: sha512-O9AXhaFUQx34UTnp/cKCcaWW/IVk4mntlWfFjsIxvRatamKaY33b5fOiakGG+J1t0QFK0niDBSvOYUR1fdlHzw==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/middleware-logger@3.535.0': + resolution: {integrity: sha512-huNHpONOrEDrdRTvSQr1cJiRMNf0S52NDXtaPzdxiubTkP+vni2MohmZANMOai/qT0olmEVX01LhZ0ZAOgmg6A==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/middleware-logger@3.649.0': + resolution: {integrity: sha512-qdqRx6q7lYC6KL/NT9x3ShTL0TBuxdkCczGzHzY3AnOoYUjnCDH7Vlq867O6MAvb4EnGNECFzIgtkZkQ4FhY5w==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/middleware-recursion-detection@3.535.0': + resolution: {integrity: sha512-am2qgGs+gwqmR4wHLWpzlZ8PWhm4ktj5bYSgDrsOfjhdBlWNxvPoID9/pDAz5RWL48+oH7I6SQzMqxXsFDikrw==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/middleware-recursion-detection@3.649.0': + resolution: {integrity: sha512-IPnO4wlmaLRf6IYmJW2i8gJ2+UPXX0hDRv1it7Qf8DpBW+lGyF2rnoN7NrFX0WIxdGOlJF1RcOr/HjXb2QeXfQ==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/middleware-sdk-s3@3.535.0': + resolution: {integrity: sha512-/dLG/E3af6ohxkQ5GBHT8tZfuPIg6eItKxCXuulvYj0Tqgf3Mb+xTsvSkxQsJF06RS4sH7Qsg/PnB8ZfrJrXpg==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/middleware-sdk-s3@3.649.0': + resolution: {integrity: sha512-3H8735xTAD7IxNdreT6qv2YRk4CGOGfz8ufZo5pROJYZ4N5rfcdDMvb8szMSLvQHegqS4v1DqO9nrOPgc0I2Qg==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/middleware-signing@3.535.0': + resolution: {integrity: sha512-Rb4sfus1Gc5paRl9JJgymJGsb/i3gJKK/rTuFZICdd1PBBE5osIOHP5CpzWYBtc5LlyZE1a2QoxPMCyG+QUGPw==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/middleware-ssec@3.537.0': + resolution: {integrity: sha512-2QWMrbwd5eBy5KCYn9a15JEWBgrK2qFEKQN2lqb/6z0bhtevIOxIRfC99tzvRuPt6nixFQ+ynKuBjcfT4ZFrdQ==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/middleware-ssec@3.649.0': + resolution: {integrity: sha512-r/WBIpX+Kcx+AV5vJ+LbdDOuibk7spBqcFK2LytQjOZKPksZNRAM99khbFe9vr9S1+uDmCLVjAVkIfQ5seJrOw==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/middleware-user-agent@3.540.0': + resolution: {integrity: sha512-8Rd6wPeXDnOYzWj1XCmOKcx/Q87L0K1/EHqOBocGjLVbN3gmRxBvpmR1pRTjf7IsWfnnzN5btqtcAkfDPYQUMQ==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/middleware-user-agent@3.649.0': + resolution: {integrity: sha512-q6sO10dnCXoxe9thobMJxekhJumzd1j6dxcE1+qJdYKHJr6yYgWbogJqrLCpWd30w0lEvnuAHK8lN2kWLdJxJw==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/region-config-resolver@3.535.0': + resolution: {integrity: sha512-IXOznDiaItBjsQy4Fil0kzX/J3HxIOknEphqHbOfUf+LpA5ugcsxuQQONrbEQusCBnfJyymrldBvBhFmtlU9Wg==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/region-config-resolver@3.649.0': + resolution: {integrity: sha512-xURBvdQXvRvca5Du8IlC5FyCj3pkw8Z75+373J3Wb+vyg8GjD14HfKk1Je1HCCQDyIE9VB/scYDcm9ri0ppePw==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/signature-v4-multi-region@3.535.0': + resolution: {integrity: sha512-tqCsEsEj8icW0SAh3NvyhRUq54Gz2pu4NM2tOSrFp7SO55heUUaRLSzYteNZCTOupH//AAaZvbN/UUTO/DrOog==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/signature-v4-multi-region@3.649.0': + resolution: {integrity: sha512-feJfSHtCarFmTMZSE5k7/A+m4FrdCrmotljc/AmXArWy3wl8XFyxE5tFVW/PiUgbgeoVDN+ZLt3YYtItHfNUWQ==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/token-providers@3.540.0': + resolution: {integrity: sha512-9BvtiVEZe5Ev88Wa4ZIUbtT6BVcPwhxmVInQ6c12MYNb0WNL54BN6wLy/eknAfF05gpX2/NDU2pUDOyMPdm/+g==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/token-providers@3.649.0': + resolution: {integrity: sha512-ZBqr+JuXI9RiN+4DSZykMx5gxpL8Dr3exIfFhxMiwAP3DQojwl0ub8ONjMuAjq9OvmX6n+jHZL6fBnNgnNFC8w==} + engines: {node: '>=16.0.0'} + peerDependencies: + '@aws-sdk/client-sso-oidc': ^3.649.0 + + '@aws-sdk/types@3.535.0': + resolution: {integrity: sha512-aY4MYfduNj+sRR37U7XxYR8wemfbKP6lx00ze2M2uubn7mZotuVrWYAafbMSXrdEMSToE5JDhr28vArSOoLcSg==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/types@3.649.0': + resolution: {integrity: sha512-PuPw8RysbhJNlaD2d/PzOTf8sbf4Dsn2b7hwyGh7YVG3S75yTpxSAZxrnhKsz9fStgqFmnw/jUfV/G+uQAeTVw==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/util-arn-parser@3.535.0': + resolution: {integrity: sha512-smVo29nUPAOprp8Z5Y3GHuhiOtw6c8/EtLCm5AVMtRsTPw4V414ZXL2H66tzmb5kEeSzQlbfBSBEdIFZoxO9kg==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/util-arn-parser@3.568.0': + resolution: {integrity: sha512-XUKJWWo+KOB7fbnPP0+g/o5Ulku/X53t7i/h+sPHr5xxYTJJ9CYnbToo95mzxe7xWvkLrsNtJ8L+MnNn9INs2w==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/util-endpoints@3.540.0': + resolution: {integrity: sha512-1kMyQFAWx6f8alaI6UT65/5YW/7pDWAKAdNwL6vuJLea03KrZRX3PMoONOSJpAS5m3Ot7HlWZvf3wZDNTLELZw==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/util-endpoints@3.649.0': + resolution: {integrity: sha512-bZI1Wc3R/KibdDVWFxX/N4AoJFG4VJ92Dp4WYmOrVD6VPkb8jPz7ZeiYc7YwPl8NoDjYyPneBV0lEoK/V8OKAA==} + engines: {node: '>=16.0.0'} + + '@aws-sdk/util-locate-window@3.535.0': + resolution: {integrity: sha512-PHJ3SL6d2jpcgbqdgiPxkXpu7Drc2PYViwxSIqvvMKhDwzSB1W3mMvtpzwKM4IE7zLFodZo0GKjJ9AsoXndXhA==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/util-user-agent-browser@3.535.0': + resolution: {integrity: sha512-RWMcF/xV5n+nhaA/Ff5P3yNP3Kur/I+VNZngog4TEs92oB/nwOdAg/2JL8bVAhUbMrjTjpwm7PItziYFQoqyig==} + + '@aws-sdk/util-user-agent-browser@3.649.0': + resolution: {integrity: sha512-IY43r256LhKAvdEVQO/FPdUyVpcZS5EVxh/WHVdNzuN1bNLoUK2rIzuZqVA0EGguvCxoXVmQv9m50GvG7cGktg==} + + '@aws-sdk/util-user-agent-node@3.535.0': + resolution: {integrity: sha512-dRek0zUuIT25wOWJlsRm97nTkUlh1NDcLsQZIN2Y8KxhwoXXWtJs5vaDPT+qAg+OpcNj80i1zLR/CirqlFg/TQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + aws-crt: '>=1.0.0' peerDependenciesMeta: aws-crt: optional: true - "@aws-sdk/util-user-agent-node@3.649.0": - resolution: - { - integrity: sha512-x5DiLpZDG/AJmCIBnE3Xhpwy35QIo3WqNiOpw6ExVs1NydbM/e90zFPSfhME0FM66D/WorigvluBxxwjxDm/GA==, - } - engines: { node: ">=16.0.0" } + '@aws-sdk/util-user-agent-node@3.649.0': + resolution: {integrity: sha512-x5DiLpZDG/AJmCIBnE3Xhpwy35QIo3WqNiOpw6ExVs1NydbM/e90zFPSfhME0FM66D/WorigvluBxxwjxDm/GA==} + engines: {node: '>=16.0.0'} peerDependencies: - aws-crt: ">=1.0.0" + aws-crt: '>=1.0.0' peerDependenciesMeta: aws-crt: optional: true - "@aws-sdk/util-utf8-browser@3.259.0": - resolution: - { - integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==, - } - - "@aws-sdk/xml-builder@3.535.0": - resolution: - { - integrity: sha512-VXAq/Jz8KIrU84+HqsOJhIKZqG0PNTdi6n6PFQ4xJf44ZQHD/5C7ouH4qCFX5XgZXcgbRIcMVVYGC6Jye0dRng==, - } - engines: { node: ">=14.0.0" } - - "@aws-sdk/xml-builder@3.649.0": - resolution: - { - integrity: sha512-XVESKkK7m5LdCVzZ3NvAja40BEyCrfPqtaiFAAhJIvW2U1Edyugf2o3XikuQY62crGT6BZagxJFgOiLKvuTiTg==, - } - engines: { node: ">=16.0.0" } - - "@azure/abort-controller@1.1.0": - resolution: - { - integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==, - } - engines: { node: ">=12.0.0" } - - "@azure/abort-controller@2.1.1": - resolution: - { - integrity: sha512-NhzeNm5zu2fPlwGXPUjzsRCRuPx5demaZyNcyNYJDqpa/Sbxzvo/RYt9IwUaAOnDW5+r7J9UOE6f22TQnb9nhQ==, - } - engines: { node: ">=18.0.0" } - - "@azure/core-asynciterator-polyfill@1.0.2": - resolution: - { - integrity: sha512-3rkP4LnnlWawl0LZptJOdXNrT/fHp2eQMadoasa6afspXdpGrtPZuAQc2PD0cpgyuoXtUWyC3tv7xfntjGS5Dw==, - } - engines: { node: ">=12.0.0" } - - "@azure/core-auth@1.7.1": - resolution: - { - integrity: sha512-dyeQwvgthqs/SlPVQbZQetpslXceHd4i5a7M/7z/lGEAVwnSluabnQOjF2/dk/hhWgMISusv1Ytp4mQ8JNy62A==, - } - engines: { node: ">=18.0.0" } - - "@azure/core-http@3.0.4": - resolution: - { - integrity: sha512-Fok9VVhMdxAFOtqiiAtg74fL0UJkt0z3D+ouUUxcRLzZNBioPRAMJFVxiWoJljYpXsRi4GDQHzQHDc9AiYaIUQ==, - } - engines: { node: ">=14.0.0" } + '@aws-sdk/util-utf8-browser@3.259.0': + resolution: {integrity: sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==} + + '@aws-sdk/xml-builder@3.535.0': + resolution: {integrity: sha512-VXAq/Jz8KIrU84+HqsOJhIKZqG0PNTdi6n6PFQ4xJf44ZQHD/5C7ouH4qCFX5XgZXcgbRIcMVVYGC6Jye0dRng==} + engines: {node: '>=14.0.0'} + + '@aws-sdk/xml-builder@3.649.0': + resolution: {integrity: sha512-XVESKkK7m5LdCVzZ3NvAja40BEyCrfPqtaiFAAhJIvW2U1Edyugf2o3XikuQY62crGT6BZagxJFgOiLKvuTiTg==} + engines: {node: '>=16.0.0'} + + '@azure/abort-controller@1.1.0': + resolution: {integrity: sha512-TrRLIoSQVzfAJX9H1JeFjzAoDGcoK1IYX1UImfceTZpsyYfWr09Ss1aHW1y5TrrR3iq6RZLBwJ3E24uwPhwahw==} + engines: {node: '>=12.0.0'} + + '@azure/abort-controller@2.1.1': + resolution: {integrity: sha512-NhzeNm5zu2fPlwGXPUjzsRCRuPx5demaZyNcyNYJDqpa/Sbxzvo/RYt9IwUaAOnDW5+r7J9UOE6f22TQnb9nhQ==} + engines: {node: '>=18.0.0'} + + '@azure/core-asynciterator-polyfill@1.0.2': + resolution: {integrity: sha512-3rkP4LnnlWawl0LZptJOdXNrT/fHp2eQMadoasa6afspXdpGrtPZuAQc2PD0cpgyuoXtUWyC3tv7xfntjGS5Dw==} + engines: {node: '>=12.0.0'} + + '@azure/core-auth@1.7.1': + resolution: {integrity: sha512-dyeQwvgthqs/SlPVQbZQetpslXceHd4i5a7M/7z/lGEAVwnSluabnQOjF2/dk/hhWgMISusv1Ytp4mQ8JNy62A==} + engines: {node: '>=18.0.0'} + + '@azure/core-http@3.0.4': + resolution: {integrity: sha512-Fok9VVhMdxAFOtqiiAtg74fL0UJkt0z3D+ouUUxcRLzZNBioPRAMJFVxiWoJljYpXsRi4GDQHzQHDc9AiYaIUQ==} + engines: {node: '>=14.0.0'} deprecated: This package is no longer supported. Please migrate to use @azure/core-rest-pipeline - "@azure/core-lro@2.7.1": - resolution: - { - integrity: sha512-kXSlrNHOCTVZMxpXNRqzgh9/j4cnNXU5Hf2YjMyjddRhCXFiFRzmNaqwN+XO9rGTsCOIaaG7M67zZdyliXZG9g==, - } - engines: { node: ">=18.0.0" } - - "@azure/core-paging@1.6.1": - resolution: - { - integrity: sha512-3tKIQXSU3mlN+ITz0m2pXLnKK3oQ6/EVcW8ud011Iq+M0rx6Wnm7NUEpoMeOAEedeKlPtemrQzO6YWoDR71O5w==, - } - engines: { node: ">=18.0.0" } - - "@azure/core-tracing@1.0.0-preview.13": - resolution: - { - integrity: sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==, - } - engines: { node: ">=12.0.0" } - - "@azure/core-util@1.8.1": - resolution: - { - integrity: sha512-L3voj0StUdJ+YKomvwnTv7gHzguJO+a6h30pmmZdRprJCM+RJlGMPxzuh4R7lhQu1jNmEtaHX5wvTgWLDAmbGQ==, - } - engines: { node: ">=18.0.0" } - - "@azure/logger@1.1.1": - resolution: - { - integrity: sha512-/+4TtokaGgC+MnThdf6HyIH9Wrjp+CnCn3Nx3ggevN7FFjjNyjqg0yLlc2i9S+Z2uAzI8GYOo35Nzb1MhQ89MA==, - } - engines: { node: ">=18.0.0" } - - "@azure/ms-rest-js@2.7.0": - resolution: - { - integrity: sha512-ngbzWbqF+NmztDOpLBVDxYM+XLcUj7nKhxGbSU9WtIsXfRB//cf2ZbAG5HkOrhU9/wd/ORRB6lM/d69RKVjiyA==, - } - - "@azure/storage-blob@12.17.0": - resolution: - { - integrity: sha512-sM4vpsCpcCApagRW5UIjQNlNylo02my2opgp0Emi8x888hZUvJ3dN69Oq20cEGXkMUWnoCrBaB0zyS3yeB87sQ==, - } - engines: { node: ">=14.0.0" } - - "@babel/code-frame@7.10.4": - resolution: - { - integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==, - } - - "@babel/code-frame@7.24.2": - resolution: - { - integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==, - } - engines: { node: ">=6.9.0" } - - "@babel/code-frame@7.24.6": - resolution: - { - integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==, - } - engines: { node: ">=6.9.0" } - - "@babel/compat-data@7.24.1": - resolution: - { - integrity: sha512-Pc65opHDliVpRHuKfzI+gSA4zcgr65O4cl64fFJIWEEh8JoHIHh0Oez1Eo8Arz8zq/JhgKodQaxEwUPRtZylVA==, - } - engines: { node: ">=6.9.0" } - - "@babel/core@7.24.3": - resolution: - { - integrity: sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==, - } - engines: { node: ">=6.9.0" } - - "@babel/eslint-parser@7.24.1": - resolution: - { - integrity: sha512-d5guuzMlPeDfZIbpQ8+g1NaCNuAGBBGNECh0HVqz1sjOeVLh2CEaifuOysCH18URW6R7pqXINvf5PaR/dC6jLQ==, - } - engines: { node: ^10.13.0 || ^12.13.0 || >=14.0.0 } - peerDependencies: - "@babel/core": ^7.11.0 + '@azure/core-lro@2.7.1': + resolution: {integrity: sha512-kXSlrNHOCTVZMxpXNRqzgh9/j4cnNXU5Hf2YjMyjddRhCXFiFRzmNaqwN+XO9rGTsCOIaaG7M67zZdyliXZG9g==} + engines: {node: '>=18.0.0'} + + '@azure/core-paging@1.6.1': + resolution: {integrity: sha512-3tKIQXSU3mlN+ITz0m2pXLnKK3oQ6/EVcW8ud011Iq+M0rx6Wnm7NUEpoMeOAEedeKlPtemrQzO6YWoDR71O5w==} + engines: {node: '>=18.0.0'} + + '@azure/core-tracing@1.0.0-preview.13': + resolution: {integrity: sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==} + engines: {node: '>=12.0.0'} + + '@azure/core-util@1.8.1': + resolution: {integrity: sha512-L3voj0StUdJ+YKomvwnTv7gHzguJO+a6h30pmmZdRprJCM+RJlGMPxzuh4R7lhQu1jNmEtaHX5wvTgWLDAmbGQ==} + engines: {node: '>=18.0.0'} + + '@azure/logger@1.1.1': + resolution: {integrity: sha512-/+4TtokaGgC+MnThdf6HyIH9Wrjp+CnCn3Nx3ggevN7FFjjNyjqg0yLlc2i9S+Z2uAzI8GYOo35Nzb1MhQ89MA==} + engines: {node: '>=18.0.0'} + + '@azure/ms-rest-js@2.7.0': + resolution: {integrity: sha512-ngbzWbqF+NmztDOpLBVDxYM+XLcUj7nKhxGbSU9WtIsXfRB//cf2ZbAG5HkOrhU9/wd/ORRB6lM/d69RKVjiyA==} + + '@azure/storage-blob@12.17.0': + resolution: {integrity: sha512-sM4vpsCpcCApagRW5UIjQNlNylo02my2opgp0Emi8x888hZUvJ3dN69Oq20cEGXkMUWnoCrBaB0zyS3yeB87sQ==} + engines: {node: '>=14.0.0'} + + '@babel/code-frame@7.10.4': + resolution: {integrity: sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==} + + '@babel/code-frame@7.24.2': + resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==} + engines: {node: '>=6.9.0'} + + '@babel/code-frame@7.24.6': + resolution: {integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==} + engines: {node: '>=6.9.0'} + + '@babel/compat-data@7.24.1': + resolution: {integrity: sha512-Pc65opHDliVpRHuKfzI+gSA4zcgr65O4cl64fFJIWEEh8JoHIHh0Oez1Eo8Arz8zq/JhgKodQaxEwUPRtZylVA==} + engines: {node: '>=6.9.0'} + + '@babel/core@7.24.3': + resolution: {integrity: sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ==} + engines: {node: '>=6.9.0'} + + '@babel/eslint-parser@7.24.1': + resolution: {integrity: sha512-d5guuzMlPeDfZIbpQ8+g1NaCNuAGBBGNECh0HVqz1sjOeVLh2CEaifuOysCH18URW6R7pqXINvf5PaR/dC6jLQ==} + engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} + peerDependencies: + '@babel/core': ^7.11.0 eslint: ^7.5.0 || ^8.0.0 - "@babel/generator@7.2.0": - resolution: - { - integrity: sha512-BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg==, - } - - "@babel/generator@7.24.1": - resolution: - { - integrity: sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-annotate-as-pure@7.22.5": - resolution: - { - integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-builder-binary-assignment-operator-visitor@7.22.15": - resolution: - { - integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-compilation-targets@7.23.6": - resolution: - { - integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-create-class-features-plugin@7.24.1": - resolution: - { - integrity: sha512-1yJa9dX9g//V6fDebXoEfEsxkZHk3Hcbm+zLhyu6qVgYFLvmTALTeV+jNU9e5RnYtioBrGEOdoI2joMSNQ/+aA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/helper-create-regexp-features-plugin@7.22.15": - resolution: - { - integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/helper-define-polyfill-provider@0.6.1": - resolution: - { - integrity: sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==, - } - peerDependencies: - "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 - - "@babel/helper-environment-visitor@7.22.20": - resolution: - { - integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-function-name@7.23.0": - resolution: - { - integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-hoist-variables@7.22.5": - resolution: - { - integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-member-expression-to-functions@7.23.0": - resolution: - { - integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-module-imports@7.24.3": - resolution: - { - integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-module-transforms@7.23.3": - resolution: - { - integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/helper-optimise-call-expression@7.22.5": - resolution: - { - integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-plugin-utils@7.24.0": - resolution: - { - integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-remap-async-to-generator@7.22.20": - resolution: - { - integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/helper-replace-supers@7.24.1": - resolution: - { - integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/helper-simple-access@7.22.5": - resolution: - { - integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-skip-transparent-expression-wrappers@7.22.5": - resolution: - { - integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-split-export-declaration@7.22.6": - resolution: - { - integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-string-parser@7.24.1": - resolution: - { - integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-validator-identifier@7.22.20": - resolution: - { - integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-validator-identifier@7.24.7": - resolution: - { - integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-validator-option@7.23.5": - resolution: - { - integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==, - } - engines: { node: ">=6.9.0" } - - "@babel/helper-wrap-function@7.22.20": - resolution: - { - integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==, - } - engines: { node: ">=6.9.0" } - - "@babel/helpers@7.24.1": - resolution: - { - integrity: sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==, - } - engines: { node: ">=6.9.0" } - - "@babel/highlight@7.24.2": - resolution: - { - integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==, - } - engines: { node: ">=6.9.0" } - - "@babel/highlight@7.24.6": - resolution: - { - integrity: sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==, - } - engines: { node: ">=6.9.0" } - - "@babel/parser@7.24.1": - resolution: - { - integrity: sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==, - } - engines: { node: ">=6.0.0" } + '@babel/generator@7.2.0': + resolution: {integrity: sha512-BA75MVfRlFQG2EZgFYIwyT1r6xSkwfP2bdkY/kLZusEYWiJs4xCowab/alaEaT0wSvmVuXGqiefeBlP+7V1yKg==} + + '@babel/generator@7.24.1': + resolution: {integrity: sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A==} + engines: {node: '>=6.9.0'} + + '@babel/helper-annotate-as-pure@7.22.5': + resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': + resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-compilation-targets@7.23.6': + resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-create-class-features-plugin@7.24.1': + resolution: {integrity: sha512-1yJa9dX9g//V6fDebXoEfEsxkZHk3Hcbm+zLhyu6qVgYFLvmTALTeV+jNU9e5RnYtioBrGEOdoI2joMSNQ/+aA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-create-regexp-features-plugin@7.22.15': + resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-define-polyfill-provider@0.6.1': + resolution: {integrity: sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + + '@babel/helper-environment-visitor@7.22.20': + resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-function-name@7.23.0': + resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-hoist-variables@7.22.5': + resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-member-expression-to-functions@7.23.0': + resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.24.3': + resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-transforms@7.23.3': + resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-optimise-call-expression@7.22.5': + resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-plugin-utils@7.24.0': + resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==} + engines: {node: '>=6.9.0'} + + '@babel/helper-remap-async-to-generator@7.22.20': + resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-replace-supers@7.24.1': + resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-simple-access@7.22.5': + resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} + engines: {node: '>=6.9.0'} + + '@babel/helper-skip-transparent-expression-wrappers@7.22.5': + resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} + engines: {node: '>=6.9.0'} + + '@babel/helper-split-export-declaration@7.22.6': + resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@7.24.1': + resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.24.7': + resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-option@7.23.5': + resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-wrap-function@7.22.20': + resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} + engines: {node: '>=6.9.0'} + + '@babel/helpers@7.24.1': + resolution: {integrity: sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg==} + engines: {node: '>=6.9.0'} + + '@babel/highlight@7.24.2': + resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==} + engines: {node: '>=6.9.0'} + + '@babel/highlight@7.24.6': + resolution: {integrity: sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.24.1': + resolution: {integrity: sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg==} + engines: {node: '>=6.0.0'} hasBin: true - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1": - resolution: - { - integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1": - resolution: - { - integrity: sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.13.0 - - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1": - resolution: - { - integrity: sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/plugin-proposal-async-generator-functions@7.20.7": - resolution: - { - integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==, - } - engines: { node: ">=6.9.0" } + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1': + resolution: {integrity: sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1': + resolution: {integrity: sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1': + resolution: {integrity: sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-proposal-async-generator-functions@7.20.7': + resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} + 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-async-generator-functions instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.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-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-decorators@7.24.1": - resolution: - { - integrity: sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==, - } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-decorators@7.24.1': + resolution: {integrity: sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-proposal-export-default-from@7.24.1": - resolution: - { - integrity: sha512-+0hrgGGV3xyYIjOrD/bUZk/iUwOIGuoANfRfVg1cPhYBxF+TIXSEcc42DqzBICmWsnAQ+SfKedY0bj8QD+LuMg==, - } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-export-default-from@7.24.1': + resolution: {integrity: sha512-+0hrgGGV3xyYIjOrD/bUZk/iUwOIGuoANfRfVg1cPhYBxF+TIXSEcc42DqzBICmWsnAQ+SfKedY0bj8QD+LuMg==} + engines: {node: '>=6.9.0'} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-proposal-export-namespace-from@7.18.9": - resolution: - { - integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==, - } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-export-namespace-from@7.18.9': + resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} + 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-export-namespace-from instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-proposal-logical-assignment-operators@7.20.7": - resolution: - { - integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==, - } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-logical-assignment-operators@7.20.7': + resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} + 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-logical-assignment-operators instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-proposal-nullish-coalescing-operator@7.18.6": - resolution: - { - integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==, - } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6': + resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} + 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-nullish-coalescing-operator instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-proposal-numeric-separator@7.18.6": - resolution: - { - integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==, - } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-numeric-separator@7.18.6': + resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} + 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-numeric-separator 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/core': ^7.0.0-0 - "@babel/plugin-proposal-optional-catch-binding@7.18.6": - resolution: - { - integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==, - } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-optional-catch-binding@7.18.6': + resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} + 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-optional-catch-binding instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-proposal-optional-chaining@7.21.0": - resolution: - { - integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==, - } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-optional-chaining@7.21.0': + resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} + 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-optional-chaining instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-proposal-private-methods@7.18.6": - resolution: - { - integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==, - } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-private-methods@7.18.6': + resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} + 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-private-methods instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@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" } + '@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/core': ^7.0.0-0 - "@babel/plugin-proposal-private-property-in-object@7.21.11": - resolution: - { - integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==, - } - engines: { node: ">=6.9.0" } + '@babel/plugin-proposal-private-property-in-object@7.21.11': + resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} + 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-private-property-in-object instead. peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-async-generators@7.8.4": - resolution: - { - integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/plugin-syntax-async-generators@7.8.4': + resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} + peerDependencies: + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-bigint@7.8.3": - resolution: - { - integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, - } - 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-class-static-block@7.14.5": - resolution: - { - integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-decorators@7.24.1": - resolution: - { - integrity: sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-dynamic-import@7.8.3": - resolution: - { - integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-export-default-from@7.24.1": - resolution: - { - integrity: sha512-cNXSxv9eTkGUtd0PsNMK8Yx5xeScxfpWOUAxE+ZPAXXEcAMOC3fk7LRdXq5fvpra2pLx2p1YtkAhpUbB2SwaRA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/plugin-syntax-bigint@7.8.3': + resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} + peerDependencies: + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-export-namespace-from@7.8.3": - resolution: - { - integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, - } - 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.24.1": - resolution: - { - integrity: sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/plugin-syntax-class-static-block@7.14.5': + resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-decorators@7.24.1': + resolution: {integrity: sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-dynamic-import@7.8.3': + resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-export-default-from@7.24.1': + resolution: {integrity: sha512-cNXSxv9eTkGUtd0PsNMK8Yx5xeScxfpWOUAxE+ZPAXXEcAMOC3fk7LRdXq5fvpra2pLx2p1YtkAhpUbB2SwaRA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-export-namespace-from@7.8.3': + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-flow@7.24.1': + resolution: {integrity: sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-assertions@7.24.1': + resolution: {integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-attributes@7.24.1': + resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-import-meta@7.10.4': + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-json-strings@7.8.3': + resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-jsx@7.24.1': + resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-logical-assignment-operators@7.10.4': + resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3': + resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-numeric-separator@7.10.4': + resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} + 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-optional-catch-binding@7.8.3': + resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-optional-chaining@7.8.3': + resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-private-property-in-object@7.14.5': + resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-top-level-await@7.14.5': + resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-syntax-typescript@7.24.1': + resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==} + 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.24.1': + resolution: {integrity: sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-async-generator-functions@7.24.3': + resolution: {integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-async-to-generator@7.24.1': + resolution: {integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-block-scoped-functions@7.24.1': + resolution: {integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-block-scoping@7.24.1': + resolution: {integrity: sha512-h71T2QQvDgM2SmT29UYU6ozjMlAt7s7CSs5Hvy8f8cf/GM/Z4a2zMfN+fjVGaieeCrXR3EdQl6C4gQG+OgmbKw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-class-properties@7.24.1': + resolution: {integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-class-static-block@7.24.1': + resolution: {integrity: sha512-FUHlKCn6J3ERiu8Dv+4eoz7w8+kFLSyeVG4vDAikwADGjUCoHw/JHokyGtr8OR4UjpwPVivyF+h8Q5iv/JmrtA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + + '@babel/plugin-transform-classes@7.24.1': + resolution: {integrity: sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 - "@babel/plugin-syntax-import-assertions@7.24.1": - resolution: - { - integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-import-attributes@7.24.1": - resolution: - { - integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-import-meta@7.10.4": - resolution: - { - integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-json-strings@7.8.3": - resolution: - { - integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-jsx@7.24.1": - resolution: - { - integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-logical-assignment-operators@7.10.4": - resolution: - { - integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3": - resolution: - { - integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-numeric-separator@7.10.4": - resolution: - { - integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, - } - 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-optional-catch-binding@7.8.3": - resolution: - { - integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-optional-chaining@7.8.3": - resolution: - { - integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-private-property-in-object@7.14.5": - resolution: - { - integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-top-level-await@7.14.5": - resolution: - { - integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-syntax-typescript@7.24.1": - resolution: - { - integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==, - } - 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.24.1": - resolution: - { - integrity: sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-async-generator-functions@7.24.3": - resolution: - { - integrity: sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-async-to-generator@7.24.1": - resolution: - { - integrity: sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-block-scoped-functions@7.24.1": - resolution: - { - integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-block-scoping@7.24.1": - resolution: - { - integrity: sha512-h71T2QQvDgM2SmT29UYU6ozjMlAt7s7CSs5Hvy8f8cf/GM/Z4a2zMfN+fjVGaieeCrXR3EdQl6C4gQG+OgmbKw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-class-properties@7.24.1": - resolution: - { - integrity: sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-class-static-block@7.24.1": - resolution: - { - integrity: sha512-FUHlKCn6J3ERiu8Dv+4eoz7w8+kFLSyeVG4vDAikwADGjUCoHw/JHokyGtr8OR4UjpwPVivyF+h8Q5iv/JmrtA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.12.0 - - "@babel/plugin-transform-classes@7.24.1": - resolution: - { - integrity: sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-computed-properties@7.24.1": - resolution: - { - integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-destructuring@7.24.1": - resolution: - { - integrity: sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-dotall-regex@7.24.1": - resolution: - { - integrity: sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-duplicate-keys@7.24.1": - resolution: - { - integrity: sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-dynamic-import@7.24.1": - resolution: - { - integrity: sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-exponentiation-operator@7.24.1": - resolution: - { - integrity: sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-export-namespace-from@7.24.1": - resolution: - { - integrity: sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-flow-strip-types@7.24.1": - resolution: - { - integrity: sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-for-of@7.24.1": - resolution: - { - integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-function-name@7.24.1": - resolution: - { - integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-json-strings@7.24.1": - resolution: - { - integrity: sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-literals@7.24.1": - resolution: - { - integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-logical-assignment-operators@7.24.1": - resolution: - { - integrity: sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-member-expression-literals@7.24.1": - resolution: - { - integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-modules-amd@7.24.1": - resolution: - { - integrity: sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-modules-commonjs@7.24.1": - resolution: - { - integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-modules-systemjs@7.24.1": - resolution: - { - integrity: sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-modules-umd@7.24.1": - resolution: - { - integrity: sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-named-capturing-groups-regex@7.22.5": - resolution: - { - integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/plugin-transform-new-target@7.24.1": - resolution: - { - integrity: sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-nullish-coalescing-operator@7.24.1": - resolution: - { - integrity: sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-numeric-separator@7.24.1": - resolution: - { - integrity: sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-object-rest-spread@7.24.1": - resolution: - { - integrity: sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-object-super@7.24.1": - resolution: - { - integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-optional-catch-binding@7.24.1": - resolution: - { - integrity: sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-optional-chaining@7.24.1": - resolution: - { - integrity: sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-parameters@7.24.1": - resolution: - { - integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-private-methods@7.24.1": - resolution: - { - integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-private-property-in-object@7.24.1": - resolution: - { - integrity: sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-property-literals@7.24.1": - resolution: - { - integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-react-constant-elements@7.24.1": - resolution: - { - integrity: sha512-QXp1U9x0R7tkiGB0FOk8o74jhnap0FlZ5gNkRIWdG3eP+SvMFg118e1zaWewDzgABb106QSKpVsD3Wgd8t6ifA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-react-display-name@7.24.1": - resolution: - { - integrity: sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-react-jsx-development@7.22.5": - resolution: - { - integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-react-jsx-self@7.24.1": - resolution: - { - integrity: sha512-kDJgnPujTmAZ/9q2CN4m2/lRsUUPDvsG3+tSHWUJIzMGTt5U/b/fwWd3RO3n+5mjLrsBrVa5eKFRVSQbi3dF1w==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-react-jsx-source@7.24.1": - resolution: - { - integrity: sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-react-jsx@7.23.4": - resolution: - { - integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-react-pure-annotations@7.24.1": - resolution: - { - integrity: sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-regenerator@7.24.1": - resolution: - { - integrity: sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-reserved-words@7.24.1": - resolution: - { - integrity: sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-runtime@7.24.3": - resolution: - { - integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-shorthand-properties@7.24.1": - resolution: - { - integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-spread@7.24.1": - resolution: - { - integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-sticky-regex@7.24.1": - resolution: - { - integrity: sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-template-literals@7.24.1": - resolution: - { - integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-typeof-symbol@7.24.1": - resolution: - { - integrity: sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-typescript@7.24.1": - resolution: - { - integrity: sha512-liYSESjX2fZ7JyBFkYG78nfvHlMKE6IpNdTVnxmlYUR+j5ZLsitFbaAE+eJSK2zPPkNWNw4mXL51rQ8WrvdK0w==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-unicode-escapes@7.24.1": - resolution: - { - integrity: sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-unicode-property-regex@7.24.1": - resolution: - { - integrity: sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-unicode-regex@7.24.1": - resolution: - { - integrity: sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/plugin-transform-unicode-sets-regex@7.24.1": - resolution: - { - integrity: sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - - "@babel/preset-env@7.24.3": - resolution: - { - integrity: sha512-fSk430k5c2ff8536JcPvPWK4tZDwehWLGlBp0wrsBUjZVdeQV6lePbwKWZaZfK2vnh/1kQX1PzAJWsnBmVgGJA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/preset-flow@7.24.1": - resolution: - { - integrity: sha512-sWCV2G9pcqZf+JHyv/RyqEIpFypxdCSxWIxQjpdaQxenNog7cN1pr76hg8u0Fz8Qgg0H4ETkGcJnXL8d4j0PPA==, - } - 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.24.1": - resolution: - { - integrity: sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/preset-typescript@7.24.1": - resolution: - { - integrity: sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/register@7.23.7": - resolution: - { - integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - - "@babel/regjsgen@0.8.0": - resolution: - { - integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==, - } - - "@babel/runtime-corejs3@7.24.8": - resolution: - { - integrity: sha512-DXG/BhegtMHhnN7YPIvxWd303/9aXvYFD1TjNL3CD6tUrhI2LVsg3Lck0aql5TRH29n4sj3emcROypkZVUfSuA==, - } - engines: { node: ">=6.9.0" } - - "@babel/runtime@7.24.1": - resolution: - { - integrity: sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ==, - } - engines: { node: ">=6.9.0" } - - "@babel/runtime@7.25.0": - resolution: - { - integrity: sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==, - } - engines: { node: ">=6.9.0" } - - "@babel/template@7.24.0": - resolution: - { - integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==, - } - engines: { node: ">=6.9.0" } - - "@babel/traverse@7.24.1": - resolution: - { - integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==, - } - engines: { node: ">=6.9.0" } - - "@babel/types@7.24.0": - resolution: - { - integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==, - } - engines: { node: ">=6.9.0" } - - "@base2/pretty-print-object@1.0.1": - resolution: - { - integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==, - } - - "@bcoe/v8-coverage@0.2.3": - resolution: - { - integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==, - } - - "@blooo/hw-app-acre@1.0.1": - resolution: - { - integrity: sha512-lLwG2abLFks6B8rHatIfj8rOSajzjCQlT6Wa4zoZnlxWqv8o3oIZ/kQzO3Mf3CgY2i3kMk3DqNKd7yBtXyfnEg==, - } - - "@braintree/sanitize-url@6.0.4": - resolution: - { - integrity: sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==, - } - - "@braze/react-native-sdk@8.4.0": - resolution: - { - integrity: sha512-ypXVQD9lzIkQVgxQQoAYNZK/log/nHpPzz53iIsFelAM2hbT6NkyEEjM3SO0kO3UcZWZZvVtdR96ueX6wQep9g==, - } - - "@braze/web-sdk@4.10.2": - resolution: - { - integrity: sha512-S5OtBpmHDeZZVG1WjCdJ1w/SjzhGGULPkNjJONnl4YqUKK85BrGxK3beWXutduT5uoUl1Vfq4c32wx/DRsVDBw==, - } - - "@bundled-es-modules/cookie@2.0.0": - resolution: - { - integrity: sha512-Or6YHg/kamKHpxULAdSqhGqnWFneIXu1NKvvfBBzKGwpVsYuFIQ5aBPHDnnoR3ghW1nvSkALd+EF9iMtY7Vjxw==, - } - - "@bundled-es-modules/statuses@1.0.1": - resolution: - { - integrity: sha512-yn7BklA5acgcBr+7w064fGV+SGIFySjCKpqjcWgBAIfrAkY+4GQTJJHQMeT3V/sgz23VTEVV8TtOmkvJAhFVfg==, - } - - "@bundled-es-modules/tough-cookie@0.1.6": - resolution: - { - integrity: sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==, - } - - "@cardano-foundation/ledgerjs-hw-app-cardano@7.1.2": - resolution: - { - integrity: sha512-bSR8MdKzotnf9WGO0BtDpTXsH4ObaQjCDSHA6MhJuAKoJEaLl7ASS4ctzqzGlKWoEvjdsgx+M8hJbWDLJ63TFw==, - } - - "@casperlabs/ts-results@3.3.5": - resolution: - { - integrity: sha512-ymSQqqb4mOSet592li02u1Gd28LoOFJUm6R3jkdNQ+nqsnbHvN+izBigtP4aYmNwh6gFyCwDgjYporEJgDT4eA==, - } - - "@celo/base@3.2.0": - resolution: - { - integrity: sha512-9wfZYiYv7dzt17a29fxU6sV7JssyXfpSQ9kPSpfOlsewPICXwfOMQ+25Jn6xZu20Vx9rmKebmLHiQyiuYEDOcQ==, - } - - "@celo/connect@3.2.0": - resolution: - { - integrity: sha512-iLOLo8d1OqNcX827/iCfWCeWaewUl0kyhL1xgyXrf//YaPU+ljKtruJmiLLrxkfdB/etWUdcryrbmuUhjHZmKg==, - } - engines: { node: ">=8.13.0" } + '@babel/plugin-transform-computed-properties@7.24.1': + resolution: {integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-destructuring@7.24.1': + resolution: {integrity: sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-dotall-regex@7.24.1': + resolution: {integrity: sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-duplicate-keys@7.24.1': + resolution: {integrity: sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-dynamic-import@7.24.1': + resolution: {integrity: sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-exponentiation-operator@7.24.1': + resolution: {integrity: sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-export-namespace-from@7.24.1': + resolution: {integrity: sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-flow-strip-types@7.24.1': + resolution: {integrity: sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-for-of@7.24.1': + resolution: {integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-function-name@7.24.1': + resolution: {integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-json-strings@7.24.1': + resolution: {integrity: sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-literals@7.24.1': + resolution: {integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-logical-assignment-operators@7.24.1': + resolution: {integrity: sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-member-expression-literals@7.24.1': + resolution: {integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-amd@7.24.1': + resolution: {integrity: sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-commonjs@7.24.1': + resolution: {integrity: sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-systemjs@7.24.1': + resolution: {integrity: sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-modules-umd@7.24.1': + resolution: {integrity: sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-named-capturing-groups-regex@7.22.5': + resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-transform-new-target@7.24.1': + resolution: {integrity: sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-nullish-coalescing-operator@7.24.1': + resolution: {integrity: sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-numeric-separator@7.24.1': + resolution: {integrity: sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-rest-spread@7.24.1': + resolution: {integrity: sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-object-super@7.24.1': + resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-optional-catch-binding@7.24.1': + resolution: {integrity: sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-optional-chaining@7.24.1': + resolution: {integrity: sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-parameters@7.24.1': + resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-private-methods@7.24.1': + resolution: {integrity: sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-private-property-in-object@7.24.1': + resolution: {integrity: sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-property-literals@7.24.1': + resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-constant-elements@7.24.1': + resolution: {integrity: sha512-QXp1U9x0R7tkiGB0FOk8o74jhnap0FlZ5gNkRIWdG3eP+SvMFg118e1zaWewDzgABb106QSKpVsD3Wgd8t6ifA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-display-name@7.24.1': + resolution: {integrity: sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-development@7.22.5': + resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-self@7.24.1': + resolution: {integrity: sha512-kDJgnPujTmAZ/9q2CN4m2/lRsUUPDvsG3+tSHWUJIzMGTt5U/b/fwWd3RO3n+5mjLrsBrVa5eKFRVSQbi3dF1w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-source@7.24.1': + resolution: {integrity: sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx@7.23.4': + resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-pure-annotations@7.24.1': + resolution: {integrity: sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-regenerator@7.24.1': + resolution: {integrity: sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-reserved-words@7.24.1': + resolution: {integrity: sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-runtime@7.24.3': + resolution: {integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-shorthand-properties@7.24.1': + resolution: {integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-spread@7.24.1': + resolution: {integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-sticky-regex@7.24.1': + resolution: {integrity: sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-template-literals@7.24.1': + resolution: {integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typeof-symbol@7.24.1': + resolution: {integrity: sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-typescript@7.24.1': + resolution: {integrity: sha512-liYSESjX2fZ7JyBFkYG78nfvHlMKE6IpNdTVnxmlYUR+j5ZLsitFbaAE+eJSK2zPPkNWNw4mXL51rQ8WrvdK0w==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-escapes@7.24.1': + resolution: {integrity: sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-property-regex@7.24.1': + resolution: {integrity: sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-regex@7.24.1': + resolution: {integrity: sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-unicode-sets-regex@7.24.1': + resolution: {integrity: sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/preset-env@7.24.3': + resolution: {integrity: sha512-fSk430k5c2ff8536JcPvPWK4tZDwehWLGlBp0wrsBUjZVdeQV6lePbwKWZaZfK2vnh/1kQX1PzAJWsnBmVgGJA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-flow@7.24.1': + resolution: {integrity: sha512-sWCV2G9pcqZf+JHyv/RyqEIpFypxdCSxWIxQjpdaQxenNog7cN1pr76hg8u0Fz8Qgg0H4ETkGcJnXL8d4j0PPA==} + 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.24.1': + resolution: {integrity: sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/preset-typescript@7.24.1': + resolution: {integrity: sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/register@7.23.7': + resolution: {integrity: sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/regjsgen@0.8.0': + resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==} + + '@babel/runtime-corejs3@7.24.8': + resolution: {integrity: sha512-DXG/BhegtMHhnN7YPIvxWd303/9aXvYFD1TjNL3CD6tUrhI2LVsg3Lck0aql5TRH29n4sj3emcROypkZVUfSuA==} + engines: {node: '>=6.9.0'} + + '@babel/runtime@7.24.1': + resolution: {integrity: sha512-+BIznRzyqBf+2wCTxcKE3wDjfGeCoVE61KSHGpkzqrLi8qxqFwBeUFyId2cxkTmm55fzDGnm0+yCxaxygrLUnQ==} + engines: {node: '>=6.9.0'} + + '@babel/runtime@7.25.0': + resolution: {integrity: sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.24.0': + resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.24.1': + resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.24.0': + resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==} + engines: {node: '>=6.9.0'} + + '@base2/pretty-print-object@1.0.1': + resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} + + '@bcoe/v8-coverage@0.2.3': + resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} + + '@blooo/hw-app-acre@1.0.1': + resolution: {integrity: sha512-lLwG2abLFks6B8rHatIfj8rOSajzjCQlT6Wa4zoZnlxWqv8o3oIZ/kQzO3Mf3CgY2i3kMk3DqNKd7yBtXyfnEg==} + + '@braintree/sanitize-url@6.0.4': + resolution: {integrity: sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==} + + '@braze/react-native-sdk@8.4.0': + resolution: {integrity: sha512-ypXVQD9lzIkQVgxQQoAYNZK/log/nHpPzz53iIsFelAM2hbT6NkyEEjM3SO0kO3UcZWZZvVtdR96ueX6wQep9g==} + + '@braze/web-sdk@4.10.2': + resolution: {integrity: sha512-S5OtBpmHDeZZVG1WjCdJ1w/SjzhGGULPkNjJONnl4YqUKK85BrGxK3beWXutduT5uoUl1Vfq4c32wx/DRsVDBw==} + + '@bundled-es-modules/cookie@2.0.0': + resolution: {integrity: sha512-Or6YHg/kamKHpxULAdSqhGqnWFneIXu1NKvvfBBzKGwpVsYuFIQ5aBPHDnnoR3ghW1nvSkALd+EF9iMtY7Vjxw==} + + '@bundled-es-modules/statuses@1.0.1': + resolution: {integrity: sha512-yn7BklA5acgcBr+7w064fGV+SGIFySjCKpqjcWgBAIfrAkY+4GQTJJHQMeT3V/sgz23VTEVV8TtOmkvJAhFVfg==} + + '@bundled-es-modules/tough-cookie@0.1.6': + resolution: {integrity: sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==} + + '@cardano-foundation/ledgerjs-hw-app-cardano@7.1.2': + resolution: {integrity: sha512-bSR8MdKzotnf9WGO0BtDpTXsH4ObaQjCDSHA6MhJuAKoJEaLl7ASS4ctzqzGlKWoEvjdsgx+M8hJbWDLJ63TFw==} + + '@casperlabs/ts-results@3.3.5': + resolution: {integrity: sha512-ymSQqqb4mOSet592li02u1Gd28LoOFJUm6R3jkdNQ+nqsnbHvN+izBigtP4aYmNwh6gFyCwDgjYporEJgDT4eA==} + + '@celo/base@3.2.0': + resolution: {integrity: sha512-9wfZYiYv7dzt17a29fxU6sV7JssyXfpSQ9kPSpfOlsewPICXwfOMQ+25Jn6xZu20Vx9rmKebmLHiQyiuYEDOcQ==} + + '@celo/connect@3.2.0': + resolution: {integrity: sha512-iLOLo8d1OqNcX827/iCfWCeWaewUl0kyhL1xgyXrf//YaPU+ljKtruJmiLLrxkfdB/etWUdcryrbmuUhjHZmKg==} + engines: {node: '>=8.13.0'} deprecated: Versions less than 5.1 are deprecated and will no longer be able to submit transactions to celo in a future hardfork peerDependencies: web3: 1.3.6 - "@celo/contractkit@3.2.0": - resolution: - { - integrity: sha512-kt4ViBRMg7ezCPi2SdcrYdDorA1Meg/qk97/u4izEIthl9GM4QSRfhhHYsbXYm0NV/MZ2BkS0cCsQ/SHcILSaA==, - } - engines: { node: ">=8.13.0" } + '@celo/contractkit@3.2.0': + resolution: {integrity: sha512-kt4ViBRMg7ezCPi2SdcrYdDorA1Meg/qk97/u4izEIthl9GM4QSRfhhHYsbXYm0NV/MZ2BkS0cCsQ/SHcILSaA==} + engines: {node: '>=8.13.0'} deprecated: Versions less than 5.1 are deprecated and will no longer be able to submit transactions to celo in a future hardfork - "@celo/utils@3.2.0": - resolution: - { - integrity: sha512-Om1mTzwsdV6FVPvraafcJeRnzz7Xv/lyGmyZaoEZ9fErRadu9ZrOsuDQniYe+lD78DQ0NATxJL04WjhEKVkn+A==, - } - - "@celo/wallet-base@3.2.0": - resolution: - { - integrity: sha512-lwhesT2BkXIyPI/ox/QbVVCRtLzTAGO25M3TlWBfSCzkRAf/AiV41lzEf9J7A1ozDKXS9s7bj8odiRkMAcelyQ==, - } - engines: { node: ">=8.13.0" } + '@celo/utils@3.2.0': + resolution: {integrity: sha512-Om1mTzwsdV6FVPvraafcJeRnzz7Xv/lyGmyZaoEZ9fErRadu9ZrOsuDQniYe+lD78DQ0NATxJL04WjhEKVkn+A==} + + '@celo/wallet-base@3.2.0': + resolution: {integrity: sha512-lwhesT2BkXIyPI/ox/QbVVCRtLzTAGO25M3TlWBfSCzkRAf/AiV41lzEf9J7A1ozDKXS9s7bj8odiRkMAcelyQ==} + engines: {node: '>=8.13.0'} deprecated: Versions less than 5.1 are deprecated and will no longer be able to submit transactions to celo in a future hardfork - "@celo/wallet-ledger@3.2.0": - resolution: - { - integrity: sha512-z/C+QPnZKdrgYgWCBf++bw9wVXcTgUBooHouWQgdCeyX12RHRJ9WpNOi5v0wx5YyG+M7aNAWHphOklA3e+XBQg==, - } - engines: { node: ">=8.13.0" } - - "@celo/wallet-local@3.2.0": - resolution: - { - integrity: sha512-hR70gzNCDHgf/GskaaLtB7Jz4AqJEW0b+1jG1rsuAyaXLJomSRADGBwUUgMy1dKU87fcQ9h7Uh+AuRAP4/5COQ==, - } - engines: { node: ">=8.13.0" } - - "@celo/wallet-remote@3.2.0": - resolution: - { - integrity: sha512-ORT5PB1M5+wKg/LXcIy4hZ4X01qoMCYlKCH/5LuIMzMb/8IxsW7/9oPwdqutG7YaM9EJoNgOn1snkmAXPeE+hg==, - } - engines: { node: ">=8.13.0" } - - "@changesets/apply-release-plan@7.0.4": - resolution: - { - integrity: sha512-HLFwhKWayKinWAul0Vj+76jVx1Pc2v55MGPVjZ924Y/ROeSsBMFutv9heHmCUj48lJyRfOTJG5+ar+29FUky/A==, - } - - "@changesets/assemble-release-plan@6.0.3": - resolution: - { - integrity: sha512-bLNh9/Lgl1VwkjWZTq8JmRqH+hj7/Yzfz0jsQ/zJJ+FTmVqmqPj3szeKOri8O/hEM8JmHW019vh2gTO9iq5Cuw==, - } - - "@changesets/changelog-git@0.2.0": - resolution: - { - integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==, - } - - "@changesets/changelog-github@0.5.0": - resolution: - { - integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==, - } - - "@changesets/cli@2.27.7": - resolution: - { - integrity: sha512-6lr8JltiiXPIjDeYg4iM2MeePP6VN/JkmqBsVA5XRiy01hGS3y629LtSDvKcycj/w/5Eur1rEwby/MjcYS+e2A==, - } + '@celo/wallet-ledger@3.2.0': + resolution: {integrity: sha512-z/C+QPnZKdrgYgWCBf++bw9wVXcTgUBooHouWQgdCeyX12RHRJ9WpNOi5v0wx5YyG+M7aNAWHphOklA3e+XBQg==} + engines: {node: '>=8.13.0'} + + '@celo/wallet-local@3.2.0': + resolution: {integrity: sha512-hR70gzNCDHgf/GskaaLtB7Jz4AqJEW0b+1jG1rsuAyaXLJomSRADGBwUUgMy1dKU87fcQ9h7Uh+AuRAP4/5COQ==} + engines: {node: '>=8.13.0'} + + '@celo/wallet-remote@3.2.0': + resolution: {integrity: sha512-ORT5PB1M5+wKg/LXcIy4hZ4X01qoMCYlKCH/5LuIMzMb/8IxsW7/9oPwdqutG7YaM9EJoNgOn1snkmAXPeE+hg==} + engines: {node: '>=8.13.0'} + + '@changesets/apply-release-plan@7.0.4': + resolution: {integrity: sha512-HLFwhKWayKinWAul0Vj+76jVx1Pc2v55MGPVjZ924Y/ROeSsBMFutv9heHmCUj48lJyRfOTJG5+ar+29FUky/A==} + + '@changesets/assemble-release-plan@6.0.3': + resolution: {integrity: sha512-bLNh9/Lgl1VwkjWZTq8JmRqH+hj7/Yzfz0jsQ/zJJ+FTmVqmqPj3szeKOri8O/hEM8JmHW019vh2gTO9iq5Cuw==} + + '@changesets/changelog-git@0.2.0': + resolution: {integrity: sha512-bHOx97iFI4OClIT35Lok3sJAwM31VbUM++gnMBV16fdbtBhgYu4dxsphBF/0AZZsyAHMrnM0yFcj5gZM1py6uQ==} + + '@changesets/changelog-github@0.5.0': + resolution: {integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==} + + '@changesets/cli@2.27.7': + resolution: {integrity: sha512-6lr8JltiiXPIjDeYg4iM2MeePP6VN/JkmqBsVA5XRiy01hGS3y629LtSDvKcycj/w/5Eur1rEwby/MjcYS+e2A==} hasBin: true - "@changesets/config@3.0.2": - resolution: - { - integrity: sha512-cdEhS4t8woKCX2M8AotcV2BOWnBp09sqICxKapgLHf9m5KdENpWjyrFNMjkLqGJtUys9U+w93OxWT0czorVDfw==, - } - - "@changesets/errors@0.2.0": - resolution: - { - integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==, - } - - "@changesets/get-dependents-graph@2.1.1": - resolution: - { - integrity: sha512-LRFjjvigBSzfnPU2n/AhFsuWR5DK++1x47aq6qZ8dzYsPtS/I5mNhIGAS68IAxh1xjO9BTtz55FwefhANZ+FCA==, - } - - "@changesets/get-github-info@0.6.0": - resolution: - { - integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==, - } - - "@changesets/get-release-plan@4.0.3": - resolution: - { - integrity: sha512-6PLgvOIwTSdJPTtpdcr3sLtGatT+Jr22+cQwEBJBy6wP0rjB4yJ9lv583J9fVpn1bfQlBkDa8JxbS2g/n9lIyA==, - } - - "@changesets/get-version-range-type@0.4.0": - resolution: - { - integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==, - } - - "@changesets/git@3.0.0": - resolution: - { - integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==, - } - - "@changesets/logger@0.1.0": - resolution: - { - integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==, - } - - "@changesets/parse@0.4.0": - resolution: - { - integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==, - } - - "@changesets/pre@2.0.0": - resolution: - { - integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==, - } - - "@changesets/read@0.6.0": - resolution: - { - integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==, - } - - "@changesets/should-skip-package@0.1.0": - resolution: - { - integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==, - } - - "@changesets/types@4.1.0": - resolution: - { - integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==, - } - - "@changesets/types@6.0.0": - resolution: - { - integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==, - } - - "@changesets/write@0.3.1": - resolution: - { - integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==, - } - - "@codemirror/autocomplete@6.16.3": - resolution: - { - integrity: sha512-Vl/tIeRVVUCRDuOG48lttBasNQu8usGgXQawBXI7WJAiUDSFOfzflmEsZFZo48mAvAaa4FZ/4/yLLxFtdJaKYA==, - } - peerDependencies: - "@codemirror/state": ^6.0.0 - "@codemirror/view": ^6.0.0 - - "@codemirror/commands@6.6.0": - resolution: - { - integrity: sha512-qnY+b7j1UNcTS31Eenuc/5YJB6gQOzkUoNmJQc0rznwqSRpeaWWpjkWy2C/MPTcePpsKJEM26hXrOXl1+nceXg==, - } - - "@codemirror/lang-json@6.0.1": - resolution: - { - integrity: sha512-+T1flHdgpqDDlJZ2Lkil/rLiRy684WMLc74xUnjJH48GQdfJo/pudlTRreZmKwzP8/tGdKf83wlbAdOCzlJOGQ==, - } - - "@codemirror/language@6.10.2": - resolution: - { - integrity: sha512-kgbTYTo0Au6dCSc/TFy7fK3fpJmgHDv1sG1KNQKJXVi+xBTEeBPY/M30YXiU6mMXeH+YIDLsbrT4ZwNRdtF+SA==, - } - - "@codemirror/lint@6.8.1": - resolution: - { - integrity: sha512-IZ0Y7S4/bpaunwggW2jYqwLuHj0QtESf5xcROewY6+lDNwZ/NzvR4t+vpYgg9m7V8UXLPYqG+lu3DF470E5Oxg==, - } - - "@codemirror/search@6.5.6": - resolution: - { - integrity: sha512-rpMgcsh7o0GuCDUXKPvww+muLA1pDJaFrpq/CCHtpQJYz8xopu4D1hPcKRoDD0YlF8gZaqTNIRa4VRBWyhyy7Q==, - } - - "@codemirror/state@6.4.1": - resolution: - { - integrity: sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A==, - } - - "@codemirror/theme-one-dark@6.1.2": - resolution: - { - integrity: sha512-F+sH0X16j/qFLMAfbciKTxVOwkdAS336b7AXTKOZhy8BR3eH/RelsnLgLFINrpST63mmN2OuwUt0W2ndUgYwUA==, - } - - "@codemirror/view@6.28.2": - resolution: - { - integrity: sha512-A3DmyVfjgPsGIjiJqM/zvODUAPQdQl3ci0ghehYNnbt5x+o76xq+dL5+mMBuysDXnI3kapgOkoeJ0sbtL/3qPw==, - } - - "@colors/colors@1.5.0": - resolution: - { - integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==, - } - engines: { node: ">=0.1.90" } - - "@colors/colors@1.6.0": - resolution: - { - integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==, - } - engines: { node: ">=0.1.90" } - - "@commitlint/cli@17.8.1": - resolution: - { - integrity: sha512-ay+WbzQesE0Rv4EQKfNbSMiJJ12KdKTDzIt0tcK4k11FdsWmtwP0Kp1NWMOUswfIWo6Eb7p7Ln721Nx9FLNBjg==, - } - engines: { node: ">=v14" } + '@changesets/config@3.0.2': + resolution: {integrity: sha512-cdEhS4t8woKCX2M8AotcV2BOWnBp09sqICxKapgLHf9m5KdENpWjyrFNMjkLqGJtUys9U+w93OxWT0czorVDfw==} + + '@changesets/errors@0.2.0': + resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} + + '@changesets/get-dependents-graph@2.1.1': + resolution: {integrity: sha512-LRFjjvigBSzfnPU2n/AhFsuWR5DK++1x47aq6qZ8dzYsPtS/I5mNhIGAS68IAxh1xjO9BTtz55FwefhANZ+FCA==} + + '@changesets/get-github-info@0.6.0': + resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==} + + '@changesets/get-release-plan@4.0.3': + resolution: {integrity: sha512-6PLgvOIwTSdJPTtpdcr3sLtGatT+Jr22+cQwEBJBy6wP0rjB4yJ9lv583J9fVpn1bfQlBkDa8JxbS2g/n9lIyA==} + + '@changesets/get-version-range-type@0.4.0': + resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} + + '@changesets/git@3.0.0': + resolution: {integrity: sha512-vvhnZDHe2eiBNRFHEgMiGd2CT+164dfYyrJDhwwxTVD/OW0FUD6G7+4DIx1dNwkwjHyzisxGAU96q0sVNBns0w==} + + '@changesets/logger@0.1.0': + resolution: {integrity: sha512-pBrJm4CQm9VqFVwWnSqKEfsS2ESnwqwH+xR7jETxIErZcfd1u2zBSqrHbRHR7xjhSgep9x2PSKFKY//FAshA3g==} + + '@changesets/parse@0.4.0': + resolution: {integrity: sha512-TS/9KG2CdGXS27S+QxbZXgr8uPsP4yNJYb4BC2/NeFUj80Rni3TeD2qwWmabymxmrLo7JEsytXH1FbpKTbvivw==} + + '@changesets/pre@2.0.0': + resolution: {integrity: sha512-HLTNYX/A4jZxc+Sq8D1AMBsv+1qD6rmmJtjsCJa/9MSRybdxh0mjbTvE6JYZQ/ZiQ0mMlDOlGPXTm9KLTU3jyw==} + + '@changesets/read@0.6.0': + resolution: {integrity: sha512-ZypqX8+/im1Fm98K4YcZtmLKgjs1kDQ5zHpc2U1qdtNBmZZfo/IBiG162RoP0CUF05tvp2y4IspH11PLnPxuuw==} + + '@changesets/should-skip-package@0.1.0': + resolution: {integrity: sha512-FxG6Mhjw7yFStlSM7Z0Gmg3RiyQ98d/9VpQAZ3Fzr59dCOM9G6ZdYbjiSAt0XtFr9JR5U2tBaJWPjrkGGc618g==} + + '@changesets/types@4.1.0': + resolution: {integrity: sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw==} + + '@changesets/types@6.0.0': + resolution: {integrity: sha512-b1UkfNulgKoWfqyHtzKS5fOZYSJO+77adgL7DLRDr+/7jhChN+QcHnbjiQVOz/U+Ts3PGNySq7diAItzDgugfQ==} + + '@changesets/write@0.3.1': + resolution: {integrity: sha512-SyGtMXzH3qFqlHKcvFY2eX+6b0NGiFcNav8AFsYwy5l8hejOeoeTDemu5Yjmke2V5jpzY+pBvM0vCCQ3gdZpfw==} + + '@codemirror/autocomplete@6.16.3': + resolution: {integrity: sha512-Vl/tIeRVVUCRDuOG48lttBasNQu8usGgXQawBXI7WJAiUDSFOfzflmEsZFZo48mAvAaa4FZ/4/yLLxFtdJaKYA==} + peerDependencies: + '@codemirror/state': ^6.0.0 + '@codemirror/view': ^6.0.0 + + '@codemirror/commands@6.6.0': + resolution: {integrity: sha512-qnY+b7j1UNcTS31Eenuc/5YJB6gQOzkUoNmJQc0rznwqSRpeaWWpjkWy2C/MPTcePpsKJEM26hXrOXl1+nceXg==} + + '@codemirror/lang-json@6.0.1': + resolution: {integrity: sha512-+T1flHdgpqDDlJZ2Lkil/rLiRy684WMLc74xUnjJH48GQdfJo/pudlTRreZmKwzP8/tGdKf83wlbAdOCzlJOGQ==} + + '@codemirror/language@6.10.2': + resolution: {integrity: sha512-kgbTYTo0Au6dCSc/TFy7fK3fpJmgHDv1sG1KNQKJXVi+xBTEeBPY/M30YXiU6mMXeH+YIDLsbrT4ZwNRdtF+SA==} + + '@codemirror/lint@6.8.1': + resolution: {integrity: sha512-IZ0Y7S4/bpaunwggW2jYqwLuHj0QtESf5xcROewY6+lDNwZ/NzvR4t+vpYgg9m7V8UXLPYqG+lu3DF470E5Oxg==} + + '@codemirror/search@6.5.6': + resolution: {integrity: sha512-rpMgcsh7o0GuCDUXKPvww+muLA1pDJaFrpq/CCHtpQJYz8xopu4D1hPcKRoDD0YlF8gZaqTNIRa4VRBWyhyy7Q==} + + '@codemirror/state@6.4.1': + resolution: {integrity: sha512-QkEyUiLhsJoZkbumGZlswmAhA7CBU02Wrz7zvH4SrcifbsqwlXShVXg65f3v/ts57W3dqyamEriMhij1Z3Zz4A==} + + '@codemirror/theme-one-dark@6.1.2': + resolution: {integrity: sha512-F+sH0X16j/qFLMAfbciKTxVOwkdAS336b7AXTKOZhy8BR3eH/RelsnLgLFINrpST63mmN2OuwUt0W2ndUgYwUA==} + + '@codemirror/view@6.28.2': + resolution: {integrity: sha512-A3DmyVfjgPsGIjiJqM/zvODUAPQdQl3ci0ghehYNnbt5x+o76xq+dL5+mMBuysDXnI3kapgOkoeJ0sbtL/3qPw==} + + '@colors/colors@1.5.0': + resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} + engines: {node: '>=0.1.90'} + + '@colors/colors@1.6.0': + resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==} + engines: {node: '>=0.1.90'} + + '@commitlint/cli@17.8.1': + resolution: {integrity: sha512-ay+WbzQesE0Rv4EQKfNbSMiJJ12KdKTDzIt0tcK4k11FdsWmtwP0Kp1NWMOUswfIWo6Eb7p7Ln721Nx9FLNBjg==} + engines: {node: '>=v14'} hasBin: true - "@commitlint/config-conventional@17.8.1": - resolution: - { - integrity: sha512-NxCOHx1kgneig3VLauWJcDWS40DVjg7nKOpBEEK9E5fjJpQqLCilcnKkIIjdBH98kEO1q3NpE5NSrZ2kl/QGJg==, - } - engines: { node: ">=v14" } - - "@commitlint/config-validator@17.8.1": - resolution: - { - integrity: sha512-UUgUC+sNiiMwkyiuIFR7JG2cfd9t/7MV8VB4TZ+q02ZFkHoduUS4tJGsCBWvBOGD9Btev6IecPMvlWUfJorkEA==, - } - engines: { node: ">=v14" } - - "@commitlint/ensure@17.8.1": - resolution: - { - integrity: sha512-xjafwKxid8s1K23NFpL8JNo6JnY/ysetKo8kegVM7c8vs+kWLP8VrQq+NbhgVlmCojhEDbzQKp4eRXSjVOGsow==, - } - engines: { node: ">=v14" } - - "@commitlint/execute-rule@17.8.1": - resolution: - { - integrity: sha512-JHVupQeSdNI6xzA9SqMF+p/JjrHTcrJdI02PwesQIDCIGUrv04hicJgCcws5nzaoZbROapPs0s6zeVHoxpMwFQ==, - } - engines: { node: ">=v14" } - - "@commitlint/format@17.8.1": - resolution: - { - integrity: sha512-f3oMTyZ84M9ht7fb93wbCKmWxO5/kKSbwuYvS867duVomoOsgrgljkGGIztmT/srZnaiGbaK8+Wf8Ik2tSr5eg==, - } - engines: { node: ">=v14" } - - "@commitlint/is-ignored@17.8.1": - resolution: - { - integrity: sha512-UshMi4Ltb4ZlNn4F7WtSEugFDZmctzFpmbqvpyxD3la510J+PLcnyhf9chs7EryaRFJMdAKwsEKfNK0jL/QM4g==, - } - engines: { node: ">=v14" } - - "@commitlint/lint@17.8.1": - resolution: - { - integrity: sha512-aQUlwIR1/VMv2D4GXSk7PfL5hIaFSfy6hSHV94O8Y27T5q+DlDEgd/cZ4KmVI+MWKzFfCTiTuWqjfRSfdRllCA==, - } - engines: { node: ">=v14" } - - "@commitlint/load@17.8.1": - resolution: - { - integrity: sha512-iF4CL7KDFstP1kpVUkT8K2Wl17h2yx9VaR1ztTc8vzByWWcbO/WaKwxsnCOqow9tVAlzPfo1ywk9m2oJ9ucMqA==, - } - engines: { node: ">=v14" } - - "@commitlint/message@17.8.1": - resolution: - { - integrity: sha512-6bYL1GUQsD6bLhTH3QQty8pVFoETfFQlMn2Nzmz3AOLqRVfNNtXBaSY0dhZ0dM6A2MEq4+2d7L/2LP8TjqGRkA==, - } - engines: { node: ">=v14" } - - "@commitlint/parse@17.8.1": - resolution: - { - integrity: sha512-/wLUickTo0rNpQgWwLPavTm7WbwkZoBy3X8PpkUmlSmQJyWQTj0m6bDjiykMaDt41qcUbfeFfaCvXfiR4EGnfw==, - } - engines: { node: ">=v14" } - - "@commitlint/prompt-cli@17.8.1": - resolution: - { - integrity: sha512-dkjxr0ah2R9P/vsz/s128kNEar/5zjr3TN3LOvA8kBiSrrbfF560gnoxAh+KgQ5sAc8lMrG+z4dVYvzSkXyfDQ==, - } - engines: { node: ">=v14" } + '@commitlint/config-conventional@17.8.1': + resolution: {integrity: sha512-NxCOHx1kgneig3VLauWJcDWS40DVjg7nKOpBEEK9E5fjJpQqLCilcnKkIIjdBH98kEO1q3NpE5NSrZ2kl/QGJg==} + engines: {node: '>=v14'} + + '@commitlint/config-validator@17.8.1': + resolution: {integrity: sha512-UUgUC+sNiiMwkyiuIFR7JG2cfd9t/7MV8VB4TZ+q02ZFkHoduUS4tJGsCBWvBOGD9Btev6IecPMvlWUfJorkEA==} + engines: {node: '>=v14'} + + '@commitlint/ensure@17.8.1': + resolution: {integrity: sha512-xjafwKxid8s1K23NFpL8JNo6JnY/ysetKo8kegVM7c8vs+kWLP8VrQq+NbhgVlmCojhEDbzQKp4eRXSjVOGsow==} + engines: {node: '>=v14'} + + '@commitlint/execute-rule@17.8.1': + resolution: {integrity: sha512-JHVupQeSdNI6xzA9SqMF+p/JjrHTcrJdI02PwesQIDCIGUrv04hicJgCcws5nzaoZbROapPs0s6zeVHoxpMwFQ==} + engines: {node: '>=v14'} + + '@commitlint/format@17.8.1': + resolution: {integrity: sha512-f3oMTyZ84M9ht7fb93wbCKmWxO5/kKSbwuYvS867duVomoOsgrgljkGGIztmT/srZnaiGbaK8+Wf8Ik2tSr5eg==} + engines: {node: '>=v14'} + + '@commitlint/is-ignored@17.8.1': + resolution: {integrity: sha512-UshMi4Ltb4ZlNn4F7WtSEugFDZmctzFpmbqvpyxD3la510J+PLcnyhf9chs7EryaRFJMdAKwsEKfNK0jL/QM4g==} + engines: {node: '>=v14'} + + '@commitlint/lint@17.8.1': + resolution: {integrity: sha512-aQUlwIR1/VMv2D4GXSk7PfL5hIaFSfy6hSHV94O8Y27T5q+DlDEgd/cZ4KmVI+MWKzFfCTiTuWqjfRSfdRllCA==} + engines: {node: '>=v14'} + + '@commitlint/load@17.8.1': + resolution: {integrity: sha512-iF4CL7KDFstP1kpVUkT8K2Wl17h2yx9VaR1ztTc8vzByWWcbO/WaKwxsnCOqow9tVAlzPfo1ywk9m2oJ9ucMqA==} + engines: {node: '>=v14'} + + '@commitlint/message@17.8.1': + resolution: {integrity: sha512-6bYL1GUQsD6bLhTH3QQty8pVFoETfFQlMn2Nzmz3AOLqRVfNNtXBaSY0dhZ0dM6A2MEq4+2d7L/2LP8TjqGRkA==} + engines: {node: '>=v14'} + + '@commitlint/parse@17.8.1': + resolution: {integrity: sha512-/wLUickTo0rNpQgWwLPavTm7WbwkZoBy3X8PpkUmlSmQJyWQTj0m6bDjiykMaDt41qcUbfeFfaCvXfiR4EGnfw==} + engines: {node: '>=v14'} + + '@commitlint/prompt-cli@17.8.1': + resolution: {integrity: sha512-dkjxr0ah2R9P/vsz/s128kNEar/5zjr3TN3LOvA8kBiSrrbfF560gnoxAh+KgQ5sAc8lMrG+z4dVYvzSkXyfDQ==} + engines: {node: '>=v14'} hasBin: true - "@commitlint/prompt@17.8.1": - resolution: - { - integrity: sha512-adK+6oaR/8SSSa/Lnp7KU+lu28j/jWfR2sX/5qRDFc2WTTMM59yJ+33k8FMHKZAZIU1FdyCGr11yP3btL6VdLA==, - } - engines: { node: ">=v14" } - - "@commitlint/read@17.8.1": - resolution: - { - integrity: sha512-Fd55Oaz9irzBESPCdMd8vWWgxsW3OWR99wOntBDHgf9h7Y6OOHjWEdS9Xzen1GFndqgyoaFplQS5y7KZe0kO2w==, - } - engines: { node: ">=v14" } - - "@commitlint/resolve-extends@17.8.1": - resolution: - { - integrity: sha512-W/ryRoQ0TSVXqJrx5SGkaYuAaE/BUontL1j1HsKckvM6e5ZaG0M9126zcwL6peKSuIetJi7E87PRQF8O86EW0Q==, - } - engines: { node: ">=v14" } - - "@commitlint/rules@17.8.1": - resolution: - { - integrity: sha512-2b7OdVbN7MTAt9U0vKOYKCDsOvESVXxQmrvuVUZ0rGFMCrCPJWWP1GJ7f0lAypbDAhaGb8zqtdOr47192LBrIA==, - } - engines: { node: ">=v14" } - - "@commitlint/to-lines@17.8.1": - resolution: - { - integrity: sha512-LE0jb8CuR/mj6xJyrIk8VLz03OEzXFgLdivBytoooKO5xLt5yalc8Ma5guTWobw998sbR3ogDd+2jed03CFmJA==, - } - engines: { node: ">=v14" } - - "@commitlint/top-level@17.8.1": - resolution: - { - integrity: sha512-l6+Z6rrNf5p333SHfEte6r+WkOxGlWK4bLuZKbtf/2TXRN+qhrvn1XE63VhD8Oe9oIHQ7F7W1nG2k/TJFhx2yA==, - } - engines: { node: ">=v14" } - - "@commitlint/types@17.8.1": - resolution: - { - integrity: sha512-PXDQXkAmiMEG162Bqdh9ChML/GJZo6vU+7F03ALKDK8zYc6SuAr47LjG7hGYRqUOz+WK0dU7bQ0xzuqFMdxzeQ==, - } - engines: { node: ">=v14" } - - "@confio/ics23@0.6.8": - resolution: - { - integrity: sha512-wB6uo+3A50m0sW/EWcU64xpV/8wShZ6bMTa7pF8eYsTrSkQA7oLUIJcs/wb8g4y2Oyq701BaGiO6n/ak5WXO1w==, - } - - "@cosmjs/amino@0.25.0-alpha.2": - resolution: - { - integrity: sha512-q8T4ORWB185SJ60bd/wXCEYG+65X3rMwzMZKpcbw43wBEPIYx104yqV62dR/BtlC+5IKDXPcP6kw/nTHo2QFWw==, - } - - "@cosmjs/amino@0.25.6": - resolution: - { - integrity: sha512-9dXN2W7LHjDtJUGNsQ9ok0DfxeN3ca/TXnxCR3Ikh/5YqBqxI8Gel1J9PQO9L6EheYyh045Wff4bsMaLjyEeqQ==, - } - - "@cosmjs/amino@0.26.8": - resolution: - { - integrity: sha512-cf25tg0X6FdqqLJ8gbvFJ5SRyz29oDVM21b1kVOspGzOEEs2J4bWjTBEnLK6g/BuQ5ODIfTV3JwDLIVU+eTsgw==, - } - - "@cosmjs/amino@0.31.3": - resolution: - { - integrity: sha512-36emtUq895sPRX8PTSOnG+lhJDCVyIcE0Tr5ct59sUbgQiI14y43vj/4WAlJ/utSOxy+Zhj9wxcs4AZfu0BHsw==, - } - - "@cosmjs/crypto@0.24.1": - resolution: - { - integrity: sha512-GPhaWmQO06mXldKj/b+oKF5o3jMNfRKpAw+Q8XQhrD7ItinVPDMu8Xgl6frUXWTUdgpYwqpvqOcpm85QUsYV0Q==, - } - - "@cosmjs/crypto@0.25.6": - resolution: - { - integrity: sha512-ec+YcQLrg2ibcxtNrh4FqQnG9kG9IE/Aik2NH6+OXQdFU/qFuBTxSFcKDgzzBOChwlkXwydllM9Jjbp+dgIzRw==, - } - - "@cosmjs/crypto@0.26.8": - resolution: - { - integrity: sha512-ykZWgRHuZjizQnIwG7mj6D0Jip406Z6VZLH9bs1RdNOugeX6kp/I3EYEsEO694bQPvggwNZqRT84ovqjsj2KwQ==, - } - - "@cosmjs/crypto@0.31.3": - resolution: - { - integrity: sha512-vRbvM9ZKR2017TO73dtJ50KxoGcFzKtKI7C8iO302BQ5p+DuB+AirUg1952UpSoLfv5ki9O416MFANNg8UN/EQ==, - } - - "@cosmjs/encoding@0.23.1": - resolution: - { - integrity: sha512-rP5O3vYo0k6W329J+u5uKqJNrhmR4QTngLgsDvP/qsRRBfEiirhk+TQC8gjUlgnzoiCKCtWsiOyFP1z9Me9HIw==, - } - - "@cosmjs/encoding@0.24.1": - resolution: - { - integrity: sha512-PMr+gaXAuM0XgjeXwB1zdX1QI0t+PgVhbmjgI/RSgswDzdExNH97qUopecL0/HG3p64vhIT/6ZjXYYTljZL7WA==, - } - - "@cosmjs/encoding@0.25.6": - resolution: - { - integrity: sha512-0imUOB8XkUstI216uznPaX1hqgvLQ2Xso3zJj5IV5oJuNlsfDj9nt/iQxXWbJuettc6gvrFfpf+Vw2vBZSZ75g==, - } - - "@cosmjs/encoding@0.26.8": - resolution: - { - integrity: sha512-rsqdeCHPmSXSjwE6pzbsx/drxIZKPiIxza4hYsGCaVsxrFZmgOFNmvWgtuIOIEXPS/ZoyST9XU9aMpkaYzLEVQ==, - } - - "@cosmjs/encoding@0.31.3": - resolution: - { - integrity: sha512-6IRtG0fiVYwyP7n+8e54uTx2pLYijO48V3t9TLiROERm5aUAIzIlz6Wp0NYaI5he9nh1lcEGJ1lkquVKFw3sUg==, - } - - "@cosmjs/json-rpc@0.25.6": - resolution: - { - integrity: sha512-Mn9og3/IEzC6jWoYXs0ONqFJc8HxVjXzrZPLgaRRdMZEUBvctxdhynau1wbE4LdkYQHbu4aiRu1q1jMYGFAj4A==, - } - - "@cosmjs/json-rpc@0.26.8": - resolution: - { - integrity: sha512-aTEP4kDhR3F04bYluRNOf9Hk8Eyz3L9p5P1EVJ1qhOCHaRZikSUQS9XNdZG3yryLbFTQS1b8MY9quBqrtU6UWQ==, - } - - "@cosmjs/launchpad@0.24.1": - resolution: - { - integrity: sha512-syqVGKRH6z1vw4DdAJOSu4OgUXJdkXQozqvDde0cXYwnvhb7EXGSg5CTtp+2GqTBJuNVfMZ2DSvrC2Ig8cWBQQ==, - } - - "@cosmjs/math@0.23.1": - resolution: - { - integrity: sha512-xjGGogFZXLdmRumE1Wr+GlPfKznIl5Qa6K6QyZr4IjBhfB6/ZzLUihliDJp2d8zbjBJgQt9RUwP/PaFQ/yGQNg==, - } - - "@cosmjs/math@0.24.1": - resolution: - { - integrity: sha512-eBQk8twgzmpHFCVkoNjTZhsZwWRbR+JXt0FhjXJoD85SBm4K8b2OnOyTg68uPHVKOJjLRwzyRVYgMrg5TBVgwQ==, - } - - "@cosmjs/math@0.25.6": - resolution: - { - integrity: sha512-Fmyc9FJ8KMU34n7rdapMJrT/8rx5WhMw2F7WLBu7AVLcBh0yWsXIcMSJCoPHTOnMIiABjXsnrrwEaLrOOBfu6A==, - } - - "@cosmjs/math@0.26.8": - resolution: - { - integrity: sha512-AfooIaqhOks5xPDc4kDEXje/90iPm2STu+0YWvDStEEib2xxPTtXU3OuK+KpJ3CCFfQwbKCrzEIzJWCYmTs7mw==, - } - - "@cosmjs/math@0.31.3": - resolution: - { - integrity: sha512-kZ2C6glA5HDb9hLz1WrftAjqdTBb3fWQsRR+Us2HsjAYdeE6M3VdXMsYCP5M3yiihal1WDwAY2U7HmfJw7Uh4A==, - } - - "@cosmjs/proto-signing@0.24.1": - resolution: - { - integrity: sha512-/rnyNx+FlG6b6O+igsb42eMN1/RXY+pTrNnAE8/YZaRloP9A6MXiTMO5JdYSTcjaD0mEVhejiy96bcyflKYXBg==, - } - - "@cosmjs/proto-signing@0.25.6": - resolution: - { - integrity: sha512-JpQ+Vnv9s6i3x8f3Jo0lJZ3VMnj3R5sMgX+8ti1LtB7qEYRR85qbDrEG9hDGIKqJJabvrAuCHnO6hYi0vJEJHA==, - } - - "@cosmjs/proto-signing@0.26.8": - resolution: - { - integrity: sha512-wgbOblUyv9qpMCoVCa0FDs28/OjA39is3/LgOZStBdVmtHEjsWGHIhqF8WR0rrjRGhio/e6sOLySU3fWMUVqag==, - } - - "@cosmjs/socket@0.25.6": - resolution: - { - integrity: sha512-hu+pW3Fy0IuhstXgxnZ2Iq0RUnGYoTWfqrxbTsgXBJge4MpEQs2YwGXgJZPMJXedBQivG0tU3r/Wvam0EWuRkQ==, - } - - "@cosmjs/socket@0.26.8": - resolution: - { - integrity: sha512-Yv+6aFyfnsrFiLzWPK7rABGajGIlNvlcxAeVWtKFMCVKXr0hYRe0DdzsLgW18tm4L7ezoJBQhXIJLYwpYuKZAw==, - } - - "@cosmjs/stargate@0.25.0-alpha.2": - resolution: - { - integrity: sha512-r6VT720EuF6yPwS1WGPPUAPUOfD5aVIRlVJNJHkePWGg4l+ztJtoUbr7QN1CoPrxvG3b+WflNug1EQ7dG44UsA==, - } - - "@cosmjs/stargate@0.26.8": - resolution: - { - integrity: sha512-/epKiDo1PTSJ6+Q3udxl1ZM14BvHVA445PSSGRnEHkFTeQqon9sjGhCw1eCCIIxvt2kYOM9Wpxei0+vuMVQdfg==, - } - - "@cosmjs/stream@0.25.6": - resolution: - { - integrity: sha512-2mXIzf+WaFd+GSrRaJJETVXeZoC5sosuKChFERxSY8zXQ/f3OaG9J6m+quHpPbU3nAIEtnF1jgBVqJiD+NKwGQ==, - } - - "@cosmjs/stream@0.26.8": - resolution: - { - integrity: sha512-MWfgjoe9l4292JJx7CYBgVkClQXJHvQcOYBLi9qjYCTixBL+OjmtCNs+XcjsL8tPCG+XkPh8tHagOghNIb3vWw==, - } - - "@cosmjs/tendermint-rpc@0.25.0-alpha.2": - resolution: - { - integrity: sha512-1xK8mPwFWiWnyGafZhAdwYfcYmXl1l7UxQRR3yI2Q3kDk7CQhT87mgeAd56jw9JOaZvLYKKTgCRZkLNiKjXNew==, - } - - "@cosmjs/tendermint-rpc@0.26.8": - resolution: - { - integrity: sha512-L1Zvc/bg/toB9iCu2VFlC//LNadOTmK+/LEw6HqYJ7pRbSH0vhr1GzV4hEjjp/8VgMm2D+XiZUPFIR+m2V4/dw==, - } - - "@cosmjs/utils@0.24.1": - resolution: - { - integrity: sha512-VA3WFx1lMFb7esp9BqHWkDgMvHoA3D9w+uDRvWhVRpUpDc7RYHxMbWExASjz+gNblTCg556WJGzF64tXnf9tdQ==, - } - - "@cosmjs/utils@0.25.0-alpha.2": - resolution: - { - integrity: sha512-ey+WKhnQ67L6JF1M3TLBRPXTDK8Az0uJ3m7UWWuT1p8z6K9kZfu+YiGmzJev64xuLP1kFaPJJLmBIpHH6HQ4hA==, - } - - "@cosmjs/utils@0.25.6": - resolution: - { - integrity: sha512-ofOYiuxVKNo238vCPPlaDzqPXy2AQ/5/nashBo5rvPZJkxt9LciGfUEQWPCOb1BIJDNx2Dzu0z4XCf/dwzl0Dg==, - } - - "@cosmjs/utils@0.26.8": - resolution: - { - integrity: sha512-fG7y9qUPkpCJFCK9m7qioffhACTgWNQTNpO1D7Q9AVr5V7LZJdaWRcnskSzPwAyjQkK3pkC5GuRNvNdn8kWzMg==, - } - - "@cosmjs/utils@0.31.3": - resolution: - { - integrity: sha512-VBhAgzrrYdIe0O5IbKRqwszbQa7ZyQLx9nEQuHQ3HUplQW7P44COG/ye2n6AzCudtqxmwdX7nyX8ta1J07GoqA==, - } - - "@craftamap/esbuild-plugin-html@0.6.1": - resolution: - { - integrity: sha512-FNOxFrdAozLgNbV1HZH2gVjLDax4hFxFfVH/qntvkMEkcBO2ZCIBjqlSmmmuLLi3/QyCJAaFnduBJ74jIw8zUg==, - } - engines: { node: ">13" } - peerDependencies: - esbuild: ">=0.15.10" - - "@crypto-org-chain/chain-jslib@1.1.2": - resolution: - { - integrity: sha512-30jHu5RbDtmy1uUcLf5Rf283HC0Kzs25CDGQkaT7dfd19Kl3S/DRcKtLI2wAiqahPmPIyz99B3uqRuSfw+6pKA==, - } - - "@cspotcode/source-map-support@0.8.1": - resolution: - { - integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==, - } - engines: { node: ">=12" } - peerDependencies: - source-map-support: "*" + '@commitlint/prompt@17.8.1': + resolution: {integrity: sha512-adK+6oaR/8SSSa/Lnp7KU+lu28j/jWfR2sX/5qRDFc2WTTMM59yJ+33k8FMHKZAZIU1FdyCGr11yP3btL6VdLA==} + engines: {node: '>=v14'} + + '@commitlint/read@17.8.1': + resolution: {integrity: sha512-Fd55Oaz9irzBESPCdMd8vWWgxsW3OWR99wOntBDHgf9h7Y6OOHjWEdS9Xzen1GFndqgyoaFplQS5y7KZe0kO2w==} + engines: {node: '>=v14'} + + '@commitlint/resolve-extends@17.8.1': + resolution: {integrity: sha512-W/ryRoQ0TSVXqJrx5SGkaYuAaE/BUontL1j1HsKckvM6e5ZaG0M9126zcwL6peKSuIetJi7E87PRQF8O86EW0Q==} + engines: {node: '>=v14'} + + '@commitlint/rules@17.8.1': + resolution: {integrity: sha512-2b7OdVbN7MTAt9U0vKOYKCDsOvESVXxQmrvuVUZ0rGFMCrCPJWWP1GJ7f0lAypbDAhaGb8zqtdOr47192LBrIA==} + engines: {node: '>=v14'} + + '@commitlint/to-lines@17.8.1': + resolution: {integrity: sha512-LE0jb8CuR/mj6xJyrIk8VLz03OEzXFgLdivBytoooKO5xLt5yalc8Ma5guTWobw998sbR3ogDd+2jed03CFmJA==} + engines: {node: '>=v14'} + + '@commitlint/top-level@17.8.1': + resolution: {integrity: sha512-l6+Z6rrNf5p333SHfEte6r+WkOxGlWK4bLuZKbtf/2TXRN+qhrvn1XE63VhD8Oe9oIHQ7F7W1nG2k/TJFhx2yA==} + engines: {node: '>=v14'} + + '@commitlint/types@17.8.1': + resolution: {integrity: sha512-PXDQXkAmiMEG162Bqdh9ChML/GJZo6vU+7F03ALKDK8zYc6SuAr47LjG7hGYRqUOz+WK0dU7bQ0xzuqFMdxzeQ==} + engines: {node: '>=v14'} + + '@confio/ics23@0.6.8': + resolution: {integrity: sha512-wB6uo+3A50m0sW/EWcU64xpV/8wShZ6bMTa7pF8eYsTrSkQA7oLUIJcs/wb8g4y2Oyq701BaGiO6n/ak5WXO1w==} + + '@cosmjs/amino@0.25.0-alpha.2': + resolution: {integrity: sha512-q8T4ORWB185SJ60bd/wXCEYG+65X3rMwzMZKpcbw43wBEPIYx104yqV62dR/BtlC+5IKDXPcP6kw/nTHo2QFWw==} + + '@cosmjs/amino@0.25.6': + resolution: {integrity: sha512-9dXN2W7LHjDtJUGNsQ9ok0DfxeN3ca/TXnxCR3Ikh/5YqBqxI8Gel1J9PQO9L6EheYyh045Wff4bsMaLjyEeqQ==} + + '@cosmjs/amino@0.26.8': + resolution: {integrity: sha512-cf25tg0X6FdqqLJ8gbvFJ5SRyz29oDVM21b1kVOspGzOEEs2J4bWjTBEnLK6g/BuQ5ODIfTV3JwDLIVU+eTsgw==} + + '@cosmjs/amino@0.31.3': + resolution: {integrity: sha512-36emtUq895sPRX8PTSOnG+lhJDCVyIcE0Tr5ct59sUbgQiI14y43vj/4WAlJ/utSOxy+Zhj9wxcs4AZfu0BHsw==} + + '@cosmjs/crypto@0.24.1': + resolution: {integrity: sha512-GPhaWmQO06mXldKj/b+oKF5o3jMNfRKpAw+Q8XQhrD7ItinVPDMu8Xgl6frUXWTUdgpYwqpvqOcpm85QUsYV0Q==} + + '@cosmjs/crypto@0.25.6': + resolution: {integrity: sha512-ec+YcQLrg2ibcxtNrh4FqQnG9kG9IE/Aik2NH6+OXQdFU/qFuBTxSFcKDgzzBOChwlkXwydllM9Jjbp+dgIzRw==} + + '@cosmjs/crypto@0.26.8': + resolution: {integrity: sha512-ykZWgRHuZjizQnIwG7mj6D0Jip406Z6VZLH9bs1RdNOugeX6kp/I3EYEsEO694bQPvggwNZqRT84ovqjsj2KwQ==} + + '@cosmjs/crypto@0.31.3': + resolution: {integrity: sha512-vRbvM9ZKR2017TO73dtJ50KxoGcFzKtKI7C8iO302BQ5p+DuB+AirUg1952UpSoLfv5ki9O416MFANNg8UN/EQ==} + + '@cosmjs/encoding@0.23.1': + resolution: {integrity: sha512-rP5O3vYo0k6W329J+u5uKqJNrhmR4QTngLgsDvP/qsRRBfEiirhk+TQC8gjUlgnzoiCKCtWsiOyFP1z9Me9HIw==} + + '@cosmjs/encoding@0.24.1': + resolution: {integrity: sha512-PMr+gaXAuM0XgjeXwB1zdX1QI0t+PgVhbmjgI/RSgswDzdExNH97qUopecL0/HG3p64vhIT/6ZjXYYTljZL7WA==} + + '@cosmjs/encoding@0.25.6': + resolution: {integrity: sha512-0imUOB8XkUstI216uznPaX1hqgvLQ2Xso3zJj5IV5oJuNlsfDj9nt/iQxXWbJuettc6gvrFfpf+Vw2vBZSZ75g==} + + '@cosmjs/encoding@0.26.8': + resolution: {integrity: sha512-rsqdeCHPmSXSjwE6pzbsx/drxIZKPiIxza4hYsGCaVsxrFZmgOFNmvWgtuIOIEXPS/ZoyST9XU9aMpkaYzLEVQ==} + + '@cosmjs/encoding@0.31.3': + resolution: {integrity: sha512-6IRtG0fiVYwyP7n+8e54uTx2pLYijO48V3t9TLiROERm5aUAIzIlz6Wp0NYaI5he9nh1lcEGJ1lkquVKFw3sUg==} + + '@cosmjs/json-rpc@0.25.6': + resolution: {integrity: sha512-Mn9og3/IEzC6jWoYXs0ONqFJc8HxVjXzrZPLgaRRdMZEUBvctxdhynau1wbE4LdkYQHbu4aiRu1q1jMYGFAj4A==} + + '@cosmjs/json-rpc@0.26.8': + resolution: {integrity: sha512-aTEP4kDhR3F04bYluRNOf9Hk8Eyz3L9p5P1EVJ1qhOCHaRZikSUQS9XNdZG3yryLbFTQS1b8MY9quBqrtU6UWQ==} + + '@cosmjs/launchpad@0.24.1': + resolution: {integrity: sha512-syqVGKRH6z1vw4DdAJOSu4OgUXJdkXQozqvDde0cXYwnvhb7EXGSg5CTtp+2GqTBJuNVfMZ2DSvrC2Ig8cWBQQ==} + + '@cosmjs/math@0.23.1': + resolution: {integrity: sha512-xjGGogFZXLdmRumE1Wr+GlPfKznIl5Qa6K6QyZr4IjBhfB6/ZzLUihliDJp2d8zbjBJgQt9RUwP/PaFQ/yGQNg==} + + '@cosmjs/math@0.24.1': + resolution: {integrity: sha512-eBQk8twgzmpHFCVkoNjTZhsZwWRbR+JXt0FhjXJoD85SBm4K8b2OnOyTg68uPHVKOJjLRwzyRVYgMrg5TBVgwQ==} + + '@cosmjs/math@0.25.6': + resolution: {integrity: sha512-Fmyc9FJ8KMU34n7rdapMJrT/8rx5WhMw2F7WLBu7AVLcBh0yWsXIcMSJCoPHTOnMIiABjXsnrrwEaLrOOBfu6A==} + + '@cosmjs/math@0.26.8': + resolution: {integrity: sha512-AfooIaqhOks5xPDc4kDEXje/90iPm2STu+0YWvDStEEib2xxPTtXU3OuK+KpJ3CCFfQwbKCrzEIzJWCYmTs7mw==} + + '@cosmjs/math@0.31.3': + resolution: {integrity: sha512-kZ2C6glA5HDb9hLz1WrftAjqdTBb3fWQsRR+Us2HsjAYdeE6M3VdXMsYCP5M3yiihal1WDwAY2U7HmfJw7Uh4A==} + + '@cosmjs/proto-signing@0.24.1': + resolution: {integrity: sha512-/rnyNx+FlG6b6O+igsb42eMN1/RXY+pTrNnAE8/YZaRloP9A6MXiTMO5JdYSTcjaD0mEVhejiy96bcyflKYXBg==} + + '@cosmjs/proto-signing@0.25.6': + resolution: {integrity: sha512-JpQ+Vnv9s6i3x8f3Jo0lJZ3VMnj3R5sMgX+8ti1LtB7qEYRR85qbDrEG9hDGIKqJJabvrAuCHnO6hYi0vJEJHA==} + + '@cosmjs/proto-signing@0.26.8': + resolution: {integrity: sha512-wgbOblUyv9qpMCoVCa0FDs28/OjA39is3/LgOZStBdVmtHEjsWGHIhqF8WR0rrjRGhio/e6sOLySU3fWMUVqag==} + + '@cosmjs/socket@0.25.6': + resolution: {integrity: sha512-hu+pW3Fy0IuhstXgxnZ2Iq0RUnGYoTWfqrxbTsgXBJge4MpEQs2YwGXgJZPMJXedBQivG0tU3r/Wvam0EWuRkQ==} + + '@cosmjs/socket@0.26.8': + resolution: {integrity: sha512-Yv+6aFyfnsrFiLzWPK7rABGajGIlNvlcxAeVWtKFMCVKXr0hYRe0DdzsLgW18tm4L7ezoJBQhXIJLYwpYuKZAw==} + + '@cosmjs/stargate@0.25.0-alpha.2': + resolution: {integrity: sha512-r6VT720EuF6yPwS1WGPPUAPUOfD5aVIRlVJNJHkePWGg4l+ztJtoUbr7QN1CoPrxvG3b+WflNug1EQ7dG44UsA==} + + '@cosmjs/stargate@0.26.8': + resolution: {integrity: sha512-/epKiDo1PTSJ6+Q3udxl1ZM14BvHVA445PSSGRnEHkFTeQqon9sjGhCw1eCCIIxvt2kYOM9Wpxei0+vuMVQdfg==} + + '@cosmjs/stream@0.25.6': + resolution: {integrity: sha512-2mXIzf+WaFd+GSrRaJJETVXeZoC5sosuKChFERxSY8zXQ/f3OaG9J6m+quHpPbU3nAIEtnF1jgBVqJiD+NKwGQ==} + + '@cosmjs/stream@0.26.8': + resolution: {integrity: sha512-MWfgjoe9l4292JJx7CYBgVkClQXJHvQcOYBLi9qjYCTixBL+OjmtCNs+XcjsL8tPCG+XkPh8tHagOghNIb3vWw==} + + '@cosmjs/tendermint-rpc@0.25.0-alpha.2': + resolution: {integrity: sha512-1xK8mPwFWiWnyGafZhAdwYfcYmXl1l7UxQRR3yI2Q3kDk7CQhT87mgeAd56jw9JOaZvLYKKTgCRZkLNiKjXNew==} + + '@cosmjs/tendermint-rpc@0.26.8': + resolution: {integrity: sha512-L1Zvc/bg/toB9iCu2VFlC//LNadOTmK+/LEw6HqYJ7pRbSH0vhr1GzV4hEjjp/8VgMm2D+XiZUPFIR+m2V4/dw==} + + '@cosmjs/utils@0.24.1': + resolution: {integrity: sha512-VA3WFx1lMFb7esp9BqHWkDgMvHoA3D9w+uDRvWhVRpUpDc7RYHxMbWExASjz+gNblTCg556WJGzF64tXnf9tdQ==} + + '@cosmjs/utils@0.25.0-alpha.2': + resolution: {integrity: sha512-ey+WKhnQ67L6JF1M3TLBRPXTDK8Az0uJ3m7UWWuT1p8z6K9kZfu+YiGmzJev64xuLP1kFaPJJLmBIpHH6HQ4hA==} + + '@cosmjs/utils@0.25.6': + resolution: {integrity: sha512-ofOYiuxVKNo238vCPPlaDzqPXy2AQ/5/nashBo5rvPZJkxt9LciGfUEQWPCOb1BIJDNx2Dzu0z4XCf/dwzl0Dg==} + + '@cosmjs/utils@0.26.8': + resolution: {integrity: sha512-fG7y9qUPkpCJFCK9m7qioffhACTgWNQTNpO1D7Q9AVr5V7LZJdaWRcnskSzPwAyjQkK3pkC5GuRNvNdn8kWzMg==} + + '@cosmjs/utils@0.31.3': + resolution: {integrity: sha512-VBhAgzrrYdIe0O5IbKRqwszbQa7ZyQLx9nEQuHQ3HUplQW7P44COG/ye2n6AzCudtqxmwdX7nyX8ta1J07GoqA==} + + '@craftamap/esbuild-plugin-html@0.6.1': + resolution: {integrity: sha512-FNOxFrdAozLgNbV1HZH2gVjLDax4hFxFfVH/qntvkMEkcBO2ZCIBjqlSmmmuLLi3/QyCJAaFnduBJ74jIw8zUg==} + engines: {node: '>13'} + peerDependencies: + esbuild: '>=0.15.10' + + '@crypto-org-chain/chain-jslib@1.1.2': + resolution: {integrity: sha512-30jHu5RbDtmy1uUcLf5Rf283HC0Kzs25CDGQkaT7dfd19Kl3S/DRcKtLI2wAiqahPmPIyz99B3uqRuSfw+6pKA==} + + '@cspotcode/source-map-support@0.8.1': + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} + peerDependencies: + source-map-support: '*' peerDependenciesMeta: source-map-support: optional: true - "@csstools/normalize.css@12.1.1": - resolution: - { - integrity: sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==, - } + '@csstools/normalize.css@12.1.1': + resolution: {integrity: sha512-YAYeJ+Xqh7fUou1d1j9XHl44BmsuThiTr4iNrgCQ3J27IbhXsxXDGZ1cXv8Qvs99d4rBbLiSKy3+WZiet32PcQ==} - "@csstools/postcss-cascade-layers@1.1.1": - resolution: - { - integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==, - } - engines: { node: ^12 || ^14 || >=16 } + '@csstools/postcss-cascade-layers@1.1.1': + resolution: {integrity: sha512-+KdYrpKC5TgomQr2DlZF4lDEpHcoxnj5IGddYYfBWJAKfj1JtuHUIqMa+E1pJJ+z3kvDViWMqyqPlG4Ja7amQA==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 - "@csstools/postcss-color-function@1.1.1": - resolution: - { - integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==, - } - engines: { node: ^12 || ^14 || >=16 } + '@csstools/postcss-color-function@1.1.1': + resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 - "@csstools/postcss-font-format-keywords@1.0.1": - resolution: - { - integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==, - } - engines: { node: ^12 || ^14 || >=16 } + '@csstools/postcss-font-format-keywords@1.0.1': + resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 - "@csstools/postcss-hwb-function@1.0.2": - resolution: - { - integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==, - } - engines: { node: ^12 || ^14 || >=16 } + '@csstools/postcss-hwb-function@1.0.2': + resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 - "@csstools/postcss-ic-unit@1.0.1": - resolution: - { - integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==, - } - engines: { node: ^12 || ^14 || >=16 } + '@csstools/postcss-ic-unit@1.0.1': + resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 - "@csstools/postcss-is-pseudo-class@2.0.7": - resolution: - { - integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==, - } - engines: { node: ^12 || ^14 || >=16 } + '@csstools/postcss-is-pseudo-class@2.0.7': + resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 - "@csstools/postcss-nested-calc@1.0.0": - resolution: - { - integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==, - } - engines: { node: ^12 || ^14 || >=16 } + '@csstools/postcss-nested-calc@1.0.0': + resolution: {integrity: sha512-JCsQsw1wjYwv1bJmgjKSoZNvf7R6+wuHDAbi5f/7MbFhl2d/+v+TvBTU4BJH3G1X1H87dHl0mh6TfYogbT/dJQ==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 - "@csstools/postcss-normalize-display-values@1.0.1": - resolution: - { - integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==, - } - engines: { node: ^12 || ^14 || >=16 } + '@csstools/postcss-normalize-display-values@1.0.1': + resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 - "@csstools/postcss-oklab-function@1.1.1": - resolution: - { - integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==, - } - engines: { node: ^12 || ^14 || >=16 } + '@csstools/postcss-oklab-function@1.1.1': + resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 - "@csstools/postcss-progressive-custom-properties@1.3.0": - resolution: - { - integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==, - } - engines: { node: ^12 || ^14 || >=16 } + '@csstools/postcss-progressive-custom-properties@1.3.0': + resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 - "@csstools/postcss-stepped-value-functions@1.0.1": - resolution: - { - integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==, - } - engines: { node: ^12 || ^14 || >=16 } + '@csstools/postcss-stepped-value-functions@1.0.1': + resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 - "@csstools/postcss-text-decoration-shorthand@1.0.0": - resolution: - { - integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==, - } - engines: { node: ^12 || ^14 || >=16 } + '@csstools/postcss-text-decoration-shorthand@1.0.0': + resolution: {integrity: sha512-c1XwKJ2eMIWrzQenN0XbcfzckOLLJiczqy+YvfGmzoVXd7pT9FfObiSEfzs84bpE/VqfpEuAZ9tCRbZkZxxbdw==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 - "@csstools/postcss-trigonometric-functions@1.0.2": - resolution: - { - integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==, - } - engines: { node: ^14 || >=16 } + '@csstools/postcss-trigonometric-functions@1.0.2': + resolution: {integrity: sha512-woKaLO///4bb+zZC2s80l+7cm07M7268MsyG3M0ActXXEFi6SuhvriQYcb58iiKGbjwwIU7n45iRLEHypB47Og==} + engines: {node: ^14 || >=16} peerDependencies: postcss: ^8.2 - "@csstools/postcss-unset-value@1.0.2": - resolution: - { - integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==, - } - engines: { node: ^12 || ^14 || >=16 } + '@csstools/postcss-unset-value@1.0.2': + resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 - "@csstools/selector-specificity@2.2.0": - resolution: - { - integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==, - } - engines: { node: ^14 || ^16 || >=18 } + '@csstools/selector-specificity@2.2.0': + resolution: {integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==} + engines: {node: ^14 || ^16 || >=18} peerDependencies: postcss-selector-parser: ^6.0.10 - "@dabh/diagnostics@2.0.3": - resolution: - { - integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==, - } - - "@develar/schema-utils@2.6.5": - resolution: - { - integrity: sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==, - } - engines: { node: ">= 8.9.0" } - - "@dfinity/agent@0.21.4": - resolution: - { - integrity: sha512-k5k8v1BmDE8RStC22FtuqbFzMLaQAQL3cE/wF45ZMKP4WmBBmCPss75RDgIVGiFwLGEKKKXE1muHQDy9g+m5yQ==, - } - peerDependencies: - "@dfinity/candid": ^0.21.4 - "@dfinity/principal": ^0.21.4 - - "@dfinity/candid@0.21.4": - resolution: - { - integrity: sha512-BRdgLQjPbqEZDRIR985jpy92uwhdBn4mN2D8StMKyOXQLmR6hKSD0p/P2b632Sh7zPUY8HuiA8njpMZ67JEyAg==, - } - peerDependencies: - "@dfinity/principal": ^0.21.4 - - "@dfinity/principal@0.15.7": - resolution: - { - integrity: sha512-6/AkYzpGEH6Jw/0+B/EeeQn+5u2GDDvRLt1kQPhIG4txQYFnOy04H3VvyrymmfAj6/CXUgrOrux6OxgYSLYVJg==, - } - - "@discoveryjs/json-ext@0.5.7": - resolution: - { - integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==, - } - engines: { node: ">=10.0.0" } - - "@egjs/hammerjs@2.0.17": - resolution: - { - integrity: sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==, - } - engines: { node: ">=0.8.0" } - - "@electron/asar@3.2.9": - resolution: - { - integrity: sha512-Vu2P3X2gcZ3MY9W7yH72X9+AMXwUQZEJBrsPIbX0JsdllLtoh62/Q8Wg370/DawIEVKOyfD6KtTLo645ezqxUA==, - } - engines: { node: ">=10.12.0" } + '@dabh/diagnostics@2.0.3': + resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==} + + '@develar/schema-utils@2.6.5': + resolution: {integrity: sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==} + engines: {node: '>= 8.9.0'} + + '@dfinity/agent@0.21.4': + resolution: {integrity: sha512-k5k8v1BmDE8RStC22FtuqbFzMLaQAQL3cE/wF45ZMKP4WmBBmCPss75RDgIVGiFwLGEKKKXE1muHQDy9g+m5yQ==} + peerDependencies: + '@dfinity/candid': ^0.21.4 + '@dfinity/principal': ^0.21.4 + + '@dfinity/candid@0.21.4': + resolution: {integrity: sha512-BRdgLQjPbqEZDRIR985jpy92uwhdBn4mN2D8StMKyOXQLmR6hKSD0p/P2b632Sh7zPUY8HuiA8njpMZ67JEyAg==} + peerDependencies: + '@dfinity/principal': ^0.21.4 + + '@dfinity/principal@0.15.7': + resolution: {integrity: sha512-6/AkYzpGEH6Jw/0+B/EeeQn+5u2GDDvRLt1kQPhIG4txQYFnOy04H3VvyrymmfAj6/CXUgrOrux6OxgYSLYVJg==} + + '@discoveryjs/json-ext@0.5.7': + resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} + engines: {node: '>=10.0.0'} + + '@egjs/hammerjs@2.0.17': + resolution: {integrity: sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==} + engines: {node: '>=0.8.0'} + + '@electron/asar@3.2.9': + resolution: {integrity: sha512-Vu2P3X2gcZ3MY9W7yH72X9+AMXwUQZEJBrsPIbX0JsdllLtoh62/Q8Wg370/DawIEVKOyfD6KtTLo645ezqxUA==} + engines: {node: '>=10.12.0'} hasBin: true - "@electron/get@2.0.3": - resolution: - { - integrity: sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ==, - } - engines: { node: ">=12" } - - "@electron/notarize@2.2.1": - resolution: - { - integrity: sha512-aL+bFMIkpR0cmmj5Zgy0LMKEpgy43/hw5zadEArgmAMWWlKc5buwFvFT9G/o/YJkvXAJm5q3iuTuLaiaXW39sg==, - } - engines: { node: ">= 10.0.0" } - - "@electron/notarize@2.3.2": - resolution: - { - integrity: sha512-zfayxCe19euNwRycCty1C7lF7snk9YwfRpB5M8GLr1a4ICH63znxaPNAubrMvj0yDvVozqfgsdYpXVUnpWBDpg==, - } - engines: { node: ">= 10.0.0" } - - "@electron/osx-sign@1.0.5": - resolution: - { - integrity: sha512-k9ZzUQtamSoweGQDV2jILiRIHUu7lYlJ3c6IEmjv1hC17rclE+eb9U+f6UFlOOETo0JzY1HNlXy4YOlCvl+Lww==, - } - engines: { node: ">=12.0.0" } + '@electron/get@2.0.3': + resolution: {integrity: sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ==} + engines: {node: '>=12'} + + '@electron/notarize@2.2.1': + resolution: {integrity: sha512-aL+bFMIkpR0cmmj5Zgy0LMKEpgy43/hw5zadEArgmAMWWlKc5buwFvFT9G/o/YJkvXAJm5q3iuTuLaiaXW39sg==} + engines: {node: '>= 10.0.0'} + + '@electron/notarize@2.3.2': + resolution: {integrity: sha512-zfayxCe19euNwRycCty1C7lF7snk9YwfRpB5M8GLr1a4ICH63znxaPNAubrMvj0yDvVozqfgsdYpXVUnpWBDpg==} + engines: {node: '>= 10.0.0'} + + '@electron/osx-sign@1.0.5': + resolution: {integrity: sha512-k9ZzUQtamSoweGQDV2jILiRIHUu7lYlJ3c6IEmjv1hC17rclE+eb9U+f6UFlOOETo0JzY1HNlXy4YOlCvl+Lww==} + engines: {node: '>=12.0.0'} hasBin: true - "@electron/universal@1.5.1": - resolution: - { - integrity: sha512-kbgXxyEauPJiQQUNG2VgUeyfQNFk6hBF11ISN2PNI6agUgPl55pv4eQmaqHzTAzchBvqZ2tQuRVaPStGf0mxGw==, - } - engines: { node: ">=8.6" } - - "@elrondnetwork/erdjs-network-providers@1.2.0": - resolution: - { - integrity: sha512-ANh7tDaRohQos9WzZsZS/kyqatUqxY2NqncsKnWhDeSHqYv3RZiwcF3siKsBiWHYiP5hKqIACK1+Wsq3P0ocMg==, - } - deprecated: "WARNING: This project has been moved to @multiversx/sdk-network-providers. Use @multiversx/sdk-network-providers instead." - - "@elrondnetwork/erdjs@11.0.0": - resolution: - { - integrity: sha512-XUvWYcEsKp5NKf81Avz0m3yHvHRzkyyztWFH+M/XEDhsPAy7FyZAY0HCH8ri5JvDhDr45IaE3Nlh6oeXqlOc9A==, - } - deprecated: "WARNING: This project has been moved to @multiversx/sdk-core. Use @multiversx/sdk-core instead." - - "@elrondnetwork/transaction-decoder@1.0.0": - resolution: - { - integrity: sha512-FFUDXffwDNwo4V6Co+S9ur3OPYyAEzwgen7gh7LtQrG7SNPELFHjl+YssABXI8v1+SWmqcrSxervMggAiDDXkg==, - } - deprecated: "WARNING: This project has been moved to @multiversx/sdk-transaction-decoder. Use @multiversx/sdk-transaction-decoder instead." - - "@emotion/babel-plugin@11.11.0": - resolution: - { - integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==, - } - - "@emotion/cache@10.0.29": - resolution: - { - integrity: sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==, - } - - "@emotion/cache@11.11.0": - resolution: - { - integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==, - } - - "@emotion/core@10.3.1": - resolution: - { - integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==, - } - peerDependencies: - react: ">=16.3.0" - - "@emotion/core@11.0.0": - resolution: - { - integrity: sha512-w4sE3AmHmyG6RDKf6mIbtHpgJUSJ2uGvPQb8VXFL7hFjMPibE8IiehG8cMX3Ztm4svfCQV6KqusQbeIOkurBcA==, - } - - "@emotion/css@10.0.27": - resolution: - { - integrity: sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==, - } - - "@emotion/hash@0.8.0": - resolution: - { - integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==, - } - - "@emotion/hash@0.9.1": - resolution: - { - integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==, - } - - "@emotion/is-prop-valid@1.2.1": - resolution: - { - integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==, - } - - "@emotion/is-prop-valid@1.2.2": - resolution: - { - integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==, - } - - "@emotion/memoize@0.7.4": - resolution: - { - integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==, - } - - "@emotion/memoize@0.8.1": - resolution: - { - integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==, - } - - "@emotion/native@11.11.0": - resolution: - { - integrity: sha512-t1b5bLv+o5OUNLqXlnw+LJYU10OpmYkLC/1W873Y1ohG+vObx5TT3o3Eh1okXb2KCuZTTBPgsEnU/Sl7NNkJ9Q==, - } - peerDependencies: - react-native: ">=0.14.0 <1" - - "@emotion/primitives-core@11.11.0": - resolution: - { - integrity: sha512-cTVsAe7Y5E/RRoHnWDh6ZE3aPHOuuUDqIkSibJ+tz/wFZizkqg+VNcKvTLU6DFRMXH+NhNWdyhzldJ9PUY9/vA==, - } - peerDependencies: - "@emotion/react": ^11.0.0-rc.0 - react: ">=16.8.0" - - "@emotion/react@11.11.4": - resolution: - { - integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==, - } - peerDependencies: - "@types/react": "*" - react: ">=16.8.0" + '@electron/universal@1.5.1': + resolution: {integrity: sha512-kbgXxyEauPJiQQUNG2VgUeyfQNFk6hBF11ISN2PNI6agUgPl55pv4eQmaqHzTAzchBvqZ2tQuRVaPStGf0mxGw==} + engines: {node: '>=8.6'} + + '@elrondnetwork/erdjs-network-providers@1.2.0': + resolution: {integrity: sha512-ANh7tDaRohQos9WzZsZS/kyqatUqxY2NqncsKnWhDeSHqYv3RZiwcF3siKsBiWHYiP5hKqIACK1+Wsq3P0ocMg==} + deprecated: 'WARNING: This project has been moved to @multiversx/sdk-network-providers. Use @multiversx/sdk-network-providers instead.' + + '@elrondnetwork/erdjs@11.0.0': + resolution: {integrity: sha512-XUvWYcEsKp5NKf81Avz0m3yHvHRzkyyztWFH+M/XEDhsPAy7FyZAY0HCH8ri5JvDhDr45IaE3Nlh6oeXqlOc9A==} + deprecated: 'WARNING: This project has been moved to @multiversx/sdk-core. Use @multiversx/sdk-core instead.' + + '@elrondnetwork/transaction-decoder@1.0.0': + resolution: {integrity: sha512-FFUDXffwDNwo4V6Co+S9ur3OPYyAEzwgen7gh7LtQrG7SNPELFHjl+YssABXI8v1+SWmqcrSxervMggAiDDXkg==} + deprecated: 'WARNING: This project has been moved to @multiversx/sdk-transaction-decoder. Use @multiversx/sdk-transaction-decoder instead.' + + '@emotion/babel-plugin@11.11.0': + resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} + + '@emotion/cache@10.0.29': + resolution: {integrity: sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==} + + '@emotion/cache@11.11.0': + resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} + + '@emotion/core@10.3.1': + resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==} + peerDependencies: + react: '>=16.3.0' + + '@emotion/core@11.0.0': + resolution: {integrity: sha512-w4sE3AmHmyG6RDKf6mIbtHpgJUSJ2uGvPQb8VXFL7hFjMPibE8IiehG8cMX3Ztm4svfCQV6KqusQbeIOkurBcA==} + + '@emotion/css@10.0.27': + resolution: {integrity: sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==} + + '@emotion/hash@0.8.0': + resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} + + '@emotion/hash@0.9.1': + resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} + + '@emotion/is-prop-valid@1.2.1': + resolution: {integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==} + + '@emotion/is-prop-valid@1.2.2': + resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==} + + '@emotion/memoize@0.7.4': + resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} + + '@emotion/memoize@0.8.1': + resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} + + '@emotion/native@11.11.0': + resolution: {integrity: sha512-t1b5bLv+o5OUNLqXlnw+LJYU10OpmYkLC/1W873Y1ohG+vObx5TT3o3Eh1okXb2KCuZTTBPgsEnU/Sl7NNkJ9Q==} + peerDependencies: + react-native: '>=0.14.0 <1' + + '@emotion/primitives-core@11.11.0': + resolution: {integrity: sha512-cTVsAe7Y5E/RRoHnWDh6ZE3aPHOuuUDqIkSibJ+tz/wFZizkqg+VNcKvTLU6DFRMXH+NhNWdyhzldJ9PUY9/vA==} + peerDependencies: + '@emotion/react': ^11.0.0-rc.0 + react: '>=16.8.0' + + '@emotion/react@11.11.4': + resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==} + peerDependencies: + '@types/react': '*' + react: '>=16.8.0' peerDependenciesMeta: - "@types/react": - optional: true - - "@emotion/serialize@0.11.16": - resolution: - { - integrity: sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==, - } - - "@emotion/serialize@1.1.3": - resolution: - { - integrity: sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==, - } - - "@emotion/sheet@0.9.4": - resolution: - { - integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==, - } - - "@emotion/sheet@1.2.2": - resolution: - { - integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==, - } - - "@emotion/stylis@0.8.5": - resolution: - { - integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==, - } - - "@emotion/unitless@0.7.5": - resolution: - { - integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==, - } - - "@emotion/unitless@0.8.0": - resolution: - { - integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==, - } - - "@emotion/unitless@0.8.1": - resolution: - { - integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==, - } - - "@emotion/use-insertion-effect-with-fallbacks@1.0.1": - resolution: - { - integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==, - } - peerDependencies: - react: ">=16.8.0" - - "@emotion/utils@0.11.3": - resolution: - { - integrity: sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==, - } - - "@emotion/utils@1.2.1": - resolution: - { - integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==, - } - - "@emotion/weak-memoize@0.2.5": - resolution: - { - integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==, - } - - "@emotion/weak-memoize@0.3.1": - resolution: - { - integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==, - } - - "@esbuild/aix-ppc64@0.19.12": - resolution: - { - integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==, - } - engines: { node: ">=12" } + '@types/react': + optional: true + + '@emotion/serialize@0.11.16': + resolution: {integrity: sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==} + + '@emotion/serialize@1.1.3': + resolution: {integrity: sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==} + + '@emotion/sheet@0.9.4': + resolution: {integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==} + + '@emotion/sheet@1.2.2': + resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} + + '@emotion/stylis@0.8.5': + resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==} + + '@emotion/unitless@0.7.5': + resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==} + + '@emotion/unitless@0.8.0': + resolution: {integrity: sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==} + + '@emotion/unitless@0.8.1': + resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} + + '@emotion/use-insertion-effect-with-fallbacks@1.0.1': + resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} + peerDependencies: + react: '>=16.8.0' + + '@emotion/utils@0.11.3': + resolution: {integrity: sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==} + + '@emotion/utils@1.2.1': + resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} + + '@emotion/weak-memoize@0.2.5': + resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==} + + '@emotion/weak-memoize@0.3.1': + resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} + + '@esbuild/aix-ppc64@0.19.12': + resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==} + engines: {node: '>=12'} cpu: [ppc64] os: [aix] - "@esbuild/aix-ppc64@0.20.2": - resolution: - { - integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==, - } - engines: { node: ">=12" } + '@esbuild/aix-ppc64@0.20.2': + resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==} + engines: {node: '>=12'} cpu: [ppc64] os: [aix] - "@esbuild/android-arm64@0.18.20": - resolution: - { - integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==, - } - engines: { node: ">=12" } + '@esbuild/android-arm64@0.18.20': + resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==} + engines: {node: '>=12'} cpu: [arm64] os: [android] - "@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.20.2": - resolution: - { - integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==, - } - engines: { node: ">=12" } + '@esbuild/android-arm64@0.20.2': + resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==} + engines: {node: '>=12'} cpu: [arm64] os: [android] - "@esbuild/android-arm@0.18.20": - resolution: - { - integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==, - } - engines: { node: ">=12" } + '@esbuild/android-arm@0.18.20': + resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==} + engines: {node: '>=12'} cpu: [arm] 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.20.2": - resolution: - { - integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==, - } - engines: { node: ">=12" } + '@esbuild/android-arm@0.20.2': + resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==} + engines: {node: '>=12'} cpu: [arm] os: [android] - "@esbuild/android-x64@0.18.20": - resolution: - { - integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==, - } - engines: { node: ">=12" } + '@esbuild/android-x64@0.18.20': + resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==} + engines: {node: '>=12'} cpu: [x64] 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.20.2": - resolution: - { - integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==, - } - engines: { node: ">=12" } + '@esbuild/android-x64@0.20.2': + resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==} + engines: {node: '>=12'} cpu: [x64] os: [android] - "@esbuild/darwin-arm64@0.18.20": - resolution: - { - integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==, - } - engines: { node: ">=12" } + '@esbuild/darwin-arm64@0.18.20': + resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==} + engines: {node: '>=12'} cpu: [arm64] os: [darwin] - "@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.20.2": - resolution: - { - integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==, - } - engines: { node: ">=12" } + '@esbuild/darwin-arm64@0.20.2': + resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==} + engines: {node: '>=12'} cpu: [arm64] os: [darwin] - "@esbuild/darwin-x64@0.18.20": - resolution: - { - integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==, - } - engines: { node: ">=12" } + '@esbuild/darwin-x64@0.18.20': + resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==} + engines: {node: '>=12'} cpu: [x64] 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.20.2": - resolution: - { - integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==, - } - engines: { node: ">=12" } + '@esbuild/darwin-x64@0.20.2': + resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==} + engines: {node: '>=12'} cpu: [x64] os: [darwin] - "@esbuild/freebsd-arm64@0.18.20": - resolution: - { - integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==, - } - engines: { node: ">=12" } + '@esbuild/freebsd-arm64@0.18.20': + resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==} + engines: {node: '>=12'} cpu: [arm64] os: [freebsd] - "@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.20.2": - resolution: - { - integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==, - } - engines: { node: ">=12" } + '@esbuild/freebsd-arm64@0.20.2': + resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==} + engines: {node: '>=12'} cpu: [arm64] os: [freebsd] - "@esbuild/freebsd-x64@0.18.20": - resolution: - { - integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==, - } - engines: { node: ">=12" } + '@esbuild/freebsd-x64@0.18.20': + resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==} + engines: {node: '>=12'} cpu: [x64] 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.20.2": - resolution: - { - integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==, - } - engines: { node: ">=12" } + '@esbuild/freebsd-x64@0.20.2': + resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==} + engines: {node: '>=12'} cpu: [x64] os: [freebsd] - "@esbuild/linux-arm64@0.18.20": - resolution: - { - integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==, - } - engines: { node: ">=12" } + '@esbuild/linux-arm64@0.18.20': + resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==} + engines: {node: '>=12'} cpu: [arm64] os: [linux] - "@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.20.2": - resolution: - { - integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==, - } - engines: { node: ">=12" } + '@esbuild/linux-arm64@0.20.2': + resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==} + engines: {node: '>=12'} cpu: [arm64] os: [linux] - "@esbuild/linux-arm@0.18.20": - resolution: - { - integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==, - } - engines: { node: ">=12" } + '@esbuild/linux-arm@0.18.20': + resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==} + engines: {node: '>=12'} cpu: [arm] 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.20.2": - resolution: - { - integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==, - } - engines: { node: ">=12" } + '@esbuild/linux-arm@0.20.2': + resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==} + engines: {node: '>=12'} cpu: [arm] os: [linux] - "@esbuild/linux-ia32@0.18.20": - resolution: - { - integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==, - } - engines: { node: ">=12" } + '@esbuild/linux-ia32@0.18.20': + resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==} + engines: {node: '>=12'} cpu: [ia32] 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.20.2": - resolution: - { - integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==, - } - engines: { node: ">=12" } + '@esbuild/linux-ia32@0.20.2': + resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==} + engines: {node: '>=12'} cpu: [ia32] os: [linux] - "@esbuild/linux-loong64@0.18.20": - resolution: - { - integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==, - } - engines: { node: ">=12" } + '@esbuild/linux-loong64@0.18.20': + resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==} + engines: {node: '>=12'} cpu: [loong64] 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.20.2": - resolution: - { - integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==, - } - engines: { node: ">=12" } + '@esbuild/linux-loong64@0.20.2': + resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==} + engines: {node: '>=12'} cpu: [loong64] os: [linux] - "@esbuild/linux-mips64el@0.18.20": - resolution: - { - integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==, - } - engines: { node: ">=12" } + '@esbuild/linux-mips64el@0.18.20': + resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==} + engines: {node: '>=12'} cpu: [mips64el] 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.20.2": - resolution: - { - integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==, - } - engines: { node: ">=12" } + '@esbuild/linux-mips64el@0.20.2': + resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==} + engines: {node: '>=12'} cpu: [mips64el] os: [linux] - "@esbuild/linux-ppc64@0.18.20": - resolution: - { - integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==, - } - engines: { node: ">=12" } + '@esbuild/linux-ppc64@0.18.20': + resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==} + engines: {node: '>=12'} cpu: [ppc64] 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.20.2": - resolution: - { - integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==, - } - engines: { node: ">=12" } + '@esbuild/linux-ppc64@0.20.2': + resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==} + engines: {node: '>=12'} cpu: [ppc64] os: [linux] - "@esbuild/linux-riscv64@0.18.20": - resolution: - { - integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==, - } - engines: { node: ">=12" } + '@esbuild/linux-riscv64@0.18.20': + resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==} + engines: {node: '>=12'} cpu: [riscv64] 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.20.2": - resolution: - { - integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==, - } - engines: { node: ">=12" } + '@esbuild/linux-riscv64@0.20.2': + resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==} + engines: {node: '>=12'} cpu: [riscv64] os: [linux] - "@esbuild/linux-s390x@0.18.20": - resolution: - { - integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==, - } - engines: { node: ">=12" } + '@esbuild/linux-s390x@0.18.20': + resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==} + engines: {node: '>=12'} cpu: [s390x] 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.20.2": - resolution: - { - integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==, - } - engines: { node: ">=12" } + '@esbuild/linux-s390x@0.20.2': + resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==} + engines: {node: '>=12'} cpu: [s390x] os: [linux] - "@esbuild/linux-x64@0.18.20": - resolution: - { - integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==, - } - engines: { node: ">=12" } + '@esbuild/linux-x64@0.18.20': + resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==} + engines: {node: '>=12'} cpu: [x64] 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.20.2": - resolution: - { - integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==, - } - engines: { node: ">=12" } + '@esbuild/linux-x64@0.20.2': + resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==} + engines: {node: '>=12'} cpu: [x64] os: [linux] - "@esbuild/netbsd-x64@0.18.20": - resolution: - { - integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==, - } - engines: { node: ">=12" } + '@esbuild/netbsd-x64@0.18.20': + resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==} + engines: {node: '>=12'} cpu: [x64] 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.20.2": - resolution: - { - integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==, - } - engines: { node: ">=12" } + '@esbuild/netbsd-x64@0.20.2': + resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==} + engines: {node: '>=12'} cpu: [x64] os: [netbsd] - "@esbuild/openbsd-x64@0.18.20": - resolution: - { - integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==, - } - engines: { node: ">=12" } + '@esbuild/openbsd-x64@0.18.20': + resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==} + engines: {node: '>=12'} cpu: [x64] 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.20.2": - resolution: - { - integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==, - } - engines: { node: ">=12" } + '@esbuild/openbsd-x64@0.20.2': + resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==} + engines: {node: '>=12'} cpu: [x64] os: [openbsd] - "@esbuild/sunos-x64@0.18.20": - resolution: - { - integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==, - } - engines: { node: ">=12" } + '@esbuild/sunos-x64@0.18.20': + resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==} + engines: {node: '>=12'} cpu: [x64] os: [sunos] - "@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.20.2": - resolution: - { - integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==, - } - engines: { node: ">=12" } + '@esbuild/sunos-x64@0.20.2': + resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==} + engines: {node: '>=12'} cpu: [x64] os: [sunos] - "@esbuild/win32-arm64@0.18.20": - resolution: - { - integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==, - } - engines: { node: ">=12" } + '@esbuild/win32-arm64@0.18.20': + resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==} + engines: {node: '>=12'} cpu: [arm64] os: [win32] - "@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.20.2": - resolution: - { - integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==, - } - engines: { node: ">=12" } + '@esbuild/win32-arm64@0.20.2': + resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==} + engines: {node: '>=12'} cpu: [arm64] os: [win32] - "@esbuild/win32-ia32@0.18.20": - resolution: - { - integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==, - } - engines: { node: ">=12" } + '@esbuild/win32-ia32@0.18.20': + resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==} + engines: {node: '>=12'} cpu: [ia32] 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.20.2": - resolution: - { - integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==, - } - engines: { node: ">=12" } + '@esbuild/win32-ia32@0.20.2': + resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==} + engines: {node: '>=12'} cpu: [ia32] os: [win32] - "@esbuild/win32-x64@0.18.20": - resolution: - { - integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==, - } - engines: { node: ">=12" } + '@esbuild/win32-x64@0.18.20': + resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==} + engines: {node: '>=12'} cpu: [x64] 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.20.2": - resolution: - { - integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==, - } - engines: { node: ">=12" } + '@esbuild/win32-x64@0.20.2': + resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==} + engines: {node: '>=12'} cpu: [x64] os: [win32] - "@eslint-community/eslint-utils@4.4.0": - resolution: - { - integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + '@eslint-community/eslint-utils@4.4.0': + resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} + 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.10.0": - resolution: - { - integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==, - } - engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } - - "@eslint/eslintrc@2.1.4": - resolution: - { - integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - - "@eslint/js@8.57.0": - resolution: - { - integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - - "@ethereumjs/common@2.6.5": - resolution: - { - integrity: sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA==, - } - - "@ethereumjs/tx@3.5.2": - resolution: - { - integrity: sha512-gQDNJWKrSDGu2w7w0PzVXVBNMzb7wwdDOmOqczmhNjqFxFuIbhVJDwiGEnxFNC2/b8ifcZzY7MLcluizohRzNw==, - } - - "@ethersproject/abi@5.0.7": - resolution: - { - integrity: sha512-Cqktk+hSIckwP/W8O47Eef60VwmoSC/L3lY0+dIBhQPCNn9E4V7rwmm2aFrNRRDJfFlGuZ1khkQUOc3oBX+niw==, - } - - "@ethersproject/abi@5.7.0": - resolution: - { - integrity: sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==, - } - - "@ethersproject/abstract-provider@5.7.0": - resolution: - { - integrity: sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==, - } - - "@ethersproject/abstract-signer@5.7.0": - resolution: - { - integrity: sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==, - } - - "@ethersproject/address@5.7.0": - resolution: - { - integrity: sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==, - } - - "@ethersproject/base64@5.7.0": - resolution: - { - integrity: sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==, - } - - "@ethersproject/basex@5.7.0": - resolution: - { - integrity: sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==, - } - - "@ethersproject/bignumber@5.7.0": - resolution: - { - integrity: sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==, - } - - "@ethersproject/bytes@5.7.0": - resolution: - { - integrity: sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==, - } - - "@ethersproject/constants@5.7.0": - resolution: - { - integrity: sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==, - } - - "@ethersproject/contracts@5.7.0": - resolution: - { - integrity: sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==, - } - - "@ethersproject/hash@5.7.0": - resolution: - { - integrity: sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==, - } - - "@ethersproject/hdnode@5.7.0": - resolution: - { - integrity: sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==, - } - - "@ethersproject/json-wallets@5.7.0": - resolution: - { - integrity: sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==, - } - - "@ethersproject/keccak256@5.7.0": - resolution: - { - integrity: sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==, - } - - "@ethersproject/logger@5.7.0": - resolution: - { - integrity: sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==, - } - - "@ethersproject/networks@5.7.1": - resolution: - { - integrity: sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==, - } - - "@ethersproject/pbkdf2@5.7.0": - resolution: - { - integrity: sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==, - } - - "@ethersproject/properties@5.7.0": - resolution: - { - integrity: sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==, - } - - "@ethersproject/providers@5.7.2": - resolution: - { - integrity: sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==, - } - - "@ethersproject/random@5.7.0": - resolution: - { - integrity: sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==, - } - - "@ethersproject/rlp@5.7.0": - resolution: - { - integrity: sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==, - } - - "@ethersproject/sha2@5.7.0": - resolution: - { - integrity: sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==, - } - - "@ethersproject/shims@5.7.0": - resolution: - { - integrity: sha512-WeDptc6oAprov5CCN2LJ/6/+dC9gTonnkdAtLepm/7P5Z+3PRxS5NpfVWmOMs1yE4Vitl2cU8bOPWC0GvGSbVg==, - } - - "@ethersproject/signing-key@5.7.0": - resolution: - { - integrity: sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==, - } - - "@ethersproject/solidity@5.7.0": - resolution: - { - integrity: sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==, - } - - "@ethersproject/strings@5.7.0": - resolution: - { - integrity: sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==, - } - - "@ethersproject/transactions@5.7.0": - resolution: - { - integrity: sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==, - } - - "@ethersproject/units@5.7.0": - resolution: - { - integrity: sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==, - } - - "@ethersproject/wallet@5.7.0": - resolution: - { - integrity: sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==, - } - - "@ethersproject/web@5.7.1": - resolution: - { - integrity: sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==, - } - - "@ethersproject/wordlists@5.7.0": - resolution: - { - integrity: sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==, - } - - "@expo/bunyan@4.0.0": - resolution: - { - integrity: sha512-Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA==, - } - engines: { "0": node >=0.10.0 } - - "@expo/cli@0.10.17": - resolution: - { - integrity: sha512-HkHDvHPzq4M244hIerwnsw2IdjOo7RSsMYWGhc7ZY7DQWIMUC88b7f5+0RtD4JQfXQrgKS5Tvqm/5E6kAH0rIA==, - } + '@eslint-community/regexpp@4.10.0': + resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/eslintrc@2.1.4': + resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@eslint/js@8.57.0': + resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@ethereumjs/common@2.6.5': + resolution: {integrity: sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA==} + + '@ethereumjs/tx@3.5.2': + resolution: {integrity: sha512-gQDNJWKrSDGu2w7w0PzVXVBNMzb7wwdDOmOqczmhNjqFxFuIbhVJDwiGEnxFNC2/b8ifcZzY7MLcluizohRzNw==} + + '@ethersproject/abi@5.0.7': + resolution: {integrity: sha512-Cqktk+hSIckwP/W8O47Eef60VwmoSC/L3lY0+dIBhQPCNn9E4V7rwmm2aFrNRRDJfFlGuZ1khkQUOc3oBX+niw==} + + '@ethersproject/abi@5.7.0': + resolution: {integrity: sha512-351ktp42TiRcYB3H1OP8yajPeAQstMW/yCFokj/AthP9bLHzQFPlOrxOcwYEDkUAICmOHljvN4K39OMTMUa9RA==} + + '@ethersproject/abstract-provider@5.7.0': + resolution: {integrity: sha512-R41c9UkchKCpAqStMYUpdunjo3pkEvZC3FAwZn5S5MGbXoMQOHIdHItezTETxAO5bevtMApSyEhn9+CHcDsWBw==} + + '@ethersproject/abstract-signer@5.7.0': + resolution: {integrity: sha512-a16V8bq1/Cz+TGCkE2OPMTOUDLS3grCpdjoJCYNnVBbdYEMSgKrU0+B90s8b6H+ByYTBZN7a3g76jdIJi7UfKQ==} + + '@ethersproject/address@5.7.0': + resolution: {integrity: sha512-9wYhYt7aghVGo758POM5nqcOMaE168Q6aRLJZwUmiqSrAungkG74gSSeKEIR7ukixesdRZGPgVqme6vmxs1fkA==} + + '@ethersproject/base64@5.7.0': + resolution: {integrity: sha512-Dr8tcHt2mEbsZr/mwTPIQAf3Ai0Bks/7gTw9dSqk1mQvhW3XvRlmDJr/4n+wg1JmCl16NZue17CDh8xb/vZ0sQ==} + + '@ethersproject/basex@5.7.0': + resolution: {integrity: sha512-ywlh43GwZLv2Voc2gQVTKBoVQ1mti3d8HK5aMxsfu/nRDnMmNqaSJ3r3n85HBByT8OpoY96SXM1FogC533T4zw==} + + '@ethersproject/bignumber@5.7.0': + resolution: {integrity: sha512-n1CAdIHRWjSucQO3MC1zPSVgV/6dy/fjL9pMrPP9peL+QxEg9wOsVqwD4+818B6LUEtaXzVHQiuivzRoxPxUGw==} + + '@ethersproject/bytes@5.7.0': + resolution: {integrity: sha512-nsbxwgFXWh9NyYWo+U8atvmMsSdKJprTcICAkvbBffT75qDocbuggBU0SJiVK2MuTrp0q+xvLkTnGMPK1+uA9A==} + + '@ethersproject/constants@5.7.0': + resolution: {integrity: sha512-DHI+y5dBNvkpYUMiRQyxRBYBefZkJfo70VUkUAsRjcPs47muV9evftfZ0PJVCXYbAiCgght0DtcF9srFQmIgWA==} + + '@ethersproject/contracts@5.7.0': + resolution: {integrity: sha512-5GJbzEU3X+d33CdfPhcyS+z8MzsTrBGk/sc+G+59+tPa9yFkl6HQ9D6L0QMgNTA9q8dT0XKxxkyp883XsQvbbg==} + + '@ethersproject/hash@5.7.0': + resolution: {integrity: sha512-qX5WrQfnah1EFnO5zJv1v46a8HW0+E5xuBBDTwMFZLuVTx0tbU2kkx15NqdjxecrLGatQN9FGQKpb1FKdHCt+g==} + + '@ethersproject/hdnode@5.7.0': + resolution: {integrity: sha512-OmyYo9EENBPPf4ERhR7oj6uAtUAhYGqOnIS+jE5pTXvdKBS99ikzq1E7Iv0ZQZ5V36Lqx1qZLeak0Ra16qpeOg==} + + '@ethersproject/json-wallets@5.7.0': + resolution: {integrity: sha512-8oee5Xgu6+RKgJTkvEMl2wDgSPSAQ9MB/3JYjFV9jlKvcYHUXZC+cQp0njgmxdHkYWn8s6/IqIZYm0YWCjO/0g==} + + '@ethersproject/keccak256@5.7.0': + resolution: {integrity: sha512-2UcPboeL/iW+pSg6vZ6ydF8tCnv3Iu/8tUmLLzWWGzxWKFFqOBQFLo6uLUv6BDrLgCDfN28RJ/wtByx+jZ4KBg==} + + '@ethersproject/logger@5.7.0': + resolution: {integrity: sha512-0odtFdXu/XHtjQXJYA3u9G0G8btm0ND5Cu8M7i5vhEcE8/HmF4Lbdqanwyv4uQTr2tx6b7fQRmgLrsnpQlmnig==} + + '@ethersproject/networks@5.7.1': + resolution: {integrity: sha512-n/MufjFYv3yFcUyfhnXotyDlNdFb7onmkSy8aQERi2PjNcnWQ66xXxa3XlS8nCcA8aJKJjIIMNJTC7tu80GwpQ==} + + '@ethersproject/pbkdf2@5.7.0': + resolution: {integrity: sha512-oR/dBRZR6GTyaofd86DehG72hY6NpAjhabkhxgr3X2FpJtJuodEl2auADWBZfhDHgVCbu3/H/Ocq2uC6dpNjjw==} + + '@ethersproject/properties@5.7.0': + resolution: {integrity: sha512-J87jy8suntrAkIZtecpxEPxY//szqr1mlBaYlQ0r4RCaiD2hjheqF9s1LVE8vVuJCXisjIP+JgtK/Do54ej4Sw==} + + '@ethersproject/providers@5.7.2': + resolution: {integrity: sha512-g34EWZ1WWAVgr4aptGlVBF8mhl3VWjv+8hoAnzStu8Ah22VHBsuGzP17eb6xDVRzw895G4W7vvx60lFFur/1Rg==} + + '@ethersproject/random@5.7.0': + resolution: {integrity: sha512-19WjScqRA8IIeWclFme75VMXSBvi4e6InrUNuaR4s5pTF2qNhcGdCUwdxUVGtDDqC00sDLCO93jPQoDUH4HVmQ==} + + '@ethersproject/rlp@5.7.0': + resolution: {integrity: sha512-rBxzX2vK8mVF7b0Tol44t5Tb8gomOHkj5guL+HhzQ1yBh/ydjGnpw6at+X6Iw0Kp3OzzzkcKp8N9r0W4kYSs9w==} + + '@ethersproject/sha2@5.7.0': + resolution: {integrity: sha512-gKlH42riwb3KYp0reLsFTokByAKoJdgFCwI+CCiX/k+Jm2mbNs6oOaCjYQSlI1+XBVejwH2KrmCbMAT/GnRDQw==} + + '@ethersproject/shims@5.7.0': + resolution: {integrity: sha512-WeDptc6oAprov5CCN2LJ/6/+dC9gTonnkdAtLepm/7P5Z+3PRxS5NpfVWmOMs1yE4Vitl2cU8bOPWC0GvGSbVg==} + + '@ethersproject/signing-key@5.7.0': + resolution: {integrity: sha512-MZdy2nL3wO0u7gkB4nA/pEf8lu1TlFswPNmy8AiYkfKTdO6eXBJyUdmHO/ehm/htHw9K/qF8ujnTyUAD+Ry54Q==} + + '@ethersproject/solidity@5.7.0': + resolution: {integrity: sha512-HmabMd2Dt/raavyaGukF4XxizWKhKQ24DoLtdNbBmNKUOPqwjsKQSdV9GQtj9CBEea9DlzETlVER1gYeXXBGaA==} + + '@ethersproject/strings@5.7.0': + resolution: {integrity: sha512-/9nu+lj0YswRNSH0NXYqrh8775XNyEdUQAuf3f+SmOrnVewcJ5SBNAjF7lpgehKi4abvNNXyf+HX86czCdJ8Mg==} + + '@ethersproject/transactions@5.7.0': + resolution: {integrity: sha512-kmcNicCp1lp8qanMTC3RIikGgoJ80ztTyvtsFvCYpSCfkjhD0jZ2LOrnbcuxuToLIUYYf+4XwD1rP+B/erDIhQ==} + + '@ethersproject/units@5.7.0': + resolution: {integrity: sha512-pD3xLMy3SJu9kG5xDGI7+xhTEmGXlEqXU4OfNapmfnxLVY4EMSSRp7j1k7eezutBPH7RBN/7QPnwR7hzNlEFeg==} + + '@ethersproject/wallet@5.7.0': + resolution: {integrity: sha512-MhmXlJXEJFBFVKrDLB4ZdDzxcBxQ3rLyCkhNqVu3CDYvR97E+8r01UgrI+TI99Le+aYm/in/0vp86guJuM7FCA==} + + '@ethersproject/web@5.7.1': + resolution: {integrity: sha512-Gueu8lSvyjBWL4cYsWsjh6MtMwM0+H4HvqFPZfB6dV8ctbP9zFAO73VG1cMWae0FLPCtz0peKPpZY8/ugJJX2w==} + + '@ethersproject/wordlists@5.7.0': + resolution: {integrity: sha512-S2TFNJNfHWVHNE6cNDjbVlZ6MgE17MIxMbMg2zv3wn+3XSJGosL1m9ZVv3GXCf/2ymSsQ+hRI5IzoMJTG6aoVA==} + + '@expo/bunyan@4.0.0': + resolution: {integrity: sha512-Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA==} + engines: {'0': node >=0.10.0} + + '@expo/cli@0.10.17': + resolution: {integrity: sha512-HkHDvHPzq4M244hIerwnsw2IdjOo7RSsMYWGhc7ZY7DQWIMUC88b7f5+0RtD4JQfXQrgKS5Tvqm/5E6kAH0rIA==} hasBin: true peerDependencies: - "@expo/metro-config": "*" - glob: "*" - metro: "*" - metro-core: "*" - minimatch: "*" + '@expo/metro-config': '*' + glob: '*' + metro: '*' + metro-core: '*' + minimatch: '*' peerDependenciesMeta: - "@expo/metro-config": + '@expo/metro-config': optional: true glob: optional: true @@ -11415,1522 +9807,874 @@ packages: minimatch: optional: true - "@expo/cli@0.18.30": - resolution: - { - integrity: sha512-V90TUJh9Ly8stYo8nwqIqNWCsYjE28GlVFWEhAFCUOp99foiQr8HSTpiiX5GIrprcPoWmlGoY+J5fQA29R4lFg==, - } + '@expo/cli@0.18.30': + resolution: {integrity: sha512-V90TUJh9Ly8stYo8nwqIqNWCsYjE28GlVFWEhAFCUOp99foiQr8HSTpiiX5GIrprcPoWmlGoY+J5fQA29R4lFg==} hasBin: true peerDependencies: - metro: "*" - metro-core: "*" + metro: '*' + metro-core: '*' peerDependenciesMeta: metro: optional: true metro-core: optional: true - "@expo/code-signing-certificates@0.0.5": - resolution: - { - integrity: sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==, - } - - "@expo/config-plugins@4.1.5": - resolution: - { - integrity: sha512-RVvU40RtZt12HavuDAe+LDIq9lHj7sheOfMEHdmpJ/uTA8pgvkbc56XF6JHQD+yRr6+uhhb+JnAasGq49dsQbw==, - } - - "@expo/config-plugins@7.2.5": - resolution: - { - integrity: sha512-w+5ccu1IxBHgyQk9CPFKLZOk8yZQEyTjbJwOzESK1eR7QwosbcsLkN1c1WWUZYiCXwORu3UTwJYll4+X2xxJhQ==, - } - - "@expo/config-plugins@7.3.1": - resolution: - { - integrity: sha512-TkDtAP3P/rrjhr7GBQtyYH/l1SQUGAO/gByBCwHjfRa4RIPFs+iiq7hocytAl+oSmVsB28ipZCC3O1IPg1OZ7g==, - } - - "@expo/config-plugins@7.8.4": - resolution: - { - integrity: sha512-hv03HYxb/5kX8Gxv/BTI8TLc9L06WzqAfHRRXdbar4zkLcP2oTzvsLEF4/L/TIpD3rsnYa0KU42d0gWRxzPCJg==, - } - - "@expo/config-plugins@8.0.10": - resolution: - { - integrity: sha512-KG1fnSKRmsudPU9BWkl59PyE0byrE2HTnqbOrgwr2FAhqh7tfr9nRs6A9oLS/ntpGzmFxccTEcsV0L4apsuxxg==, - } - - "@expo/config-plugins@8.0.4": - resolution: - { - integrity: sha512-Hi+xuyNWE2LT4LVbGttHJgl9brnsdWAhEB42gWKb5+8ae86Nr/KwUBQJsJppirBYTeLjj5ZlY0glYnAkDa2jqw==, - } - - "@expo/config-types@45.0.0": - resolution: - { - integrity: sha512-/QGhhLWyaGautgEyU50UJr5YqKJix5t77ePTwreOVAhmZH+ff3nrrtYTTnccx+qF08ZNQmfAyYMCD3rQfzpiJA==, - } - - "@expo/config-types@49.0.0": - resolution: - { - integrity: sha512-8eyREVi+K2acnMBe/rTIu1dOfyR2+AMnTLHlut+YpMV9OZPdeKV0Bs9BxAewGqBA2slslbQ9N39IS2CuTKpXkA==, - } - - "@expo/config-types@50.0.0": - resolution: - { - integrity: sha512-0kkhIwXRT6EdFDwn+zTg9R2MZIAEYGn1MVkyRohAd+C9cXOb5RA8WLQi7vuxKF9m1SMtNAUrf0pO+ENK0+/KSw==, - } - - "@expo/config-types@51.0.3": - resolution: - { - integrity: sha512-hMfuq++b8VySb+m9uNNrlpbvGxYc8OcFCUX9yTmi9tlx6A4k8SDabWFBgmnr4ao3wEArvWrtUQIfQCVtPRdpKA==, - } - - "@expo/config@8.1.2": - resolution: - { - integrity: sha512-4e7hzPj50mQIlsrzOH6XZ36O094mPfPTIDIH4yv49bWNMc7GFLTofB/lcT+QyxiLaJuC0Wlk9yOLB8DIqmtwug==, - } - - "@expo/config@8.2.1": - resolution: - { - integrity: sha512-15XjV0WrSb5hChRM5pAEK5uyh55njfgFOEZpov3YKYBeMd9D6QT/azWWqnaFuuCWKzgzyxD9HaYgGo5VbnOU1g==, - } - - "@expo/config@9.0.1": - resolution: - { - integrity: sha512-0tjaXBstTbXmD4z+UMFBkh2SZFwilizSQhW6DlaTMnPG5ezuw93zSFEWAuEC3YzkpVtNQTmYzxAYjxwh6seOGg==, - } - - "@expo/config@9.0.4": - resolution: - { - integrity: sha512-g5ns5u1JSKudHYhjo1zaSfkJ/iZIcWmUmIQptMJZ6ag1C0ShL2sj8qdfU8MmAMuKLOgcIfSaiWlQnm4X3VJVkg==, - } - - "@expo/dev-server@0.5.5": - resolution: - { - integrity: sha512-t0fT8xH1exwYsH5hh7bAt85VF+gXxg24qrbny2rR/iKoPTWFCd2JNQV8pvfLg51hvrywQ3YCBuT3lU1w7aZxFA==, - } - - "@expo/devcert@1.1.0": - resolution: - { - integrity: sha512-ghUVhNJQOCTdQckSGTHctNp/0jzvVoMMkVh+6SHn+TZj8sU15U/npXIDt8NtQp0HedlPaCgkVdMu8Sacne0aEA==, - } - - "@expo/env@0.0.5": - resolution: - { - integrity: sha512-UXuKAqyXfhMQC3gP0OyjXmFX08Z1fkVWiGBN7bYzfoX8LHatjeHrDtI6w5nDvd8XPxPvmqaZoEDw1lW3+dz3oQ==, - } - - "@expo/env@0.3.0": - resolution: - { - integrity: sha512-OtB9XVHWaXidLbHvrVDeeXa09yvTl3+IQN884sO6PhIi2/StXfgSH/9zC7IvzrDB8kW3EBJ1PPLuCUJ2hxAT7Q==, - } - - "@expo/fingerprint@0.6.0": - resolution: - { - integrity: sha512-KfpoVRTMwMNJ/Cf5o+Ou8M/Y0EGSTqK+rbi70M2Y0K2qgWNfMJ1gm6sYO9uc8lcTr7YSYM1Rme3dk7QXhpScNA==, - } + '@expo/code-signing-certificates@0.0.5': + resolution: {integrity: sha512-BNhXkY1bblxKZpltzAx98G2Egj9g1Q+JRcvR7E99DOj862FTCX+ZPsAUtPTr7aHxwtrL7+fL3r0JSmM9kBm+Bw==} + + '@expo/config-plugins@4.1.5': + resolution: {integrity: sha512-RVvU40RtZt12HavuDAe+LDIq9lHj7sheOfMEHdmpJ/uTA8pgvkbc56XF6JHQD+yRr6+uhhb+JnAasGq49dsQbw==} + + '@expo/config-plugins@7.2.5': + resolution: {integrity: sha512-w+5ccu1IxBHgyQk9CPFKLZOk8yZQEyTjbJwOzESK1eR7QwosbcsLkN1c1WWUZYiCXwORu3UTwJYll4+X2xxJhQ==} + + '@expo/config-plugins@7.3.1': + resolution: {integrity: sha512-TkDtAP3P/rrjhr7GBQtyYH/l1SQUGAO/gByBCwHjfRa4RIPFs+iiq7hocytAl+oSmVsB28ipZCC3O1IPg1OZ7g==} + + '@expo/config-plugins@7.8.4': + resolution: {integrity: sha512-hv03HYxb/5kX8Gxv/BTI8TLc9L06WzqAfHRRXdbar4zkLcP2oTzvsLEF4/L/TIpD3rsnYa0KU42d0gWRxzPCJg==} + + '@expo/config-plugins@8.0.10': + resolution: {integrity: sha512-KG1fnSKRmsudPU9BWkl59PyE0byrE2HTnqbOrgwr2FAhqh7tfr9nRs6A9oLS/ntpGzmFxccTEcsV0L4apsuxxg==} + + '@expo/config-plugins@8.0.4': + resolution: {integrity: sha512-Hi+xuyNWE2LT4LVbGttHJgl9brnsdWAhEB42gWKb5+8ae86Nr/KwUBQJsJppirBYTeLjj5ZlY0glYnAkDa2jqw==} + + '@expo/config-types@45.0.0': + resolution: {integrity: sha512-/QGhhLWyaGautgEyU50UJr5YqKJix5t77ePTwreOVAhmZH+ff3nrrtYTTnccx+qF08ZNQmfAyYMCD3rQfzpiJA==} + + '@expo/config-types@49.0.0': + resolution: {integrity: sha512-8eyREVi+K2acnMBe/rTIu1dOfyR2+AMnTLHlut+YpMV9OZPdeKV0Bs9BxAewGqBA2slslbQ9N39IS2CuTKpXkA==} + + '@expo/config-types@50.0.0': + resolution: {integrity: sha512-0kkhIwXRT6EdFDwn+zTg9R2MZIAEYGn1MVkyRohAd+C9cXOb5RA8WLQi7vuxKF9m1SMtNAUrf0pO+ENK0+/KSw==} + + '@expo/config-types@51.0.3': + resolution: {integrity: sha512-hMfuq++b8VySb+m9uNNrlpbvGxYc8OcFCUX9yTmi9tlx6A4k8SDabWFBgmnr4ao3wEArvWrtUQIfQCVtPRdpKA==} + + '@expo/config@8.1.2': + resolution: {integrity: sha512-4e7hzPj50mQIlsrzOH6XZ36O094mPfPTIDIH4yv49bWNMc7GFLTofB/lcT+QyxiLaJuC0Wlk9yOLB8DIqmtwug==} + + '@expo/config@8.2.1': + resolution: {integrity: sha512-15XjV0WrSb5hChRM5pAEK5uyh55njfgFOEZpov3YKYBeMd9D6QT/azWWqnaFuuCWKzgzyxD9HaYgGo5VbnOU1g==} + + '@expo/config@9.0.1': + resolution: {integrity: sha512-0tjaXBstTbXmD4z+UMFBkh2SZFwilizSQhW6DlaTMnPG5ezuw93zSFEWAuEC3YzkpVtNQTmYzxAYjxwh6seOGg==} + + '@expo/config@9.0.4': + resolution: {integrity: sha512-g5ns5u1JSKudHYhjo1zaSfkJ/iZIcWmUmIQptMJZ6ag1C0ShL2sj8qdfU8MmAMuKLOgcIfSaiWlQnm4X3VJVkg==} + + '@expo/dev-server@0.5.5': + resolution: {integrity: sha512-t0fT8xH1exwYsH5hh7bAt85VF+gXxg24qrbny2rR/iKoPTWFCd2JNQV8pvfLg51hvrywQ3YCBuT3lU1w7aZxFA==} + + '@expo/devcert@1.1.0': + resolution: {integrity: sha512-ghUVhNJQOCTdQckSGTHctNp/0jzvVoMMkVh+6SHn+TZj8sU15U/npXIDt8NtQp0HedlPaCgkVdMu8Sacne0aEA==} + + '@expo/env@0.0.5': + resolution: {integrity: sha512-UXuKAqyXfhMQC3gP0OyjXmFX08Z1fkVWiGBN7bYzfoX8LHatjeHrDtI6w5nDvd8XPxPvmqaZoEDw1lW3+dz3oQ==} + + '@expo/env@0.3.0': + resolution: {integrity: sha512-OtB9XVHWaXidLbHvrVDeeXa09yvTl3+IQN884sO6PhIi2/StXfgSH/9zC7IvzrDB8kW3EBJ1PPLuCUJ2hxAT7Q==} + + '@expo/fingerprint@0.6.0': + resolution: {integrity: sha512-KfpoVRTMwMNJ/Cf5o+Ou8M/Y0EGSTqK+rbi70M2Y0K2qgWNfMJ1gm6sYO9uc8lcTr7YSYM1Rme3dk7QXhpScNA==} hasBin: true - "@expo/image-utils@0.3.22": - resolution: - { - integrity: sha512-uzq+RERAtkWypOFOLssFnXXqEqKjNj9eXN7e97d/EXUAojNcLDoXc0sL+F5B1I4qtlsnhX01kcpoIBBZD8wZNQ==, - } - - "@expo/image-utils@0.3.23": - resolution: - { - integrity: sha512-nhUVvW0TrRE4jtWzHQl8TR4ox7kcmrc2I0itaeJGjxF5A54uk7avgA0wRt7jP1rdvqQo1Ke1lXyLYREdhN9tPw==, - } - - "@expo/image-utils@0.5.1": - resolution: - { - integrity: sha512-U/GsFfFox88lXULmFJ9Shfl2aQGcwoKPF7fawSCLixIKtMCpsI+1r0h+5i0nQnmt9tHuzXZDL8+Dg1z6OhkI9A==, - } - - "@expo/json-file@8.2.36": - resolution: - { - integrity: sha512-tOZfTiIFA5KmMpdW9KF7bc6CFiGjb0xnbieJhTGlHrLL+ps2G0OkqmuZ3pFEXBOMnJYUVpnSy++52LFxvpa5ZQ==, - } - - "@expo/json-file@8.2.37": - resolution: - { - integrity: sha512-YaH6rVg11JoTS2P6LsW7ybS2CULjf40AbnAHw2F1eDPuheprNjARZMnyHFPkKv7GuxCy+B9GPcbOKgc4cgA80Q==, - } - - "@expo/json-file@8.3.0": - resolution: - { - integrity: sha512-yROUeXJXR5goagB8c3muFLCzLmdGOvoPpR5yDNaXrnTp4euNykr9yW0wWhJx4YVRTNOPtGBnEbbJBW+a9q+S6g==, - } - - "@expo/metro-config@0.10.7": - resolution: - { - integrity: sha512-uACymEiyX0447hI4unt+2cemLQkTZXKvTev936NhtsgVnql45EP0V0pzmo/0H0WlHaAGXgvOBZJl8wFqcJ3CbQ==, - } - - "@expo/metro-config@0.18.11": - resolution: - { - integrity: sha512-/uOq55VbSf9yMbUO1BudkUM2SsGW1c5hr9BnhIqYqcsFv0Jp5D3DtJ4rljDKaUeNLbwr6m7pqIrkSMq5NrYf4Q==, - } - - "@expo/osascript@2.0.33": - resolution: - { - integrity: sha512-FQinlwHrTlJbntp8a7NAlCKedVXe06Va/0DSLXRO8lZVtgbEMrYYSUZWQNcOlNtc58c2elNph6z9dMOYwSo3JQ==, - } - engines: { node: ">=12" } - - "@expo/osascript@2.1.0": - resolution: - { - integrity: sha512-bOhuFnlRaS7CU33+rFFIWdcET/Vkyn1vsN8BYFwCDEF5P1fVVvYN7bFOsQLTMD3nvi35C1AGmtqUr/Wfv8Xaow==, - } - engines: { node: ">=12" } - - "@expo/package-manager@1.1.2": - resolution: - { - integrity: sha512-JI9XzrxB0QVXysyuJ996FPCJGDCYRkbUvgG4QmMTTMFA1T+mv8YzazC3T9C1pHQUAAveVCre1+Pqv0nZXN24Xg==, - } - - "@expo/package-manager@1.5.2": - resolution: - { - integrity: sha512-IuA9XtGBilce0q8cyxtWINqbzMB1Fia0Yrug/O53HNuRSwQguV/iqjV68bsa4z8mYerePhcFgtvISWLAlNEbUA==, - } - - "@expo/plist@0.0.18": - resolution: - { - integrity: sha512-+48gRqUiz65R21CZ/IXa7RNBXgAI/uPSdvJqoN9x1hfL44DNbUoWHgHiEXTx7XelcATpDwNTz6sHLfy0iNqf+w==, - } - - "@expo/plist@0.0.20": - resolution: - { - integrity: sha512-UXQ4LXCfTZ580LDHGJ5q62jSTwJFFJ1GqBu8duQMThiHKWbMJ+gajJh6rsB6EJ3aLUr9wcauxneL5LVRFxwBEA==, - } - - "@expo/plist@0.1.0": - resolution: - { - integrity: sha512-xWD+8vIFif0wKyuqe3fmnmnSouXYucciZXFzS0ZD5OV9eSAS1RGQI5FaGGJ6zxJ4mpdy/4QzbLdBjnYE5vxA0g==, - } - - "@expo/prebuild-config@6.2.6": - resolution: - { - integrity: sha512-uFVvDAm9dPg9p1qpnr4CVnpo2hmkZIL5FQz+VlIdXXJpe7ySh/qTGHtKWY/lWUshQkAJ0nwbKGPztGWdABns/Q==, - } - peerDependencies: - expo-modules-autolinking: ">=0.8.1" - - "@expo/prebuild-config@7.0.9": - resolution: - { - integrity: sha512-9i6Cg7jInpnGEHN0jxnW0P+0BexnePiBzmbUvzSbRXpdXihYUX2AKMu73jgzxn5P1hXOSkzNS7umaY+BZ+aBag==, - } - peerDependencies: - expo-modules-autolinking: ">=0.8.1" - - "@expo/rudder-sdk-node@1.1.1": - resolution: - { - integrity: sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==, - } - engines: { node: ">=12" } - - "@expo/sdk-runtime-versions@1.0.0": - resolution: - { - integrity: sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==, - } - - "@expo/spawn-async@1.5.0": - resolution: - { - integrity: sha512-LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew==, - } - engines: { node: ">=4" } - - "@expo/spawn-async@1.7.2": - resolution: - { - integrity: sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==, - } - engines: { node: ">=12" } - - "@expo/vector-icons@13.0.0": - resolution: - { - integrity: sha512-TI+l71+5aSKnShYclFa14Kum+hQMZ86b95SH6tQUG3qZEmLTarvWpKwqtTwQKqvlJSJrpFiSFu3eCuZokY6zWA==, - } - - "@expo/vector-icons@14.0.4": - resolution: - { - integrity: sha512-+yKshcbpDfbV4zoXOgHxCwh7lkE9VVTT5T03OUlBsqfze1PLy6Hi4jp1vSb1GVbY6eskvMIivGVc9SKzIv0oEQ==, - } - - "@expo/webpack-config@18.1.4": - resolution: - { - integrity: sha512-lc2ZvlsxI6vDH4RHA4xnYzDl4Dir5HTiFpw8WE28kE8+33pma/DIIycv5bE/BZx+czV5NqM4103E2TvgKkccKA==, - } - engines: { node: ">=12" } + '@expo/image-utils@0.3.22': + resolution: {integrity: sha512-uzq+RERAtkWypOFOLssFnXXqEqKjNj9eXN7e97d/EXUAojNcLDoXc0sL+F5B1I4qtlsnhX01kcpoIBBZD8wZNQ==} + + '@expo/image-utils@0.3.23': + resolution: {integrity: sha512-nhUVvW0TrRE4jtWzHQl8TR4ox7kcmrc2I0itaeJGjxF5A54uk7avgA0wRt7jP1rdvqQo1Ke1lXyLYREdhN9tPw==} + + '@expo/image-utils@0.5.1': + resolution: {integrity: sha512-U/GsFfFox88lXULmFJ9Shfl2aQGcwoKPF7fawSCLixIKtMCpsI+1r0h+5i0nQnmt9tHuzXZDL8+Dg1z6OhkI9A==} + + '@expo/json-file@8.2.36': + resolution: {integrity: sha512-tOZfTiIFA5KmMpdW9KF7bc6CFiGjb0xnbieJhTGlHrLL+ps2G0OkqmuZ3pFEXBOMnJYUVpnSy++52LFxvpa5ZQ==} + + '@expo/json-file@8.2.37': + resolution: {integrity: sha512-YaH6rVg11JoTS2P6LsW7ybS2CULjf40AbnAHw2F1eDPuheprNjARZMnyHFPkKv7GuxCy+B9GPcbOKgc4cgA80Q==} + + '@expo/json-file@8.3.0': + resolution: {integrity: sha512-yROUeXJXR5goagB8c3muFLCzLmdGOvoPpR5yDNaXrnTp4euNykr9yW0wWhJx4YVRTNOPtGBnEbbJBW+a9q+S6g==} + + '@expo/metro-config@0.10.7': + resolution: {integrity: sha512-uACymEiyX0447hI4unt+2cemLQkTZXKvTev936NhtsgVnql45EP0V0pzmo/0H0WlHaAGXgvOBZJl8wFqcJ3CbQ==} + + '@expo/metro-config@0.18.11': + resolution: {integrity: sha512-/uOq55VbSf9yMbUO1BudkUM2SsGW1c5hr9BnhIqYqcsFv0Jp5D3DtJ4rljDKaUeNLbwr6m7pqIrkSMq5NrYf4Q==} + + '@expo/osascript@2.0.33': + resolution: {integrity: sha512-FQinlwHrTlJbntp8a7NAlCKedVXe06Va/0DSLXRO8lZVtgbEMrYYSUZWQNcOlNtc58c2elNph6z9dMOYwSo3JQ==} + engines: {node: '>=12'} + + '@expo/osascript@2.1.0': + resolution: {integrity: sha512-bOhuFnlRaS7CU33+rFFIWdcET/Vkyn1vsN8BYFwCDEF5P1fVVvYN7bFOsQLTMD3nvi35C1AGmtqUr/Wfv8Xaow==} + engines: {node: '>=12'} + + '@expo/package-manager@1.1.2': + resolution: {integrity: sha512-JI9XzrxB0QVXysyuJ996FPCJGDCYRkbUvgG4QmMTTMFA1T+mv8YzazC3T9C1pHQUAAveVCre1+Pqv0nZXN24Xg==} + + '@expo/package-manager@1.5.2': + resolution: {integrity: sha512-IuA9XtGBilce0q8cyxtWINqbzMB1Fia0Yrug/O53HNuRSwQguV/iqjV68bsa4z8mYerePhcFgtvISWLAlNEbUA==} + + '@expo/plist@0.0.18': + resolution: {integrity: sha512-+48gRqUiz65R21CZ/IXa7RNBXgAI/uPSdvJqoN9x1hfL44DNbUoWHgHiEXTx7XelcATpDwNTz6sHLfy0iNqf+w==} + + '@expo/plist@0.0.20': + resolution: {integrity: sha512-UXQ4LXCfTZ580LDHGJ5q62jSTwJFFJ1GqBu8duQMThiHKWbMJ+gajJh6rsB6EJ3aLUr9wcauxneL5LVRFxwBEA==} + + '@expo/plist@0.1.0': + resolution: {integrity: sha512-xWD+8vIFif0wKyuqe3fmnmnSouXYucciZXFzS0ZD5OV9eSAS1RGQI5FaGGJ6zxJ4mpdy/4QzbLdBjnYE5vxA0g==} + + '@expo/prebuild-config@6.2.6': + resolution: {integrity: sha512-uFVvDAm9dPg9p1qpnr4CVnpo2hmkZIL5FQz+VlIdXXJpe7ySh/qTGHtKWY/lWUshQkAJ0nwbKGPztGWdABns/Q==} + peerDependencies: + expo-modules-autolinking: '>=0.8.1' + + '@expo/prebuild-config@7.0.9': + resolution: {integrity: sha512-9i6Cg7jInpnGEHN0jxnW0P+0BexnePiBzmbUvzSbRXpdXihYUX2AKMu73jgzxn5P1hXOSkzNS7umaY+BZ+aBag==} + peerDependencies: + expo-modules-autolinking: '>=0.8.1' + + '@expo/rudder-sdk-node@1.1.1': + resolution: {integrity: sha512-uy/hS/awclDJ1S88w9UGpc6Nm9XnNUjzOAAib1A3PVAnGQIwebg8DpFqOthFBTlZxeuV/BKbZ5jmTbtNZkp1WQ==} + engines: {node: '>=12'} + + '@expo/sdk-runtime-versions@1.0.0': + resolution: {integrity: sha512-Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ==} + + '@expo/spawn-async@1.5.0': + resolution: {integrity: sha512-LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew==} + engines: {node: '>=4'} + + '@expo/spawn-async@1.7.2': + resolution: {integrity: sha512-QdWi16+CHB9JYP7gma19OVVg0BFkvU8zNj9GjWorYI8Iv8FUxjOCcYRuAmX4s/h91e4e7BPsskc8cSrZYho9Ew==} + engines: {node: '>=12'} + + '@expo/vector-icons@13.0.0': + resolution: {integrity: sha512-TI+l71+5aSKnShYclFa14Kum+hQMZ86b95SH6tQUG3qZEmLTarvWpKwqtTwQKqvlJSJrpFiSFu3eCuZokY6zWA==} + + '@expo/vector-icons@14.0.4': + resolution: {integrity: sha512-+yKshcbpDfbV4zoXOgHxCwh7lkE9VVTT5T03OUlBsqfze1PLy6Hi4jp1vSb1GVbY6eskvMIivGVc9SKzIv0oEQ==} + + '@expo/webpack-config@18.1.4': + resolution: {integrity: sha512-lc2ZvlsxI6vDH4RHA4xnYzDl4Dir5HTiFpw8WE28kE8+33pma/DIIycv5bE/BZx+czV5NqM4103E2TvgKkccKA==} + engines: {node: '>=12'} peerDependencies: expo: ^48.0.17 - "@expo/xcpretty@4.3.1": - resolution: - { - integrity: sha512-sqXgo1SCv+j4VtYEwl/bukuOIBrVgx6euIoCat3Iyx5oeoXwEA2USCoeL0IPubflMxncA2INkqJ/Wr3NGrSgzw==, - } + '@expo/xcpretty@4.3.1': + resolution: {integrity: sha512-sqXgo1SCv+j4VtYEwl/bukuOIBrVgx6euIoCat3Iyx5oeoXwEA2USCoeL0IPubflMxncA2INkqJ/Wr3NGrSgzw==} hasBin: true - "@faker-js/faker@8.4.1": - resolution: - { - integrity: sha512-XQ3cU+Q8Uqmrbf2e0cIC/QN43sTBSC8KF12u29Mb47tWrt2hAgBXSgpZMj4Ao8Uk0iJcU99QsOCaIL8934obCg==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0, npm: ">=6.14.13" } - - "@fal-works/esbuild-plugin-global-externals@2.1.2": - resolution: - { - integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==, - } - - "@fastify/busboy@2.1.1": - resolution: - { - integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==, - } - engines: { node: ">=14" } - - "@firebase/analytics-compat@0.2.6": - resolution: - { - integrity: sha512-4MqpVLFkGK7NJf/5wPEEP7ePBJatwYpyjgJ+wQHQGHfzaCDgntOnl9rL2vbVGGKCnRqWtZDIWhctB86UWXaX2Q==, - } - peerDependencies: - "@firebase/app-compat": 0.x - - "@firebase/analytics-types@0.8.0": - resolution: - { - integrity: sha512-iRP+QKI2+oz3UAh4nPEq14CsEjrjD6a5+fuypjScisAh9kXKFvdJOZJDwk7kikLvWVLGEs9+kIUS4LPQV7VZVw==, - } - - "@firebase/analytics@0.10.0": - resolution: - { - integrity: sha512-Locv8gAqx0e+GX/0SI3dzmBY5e9kjVDtD+3zCFLJ0tH2hJwuCAiL+5WkHuxKj92rqQj/rvkBUCfA1ewlX2hehg==, - } - peerDependencies: - "@firebase/app": 0.x - - "@firebase/app-check-compat@0.3.7": - resolution: - { - integrity: sha512-cW682AxsyP1G+Z0/P7pO/WT2CzYlNxoNe5QejVarW2o5ZxeWSSPAiVEwpEpQR/bUlUmdeWThYTMvBWaopdBsqw==, - } - peerDependencies: - "@firebase/app-compat": 0.x - - "@firebase/app-check-interop-types@0.3.0": - resolution: - { - integrity: sha512-xAxHPZPIgFXnI+vb4sbBjZcde7ZluzPPaSK7Lx3/nmuVk4TjZvnL8ONnkd4ERQKL8WePQySU+pRcWkh8rDf5Sg==, - } - - "@firebase/app-check-types@0.5.0": - resolution: - { - integrity: sha512-uwSUj32Mlubybw7tedRzR24RP8M8JUVR3NPiMk3/Z4bCmgEKTlQBwMXrehDAZ2wF+TsBq0SN1c6ema71U/JPyQ==, - } - - "@firebase/app-check@0.8.0": - resolution: - { - integrity: sha512-dRDnhkcaC2FspMiRK/Vbp+PfsOAEP6ZElGm9iGFJ9fDqHoPs0HOPn7dwpJ51lCFi1+2/7n5pRPGhqF/F03I97g==, - } - peerDependencies: - "@firebase/app": 0.x - - "@firebase/app-compat@0.2.13": - resolution: - { - integrity: sha512-j6ANZaWjeVy5zg6X7uiqh6lM6o3n3LD1+/SJFNs9V781xyryyZWXe+tmnWNWPkP086QfJoNkWN9pMQRqSG4vMg==, - } - - "@firebase/app-types@0.9.0": - resolution: - { - integrity: sha512-AeweANOIo0Mb8GiYm3xhTEBVCmPwTYAu9Hcd2qSkLuga/6+j9b1Jskl5bpiSQWy9eJ/j5pavxj6eYogmnuzm+Q==, - } - - "@firebase/app@0.9.13": - resolution: - { - integrity: sha512-GfiI1JxJ7ecluEmDjPzseRXk/PX31hS7+tjgBopL7XjB2hLUdR+0FTMXy2Q3/hXezypDvU6or7gVFizDESrkXw==, - } - - "@firebase/auth-compat@0.4.2": - resolution: - { - integrity: sha512-Q30e77DWXFmXEt5dg5JbqEDpjw9y3/PcP9LslDPR7fARmAOTIY9MM6HXzm9KC+dlrKH/+p6l8g9ifJiam9mc4A==, - } - peerDependencies: - "@firebase/app-compat": 0.x - - "@firebase/auth-interop-types@0.2.1": - resolution: - { - integrity: sha512-VOaGzKp65MY6P5FI84TfYKBXEPi6LmOCSMMzys6o2BN2LOsqy7pCuZCup7NYnfbk5OkkQKzvIfHOzTm0UDpkyg==, - } - - "@firebase/auth-types@0.12.0": - resolution: - { - integrity: sha512-pPwaZt+SPOshK8xNoiQlK5XIrS97kFYc3Rc7xmy373QsOJ9MmqXxLaYssP5Kcds4wd2qK//amx/c+A8O2fVeZA==, - } - peerDependencies: - "@firebase/app-types": 0.x - "@firebase/util": 1.x - - "@firebase/auth@0.23.2": - resolution: - { - integrity: sha512-dM9iJ0R6tI1JczuGSxXmQbXAgtYie0K4WvKcuyuSTCu9V8eEDiz4tfa1sO3txsfvwg7nOY3AjoCyMYEdqZ8hdg==, - } - peerDependencies: - "@firebase/app": 0.x - - "@firebase/component@0.6.4": - resolution: - { - integrity: sha512-rLMyrXuO9jcAUCaQXCMjCMUsWrba5fzHlNK24xz5j2W6A/SRmK8mZJ/hn7V0fViLbxC0lPMtrK1eYzk6Fg03jA==, - } - - "@firebase/database-compat@0.3.4": - resolution: - { - integrity: sha512-kuAW+l+sLMUKBThnvxvUZ+Q1ZrF/vFJ58iUY9kAcbX48U03nVzIF6Tmkf0p3WVQwMqiXguSgtOPIB6ZCeF+5Gg==, - } - - "@firebase/database-types@0.10.4": - resolution: - { - integrity: sha512-dPySn0vJ/89ZeBac70T+2tWWPiJXWbmRygYv0smT5TfE3hDrQ09eKMF3Y+vMlTdrMWq7mUdYW5REWPSGH4kAZQ==, - } - - "@firebase/database@0.14.4": - resolution: - { - integrity: sha512-+Ea/IKGwh42jwdjCyzTmeZeLM3oy1h0mFPsTy6OqCWzcu/KFqRAr5Tt1HRCOBlNOdbh84JPZC47WLU18n2VbxQ==, - } - - "@firebase/firestore-compat@0.3.12": - resolution: - { - integrity: sha512-mazuNGAx5Kt9Nph0pm6ULJFp/+j7GSsx+Ncw1GrnKl+ft1CQ4q2LcUssXnjqkX2Ry0fNGqUzC1mfIUrk9bYtjQ==, - } - peerDependencies: - "@firebase/app-compat": 0.x - - "@firebase/firestore-types@2.5.1": - resolution: - { - integrity: sha512-xG0CA6EMfYo8YeUxC8FeDzf6W3FX1cLlcAGBYV6Cku12sZRI81oWcu61RSKM66K6kUENP+78Qm8mvroBcm1whw==, - } - peerDependencies: - "@firebase/app-types": 0.x - "@firebase/util": 1.x - - "@firebase/firestore@3.13.0": - resolution: - { - integrity: sha512-NwcnU+madJXQ4fbLkGx1bWvL612IJN/qO6bZ6dlPmyf7QRyu5azUosijdAN675r+bOOJxMtP1Bv981bHBXAbUg==, - } - engines: { node: ">=10.10.0" } - peerDependencies: - "@firebase/app": 0.x - - "@firebase/functions-compat@0.3.5": - resolution: - { - integrity: sha512-uD4jwgwVqdWf6uc3NRKF8cSZ0JwGqSlyhPgackyUPe+GAtnERpS4+Vr66g0b3Gge0ezG4iyHo/EXW/Hjx7QhHw==, - } - peerDependencies: - "@firebase/app-compat": 0.x - - "@firebase/functions-types@0.6.0": - resolution: - { - integrity: sha512-hfEw5VJtgWXIRf92ImLkgENqpL6IWpYaXVYiRkFY1jJ9+6tIhWM7IzzwbevwIIud/jaxKVdRzD7QBWfPmkwCYw==, - } - - "@firebase/functions@0.10.0": - resolution: - { - integrity: sha512-2U+fMNxTYhtwSpkkR6WbBcuNMOVaI7MaH3cZ6UAeNfj7AgEwHwMIFLPpC13YNZhno219F0lfxzTAA0N62ndWzA==, - } - peerDependencies: - "@firebase/app": 0.x - - "@firebase/installations-compat@0.2.4": - resolution: - { - integrity: sha512-LI9dYjp0aT9Njkn9U4JRrDqQ6KXeAmFbRC0E7jI7+hxl5YmRWysq5qgQl22hcWpTk+cm3es66d/apoDU/A9n6Q==, - } - peerDependencies: - "@firebase/app-compat": 0.x - - "@firebase/installations-types@0.5.0": - resolution: - { - integrity: sha512-9DP+RGfzoI2jH7gY4SlzqvZ+hr7gYzPODrbzVD82Y12kScZ6ZpRg/i3j6rleto8vTFC8n6Len4560FnV1w2IRg==, - } - peerDependencies: - "@firebase/app-types": 0.x - - "@firebase/installations@0.6.4": - resolution: - { - integrity: sha512-u5y88rtsp7NYkCHC3ElbFBrPtieUybZluXyzl7+4BsIz4sqb4vSAuwHEUgCgCeaQhvsnxDEU6icly8U9zsJigA==, - } - peerDependencies: - "@firebase/app": 0.x - - "@firebase/logger@0.4.0": - resolution: - { - integrity: sha512-eRKSeykumZ5+cJPdxxJRgAC3G5NknY2GwEbKfymdnXtnT0Ucm4pspfR6GT4MUQEDuJwRVbVcSx85kgJulMoFFA==, - } - - "@firebase/messaging-compat@0.2.4": - resolution: - { - integrity: sha512-lyFjeUhIsPRYDPNIkYX1LcZMpoVbBWXX4rPl7c/rqc7G+EUea7IEtSt4MxTvh6fDfPuzLn7+FZADfscC+tNMfg==, - } - peerDependencies: - "@firebase/app-compat": 0.x - - "@firebase/messaging-interop-types@0.2.0": - resolution: - { - integrity: sha512-ujA8dcRuVeBixGR9CtegfpU4YmZf3Lt7QYkcj693FFannwNuZgfAYaTmbJ40dtjB81SAu6tbFPL9YLNT15KmOQ==, - } - - "@firebase/messaging@0.12.4": - resolution: - { - integrity: sha512-6JLZct6zUaex4g7HI3QbzeUrg9xcnmDAPTWpkoMpd/GoSVWH98zDoWXMGrcvHeCAIsLpFMe4MPoZkJbrPhaASw==, - } - peerDependencies: - "@firebase/app": 0.x - - "@firebase/performance-compat@0.2.4": - resolution: - { - integrity: sha512-nnHUb8uP9G8islzcld/k6Bg5RhX62VpbAb/Anj7IXs/hp32Eb2LqFPZK4sy3pKkBUO5wcrlRWQa6wKOxqlUqsg==, - } - peerDependencies: - "@firebase/app-compat": 0.x - - "@firebase/performance-types@0.2.0": - resolution: - { - integrity: sha512-kYrbr8e/CYr1KLrLYZZt2noNnf+pRwDq2KK9Au9jHrBMnb0/C9X9yWSXmZkFt4UIdsQknBq8uBB7fsybZdOBTA==, - } - - "@firebase/performance@0.6.4": - resolution: - { - integrity: sha512-HfTn/bd8mfy/61vEqaBelNiNnvAbUtME2S25A67Nb34zVuCSCRIX4SseXY6zBnOFj3oLisaEqhVcJmVPAej67g==, - } - peerDependencies: - "@firebase/app": 0.x - - "@firebase/remote-config-compat@0.2.4": - resolution: - { - integrity: sha512-FKiki53jZirrDFkBHglB3C07j5wBpitAaj8kLME6g8Mx+aq7u9P7qfmuSRytiOItADhWUj7O1JIv7n9q87SuwA==, - } - peerDependencies: - "@firebase/app-compat": 0.x - - "@firebase/remote-config-types@0.3.0": - resolution: - { - integrity: sha512-RtEH4vdcbXZuZWRZbIRmQVBNsE7VDQpet2qFvq6vwKLBIQRQR5Kh58M4ok3A3US8Sr3rubYnaGqZSurCwI8uMA==, - } - - "@firebase/remote-config@0.4.4": - resolution: - { - integrity: sha512-x1ioTHGX8ZwDSTOVp8PBLv2/wfwKzb4pxi0gFezS5GCJwbLlloUH4YYZHHS83IPxnua8b6l0IXUaWd0RgbWwzQ==, - } - peerDependencies: - "@firebase/app": 0.x - - "@firebase/storage-compat@0.3.2": - resolution: - { - integrity: sha512-wvsXlLa9DVOMQJckbDNhXKKxRNNewyUhhbXev3t8kSgoCotd1v3MmqhKKz93ePhDnhHnDs7bYHy+Qa8dRY6BXw==, - } - peerDependencies: - "@firebase/app-compat": 0.x - - "@firebase/storage-types@0.8.0": - resolution: - { - integrity: sha512-isRHcGrTs9kITJC0AVehHfpraWFui39MPaU7Eo8QfWlqW7YPymBmRgjDrlOgFdURh6Cdeg07zmkLP5tzTKRSpg==, - } - peerDependencies: - "@firebase/app-types": 0.x - "@firebase/util": 1.x - - "@firebase/storage@0.11.2": - resolution: - { - integrity: sha512-CtvoFaBI4hGXlXbaCHf8humajkbXhs39Nbh6MbNxtwJiCqxPy9iH3D3CCfXAvP0QvAAwmJUTK3+z9a++Kc4nkA==, - } - peerDependencies: - "@firebase/app": 0.x - - "@firebase/util@1.9.3": - resolution: - { - integrity: sha512-DY02CRhOZwpzO36fHpuVysz6JZrscPiBXD0fXp6qSrL9oNOx5KWICKdR95C0lSITzxp0TZosVyHqzatE8JbcjA==, - } - - "@firebase/webchannel-wrapper@0.10.1": - resolution: - { - integrity: sha512-Dq5rYfEpdeel0bLVN+nfD1VWmzCkK+pJbSjIawGE+RY4+NIJqhbUDDQjvV0NUK84fMfwxvtFoCtEe70HfZjFcw==, - } - - "@flatten-js/interval-tree@1.1.3": - resolution: - { - integrity: sha512-xhFWUBoHJFF77cJO1D6REjdgJEMRf2Y2Z+eKEPav8evGKcLSnj1ud5pLXQSbGuxF3VSvT1rWhMfVpXEKJLTL+A==, - } - - "@floating-ui/core@0.3.1": - resolution: - { - integrity: sha512-ensKY7Ub59u16qsVIFEo2hwTCqZ/r9oZZFh51ivcLGHfUwTn8l1Xzng8RJUe91H/UP8PeqeBronAGx0qmzwk2g==, - } - - "@floating-ui/core@1.6.0": - resolution: - { - integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==, - } - - "@floating-ui/dom@0.1.10": - resolution: - { - integrity: sha512-4kAVoogvQm2N0XE0G6APQJuCNuErjOfPW8Ux7DFxh8+AfugWflwVJ5LDlHOwrwut7z/30NUvdtHzQ3zSip4EzQ==, - } - - "@floating-ui/dom@1.6.3": - resolution: - { - integrity: sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==, - } - - "@floating-ui/react-dom@0.4.3": - resolution: - { - integrity: sha512-ZL88ryd9p6sFh9jIC/+05JZoNsogcq6U09cygQjiy757QtQqxIVLQwFag+BAWWYqpNEMO0S60fkqmh8KIAV4oA==, - } - peerDependencies: - react: ">=16.8.0" - react-dom: ">=16.8.0" - - "@floating-ui/react-dom@2.0.8": - resolution: - { - integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==, - } - peerDependencies: - react: ">=16.8.0" - react-dom: ">=16.8.0" - - "@floating-ui/utils@0.2.1": - resolution: - { - integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==, - } - - "@formatjs/ecma402-abstract@1.18.2": - resolution: - { - integrity: sha512-+QoPW4csYALsQIl8GbN14igZzDbuwzcpWrku9nyMXlaqAlwRBgl5V+p0vWMGFqHOw37czNXaP/lEk4wbLgcmtA==, - } - - "@formatjs/intl-enumerator@1.4.5": - resolution: - { - integrity: sha512-IbEJHzJO0buoq//RqbLRDettIkZ/WYGOL+8dy5oxzefqlpTsmJFUo5t1sK0/1EoC+eOFiyhdgh5ihCH3Cehc0w==, - } - - "@formatjs/intl-getcanonicallocales@2.3.0": - resolution: - { - integrity: sha512-BOXbLwqQ7nKua/l7tKqDLRN84WupDXFDhGJQMFvsMVA2dKuOdRaWTxWpL3cJ7qPkoNw11Jf+Xpj4OSPBBvW0eQ==, - } - - "@formatjs/intl-locale@3.4.5": - resolution: - { - integrity: sha512-obUNTK0Py9sDSTlCXfNQotC7Oy5xd3iBx6dVtzd9YXProkP0NxcRrhlPmfHO9AuYNXdHuarHlozoBxZjOtM4mQ==, - } - - "@formatjs/intl-localematcher@0.5.4": - resolution: - { - integrity: sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==, - } - - "@formatjs/intl-pluralrules@5.2.12": - resolution: - { - integrity: sha512-V/namV1R/FPlsNMcO6U3saOoUqCp6DIPj4BONjj4yW78BU9gRytEJEdifOv+O1cU2Sb7AqOLOju6/qqIRRauLQ==, - } - - "@formatjs/intl-relativetimeformat@11.2.12": - resolution: - { - integrity: sha512-Pdj8DkkiuaInJUs0arW8EyluGaSDq2eHccIi4Oc2JIGEKbMmIj6NapqyjWZUjPOI3mRqV3thhEERC+lfKqJT0w==, - } - - "@gar/promisify@1.1.3": - resolution: - { - integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==, - } - - "@graphql-typed-document-node/core@3.2.0": - resolution: - { - integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==, - } + '@faker-js/faker@8.4.1': + resolution: {integrity: sha512-XQ3cU+Q8Uqmrbf2e0cIC/QN43sTBSC8KF12u29Mb47tWrt2hAgBXSgpZMj4Ao8Uk0iJcU99QsOCaIL8934obCg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0, npm: '>=6.14.13'} + + '@fal-works/esbuild-plugin-global-externals@2.1.2': + resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} + + '@fastify/busboy@2.1.1': + resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==} + engines: {node: '>=14'} + + '@firebase/analytics-compat@0.2.6': + resolution: {integrity: sha512-4MqpVLFkGK7NJf/5wPEEP7ePBJatwYpyjgJ+wQHQGHfzaCDgntOnl9rL2vbVGGKCnRqWtZDIWhctB86UWXaX2Q==} + peerDependencies: + '@firebase/app-compat': 0.x + + '@firebase/analytics-types@0.8.0': + resolution: {integrity: sha512-iRP+QKI2+oz3UAh4nPEq14CsEjrjD6a5+fuypjScisAh9kXKFvdJOZJDwk7kikLvWVLGEs9+kIUS4LPQV7VZVw==} + + '@firebase/analytics@0.10.0': + resolution: {integrity: sha512-Locv8gAqx0e+GX/0SI3dzmBY5e9kjVDtD+3zCFLJ0tH2hJwuCAiL+5WkHuxKj92rqQj/rvkBUCfA1ewlX2hehg==} + peerDependencies: + '@firebase/app': 0.x + + '@firebase/app-check-compat@0.3.7': + resolution: {integrity: sha512-cW682AxsyP1G+Z0/P7pO/WT2CzYlNxoNe5QejVarW2o5ZxeWSSPAiVEwpEpQR/bUlUmdeWThYTMvBWaopdBsqw==} + peerDependencies: + '@firebase/app-compat': 0.x + + '@firebase/app-check-interop-types@0.3.0': + resolution: {integrity: sha512-xAxHPZPIgFXnI+vb4sbBjZcde7ZluzPPaSK7Lx3/nmuVk4TjZvnL8ONnkd4ERQKL8WePQySU+pRcWkh8rDf5Sg==} + + '@firebase/app-check-types@0.5.0': + resolution: {integrity: sha512-uwSUj32Mlubybw7tedRzR24RP8M8JUVR3NPiMk3/Z4bCmgEKTlQBwMXrehDAZ2wF+TsBq0SN1c6ema71U/JPyQ==} + + '@firebase/app-check@0.8.0': + resolution: {integrity: sha512-dRDnhkcaC2FspMiRK/Vbp+PfsOAEP6ZElGm9iGFJ9fDqHoPs0HOPn7dwpJ51lCFi1+2/7n5pRPGhqF/F03I97g==} + peerDependencies: + '@firebase/app': 0.x + + '@firebase/app-compat@0.2.13': + resolution: {integrity: sha512-j6ANZaWjeVy5zg6X7uiqh6lM6o3n3LD1+/SJFNs9V781xyryyZWXe+tmnWNWPkP086QfJoNkWN9pMQRqSG4vMg==} + + '@firebase/app-types@0.9.0': + resolution: {integrity: sha512-AeweANOIo0Mb8GiYm3xhTEBVCmPwTYAu9Hcd2qSkLuga/6+j9b1Jskl5bpiSQWy9eJ/j5pavxj6eYogmnuzm+Q==} + + '@firebase/app@0.9.13': + resolution: {integrity: sha512-GfiI1JxJ7ecluEmDjPzseRXk/PX31hS7+tjgBopL7XjB2hLUdR+0FTMXy2Q3/hXezypDvU6or7gVFizDESrkXw==} + + '@firebase/auth-compat@0.4.2': + resolution: {integrity: sha512-Q30e77DWXFmXEt5dg5JbqEDpjw9y3/PcP9LslDPR7fARmAOTIY9MM6HXzm9KC+dlrKH/+p6l8g9ifJiam9mc4A==} + peerDependencies: + '@firebase/app-compat': 0.x + + '@firebase/auth-interop-types@0.2.1': + resolution: {integrity: sha512-VOaGzKp65MY6P5FI84TfYKBXEPi6LmOCSMMzys6o2BN2LOsqy7pCuZCup7NYnfbk5OkkQKzvIfHOzTm0UDpkyg==} + + '@firebase/auth-types@0.12.0': + resolution: {integrity: sha512-pPwaZt+SPOshK8xNoiQlK5XIrS97kFYc3Rc7xmy373QsOJ9MmqXxLaYssP5Kcds4wd2qK//amx/c+A8O2fVeZA==} + peerDependencies: + '@firebase/app-types': 0.x + '@firebase/util': 1.x + + '@firebase/auth@0.23.2': + resolution: {integrity: sha512-dM9iJ0R6tI1JczuGSxXmQbXAgtYie0K4WvKcuyuSTCu9V8eEDiz4tfa1sO3txsfvwg7nOY3AjoCyMYEdqZ8hdg==} + peerDependencies: + '@firebase/app': 0.x + + '@firebase/component@0.6.4': + resolution: {integrity: sha512-rLMyrXuO9jcAUCaQXCMjCMUsWrba5fzHlNK24xz5j2W6A/SRmK8mZJ/hn7V0fViLbxC0lPMtrK1eYzk6Fg03jA==} + + '@firebase/database-compat@0.3.4': + resolution: {integrity: sha512-kuAW+l+sLMUKBThnvxvUZ+Q1ZrF/vFJ58iUY9kAcbX48U03nVzIF6Tmkf0p3WVQwMqiXguSgtOPIB6ZCeF+5Gg==} + + '@firebase/database-types@0.10.4': + resolution: {integrity: sha512-dPySn0vJ/89ZeBac70T+2tWWPiJXWbmRygYv0smT5TfE3hDrQ09eKMF3Y+vMlTdrMWq7mUdYW5REWPSGH4kAZQ==} + + '@firebase/database@0.14.4': + resolution: {integrity: sha512-+Ea/IKGwh42jwdjCyzTmeZeLM3oy1h0mFPsTy6OqCWzcu/KFqRAr5Tt1HRCOBlNOdbh84JPZC47WLU18n2VbxQ==} + + '@firebase/firestore-compat@0.3.12': + resolution: {integrity: sha512-mazuNGAx5Kt9Nph0pm6ULJFp/+j7GSsx+Ncw1GrnKl+ft1CQ4q2LcUssXnjqkX2Ry0fNGqUzC1mfIUrk9bYtjQ==} + peerDependencies: + '@firebase/app-compat': 0.x + + '@firebase/firestore-types@2.5.1': + resolution: {integrity: sha512-xG0CA6EMfYo8YeUxC8FeDzf6W3FX1cLlcAGBYV6Cku12sZRI81oWcu61RSKM66K6kUENP+78Qm8mvroBcm1whw==} + peerDependencies: + '@firebase/app-types': 0.x + '@firebase/util': 1.x + + '@firebase/firestore@3.13.0': + resolution: {integrity: sha512-NwcnU+madJXQ4fbLkGx1bWvL612IJN/qO6bZ6dlPmyf7QRyu5azUosijdAN675r+bOOJxMtP1Bv981bHBXAbUg==} + engines: {node: '>=10.10.0'} + peerDependencies: + '@firebase/app': 0.x + + '@firebase/functions-compat@0.3.5': + resolution: {integrity: sha512-uD4jwgwVqdWf6uc3NRKF8cSZ0JwGqSlyhPgackyUPe+GAtnERpS4+Vr66g0b3Gge0ezG4iyHo/EXW/Hjx7QhHw==} + peerDependencies: + '@firebase/app-compat': 0.x + + '@firebase/functions-types@0.6.0': + resolution: {integrity: sha512-hfEw5VJtgWXIRf92ImLkgENqpL6IWpYaXVYiRkFY1jJ9+6tIhWM7IzzwbevwIIud/jaxKVdRzD7QBWfPmkwCYw==} + + '@firebase/functions@0.10.0': + resolution: {integrity: sha512-2U+fMNxTYhtwSpkkR6WbBcuNMOVaI7MaH3cZ6UAeNfj7AgEwHwMIFLPpC13YNZhno219F0lfxzTAA0N62ndWzA==} + peerDependencies: + '@firebase/app': 0.x + + '@firebase/installations-compat@0.2.4': + resolution: {integrity: sha512-LI9dYjp0aT9Njkn9U4JRrDqQ6KXeAmFbRC0E7jI7+hxl5YmRWysq5qgQl22hcWpTk+cm3es66d/apoDU/A9n6Q==} + peerDependencies: + '@firebase/app-compat': 0.x + + '@firebase/installations-types@0.5.0': + resolution: {integrity: sha512-9DP+RGfzoI2jH7gY4SlzqvZ+hr7gYzPODrbzVD82Y12kScZ6ZpRg/i3j6rleto8vTFC8n6Len4560FnV1w2IRg==} + peerDependencies: + '@firebase/app-types': 0.x + + '@firebase/installations@0.6.4': + resolution: {integrity: sha512-u5y88rtsp7NYkCHC3ElbFBrPtieUybZluXyzl7+4BsIz4sqb4vSAuwHEUgCgCeaQhvsnxDEU6icly8U9zsJigA==} + peerDependencies: + '@firebase/app': 0.x + + '@firebase/logger@0.4.0': + resolution: {integrity: sha512-eRKSeykumZ5+cJPdxxJRgAC3G5NknY2GwEbKfymdnXtnT0Ucm4pspfR6GT4MUQEDuJwRVbVcSx85kgJulMoFFA==} + + '@firebase/messaging-compat@0.2.4': + resolution: {integrity: sha512-lyFjeUhIsPRYDPNIkYX1LcZMpoVbBWXX4rPl7c/rqc7G+EUea7IEtSt4MxTvh6fDfPuzLn7+FZADfscC+tNMfg==} + peerDependencies: + '@firebase/app-compat': 0.x + + '@firebase/messaging-interop-types@0.2.0': + resolution: {integrity: sha512-ujA8dcRuVeBixGR9CtegfpU4YmZf3Lt7QYkcj693FFannwNuZgfAYaTmbJ40dtjB81SAu6tbFPL9YLNT15KmOQ==} + + '@firebase/messaging@0.12.4': + resolution: {integrity: sha512-6JLZct6zUaex4g7HI3QbzeUrg9xcnmDAPTWpkoMpd/GoSVWH98zDoWXMGrcvHeCAIsLpFMe4MPoZkJbrPhaASw==} + peerDependencies: + '@firebase/app': 0.x + + '@firebase/performance-compat@0.2.4': + resolution: {integrity: sha512-nnHUb8uP9G8islzcld/k6Bg5RhX62VpbAb/Anj7IXs/hp32Eb2LqFPZK4sy3pKkBUO5wcrlRWQa6wKOxqlUqsg==} + peerDependencies: + '@firebase/app-compat': 0.x + + '@firebase/performance-types@0.2.0': + resolution: {integrity: sha512-kYrbr8e/CYr1KLrLYZZt2noNnf+pRwDq2KK9Au9jHrBMnb0/C9X9yWSXmZkFt4UIdsQknBq8uBB7fsybZdOBTA==} + + '@firebase/performance@0.6.4': + resolution: {integrity: sha512-HfTn/bd8mfy/61vEqaBelNiNnvAbUtME2S25A67Nb34zVuCSCRIX4SseXY6zBnOFj3oLisaEqhVcJmVPAej67g==} + peerDependencies: + '@firebase/app': 0.x + + '@firebase/remote-config-compat@0.2.4': + resolution: {integrity: sha512-FKiki53jZirrDFkBHglB3C07j5wBpitAaj8kLME6g8Mx+aq7u9P7qfmuSRytiOItADhWUj7O1JIv7n9q87SuwA==} + peerDependencies: + '@firebase/app-compat': 0.x + + '@firebase/remote-config-types@0.3.0': + resolution: {integrity: sha512-RtEH4vdcbXZuZWRZbIRmQVBNsE7VDQpet2qFvq6vwKLBIQRQR5Kh58M4ok3A3US8Sr3rubYnaGqZSurCwI8uMA==} + + '@firebase/remote-config@0.4.4': + resolution: {integrity: sha512-x1ioTHGX8ZwDSTOVp8PBLv2/wfwKzb4pxi0gFezS5GCJwbLlloUH4YYZHHS83IPxnua8b6l0IXUaWd0RgbWwzQ==} + peerDependencies: + '@firebase/app': 0.x + + '@firebase/storage-compat@0.3.2': + resolution: {integrity: sha512-wvsXlLa9DVOMQJckbDNhXKKxRNNewyUhhbXev3t8kSgoCotd1v3MmqhKKz93ePhDnhHnDs7bYHy+Qa8dRY6BXw==} + peerDependencies: + '@firebase/app-compat': 0.x + + '@firebase/storage-types@0.8.0': + resolution: {integrity: sha512-isRHcGrTs9kITJC0AVehHfpraWFui39MPaU7Eo8QfWlqW7YPymBmRgjDrlOgFdURh6Cdeg07zmkLP5tzTKRSpg==} + peerDependencies: + '@firebase/app-types': 0.x + '@firebase/util': 1.x + + '@firebase/storage@0.11.2': + resolution: {integrity: sha512-CtvoFaBI4hGXlXbaCHf8humajkbXhs39Nbh6MbNxtwJiCqxPy9iH3D3CCfXAvP0QvAAwmJUTK3+z9a++Kc4nkA==} + peerDependencies: + '@firebase/app': 0.x + + '@firebase/util@1.9.3': + resolution: {integrity: sha512-DY02CRhOZwpzO36fHpuVysz6JZrscPiBXD0fXp6qSrL9oNOx5KWICKdR95C0lSITzxp0TZosVyHqzatE8JbcjA==} + + '@firebase/webchannel-wrapper@0.10.1': + resolution: {integrity: sha512-Dq5rYfEpdeel0bLVN+nfD1VWmzCkK+pJbSjIawGE+RY4+NIJqhbUDDQjvV0NUK84fMfwxvtFoCtEe70HfZjFcw==} + + '@flatten-js/interval-tree@1.1.3': + resolution: {integrity: sha512-xhFWUBoHJFF77cJO1D6REjdgJEMRf2Y2Z+eKEPav8evGKcLSnj1ud5pLXQSbGuxF3VSvT1rWhMfVpXEKJLTL+A==} + + '@floating-ui/core@0.3.1': + resolution: {integrity: sha512-ensKY7Ub59u16qsVIFEo2hwTCqZ/r9oZZFh51ivcLGHfUwTn8l1Xzng8RJUe91H/UP8PeqeBronAGx0qmzwk2g==} + + '@floating-ui/core@1.6.0': + resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==} + + '@floating-ui/dom@0.1.10': + resolution: {integrity: sha512-4kAVoogvQm2N0XE0G6APQJuCNuErjOfPW8Ux7DFxh8+AfugWflwVJ5LDlHOwrwut7z/30NUvdtHzQ3zSip4EzQ==} + + '@floating-ui/dom@1.6.3': + resolution: {integrity: sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==} + + '@floating-ui/react-dom@0.4.3': + resolution: {integrity: sha512-ZL88ryd9p6sFh9jIC/+05JZoNsogcq6U09cygQjiy757QtQqxIVLQwFag+BAWWYqpNEMO0S60fkqmh8KIAV4oA==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + + '@floating-ui/react-dom@2.0.8': + resolution: {integrity: sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==} + peerDependencies: + react: '>=16.8.0' + react-dom: '>=16.8.0' + + '@floating-ui/utils@0.2.1': + resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==} + + '@formatjs/ecma402-abstract@1.18.2': + resolution: {integrity: sha512-+QoPW4csYALsQIl8GbN14igZzDbuwzcpWrku9nyMXlaqAlwRBgl5V+p0vWMGFqHOw37czNXaP/lEk4wbLgcmtA==} + + '@formatjs/intl-enumerator@1.4.5': + resolution: {integrity: sha512-IbEJHzJO0buoq//RqbLRDettIkZ/WYGOL+8dy5oxzefqlpTsmJFUo5t1sK0/1EoC+eOFiyhdgh5ihCH3Cehc0w==} + + '@formatjs/intl-getcanonicallocales@2.3.0': + resolution: {integrity: sha512-BOXbLwqQ7nKua/l7tKqDLRN84WupDXFDhGJQMFvsMVA2dKuOdRaWTxWpL3cJ7qPkoNw11Jf+Xpj4OSPBBvW0eQ==} + + '@formatjs/intl-locale@3.4.5': + resolution: {integrity: sha512-obUNTK0Py9sDSTlCXfNQotC7Oy5xd3iBx6dVtzd9YXProkP0NxcRrhlPmfHO9AuYNXdHuarHlozoBxZjOtM4mQ==} + + '@formatjs/intl-localematcher@0.5.4': + resolution: {integrity: sha512-zTwEpWOzZ2CiKcB93BLngUX59hQkuZjT2+SAQEscSm52peDW/getsawMcWF1rGRpMCX6D7nSJA3CzJ8gn13N/g==} + + '@formatjs/intl-pluralrules@5.2.12': + resolution: {integrity: sha512-V/namV1R/FPlsNMcO6U3saOoUqCp6DIPj4BONjj4yW78BU9gRytEJEdifOv+O1cU2Sb7AqOLOju6/qqIRRauLQ==} + + '@formatjs/intl-relativetimeformat@11.2.12': + resolution: {integrity: sha512-Pdj8DkkiuaInJUs0arW8EyluGaSDq2eHccIi4Oc2JIGEKbMmIj6NapqyjWZUjPOI3mRqV3thhEERC+lfKqJT0w==} + + '@gar/promisify@1.1.3': + resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} + + '@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 - "@grpc/grpc-js@1.6.7": - resolution: - { - integrity: sha512-eBM03pu9hd3VqDQG+kHahiG1x80RGkkqqRb1Pchcwqej/KkAH95gAvKs6laqaHCycYaPK+TKuNQnOz9UXYA8qw==, - } - engines: { node: ^8.13.0 || >=10.10.0 } - - "@grpc/grpc-js@1.7.3": - resolution: - { - integrity: sha512-H9l79u4kJ2PVSxUNA08HMYAnUBLj9v6KjYQ7SQ71hOZcEXhShE/y5iQCesP8+6/Ik/7i2O0a10bPquIcYfufog==, - } - engines: { node: ^8.13.0 || >=10.10.0 } - - "@grpc/proto-loader@0.6.13": - resolution: - { - integrity: sha512-FjxPYDRTn6Ec3V0arm1FtSpmP6V50wuph2yILpyvTKzjc76oDdoihXqM1DzOW5ubvCC8GivfCnNtfaRE8myJ7g==, - } - engines: { node: ">=6" } + '@grpc/grpc-js@1.6.7': + resolution: {integrity: sha512-eBM03pu9hd3VqDQG+kHahiG1x80RGkkqqRb1Pchcwqej/KkAH95gAvKs6laqaHCycYaPK+TKuNQnOz9UXYA8qw==} + engines: {node: ^8.13.0 || >=10.10.0} + + '@grpc/grpc-js@1.7.3': + resolution: {integrity: sha512-H9l79u4kJ2PVSxUNA08HMYAnUBLj9v6KjYQ7SQ71hOZcEXhShE/y5iQCesP8+6/Ik/7i2O0a10bPquIcYfufog==} + engines: {node: ^8.13.0 || >=10.10.0} + + '@grpc/proto-loader@0.6.13': + resolution: {integrity: sha512-FjxPYDRTn6Ec3V0arm1FtSpmP6V50wuph2yILpyvTKzjc76oDdoihXqM1DzOW5ubvCC8GivfCnNtfaRE8myJ7g==} + engines: {node: '>=6'} hasBin: true - "@grpc/proto-loader@0.7.12": - resolution: - { - integrity: sha512-DCVwMxqYzpUCiDMl7hQ384FqP4T3DbNpXU8pt681l3UWCip1WUiD5JrkImUwCB9a7f2cq4CUTmi5r/xIMRPY1Q==, - } - engines: { node: ">=6" } + '@grpc/proto-loader@0.7.12': + resolution: {integrity: sha512-DCVwMxqYzpUCiDMl7hQ384FqP4T3DbNpXU8pt681l3UWCip1WUiD5JrkImUwCB9a7f2cq4CUTmi5r/xIMRPY1Q==} + engines: {node: '>=6'} hasBin: true - "@hapi/bourne@2.1.0": - resolution: - { - integrity: sha512-i1BpaNDVLJdRBEKeJWkVO6tYX6DMFBuwMhSuWqLsY4ufeTKGVuV5rBsUhxPayXqnnWHgXUAmWK16H/ykO5Wj4Q==, - } - - "@hapi/hoek@9.3.0": - resolution: - { - integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==, - } - - "@hapi/topo@5.1.0": - resolution: - { - integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==, - } - - "@hashgraph/cryptography@1.1.2": - resolution: - { - integrity: sha512-oSnDDs5foNq6Yni4kCwbA01NuVY2mewVr1jhkJG7yNDT6+xIBCztRWDeINb1JuShXe57Cuf88M1zmN5iFN7JgA==, - } - engines: { node: ">=12.0.0" } + '@hapi/bourne@2.1.0': + resolution: {integrity: sha512-i1BpaNDVLJdRBEKeJWkVO6tYX6DMFBuwMhSuWqLsY4ufeTKGVuV5rBsUhxPayXqnnWHgXUAmWK16H/ykO5Wj4Q==} + + '@hapi/hoek@9.3.0': + resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} + + '@hapi/topo@5.1.0': + resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + + '@hashgraph/cryptography@1.1.2': + resolution: {integrity: sha512-oSnDDs5foNq6Yni4kCwbA01NuVY2mewVr1jhkJG7yNDT6+xIBCztRWDeINb1JuShXe57Cuf88M1zmN5iFN7JgA==} + engines: {node: '>=12.0.0'} peerDependencies: expo: ^44.0.5 - "@hashgraph/proto@2.4.1": - resolution: - { - integrity: sha512-tVuflDwQDbYzlXJWFGayF+cHzRV8zaBI5XdaZbkF45THyoSw2QcSSopGLr1sdCj2M2LQfxX4WDKGb2uqbOjxZA==, - } - engines: { node: ">=10.0.0" } + '@hashgraph/proto@2.4.1': + resolution: {integrity: sha512-tVuflDwQDbYzlXJWFGayF+cHzRV8zaBI5XdaZbkF45THyoSw2QcSSopGLr1sdCj2M2LQfxX4WDKGb2uqbOjxZA==} + engines: {node: '>=10.0.0'} - "@hashgraph/sdk@2.14.2": - resolution: - { - integrity: sha512-58CGz+NZvuI7VxpmvFXo7IJc60kWRGIdQeYy1b5Y2j3aO5nwElX8IJGpscB+ZiFepwkHC6gvW3dX9tRV2lWGaQ==, - } - engines: { node: ">=10.17.0" } + '@hashgraph/sdk@2.14.2': + resolution: {integrity: sha512-58CGz+NZvuI7VxpmvFXo7IJc60kWRGIdQeYy1b5Y2j3aO5nwElX8IJGpscB+ZiFepwkHC6gvW3dX9tRV2lWGaQ==} + engines: {node: '>=10.17.0'} peerDependencies: expo: ^45.0.3 - "@headlessui/react@1.7.18": - resolution: - { - integrity: sha512-4i5DOrzwN4qSgNsL4Si61VMkUcWbcSKueUV7sFhpHzQcSShdlHENE5+QBntMSRvHt8NyoFO2AGG8si9lq+w4zQ==, - } - engines: { node: ">=10" } + '@headlessui/react@1.7.18': + resolution: {integrity: sha512-4i5DOrzwN4qSgNsL4Si61VMkUcWbcSKueUV7sFhpHzQcSShdlHENE5+QBntMSRvHt8NyoFO2AGG8si9lq+w4zQ==} + engines: {node: '>=10'} peerDependencies: react: ^16 || ^17 || ^18 react-dom: ^16 || ^17 || ^18 - "@helium/address@4.11.1": - resolution: - { - integrity: sha512-QMrdBx5l5XIy0K9fL3R64Whuk556BLz/pa6yhOQtog1hb3C904m1ykAU8eg2hgiA265Yp98XZkIK3GKTHbH+0A==, - } - - "@helium/proto@1.6.0": - resolution: - { - integrity: sha512-aoVjhYDcic5g+n/iwKGXmGgMruPXTffpyr2ziGjuhAvU0phPSv6gnTbyHKY7FqBCUOYX4jHzEKJgX7M27UOGGg==, - } - - "@helium/transactions@4.11.1": - resolution: - { - integrity: sha512-uL6OKo5o8AKn7oOuuW6/T7MSwPikbYU2HsSDu2O7ZhnGiyzKcKXQMkIHSBuFKz9KT+DKVpVSwjeLXr4a6/D/eQ==, - } - - "@humanwhocodes/config-array@0.11.14": - resolution: - { - integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==, - } - engines: { node: ">=10.10.0" } + '@helium/address@4.11.1': + resolution: {integrity: sha512-QMrdBx5l5XIy0K9fL3R64Whuk556BLz/pa6yhOQtog1hb3C904m1ykAU8eg2hgiA265Yp98XZkIK3GKTHbH+0A==} + + '@helium/proto@1.6.0': + resolution: {integrity: sha512-aoVjhYDcic5g+n/iwKGXmGgMruPXTffpyr2ziGjuhAvU0phPSv6gnTbyHKY7FqBCUOYX4jHzEKJgX7M27UOGGg==} + + '@helium/transactions@4.11.1': + resolution: {integrity: sha512-uL6OKo5o8AKn7oOuuW6/T7MSwPikbYU2HsSDu2O7ZhnGiyzKcKXQMkIHSBuFKz9KT+DKVpVSwjeLXr4a6/D/eQ==} + + '@humanwhocodes/config-array@0.11.14': + resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} + engines: {node: '>=10.10.0'} deprecated: Use @eslint/config-array instead - "@humanwhocodes/module-importer@1.0.1": - resolution: - { - integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==, - } - engines: { node: ">=12.22" } - - "@humanwhocodes/object-schema@2.0.2": - resolution: - { - integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==, - } + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/object-schema@2.0.2': + resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==} deprecated: Use @eslint/object-schema instead - "@inquirer/confirm@3.1.7": - resolution: - { - integrity: sha512-BZjjj19W8gnh5UGFTdP5ZxpgMNRjy03Dzq3k28sB2MDlEUFrcyTkMEoGgvBmGpUw0vNBoCJkTcbHZ3e9tb+d+w==, - } - engines: { node: ">=18" } - - "@inquirer/core@8.2.0": - resolution: - { - integrity: sha512-pexNF9j2orvMMTgoQ/uKOw8V6/R7x/sIDwRwXRhl4i0pPSh6paRzFehpFKpfMbqix1/+gzCekhYTmVbQpWkVjQ==, - } - engines: { node: ">=18" } - - "@inquirer/figures@1.0.1": - resolution: - { - integrity: sha512-mtup3wVKia3ZwULPHcbs4Mor8Voi+iIXEWD7wCNbIO6lYR62oPCTQyrddi5OMYVXHzeCSoneZwJuS8sBvlEwDw==, - } - engines: { node: ">=18" } - - "@inquirer/type@1.3.1": - resolution: - { - integrity: sha512-Pe3PFccjPVJV1vtlfVvm9OnlbxqdnP5QcscFEFEnK5quChf1ufZtM0r8mR5ToWHMxZOh0s8o/qp9ANGRTo/DAw==, - } - engines: { node: ">=18" } - - "@ioredis/commands@1.2.0": - resolution: - { - integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==, - } - - "@iov/crypto@2.1.0": - resolution: - { - integrity: sha512-jnb4XuK50admolm7fBxOcxfAW2TO+wYrZlhDWiMETItY/Y5gNNa1zaDSO2wNIjjfGng+8nQ1yqnNhqy7busV2Q==, - } - - "@iov/encoding@2.1.0": - resolution: - { - integrity: sha512-5IOdLO7Xg/uRykuiCqeMYghQ3IjWDtGxv7NTWXkgpHuna0aewx43mRpT2NPCpOZd1tpuorDtQ7/zbDNRaIIF/w==, - } - - "@iov/utils@2.0.2": - resolution: - { - integrity: sha512-4D8MEvTcFc/DVy5q25vHxRItmgJyeX85dixMH+MxdKr+yy71h3sYk+sVBEIn70uqGP7VqAJkGOPNFs08/XYELw==, - } - - "@ipld/dag-cbor@9.2.1": - resolution: - { - integrity: sha512-nyY48yE7r3dnJVlxrdaimrbloh4RokQaNRdI//btfTkcTEZbpmSrbYcBQ4VKTf8ZxXAOUJy4VsRpkJo+y9RTnA==, - } - engines: { node: ">=16.0.0", npm: ">=7.0.0" } - - "@isaacs/cliui@8.0.2": - resolution: - { - integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==, - } - engines: { node: ">=12" } - - "@isaacs/ttlcache@1.4.1": - resolution: - { - integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==, - } - engines: { node: ">=12" } - - "@istanbuljs/load-nyc-config@1.1.0": - resolution: - { - integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==, - } - engines: { node: ">=8" } - - "@istanbuljs/schema@0.1.3": - resolution: - { - integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==, - } - engines: { node: ">=8" } - - "@jest/console@27.5.1": - resolution: - { - integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } - - "@jest/console@28.1.3": - resolution: - { - integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } - - "@jest/console@29.7.0": - resolution: - { - integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/core@27.5.1": - resolution: - { - integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + '@inquirer/confirm@3.1.7': + resolution: {integrity: sha512-BZjjj19W8gnh5UGFTdP5ZxpgMNRjy03Dzq3k28sB2MDlEUFrcyTkMEoGgvBmGpUw0vNBoCJkTcbHZ3e9tb+d+w==} + engines: {node: '>=18'} + + '@inquirer/core@8.2.0': + resolution: {integrity: sha512-pexNF9j2orvMMTgoQ/uKOw8V6/R7x/sIDwRwXRhl4i0pPSh6paRzFehpFKpfMbqix1/+gzCekhYTmVbQpWkVjQ==} + engines: {node: '>=18'} + + '@inquirer/figures@1.0.1': + resolution: {integrity: sha512-mtup3wVKia3ZwULPHcbs4Mor8Voi+iIXEWD7wCNbIO6lYR62oPCTQyrddi5OMYVXHzeCSoneZwJuS8sBvlEwDw==} + engines: {node: '>=18'} + + '@inquirer/type@1.3.1': + resolution: {integrity: sha512-Pe3PFccjPVJV1vtlfVvm9OnlbxqdnP5QcscFEFEnK5quChf1ufZtM0r8mR5ToWHMxZOh0s8o/qp9ANGRTo/DAw==} + engines: {node: '>=18'} + + '@ioredis/commands@1.2.0': + resolution: {integrity: sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==} + + '@iov/crypto@2.1.0': + resolution: {integrity: sha512-jnb4XuK50admolm7fBxOcxfAW2TO+wYrZlhDWiMETItY/Y5gNNa1zaDSO2wNIjjfGng+8nQ1yqnNhqy7busV2Q==} + + '@iov/encoding@2.1.0': + resolution: {integrity: sha512-5IOdLO7Xg/uRykuiCqeMYghQ3IjWDtGxv7NTWXkgpHuna0aewx43mRpT2NPCpOZd1tpuorDtQ7/zbDNRaIIF/w==} + + '@iov/utils@2.0.2': + resolution: {integrity: sha512-4D8MEvTcFc/DVy5q25vHxRItmgJyeX85dixMH+MxdKr+yy71h3sYk+sVBEIn70uqGP7VqAJkGOPNFs08/XYELw==} + + '@ipld/dag-cbor@9.2.1': + resolution: {integrity: sha512-nyY48yE7r3dnJVlxrdaimrbloh4RokQaNRdI//btfTkcTEZbpmSrbYcBQ4VKTf8ZxXAOUJy4VsRpkJo+y9RTnA==} + engines: {node: '>=16.0.0', npm: '>=7.0.0'} + + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@isaacs/ttlcache@1.4.1': + resolution: {integrity: sha512-RQgQ4uQ+pLbqXfOmieB91ejmLwvSgv9nLx6sT6sD83s7umBypgg+OIBOBbEUiJXrfpnp9j0mRhYYdzp9uqq3lA==} + engines: {node: '>=12'} + + '@istanbuljs/load-nyc-config@1.1.0': + resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} + engines: {node: '>=8'} + + '@istanbuljs/schema@0.1.3': + resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} + engines: {node: '>=8'} + + '@jest/console@27.5.1': + resolution: {integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@jest/console@28.1.3': + resolution: {integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/console@29.7.0': + resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/core@27.5.1': + resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - "@jest/core@28.1.3": - resolution: - { - integrity: sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + '@jest/core@28.1.3': + resolution: {integrity: sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - "@jest/core@29.7.0": - resolution: - { - integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + '@jest/core@29.7.0': + resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - "@jest/create-cache-key-function@29.7.0": - resolution: - { - integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/environment@27.5.1": - resolution: - { - integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } - - "@jest/environment@28.1.3": - resolution: - { - integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } - - "@jest/environment@29.7.0": - resolution: - { - integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/expect-utils@28.1.3": - resolution: - { - integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } - - "@jest/expect-utils@29.7.0": - resolution: - { - integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/expect@28.1.3": - resolution: - { - integrity: sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } - - "@jest/expect@29.7.0": - resolution: - { - integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/fake-timers@27.5.1": - resolution: - { - integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } - - "@jest/fake-timers@28.1.3": - resolution: - { - integrity: sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } - - "@jest/fake-timers@29.7.0": - resolution: - { - integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/globals@27.5.1": - resolution: - { - integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } - - "@jest/globals@28.1.3": - resolution: - { - integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } - - "@jest/globals@29.7.0": - resolution: - { - integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/reporters@27.5.1": - resolution: - { - integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + '@jest/create-cache-key-function@29.7.0': + resolution: {integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/environment@27.5.1': + resolution: {integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@jest/environment@28.1.3': + resolution: {integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/environment@29.7.0': + resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/expect-utils@28.1.3': + resolution: {integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/expect-utils@29.7.0': + resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/expect@28.1.3': + resolution: {integrity: sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/expect@29.7.0': + resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/fake-timers@27.5.1': + resolution: {integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@jest/fake-timers@28.1.3': + resolution: {integrity: sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/fake-timers@29.7.0': + resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/globals@27.5.1': + resolution: {integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@jest/globals@28.1.3': + resolution: {integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/globals@29.7.0': + resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/reporters@27.5.1': + resolution: {integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - "@jest/reporters@28.1.3": - resolution: - { - integrity: sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + '@jest/reporters@28.1.3': + resolution: {integrity: sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - "@jest/reporters@29.7.0": - resolution: - { - integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + '@jest/reporters@29.7.0': + resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true - "@jest/schemas@28.1.3": - resolution: - { - integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } - - "@jest/schemas@29.6.3": - resolution: - { - integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/source-map@27.5.1": - resolution: - { - integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } - - "@jest/source-map@28.1.2": - resolution: - { - integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } - - "@jest/source-map@29.6.3": - resolution: - { - integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/test-result@27.5.1": - resolution: - { - integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } - - "@jest/test-result@28.1.3": - resolution: - { - integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } - - "@jest/test-result@29.7.0": - resolution: - { - integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/test-sequencer@27.5.1": - resolution: - { - integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } - - "@jest/test-sequencer@28.1.3": - resolution: - { - integrity: sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } - - "@jest/test-sequencer@29.7.0": - resolution: - { - integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/transform@27.5.1": - resolution: - { - integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } - - "@jest/transform@28.1.3": - resolution: - { - integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } - - "@jest/transform@29.7.0": - resolution: - { - integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jest/types@24.9.0": - resolution: - { - integrity: sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==, - } - engines: { node: ">= 6" } - - "@jest/types@26.6.2": - resolution: - { - integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==, - } - engines: { node: ">= 10.14.2" } - - "@jest/types@27.5.1": - resolution: - { - integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } - - "@jest/types@28.1.3": - resolution: - { - integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } - - "@jest/types@29.6.3": - resolution: - { - integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - - "@jridgewell/gen-mapping@0.3.5": - resolution: - { - integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==, - } - 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.4.15": - resolution: - { - integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, - } - - "@jridgewell/trace-mapping@0.3.25": - resolution: - { - integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==, - } - - "@jridgewell/trace-mapping@0.3.9": - resolution: - { - integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==, - } - - "@jsdoc/salty@0.2.8": - resolution: - { - integrity: sha512-5e+SFVavj1ORKlKaKr2BmTOekmXbelU7dC0cDkQLqag7xfuTPuGMUFx7KWJuv4bYZrTsoL2Z18VVCOKYxzoHcg==, - } - engines: { node: ">=v12.0.0" } - - "@juggle/resize-observer@3.4.0": - resolution: - { - integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==, - } - - "@keplr-wallet/cosmos@0.9.16": - resolution: - { - integrity: sha512-pTbqgZdxMY/O4w37YVDTNFdfbueQUXGiYlMAVsrdtFWBQSz+s1j2UpAgtJoIoEoawYVPmlHSWXviafXr7Y7B7w==, - } - - "@keplr-wallet/crypto@0.9.10": - resolution: - { - integrity: sha512-zjoUUL5Ky72eJBm7bd9kPNBTgQL/cFO6pbvPgVa32S8UZ6GlwsPSyiHuvq0k8z0t9X9GwdpuH0nrnlL4viU4fw==, - } - - "@keplr-wallet/proto-types@0.12.89": - resolution: - { - integrity: sha512-HD1tTji/2U8PpVhHuKTywdAXw4ISRkxWPLvC5ZxMWDbUaS5NigQ1CLW/xThZCs2Oo4/7YXKExNBYN7RzKdfTfA==, - } - - "@keplr-wallet/types@0.9.12": - resolution: - { - integrity: sha512-vtAczeD3+CgGExSZCnU9Wzs9Y8BpdbOii+UjIFHwCR57OXFQphbWHh2j15QFpV4CbebpDcBzIm+/4IAyLeI0Yw==, - } - - "@keplr-wallet/unit@0.9.12": - resolution: - { - integrity: sha512-24b3lSaaOrD3/ctdz+ADZn8vhqojsV5SGGzgD8F+DklI76uw8jYmmxSNcKyUAYpVUzRzTas6nnfB+4MwHBNU/Q==, - } - - "@koa/cors@3.4.3": - resolution: - { - integrity: sha512-WPXQUaAeAMVaLTEFpoq3T2O1C+FstkjJnDQqy95Ck1UdILajsRhu6mhJ8H2f4NFPRBoCNN+qywTJfq/gGki5mw==, - } - engines: { node: ">= 8.0.0" } - - "@kwsites/file-exists@1.1.1": - resolution: - { - integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==, - } - - "@kwsites/promise-deferred@1.1.1": - resolution: - { - integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==, - } - - "@ledgerhq/compressjs@https://codeload.github.com/LedgerHQ/compressjs/tar.gz/d9e8e4d994923e0ea76a32b97289bcccfe71b82e": - resolution: - { - tarball: https://codeload.github.com/LedgerHQ/compressjs/tar.gz/d9e8e4d994923e0ea76a32b97289bcccfe71b82e, - } + '@jest/schemas@28.1.3': + resolution: {integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/schemas@29.6.3': + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/source-map@27.5.1': + resolution: {integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@jest/source-map@28.1.2': + resolution: {integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/source-map@29.6.3': + resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/test-result@27.5.1': + resolution: {integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@jest/test-result@28.1.3': + resolution: {integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/test-result@29.7.0': + resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/test-sequencer@27.5.1': + resolution: {integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@jest/test-sequencer@28.1.3': + resolution: {integrity: sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/test-sequencer@29.7.0': + resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/transform@27.5.1': + resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@jest/transform@28.1.3': + resolution: {integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/transform@29.7.0': + resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jest/types@24.9.0': + resolution: {integrity: sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==} + engines: {node: '>= 6'} + + '@jest/types@26.6.2': + resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} + engines: {node: '>= 10.14.2'} + + '@jest/types@27.5.1': + resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + + '@jest/types@28.1.3': + resolution: {integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + + '@jest/types@29.6.3': + resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + + '@jridgewell/gen-mapping@0.3.5': + resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} + 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.4.15': + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + + '@jridgewell/trace-mapping@0.3.9': + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + + '@jsdoc/salty@0.2.8': + resolution: {integrity: sha512-5e+SFVavj1ORKlKaKr2BmTOekmXbelU7dC0cDkQLqag7xfuTPuGMUFx7KWJuv4bYZrTsoL2Z18VVCOKYxzoHcg==} + engines: {node: '>=v12.0.0'} + + '@juggle/resize-observer@3.4.0': + resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==} + + '@keplr-wallet/cosmos@0.9.16': + resolution: {integrity: sha512-pTbqgZdxMY/O4w37YVDTNFdfbueQUXGiYlMAVsrdtFWBQSz+s1j2UpAgtJoIoEoawYVPmlHSWXviafXr7Y7B7w==} + + '@keplr-wallet/crypto@0.9.10': + resolution: {integrity: sha512-zjoUUL5Ky72eJBm7bd9kPNBTgQL/cFO6pbvPgVa32S8UZ6GlwsPSyiHuvq0k8z0t9X9GwdpuH0nrnlL4viU4fw==} + + '@keplr-wallet/proto-types@0.12.89': + resolution: {integrity: sha512-HD1tTji/2U8PpVhHuKTywdAXw4ISRkxWPLvC5ZxMWDbUaS5NigQ1CLW/xThZCs2Oo4/7YXKExNBYN7RzKdfTfA==} + + '@keplr-wallet/types@0.9.12': + resolution: {integrity: sha512-vtAczeD3+CgGExSZCnU9Wzs9Y8BpdbOii+UjIFHwCR57OXFQphbWHh2j15QFpV4CbebpDcBzIm+/4IAyLeI0Yw==} + + '@keplr-wallet/unit@0.9.12': + resolution: {integrity: sha512-24b3lSaaOrD3/ctdz+ADZn8vhqojsV5SGGzgD8F+DklI76uw8jYmmxSNcKyUAYpVUzRzTas6nnfB+4MwHBNU/Q==} + + '@koa/cors@3.4.3': + resolution: {integrity: sha512-WPXQUaAeAMVaLTEFpoq3T2O1C+FstkjJnDQqy95Ck1UdILajsRhu6mhJ8H2f4NFPRBoCNN+qywTJfq/gGki5mw==} + engines: {node: '>= 8.0.0'} + + '@kwsites/file-exists@1.1.1': + resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==} + + '@kwsites/promise-deferred@1.1.1': + resolution: {integrity: sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==} + + '@ledgerhq/compressjs@https://codeload.github.com/LedgerHQ/compressjs/tar.gz/d9e8e4d994923e0ea76a32b97289bcccfe71b82e': + resolution: {tarball: https://codeload.github.com/LedgerHQ/compressjs/tar.gz/d9e8e4d994923e0ea76a32b97289bcccfe71b82e} version: 1.3.1 hasBin: true - "@ledgerhq/crypto-icons-ui@file:libs/ui/packages/crypto-icons": - resolution: { directory: libs/ui/packages/crypto-icons, type: directory } + '@ledgerhq/crypto-icons-ui@file:libs/ui/packages/crypto-icons': + resolution: {directory: libs/ui/packages/crypto-icons, type: directory} peerDependencies: - "@types/react": "*" - react: "*" - react-native-svg: ">=12.1.1" - styled-components: "*" - styled-system: "*" + '@types/react': '*' + react: '*' + react-native-svg: '>=12.1.1' + styled-components: '*' + styled-system: '*' peerDependenciesMeta: - "@types/react": - optional: true - - "@ledgerhq/errors@5.50.0": - resolution: - { - integrity: sha512-gu6aJ/BHuRlpU7kgVpy2vcYk6atjB4iauP2ymF7Gk0ez0Y/6VSMVSJvubeEQN+IV60+OBK0JgeIZG7OiHaw8ow==, - } - - "@ledgerhq/errors@6.19.1": - resolution: - { - integrity: sha512-75yK7Nnit/Gp7gdrJAz0ipp31CCgncRp+evWt6QawQEtQKYEDfGo10QywgrrBBixeRxwnMy1DP6g2oCWRf1bjw==, - } - - "@ledgerhq/hw-app-eth@5.11.0": - resolution: - { - integrity: sha512-qgpPwZzM8UMHYMC5+9xYV2O+8kgkDAl9+38w9JiBksaGmUFqcS4najsB1nj6AWf2rGEuXdKMb2WEYRskVypJrA==, - } - - "@ledgerhq/hw-transport-u2f@5.36.0-deprecated": - resolution: - { - integrity: sha512-T/+mGHIiUK/ZQATad6DMDmobCMZ1mVST952009jKzhaE1Et2Uy2secU+QhRkx3BfEAkvwa0zSRSYCL9d20Iqjg==, - } - deprecated: "@ledgerhq/hw-transport-u2f is deprecated. Please use @ledgerhq/hw-transport-webusb or @ledgerhq/hw-transport-webhid. https://github.com/LedgerHQ/ledgerjs/blob/master/docs/migrate_webusb.md" - - "@ledgerhq/hw-transport@5.11.0": - resolution: - { - integrity: sha512-z56iwv0DZZu20T5q9sNMHFQNVuRKYqzCuNFhY9woWSpmOQkyVHCRiEgOQbN5h6kVri6fkfPkDzqqcsYjJlnT9g==, - } - - "@ledgerhq/hw-transport@5.51.1": - resolution: - { - integrity: sha512-6wDYdbWrw9VwHIcoDnqWBaDFyviyjZWv6H9vz9Vyhe4Qd7TIFmbTl/eWs6hZvtZBza9K8y7zD8ChHwRI4s9tSw==, - } - - "@ledgerhq/hw-transport@6.27.1": - resolution: - { - integrity: sha512-hnE4/Fq1YzQI4PA1W0H8tCkI99R3UWDb3pJeZd6/Xs4Qw/q1uiQO+vNLC6KIPPhK0IajUfuI/P2jk0qWcMsuAQ==, - } - - "@ledgerhq/hw-transport@6.28.1": - resolution: - { - integrity: sha512-RaZe+abn0zBIz82cE9tp7Y7aZkHWWbEaE2yJpfxT8AhFz3fx+BU0kLYzuRN9fmA7vKueNJ1MTVUCY+Ex9/CHSQ==, - } - - "@ledgerhq/hw-transport@6.30.6": - resolution: - { - integrity: sha512-fT0Z4IywiuJuZrZE/+W0blkV5UCotDPFTYKLkKCLzYzuE6javva7D/ajRaIeR+hZ4kTmKF4EqnsmDCXwElez+w==, - } - - "@ledgerhq/hw-transport@6.31.3": - resolution: - { - integrity: sha512-rFplkHWF5NXtlYwAusqLlMu298NHtRD+2q/jrTYc//uu/xJO9LkDIgKid6IVF2+e1Wj7yX6YQVrU6L0Yu1ntEw==, - } - - "@ledgerhq/hw-transport@6.31.4": - resolution: - { - integrity: sha512-6c1ir/cXWJm5dCWdq55NPgCJ3UuKuuxRvf//Xs36Bq9BwkV2YaRQhZITAkads83l07NAdR16hkTWqqpwFMaI6A==, - } - - "@ledgerhq/icons-ui@file:libs/ui/packages/icons": - resolution: { directory: libs/ui/packages/icons, type: directory } - peerDependencies: - "@types/react": "*" - react: "*" - react-native-svg: ">=12.1.1" - styled-components: "*" - styled-system: "*" + '@types/react': + optional: true + + '@ledgerhq/errors@5.50.0': + resolution: {integrity: sha512-gu6aJ/BHuRlpU7kgVpy2vcYk6atjB4iauP2ymF7Gk0ez0Y/6VSMVSJvubeEQN+IV60+OBK0JgeIZG7OiHaw8ow==} + + '@ledgerhq/errors@6.19.1': + resolution: {integrity: sha512-75yK7Nnit/Gp7gdrJAz0ipp31CCgncRp+evWt6QawQEtQKYEDfGo10QywgrrBBixeRxwnMy1DP6g2oCWRf1bjw==} + + '@ledgerhq/hw-app-eth@5.11.0': + resolution: {integrity: sha512-qgpPwZzM8UMHYMC5+9xYV2O+8kgkDAl9+38w9JiBksaGmUFqcS4najsB1nj6AWf2rGEuXdKMb2WEYRskVypJrA==} + + '@ledgerhq/hw-transport-u2f@5.36.0-deprecated': + resolution: {integrity: sha512-T/+mGHIiUK/ZQATad6DMDmobCMZ1mVST952009jKzhaE1Et2Uy2secU+QhRkx3BfEAkvwa0zSRSYCL9d20Iqjg==} + deprecated: '@ledgerhq/hw-transport-u2f is deprecated. Please use @ledgerhq/hw-transport-webusb or @ledgerhq/hw-transport-webhid. https://github.com/LedgerHQ/ledgerjs/blob/master/docs/migrate_webusb.md' + + '@ledgerhq/hw-transport@5.11.0': + resolution: {integrity: sha512-z56iwv0DZZu20T5q9sNMHFQNVuRKYqzCuNFhY9woWSpmOQkyVHCRiEgOQbN5h6kVri6fkfPkDzqqcsYjJlnT9g==} + + '@ledgerhq/hw-transport@5.51.1': + resolution: {integrity: sha512-6wDYdbWrw9VwHIcoDnqWBaDFyviyjZWv6H9vz9Vyhe4Qd7TIFmbTl/eWs6hZvtZBza9K8y7zD8ChHwRI4s9tSw==} + + '@ledgerhq/hw-transport@6.27.1': + resolution: {integrity: sha512-hnE4/Fq1YzQI4PA1W0H8tCkI99R3UWDb3pJeZd6/Xs4Qw/q1uiQO+vNLC6KIPPhK0IajUfuI/P2jk0qWcMsuAQ==} + + '@ledgerhq/hw-transport@6.28.1': + resolution: {integrity: sha512-RaZe+abn0zBIz82cE9tp7Y7aZkHWWbEaE2yJpfxT8AhFz3fx+BU0kLYzuRN9fmA7vKueNJ1MTVUCY+Ex9/CHSQ==} + + '@ledgerhq/hw-transport@6.30.6': + resolution: {integrity: sha512-fT0Z4IywiuJuZrZE/+W0blkV5UCotDPFTYKLkKCLzYzuE6javva7D/ajRaIeR+hZ4kTmKF4EqnsmDCXwElez+w==} + + '@ledgerhq/hw-transport@6.31.3': + resolution: {integrity: sha512-rFplkHWF5NXtlYwAusqLlMu298NHtRD+2q/jrTYc//uu/xJO9LkDIgKid6IVF2+e1Wj7yX6YQVrU6L0Yu1ntEw==} + + '@ledgerhq/hw-transport@6.31.4': + resolution: {integrity: sha512-6c1ir/cXWJm5dCWdq55NPgCJ3UuKuuxRvf//Xs36Bq9BwkV2YaRQhZITAkads83l07NAdR16hkTWqqpwFMaI6A==} + + '@ledgerhq/icons-ui@file:libs/ui/packages/icons': + resolution: {directory: libs/ui/packages/icons, type: directory} + peerDependencies: + '@types/react': '*' + react: '*' + react-native-svg: '>=12.1.1' + styled-components: '*' + styled-system: '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@ledgerhq/live-app-sdk@0.8.2": - resolution: - { - integrity: sha512-yD+L02pAwTfjeSyixWkfqlh6Xg3yAGFnFitrcHk2WWUtKg1TVmNpWNHLS22LKYYWJ7Lflj/pLLQ0nKm1OsJB9g==, - } + '@ledgerhq/live-app-sdk@0.8.2': + resolution: {integrity: sha512-yD+L02pAwTfjeSyixWkfqlh6Xg3yAGFnFitrcHk2WWUtKg1TVmNpWNHLS22LKYYWJ7Lflj/pLLQ0nKm1OsJB9g==} - "@ledgerhq/logs@5.50.0": - resolution: - { - integrity: sha512-swKHYCOZUGyVt4ge0u8a7AwNcA//h4nx5wIi0sruGye1IJ5Cva0GyK9L2/WdX+kWVTKp92ZiEo1df31lrWGPgA==, - } + '@ledgerhq/logs@5.50.0': + resolution: {integrity: sha512-swKHYCOZUGyVt4ge0u8a7AwNcA//h4nx5wIi0sruGye1IJ5Cva0GyK9L2/WdX+kWVTKp92ZiEo1df31lrWGPgA==} - "@ledgerhq/logs@6.12.0": - resolution: - { - integrity: sha512-ExDoj1QV5eC6TEbMdLUMMk9cfvNKhhv5gXol4SmULRVCx/3iyCPhJ74nsb3S0Vb+/f+XujBEj3vQn5+cwS0fNA==, - } + '@ledgerhq/logs@6.12.0': + resolution: {integrity: sha512-ExDoj1QV5eC6TEbMdLUMMk9cfvNKhhv5gXol4SmULRVCx/3iyCPhJ74nsb3S0Vb+/f+XujBEj3vQn5+cwS0fNA==} - "@ledgerhq/wallet-api-client-react@1.3.12": - resolution: - { - integrity: sha512-hf7OlhGtj6yuo42OGyKt0dMPNoIpBHm7u1vTH40yWfsabFaDtPzJFGSkWhBb19/zRtDGpbFr3Plo/WnBLFDfXQ==, - } + '@ledgerhq/wallet-api-client-react@1.3.12': + resolution: {integrity: sha512-hf7OlhGtj6yuo42OGyKt0dMPNoIpBHm7u1vTH40yWfsabFaDtPzJFGSkWhBb19/zRtDGpbFr3Plo/WnBLFDfXQ==} peerDependencies: react: ^16.8.0 || ^17 || ^18 - "@ledgerhq/wallet-api-client@1.6.0": - resolution: - { - integrity: sha512-xf5g9baUB1Fn94GKYGNXtlRCKTWnqMBv1w9bE/H3+IXubwY7Cdy5zhn4rI8+iA4Llmwujp+sZciesWAa9f63gg==, - } + '@ledgerhq/wallet-api-client@1.6.0': + resolution: {integrity: sha512-xf5g9baUB1Fn94GKYGNXtlRCKTWnqMBv1w9bE/H3+IXubwY7Cdy5zhn4rI8+iA4Llmwujp+sZciesWAa9f63gg==} - "@ledgerhq/wallet-api-core@1.13.0": - resolution: - { - integrity: sha512-HGnkPcbkeoNr+XAH+5NSrgyRYD/sVD3tgCyoYPAKEs7j3W/eJyT/EvBWwV4yPKhghfSjuqMo1L+0wLCXnbt4Dw==, - } + '@ledgerhq/wallet-api-core@1.13.0': + resolution: {integrity: sha512-HGnkPcbkeoNr+XAH+5NSrgyRYD/sVD3tgCyoYPAKEs7j3W/eJyT/EvBWwV4yPKhghfSjuqMo1L+0wLCXnbt4Dw==} - "@ledgerhq/wallet-api-server@1.6.0": - resolution: - { - integrity: sha512-x2aI2wqWlt03zUMYucfqNeYkohZzROs2DYgRdwkkZbQG2Q0iUZsixUYjNkFZxPVUhxXaUA+YIgF43OeG/fyOjA==, - } + '@ledgerhq/wallet-api-server@1.6.0': + resolution: {integrity: sha512-x2aI2wqWlt03zUMYucfqNeYkohZzROs2DYgRdwkkZbQG2Q0iUZsixUYjNkFZxPVUhxXaUA+YIgF43OeG/fyOjA==} peerDependencies: react: ^17.x || ^18.x rxjs: ^7.x @@ -12938,1223 +10682,743 @@ packages: react: optional: true - "@ledgerhq/wallet-api-simulator@1.2.0": - resolution: - { - integrity: sha512-EB4rqArFWut8A+Pzoi0uK1sqlGsF5fPYDql4IGH5ghdyKgh3Mq9svi5Um8h3+33aETB3hqCR2T2itN+kGxk3Tw==, - } - - "@leichtgewicht/ip-codec@2.0.5": - resolution: - { - integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==, - } - - "@lezer/common@1.2.1": - resolution: - { - integrity: sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==, - } - - "@lezer/highlight@1.2.0": - resolution: - { - integrity: sha512-WrS5Mw51sGrpqjlh3d4/fOwpEV2Hd3YOkp9DBt4k8XZQcoTHZFB7sx030A6OcahF4J1nDQAa3jXlTVVYH50IFA==, - } - - "@lezer/json@1.0.2": - resolution: - { - integrity: sha512-xHT2P4S5eeCYECyKNPhr4cbEL9tc8w83SPwRC373o9uEdrvGKTZoJVAGxpOsZckMlEh9W23Pc72ew918RWQOBQ==, - } - - "@lezer/lr@1.4.1": - resolution: - { - integrity: sha512-CHsKq8DMKBf9b3yXPDIU4DbH+ZJd/sJdYOW2llbW/HudP5u0VS6Bfq1hLYfgU7uAYGFIyGGQIsSOXGPEErZiJw==, - } - - "@likashefqet/react-native-image-zoom@1.3.0": - resolution: - { - integrity: sha512-PLRd1hNMHe9LUn8b4rmLt86282geuaqP4Qd2rFWIloxMS2ePNTIaNlEUu3T3LaO8Pg9vhVV97TxfFeU8F+tcYQ==, - } - peerDependencies: - react: ">=16.x.x" - react-native: ">=0.62.x" - react-native-gesture-handler: ">=2.x.x" - react-native-reanimated: ">=2.x.x" - - "@malept/cross-spawn-promise@1.1.1": - resolution: - { - integrity: sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==, - } - engines: { node: ">= 10" } - - "@malept/flatpak-bundler@0.4.0": - resolution: - { - integrity: sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q==, - } - engines: { node: ">= 10.0.0" } - - "@manypkg/find-root@1.1.0": - resolution: - { - integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==, - } - - "@manypkg/get-packages@1.1.3": - resolution: - { - integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==, - } - - "@mdx-js/mdx@2.3.0": - resolution: - { - integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==, - } - - "@mdx-js/react@2.3.0": - resolution: - { - integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==, - } - peerDependencies: - "@types/react": "*" - react: ">=16" + '@ledgerhq/wallet-api-simulator@1.2.0': + resolution: {integrity: sha512-EB4rqArFWut8A+Pzoi0uK1sqlGsF5fPYDql4IGH5ghdyKgh3Mq9svi5Um8h3+33aETB3hqCR2T2itN+kGxk3Tw==} + + '@leichtgewicht/ip-codec@2.0.5': + resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==} + + '@lezer/common@1.2.1': + resolution: {integrity: sha512-yemX0ZD2xS/73llMZIK6KplkjIjf2EvAHcinDi/TfJ9hS25G0388+ClHt6/3but0oOxinTcQHJLDXh6w1crzFQ==} + + '@lezer/highlight@1.2.0': + resolution: {integrity: sha512-WrS5Mw51sGrpqjlh3d4/fOwpEV2Hd3YOkp9DBt4k8XZQcoTHZFB7sx030A6OcahF4J1nDQAa3jXlTVVYH50IFA==} + + '@lezer/json@1.0.2': + resolution: {integrity: sha512-xHT2P4S5eeCYECyKNPhr4cbEL9tc8w83SPwRC373o9uEdrvGKTZoJVAGxpOsZckMlEh9W23Pc72ew918RWQOBQ==} + + '@lezer/lr@1.4.1': + resolution: {integrity: sha512-CHsKq8DMKBf9b3yXPDIU4DbH+ZJd/sJdYOW2llbW/HudP5u0VS6Bfq1hLYfgU7uAYGFIyGGQIsSOXGPEErZiJw==} + + '@likashefqet/react-native-image-zoom@1.3.0': + resolution: {integrity: sha512-PLRd1hNMHe9LUn8b4rmLt86282geuaqP4Qd2rFWIloxMS2ePNTIaNlEUu3T3LaO8Pg9vhVV97TxfFeU8F+tcYQ==} + peerDependencies: + react: '>=16.x.x' + react-native: '>=0.62.x' + react-native-gesture-handler: '>=2.x.x' + react-native-reanimated: '>=2.x.x' + + '@malept/cross-spawn-promise@1.1.1': + resolution: {integrity: sha512-RTBGWL5FWQcg9orDOCcp4LvItNzUPcyEU9bwaeJX0rJ1IQxzucC48Y0/sQLp/g6t99IQgAlGIaesJS+gTn7tVQ==} + engines: {node: '>= 10'} + + '@malept/flatpak-bundler@0.4.0': + resolution: {integrity: sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q==} + engines: {node: '>= 10.0.0'} + + '@manypkg/find-root@1.1.0': + resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} + + '@manypkg/get-packages@1.1.3': + resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} + + '@mdx-js/mdx@2.3.0': + resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==} + + '@mdx-js/react@2.3.0': + resolution: {integrity: sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==} + peerDependencies: + '@types/react': '*' + react: '>=16' peerDependenciesMeta: - "@types/react": - optional: true - - "@mswjs/cookies@1.1.0": - resolution: - { - integrity: sha512-0ZcCVQxifZmhwNBoQIrystCb+2sWBY2Zw8lpfJBPCHGCA/HWqehITeCRVIv4VMy8MPlaHo2w2pTHFV2pFfqKPw==, - } - engines: { node: ">=18" } - - "@mswjs/interceptors@0.26.14": - resolution: - { - integrity: sha512-q4S8RGjOUzv3A3gCawuKkUEcNJXjdPaSqoRHFvuZPWQnc7yOw702iGBRDMJoBK+l0KSv9XN8YP5ek6duRzrpqw==, - } - engines: { node: ">=18" } - - "@mswjs/interceptors@0.29.1": - resolution: - { - integrity: sha512-3rDakgJZ77+RiQUuSK69t1F0m8BQKA8Vh5DCS5V0DWvNY67zob2JhhQrhCO0AKLGINTRSFd1tBaHcJTkhefoSw==, - } - engines: { node: ">=18" } - - "@multiversx/sdk-core@13.3.0": - resolution: - { - integrity: sha512-P8/8KzMrWL58nhtxg/Ti+18V1dg4YYCn4tY8Gw9+Ke9mErz9Q2+rvWirwBqKgv6romZDMhUB+x7fME1W2PiIng==, - } + '@types/react': + optional: true + + '@mswjs/cookies@1.1.0': + resolution: {integrity: sha512-0ZcCVQxifZmhwNBoQIrystCb+2sWBY2Zw8lpfJBPCHGCA/HWqehITeCRVIv4VMy8MPlaHo2w2pTHFV2pFfqKPw==} + engines: {node: '>=18'} + + '@mswjs/interceptors@0.26.14': + resolution: {integrity: sha512-q4S8RGjOUzv3A3gCawuKkUEcNJXjdPaSqoRHFvuZPWQnc7yOw702iGBRDMJoBK+l0KSv9XN8YP5ek6duRzrpqw==} + engines: {node: '>=18'} + + '@mswjs/interceptors@0.29.1': + resolution: {integrity: sha512-3rDakgJZ77+RiQUuSK69t1F0m8BQKA8Vh5DCS5V0DWvNY67zob2JhhQrhCO0AKLGINTRSFd1tBaHcJTkhefoSw==} + engines: {node: '>=18'} + + '@multiversx/sdk-core@13.3.0': + resolution: {integrity: sha512-P8/8KzMrWL58nhtxg/Ti+18V1dg4YYCn4tY8Gw9+Ke9mErz9Q2+rvWirwBqKgv6romZDMhUB+x7fME1W2PiIng==} peerDependencies: bignumber.js: ^9.0.1 protobufjs: ^7.2.6 - "@multiversx/sdk-transaction-decoder@1.0.2": - resolution: - { - integrity: sha512-j43QsKquu8N51WLmVlJ7dV2P3A1448R7/ktvl8r3i6wRMpfdtzDPNofTdHmMRT7DdQdvs4+RNgz8hVKL11Etsw==, - } - - "@napi-rs/simple-git-android-arm-eabi@0.1.16": - resolution: - { - integrity: sha512-dbrCL0Pl5KZG7x7tXdtVsA5CO6At5ohDX3myf5xIYn9kN4jDFxsocl8bNt6Vb/hZQoJd8fI+k5VlJt+rFhbdVw==, - } - engines: { node: ">= 10" } + '@multiversx/sdk-transaction-decoder@1.0.2': + resolution: {integrity: sha512-j43QsKquu8N51WLmVlJ7dV2P3A1448R7/ktvl8r3i6wRMpfdtzDPNofTdHmMRT7DdQdvs4+RNgz8hVKL11Etsw==} + + '@napi-rs/simple-git-android-arm-eabi@0.1.16': + resolution: {integrity: sha512-dbrCL0Pl5KZG7x7tXdtVsA5CO6At5ohDX3myf5xIYn9kN4jDFxsocl8bNt6Vb/hZQoJd8fI+k5VlJt+rFhbdVw==} + engines: {node: '>= 10'} cpu: [arm] os: [android] - "@napi-rs/simple-git-android-arm64@0.1.16": - resolution: - { - integrity: sha512-xYz+TW5J09iK8SuTAKK2D5MMIsBUXVSs8nYp7HcMi8q6FCRO7yJj96YfP9PvKsc/k64hOyqGmL5DhCzY9Cu1FQ==, - } - engines: { node: ">= 10" } + '@napi-rs/simple-git-android-arm64@0.1.16': + resolution: {integrity: sha512-xYz+TW5J09iK8SuTAKK2D5MMIsBUXVSs8nYp7HcMi8q6FCRO7yJj96YfP9PvKsc/k64hOyqGmL5DhCzY9Cu1FQ==} + engines: {node: '>= 10'} cpu: [arm64] os: [android] - "@napi-rs/simple-git-darwin-arm64@0.1.16": - resolution: - { - integrity: sha512-XfgsYqxhUE022MJobeiX563TJqyQyX4FmYCnqrtJwAfivESVeAJiH6bQIum8dDEYMHXCsG7nL8Ok0Dp8k2m42g==, - } - engines: { node: ">= 10" } + '@napi-rs/simple-git-darwin-arm64@0.1.16': + resolution: {integrity: sha512-XfgsYqxhUE022MJobeiX563TJqyQyX4FmYCnqrtJwAfivESVeAJiH6bQIum8dDEYMHXCsG7nL8Ok0Dp8k2m42g==} + engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - "@napi-rs/simple-git-darwin-x64@0.1.16": - resolution: - { - integrity: sha512-tkEVBhD6vgRCbeWsaAQqM3bTfpIVGeitamPPRVSbsq8qgzJ5Dx6ZedH27R7KSsA/uao7mZ3dsrNLXbu1Wy5MzA==, - } - engines: { node: ">= 10" } + '@napi-rs/simple-git-darwin-x64@0.1.16': + resolution: {integrity: sha512-tkEVBhD6vgRCbeWsaAQqM3bTfpIVGeitamPPRVSbsq8qgzJ5Dx6ZedH27R7KSsA/uao7mZ3dsrNLXbu1Wy5MzA==} + engines: {node: '>= 10'} cpu: [x64] os: [darwin] - "@napi-rs/simple-git-linux-arm-gnueabihf@0.1.16": - resolution: - { - integrity: sha512-R6VAyNnp/yRaT7DV1Ao3r67SqTWDa+fNq2LrNy0Z8gXk2wB9ZKlrxFtLPE1WSpWknWtyRDLpRlsorh7Evk7+7w==, - } - engines: { node: ">= 10" } + '@napi-rs/simple-git-linux-arm-gnueabihf@0.1.16': + resolution: {integrity: sha512-R6VAyNnp/yRaT7DV1Ao3r67SqTWDa+fNq2LrNy0Z8gXk2wB9ZKlrxFtLPE1WSpWknWtyRDLpRlsorh7Evk7+7w==} + engines: {node: '>= 10'} cpu: [arm] os: [linux] - "@napi-rs/simple-git-linux-arm64-gnu@0.1.16": - resolution: - { - integrity: sha512-LAGI0opFKw/HBMCV2qIBK3uWSEW9h4xd2ireZKLJy8DBPymX6NrWIamuxYNyCuACnFdPRxR4LaRFy4J5ZwuMdw==, - } - engines: { node: ">= 10" } + '@napi-rs/simple-git-linux-arm64-gnu@0.1.16': + resolution: {integrity: sha512-LAGI0opFKw/HBMCV2qIBK3uWSEW9h4xd2ireZKLJy8DBPymX6NrWIamuxYNyCuACnFdPRxR4LaRFy4J5ZwuMdw==} + engines: {node: '>= 10'} cpu: [arm64] os: [linux] - "@napi-rs/simple-git-linux-arm64-musl@0.1.16": - resolution: - { - integrity: sha512-I57Ph0F0Yn2KW93ep+V1EzKhACqX0x49vvSiapqIsdDA2PifdEWLc1LJarBolmK7NKoPqKmf6lAKKO9lhiZzkg==, - } - engines: { node: ">= 10" } + '@napi-rs/simple-git-linux-arm64-musl@0.1.16': + resolution: {integrity: sha512-I57Ph0F0Yn2KW93ep+V1EzKhACqX0x49vvSiapqIsdDA2PifdEWLc1LJarBolmK7NKoPqKmf6lAKKO9lhiZzkg==} + engines: {node: '>= 10'} cpu: [arm64] os: [linux] - "@napi-rs/simple-git-linux-x64-gnu@0.1.16": - resolution: - { - integrity: sha512-AZYYFY2V7hlcQASPEOWyOa3e1skzTct9QPzz0LiDM3f/hCFY/wBaU2M6NC5iG3d2Kr38heuyFS/+JqxLm5WaKA==, - } - engines: { node: ">= 10" } + '@napi-rs/simple-git-linux-x64-gnu@0.1.16': + resolution: {integrity: sha512-AZYYFY2V7hlcQASPEOWyOa3e1skzTct9QPzz0LiDM3f/hCFY/wBaU2M6NC5iG3d2Kr38heuyFS/+JqxLm5WaKA==} + engines: {node: '>= 10'} cpu: [x64] os: [linux] - "@napi-rs/simple-git-linux-x64-musl@0.1.16": - resolution: - { - integrity: sha512-9TyMcYSBJwjT8jwjY9m24BZbu7ozyWTjsmYBYNtK3B0Um1Ov6jthSNneLVvouQ6x+k3Ow+00TiFh6bvmT00r8g==, - } - engines: { node: ">= 10" } + '@napi-rs/simple-git-linux-x64-musl@0.1.16': + resolution: {integrity: sha512-9TyMcYSBJwjT8jwjY9m24BZbu7ozyWTjsmYBYNtK3B0Um1Ov6jthSNneLVvouQ6x+k3Ow+00TiFh6bvmT00r8g==} + engines: {node: '>= 10'} cpu: [x64] os: [linux] - "@napi-rs/simple-git-win32-arm64-msvc@0.1.16": - resolution: - { - integrity: sha512-uslJ1WuAHCYJWui6xjsyT47SjX6KOHDtClmNO8hqKz1pmDSNY7AjyUY8HxvD1lK9bDnWwc4JYhikS9cxCqHybw==, - } - engines: { node: ">= 10" } + '@napi-rs/simple-git-win32-arm64-msvc@0.1.16': + resolution: {integrity: sha512-uslJ1WuAHCYJWui6xjsyT47SjX6KOHDtClmNO8hqKz1pmDSNY7AjyUY8HxvD1lK9bDnWwc4JYhikS9cxCqHybw==} + engines: {node: '>= 10'} cpu: [arm64] os: [win32] - "@napi-rs/simple-git-win32-x64-msvc@0.1.16": - resolution: - { - integrity: sha512-SoEaVeCZCDF1MP+M9bMSXsZWgEjk4On9GWADO5JOulvzR1bKjk0s9PMHwe/YztR9F0sJzrCxwtvBZowhSJsQPg==, - } - engines: { node: ">= 10" } + '@napi-rs/simple-git-win32-x64-msvc@0.1.16': + resolution: {integrity: sha512-SoEaVeCZCDF1MP+M9bMSXsZWgEjk4On9GWADO5JOulvzR1bKjk0s9PMHwe/YztR9F0sJzrCxwtvBZowhSJsQPg==} + engines: {node: '>= 10'} cpu: [x64] os: [win32] - "@napi-rs/simple-git@0.1.16": - resolution: - { - integrity: sha512-C5wRPw9waqL2jk3jEDeJv+f7ScuO3N0a39HVdyFLkwKxHH4Sya4ZbzZsu2JLi6eEqe7RuHipHL6mC7B2OfYZZw==, - } - engines: { node: ">= 10" } - - "@ndelangen/get-tarball@3.0.9": - resolution: - { - integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==, - } - - "@near-js/accounts@1.0.2": - resolution: - { - integrity: sha512-KpyY9r+f55vJ0XCk17vyHeiiNbsmKY9T3ztXKLWQEr661XWJKyetQUBb3dyehf6DHXXnlxwwQNdYDK8d0x1nOQ==, - } - - "@near-js/crypto@1.2.0": - resolution: - { - integrity: sha512-iYpiynirW1cB9kNttSsbNhlN4LFR1Esq08aIFyFB/qGNy8DjLYYoe2g923YBxDbVMI6Ljk6AX3G+KDnG3S9lqg==, - } - - "@near-js/keystores-browser@0.0.8": - resolution: - { - integrity: sha512-ZWBbioO2TUdMkHbmHpwo+DC4CC9XAvS9umIBNgS1XBsY2y3NsG+dWU4bEiFC37fGBzJL9EFw+QJ6RxB+jeOfdQ==, - } - - "@near-js/keystores-node@0.0.8": - resolution: - { - integrity: sha512-wiVcKljXi7YkHyQrg1Aw7HubmSGRpC+jNgjCdNBd645Qr9YuSLr/OGTCdliO4QWalU+lUgBV63eSxzAMeUa3Aw==, - } - - "@near-js/keystores@0.0.8": - resolution: - { - integrity: sha512-H3JQroNbx0AvNpXsGiDdjVZCFPqd6Qx29XK618GhwSqvvmFQxq96sh51dmPhJ+jVxFUTt7Q9es8fujYbZceAzw==, - } - - "@near-js/providers@0.0.10": - resolution: - { - integrity: sha512-c3t2+34mL5YHn93pwPwJr6LPUZbpmBPtBoyhX105R8l8QxShy4L8IHPj5ZhBowN1+Yrq6c5Cnw57SqHHqwz9tg==, - } - - "@near-js/signers@0.1.0": - resolution: - { - integrity: sha512-EWnkzqLPcVzSXE4Y4HbtrJSqUEqVehn516PxCayRVRJ7bo6ytkas/U6e+J5Dn/vpH/Ny5Y/tcmt+A0s4vbCLZA==, - } - - "@near-js/transactions@1.1.0": - resolution: - { - integrity: sha512-0kP8unj0RND20lP67nCtDN3fz0CvO/C9AX0EqlT5dAyi4ZQBabgVQq272RtT9xnaoA7OP6OPB3GUWGJS+MwsTw==, - } - - "@near-js/types@0.0.4": - resolution: - { - integrity: sha512-8TTMbLMnmyG06R5YKWuS/qFG1tOA3/9lX4NgBqQPsvaWmDsa+D+QwOkrEHDegped0ZHQwcjAXjKML1S1TyGYKg==, - } - - "@near-js/utils@0.0.5": - resolution: - { - integrity: sha512-0YnPruP6xZc/scIAX7E3GrTrFMNAyB9bFZOoOdA60GPzHwTTfpXsdozZvsQN4LvfFuiCDN1OEhwx7EtJh43DRw==, - } - - "@near-js/wallet-account@1.0.2": - resolution: - { - integrity: sha512-bbouucpBgFtZ3bI7KvcYT8/r1q4w5UVIbbZqTUnuXpkceSQ7IxjeKCR00Iastj9EOXWAAAJBYkn0942QJjBC5w==, - } - - "@next/env@13.2.4": - resolution: - { - integrity: sha512-+Mq3TtpkeeKFZanPturjcXt+KHfKYnLlX6jMLyCrmpq6OOs4i1GqBOAauSkii9QeKCMTYzGppar21JU57b/GEA==, - } - - "@next/env@14.2.12": - resolution: - { - integrity: sha512-3fP29GIetdwVIfIRyLKM7KrvJaqepv+6pVodEbx0P5CaMLYBtx+7eEg8JYO5L9sveJO87z9eCReceZLi0hxO1Q==, - } - - "@next/eslint-plugin-next@13.5.6": - resolution: - { - integrity: sha512-ng7pU/DDsxPgT6ZPvuprxrkeew3XaRf4LAT4FabaEO/hAbvVx4P7wqnqdbTdDn1kgTvsI4tpIgT4Awn/m0bGbg==, - } - - "@next/swc-android-arm-eabi@13.2.4": - resolution: - { - integrity: sha512-DWlalTSkLjDU11MY11jg17O1gGQzpRccM9Oes2yTqj2DpHndajrXHGxj9HGtJ+idq2k7ImUdJVWS2h2l/EDJOw==, - } - engines: { node: ">= 10" } + '@napi-rs/simple-git@0.1.16': + resolution: {integrity: sha512-C5wRPw9waqL2jk3jEDeJv+f7ScuO3N0a39HVdyFLkwKxHH4Sya4ZbzZsu2JLi6eEqe7RuHipHL6mC7B2OfYZZw==} + engines: {node: '>= 10'} + + '@ndelangen/get-tarball@3.0.9': + resolution: {integrity: sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==} + + '@near-js/accounts@1.0.2': + resolution: {integrity: sha512-KpyY9r+f55vJ0XCk17vyHeiiNbsmKY9T3ztXKLWQEr661XWJKyetQUBb3dyehf6DHXXnlxwwQNdYDK8d0x1nOQ==} + + '@near-js/crypto@1.2.0': + resolution: {integrity: sha512-iYpiynirW1cB9kNttSsbNhlN4LFR1Esq08aIFyFB/qGNy8DjLYYoe2g923YBxDbVMI6Ljk6AX3G+KDnG3S9lqg==} + + '@near-js/keystores-browser@0.0.8': + resolution: {integrity: sha512-ZWBbioO2TUdMkHbmHpwo+DC4CC9XAvS9umIBNgS1XBsY2y3NsG+dWU4bEiFC37fGBzJL9EFw+QJ6RxB+jeOfdQ==} + + '@near-js/keystores-node@0.0.8': + resolution: {integrity: sha512-wiVcKljXi7YkHyQrg1Aw7HubmSGRpC+jNgjCdNBd645Qr9YuSLr/OGTCdliO4QWalU+lUgBV63eSxzAMeUa3Aw==} + + '@near-js/keystores@0.0.8': + resolution: {integrity: sha512-H3JQroNbx0AvNpXsGiDdjVZCFPqd6Qx29XK618GhwSqvvmFQxq96sh51dmPhJ+jVxFUTt7Q9es8fujYbZceAzw==} + + '@near-js/providers@0.0.10': + resolution: {integrity: sha512-c3t2+34mL5YHn93pwPwJr6LPUZbpmBPtBoyhX105R8l8QxShy4L8IHPj5ZhBowN1+Yrq6c5Cnw57SqHHqwz9tg==} + + '@near-js/signers@0.1.0': + resolution: {integrity: sha512-EWnkzqLPcVzSXE4Y4HbtrJSqUEqVehn516PxCayRVRJ7bo6ytkas/U6e+J5Dn/vpH/Ny5Y/tcmt+A0s4vbCLZA==} + + '@near-js/transactions@1.1.0': + resolution: {integrity: sha512-0kP8unj0RND20lP67nCtDN3fz0CvO/C9AX0EqlT5dAyi4ZQBabgVQq272RtT9xnaoA7OP6OPB3GUWGJS+MwsTw==} + + '@near-js/types@0.0.4': + resolution: {integrity: sha512-8TTMbLMnmyG06R5YKWuS/qFG1tOA3/9lX4NgBqQPsvaWmDsa+D+QwOkrEHDegped0ZHQwcjAXjKML1S1TyGYKg==} + + '@near-js/utils@0.0.5': + resolution: {integrity: sha512-0YnPruP6xZc/scIAX7E3GrTrFMNAyB9bFZOoOdA60GPzHwTTfpXsdozZvsQN4LvfFuiCDN1OEhwx7EtJh43DRw==} + + '@near-js/wallet-account@1.0.2': + resolution: {integrity: sha512-bbouucpBgFtZ3bI7KvcYT8/r1q4w5UVIbbZqTUnuXpkceSQ7IxjeKCR00Iastj9EOXWAAAJBYkn0942QJjBC5w==} + + '@next/env@13.2.4': + resolution: {integrity: sha512-+Mq3TtpkeeKFZanPturjcXt+KHfKYnLlX6jMLyCrmpq6OOs4i1GqBOAauSkii9QeKCMTYzGppar21JU57b/GEA==} + + '@next/env@14.2.12': + resolution: {integrity: sha512-3fP29GIetdwVIfIRyLKM7KrvJaqepv+6pVodEbx0P5CaMLYBtx+7eEg8JYO5L9sveJO87z9eCReceZLi0hxO1Q==} + + '@next/eslint-plugin-next@13.5.6': + resolution: {integrity: sha512-ng7pU/DDsxPgT6ZPvuprxrkeew3XaRf4LAT4FabaEO/hAbvVx4P7wqnqdbTdDn1kgTvsI4tpIgT4Awn/m0bGbg==} + + '@next/swc-android-arm-eabi@13.2.4': + resolution: {integrity: sha512-DWlalTSkLjDU11MY11jg17O1gGQzpRccM9Oes2yTqj2DpHndajrXHGxj9HGtJ+idq2k7ImUdJVWS2h2l/EDJOw==} + engines: {node: '>= 10'} cpu: [arm] os: [android] - "@next/swc-android-arm64@13.2.4": - resolution: - { - integrity: sha512-sRavmUImUCf332Gy+PjIfLkMhiRX1Ez4SI+3vFDRs1N5eXp+uNzjFUK/oLMMOzk6KFSkbiK/3Wt8+dHQR/flNg==, - } - engines: { node: ">= 10" } + '@next/swc-android-arm64@13.2.4': + resolution: {integrity: sha512-sRavmUImUCf332Gy+PjIfLkMhiRX1Ez4SI+3vFDRs1N5eXp+uNzjFUK/oLMMOzk6KFSkbiK/3Wt8+dHQR/flNg==} + engines: {node: '>= 10'} cpu: [arm64] os: [android] - "@next/swc-darwin-arm64@13.2.4": - resolution: - { - integrity: sha512-S6vBl+OrInP47TM3LlYx65betocKUUlTZDDKzTiRDbsRESeyIkBtZ6Qi5uT2zQs4imqllJznVjFd1bXLx3Aa6A==, - } - engines: { node: ">= 10" } + '@next/swc-darwin-arm64@13.2.4': + resolution: {integrity: sha512-S6vBl+OrInP47TM3LlYx65betocKUUlTZDDKzTiRDbsRESeyIkBtZ6Qi5uT2zQs4imqllJznVjFd1bXLx3Aa6A==} + engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - "@next/swc-darwin-arm64@14.2.12": - resolution: - { - integrity: sha512-crHJ9UoinXeFbHYNok6VZqjKnd8rTd7K3Z2zpyzF1ch7vVNKmhjv/V7EHxep3ILoN8JB9AdRn/EtVVyG9AkCXw==, - } - engines: { node: ">= 10" } + '@next/swc-darwin-arm64@14.2.12': + resolution: {integrity: sha512-crHJ9UoinXeFbHYNok6VZqjKnd8rTd7K3Z2zpyzF1ch7vVNKmhjv/V7EHxep3ILoN8JB9AdRn/EtVVyG9AkCXw==} + engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - "@next/swc-darwin-x64@13.2.4": - resolution: - { - integrity: sha512-a6LBuoYGcFOPGd4o8TPo7wmv5FnMr+Prz+vYHopEDuhDoMSHOnC+v+Ab4D7F0NMZkvQjEJQdJS3rqgFhlZmKlw==, - } - engines: { node: ">= 10" } + '@next/swc-darwin-x64@13.2.4': + resolution: {integrity: sha512-a6LBuoYGcFOPGd4o8TPo7wmv5FnMr+Prz+vYHopEDuhDoMSHOnC+v+Ab4D7F0NMZkvQjEJQdJS3rqgFhlZmKlw==} + engines: {node: '>= 10'} cpu: [x64] os: [darwin] - "@next/swc-darwin-x64@14.2.12": - resolution: - { - integrity: sha512-JbEaGbWq18BuNBO+lCtKfxl563Uw9oy2TodnN2ioX00u7V1uzrsSUcg3Ep9ce+P0Z9es+JmsvL2/rLphz+Frcw==, - } - engines: { node: ">= 10" } + '@next/swc-darwin-x64@14.2.12': + resolution: {integrity: sha512-JbEaGbWq18BuNBO+lCtKfxl563Uw9oy2TodnN2ioX00u7V1uzrsSUcg3Ep9ce+P0Z9es+JmsvL2/rLphz+Frcw==} + engines: {node: '>= 10'} cpu: [x64] os: [darwin] - "@next/swc-freebsd-x64@13.2.4": - resolution: - { - integrity: sha512-kkbzKVZGPaXRBPisoAQkh3xh22r+TD+5HwoC5bOkALraJ0dsOQgSMAvzMXKsN3tMzJUPS0tjtRf1cTzrQ0I5vQ==, - } - engines: { node: ">= 10" } + '@next/swc-freebsd-x64@13.2.4': + resolution: {integrity: sha512-kkbzKVZGPaXRBPisoAQkh3xh22r+TD+5HwoC5bOkALraJ0dsOQgSMAvzMXKsN3tMzJUPS0tjtRf1cTzrQ0I5vQ==} + engines: {node: '>= 10'} cpu: [x64] os: [freebsd] - "@next/swc-linux-arm-gnueabihf@13.2.4": - resolution: - { - integrity: sha512-7qA1++UY0fjprqtjBZaOA6cas/7GekpjVsZn/0uHvquuITFCdKGFCsKNBx3S0Rpxmx6WYo0GcmhNRM9ru08BGg==, - } - engines: { node: ">= 10" } + '@next/swc-linux-arm-gnueabihf@13.2.4': + resolution: {integrity: sha512-7qA1++UY0fjprqtjBZaOA6cas/7GekpjVsZn/0uHvquuITFCdKGFCsKNBx3S0Rpxmx6WYo0GcmhNRM9ru08BGg==} + engines: {node: '>= 10'} cpu: [arm] os: [linux] - "@next/swc-linux-arm64-gnu@13.2.4": - resolution: - { - integrity: sha512-xzYZdAeq883MwXgcwc72hqo/F/dwUxCukpDOkx/j1HTq/J0wJthMGjinN9wH5bPR98Mfeh1MZJ91WWPnZOedOg==, - } - engines: { node: ">= 10" } + '@next/swc-linux-arm64-gnu@13.2.4': + resolution: {integrity: sha512-xzYZdAeq883MwXgcwc72hqo/F/dwUxCukpDOkx/j1HTq/J0wJthMGjinN9wH5bPR98Mfeh1MZJ91WWPnZOedOg==} + engines: {node: '>= 10'} cpu: [arm64] os: [linux] - "@next/swc-linux-arm64-gnu@14.2.12": - resolution: - { - integrity: sha512-qBy7OiXOqZrdp88QEl2H4fWalMGnSCrr1agT/AVDndlyw2YJQA89f3ttR/AkEIP9EkBXXeGl6cC72/EZT5r6rw==, - } - engines: { node: ">= 10" } + '@next/swc-linux-arm64-gnu@14.2.12': + resolution: {integrity: sha512-qBy7OiXOqZrdp88QEl2H4fWalMGnSCrr1agT/AVDndlyw2YJQA89f3ttR/AkEIP9EkBXXeGl6cC72/EZT5r6rw==} + engines: {node: '>= 10'} cpu: [arm64] os: [linux] - "@next/swc-linux-arm64-musl@13.2.4": - resolution: - { - integrity: sha512-8rXr3WfmqSiYkb71qzuDP6I6R2T2tpkmf83elDN8z783N9nvTJf2E7eLx86wu2OJCi4T05nuxCsh4IOU3LQ5xw==, - } - engines: { node: ">= 10" } + '@next/swc-linux-arm64-musl@13.2.4': + resolution: {integrity: sha512-8rXr3WfmqSiYkb71qzuDP6I6R2T2tpkmf83elDN8z783N9nvTJf2E7eLx86wu2OJCi4T05nuxCsh4IOU3LQ5xw==} + engines: {node: '>= 10'} cpu: [arm64] os: [linux] - "@next/swc-linux-arm64-musl@14.2.12": - resolution: - { - integrity: sha512-EfD9L7o9biaQxjwP1uWXnk3vYZi64NVcKUN83hpVkKocB7ogJfyH2r7o1pPnMtir6gHZiGCeHKagJ0yrNSLNHw==, - } - engines: { node: ">= 10" } + '@next/swc-linux-arm64-musl@14.2.12': + resolution: {integrity: sha512-EfD9L7o9biaQxjwP1uWXnk3vYZi64NVcKUN83hpVkKocB7ogJfyH2r7o1pPnMtir6gHZiGCeHKagJ0yrNSLNHw==} + engines: {node: '>= 10'} cpu: [arm64] os: [linux] - "@next/swc-linux-x64-gnu@13.2.4": - resolution: - { - integrity: sha512-Ngxh51zGSlYJ4EfpKG4LI6WfquulNdtmHg1yuOYlaAr33KyPJp4HeN/tivBnAHcZkoNy0hh/SbwDyCnz5PFJQQ==, - } - engines: { node: ">= 10" } + '@next/swc-linux-x64-gnu@13.2.4': + resolution: {integrity: sha512-Ngxh51zGSlYJ4EfpKG4LI6WfquulNdtmHg1yuOYlaAr33KyPJp4HeN/tivBnAHcZkoNy0hh/SbwDyCnz5PFJQQ==} + engines: {node: '>= 10'} cpu: [x64] os: [linux] - "@next/swc-linux-x64-gnu@14.2.12": - resolution: - { - integrity: sha512-iQ+n2pxklJew9IpE47hE/VgjmljlHqtcD5UhZVeHICTPbLyrgPehaKf2wLRNjYH75udroBNCgrSSVSVpAbNoYw==, - } - engines: { node: ">= 10" } + '@next/swc-linux-x64-gnu@14.2.12': + resolution: {integrity: sha512-iQ+n2pxklJew9IpE47hE/VgjmljlHqtcD5UhZVeHICTPbLyrgPehaKf2wLRNjYH75udroBNCgrSSVSVpAbNoYw==} + engines: {node: '>= 10'} cpu: [x64] os: [linux] - "@next/swc-linux-x64-musl@13.2.4": - resolution: - { - integrity: sha512-gOvwIYoSxd+j14LOcvJr+ekd9fwYT1RyMAHOp7znA10+l40wkFiMONPLWiZuHxfRk+Dy7YdNdDh3ImumvL6VwA==, - } - engines: { node: ">= 10" } + '@next/swc-linux-x64-musl@13.2.4': + resolution: {integrity: sha512-gOvwIYoSxd+j14LOcvJr+ekd9fwYT1RyMAHOp7znA10+l40wkFiMONPLWiZuHxfRk+Dy7YdNdDh3ImumvL6VwA==} + engines: {node: '>= 10'} cpu: [x64] os: [linux] - "@next/swc-linux-x64-musl@14.2.12": - resolution: - { - integrity: sha512-rFkUkNwcQ0ODn7cxvcVdpHlcOpYxMeyMfkJuzaT74xjAa5v4fxP4xDk5OoYmPi8QNLDs3UgZPMSBmpBuv9zKWA==, - } - engines: { node: ">= 10" } + '@next/swc-linux-x64-musl@14.2.12': + resolution: {integrity: sha512-rFkUkNwcQ0ODn7cxvcVdpHlcOpYxMeyMfkJuzaT74xjAa5v4fxP4xDk5OoYmPi8QNLDs3UgZPMSBmpBuv9zKWA==} + engines: {node: '>= 10'} cpu: [x64] os: [linux] - "@next/swc-win32-arm64-msvc@13.2.4": - resolution: - { - integrity: sha512-q3NJzcfClgBm4HvdcnoEncmztxrA5GXqKeiZ/hADvC56pwNALt3ngDC6t6qr1YW9V/EPDxCYeaX4zYxHciW4Dw==, - } - engines: { node: ">= 10" } + '@next/swc-win32-arm64-msvc@13.2.4': + resolution: {integrity: sha512-q3NJzcfClgBm4HvdcnoEncmztxrA5GXqKeiZ/hADvC56pwNALt3ngDC6t6qr1YW9V/EPDxCYeaX4zYxHciW4Dw==} + engines: {node: '>= 10'} cpu: [arm64] os: [win32] - "@next/swc-win32-arm64-msvc@14.2.12": - resolution: - { - integrity: sha512-PQFYUvwtHs/u0K85SG4sAdDXYIPXpETf9mcEjWc0R4JmjgMKSDwIU/qfZdavtP6MPNiMjuKGXHCtyhR/M5zo8g==, - } - engines: { node: ">= 10" } + '@next/swc-win32-arm64-msvc@14.2.12': + resolution: {integrity: sha512-PQFYUvwtHs/u0K85SG4sAdDXYIPXpETf9mcEjWc0R4JmjgMKSDwIU/qfZdavtP6MPNiMjuKGXHCtyhR/M5zo8g==} + engines: {node: '>= 10'} cpu: [arm64] os: [win32] - "@next/swc-win32-ia32-msvc@13.2.4": - resolution: - { - integrity: sha512-/eZ5ncmHUYtD2fc6EUmAIZlAJnVT2YmxDsKs1Ourx0ttTtvtma/WKlMV5NoUsyOez0f9ExLyOpeCoz5aj+MPXw==, - } - engines: { node: ">= 10" } + '@next/swc-win32-ia32-msvc@13.2.4': + resolution: {integrity: sha512-/eZ5ncmHUYtD2fc6EUmAIZlAJnVT2YmxDsKs1Ourx0ttTtvtma/WKlMV5NoUsyOez0f9ExLyOpeCoz5aj+MPXw==} + engines: {node: '>= 10'} cpu: [ia32] os: [win32] - "@next/swc-win32-ia32-msvc@14.2.12": - resolution: - { - integrity: sha512-FAj2hMlcbeCV546eU2tEv41dcJb4NeqFlSXU/xL/0ehXywHnNpaYajOUvn3P8wru5WyQe6cTZ8fvckj/2XN4Vw==, - } - engines: { node: ">= 10" } + '@next/swc-win32-ia32-msvc@14.2.12': + resolution: {integrity: sha512-FAj2hMlcbeCV546eU2tEv41dcJb4NeqFlSXU/xL/0ehXywHnNpaYajOUvn3P8wru5WyQe6cTZ8fvckj/2XN4Vw==} + engines: {node: '>= 10'} cpu: [ia32] os: [win32] - "@next/swc-win32-x64-msvc@13.2.4": - resolution: - { - integrity: sha512-0MffFmyv7tBLlji01qc0IaPP/LVExzvj7/R5x1Jph1bTAIj4Vu81yFQWHHQAP6r4ff9Ukj1mBK6MDNVXm7Tcvw==, - } - engines: { node: ">= 10" } + '@next/swc-win32-x64-msvc@13.2.4': + resolution: {integrity: sha512-0MffFmyv7tBLlji01qc0IaPP/LVExzvj7/R5x1Jph1bTAIj4Vu81yFQWHHQAP6r4ff9Ukj1mBK6MDNVXm7Tcvw==} + engines: {node: '>= 10'} cpu: [x64] os: [win32] - "@next/swc-win32-x64-msvc@14.2.12": - resolution: - { - integrity: sha512-yu8QvV53sBzoIVRHsxCHqeuS8jYq6Lrmdh0briivuh+Brsp6xjg80MAozUsBTAV9KNmY08KlX0KYTWz1lbPzEg==, - } - engines: { node: ">= 10" } + '@next/swc-win32-x64-msvc@14.2.12': + resolution: {integrity: sha512-yu8QvV53sBzoIVRHsxCHqeuS8jYq6Lrmdh0briivuh+Brsp6xjg80MAozUsBTAV9KNmY08KlX0KYTWz1lbPzEg==} + engines: {node: '>= 10'} cpu: [x64] os: [win32] - "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": - resolution: - { - integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==, - } - - "@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.0": - resolution: - { - integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==, - } - - "@noble/ed25519@1.7.3": - resolution: - { - integrity: sha512-iR8GBkDt0Q3GyaVcIu7mSsVIqnFbkbRzGLWlvhwunacoLwt4J3swfKhfaM6rN6WY+TBGoYT1GtT1mIh2/jGbRQ==, - } - - "@noble/hashes@1.1.5": - resolution: - { - integrity: sha512-LTMZiiLc+V4v1Yi16TD6aX2gmtKszNye0pQgbaLqkvhIqP7nVsSaJsWloGQjJfJ8offaoP5GtX3yY5swbcJxxQ==, - } - - "@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/secp256k1@1.7.1": - resolution: - { - integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==, - } - - "@node-ipc/js-queue@2.0.3": - resolution: - { - integrity: sha512-fL1wpr8hhD5gT2dA1qifeVaoDFlQR5es8tFuKqjHX+kdOtdNHnxkVZbtIrR2rxnMFvehkjaZRNV2H/gPXlb0hw==, - } - engines: { node: ">=1.0.0" } - - "@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" } - - "@npmcli/fs@1.1.1": - resolution: - { - integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==, - } - - "@npmcli/fs@3.1.1": - resolution: - { - integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } - - "@npmcli/move-file@1.1.2": - resolution: - { - integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==, - } - engines: { node: ">=10" } + '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': + resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} + + '@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.0': + resolution: {integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==} + + '@noble/ed25519@1.7.3': + resolution: {integrity: sha512-iR8GBkDt0Q3GyaVcIu7mSsVIqnFbkbRzGLWlvhwunacoLwt4J3swfKhfaM6rN6WY+TBGoYT1GtT1mIh2/jGbRQ==} + + '@noble/hashes@1.1.5': + resolution: {integrity: sha512-LTMZiiLc+V4v1Yi16TD6aX2gmtKszNye0pQgbaLqkvhIqP7nVsSaJsWloGQjJfJ8offaoP5GtX3yY5swbcJxxQ==} + + '@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/secp256k1@1.7.1': + resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==} + + '@node-ipc/js-queue@2.0.3': + resolution: {integrity: sha512-fL1wpr8hhD5gT2dA1qifeVaoDFlQR5es8tFuKqjHX+kdOtdNHnxkVZbtIrR2rxnMFvehkjaZRNV2H/gPXlb0hw==} + engines: {node: '>=1.0.0'} + + '@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'} + + '@npmcli/fs@1.1.1': + resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==} + + '@npmcli/fs@3.1.1': + resolution: {integrity: sha512-q9CRWjpHCMIh5sVyefoD1cA7PkvILqCZsnSOEUUivORLjxCO/Irmue2DprETiNgEqktDBZaM1Bi+jrarx1XdCg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + '@npmcli/move-file@1.1.2': + resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==} + engines: {node: '>=10'} deprecated: This functionality has been moved to @npmcli/fs - "@octokit/auth-app@6.1.1": - resolution: - { - integrity: sha512-VrTtzRpyuT5nYGUWeGWQqH//hqEZDV+/yb6+w5wmWpmmUA1Tx950XsAc2mBBfvusfcdF2E7w8jZ1r1WwvfZ9pA==, - } - engines: { node: ">= 18" } - - "@octokit/auth-oauth-app@7.1.0": - resolution: - { - integrity: sha512-w+SyJN/b0l/HEb4EOPRudo7uUOSW51jcK1jwLa+4r7PA8FPFpoxEnHBHMITqCsc/3Vo2qqFjgQfz/xUUvsSQnA==, - } - engines: { node: ">= 18" } - - "@octokit/auth-oauth-device@6.1.0": - resolution: - { - integrity: sha512-FNQ7cb8kASufd6Ej4gnJ3f1QB5vJitkoV1O0/g6e6lUsQ7+VsSNRHRmFScN2tV4IgKA12frrr/cegUs0t+0/Lw==, - } - engines: { node: ">= 18" } - - "@octokit/auth-oauth-user@4.1.0": - resolution: - { - integrity: sha512-FrEp8mtFuS/BrJyjpur+4GARteUCrPeR/tZJzD8YourzoVhRics7u7we/aDcKv+yywRNwNi/P4fRi631rG/OyQ==, - } - engines: { node: ">= 18" } - - "@octokit/auth-token@2.5.0": - resolution: - { - integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==, - } - - "@octokit/auth-token@4.0.0": - resolution: - { - integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==, - } - engines: { node: ">= 18" } - - "@octokit/auth-unauthenticated@5.0.1": - resolution: - { - integrity: sha512-oxeWzmBFxWd+XolxKTc4zr+h3mt+yofn4r7OfoIkR/Cj/o70eEGmPsFbueyJE2iBAGpjgTnEOKM3pnuEGVmiqg==, - } - engines: { node: ">= 18" } - - "@octokit/core@3.6.0": - resolution: - { - integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==, - } - - "@octokit/core@5.1.0": - resolution: - { - integrity: sha512-BDa2VAMLSh3otEiaMJ/3Y36GU4qf6GI+VivQ/P41NC6GHcdxpKlqV0ikSZ5gdQsmS3ojXeRx5vasgNTinF0Q4g==, - } - engines: { node: ">= 18" } - - "@octokit/endpoint@6.0.12": - resolution: - { - integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==, - } - - "@octokit/endpoint@9.0.4": - resolution: - { - integrity: sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==, - } - engines: { node: ">= 18" } - - "@octokit/graphql@4.8.0": - resolution: - { - integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==, - } - - "@octokit/graphql@7.0.2": - resolution: - { - integrity: sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==, - } - engines: { node: ">= 18" } - - "@octokit/oauth-authorization-url@6.0.2": - resolution: - { - integrity: sha512-CdoJukjXXxqLNK4y/VOiVzQVjibqoj/xHgInekviUJV73y/BSIcwvJ/4aNHPBPKcPWFnd4/lO9uqRV65jXhcLA==, - } - engines: { node: ">= 18" } - - "@octokit/oauth-methods@4.1.0": - resolution: - { - integrity: sha512-4tuKnCRecJ6CG6gr0XcEXdZtkTDbfbnD5oaHBmLERTjTMZNi2CbfEHZxPU41xXLDG4DfKf+sonu00zvKI9NSbw==, - } - engines: { node: ">= 18" } - - "@octokit/openapi-types@12.11.0": - resolution: - { - integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==, - } - - "@octokit/openapi-types@20.0.0": - resolution: - { - integrity: sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==, - } - - "@octokit/openapi-types@22.2.0": - resolution: - { - integrity: sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg==, - } - - "@octokit/plugin-enterprise-compatibility@4.1.0": - resolution: - { - integrity: sha512-a8QehVu9Iy4k+m2XgG2rrF4m9vhlRIaefOMr0yJzgQCt4KpiTj5mZVrzSwagyOovkJdD0yDolQazBQZqPWTFSQ==, - } - engines: { node: ">= 18" } - - "@octokit/plugin-paginate-rest@2.21.3": - resolution: - { - integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==, - } - peerDependencies: - "@octokit/core": ">=2" - - "@octokit/plugin-paginate-rest@9.2.1": - resolution: - { - integrity: sha512-wfGhE/TAkXZRLjksFXuDZdmGnJQHvtU/joFQdweXUgzo1XwvBCD4o4+75NtFfjfLK5IwLf9vHTfSiU3sLRYpRw==, - } - engines: { node: ">= 18" } - peerDependencies: - "@octokit/core": "5" - - "@octokit/plugin-request-log@1.0.4": - resolution: - { - integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==, - } - peerDependencies: - "@octokit/core": ">=3" - - "@octokit/plugin-rest-endpoint-methods@10.4.1": - resolution: - { - integrity: sha512-xV1b+ceKV9KytQe3zCVqjg+8GTGfDYwaT1ATU5isiUyVtlVAO3HNdzpS4sr4GBx4hxQ46s7ITtZrAsxG22+rVg==, - } - engines: { node: ">= 18" } - peerDependencies: - "@octokit/core": "5" - - "@octokit/plugin-rest-endpoint-methods@5.16.2": - resolution: - { - integrity: sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==, - } - peerDependencies: - "@octokit/core": ">=3" - - "@octokit/plugin-retry@6.0.1": - resolution: - { - integrity: sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==, - } - engines: { node: ">= 18" } - peerDependencies: - "@octokit/core": ">=5" - - "@octokit/plugin-throttling@8.2.0": - resolution: - { - integrity: sha512-nOpWtLayKFpgqmgD0y3GqXafMFuKcA4tRPZIfu7BArd2lEZeb1988nhWhwx4aZWmjDmUfdgVf7W+Tt4AmvRmMQ==, - } - engines: { node: ">= 18" } - peerDependencies: - "@octokit/core": ^5.0.0 - - "@octokit/request-error@2.1.0": - resolution: - { - integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==, - } - - "@octokit/request-error@5.0.1": - resolution: - { - integrity: sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==, - } - engines: { node: ">= 18" } - - "@octokit/request-error@5.1.0": - resolution: - { - integrity: sha512-GETXfE05J0+7H2STzekpKObFe765O5dlAKUTLNGeH+x47z7JjXHfsHKo5z21D/o/IOZTUEI6nyWyR+bZVP/n5Q==, - } - engines: { node: ">= 18" } - - "@octokit/request@5.6.3": - resolution: - { - integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==, - } - - "@octokit/request@8.2.0": - resolution: - { - integrity: sha512-exPif6x5uwLqv1N1irkLG1zZNJkOtj8bZxuVHd71U5Ftuxf2wGNvAJyNBcPbPC+EBzwYEbBDdSFb8EPcjpYxPQ==, - } - engines: { node: ">= 18" } - - "@octokit/request@8.4.0": - resolution: - { - integrity: sha512-9Bb014e+m2TgBeEJGEbdplMVWwPmL1FPtggHQRkV+WVsMggPtEkLKPlcVYm/o8xKLkpJ7B+6N8WfQMtDLX2Dpw==, - } - engines: { node: ">= 18" } - - "@octokit/rest@18.12.0": - resolution: - { - integrity: sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==, - } - - "@octokit/types@12.6.0": - resolution: - { - integrity: sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==, - } - - "@octokit/types@13.5.0": - resolution: - { - integrity: sha512-HdqWTf5Z3qwDVlzCrP8UJquMwunpDiMPt5er+QjGzL4hqr/vBVY/MauQgS1xWxCDT1oMx1EULyqxncdCY/NVSQ==, - } - - "@octokit/types@6.41.0": - resolution: - { - integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==, - } - - "@octokit/webhooks-methods@4.1.0": - resolution: - { - integrity: sha512-zoQyKw8h9STNPqtm28UGOYFE7O6D4Il8VJwhAtMHFt2C4L0VQT1qGKLeefUOqHNs1mNRYSadVv7x0z8U2yyeWQ==, - } - engines: { node: ">= 18" } - - "@octokit/webhooks-types@7.4.0": - resolution: - { - integrity: sha512-FE2V+QZ2UYlh+9wWd5BPLNXG+J/XUD/PPq0ovS+nCcGX4+3qVbi3jYOmCTW48hg9SBBLtInx9+o7fFt4H5iP0Q==, - } - - "@octokit/webhooks@12.2.0": - resolution: - { - integrity: sha512-CyuLJ0/P7bKZ+kIYw+fnkeVdhUzNuDKgNSI7pU/m7Nod0T7kP+s4s2f0pNmG9HL8/RZN1S0ZWTDll3VTMrFLAw==, - } - engines: { node: ">= 18" } - - "@open-draft/deferred-promise@2.2.0": - resolution: - { - integrity: sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==, - } - - "@open-draft/logger@0.3.0": - resolution: - { - integrity: sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==, - } - - "@open-draft/until@2.1.0": - resolution: - { - integrity: sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==, - } - - "@open-rpc/client-js@1.8.1": - resolution: - { - integrity: sha512-vV+Hetl688nY/oWI9IFY0iKDrWuLdYhf7OIKI6U1DcnJV7r4gAgwRJjEr1QVYszUc0gjkHoQJzqevmXMGLyA0g==, - } - - "@opentelemetry/api-logs@0.52.1": - resolution: - { - integrity: sha512-qnSqB2DQ9TPP96dl8cDubDvrUyWc0/sK81xHTK8eSUspzDM3bsewX903qclQFvVhgStjRWdC5bLb3kQqMkfV5A==, - } - engines: { node: ">=14" } - - "@opentelemetry/api@1.8.0": - resolution: - { - integrity: sha512-I/s6F7yKUDdtMsoBWXJe8Qz40Tui5vsuKCWJEWVL+5q9sSWRzzx6v2KeNsOBEwd94j0eWkpWCH4yB6rZg9Mf0w==, - } - engines: { node: ">=8.0.0" } - - "@opentelemetry/api@1.9.0": - resolution: - { - integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==, - } - engines: { node: ">=8.0.0" } - - "@opentelemetry/context-async-hooks@1.25.1": - resolution: - { - integrity: sha512-UW/ge9zjvAEmRWVapOP0qyCvPulWU6cQxGxDbWEFfGOj1VBBZAuOqTo3X6yWmDTD3Xe15ysCZChHncr2xFMIfQ==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ">=1.0.0 <1.10.0" - - "@opentelemetry/core@1.25.1": - resolution: - { - integrity: sha512-GeT/l6rBYWVQ4XArluLVB6WWQ8flHbdb6r2FCHC3smtdOAbrJBIv35tpV/yp9bmYUJf+xmZpu9DRTIeJVhFbEQ==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ">=1.0.0 <1.10.0" - - "@opentelemetry/instrumentation-connect@0.37.0": - resolution: - { - integrity: sha512-SeQktDIH5rNzjiEiazWiJAIXkmnLOnNV7wwHpahrqE0Ph+Z3heqMfxRtoMtbdJSIYLfcNZYO51AjxZ00IXufdw==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.3.0 - - "@opentelemetry/instrumentation-express@0.40.1": - resolution: - { - integrity: sha512-+RKMvVe2zw3kIXRup9c1jFu3T4d0fs5aKy015TpiMyoCKX1UMu3Z0lfgYtuyiSTANvg5hZnDbWmQmqSPj9VTvg==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.3.0 - - "@opentelemetry/instrumentation-fastify@0.37.0": - resolution: - { - integrity: sha512-WRjwzNZgupSzbEYvo9s+QuHJRqZJjVdNxSEpGBwWK8RKLlHGwGVAu0gcc2gPamJWUJsGqPGvahAPWM18ZkWj6A==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.3.0 - - "@opentelemetry/instrumentation-graphql@0.41.0": - resolution: - { - integrity: sha512-R/gXeljgIhaRDKquVkKYT5QHPnFouM8ooyePZEP0kqyaVAedtR1V7NfAUJbxfTG5fBQa5wdmLjvu63+tzRXZCA==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.3.0 - - "@opentelemetry/instrumentation-hapi@0.39.0": - resolution: - { - integrity: sha512-ik2nA9Yj2s2ay+aNY+tJsKCsEx6Tsc2g/MK0iWBW5tibwrWKTy1pdVt5sB3kd5Gkimqj23UV5+FH2JFcQLeKug==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.3.0 - - "@opentelemetry/instrumentation-http@0.52.1": - resolution: - { - integrity: sha512-dG/aevWhaP+7OLv4BQQSEKMJv8GyeOp3Wxl31NHqE8xo9/fYMfEljiZphUHIfyg4gnZ9swMyWjfOQs5GUQe54Q==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.3.0 - - "@opentelemetry/instrumentation-ioredis@0.41.0": - resolution: - { - integrity: sha512-rxiLloU8VyeJGm5j2fZS8ShVdB82n7VNP8wTwfUQqDwRfHCnkzGr+buKoxuhGD91gtwJ91RHkjHA1Eg6RqsUTg==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.3.0 - - "@opentelemetry/instrumentation-koa@0.41.0": - resolution: - { - integrity: sha512-mbPnDt7ELvpM2S0vixYUsde7122lgegLOJQxx8iJQbB8YHal/xnTh9v7IfArSVzIDo+E+080hxZyUZD4boOWkw==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.3.0 - - "@opentelemetry/instrumentation-mongodb@0.45.0": - resolution: - { - integrity: sha512-xnZP9+ayeB1JJyNE9cIiwhOJTzNEsRhXVdLgfzmrs48Chhhk026mQdM5CITfyXSCfN73FGAIB8d91+pflJEfWQ==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.3.0 - - "@opentelemetry/instrumentation-mongoose@0.39.0": - resolution: - { - integrity: sha512-J1r66A7zJklPPhMtrFOO7/Ud2p0Pv5u8+r23Cd1JUH6fYPmftNJVsLp2urAt6PHK4jVqpP/YegN8wzjJ2mZNPQ==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.3.0 - - "@opentelemetry/instrumentation-mysql2@0.39.0": - resolution: - { - integrity: sha512-Iypuq2z6TCfriAXCIZjRq8GTFCKhQv5SpXbmI+e60rYdXw8NHtMH4NXcGF0eKTuoCsC59IYSTUvDQYDKReaszA==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.3.0 - - "@opentelemetry/instrumentation-mysql@0.39.0": - resolution: - { - integrity: sha512-8snHPh83rhrDf31v9Kq0Nf+ts8hdr7NguuszRqZomZBHgE0+UyXZSkXHAAFZoBPPRMGyM68uaFE5hVtFl+wOcA==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.3.0 - - "@opentelemetry/instrumentation-nestjs-core@0.38.0": - resolution: - { - integrity: sha512-M381Df1dM8aqihZz2yK+ugvMFK5vlHG/835dc67Sx2hH4pQEQYDA2PpFPTgc9AYYOydQaj7ClFQunESimjXDgg==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.3.0 - - "@opentelemetry/instrumentation-pg@0.42.0": - resolution: - { - integrity: sha512-sjgcM8CswYy8zxHgXv4RAZ09DlYhQ+9TdlourUs63Df/ek5RrB1ZbjznqW7PB6c3TyJJmX6AVtPTjAsROovEjA==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.3.0 - - "@opentelemetry/instrumentation-redis-4@0.40.0": - resolution: - { - integrity: sha512-0ieQYJb6yl35kXA75LQUPhHtGjtQU9L85KlWa7d4ohBbk/iQKZ3X3CFl5jC5vNMq/GGPB3+w3IxNvALlHtrp7A==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.3.0 - - "@opentelemetry/instrumentation@0.43.0": - resolution: - { - integrity: sha512-S1uHE+sxaepgp+t8lvIDuRgyjJWisAb733198kwQTUc9ZtYQ2V2gmyCtR1x21ePGVLoMiX/NWY7WA290hwkjJQ==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.3.0 - - "@opentelemetry/instrumentation@0.52.1": - resolution: - { - integrity: sha512-uXJbYU/5/MBHjMp1FqrILLRuiJCs3Ofk0MeRDk8g1S1gD47U8X3JnSwcMO1rtRo1x1a7zKaQHaoYu49p/4eSKw==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.3.0 - - "@opentelemetry/redis-common@0.36.2": - resolution: - { - integrity: sha512-faYX1N0gpLhej/6nyp6bgRjzAKXn5GOEMYY7YhciSfCoITAktLUtQ36d24QEWNA1/WA1y6qQunCe0OhHRkVl9g==, - } - engines: { node: ">=14" } - - "@opentelemetry/resources@1.25.1": - resolution: - { - integrity: sha512-pkZT+iFYIZsVn6+GzM0kSX+u3MSLCY9md+lIJOoKl/P+gJFfxJte/60Usdp8Ce4rOs8GduUpSPNe1ddGyDT1sQ==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ">=1.0.0 <1.10.0" - - "@opentelemetry/sdk-metrics@1.25.1": - resolution: - { - integrity: sha512-9Mb7q5ioFL4E4dDrc4wC/A3NTHDat44v4I3p2pLPSxRvqUbDIQyMVr9uK+EU69+HWhlET1VaSrRzwdckWqY15Q==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ">=1.3.0 <1.10.0" - - "@opentelemetry/sdk-trace-base@1.25.1": - resolution: - { - integrity: sha512-C8k4hnEbc5FamuZQ92nTOp8X/diCY56XUTnMiv9UTuJitCzaNNHAVsdm5+HLCdI8SLQsLWIrG38tddMxLVoftw==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ">=1.0.0 <1.10.0" - - "@opentelemetry/semantic-conventions@1.25.1": - resolution: - { - integrity: sha512-ZDjMJJQRlyk8A1KZFCc+bCbsyrn1wTwdNt56F7twdfUfnHUZUq77/WfONCj8p72NZOyP7pNTdUWSTYC3GTbuuQ==, - } - engines: { node: ">=14" } - - "@opentelemetry/sql-common@0.40.1": - resolution: - { - integrity: sha512-nSDlnHSqzC3pXn/wZEZVLuAuJ1MYMXPBwtv2qAbCa3847SaHItdE7SzUq/Jtb0KZmh1zfAbNi3AAMjztTT4Ugg==, - } - engines: { node: ">=14" } - peerDependencies: - "@opentelemetry/api": ^1.1.0 - - "@pkgjs/parseargs@0.11.0": - resolution: - { - integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==, - } - engines: { node: ">=14" } - - "@pkgr/core@0.1.1": - resolution: - { - integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==, - } - engines: { node: ^12.20.0 || ^14.18.0 || >=16.0.0 } - - "@playwright/test@1.40.1": - resolution: - { - integrity: sha512-EaaawMTOeEItCRvfmkI9v6rBkF1svM8wjl/YPRrg2N2Wmp+4qJYkWtJsbew1szfKKDm6fPLy4YAanBhIlf9dWw==, - } - engines: { node: ">=16" } + '@octokit/auth-app@6.1.1': + resolution: {integrity: sha512-VrTtzRpyuT5nYGUWeGWQqH//hqEZDV+/yb6+w5wmWpmmUA1Tx950XsAc2mBBfvusfcdF2E7w8jZ1r1WwvfZ9pA==} + engines: {node: '>= 18'} + + '@octokit/auth-oauth-app@7.1.0': + resolution: {integrity: sha512-w+SyJN/b0l/HEb4EOPRudo7uUOSW51jcK1jwLa+4r7PA8FPFpoxEnHBHMITqCsc/3Vo2qqFjgQfz/xUUvsSQnA==} + engines: {node: '>= 18'} + + '@octokit/auth-oauth-device@6.1.0': + resolution: {integrity: sha512-FNQ7cb8kASufd6Ej4gnJ3f1QB5vJitkoV1O0/g6e6lUsQ7+VsSNRHRmFScN2tV4IgKA12frrr/cegUs0t+0/Lw==} + engines: {node: '>= 18'} + + '@octokit/auth-oauth-user@4.1.0': + resolution: {integrity: sha512-FrEp8mtFuS/BrJyjpur+4GARteUCrPeR/tZJzD8YourzoVhRics7u7we/aDcKv+yywRNwNi/P4fRi631rG/OyQ==} + engines: {node: '>= 18'} + + '@octokit/auth-token@2.5.0': + resolution: {integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==} + + '@octokit/auth-token@4.0.0': + resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==} + engines: {node: '>= 18'} + + '@octokit/auth-unauthenticated@5.0.1': + resolution: {integrity: sha512-oxeWzmBFxWd+XolxKTc4zr+h3mt+yofn4r7OfoIkR/Cj/o70eEGmPsFbueyJE2iBAGpjgTnEOKM3pnuEGVmiqg==} + engines: {node: '>= 18'} + + '@octokit/core@3.6.0': + resolution: {integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==} + + '@octokit/core@5.1.0': + resolution: {integrity: sha512-BDa2VAMLSh3otEiaMJ/3Y36GU4qf6GI+VivQ/P41NC6GHcdxpKlqV0ikSZ5gdQsmS3ojXeRx5vasgNTinF0Q4g==} + engines: {node: '>= 18'} + + '@octokit/endpoint@6.0.12': + resolution: {integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==} + + '@octokit/endpoint@9.0.4': + resolution: {integrity: sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==} + engines: {node: '>= 18'} + + '@octokit/graphql@4.8.0': + resolution: {integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==} + + '@octokit/graphql@7.0.2': + resolution: {integrity: sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==} + engines: {node: '>= 18'} + + '@octokit/oauth-authorization-url@6.0.2': + resolution: {integrity: sha512-CdoJukjXXxqLNK4y/VOiVzQVjibqoj/xHgInekviUJV73y/BSIcwvJ/4aNHPBPKcPWFnd4/lO9uqRV65jXhcLA==} + engines: {node: '>= 18'} + + '@octokit/oauth-methods@4.1.0': + resolution: {integrity: sha512-4tuKnCRecJ6CG6gr0XcEXdZtkTDbfbnD5oaHBmLERTjTMZNi2CbfEHZxPU41xXLDG4DfKf+sonu00zvKI9NSbw==} + engines: {node: '>= 18'} + + '@octokit/openapi-types@12.11.0': + resolution: {integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==} + + '@octokit/openapi-types@20.0.0': + resolution: {integrity: sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==} + + '@octokit/openapi-types@22.2.0': + resolution: {integrity: sha512-QBhVjcUa9W7Wwhm6DBFu6ZZ+1/t/oYxqc2tp81Pi41YNuJinbFRx8B133qVOrAaBbF7D/m0Et6f9/pZt9Rc+tg==} + + '@octokit/plugin-enterprise-compatibility@4.1.0': + resolution: {integrity: sha512-a8QehVu9Iy4k+m2XgG2rrF4m9vhlRIaefOMr0yJzgQCt4KpiTj5mZVrzSwagyOovkJdD0yDolQazBQZqPWTFSQ==} + engines: {node: '>= 18'} + + '@octokit/plugin-paginate-rest@2.21.3': + resolution: {integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==} + peerDependencies: + '@octokit/core': '>=2' + + '@octokit/plugin-paginate-rest@9.2.1': + resolution: {integrity: sha512-wfGhE/TAkXZRLjksFXuDZdmGnJQHvtU/joFQdweXUgzo1XwvBCD4o4+75NtFfjfLK5IwLf9vHTfSiU3sLRYpRw==} + engines: {node: '>= 18'} + peerDependencies: + '@octokit/core': '5' + + '@octokit/plugin-request-log@1.0.4': + resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==} + peerDependencies: + '@octokit/core': '>=3' + + '@octokit/plugin-rest-endpoint-methods@10.4.1': + resolution: {integrity: sha512-xV1b+ceKV9KytQe3zCVqjg+8GTGfDYwaT1ATU5isiUyVtlVAO3HNdzpS4sr4GBx4hxQ46s7ITtZrAsxG22+rVg==} + engines: {node: '>= 18'} + peerDependencies: + '@octokit/core': '5' + + '@octokit/plugin-rest-endpoint-methods@5.16.2': + resolution: {integrity: sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==} + peerDependencies: + '@octokit/core': '>=3' + + '@octokit/plugin-retry@6.0.1': + resolution: {integrity: sha512-SKs+Tz9oj0g4p28qkZwl/topGcb0k0qPNX/i7vBKmDsjoeqnVfFUquqrE/O9oJY7+oLzdCtkiWSXLpLjvl6uog==} + engines: {node: '>= 18'} + peerDependencies: + '@octokit/core': '>=5' + + '@octokit/plugin-throttling@8.2.0': + resolution: {integrity: sha512-nOpWtLayKFpgqmgD0y3GqXafMFuKcA4tRPZIfu7BArd2lEZeb1988nhWhwx4aZWmjDmUfdgVf7W+Tt4AmvRmMQ==} + engines: {node: '>= 18'} + peerDependencies: + '@octokit/core': ^5.0.0 + + '@octokit/request-error@2.1.0': + resolution: {integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==} + + '@octokit/request-error@5.0.1': + resolution: {integrity: sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==} + engines: {node: '>= 18'} + + '@octokit/request-error@5.1.0': + resolution: {integrity: sha512-GETXfE05J0+7H2STzekpKObFe765O5dlAKUTLNGeH+x47z7JjXHfsHKo5z21D/o/IOZTUEI6nyWyR+bZVP/n5Q==} + engines: {node: '>= 18'} + + '@octokit/request@5.6.3': + resolution: {integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==} + + '@octokit/request@8.2.0': + resolution: {integrity: sha512-exPif6x5uwLqv1N1irkLG1zZNJkOtj8bZxuVHd71U5Ftuxf2wGNvAJyNBcPbPC+EBzwYEbBDdSFb8EPcjpYxPQ==} + engines: {node: '>= 18'} + + '@octokit/request@8.4.0': + resolution: {integrity: sha512-9Bb014e+m2TgBeEJGEbdplMVWwPmL1FPtggHQRkV+WVsMggPtEkLKPlcVYm/o8xKLkpJ7B+6N8WfQMtDLX2Dpw==} + engines: {node: '>= 18'} + + '@octokit/rest@18.12.0': + resolution: {integrity: sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==} + + '@octokit/types@12.6.0': + resolution: {integrity: sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==} + + '@octokit/types@13.5.0': + resolution: {integrity: sha512-HdqWTf5Z3qwDVlzCrP8UJquMwunpDiMPt5er+QjGzL4hqr/vBVY/MauQgS1xWxCDT1oMx1EULyqxncdCY/NVSQ==} + + '@octokit/types@6.41.0': + resolution: {integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==} + + '@octokit/webhooks-methods@4.1.0': + resolution: {integrity: sha512-zoQyKw8h9STNPqtm28UGOYFE7O6D4Il8VJwhAtMHFt2C4L0VQT1qGKLeefUOqHNs1mNRYSadVv7x0z8U2yyeWQ==} + engines: {node: '>= 18'} + + '@octokit/webhooks-types@7.4.0': + resolution: {integrity: sha512-FE2V+QZ2UYlh+9wWd5BPLNXG+J/XUD/PPq0ovS+nCcGX4+3qVbi3jYOmCTW48hg9SBBLtInx9+o7fFt4H5iP0Q==} + + '@octokit/webhooks@12.2.0': + resolution: {integrity: sha512-CyuLJ0/P7bKZ+kIYw+fnkeVdhUzNuDKgNSI7pU/m7Nod0T7kP+s4s2f0pNmG9HL8/RZN1S0ZWTDll3VTMrFLAw==} + engines: {node: '>= 18'} + + '@open-draft/deferred-promise@2.2.0': + resolution: {integrity: sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==} + + '@open-draft/logger@0.3.0': + resolution: {integrity: sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==} + + '@open-draft/until@2.1.0': + resolution: {integrity: sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==} + + '@open-rpc/client-js@1.8.1': + resolution: {integrity: sha512-vV+Hetl688nY/oWI9IFY0iKDrWuLdYhf7OIKI6U1DcnJV7r4gAgwRJjEr1QVYszUc0gjkHoQJzqevmXMGLyA0g==} + + '@opentelemetry/api-logs@0.52.1': + resolution: {integrity: sha512-qnSqB2DQ9TPP96dl8cDubDvrUyWc0/sK81xHTK8eSUspzDM3bsewX903qclQFvVhgStjRWdC5bLb3kQqMkfV5A==} + engines: {node: '>=14'} + + '@opentelemetry/api@1.8.0': + resolution: {integrity: sha512-I/s6F7yKUDdtMsoBWXJe8Qz40Tui5vsuKCWJEWVL+5q9sSWRzzx6v2KeNsOBEwd94j0eWkpWCH4yB6rZg9Mf0w==} + engines: {node: '>=8.0.0'} + + '@opentelemetry/api@1.9.0': + resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==} + engines: {node: '>=8.0.0'} + + '@opentelemetry/context-async-hooks@1.25.1': + resolution: {integrity: sha512-UW/ge9zjvAEmRWVapOP0qyCvPulWU6cQxGxDbWEFfGOj1VBBZAuOqTo3X6yWmDTD3Xe15ysCZChHncr2xFMIfQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.10.0' + + '@opentelemetry/core@1.25.1': + resolution: {integrity: sha512-GeT/l6rBYWVQ4XArluLVB6WWQ8flHbdb6r2FCHC3smtdOAbrJBIv35tpV/yp9bmYUJf+xmZpu9DRTIeJVhFbEQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.10.0' + + '@opentelemetry/instrumentation-connect@0.37.0': + resolution: {integrity: sha512-SeQktDIH5rNzjiEiazWiJAIXkmnLOnNV7wwHpahrqE0Ph+Z3heqMfxRtoMtbdJSIYLfcNZYO51AjxZ00IXufdw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-express@0.40.1': + resolution: {integrity: sha512-+RKMvVe2zw3kIXRup9c1jFu3T4d0fs5aKy015TpiMyoCKX1UMu3Z0lfgYtuyiSTANvg5hZnDbWmQmqSPj9VTvg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-fastify@0.37.0': + resolution: {integrity: sha512-WRjwzNZgupSzbEYvo9s+QuHJRqZJjVdNxSEpGBwWK8RKLlHGwGVAu0gcc2gPamJWUJsGqPGvahAPWM18ZkWj6A==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-graphql@0.41.0': + resolution: {integrity: sha512-R/gXeljgIhaRDKquVkKYT5QHPnFouM8ooyePZEP0kqyaVAedtR1V7NfAUJbxfTG5fBQa5wdmLjvu63+tzRXZCA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-hapi@0.39.0': + resolution: {integrity: sha512-ik2nA9Yj2s2ay+aNY+tJsKCsEx6Tsc2g/MK0iWBW5tibwrWKTy1pdVt5sB3kd5Gkimqj23UV5+FH2JFcQLeKug==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-http@0.52.1': + resolution: {integrity: sha512-dG/aevWhaP+7OLv4BQQSEKMJv8GyeOp3Wxl31NHqE8xo9/fYMfEljiZphUHIfyg4gnZ9swMyWjfOQs5GUQe54Q==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-ioredis@0.41.0': + resolution: {integrity: sha512-rxiLloU8VyeJGm5j2fZS8ShVdB82n7VNP8wTwfUQqDwRfHCnkzGr+buKoxuhGD91gtwJ91RHkjHA1Eg6RqsUTg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-koa@0.41.0': + resolution: {integrity: sha512-mbPnDt7ELvpM2S0vixYUsde7122lgegLOJQxx8iJQbB8YHal/xnTh9v7IfArSVzIDo+E+080hxZyUZD4boOWkw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-mongodb@0.45.0': + resolution: {integrity: sha512-xnZP9+ayeB1JJyNE9cIiwhOJTzNEsRhXVdLgfzmrs48Chhhk026mQdM5CITfyXSCfN73FGAIB8d91+pflJEfWQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-mongoose@0.39.0': + resolution: {integrity: sha512-J1r66A7zJklPPhMtrFOO7/Ud2p0Pv5u8+r23Cd1JUH6fYPmftNJVsLp2urAt6PHK4jVqpP/YegN8wzjJ2mZNPQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-mysql2@0.39.0': + resolution: {integrity: sha512-Iypuq2z6TCfriAXCIZjRq8GTFCKhQv5SpXbmI+e60rYdXw8NHtMH4NXcGF0eKTuoCsC59IYSTUvDQYDKReaszA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-mysql@0.39.0': + resolution: {integrity: sha512-8snHPh83rhrDf31v9Kq0Nf+ts8hdr7NguuszRqZomZBHgE0+UyXZSkXHAAFZoBPPRMGyM68uaFE5hVtFl+wOcA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-nestjs-core@0.38.0': + resolution: {integrity: sha512-M381Df1dM8aqihZz2yK+ugvMFK5vlHG/835dc67Sx2hH4pQEQYDA2PpFPTgc9AYYOydQaj7ClFQunESimjXDgg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-pg@0.42.0': + resolution: {integrity: sha512-sjgcM8CswYy8zxHgXv4RAZ09DlYhQ+9TdlourUs63Df/ek5RrB1ZbjznqW7PB6c3TyJJmX6AVtPTjAsROovEjA==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation-redis-4@0.40.0': + resolution: {integrity: sha512-0ieQYJb6yl35kXA75LQUPhHtGjtQU9L85KlWa7d4ohBbk/iQKZ3X3CFl5jC5vNMq/GGPB3+w3IxNvALlHtrp7A==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation@0.43.0': + resolution: {integrity: sha512-S1uHE+sxaepgp+t8lvIDuRgyjJWisAb733198kwQTUc9ZtYQ2V2gmyCtR1x21ePGVLoMiX/NWY7WA290hwkjJQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/instrumentation@0.52.1': + resolution: {integrity: sha512-uXJbYU/5/MBHjMp1FqrILLRuiJCs3Ofk0MeRDk8g1S1gD47U8X3JnSwcMO1rtRo1x1a7zKaQHaoYu49p/4eSKw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.3.0 + + '@opentelemetry/redis-common@0.36.2': + resolution: {integrity: sha512-faYX1N0gpLhej/6nyp6bgRjzAKXn5GOEMYY7YhciSfCoITAktLUtQ36d24QEWNA1/WA1y6qQunCe0OhHRkVl9g==} + engines: {node: '>=14'} + + '@opentelemetry/resources@1.25.1': + resolution: {integrity: sha512-pkZT+iFYIZsVn6+GzM0kSX+u3MSLCY9md+lIJOoKl/P+gJFfxJte/60Usdp8Ce4rOs8GduUpSPNe1ddGyDT1sQ==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.10.0' + + '@opentelemetry/sdk-metrics@1.25.1': + resolution: {integrity: sha512-9Mb7q5ioFL4E4dDrc4wC/A3NTHDat44v4I3p2pLPSxRvqUbDIQyMVr9uK+EU69+HWhlET1VaSrRzwdckWqY15Q==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.3.0 <1.10.0' + + '@opentelemetry/sdk-trace-base@1.25.1': + resolution: {integrity: sha512-C8k4hnEbc5FamuZQ92nTOp8X/diCY56XUTnMiv9UTuJitCzaNNHAVsdm5+HLCdI8SLQsLWIrG38tddMxLVoftw==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': '>=1.0.0 <1.10.0' + + '@opentelemetry/semantic-conventions@1.25.1': + resolution: {integrity: sha512-ZDjMJJQRlyk8A1KZFCc+bCbsyrn1wTwdNt56F7twdfUfnHUZUq77/WfONCj8p72NZOyP7pNTdUWSTYC3GTbuuQ==} + engines: {node: '>=14'} + + '@opentelemetry/sql-common@0.40.1': + resolution: {integrity: sha512-nSDlnHSqzC3pXn/wZEZVLuAuJ1MYMXPBwtv2qAbCa3847SaHItdE7SzUq/Jtb0KZmh1zfAbNi3AAMjztTT4Ugg==} + engines: {node: '>=14'} + peerDependencies: + '@opentelemetry/api': ^1.1.0 + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@pkgr/core@0.1.1': + resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + + '@playwright/test@1.40.1': + resolution: {integrity: sha512-EaaawMTOeEItCRvfmkI9v6rBkF1svM8wjl/YPRrg2N2Wmp+4qJYkWtJsbew1szfKKDm6fPLy4YAanBhIlf9dWw==} + engines: {node: '>=16'} deprecated: Please update to the latest version of Playwright to test up-to-date browsers. hasBin: true - "@playwright/test@1.45.0": - resolution: - { - integrity: sha512-TVYsfMlGAaxeUllNkywbwek67Ncf8FRGn8ZlRdO291OL3NjG9oMbfVhyP82HQF0CZLMrYsvesqoUekxdWuF9Qw==, - } - engines: { node: ">=18" } + '@playwright/test@1.45.0': + resolution: {integrity: sha512-TVYsfMlGAaxeUllNkywbwek67Ncf8FRGn8ZlRdO291OL3NjG9oMbfVhyP82HQF0CZLMrYsvesqoUekxdWuF9Qw==} + engines: {node: '>=18'} hasBin: true - "@pmmmwh/react-refresh-webpack-plugin@0.5.11": - resolution: - { - integrity: sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==, - } - engines: { node: ">= 10.13" } + '@pmmmwh/react-refresh-webpack-plugin@0.5.11': + resolution: {integrity: sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==} + engines: {node: '>= 10.13'} peerDependencies: - "@types/webpack": 4.x || 5.x - react-refresh: ">=0.10.0 <1.0.0" + '@types/webpack': 4.x || 5.x + react-refresh: '>=0.10.0 <1.0.0' sockjs-client: ^1.4.0 - type-fest: ">=0.17.0 <5.0.0" - webpack: ">=4.43.0 <6.0.0" + type-fest: '>=0.17.0 <5.0.0' + webpack: '>=4.43.0 <6.0.0' webpack-dev-server: 3.x || 4.x webpack-hot-middleware: 2.x webpack-plugin-serve: 0.x || 1.x peerDependenciesMeta: - "@types/webpack": + '@types/webpack': optional: true sockjs-client: optional: true @@ -14167,1353 +11431,879 @@ packages: webpack-plugin-serve: optional: true - "@polka/url@1.0.0-next.25": - resolution: - { - integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==, - } - - "@polkadot-api/json-rpc-provider-proxy@0.0.1": - resolution: - { - integrity: sha512-gmVDUP8LpCH0BXewbzqXF2sdHddq1H1q+XrAW2of+KZj4woQkIGBRGTJHeBEVHe30EB+UejR1N2dT4PO/RvDdg==, - } - - "@polkadot-api/json-rpc-provider@0.0.1": - resolution: - { - integrity: sha512-/SMC/l7foRjpykLTUTacIH05H3mr9ip8b5xxfwXlVezXrNVLp3Cv0GX6uItkKd+ZjzVPf3PFrDF2B2/HLSNESA==, - } - - "@polkadot-api/metadata-builders@0.0.1": - resolution: - { - integrity: sha512-GCI78BHDzXAF/L2pZD6Aod/yl82adqQ7ftNmKg51ixRL02JpWUA+SpUKTJE5MY1p8kiJJIo09P2um24SiJHxNA==, - } - - "@polkadot-api/observable-client@0.1.0": - resolution: - { - integrity: sha512-GBCGDRztKorTLna/unjl/9SWZcRmvV58o9jwU2Y038VuPXZcr01jcw/1O3x+yeAuwyGzbucI/mLTDa1QoEml3A==, - } - peerDependencies: - rxjs: ">=7.8.0" - - "@polkadot-api/substrate-bindings@0.0.1": - resolution: - { - integrity: sha512-bAe7a5bOPnuFVmpv7y4BBMRpNTnMmE0jtTqRUw/+D8ZlEHNVEJQGr4wu3QQCl7k1GnSV1wfv3mzIbYjErEBocg==, - } - - "@polkadot-api/substrate-client@0.0.1": - resolution: - { - integrity: sha512-9Bg9SGc3AwE+wXONQoW8GC00N3v6lCZLW74HQzqB6ROdcm5VAHM4CB/xRzWSUF9CXL78ugiwtHx3wBcpx4H4Wg==, - } - - "@polkadot-api/utils@0.0.1": - resolution: - { - integrity: sha512-3j+pRmlF9SgiYDabSdZsBSsN5XHbpXOAce1lWj56IEEaFZVjsiCaxDOA7C9nCcgfVXuvnbxqqEGQvnY+QfBAUw==, - } - - "@polkadot/api-augment@11.2.1": - resolution: - { - integrity: sha512-Huo457lCqeavbrf1O/2qQYGNFWURLXndW4vNkj8AP+I757WIqebhc6K3+mz+KoV1aTsX/qwaiEgeoTjrrIwcqA==, - } - engines: { node: ">=18" } - - "@polkadot/api-base@11.2.1": - resolution: - { - integrity: sha512-lVYTHQf8S4rpOJ9d1jvQjviHLE6zljl13vmgs+gXHGJwMAqhhNwKY3ZMQW/u/bRE2uKk0cAlahtsRtiFpjHAfw==, - } - engines: { node: ">=18" } - - "@polkadot/api-derive@11.2.1": - resolution: - { - integrity: sha512-ts6D6tXmvhBpHDT7E03TStXfG6+/bXCvJ7HZUVNDXi4P9cToClzJVOX5uKsPI5/MUYDEq13scxPyQK63m8SsHg==, - } - engines: { node: ">=18" } - - "@polkadot/api@11.2.1": - resolution: - { - integrity: sha512-NwcWadMt+mrJ3T7RuwpnaIYtH4x0eix+GiKRtLMtIO32uAfhwVyMnqvLtxDxa4XDJ/es2rtSMYG+t0b1BTM+xQ==, - } - engines: { node: ">=18" } - - "@polkadot/keyring@12.6.2": - resolution: - { - integrity: sha512-O3Q7GVmRYm8q7HuB3S0+Yf/q/EB2egKRRU3fv9b3B7V+A52tKzA+vIwEmNVaD1g5FKW9oB97rmpggs0zaKFqHw==, - } - engines: { node: ">=18" } - peerDependencies: - "@polkadot/util": 12.6.2 - "@polkadot/util-crypto": 12.6.2 - - "@polkadot/networks@12.6.2": - resolution: - { - integrity: sha512-1oWtZm1IvPWqvMrldVH6NI2gBoCndl5GEwx7lAuQWGr7eNL+6Bdc5K3Z9T0MzFvDGoi2/CBqjX9dRKo39pDC/w==, - } - engines: { node: ">=18" } - - "@polkadot/rpc-augment@11.2.1": - resolution: - { - integrity: sha512-AbkqWTnKCi71LdqFVbCyYelf5N/Wtj4jFnpRd8z7tIbbiAnNRW61dBgdF9jZ8jd9Z0JvfAmCmG17uCEdsqfNjA==, - } - engines: { node: ">=18" } - - "@polkadot/rpc-core@11.2.1": - resolution: - { - integrity: sha512-GHNIHDvBts6HDvySfYksuLccaVnI+fc7ubY1uYcJMoyGv9pLhMtveH4Ft7NTxqkBqopbPXZHc8ca9CaIeBVr7w==, - } - engines: { node: ">=18" } - - "@polkadot/rpc-provider@11.2.1": - resolution: - { - integrity: sha512-TO9pdxNmTweK1vi9JYUAoLr/JYJUwPJTTdrSJrmGmiNPaM7txbQVgtT4suQYflVZTgXUYR7OYQ201fH+Qb9J9w==, - } - engines: { node: ">=18" } - - "@polkadot/types-augment@11.2.1": - resolution: - { - integrity: sha512-3zBsuSKjZlMEeDVqPTkLnFvjPdyGcW3UBihzCgpTmXhLSuwTbsscMwKtKwIPkOHHQPYJYyZXTMkurMXCJOz2kA==, - } - engines: { node: ">=18" } - - "@polkadot/types-codec@11.2.1": - resolution: - { - integrity: sha512-9VRRf1g/nahAC3/VSiCSUIRL7uuup04JEZLIAG2LaDgmCBOSV9dt1Yj9114bRUrHHkeUSBmiq64+YX1hZMpQzQ==, - } - engines: { node: ">=18" } - - "@polkadot/types-create@11.2.1": - resolution: - { - integrity: sha512-Y0Zri7x6/rHURVNLMi6i1+rmJDLCn8OQl8BIvRmsIBkCYh2oCzy0g9aqVoCdm+QnoUU5ZNtu+U/gj1kL5ODivQ==, - } - engines: { node: ">=18" } - - "@polkadot/types-known@11.2.1": - resolution: - { - integrity: sha512-dnbmVKagVI6ARuZaGMGc67HPeHGrR7/lcwfS7jGzEmRcoQk7p/UQjWfOk/LG9NzvQkmRVbE0Gqskn4VorqnTbA==, - } - engines: { node: ">=18" } - - "@polkadot/types-support@11.2.1": - resolution: - { - integrity: sha512-VGSUDUEQjt8K3Bv8gHYAE/nD98qPPuZ2DcikM9z9isw04qj2amxZaS26+iknJ9KSCzWgrNBHjcr5Q0o76//2yA==, - } - engines: { node: ">=18" } - - "@polkadot/types@11.2.1": - resolution: - { - integrity: sha512-NVPhO/eFPkL8arWk4xVbsJzRdGfue3gJK+A2iYzOfCr9rDHEj99B+E2Z0Or6zDN6n+thgQYwsr19rKgXvAc18Q==, - } - engines: { node: ">=18" } - - "@polkadot/util-crypto@12.6.2": - resolution: - { - integrity: sha512-FEWI/dJ7wDMNN1WOzZAjQoIcCP/3vz3wvAp5QQm+lOrzOLj0iDmaIGIcBkz8HVm3ErfSe/uKP0KS4jgV/ib+Mg==, - } - engines: { node: ">=18" } - peerDependencies: - "@polkadot/util": 12.6.2 - - "@polkadot/util@12.6.2": - resolution: - { - integrity: sha512-l8TubR7CLEY47240uki0TQzFvtnxFIO7uI/0GoWzpYD/O62EIAMRsuY01N4DuwgKq2ZWD59WhzsLYmA5K6ksdw==, - } - engines: { node: ">=18" } - - "@polkadot/wasm-bridge@7.3.2": - resolution: - { - integrity: sha512-AJEXChcf/nKXd5Q/YLEV5dXQMle3UNT7jcXYmIffZAo/KI394a+/24PaISyQjoNC0fkzS1Q8T5pnGGHmXiVz2g==, - } - engines: { node: ">=18" } - peerDependencies: - "@polkadot/util": "*" - "@polkadot/x-randomvalues": "*" - - "@polkadot/wasm-crypto-asmjs@7.3.2": - resolution: - { - integrity: sha512-QP5eiUqUFur/2UoF2KKKYJcesc71fXhQFLT3D4ZjG28Mfk2ZPI0QNRUfpcxVQmIUpV5USHg4geCBNuCYsMm20Q==, - } - engines: { node: ">=18" } - peerDependencies: - "@polkadot/util": "*" - - "@polkadot/wasm-crypto-init@7.3.2": - resolution: - { - integrity: sha512-FPq73zGmvZtnuJaFV44brze3Lkrki3b4PebxCy9Fplw8nTmisKo9Xxtfew08r0njyYh+uiJRAxPCXadkC9sc8g==, - } - engines: { node: ">=18" } - peerDependencies: - "@polkadot/util": "*" - "@polkadot/x-randomvalues": "*" - - "@polkadot/wasm-crypto-wasm@7.3.2": - resolution: - { - integrity: sha512-15wd0EMv9IXs5Abp1ZKpKKAVyZPhATIAHfKsyoWCEFDLSOA0/K0QGOxzrAlsrdUkiKZOq7uzSIgIDgW8okx2Mw==, - } - engines: { node: ">=18" } - peerDependencies: - "@polkadot/util": "*" - - "@polkadot/wasm-crypto@7.3.2": - resolution: - { - integrity: sha512-+neIDLSJ6jjVXsjyZ5oLSv16oIpwp+PxFqTUaZdZDoA2EyFRQB8pP7+qLsMNk+WJuhuJ4qXil/7XiOnZYZ+wxw==, - } - engines: { node: ">=18" } - peerDependencies: - "@polkadot/util": "*" - "@polkadot/x-randomvalues": "*" - - "@polkadot/wasm-util@7.3.2": - resolution: - { - integrity: sha512-bmD+Dxo1lTZyZNxbyPE380wd82QsX+43mgCm40boyKrRppXEyQmWT98v/Poc7chLuskYb6X8IQ6lvvK2bGR4Tg==, - } - engines: { node: ">=18" } - peerDependencies: - "@polkadot/util": "*" - - "@polkadot/x-bigint@12.6.2": - resolution: - { - integrity: sha512-HSIk60uFPX4GOFZSnIF7VYJz7WZA7tpFJsne7SzxOooRwMTWEtw3fUpFy5cYYOeLh17/kHH1Y7SVcuxzVLc74Q==, - } - engines: { node: ">=18" } - - "@polkadot/x-fetch@12.6.2": - resolution: - { - integrity: sha512-8wM/Z9JJPWN1pzSpU7XxTI1ldj/AfC8hKioBlUahZ8gUiJaOF7K9XEFCrCDLis/A1BoOu7Ne6WMx/vsJJIbDWw==, - } - engines: { node: ">=18" } - - "@polkadot/x-global@12.6.2": - resolution: - { - integrity: sha512-a8d6m+PW98jmsYDtAWp88qS4dl8DyqUBsd0S+WgyfSMtpEXu6v9nXDgPZgwF5xdDvXhm+P0ZfVkVTnIGrScb5g==, - } - engines: { node: ">=18" } - - "@polkadot/x-randomvalues@12.6.2": - resolution: - { - integrity: sha512-Vr8uG7rH2IcNJwtyf5ebdODMcr0XjoCpUbI91Zv6AlKVYOGKZlKLYJHIwpTaKKB+7KPWyQrk4Mlym/rS7v9feg==, - } - engines: { node: ">=18" } - peerDependencies: - "@polkadot/util": 12.6.2 - "@polkadot/wasm-util": "*" - - "@polkadot/x-textdecoder@12.6.2": - resolution: - { - integrity: sha512-M1Bir7tYvNappfpFWXOJcnxUhBUFWkUFIdJSyH0zs5LmFtFdbKAeiDXxSp2Swp5ddOZdZgPac294/o2TnQKN1w==, - } - engines: { node: ">=18" } - - "@polkadot/x-textencoder@12.6.2": - resolution: - { - integrity: sha512-4N+3UVCpI489tUJ6cv3uf0PjOHvgGp9Dl+SZRLgFGt9mvxnvpW/7+XBADRMtlG4xi5gaRK7bgl5bmY6OMDsNdw==, - } - engines: { node: ">=18" } - - "@polkadot/x-ws@12.6.2": - resolution: - { - integrity: sha512-cGZWo7K5eRRQCRl2LrcyCYsrc3lRbTlixZh3AzgU8uX4wASVGRlNWi/Hf4TtHNe1ExCDmxabJzdIsABIfrr7xw==, - } - engines: { node: ">=18" } - - "@popperjs/core@2.11.8": - resolution: - { - integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==, - } - - "@prisma/instrumentation@5.16.1": - resolution: - { - integrity: sha512-4m5gRFWnQb8s/yTyGbMZkL7A5uJgqOWcWJxapwcAD0T0kh5sGPEVSQl/zTQvE9aduXhFAxOtC3gO+R8Hb5xO1Q==, - } - - "@probot/get-private-key@1.1.2": - resolution: - { - integrity: sha512-yVgyCdTyooGX6+czDLkJahEcwgBWZsKH9xbjvjDNVFjY3QtiI/tHRiB3zjgJCQMZehXxv2CFHZQSpWRXdr6CeQ==, - } - - "@probot/octokit-plugin-config@2.0.1": - resolution: - { - integrity: sha512-aWQYzPY2xiKscTVTKveghtbglqZ+W4eBLIdK1C/cNiFIofy3AxKogWgEZj29PjIe5ZRYx0sRHAPc/pkcXyOmTQ==, - } - engines: { node: ">=18" } - peerDependencies: - "@octokit/core": ">=5" - - "@probot/pino@2.3.5": - resolution: - { - integrity: sha512-IiyiNZonMw1dHC4EAdD55y5owV733d9Gll/IKsrLikB7EJ54+eMCOtL/qo+OmgWN9XV3NTDfziEQF2og/OBKog==, - } + '@polka/url@1.0.0-next.25': + resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} + + '@polkadot-api/json-rpc-provider-proxy@0.0.1': + resolution: {integrity: sha512-gmVDUP8LpCH0BXewbzqXF2sdHddq1H1q+XrAW2of+KZj4woQkIGBRGTJHeBEVHe30EB+UejR1N2dT4PO/RvDdg==} + + '@polkadot-api/json-rpc-provider@0.0.1': + resolution: {integrity: sha512-/SMC/l7foRjpykLTUTacIH05H3mr9ip8b5xxfwXlVezXrNVLp3Cv0GX6uItkKd+ZjzVPf3PFrDF2B2/HLSNESA==} + + '@polkadot-api/metadata-builders@0.0.1': + resolution: {integrity: sha512-GCI78BHDzXAF/L2pZD6Aod/yl82adqQ7ftNmKg51ixRL02JpWUA+SpUKTJE5MY1p8kiJJIo09P2um24SiJHxNA==} + + '@polkadot-api/observable-client@0.1.0': + resolution: {integrity: sha512-GBCGDRztKorTLna/unjl/9SWZcRmvV58o9jwU2Y038VuPXZcr01jcw/1O3x+yeAuwyGzbucI/mLTDa1QoEml3A==} + peerDependencies: + rxjs: '>=7.8.0' + + '@polkadot-api/substrate-bindings@0.0.1': + resolution: {integrity: sha512-bAe7a5bOPnuFVmpv7y4BBMRpNTnMmE0jtTqRUw/+D8ZlEHNVEJQGr4wu3QQCl7k1GnSV1wfv3mzIbYjErEBocg==} + + '@polkadot-api/substrate-client@0.0.1': + resolution: {integrity: sha512-9Bg9SGc3AwE+wXONQoW8GC00N3v6lCZLW74HQzqB6ROdcm5VAHM4CB/xRzWSUF9CXL78ugiwtHx3wBcpx4H4Wg==} + + '@polkadot-api/utils@0.0.1': + resolution: {integrity: sha512-3j+pRmlF9SgiYDabSdZsBSsN5XHbpXOAce1lWj56IEEaFZVjsiCaxDOA7C9nCcgfVXuvnbxqqEGQvnY+QfBAUw==} + + '@polkadot/api-augment@11.2.1': + resolution: {integrity: sha512-Huo457lCqeavbrf1O/2qQYGNFWURLXndW4vNkj8AP+I757WIqebhc6K3+mz+KoV1aTsX/qwaiEgeoTjrrIwcqA==} + engines: {node: '>=18'} + + '@polkadot/api-base@11.2.1': + resolution: {integrity: sha512-lVYTHQf8S4rpOJ9d1jvQjviHLE6zljl13vmgs+gXHGJwMAqhhNwKY3ZMQW/u/bRE2uKk0cAlahtsRtiFpjHAfw==} + engines: {node: '>=18'} + + '@polkadot/api-derive@11.2.1': + resolution: {integrity: sha512-ts6D6tXmvhBpHDT7E03TStXfG6+/bXCvJ7HZUVNDXi4P9cToClzJVOX5uKsPI5/MUYDEq13scxPyQK63m8SsHg==} + engines: {node: '>=18'} + + '@polkadot/api@11.2.1': + resolution: {integrity: sha512-NwcWadMt+mrJ3T7RuwpnaIYtH4x0eix+GiKRtLMtIO32uAfhwVyMnqvLtxDxa4XDJ/es2rtSMYG+t0b1BTM+xQ==} + engines: {node: '>=18'} + + '@polkadot/keyring@12.6.2': + resolution: {integrity: sha512-O3Q7GVmRYm8q7HuB3S0+Yf/q/EB2egKRRU3fv9b3B7V+A52tKzA+vIwEmNVaD1g5FKW9oB97rmpggs0zaKFqHw==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': 12.6.2 + '@polkadot/util-crypto': 12.6.2 + + '@polkadot/networks@12.6.2': + resolution: {integrity: sha512-1oWtZm1IvPWqvMrldVH6NI2gBoCndl5GEwx7lAuQWGr7eNL+6Bdc5K3Z9T0MzFvDGoi2/CBqjX9dRKo39pDC/w==} + engines: {node: '>=18'} + + '@polkadot/rpc-augment@11.2.1': + resolution: {integrity: sha512-AbkqWTnKCi71LdqFVbCyYelf5N/Wtj4jFnpRd8z7tIbbiAnNRW61dBgdF9jZ8jd9Z0JvfAmCmG17uCEdsqfNjA==} + engines: {node: '>=18'} + + '@polkadot/rpc-core@11.2.1': + resolution: {integrity: sha512-GHNIHDvBts6HDvySfYksuLccaVnI+fc7ubY1uYcJMoyGv9pLhMtveH4Ft7NTxqkBqopbPXZHc8ca9CaIeBVr7w==} + engines: {node: '>=18'} + + '@polkadot/rpc-provider@11.2.1': + resolution: {integrity: sha512-TO9pdxNmTweK1vi9JYUAoLr/JYJUwPJTTdrSJrmGmiNPaM7txbQVgtT4suQYflVZTgXUYR7OYQ201fH+Qb9J9w==} + engines: {node: '>=18'} + + '@polkadot/types-augment@11.2.1': + resolution: {integrity: sha512-3zBsuSKjZlMEeDVqPTkLnFvjPdyGcW3UBihzCgpTmXhLSuwTbsscMwKtKwIPkOHHQPYJYyZXTMkurMXCJOz2kA==} + engines: {node: '>=18'} + + '@polkadot/types-codec@11.2.1': + resolution: {integrity: sha512-9VRRf1g/nahAC3/VSiCSUIRL7uuup04JEZLIAG2LaDgmCBOSV9dt1Yj9114bRUrHHkeUSBmiq64+YX1hZMpQzQ==} + engines: {node: '>=18'} + + '@polkadot/types-create@11.2.1': + resolution: {integrity: sha512-Y0Zri7x6/rHURVNLMi6i1+rmJDLCn8OQl8BIvRmsIBkCYh2oCzy0g9aqVoCdm+QnoUU5ZNtu+U/gj1kL5ODivQ==} + engines: {node: '>=18'} + + '@polkadot/types-known@11.2.1': + resolution: {integrity: sha512-dnbmVKagVI6ARuZaGMGc67HPeHGrR7/lcwfS7jGzEmRcoQk7p/UQjWfOk/LG9NzvQkmRVbE0Gqskn4VorqnTbA==} + engines: {node: '>=18'} + + '@polkadot/types-support@11.2.1': + resolution: {integrity: sha512-VGSUDUEQjt8K3Bv8gHYAE/nD98qPPuZ2DcikM9z9isw04qj2amxZaS26+iknJ9KSCzWgrNBHjcr5Q0o76//2yA==} + engines: {node: '>=18'} + + '@polkadot/types@11.2.1': + resolution: {integrity: sha512-NVPhO/eFPkL8arWk4xVbsJzRdGfue3gJK+A2iYzOfCr9rDHEj99B+E2Z0Or6zDN6n+thgQYwsr19rKgXvAc18Q==} + engines: {node: '>=18'} + + '@polkadot/util-crypto@12.6.2': + resolution: {integrity: sha512-FEWI/dJ7wDMNN1WOzZAjQoIcCP/3vz3wvAp5QQm+lOrzOLj0iDmaIGIcBkz8HVm3ErfSe/uKP0KS4jgV/ib+Mg==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': 12.6.2 + + '@polkadot/util@12.6.2': + resolution: {integrity: sha512-l8TubR7CLEY47240uki0TQzFvtnxFIO7uI/0GoWzpYD/O62EIAMRsuY01N4DuwgKq2ZWD59WhzsLYmA5K6ksdw==} + engines: {node: '>=18'} + + '@polkadot/wasm-bridge@7.3.2': + resolution: {integrity: sha512-AJEXChcf/nKXd5Q/YLEV5dXQMle3UNT7jcXYmIffZAo/KI394a+/24PaISyQjoNC0fkzS1Q8T5pnGGHmXiVz2g==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': '*' + '@polkadot/x-randomvalues': '*' + + '@polkadot/wasm-crypto-asmjs@7.3.2': + resolution: {integrity: sha512-QP5eiUqUFur/2UoF2KKKYJcesc71fXhQFLT3D4ZjG28Mfk2ZPI0QNRUfpcxVQmIUpV5USHg4geCBNuCYsMm20Q==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': '*' + + '@polkadot/wasm-crypto-init@7.3.2': + resolution: {integrity: sha512-FPq73zGmvZtnuJaFV44brze3Lkrki3b4PebxCy9Fplw8nTmisKo9Xxtfew08r0njyYh+uiJRAxPCXadkC9sc8g==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': '*' + '@polkadot/x-randomvalues': '*' + + '@polkadot/wasm-crypto-wasm@7.3.2': + resolution: {integrity: sha512-15wd0EMv9IXs5Abp1ZKpKKAVyZPhATIAHfKsyoWCEFDLSOA0/K0QGOxzrAlsrdUkiKZOq7uzSIgIDgW8okx2Mw==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': '*' + + '@polkadot/wasm-crypto@7.3.2': + resolution: {integrity: sha512-+neIDLSJ6jjVXsjyZ5oLSv16oIpwp+PxFqTUaZdZDoA2EyFRQB8pP7+qLsMNk+WJuhuJ4qXil/7XiOnZYZ+wxw==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': '*' + '@polkadot/x-randomvalues': '*' + + '@polkadot/wasm-util@7.3.2': + resolution: {integrity: sha512-bmD+Dxo1lTZyZNxbyPE380wd82QsX+43mgCm40boyKrRppXEyQmWT98v/Poc7chLuskYb6X8IQ6lvvK2bGR4Tg==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': '*' + + '@polkadot/x-bigint@12.6.2': + resolution: {integrity: sha512-HSIk60uFPX4GOFZSnIF7VYJz7WZA7tpFJsne7SzxOooRwMTWEtw3fUpFy5cYYOeLh17/kHH1Y7SVcuxzVLc74Q==} + engines: {node: '>=18'} + + '@polkadot/x-fetch@12.6.2': + resolution: {integrity: sha512-8wM/Z9JJPWN1pzSpU7XxTI1ldj/AfC8hKioBlUahZ8gUiJaOF7K9XEFCrCDLis/A1BoOu7Ne6WMx/vsJJIbDWw==} + engines: {node: '>=18'} + + '@polkadot/x-global@12.6.2': + resolution: {integrity: sha512-a8d6m+PW98jmsYDtAWp88qS4dl8DyqUBsd0S+WgyfSMtpEXu6v9nXDgPZgwF5xdDvXhm+P0ZfVkVTnIGrScb5g==} + engines: {node: '>=18'} + + '@polkadot/x-randomvalues@12.6.2': + resolution: {integrity: sha512-Vr8uG7rH2IcNJwtyf5ebdODMcr0XjoCpUbI91Zv6AlKVYOGKZlKLYJHIwpTaKKB+7KPWyQrk4Mlym/rS7v9feg==} + engines: {node: '>=18'} + peerDependencies: + '@polkadot/util': 12.6.2 + '@polkadot/wasm-util': '*' + + '@polkadot/x-textdecoder@12.6.2': + resolution: {integrity: sha512-M1Bir7tYvNappfpFWXOJcnxUhBUFWkUFIdJSyH0zs5LmFtFdbKAeiDXxSp2Swp5ddOZdZgPac294/o2TnQKN1w==} + engines: {node: '>=18'} + + '@polkadot/x-textencoder@12.6.2': + resolution: {integrity: sha512-4N+3UVCpI489tUJ6cv3uf0PjOHvgGp9Dl+SZRLgFGt9mvxnvpW/7+XBADRMtlG4xi5gaRK7bgl5bmY6OMDsNdw==} + engines: {node: '>=18'} + + '@polkadot/x-ws@12.6.2': + resolution: {integrity: sha512-cGZWo7K5eRRQCRl2LrcyCYsrc3lRbTlixZh3AzgU8uX4wASVGRlNWi/Hf4TtHNe1ExCDmxabJzdIsABIfrr7xw==} + engines: {node: '>=18'} + + '@popperjs/core@2.11.8': + resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} + + '@prisma/instrumentation@5.16.1': + resolution: {integrity: sha512-4m5gRFWnQb8s/yTyGbMZkL7A5uJgqOWcWJxapwcAD0T0kh5sGPEVSQl/zTQvE9aduXhFAxOtC3gO+R8Hb5xO1Q==} + + '@probot/get-private-key@1.1.2': + resolution: {integrity: sha512-yVgyCdTyooGX6+czDLkJahEcwgBWZsKH9xbjvjDNVFjY3QtiI/tHRiB3zjgJCQMZehXxv2CFHZQSpWRXdr6CeQ==} + + '@probot/octokit-plugin-config@2.0.1': + resolution: {integrity: sha512-aWQYzPY2xiKscTVTKveghtbglqZ+W4eBLIdK1C/cNiFIofy3AxKogWgEZj29PjIe5ZRYx0sRHAPc/pkcXyOmTQ==} + engines: {node: '>=18'} + peerDependencies: + '@octokit/core': '>=5' + + '@probot/pino@2.3.5': + resolution: {integrity: sha512-IiyiNZonMw1dHC4EAdD55y5owV733d9Gll/IKsrLikB7EJ54+eMCOtL/qo+OmgWN9XV3NTDfziEQF2og/OBKog==} hasBin: true - "@protobufjs/aspromise@1.1.2": - resolution: - { - integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==, - } - - "@protobufjs/base64@1.1.2": - resolution: - { - integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==, - } - - "@protobufjs/codegen@2.0.4": - resolution: - { - integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==, - } - - "@protobufjs/eventemitter@1.1.0": - resolution: - { - integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==, - } - - "@protobufjs/fetch@1.1.0": - resolution: - { - integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==, - } - - "@protobufjs/float@1.0.2": - resolution: - { - integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==, - } - - "@protobufjs/inquire@1.1.0": - resolution: - { - integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==, - } - - "@protobufjs/path@1.1.2": - resolution: - { - integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==, - } - - "@protobufjs/pool@1.1.0": - resolution: - { - integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==, - } - - "@protobufjs/utf8@1.1.0": - resolution: - { - integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==, - } - - "@radix-ui/number@1.0.1": - resolution: - { - integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==, - } - - "@radix-ui/primitive@1.0.1": - resolution: - { - integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==, - } - - "@radix-ui/react-arrow@1.0.3": - resolution: - { - integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==, - } - peerDependencies: - "@types/react": "*" - "@types/react-dom": "*" + '@protobufjs/aspromise@1.1.2': + resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} + + '@protobufjs/base64@1.1.2': + resolution: {integrity: sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==} + + '@protobufjs/codegen@2.0.4': + resolution: {integrity: sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==} + + '@protobufjs/eventemitter@1.1.0': + resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==} + + '@protobufjs/fetch@1.1.0': + resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==} + + '@protobufjs/float@1.0.2': + resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==} + + '@protobufjs/inquire@1.1.0': + resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==} + + '@protobufjs/path@1.1.2': + resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==} + + '@protobufjs/pool@1.1.0': + resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==} + + '@protobufjs/utf8@1.1.0': + resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} + + '@radix-ui/number@1.0.1': + resolution: {integrity: sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==} + + '@radix-ui/primitive@1.0.1': + resolution: {integrity: sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==} + + '@radix-ui/react-arrow@1.0.3': + resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} + peerDependencies: + '@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-collection@1.0.3": - resolution: - { - integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==, - } + '@radix-ui/react-collection@1.0.3': + resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} 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-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-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-direction@1.0.1": - resolution: - { - integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==, - } + '@radix-ui/react-direction@1.0.1': + resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-dismissable-layer@1.0.4": - resolution: - { - integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==, - } + '@radix-ui/react-dismissable-layer@1.0.4': + resolution: {integrity: sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==} 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-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-scope@1.0.3": - resolution: - { - integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==, - } + '@radix-ui/react-focus-scope@1.0.3': + resolution: {integrity: sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==} 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-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-popper@1.1.2": - resolution: - { - integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==, - } + '@radix-ui/react-popper@1.1.2': + resolution: {integrity: sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==} 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.0.3": - resolution: - { - integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==, - } + '@radix-ui/react-portal@1.0.3': + resolution: {integrity: sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==} 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@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-roving-focus@1.0.4": - resolution: - { - integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==, - } + '@radix-ui/react-roving-focus@1.0.4': + resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==} 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-select@1.2.2": - resolution: - { - integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==, - } + '@radix-ui/react-select@1.2.2': + resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==} 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-separator@1.0.3": - resolution: - { - integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==, - } + '@radix-ui/react-separator@1.0.3': + resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==} 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-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-toggle-group@1.0.4": - resolution: - { - integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==, - } + '@radix-ui/react-toggle-group@1.0.4': + resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==} 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-toggle@1.0.3": - resolution: - { - integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==, - } + '@radix-ui/react-toggle@1.0.3': + resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==} 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-toolbar@1.0.4": - resolution: - { - integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==, - } + '@radix-ui/react-toolbar@1.0.4': + resolution: {integrity: sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==} 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-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-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-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-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-previous@1.0.1": - resolution: - { - integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==, - } + '@radix-ui/react-use-previous@1.0.1': + resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-use-rect@1.0.1": - resolution: - { - integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==, - } + '@radix-ui/react-use-rect@1.0.1': + resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-use-size@1.0.1": - resolution: - { - integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==, - } + '@radix-ui/react-use-size@1.0.1': + resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@radix-ui/react-visually-hidden@1.0.3": - resolution: - { - integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==, - } + '@radix-ui/react-visually-hidden@1.0.3': + resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} 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/rect@1.0.1": - resolution: - { - integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==, - } + '@radix-ui/rect@1.0.1': + resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==} - "@react-native-async-storage/async-storage@1.17.12": - resolution: - { - integrity: sha512-BXg4OxFdjPTRt+8MvN6jz4muq0/2zII3s7HeT/11e4Zeh3WCgk/BleLzUcDfVqF3OzFHUqEkSrb76d6Ndjd/Nw==, - } + '@react-native-async-storage/async-storage@1.17.12': + resolution: {integrity: sha512-BXg4OxFdjPTRt+8MvN6jz4muq0/2zII3s7HeT/11e4Zeh3WCgk/BleLzUcDfVqF3OzFHUqEkSrb76d6Ndjd/Nw==} peerDependencies: react-native: ^0.0.0-0 || 0.60 - 0.71 || 1000.0.0 - "@react-native-async-storage/async-storage@1.23.1": - resolution: - { - integrity: sha512-Qd2kQ3yi6Y3+AcUlrHxSLlnBvpdCEMVGFlVBneVOjaFaPU61g1huc38g339ysXspwY1QZA2aNhrk/KlHGO+ewA==, - } + '@react-native-async-storage/async-storage@1.23.1': + resolution: {integrity: sha512-Qd2kQ3yi6Y3+AcUlrHxSLlnBvpdCEMVGFlVBneVOjaFaPU61g1huc38g339ysXspwY1QZA2aNhrk/KlHGO+ewA==} peerDependencies: react-native: ^0.0.0-0 || >=0.60 <1.0 - "@react-native-clipboard/clipboard@1.13.2": - resolution: - { - integrity: sha512-uVM55oEGc6a6ZmSATDeTcMm55A/C1km5X47g0xaoF0Zagv7N/8RGvLceA5L/izPwflIy78t7XQeJUcnGSib0nA==, - } - peerDependencies: - react: ">=16.0" - react-native: ">=0.57.0" - - "@react-native-community/cli-clean@13.6.1": - resolution: - { - integrity: sha512-HV0kTegCMbq9INOLUVzPFl/FDjZ2uX6kOa7cFYezkRhgApJo0a/KYTvqwQVlmdHXAjDiWLARGTUPqYQGwIef0A==, - } - - "@react-native-community/cli-clean@13.6.9": - resolution: - { - integrity: sha512-7Dj5+4p9JggxuVNOjPbduZBAP1SUgNhLKVw5noBUzT/3ZpUZkDM+RCSwyoyg8xKWoE4OrdUAXwAFlMcFDPKykA==, - } - - "@react-native-community/cli-config@13.6.1": - resolution: - { - integrity: sha512-ljqwH04RNkwv8Y67TjmJ60qgvAdS2aCCUszaD7ZPXmfqBBxkvLg5QFtja9y+1QuTGPmBuTtC55JqmCHg/UDAsg==, - } - - "@react-native-community/cli-config@13.6.9": - resolution: - { - integrity: sha512-rFfVBcNojcMm+KKHE/xqpqXg8HoKl4EC7bFHUrahMJ+y/tZll55+oX/PGG37rzB8QzP2UbMQ19DYQKC1G7kXeg==, - } - - "@react-native-community/cli-debugger-ui@13.6.1": - resolution: - { - integrity: sha512-3z1io3AsT1NqlJZOlqNFcrzlavBb7R+Vy5Orzruc3m/OIjc4TrGNtyzQmOfCC3peF8J3So3d6dH1a11YYUDfFw==, - } - - "@react-native-community/cli-debugger-ui@13.6.9": - resolution: - { - integrity: sha512-TkN7IdFmGPPvTpAo3nCAH9uwGCPxWBEAwpqEZDrq0NWllI7Tdie8vDpGdrcuCcKalmhq6OYnkXzeBah7O1Ztpw==, - } - - "@react-native-community/cli-debugger-ui@7.0.3": - resolution: - { - integrity: sha512-G4SA6jFI0j22o+j+kYP8/7sxzbCDqSp2QiHA/X5E0lsGEd2o9qN2zbIjiFr8b8k+VVAYSUONhoC0+uKuINvmkA==, - } - - "@react-native-community/cli-doctor@13.6.1": - resolution: - { - integrity: sha512-jP5otBbvcItuIy8WJT8UAA0lLB+0kKtCmcfQFmcs0/NlBy04cpTtGp7w2N3F1r2Qy9sdQWGRa20IFZn8eenieQ==, - } - - "@react-native-community/cli-doctor@13.6.9": - resolution: - { - integrity: sha512-5quFaLdWFQB+677GXh5dGU9I5eg2z6Vg4jOX9vKnc9IffwyIFAyJfCZHrxLSRPDGNXD7biDQUdoezXYGwb6P/A==, - } - - "@react-native-community/cli-hermes@13.6.1": - resolution: - { - integrity: sha512-uGzmpg3DCqXiVLArTw6LMCGoGPkdMBKUllnlvgl1Yjne6LL7NPnQ971lMVGqTX9/p3CaW5TcqYYJjnI7sxlVcA==, - } - - "@react-native-community/cli-hermes@13.6.9": - resolution: - { - integrity: sha512-GvwiwgvFw4Ws+krg2+gYj8sR3g05evmNjAHkKIKMkDTJjZ8EdyxbkifRUs1ZCq3TMZy2oeblZBXCJVOH4W7ZbA==, - } - - "@react-native-community/cli-platform-android@13.6.1": - resolution: - { - integrity: sha512-HkrV8kCbHUdWH2LMEeSsuvl0ULI+JLmBZ2eQNEyyYOT8h+tM90OwaPLRpBFtD+yvp2/DpIKo97yCVJT5cLjBzA==, - } - - "@react-native-community/cli-platform-android@13.6.9": - resolution: - { - integrity: sha512-9KsYGdr08QhdvT3Ht7e8phQB3gDX9Fs427NJe0xnoBh+PDPTI2BD5ks5ttsH8CzEw8/P6H8tJCHq6hf2nxd9cw==, - } - - "@react-native-community/cli-platform-apple@13.6.1": - resolution: - { - integrity: sha512-yv4iPewUwhy3uGg4uJwA03wSV/1bnEnAJNs7CQ0zl7DQZhqrhfJLhzPURtu34sMUN+Wt6S3KaBmny5kHRKTuwA==, - } - - "@react-native-community/cli-platform-apple@13.6.9": - resolution: - { - integrity: sha512-KoeIHfhxMhKXZPXmhQdl6EE+jGKWwoO9jUVWgBvibpVmsNjo7woaG/tfJMEWfWF3najX1EkQAoJWpCDBMYWtlA==, - } - - "@react-native-community/cli-platform-ios@13.6.1": - resolution: - { - integrity: sha512-JwXV9qMpqJWduoEcK3pbAjkOaTqg+o0IzZz/LP7EkFCfJyg5hnDRAUZhP5ffs5/zukZIGHHPY1ZEW8jl5T2j6Q==, - } - - "@react-native-community/cli-platform-ios@13.6.9": - resolution: - { - integrity: sha512-CiUcHlGs8vE0CAB4oi1f+dzniqfGuhWPNrDvae2nm8dewlahTBwIcK5CawyGezjcJoeQhjBflh9vloska+nlnw==, - } - - "@react-native-community/cli-server-api@13.6.1": - resolution: - { - integrity: sha512-64eC7NuCLenYr237LyJ1H6jf+6L4NA2eXuy+634q0CeIZsAqOe7B5VCJyy2CsWWaeeUbAsC0Oy9/2o2y8/muIw==, - } - - "@react-native-community/cli-server-api@13.6.9": - resolution: - { - integrity: sha512-W8FSlCPWymO+tlQfM3E0JmM8Oei5HZsIk5S0COOl0MRi8h0NmHI4WSTF2GCfbFZkcr2VI/fRsocoN8Au4EZAug==, - } - - "@react-native-community/cli-server-api@7.0.4": - resolution: - { - integrity: sha512-NzwLKgshx1aFJad5b972rFowEx8ueHRFFXQFnBbvEuE3KsivDOTIwO0zn7cAO1zpxlFRxUFfcI1Pe4Aymi3xZw==, - } - - "@react-native-community/cli-tools@13.6.1": - resolution: - { - integrity: sha512-mRJmI5c/Mfi/pESUPjqElv8+t81qfi0pUr1UrIX38nS1o5Ki1D8vC9vAMkPbLaIu2RuhUuzSCfs6zW8AwakUoA==, - } - - "@react-native-community/cli-tools@13.6.9": - resolution: - { - integrity: sha512-OXaSjoN0mZVw3nrAwcY1PC0uMfyTd9fz7Cy06dh+EJc+h0wikABsVRzV8cIOPrVV+PPEEXE0DBrH20T2puZzgQ==, - } - - "@react-native-community/cli-tools@6.2.1": - resolution: - { - integrity: sha512-7RbOkZLT/3YG8CAYYM70ajRKIOgVxK/b4t9KNsPq+2uen99MGezfeglC8s1cs3vBNVVxCo0a2JbXg18bUd8eqA==, - } - peerDependencies: - find-up: "*" + '@react-native-clipboard/clipboard@1.13.2': + resolution: {integrity: sha512-uVM55oEGc6a6ZmSATDeTcMm55A/C1km5X47g0xaoF0Zagv7N/8RGvLceA5L/izPwflIy78t7XQeJUcnGSib0nA==} + peerDependencies: + react: '>=16.0' + react-native: '>=0.57.0' + + '@react-native-community/cli-clean@13.6.1': + resolution: {integrity: sha512-HV0kTegCMbq9INOLUVzPFl/FDjZ2uX6kOa7cFYezkRhgApJo0a/KYTvqwQVlmdHXAjDiWLARGTUPqYQGwIef0A==} + + '@react-native-community/cli-clean@13.6.9': + resolution: {integrity: sha512-7Dj5+4p9JggxuVNOjPbduZBAP1SUgNhLKVw5noBUzT/3ZpUZkDM+RCSwyoyg8xKWoE4OrdUAXwAFlMcFDPKykA==} + + '@react-native-community/cli-config@13.6.1': + resolution: {integrity: sha512-ljqwH04RNkwv8Y67TjmJ60qgvAdS2aCCUszaD7ZPXmfqBBxkvLg5QFtja9y+1QuTGPmBuTtC55JqmCHg/UDAsg==} + + '@react-native-community/cli-config@13.6.9': + resolution: {integrity: sha512-rFfVBcNojcMm+KKHE/xqpqXg8HoKl4EC7bFHUrahMJ+y/tZll55+oX/PGG37rzB8QzP2UbMQ19DYQKC1G7kXeg==} + + '@react-native-community/cli-debugger-ui@13.6.1': + resolution: {integrity: sha512-3z1io3AsT1NqlJZOlqNFcrzlavBb7R+Vy5Orzruc3m/OIjc4TrGNtyzQmOfCC3peF8J3So3d6dH1a11YYUDfFw==} + + '@react-native-community/cli-debugger-ui@13.6.9': + resolution: {integrity: sha512-TkN7IdFmGPPvTpAo3nCAH9uwGCPxWBEAwpqEZDrq0NWllI7Tdie8vDpGdrcuCcKalmhq6OYnkXzeBah7O1Ztpw==} + + '@react-native-community/cli-debugger-ui@7.0.3': + resolution: {integrity: sha512-G4SA6jFI0j22o+j+kYP8/7sxzbCDqSp2QiHA/X5E0lsGEd2o9qN2zbIjiFr8b8k+VVAYSUONhoC0+uKuINvmkA==} + + '@react-native-community/cli-doctor@13.6.1': + resolution: {integrity: sha512-jP5otBbvcItuIy8WJT8UAA0lLB+0kKtCmcfQFmcs0/NlBy04cpTtGp7w2N3F1r2Qy9sdQWGRa20IFZn8eenieQ==} + + '@react-native-community/cli-doctor@13.6.9': + resolution: {integrity: sha512-5quFaLdWFQB+677GXh5dGU9I5eg2z6Vg4jOX9vKnc9IffwyIFAyJfCZHrxLSRPDGNXD7biDQUdoezXYGwb6P/A==} + + '@react-native-community/cli-hermes@13.6.1': + resolution: {integrity: sha512-uGzmpg3DCqXiVLArTw6LMCGoGPkdMBKUllnlvgl1Yjne6LL7NPnQ971lMVGqTX9/p3CaW5TcqYYJjnI7sxlVcA==} + + '@react-native-community/cli-hermes@13.6.9': + resolution: {integrity: sha512-GvwiwgvFw4Ws+krg2+gYj8sR3g05evmNjAHkKIKMkDTJjZ8EdyxbkifRUs1ZCq3TMZy2oeblZBXCJVOH4W7ZbA==} + + '@react-native-community/cli-platform-android@13.6.1': + resolution: {integrity: sha512-HkrV8kCbHUdWH2LMEeSsuvl0ULI+JLmBZ2eQNEyyYOT8h+tM90OwaPLRpBFtD+yvp2/DpIKo97yCVJT5cLjBzA==} + + '@react-native-community/cli-platform-android@13.6.9': + resolution: {integrity: sha512-9KsYGdr08QhdvT3Ht7e8phQB3gDX9Fs427NJe0xnoBh+PDPTI2BD5ks5ttsH8CzEw8/P6H8tJCHq6hf2nxd9cw==} + + '@react-native-community/cli-platform-apple@13.6.1': + resolution: {integrity: sha512-yv4iPewUwhy3uGg4uJwA03wSV/1bnEnAJNs7CQ0zl7DQZhqrhfJLhzPURtu34sMUN+Wt6S3KaBmny5kHRKTuwA==} + + '@react-native-community/cli-platform-apple@13.6.9': + resolution: {integrity: sha512-KoeIHfhxMhKXZPXmhQdl6EE+jGKWwoO9jUVWgBvibpVmsNjo7woaG/tfJMEWfWF3najX1EkQAoJWpCDBMYWtlA==} + + '@react-native-community/cli-platform-ios@13.6.1': + resolution: {integrity: sha512-JwXV9qMpqJWduoEcK3pbAjkOaTqg+o0IzZz/LP7EkFCfJyg5hnDRAUZhP5ffs5/zukZIGHHPY1ZEW8jl5T2j6Q==} + + '@react-native-community/cli-platform-ios@13.6.9': + resolution: {integrity: sha512-CiUcHlGs8vE0CAB4oi1f+dzniqfGuhWPNrDvae2nm8dewlahTBwIcK5CawyGezjcJoeQhjBflh9vloska+nlnw==} + + '@react-native-community/cli-server-api@13.6.1': + resolution: {integrity: sha512-64eC7NuCLenYr237LyJ1H6jf+6L4NA2eXuy+634q0CeIZsAqOe7B5VCJyy2CsWWaeeUbAsC0Oy9/2o2y8/muIw==} + + '@react-native-community/cli-server-api@13.6.9': + resolution: {integrity: sha512-W8FSlCPWymO+tlQfM3E0JmM8Oei5HZsIk5S0COOl0MRi8h0NmHI4WSTF2GCfbFZkcr2VI/fRsocoN8Au4EZAug==} + + '@react-native-community/cli-server-api@7.0.4': + resolution: {integrity: sha512-NzwLKgshx1aFJad5b972rFowEx8ueHRFFXQFnBbvEuE3KsivDOTIwO0zn7cAO1zpxlFRxUFfcI1Pe4Aymi3xZw==} + + '@react-native-community/cli-tools@13.6.1': + resolution: {integrity: sha512-mRJmI5c/Mfi/pESUPjqElv8+t81qfi0pUr1UrIX38nS1o5Ki1D8vC9vAMkPbLaIu2RuhUuzSCfs6zW8AwakUoA==} + + '@react-native-community/cli-tools@13.6.9': + resolution: {integrity: sha512-OXaSjoN0mZVw3nrAwcY1PC0uMfyTd9fz7Cy06dh+EJc+h0wikABsVRzV8cIOPrVV+PPEEXE0DBrH20T2puZzgQ==} + + '@react-native-community/cli-tools@6.2.1': + resolution: {integrity: sha512-7RbOkZLT/3YG8CAYYM70ajRKIOgVxK/b4t9KNsPq+2uen99MGezfeglC8s1cs3vBNVVxCo0a2JbXg18bUd8eqA==} + peerDependencies: + find-up: '*' peerDependenciesMeta: find-up: optional: true - "@react-native-community/cli-types@13.6.1": - resolution: - { - integrity: sha512-+ue0eaEnGTKsTpX7F/DVspGDVZz7OgN7uaanaGKJuG9+pJiIgVIXnVu546Ycq8XbWAbZuWR1PL4+SNbf6Ebqqw==, - } - - "@react-native-community/cli-types@13.6.9": - resolution: - { - integrity: sha512-RLxDppvRxXfs3hxceW/mShi+6o5yS+kFPnPqZTaMKKR5aSg7LwDpLQW4K2D22irEG8e6RKDkZUeH9aL3vO2O0w==, - } - - "@react-native-community/cli@13.6.1": - resolution: - { - integrity: sha512-Q3eA7xw42o8NAkztJvjVZT9WWxtRDnYYoRkv8IEIi9m2ya3p/4ZJBNlsQO6kDjasQTERkAoGQc1CveEHEv2QsA==, - } - engines: { node: ">=18" } + '@react-native-community/cli-types@13.6.1': + resolution: {integrity: sha512-+ue0eaEnGTKsTpX7F/DVspGDVZz7OgN7uaanaGKJuG9+pJiIgVIXnVu546Ycq8XbWAbZuWR1PL4+SNbf6Ebqqw==} + + '@react-native-community/cli-types@13.6.9': + resolution: {integrity: sha512-RLxDppvRxXfs3hxceW/mShi+6o5yS+kFPnPqZTaMKKR5aSg7LwDpLQW4K2D22irEG8e6RKDkZUeH9aL3vO2O0w==} + + '@react-native-community/cli@13.6.1': + resolution: {integrity: sha512-Q3eA7xw42o8NAkztJvjVZT9WWxtRDnYYoRkv8IEIi9m2ya3p/4ZJBNlsQO6kDjasQTERkAoGQc1CveEHEv2QsA==} + engines: {node: '>=18'} hasBin: true peerDependencies: - metro-resolver: "*" + metro-resolver: '*' peerDependenciesMeta: metro-resolver: optional: true - "@react-native-community/cli@13.6.9": - resolution: - { - integrity: sha512-hFJL4cgLPxncJJd/epQ4dHnMg5Jy/7Q56jFvA3MHViuKpzzfTCJCB+pGY54maZbtym53UJON9WTGpM3S81UfjQ==, - } - engines: { node: ">=18" } + '@react-native-community/cli@13.6.9': + resolution: {integrity: sha512-hFJL4cgLPxncJJd/epQ4dHnMg5Jy/7Q56jFvA3MHViuKpzzfTCJCB+pGY54maZbtym53UJON9WTGpM3S81UfjQ==} + engines: {node: '>=18'} hasBin: true peerDependencies: - metro-resolver: "*" + metro-resolver: '*' peerDependenciesMeta: metro-resolver: optional: true - "@react-native-community/datetimepicker@6.7.5": - resolution: - { - integrity: sha512-E2Zh6mwvZ6CFEMKP++rdxxjJiB45fYPpdZhJwdZ2vUVwqovqu1cQRDLZmz4XrcHSyuacgR4WUnkYFf0F2nnNIg==, - } - - "@react-native-community/netinfo@9.5.0": - resolution: - { - integrity: sha512-sppTBobjvIlPYXyDAyb5WJoBaQq1hprnHj1PWICsA10mVnlmwX5ZVkgO2vGjsfFtb+fmWK9XtZF+aQ6ijqQcwg==, - } - peerDependencies: - react-native: ">=0.59" - - "@react-native-community/slider@4.5.0": - resolution: - { - integrity: sha512-pyUvNTvu5IfCI5abzqRfO/dd3A009RC66RXZE6t0gyOwI/j0QDlq9VZRv3rjkpuIvNTnsYj+m5BHlh0DkSYUyA==, - } - - "@react-native-firebase/app@14.12.0": - resolution: - { - integrity: sha512-r/4eP96U3StUs9t3QSlNwCIjjZpEAzI0u8GF8VlNNgrFxUKQXmwe63dRXQXVrI03MxnHgg87OpoWgIxhRlC9Rg==, - } - peerDependencies: - react: "*" - react-native: "*" - - "@react-native-firebase/messaging@14.12.0": - resolution: - { - integrity: sha512-4JF93pYLyFiLjwU2RYlHMKSjI7DKLuqQrqCnC3M2yhgTDeYaJsqnYnTSDMfmmh9vZHfHjTztc6E2scwr/Mw8tg==, - } - peerDependencies: - "@react-native-firebase/app": 14.12.0 - - "@react-native-firebase/remote-config@14.12.0": - resolution: - { - integrity: sha512-WASOY12cwdiWUPgaaeKH2jfSpIhtDG/Xu8y0Ws5+RZYu9pox6/pTUkWUdXnJpWnR9Cg3FdOhzKxijMovsezbpw==, - } - peerDependencies: - "@react-native-firebase/analytics": 14.12.0 - "@react-native-firebase/app": 14.12.0 - - "@react-native-masked-view/masked-view@0.2.9": - resolution: - { - integrity: sha512-Hs4vKBKj+15VxHZHFtMaFWSBxXoOE5Ea8saoigWhahp8Mepssm0ezU+2pTl7DK9z8Y9s5uOl/aPb4QmBZ3R3Zw==, - } - peerDependencies: - react: ">=16" - react-native: ">=0.57" - - "@react-native/assets-registry@0.74.87": - resolution: - { - integrity: sha512-1XmRhqQchN+pXPKEKYdpJlwESxVomJOxtEnIkbo7GAlaN2sym84fHEGDXAjLilih5GVPpcpSmFzTy8jx3LtaFg==, - } - engines: { node: ">=18" } - - "@react-native/assets-registry@0.74.88": - resolution: - { - integrity: sha512-tOvA+ikxa0Yxk3gLWR4+Pp4Y6Se+JEs6XXabX4/jgxIDnDfhT/czFNhqH/hdk4uOT8uVJGnilvevsia2TCFMiw==, - } - engines: { node: ">=18" } - - "@react-native/babel-plugin-codegen@0.74.87": - resolution: - { - integrity: sha512-+vJYpMnENFrwtgvDfUj+CtVJRJuUnzAUYT0/Pb68Sq9RfcZ5xdcCuUgyf7JO+akW2VTBoJY427wkcxU30qrWWw==, - } - engines: { node: ">=18" } - - "@react-native/babel-plugin-codegen@0.74.88": - resolution: - { - integrity: sha512-hul4gPU09q7K0amhzhZnG3EVxeCXjP2l1x/zdgtliRRB8Nq7Za8YkM7dy84X+Vv4UC9G1nzxIbibsKeLsY1N4A==, - } - engines: { node: ">=18" } - - "@react-native/babel-preset@0.74.87": - resolution: - { - integrity: sha512-hyKpfqzN2nxZmYYJ0tQIHG99FQO0OWXp/gVggAfEUgiT+yNKas1C60LuofUsK7cd+2o9jrpqgqW4WzEDZoBlTg==, - } - engines: { node: ">=18" } - peerDependencies: - "@babel/core": "*" - - "@react-native/babel-preset@0.74.88": - resolution: - { - integrity: sha512-SQODiFGlyblFTvdvePUDrQ+qlSzhcOm7It/yW2CVKxw5zRUf50+Cj3DBkRFhQDqF3ri2EnWsLnJ3oNE7hqDUxg==, - } - engines: { node: ">=18" } - peerDependencies: - "@babel/core": "*" - - "@react-native/codegen@0.74.87": - resolution: - { - integrity: sha512-GMSYDiD+86zLKgMMgz9z0k6FxmRn+z6cimYZKkucW4soGbxWsbjUAZoZ56sJwt2FJ3XVRgXCrnOCgXoH/Bkhcg==, - } - engines: { node: ">=18" } - peerDependencies: - "@babel/preset-env": ^7.1.6 - - "@react-native/codegen@0.74.88": - resolution: - { - integrity: sha512-HMk/LCrSdUof9DZFaB2bK0soKyAF6XiCg2LG7WFjEkUDXayeiB4p7IsHISJWY4bYg7cMPZ0fiZMRaBP2vXJxgg==, - } - engines: { node: ">=18" } - peerDependencies: - "@babel/preset-env": ^7.1.6 - - "@react-native/community-cli-plugin@0.74.87": - resolution: - { - integrity: sha512-EgJG9lSr8x3X67dHQKQvU6EkO+3ksVlJHYIVv6U/AmW9dN80BEFxgYbSJ7icXS4wri7m4kHdgeq2PQ7/3vvrTQ==, - } - engines: { node: ">=18" } - - "@react-native/community-cli-plugin@0.74.88": - resolution: - { - integrity: sha512-O8zz784kksa36nBNiULHh0rYFGr4mwtBB95YvvBOEYiYnMjFkEOUe7BPKvYmX8W29MgskXcIGNrNvfre59o4xw==, - } - engines: { node: ">=18" } - - "@react-native/debugger-frontend@0.74.85": - resolution: - { - integrity: sha512-gUIhhpsYLUTYWlWw4vGztyHaX/kNlgVspSvKe2XaPA7o3jYKUoNLc3Ov7u70u/MBWfKdcEffWq44eSe3j3s5JQ==, - } - engines: { node: ">=18" } - - "@react-native/debugger-frontend@0.74.87": - resolution: - { - integrity: sha512-MN95DJLYTv4EqJc+9JajA3AJZSBYJz2QEJ3uWlHrOky2vKrbbRVaW1ityTmaZa2OXIvNc6CZwSRSE7xCoHbXhQ==, - } - engines: { node: ">=18" } - - "@react-native/debugger-frontend@0.74.88": - resolution: - { - integrity: sha512-3xUR/uJza241ya0UFxxaxQiB/gkUx1gynMxhlgc6zFxz/zSrLG1/AcA6hpua2ZvmOMabpo09XOOR1Hqvf2qPEQ==, - } - engines: { node: ">=18" } - - "@react-native/dev-middleware@0.74.85": - resolution: - { - integrity: sha512-BRmgCK5vnMmHaKRO+h8PKJmHHH3E6JFuerrcfE3wG2eZ1bcSr+QTu8DAlpxsDWvJvHpCi8tRJGauxd+Ssj/c7w==, - } - engines: { node: ">=18" } - - "@react-native/dev-middleware@0.74.87": - resolution: - { - integrity: sha512-7TmZ3hTHwooYgIHqc/z87BMe1ryrIqAUi+AF7vsD+EHCGxHFdMjSpf1BZ2SUPXuLnF2cTiTfV2RwhbPzx0tYIA==, - } - engines: { node: ">=18" } - - "@react-native/dev-middleware@0.74.88": - resolution: - { - integrity: sha512-RYaQ72j9ggeGI712UlAfWtuY0rD4WllArlYtEybT0x1zmUtLgq5lgJcSkwg501yfG/g10XB69Q2MM8gCWK8NAw==, - } - engines: { node: ">=18" } - - "@react-native/gradle-plugin@0.74.87": - resolution: - { - integrity: sha512-T+VX0N1qP+U9V4oAtn7FTX7pfsoVkd1ocyw9swYXgJqU2fK7hC9famW7b3s3ZiufPGPr1VPJe2TVGtSopBjL6A==, - } - engines: { node: ">=18" } - - "@react-native/gradle-plugin@0.74.88": - resolution: - { - integrity: sha512-cUu4gVLFTkHe0e5/IxSycRfbBhZs/5QF8AqYcoUBsZ5o+22Im9+M4DuGFv4U5Sa2NTy2VXOCpbBTepzKsdXlgw==, - } - engines: { node: ">=18" } - - "@react-native/js-polyfills@0.74.87": - resolution: - { - integrity: sha512-M5Evdn76CuVEF0GsaXiGi95CBZ4IWubHqwXxV9vG9CC9kq0PSkoM2Pn7Lx7dgyp4vT7ccJ8a3IwHbe+5KJRnpw==, - } - engines: { node: ">=18" } - - "@react-native/js-polyfills@0.74.88": - resolution: - { - integrity: sha512-6KljxfNKAz2b2uXqxagKbytb3MvUujAmfvuubKOoCLAiLbs8CYKW0OV1FqVLYUEXXw5GEDhXcVzQxxFuDlMafQ==, - } - engines: { node: ">=18" } - - "@react-native/metro-babel-transformer@0.74.87": - resolution: - { - integrity: sha512-UsJCO24sNax2NSPBmV1zLEVVNkS88kcgAiYrZHtYSwSjpl4WZ656tIeedBfiySdJ94Hr3kQmBYLipV5zk0NI1A==, - } - engines: { node: ">=18" } - - "@react-native/metro-babel-transformer@0.74.88": - resolution: - { - integrity: sha512-r7Er162iLpQce3ODQzNVS+PnjglJoHZ4l0NeaVMB4w45DIgKM4hC2vI6a/fzyFm9C6N+QY4P2i2RSkwjXVuBlQ==, - } - engines: { node: ">=18" } - peerDependencies: - "@babel/core": "*" - - "@react-native/metro-config@0.74.88": - resolution: - { - integrity: sha512-GYBVb+987onsGcycad7jW7P4lBpeuj2TIhuOcKJcvRSID59w3OPb54hi8P04Cn9fMWGunWDxb8IvpkAbffzlCw==, - } - engines: { node: ">=18" } - - "@react-native/normalize-color@2.1.0": - resolution: - { - integrity: sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==, - } - - "@react-native/normalize-colors@0.74.85": - resolution: - { - integrity: sha512-pcE4i0X7y3hsAE0SpIl7t6dUc0B0NZLd1yv7ssm4FrLhWG+CGyIq4eFDXpmPU1XHmL5PPySxTAjEMiwv6tAmOw==, - } - - "@react-native/normalize-colors@0.74.87": - resolution: - { - integrity: sha512-Xh7Nyk/MPefkb0Itl5Z+3oOobeG9lfLb7ZOY2DKpFnoCE1TzBmib9vMNdFaLdSxLIP+Ec6icgKtdzYg8QUPYzA==, - } - - "@react-native/normalize-colors@0.74.88": - resolution: - { - integrity: sha512-He5oTwPBxvXrxJ91dZzpxR7P+VYmc9IkJfhuH8zUiU50ckrt+xWNjtVugPdUv4LuVjmZ36Vk2EX8bl1gVn2dVA==, - } - - "@react-native/virtualized-lists@0.74.87": - resolution: - { - integrity: sha512-lsGxoFMb0lyK/MiplNKJpD+A1EoEUumkLrCjH4Ht+ZlG8S0BfCxmskLZ6qXn3BiDSkLjfjI/qyZ3pnxNBvkXpQ==, - } - engines: { node: ">=18" } - peerDependencies: - "@types/react": ^18.2.6 - react: "*" - react-native: "*" + '@react-native-community/datetimepicker@6.7.5': + resolution: {integrity: sha512-E2Zh6mwvZ6CFEMKP++rdxxjJiB45fYPpdZhJwdZ2vUVwqovqu1cQRDLZmz4XrcHSyuacgR4WUnkYFf0F2nnNIg==} + + '@react-native-community/netinfo@9.5.0': + resolution: {integrity: sha512-sppTBobjvIlPYXyDAyb5WJoBaQq1hprnHj1PWICsA10mVnlmwX5ZVkgO2vGjsfFtb+fmWK9XtZF+aQ6ijqQcwg==} + peerDependencies: + react-native: '>=0.59' + + '@react-native-community/slider@4.5.0': + resolution: {integrity: sha512-pyUvNTvu5IfCI5abzqRfO/dd3A009RC66RXZE6t0gyOwI/j0QDlq9VZRv3rjkpuIvNTnsYj+m5BHlh0DkSYUyA==} + + '@react-native-firebase/app@14.12.0': + resolution: {integrity: sha512-r/4eP96U3StUs9t3QSlNwCIjjZpEAzI0u8GF8VlNNgrFxUKQXmwe63dRXQXVrI03MxnHgg87OpoWgIxhRlC9Rg==} + peerDependencies: + react: '*' + react-native: '*' + + '@react-native-firebase/messaging@14.12.0': + resolution: {integrity: sha512-4JF93pYLyFiLjwU2RYlHMKSjI7DKLuqQrqCnC3M2yhgTDeYaJsqnYnTSDMfmmh9vZHfHjTztc6E2scwr/Mw8tg==} + peerDependencies: + '@react-native-firebase/app': 14.12.0 + + '@react-native-firebase/remote-config@14.12.0': + resolution: {integrity: sha512-WASOY12cwdiWUPgaaeKH2jfSpIhtDG/Xu8y0Ws5+RZYu9pox6/pTUkWUdXnJpWnR9Cg3FdOhzKxijMovsezbpw==} + peerDependencies: + '@react-native-firebase/analytics': 14.12.0 + '@react-native-firebase/app': 14.12.0 + + '@react-native-masked-view/masked-view@0.2.9': + resolution: {integrity: sha512-Hs4vKBKj+15VxHZHFtMaFWSBxXoOE5Ea8saoigWhahp8Mepssm0ezU+2pTl7DK9z8Y9s5uOl/aPb4QmBZ3R3Zw==} + peerDependencies: + react: '>=16' + react-native: '>=0.57' + + '@react-native/assets-registry@0.74.87': + resolution: {integrity: sha512-1XmRhqQchN+pXPKEKYdpJlwESxVomJOxtEnIkbo7GAlaN2sym84fHEGDXAjLilih5GVPpcpSmFzTy8jx3LtaFg==} + engines: {node: '>=18'} + + '@react-native/assets-registry@0.74.88': + resolution: {integrity: sha512-tOvA+ikxa0Yxk3gLWR4+Pp4Y6Se+JEs6XXabX4/jgxIDnDfhT/czFNhqH/hdk4uOT8uVJGnilvevsia2TCFMiw==} + engines: {node: '>=18'} + + '@react-native/babel-plugin-codegen@0.74.87': + resolution: {integrity: sha512-+vJYpMnENFrwtgvDfUj+CtVJRJuUnzAUYT0/Pb68Sq9RfcZ5xdcCuUgyf7JO+akW2VTBoJY427wkcxU30qrWWw==} + engines: {node: '>=18'} + + '@react-native/babel-plugin-codegen@0.74.88': + resolution: {integrity: sha512-hul4gPU09q7K0amhzhZnG3EVxeCXjP2l1x/zdgtliRRB8Nq7Za8YkM7dy84X+Vv4UC9G1nzxIbibsKeLsY1N4A==} + engines: {node: '>=18'} + + '@react-native/babel-preset@0.74.87': + resolution: {integrity: sha512-hyKpfqzN2nxZmYYJ0tQIHG99FQO0OWXp/gVggAfEUgiT+yNKas1C60LuofUsK7cd+2o9jrpqgqW4WzEDZoBlTg==} + engines: {node: '>=18'} + peerDependencies: + '@babel/core': '*' + + '@react-native/babel-preset@0.74.88': + resolution: {integrity: sha512-SQODiFGlyblFTvdvePUDrQ+qlSzhcOm7It/yW2CVKxw5zRUf50+Cj3DBkRFhQDqF3ri2EnWsLnJ3oNE7hqDUxg==} + engines: {node: '>=18'} + peerDependencies: + '@babel/core': '*' + + '@react-native/codegen@0.74.87': + resolution: {integrity: sha512-GMSYDiD+86zLKgMMgz9z0k6FxmRn+z6cimYZKkucW4soGbxWsbjUAZoZ56sJwt2FJ3XVRgXCrnOCgXoH/Bkhcg==} + engines: {node: '>=18'} + peerDependencies: + '@babel/preset-env': ^7.1.6 + + '@react-native/codegen@0.74.88': + resolution: {integrity: sha512-HMk/LCrSdUof9DZFaB2bK0soKyAF6XiCg2LG7WFjEkUDXayeiB4p7IsHISJWY4bYg7cMPZ0fiZMRaBP2vXJxgg==} + engines: {node: '>=18'} + peerDependencies: + '@babel/preset-env': ^7.1.6 + + '@react-native/community-cli-plugin@0.74.87': + resolution: {integrity: sha512-EgJG9lSr8x3X67dHQKQvU6EkO+3ksVlJHYIVv6U/AmW9dN80BEFxgYbSJ7icXS4wri7m4kHdgeq2PQ7/3vvrTQ==} + engines: {node: '>=18'} + + '@react-native/community-cli-plugin@0.74.88': + resolution: {integrity: sha512-O8zz784kksa36nBNiULHh0rYFGr4mwtBB95YvvBOEYiYnMjFkEOUe7BPKvYmX8W29MgskXcIGNrNvfre59o4xw==} + engines: {node: '>=18'} + + '@react-native/debugger-frontend@0.74.85': + resolution: {integrity: sha512-gUIhhpsYLUTYWlWw4vGztyHaX/kNlgVspSvKe2XaPA7o3jYKUoNLc3Ov7u70u/MBWfKdcEffWq44eSe3j3s5JQ==} + engines: {node: '>=18'} + + '@react-native/debugger-frontend@0.74.87': + resolution: {integrity: sha512-MN95DJLYTv4EqJc+9JajA3AJZSBYJz2QEJ3uWlHrOky2vKrbbRVaW1ityTmaZa2OXIvNc6CZwSRSE7xCoHbXhQ==} + engines: {node: '>=18'} + + '@react-native/debugger-frontend@0.74.88': + resolution: {integrity: sha512-3xUR/uJza241ya0UFxxaxQiB/gkUx1gynMxhlgc6zFxz/zSrLG1/AcA6hpua2ZvmOMabpo09XOOR1Hqvf2qPEQ==} + engines: {node: '>=18'} + + '@react-native/dev-middleware@0.74.85': + resolution: {integrity: sha512-BRmgCK5vnMmHaKRO+h8PKJmHHH3E6JFuerrcfE3wG2eZ1bcSr+QTu8DAlpxsDWvJvHpCi8tRJGauxd+Ssj/c7w==} + engines: {node: '>=18'} + + '@react-native/dev-middleware@0.74.87': + resolution: {integrity: sha512-7TmZ3hTHwooYgIHqc/z87BMe1ryrIqAUi+AF7vsD+EHCGxHFdMjSpf1BZ2SUPXuLnF2cTiTfV2RwhbPzx0tYIA==} + engines: {node: '>=18'} + + '@react-native/dev-middleware@0.74.88': + resolution: {integrity: sha512-RYaQ72j9ggeGI712UlAfWtuY0rD4WllArlYtEybT0x1zmUtLgq5lgJcSkwg501yfG/g10XB69Q2MM8gCWK8NAw==} + engines: {node: '>=18'} + + '@react-native/gradle-plugin@0.74.87': + resolution: {integrity: sha512-T+VX0N1qP+U9V4oAtn7FTX7pfsoVkd1ocyw9swYXgJqU2fK7hC9famW7b3s3ZiufPGPr1VPJe2TVGtSopBjL6A==} + engines: {node: '>=18'} + + '@react-native/gradle-plugin@0.74.88': + resolution: {integrity: sha512-cUu4gVLFTkHe0e5/IxSycRfbBhZs/5QF8AqYcoUBsZ5o+22Im9+M4DuGFv4U5Sa2NTy2VXOCpbBTepzKsdXlgw==} + engines: {node: '>=18'} + + '@react-native/js-polyfills@0.74.87': + resolution: {integrity: sha512-M5Evdn76CuVEF0GsaXiGi95CBZ4IWubHqwXxV9vG9CC9kq0PSkoM2Pn7Lx7dgyp4vT7ccJ8a3IwHbe+5KJRnpw==} + engines: {node: '>=18'} + + '@react-native/js-polyfills@0.74.88': + resolution: {integrity: sha512-6KljxfNKAz2b2uXqxagKbytb3MvUujAmfvuubKOoCLAiLbs8CYKW0OV1FqVLYUEXXw5GEDhXcVzQxxFuDlMafQ==} + engines: {node: '>=18'} + + '@react-native/metro-babel-transformer@0.74.87': + resolution: {integrity: sha512-UsJCO24sNax2NSPBmV1zLEVVNkS88kcgAiYrZHtYSwSjpl4WZ656tIeedBfiySdJ94Hr3kQmBYLipV5zk0NI1A==} + engines: {node: '>=18'} + + '@react-native/metro-babel-transformer@0.74.88': + resolution: {integrity: sha512-r7Er162iLpQce3ODQzNVS+PnjglJoHZ4l0NeaVMB4w45DIgKM4hC2vI6a/fzyFm9C6N+QY4P2i2RSkwjXVuBlQ==} + engines: {node: '>=18'} + peerDependencies: + '@babel/core': '*' + + '@react-native/metro-config@0.74.88': + resolution: {integrity: sha512-GYBVb+987onsGcycad7jW7P4lBpeuj2TIhuOcKJcvRSID59w3OPb54hi8P04Cn9fMWGunWDxb8IvpkAbffzlCw==} + engines: {node: '>=18'} + + '@react-native/normalize-color@2.1.0': + resolution: {integrity: sha512-Z1jQI2NpdFJCVgpY+8Dq/Bt3d+YUi1928Q+/CZm/oh66fzM0RUl54vvuXlPJKybH4pdCZey1eDTPaLHkMPNgWA==} + + '@react-native/normalize-colors@0.74.85': + resolution: {integrity: sha512-pcE4i0X7y3hsAE0SpIl7t6dUc0B0NZLd1yv7ssm4FrLhWG+CGyIq4eFDXpmPU1XHmL5PPySxTAjEMiwv6tAmOw==} + + '@react-native/normalize-colors@0.74.87': + resolution: {integrity: sha512-Xh7Nyk/MPefkb0Itl5Z+3oOobeG9lfLb7ZOY2DKpFnoCE1TzBmib9vMNdFaLdSxLIP+Ec6icgKtdzYg8QUPYzA==} + + '@react-native/normalize-colors@0.74.88': + resolution: {integrity: sha512-He5oTwPBxvXrxJ91dZzpxR7P+VYmc9IkJfhuH8zUiU50ckrt+xWNjtVugPdUv4LuVjmZ36Vk2EX8bl1gVn2dVA==} + + '@react-native/virtualized-lists@0.74.87': + resolution: {integrity: sha512-lsGxoFMb0lyK/MiplNKJpD+A1EoEUumkLrCjH4Ht+ZlG8S0BfCxmskLZ6qXn3BiDSkLjfjI/qyZ3pnxNBvkXpQ==} + engines: {node: '>=18'} + peerDependencies: + '@types/react': ^18.2.6 + react: '*' + react-native: '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@react-native/virtualized-lists@0.74.88": - resolution: - { - integrity: sha512-nZn4X9zuyinRJoE/WcgB1e/X6b3J3QPRSsNC0LOjHzP97tvW6xvBacjbCAJAaZQwD9KaqZyK86eCi61ksr350g==, - } - engines: { node: ">=18" } + '@react-native/virtualized-lists@0.74.88': + resolution: {integrity: sha512-nZn4X9zuyinRJoE/WcgB1e/X6b3J3QPRSsNC0LOjHzP97tvW6xvBacjbCAJAaZQwD9KaqZyK86eCi61ksr350g==} + engines: {node: '>=18'} peerDependencies: - "@types/react": ^18.2.6 - react: "*" - react-native: "*" + '@types/react': ^18.2.6 + react: '*' + react-native: '*' peerDependenciesMeta: - "@types/react": - optional: true - - "@react-navigation/bottom-tabs@6.5.20": - resolution: - { - integrity: sha512-ow6Z06iS4VqBO8d7FP+HsGjJLWt2xTWIvuWjpoCvsM/uQXzCRDIjBv9HaKcXbF0yTW7IMir0oDAbU5PFzEDdgA==, - } - peerDependencies: - "@react-navigation/native": ^6.0.0 - react: "*" - react-native: "*" - react-native-safe-area-context: ">= 3.0.0" - react-native-screens: ">= 3.0.0" - - "@react-navigation/core@6.4.16": - resolution: - { - integrity: sha512-UDTJBsHxnzgFETR3ZxhctP+RWr4SkyeZpbhpkQoIGOuwSCkt1SE0qjU48/u6r6w6XlX8OqVudn1Ab0QFXTHxuQ==, - } - peerDependencies: - react: "*" - - "@react-navigation/elements@1.3.30": - resolution: - { - integrity: sha512-plhc8UvCZs0UkV+sI+3bisIyn78wz9O/BiWZXpounu72k/R/Sj5PuZYFJ1fi6psvriUveMCGh4LeZckAZu2qiQ==, - } - peerDependencies: - "@react-navigation/native": ^6.0.0 - react: "*" - react-native: "*" - react-native-safe-area-context: ">= 3.0.0" - - "@react-navigation/material-top-tabs@6.6.13": - resolution: - { - integrity: sha512-utwS0SLl/dq6+PHWGOz4rNNkYzveqvbffXJ6TIrUdaWDDysjBa4btHUOVvXfNADIK4LafmbuRi0xA/zd6HoCPQ==, - } - peerDependencies: - "@react-navigation/native": ^6.0.0 - react: "*" - react-native: "*" - react-native-pager-view: ">= 4.0.0" - react-native-tab-view: ">= 3.0.0" - - "@react-navigation/native-stack@6.9.26": - resolution: - { - integrity: sha512-++dueQ+FDj2XkZ902DVrK79ub1vp19nSdAZWxKRgd6+Bc0Niiesua6rMCqymYOVaYh+dagwkA9r00bpt/U5WLw==, - } - peerDependencies: - "@react-navigation/native": ^6.0.0 - react: "*" - react-native: "*" - react-native-safe-area-context: ">= 3.0.0" - react-native-screens: ">= 3.0.0" - - "@react-navigation/native@6.1.17": - resolution: - { - integrity: sha512-mer3OvfwWOHoUSMJyLa4vnBH3zpFmCwuzrBPlw7feXklurr/ZDiLjLxUScOot6jLRMz/67GyilEYMmP99LL0RQ==, - } - peerDependencies: - react: "*" - react-native: "*" - - "@react-navigation/routers@6.1.9": - resolution: - { - integrity: sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA==, - } - - "@react-navigation/stack@6.3.29": - resolution: - { - integrity: sha512-tzlGkoRgB6P7vgw7rHuWo3TL7Gzu6xh5LMf+zSdCuEiKp/qASzxYfnTEr9tOLbVs/gf+qeukEDheCSAJKVpBXw==, - } - peerDependencies: - "@react-navigation/native": ^6.0.0 - react: "*" - react-native: "*" - react-native-gesture-handler: ">= 1.0.0" - react-native-safe-area-context: ">= 3.0.0" - react-native-screens: ">= 3.0.0" - - "@reduxjs/toolkit@2.0.1": - resolution: - { - integrity: sha512-fxIjrR9934cmS8YXIGd9e7s1XRsEU++aFc9DVNMFMRTM5Vtsg2DCRMj21eslGtDt43IUf9bJL3h5bwUlZleibA==, - } + '@types/react': + optional: true + + '@react-navigation/bottom-tabs@6.5.20': + resolution: {integrity: sha512-ow6Z06iS4VqBO8d7FP+HsGjJLWt2xTWIvuWjpoCvsM/uQXzCRDIjBv9HaKcXbF0yTW7IMir0oDAbU5PFzEDdgA==} + peerDependencies: + '@react-navigation/native': ^6.0.0 + react: '*' + react-native: '*' + react-native-safe-area-context: '>= 3.0.0' + react-native-screens: '>= 3.0.0' + + '@react-navigation/core@6.4.16': + resolution: {integrity: sha512-UDTJBsHxnzgFETR3ZxhctP+RWr4SkyeZpbhpkQoIGOuwSCkt1SE0qjU48/u6r6w6XlX8OqVudn1Ab0QFXTHxuQ==} + peerDependencies: + react: '*' + + '@react-navigation/elements@1.3.30': + resolution: {integrity: sha512-plhc8UvCZs0UkV+sI+3bisIyn78wz9O/BiWZXpounu72k/R/Sj5PuZYFJ1fi6psvriUveMCGh4LeZckAZu2qiQ==} + peerDependencies: + '@react-navigation/native': ^6.0.0 + react: '*' + react-native: '*' + react-native-safe-area-context: '>= 3.0.0' + + '@react-navigation/material-top-tabs@6.6.13': + resolution: {integrity: sha512-utwS0SLl/dq6+PHWGOz4rNNkYzveqvbffXJ6TIrUdaWDDysjBa4btHUOVvXfNADIK4LafmbuRi0xA/zd6HoCPQ==} + peerDependencies: + '@react-navigation/native': ^6.0.0 + react: '*' + react-native: '*' + react-native-pager-view: '>= 4.0.0' + react-native-tab-view: '>= 3.0.0' + + '@react-navigation/native-stack@6.9.26': + resolution: {integrity: sha512-++dueQ+FDj2XkZ902DVrK79ub1vp19nSdAZWxKRgd6+Bc0Niiesua6rMCqymYOVaYh+dagwkA9r00bpt/U5WLw==} + peerDependencies: + '@react-navigation/native': ^6.0.0 + react: '*' + react-native: '*' + react-native-safe-area-context: '>= 3.0.0' + react-native-screens: '>= 3.0.0' + + '@react-navigation/native@6.1.17': + resolution: {integrity: sha512-mer3OvfwWOHoUSMJyLa4vnBH3zpFmCwuzrBPlw7feXklurr/ZDiLjLxUScOot6jLRMz/67GyilEYMmP99LL0RQ==} + peerDependencies: + react: '*' + react-native: '*' + + '@react-navigation/routers@6.1.9': + resolution: {integrity: sha512-lTM8gSFHSfkJvQkxacGM6VJtBt61ip2XO54aNfswD+KMw6eeZ4oehl7m0me3CR9hnDE4+60iAZR8sAhvCiI3NA==} + + '@react-navigation/stack@6.3.29': + resolution: {integrity: sha512-tzlGkoRgB6P7vgw7rHuWo3TL7Gzu6xh5LMf+zSdCuEiKp/qASzxYfnTEr9tOLbVs/gf+qeukEDheCSAJKVpBXw==} + peerDependencies: + '@react-navigation/native': ^6.0.0 + react: '*' + react-native: '*' + react-native-gesture-handler: '>= 1.0.0' + react-native-safe-area-context: '>= 3.0.0' + react-native-screens: '>= 3.0.0' + + '@reduxjs/toolkit@2.0.1': + resolution: {integrity: sha512-fxIjrR9934cmS8YXIGd9e7s1XRsEU++aFc9DVNMFMRTM5Vtsg2DCRMj21eslGtDt43IUf9bJL3h5bwUlZleibA==} peerDependencies: react: ^16.9.0 || ^17.0.0 || ^18 react-redux: ^7.2.1 || ^8.1.3 || ^9.0.0 @@ -15523,2590 +12313,1573 @@ packages: react-redux: optional: true - "@rnx-kit/chromium-edge-launcher@1.0.0": - resolution: - { - integrity: sha512-lzD84av1ZQhYUS+jsGqJiCMaJO2dn9u+RTT9n9q6D3SaKVwWqv+7AoRKqBu19bkwyE+iFRl1ymr40QS90jVFYg==, - } - engines: { node: ">=14.15" } + '@rnx-kit/chromium-edge-launcher@1.0.0': + resolution: {integrity: sha512-lzD84av1ZQhYUS+jsGqJiCMaJO2dn9u+RTT9n9q6D3SaKVwWqv+7AoRKqBu19bkwyE+iFRl1ymr40QS90jVFYg==} + engines: {node: '>=14.15'} - "@rollup/plugin-babel@5.3.1": - resolution: - { - integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==, - } - engines: { node: ">= 10.0.0" } + '@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 + '@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-commonjs@25.0.7": - resolution: - { - integrity: sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==, - } - engines: { node: ">=14.0.0" } + '@rollup/plugin-commonjs@25.0.7': + resolution: {integrity: sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==} + engines: {node: '>=14.0.0'} peerDependencies: rollup: ^2.68.0||^3.0.0||^4.0.0 peerDependenciesMeta: rollup: optional: true - "@rollup/plugin-node-resolve@11.2.1": - resolution: - { - integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==, - } - engines: { node: ">= 10.0.0" } + '@rollup/plugin-node-resolve@11.2.1': + resolution: {integrity: sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==} + engines: {node: '>= 10.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0 - "@rollup/plugin-node-resolve@15.2.3": - resolution: - { - integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==, - } - engines: { node: ">=14.0.0" } + '@rollup/plugin-node-resolve@15.2.3': + resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==} + 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/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.0": - resolution: - { - integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==, - } - engines: { node: ">=14.0.0" } + '@rollup/pluginutils@5.1.0': + resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} + 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.17.2": - resolution: - { - integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==, - } + '@rollup/rollup-android-arm-eabi@4.17.2': + resolution: {integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==} cpu: [arm] os: [android] - "@rollup/rollup-android-arm64@4.17.2": - resolution: - { - integrity: sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==, - } + '@rollup/rollup-android-arm64@4.17.2': + resolution: {integrity: sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==} cpu: [arm64] os: [android] - "@rollup/rollup-darwin-arm64@4.17.2": - resolution: - { - integrity: sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==, - } + '@rollup/rollup-darwin-arm64@4.17.2': + resolution: {integrity: sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==} cpu: [arm64] os: [darwin] - "@rollup/rollup-darwin-x64@4.17.2": - resolution: - { - integrity: sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==, - } + '@rollup/rollup-darwin-x64@4.17.2': + resolution: {integrity: sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==} cpu: [x64] os: [darwin] - "@rollup/rollup-linux-arm-gnueabihf@4.17.2": - resolution: - { - integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==, - } + '@rollup/rollup-linux-arm-gnueabihf@4.17.2': + resolution: {integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==} cpu: [arm] os: [linux] - "@rollup/rollup-linux-arm-musleabihf@4.17.2": - resolution: - { - integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==, - } + '@rollup/rollup-linux-arm-musleabihf@4.17.2': + resolution: {integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==} cpu: [arm] os: [linux] - "@rollup/rollup-linux-arm64-gnu@4.17.2": - resolution: - { - integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==, - } + '@rollup/rollup-linux-arm64-gnu@4.17.2': + resolution: {integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==} cpu: [arm64] os: [linux] - "@rollup/rollup-linux-arm64-musl@4.17.2": - resolution: - { - integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==, - } + '@rollup/rollup-linux-arm64-musl@4.17.2': + resolution: {integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==} cpu: [arm64] os: [linux] - "@rollup/rollup-linux-powerpc64le-gnu@4.17.2": - resolution: - { - integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==, - } + '@rollup/rollup-linux-powerpc64le-gnu@4.17.2': + resolution: {integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==} cpu: [ppc64] os: [linux] - "@rollup/rollup-linux-riscv64-gnu@4.17.2": - resolution: - { - integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==, - } + '@rollup/rollup-linux-riscv64-gnu@4.17.2': + resolution: {integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==} cpu: [riscv64] os: [linux] - "@rollup/rollup-linux-s390x-gnu@4.17.2": - resolution: - { - integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==, - } + '@rollup/rollup-linux-s390x-gnu@4.17.2': + resolution: {integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==} cpu: [s390x] os: [linux] - "@rollup/rollup-linux-x64-gnu@4.17.2": - resolution: - { - integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==, - } + '@rollup/rollup-linux-x64-gnu@4.17.2': + resolution: {integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==} cpu: [x64] os: [linux] - "@rollup/rollup-linux-x64-musl@4.17.2": - resolution: - { - integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==, - } + '@rollup/rollup-linux-x64-musl@4.17.2': + resolution: {integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==} cpu: [x64] os: [linux] - "@rollup/rollup-win32-arm64-msvc@4.17.2": - resolution: - { - integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==, - } + '@rollup/rollup-win32-arm64-msvc@4.17.2': + resolution: {integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==} cpu: [arm64] os: [win32] - "@rollup/rollup-win32-ia32-msvc@4.17.2": - resolution: - { - integrity: sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==, - } + '@rollup/rollup-win32-ia32-msvc@4.17.2': + resolution: {integrity: sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==} cpu: [ia32] os: [win32] - "@rollup/rollup-win32-x64-msvc@4.17.2": - resolution: - { - integrity: sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==, - } + '@rollup/rollup-win32-x64-msvc@4.17.2': + resolution: {integrity: sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==} cpu: [x64] os: [win32] - "@rushstack/eslint-patch@1.10.1": - resolution: - { - integrity: sha512-S3Kq8e7LqxkA9s7HKLqXGTGck1uwis5vAXan3FnU5yw1Ec5hsSGnq4s/UCaSqABPOnOTg7zASLyst7+ohgWexg==, - } - - "@samverschueren/stream-to-observable@0.3.1": - resolution: - { - integrity: sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==, - } - engines: { node: ">=6" } - peerDependencies: - rxjs: "*" - zen-observable: "*" + '@rushstack/eslint-patch@1.10.1': + resolution: {integrity: sha512-S3Kq8e7LqxkA9s7HKLqXGTGck1uwis5vAXan3FnU5yw1Ec5hsSGnq4s/UCaSqABPOnOTg7zASLyst7+ohgWexg==} + + '@samverschueren/stream-to-observable@0.3.1': + resolution: {integrity: sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==} + engines: {node: '>=6'} + peerDependencies: + rxjs: '*' + zen-observable: '*' peerDependenciesMeta: rxjs: optional: true zen-observable: optional: true - "@scure/base@1.1.6": - resolution: - { - integrity: sha512-ok9AWwhcgYuGG3Zfhyqg+zwl+Wn5uE+dwC0NV/2qQkx4dABbb/bx96vWu8NSj+BNjjSjno+JRYRjle1jV08k3g==, - } - - "@scure/bip32@1.3.3": - resolution: - { - integrity: sha512-LJaN3HwRbfQK0X1xFSi0Q9amqOgzQnnDngIt+ZlsBC3Bm7/nE7K0kwshZHyaru79yIVRv/e1mQAjZyuZG6jOFQ==, - } - - "@scure/bip32@1.4.0": - resolution: - { - integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==, - } - - "@scure/bip39@1.2.2": - resolution: - { - integrity: sha512-HYf9TUXG80beW+hGAt3TRM8wU6pQoYur9iNypTROm42dorCGmLnFe3eWjz3gOq6G62H2WRh0FCzAR1PI+29zIA==, - } - - "@scure/bip39@1.3.0": - resolution: - { - integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==, - } - - "@segment/analytics-react-native@2.19.1": - resolution: - { - integrity: sha512-p/FIF6s6DOrF4WF3oGoFknwB6Z8h5ZCJ02T0ICPjprQUDlsShyCFs5xc1lj0P3Exk/8t5de60VsBp7AU3T0GRg==, - } - engines: { node: ">=12" } - peerDependencies: - "@react-native-async-storage/async-storage": 1.x - "@segment/sovran-react-native": ^1.1.0 - react: "*" - react-native: "*" + '@scure/base@1.1.6': + resolution: {integrity: sha512-ok9AWwhcgYuGG3Zfhyqg+zwl+Wn5uE+dwC0NV/2qQkx4dABbb/bx96vWu8NSj+BNjjSjno+JRYRjle1jV08k3g==} + + '@scure/bip32@1.3.3': + resolution: {integrity: sha512-LJaN3HwRbfQK0X1xFSi0Q9amqOgzQnnDngIt+ZlsBC3Bm7/nE7K0kwshZHyaru79yIVRv/e1mQAjZyuZG6jOFQ==} + + '@scure/bip32@1.4.0': + resolution: {integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==} + + '@scure/bip39@1.2.2': + resolution: {integrity: sha512-HYf9TUXG80beW+hGAt3TRM8wU6pQoYur9iNypTROm42dorCGmLnFe3eWjz3gOq6G62H2WRh0FCzAR1PI+29zIA==} + + '@scure/bip39@1.3.0': + resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==} + + '@segment/analytics-react-native@2.19.1': + resolution: {integrity: sha512-p/FIF6s6DOrF4WF3oGoFknwB6Z8h5ZCJ02T0ICPjprQUDlsShyCFs5xc1lj0P3Exk/8t5de60VsBp7AU3T0GRg==} + engines: {node: '>=12'} + peerDependencies: + '@react-native-async-storage/async-storage': 1.x + '@segment/sovran-react-native': ^1.1.0 + react: '*' + react-native: '*' react-native-get-random-values: 1.x peerDependenciesMeta: - "@react-native-async-storage/async-storage": + '@react-native-async-storage/async-storage': optional: true - "@segment/loosely-validate-event@2.0.0": - resolution: - { - integrity: sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==, - } + '@segment/loosely-validate-event@2.0.0': + resolution: {integrity: sha512-ZMCSfztDBqwotkl848ODgVcAmN4OItEWDCkshcKz0/W6gGSQayuuCtWV/MlodFivAZD793d6UgANd6wCXUfrIw==} - "@segment/sovran-react-native@0.4.5": - resolution: - { - integrity: sha512-/dvud4hkszRNgTHdb7p822U+NXTuPxifqQzhcrfdjmFoXMafnzOUAi1KxeGV6Qdb73VAIxcnr/8hkTqdjZ3YLw==, - } + '@segment/sovran-react-native@0.4.5': + resolution: {integrity: sha512-/dvud4hkszRNgTHdb7p822U+NXTuPxifqQzhcrfdjmFoXMafnzOUAi1KxeGV6Qdb73VAIxcnr/8hkTqdjZ3YLw==} peerDependencies: - react: "*" - react-native: "*" + react: '*' + react-native: '*' - "@segment/tsub@2.0.0": - resolution: - { - integrity: sha512-NzkBK8GwPsyQ74AceLjENbUoaFrObnzEKOX4ko2wZDuIyK+DnDm3B//8xZYI2LCKt+wUD55l6ygfjCoVs8RMWw==, - } + '@segment/tsub@2.0.0': + resolution: {integrity: sha512-NzkBK8GwPsyQ74AceLjENbUoaFrObnzEKOX4ko2wZDuIyK+DnDm3B//8xZYI2LCKt+wUD55l6ygfjCoVs8RMWw==} hasBin: true - "@sentry-internal/browser-utils@8.16.0": - resolution: - { - integrity: sha512-40lzNy5F6dUFCN85AGThBxHPQLSwoNhZM2hWqhAR5rZ3Yed0uBaKlm4aNJCeeUB9l4kd0sH0In+i9Nqu6TGKrw==, - } - engines: { node: ">=14.18" } - - "@sentry-internal/feedback@7.117.0": - resolution: - { - integrity: sha512-4X+NnnY17W74TymgLFH7/KPTVYpEtoMMJh8HzVdCmHTOE6j32XKBeBMRaXBhmNYmEgovgyRKKf2KvtSfgw+V1Q==, - } - engines: { node: ">=12" } - - "@sentry-internal/feedback@8.16.0": - resolution: - { - integrity: sha512-BmRazZKl6iiVSg6eybUNOI1ve4eZqYpJYjkX48Jedn+7iZg7z12MNYl6IWPFBcN+sg+clf4wiKDr/SYS0yNemQ==, - } - engines: { node: ">=14.18" } - - "@sentry-internal/replay-canvas@7.117.0": - resolution: - { - integrity: sha512-7hjIhwEcoosr+BIa0AyEssB5xwvvlzUpvD5fXu4scd3I3qfX8gdnofO96a8r+LrQm3bSj+eN+4TfKEtWb7bU5A==, - } - engines: { node: ">=12" } - - "@sentry-internal/replay-canvas@8.16.0": - resolution: - { - integrity: sha512-Bjh6pCDLZIPAPU2dNvJfI7BQV16rsRtYcylJgkGamjf8IcaBu7r/Whsvt1q34xO29xc0ISlp+0xG+YAdN1690Q==, - } - engines: { node: ">=14.18" } - - "@sentry-internal/replay@8.16.0": - resolution: - { - integrity: sha512-JT/wmYU2JPtl8Ldl9oml/25Yz6C5wG+SpylDeUx4mPh728E/iI9vesIc2652J/0xots/DZXe4K6K5nYjdFtEcQ==, - } - engines: { node: ">=14.18" } - - "@sentry-internal/tracing@7.117.0": - resolution: - { - integrity: sha512-fAIyijNvKBZNA12IcKo+dOYDRTNrzNsdzbm3DP37vJRKVQu19ucqP4Y6InvKokffDP2HZPzFPDoGXYuXkDhUZg==, - } - engines: { node: ">=8" } - - "@sentry/browser@7.117.0": - resolution: - { - integrity: sha512-29X9HlvDEKIaWp6XKlNPPSNND0U6P/ede5WA2nVHfs1zJLWdZ7/ijuMc0sH/CueEkqHe/7gt94hBcI7HOU/wSw==, - } - engines: { node: ">=8" } - - "@sentry/browser@8.16.0": - resolution: - { - integrity: sha512-8Fxmk2aFWRixi2IKixiJR10Du34yb13HYr2iRw1haPKb5ZKa6CFA+XAnSzwpPZxO0RSHuPQR06YNkXaQ8fRAQQ==, - } - engines: { node: ">=14.18" } - - "@sentry/cli-darwin@2.31.0": - resolution: - { - integrity: sha512-VM5liyxMnm4K2g0WsrRPXRCMLhaT09C7gK5Fz/CxKYh9sbMZB7KA4hV/3klkyuyw1+ECF1J66cefhNkFZepUig==, - } - engines: { node: ">=10" } + '@sentry-internal/browser-utils@8.16.0': + resolution: {integrity: sha512-40lzNy5F6dUFCN85AGThBxHPQLSwoNhZM2hWqhAR5rZ3Yed0uBaKlm4aNJCeeUB9l4kd0sH0In+i9Nqu6TGKrw==} + engines: {node: '>=14.18'} + + '@sentry-internal/feedback@7.117.0': + resolution: {integrity: sha512-4X+NnnY17W74TymgLFH7/KPTVYpEtoMMJh8HzVdCmHTOE6j32XKBeBMRaXBhmNYmEgovgyRKKf2KvtSfgw+V1Q==} + engines: {node: '>=12'} + + '@sentry-internal/feedback@8.16.0': + resolution: {integrity: sha512-BmRazZKl6iiVSg6eybUNOI1ve4eZqYpJYjkX48Jedn+7iZg7z12MNYl6IWPFBcN+sg+clf4wiKDr/SYS0yNemQ==} + engines: {node: '>=14.18'} + + '@sentry-internal/replay-canvas@7.117.0': + resolution: {integrity: sha512-7hjIhwEcoosr+BIa0AyEssB5xwvvlzUpvD5fXu4scd3I3qfX8gdnofO96a8r+LrQm3bSj+eN+4TfKEtWb7bU5A==} + engines: {node: '>=12'} + + '@sentry-internal/replay-canvas@8.16.0': + resolution: {integrity: sha512-Bjh6pCDLZIPAPU2dNvJfI7BQV16rsRtYcylJgkGamjf8IcaBu7r/Whsvt1q34xO29xc0ISlp+0xG+YAdN1690Q==} + engines: {node: '>=14.18'} + + '@sentry-internal/replay@8.16.0': + resolution: {integrity: sha512-JT/wmYU2JPtl8Ldl9oml/25Yz6C5wG+SpylDeUx4mPh728E/iI9vesIc2652J/0xots/DZXe4K6K5nYjdFtEcQ==} + engines: {node: '>=14.18'} + + '@sentry-internal/tracing@7.117.0': + resolution: {integrity: sha512-fAIyijNvKBZNA12IcKo+dOYDRTNrzNsdzbm3DP37vJRKVQu19ucqP4Y6InvKokffDP2HZPzFPDoGXYuXkDhUZg==} + engines: {node: '>=8'} + + '@sentry/browser@7.117.0': + resolution: {integrity: sha512-29X9HlvDEKIaWp6XKlNPPSNND0U6P/ede5WA2nVHfs1zJLWdZ7/ijuMc0sH/CueEkqHe/7gt94hBcI7HOU/wSw==} + engines: {node: '>=8'} + + '@sentry/browser@8.16.0': + resolution: {integrity: sha512-8Fxmk2aFWRixi2IKixiJR10Du34yb13HYr2iRw1haPKb5ZKa6CFA+XAnSzwpPZxO0RSHuPQR06YNkXaQ8fRAQQ==} + engines: {node: '>=14.18'} + + '@sentry/cli-darwin@2.31.0': + resolution: {integrity: sha512-VM5liyxMnm4K2g0WsrRPXRCMLhaT09C7gK5Fz/CxKYh9sbMZB7KA4hV/3klkyuyw1+ECF1J66cefhNkFZepUig==} + engines: {node: '>=10'} os: [darwin] - "@sentry/cli-darwin@2.31.2": - resolution: - { - integrity: sha512-BHA/JJXj1dlnoZQdK4efRCtHRnbBfzbIZUKAze7oRR1RfNqERI84BVUQeKateD3jWSJXQfEuclIShc61KOpbKw==, - } - engines: { node: ">=10" } + '@sentry/cli-darwin@2.31.2': + resolution: {integrity: sha512-BHA/JJXj1dlnoZQdK4efRCtHRnbBfzbIZUKAze7oRR1RfNqERI84BVUQeKateD3jWSJXQfEuclIShc61KOpbKw==} + engines: {node: '>=10'} os: [darwin] - "@sentry/cli-linux-arm64@2.31.0": - resolution: - { - integrity: sha512-eENJTmXoFX3uNr8xRW7Bua2Sw3V1tylQfdtS85pNjZPdbm3U8wYQSWu2VoZkK2ASOoC+17YC8jTQxq62KWnSeQ==, - } - engines: { node: ">=10" } + '@sentry/cli-linux-arm64@2.31.0': + resolution: {integrity: sha512-eENJTmXoFX3uNr8xRW7Bua2Sw3V1tylQfdtS85pNjZPdbm3U8wYQSWu2VoZkK2ASOoC+17YC8jTQxq62KWnSeQ==} + engines: {node: '>=10'} cpu: [arm64] os: [linux, freebsd] - "@sentry/cli-linux-arm64@2.31.2": - resolution: - { - integrity: sha512-FLVKkJ/rWvPy/ka7OrUdRW63a/z8HYI1Gt8Pr6rWs50hb7YJja8lM8IO10tYmcFE/tODICsnHO9HTeUg2g2d1w==, - } - engines: { node: ">=10" } + '@sentry/cli-linux-arm64@2.31.2': + resolution: {integrity: sha512-FLVKkJ/rWvPy/ka7OrUdRW63a/z8HYI1Gt8Pr6rWs50hb7YJja8lM8IO10tYmcFE/tODICsnHO9HTeUg2g2d1w==} + engines: {node: '>=10'} cpu: [arm64] os: [linux, freebsd] - "@sentry/cli-linux-arm@2.31.0": - resolution: - { - integrity: sha512-AZoCN3waXEfXGCd3YSrikcX/y63oQe0Tiyapkeoifq/0QhI+2MOOrAQb60gthsXwb0UDK/XeFi3PaxyUCphzxA==, - } - engines: { node: ">=10" } + '@sentry/cli-linux-arm@2.31.0': + resolution: {integrity: sha512-AZoCN3waXEfXGCd3YSrikcX/y63oQe0Tiyapkeoifq/0QhI+2MOOrAQb60gthsXwb0UDK/XeFi3PaxyUCphzxA==} + engines: {node: '>=10'} cpu: [arm] os: [linux, freebsd] - "@sentry/cli-linux-arm@2.31.2": - resolution: - { - integrity: sha512-W8k5mGYYZz/I/OxZH65YAK7dCkQAl+wbuoASGOQjUy5VDgqH0QJ8kGJufXvFPM+f3ZQGcKAnVsZ6tFqZXETBAw==, - } - engines: { node: ">=10" } + '@sentry/cli-linux-arm@2.31.2': + resolution: {integrity: sha512-W8k5mGYYZz/I/OxZH65YAK7dCkQAl+wbuoASGOQjUy5VDgqH0QJ8kGJufXvFPM+f3ZQGcKAnVsZ6tFqZXETBAw==} + engines: {node: '>=10'} cpu: [arm] os: [linux, freebsd] - "@sentry/cli-linux-i686@2.31.0": - resolution: - { - integrity: sha512-cQUFb3brhLaNSIoNzjU/YASnTM1I3TDJP9XXzH0eLK9sSopCcDcc6OrYEYvdjJXZKzFv5sbc9UNMsIDbh4+rYg==, - } - engines: { node: ">=10" } + '@sentry/cli-linux-i686@2.31.0': + resolution: {integrity: sha512-cQUFb3brhLaNSIoNzjU/YASnTM1I3TDJP9XXzH0eLK9sSopCcDcc6OrYEYvdjJXZKzFv5sbc9UNMsIDbh4+rYg==} + engines: {node: '>=10'} cpu: [x86, ia32] os: [linux, freebsd] - "@sentry/cli-linux-i686@2.31.2": - resolution: - { - integrity: sha512-A64QtzaPi3MYFpZ+Fwmi0mrSyXgeLJ0cWr4jdeTGrzNpeowSteKgd6tRKU+LVq0k5shKE7wdnHk+jXnoajulMA==, - } - engines: { node: ">=10" } + '@sentry/cli-linux-i686@2.31.2': + resolution: {integrity: sha512-A64QtzaPi3MYFpZ+Fwmi0mrSyXgeLJ0cWr4jdeTGrzNpeowSteKgd6tRKU+LVq0k5shKE7wdnHk+jXnoajulMA==} + engines: {node: '>=10'} cpu: [x86, ia32] os: [linux, freebsd] - "@sentry/cli-linux-x64@2.31.0": - resolution: - { - integrity: sha512-z1zTNg91nZJRdcGHC/bCU1KwIaifV0MLJteip9KrFDprzhJk1HtMxFOS0+OZ5/UH21CjAFmg9Pj6IAGqm3BYjA==, - } - engines: { node: ">=10" } + '@sentry/cli-linux-x64@2.31.0': + resolution: {integrity: sha512-z1zTNg91nZJRdcGHC/bCU1KwIaifV0MLJteip9KrFDprzhJk1HtMxFOS0+OZ5/UH21CjAFmg9Pj6IAGqm3BYjA==} + engines: {node: '>=10'} cpu: [x64] os: [linux, freebsd] - "@sentry/cli-linux-x64@2.31.2": - resolution: - { - integrity: sha512-YL/r+15R4mOEiU3mzn7iFQOeFEUB6KxeKGTTrtpeOGynVUGIdq4nV5rHow5JDbIzOuBS3SpOmcIMluvo1NCh0g==, - } - engines: { node: ">=10" } + '@sentry/cli-linux-x64@2.31.2': + resolution: {integrity: sha512-YL/r+15R4mOEiU3mzn7iFQOeFEUB6KxeKGTTrtpeOGynVUGIdq4nV5rHow5JDbIzOuBS3SpOmcIMluvo1NCh0g==} + engines: {node: '>=10'} cpu: [x64] os: [linux, freebsd] - "@sentry/cli-win32-i686@2.31.0": - resolution: - { - integrity: sha512-+K7fdk57aUd4CmYrQfDGYPzVyxsTnVro6IPb5QSSLpP03dL7ko5208epu4m2SyN/MkFvscy9Di3n3DTvIfDU2w==, - } - engines: { node: ">=10" } + '@sentry/cli-win32-i686@2.31.0': + resolution: {integrity: sha512-+K7fdk57aUd4CmYrQfDGYPzVyxsTnVro6IPb5QSSLpP03dL7ko5208epu4m2SyN/MkFvscy9Di3n3DTvIfDU2w==} + engines: {node: '>=10'} cpu: [x86, ia32] os: [win32] - "@sentry/cli-win32-i686@2.31.2": - resolution: - { - integrity: sha512-Az/2bmW+TFI059RE0mSBIxTBcoShIclz7BDebmIoCkZ+retrwAzpmBnBCDAHow+Yi43utOow+3/4idGa2OxcLw==, - } - engines: { node: ">=10" } + '@sentry/cli-win32-i686@2.31.2': + resolution: {integrity: sha512-Az/2bmW+TFI059RE0mSBIxTBcoShIclz7BDebmIoCkZ+retrwAzpmBnBCDAHow+Yi43utOow+3/4idGa2OxcLw==} + engines: {node: '>=10'} cpu: [x86, ia32] os: [win32] - "@sentry/cli-win32-x64@2.31.0": - resolution: - { - integrity: sha512-w5cvpZ6VVlhlyleY8TYHmrP7g48vKHnoVt5xFccfxT+HqQI/AxodvzgVvBTM2kB/sh/kHwexp6bJGWCdkGftww==, - } - engines: { node: ">=10" } + '@sentry/cli-win32-x64@2.31.0': + resolution: {integrity: sha512-w5cvpZ6VVlhlyleY8TYHmrP7g48vKHnoVt5xFccfxT+HqQI/AxodvzgVvBTM2kB/sh/kHwexp6bJGWCdkGftww==} + engines: {node: '>=10'} cpu: [x64] os: [win32] - "@sentry/cli-win32-x64@2.31.2": - resolution: - { - integrity: sha512-XIzyRnJu539NhpFa+JYkotzVwv3NrZ/4GfHB/JWA2zReRvsk39jJG8D5HOmm0B9JA63QQT7Dt39RW8g3lkmb6w==, - } - engines: { node: ">=10" } + '@sentry/cli-win32-x64@2.31.2': + resolution: {integrity: sha512-XIzyRnJu539NhpFa+JYkotzVwv3NrZ/4GfHB/JWA2zReRvsk39jJG8D5HOmm0B9JA63QQT7Dt39RW8g3lkmb6w==} + engines: {node: '>=10'} cpu: [x64] os: [win32] - "@sentry/cli@2.31.0": - resolution: - { - integrity: sha512-nCESoXAG3kRUO5n3QbDYAqX6RU3z1ORjnd7a3sqijYsCGHfOpcjGdS7JYLVg5if+tXMEF5529BPXFe5Kg/J9tw==, - } - engines: { node: ">= 10" } + '@sentry/cli@2.31.0': + resolution: {integrity: sha512-nCESoXAG3kRUO5n3QbDYAqX6RU3z1ORjnd7a3sqijYsCGHfOpcjGdS7JYLVg5if+tXMEF5529BPXFe5Kg/J9tw==} + engines: {node: '>= 10'} hasBin: true - "@sentry/cli@2.31.2": - resolution: - { - integrity: sha512-2aKyUx6La2P+pplL8+2vO67qJ+c1C79KYWAyQBE0JIT5kvKK9JpwtdNoK1F0/2mRpwhhYPADCz3sVIRqmL8cQQ==, - } - engines: { node: ">= 10" } + '@sentry/cli@2.31.2': + resolution: {integrity: sha512-2aKyUx6La2P+pplL8+2vO67qJ+c1C79KYWAyQBE0JIT5kvKK9JpwtdNoK1F0/2mRpwhhYPADCz3sVIRqmL8cQQ==} + engines: {node: '>= 10'} hasBin: true - "@sentry/core@6.19.7": - resolution: - { - integrity: sha512-tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw==, - } - engines: { node: ">=6" } - - "@sentry/core@7.117.0": - resolution: - { - integrity: sha512-1XZ4/d/DEwnfM2zBMloXDwX+W7s76lGKQMgd8bwgPJZjjEztMJ7X0uopKAGwlQcjn242q+hsCBR6C+fSuI5kvg==, - } - engines: { node: ">=8" } - - "@sentry/core@8.16.0": - resolution: - { - integrity: sha512-l9mQgm5OqnykvZMh6PmJ/9ygW4qLyEFop+pQH/uM5zQCZQvEa7rvAd9QXKHdbVKq1CxJa/nJiByc8wPWxsftGQ==, - } - engines: { node: ">=14.18" } - - "@sentry/electron@5.2.0": - resolution: - { - integrity: sha512-KXwY/JB/6GfD5GdYVtiORXaBJ3WQNKeTDMQFKIwnDv4SpzNsbG0luk71K1iOXFWbboOhom/QITatSgoE7f3TSw==, - } - - "@sentry/hub@6.19.7": - resolution: - { - integrity: sha512-y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA==, - } - engines: { node: ">=6" } - - "@sentry/hub@7.117.0": - resolution: - { - integrity: sha512-pQrXnbzsRHCUsVIqz/sZ0vggnxuuHqsmyjoy2Ha1qn1Ya4QbyAWEEGoZTnZx6I/Vt3dzVvRnR3YCywatdkaFxg==, - } - engines: { node: ">=8" } - - "@sentry/integrations@7.117.0": - resolution: - { - integrity: sha512-U3suSZysmU9EiQqg0ga5CxveAyNbi9IVdsapMDq5EQGNcVDvheXtULs+BOc11WYP3Kw2yWB38VDqLepfc/Fg2g==, - } - engines: { node: ">=8" } - - "@sentry/minimal@6.19.7": - resolution: - { - integrity: sha512-wcYmSJOdvk6VAPx8IcmZgN08XTXRwRtB1aOLZm+MVHjIZIhHoBGZJYTVQS/BWjldsamj2cX3YGbGXNunaCfYJQ==, - } - engines: { node: ">=6" } - - "@sentry/node@6.19.7": - resolution: - { - integrity: sha512-gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg==, - } - engines: { node: ">=6" } - - "@sentry/node@8.16.0": - resolution: - { - integrity: sha512-MIc09ECfTcJ5Vqo0QUJ9MUVSQZU6IDqIzPj2QsRDnRVU5QnghNgZcK7raovNz8vByFEWoFuMwPpKabf1pN4pWA==, - } - engines: { node: ">=14.18" } - - "@sentry/opentelemetry@8.16.0": - resolution: - { - integrity: sha512-x5yXEpv6flmNMcghTdgKd7zktWqnjG0H2g90j+XAetvsLxVGzmQkwn4XR4YDoL5qFJ08DxcWdXs4B5oplOtsVA==, - } - engines: { node: ">=14.18" } - peerDependencies: - "@opentelemetry/api": ^1.9.0 - "@opentelemetry/core": ^1.25.1 - "@opentelemetry/instrumentation": ^0.52.1 - "@opentelemetry/sdk-trace-base": ^1.25.1 - "@opentelemetry/semantic-conventions": ^1.25.1 - - "@sentry/react-native@5.24.3": - resolution: - { - integrity: sha512-KBtXSYzk4Ge9GX4e7520oHhmo6UqGl3rH627Xpl3Gxmh9psQsLDmYXVKiMOFBZrSBAv7FAV0jf6zERK8lNY/Gg==, - } + '@sentry/core@6.19.7': + resolution: {integrity: sha512-tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw==} + engines: {node: '>=6'} + + '@sentry/core@7.117.0': + resolution: {integrity: sha512-1XZ4/d/DEwnfM2zBMloXDwX+W7s76lGKQMgd8bwgPJZjjEztMJ7X0uopKAGwlQcjn242q+hsCBR6C+fSuI5kvg==} + engines: {node: '>=8'} + + '@sentry/core@8.16.0': + resolution: {integrity: sha512-l9mQgm5OqnykvZMh6PmJ/9ygW4qLyEFop+pQH/uM5zQCZQvEa7rvAd9QXKHdbVKq1CxJa/nJiByc8wPWxsftGQ==} + engines: {node: '>=14.18'} + + '@sentry/electron@5.2.0': + resolution: {integrity: sha512-KXwY/JB/6GfD5GdYVtiORXaBJ3WQNKeTDMQFKIwnDv4SpzNsbG0luk71K1iOXFWbboOhom/QITatSgoE7f3TSw==} + + '@sentry/hub@6.19.7': + resolution: {integrity: sha512-y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA==} + engines: {node: '>=6'} + + '@sentry/hub@7.117.0': + resolution: {integrity: sha512-pQrXnbzsRHCUsVIqz/sZ0vggnxuuHqsmyjoy2Ha1qn1Ya4QbyAWEEGoZTnZx6I/Vt3dzVvRnR3YCywatdkaFxg==} + engines: {node: '>=8'} + + '@sentry/integrations@7.117.0': + resolution: {integrity: sha512-U3suSZysmU9EiQqg0ga5CxveAyNbi9IVdsapMDq5EQGNcVDvheXtULs+BOc11WYP3Kw2yWB38VDqLepfc/Fg2g==} + engines: {node: '>=8'} + + '@sentry/minimal@6.19.7': + resolution: {integrity: sha512-wcYmSJOdvk6VAPx8IcmZgN08XTXRwRtB1aOLZm+MVHjIZIhHoBGZJYTVQS/BWjldsamj2cX3YGbGXNunaCfYJQ==} + engines: {node: '>=6'} + + '@sentry/node@6.19.7': + resolution: {integrity: sha512-gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg==} + engines: {node: '>=6'} + + '@sentry/node@8.16.0': + resolution: {integrity: sha512-MIc09ECfTcJ5Vqo0QUJ9MUVSQZU6IDqIzPj2QsRDnRVU5QnghNgZcK7raovNz8vByFEWoFuMwPpKabf1pN4pWA==} + engines: {node: '>=14.18'} + + '@sentry/opentelemetry@8.16.0': + resolution: {integrity: sha512-x5yXEpv6flmNMcghTdgKd7zktWqnjG0H2g90j+XAetvsLxVGzmQkwn4XR4YDoL5qFJ08DxcWdXs4B5oplOtsVA==} + engines: {node: '>=14.18'} + peerDependencies: + '@opentelemetry/api': ^1.9.0 + '@opentelemetry/core': ^1.25.1 + '@opentelemetry/instrumentation': ^0.52.1 + '@opentelemetry/sdk-trace-base': ^1.25.1 + '@opentelemetry/semantic-conventions': ^1.25.1 + + '@sentry/react-native@5.24.3': + resolution: {integrity: sha512-KBtXSYzk4Ge9GX4e7520oHhmo6UqGl3rH627Xpl3Gxmh9psQsLDmYXVKiMOFBZrSBAv7FAV0jf6zERK8lNY/Gg==} hasBin: true peerDependencies: - expo: ">=49.0.0" - react: ">=17.0.0" - react-native: ">=0.65.0" + expo: '>=49.0.0' + react: '>=17.0.0' + react-native: '>=0.65.0' peerDependenciesMeta: expo: optional: true - "@sentry/react@7.117.0": - resolution: - { - integrity: sha512-aK+yaEP2esBhaczGU96Y7wkqB4umSIlRAzobv7ER88EGHzZulRaocTpQO8HJJGDHm4D8rD+E893BHnghkoqp4Q==, - } - engines: { node: ">=8" } + '@sentry/react@7.117.0': + resolution: {integrity: sha512-aK+yaEP2esBhaczGU96Y7wkqB4umSIlRAzobv7ER88EGHzZulRaocTpQO8HJJGDHm4D8rD+E893BHnghkoqp4Q==} + engines: {node: '>=8'} peerDependencies: react: 15.x || 16.x || 17.x || 18.x - "@sentry/replay@7.117.0": - resolution: - { - integrity: sha512-V4DfU+x4UsA4BsufbQ8jHYa5H0q5PYUgso2X1PR31g1fpx7yiYguSmCfz1UryM6KkH92dfTnqXapDB44kXOqzQ==, - } - engines: { node: ">=12" } - - "@sentry/types@6.19.7": - resolution: - { - integrity: sha512-jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg==, - } - engines: { node: ">=6" } - - "@sentry/types@7.117.0": - resolution: - { - integrity: sha512-5dtdulcUttc3F0Te7ekZmpSp/ebt/CA71ELx0uyqVGjWsSAINwskFD77sdcjqvZWek//WjiYX1+GRKlpJ1QqsA==, - } - engines: { node: ">=8" } - - "@sentry/types@8.16.0": - resolution: - { - integrity: sha512-cIRsn7gWGVaWHgCniBWA0N8PNwzDYibhjyjPRTMxUjuZCT37i7zxByKKmd9u4TpRIJ64MyirNyM0O6T0A26fpg==, - } - engines: { node: ">=14.18" } - - "@sentry/utils@6.19.7": - resolution: - { - integrity: sha512-z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA==, - } - engines: { node: ">=6" } - - "@sentry/utils@7.117.0": - resolution: - { - integrity: sha512-KkcLY8643SGBiDyPvMQOubBkwVX5IPknMHInc7jYC8pDVncGp7C65Wi506bCNPpKCWspUd/0VDNWOOen51/qKA==, - } - engines: { node: ">=8" } - - "@sentry/utils@8.16.0": - resolution: - { - integrity: sha512-tltCf2DVzz5TiYjxu/Rxbc9Qmm04893MFshV97jOTBcQeO2AAZBEl5rAoTCv1P08y7Yg+KiVwCx9Zj2x5U80/g==, - } - engines: { node: ">=14.18" } - - "@shopify/flash-list@1.6.4": - resolution: - { - integrity: sha512-M2momcnY7swsvmpHIFDVbdOaFw4aQocJXA/lFP0Gpz+alQjFylqVKvszxl4atYO2SNbjxlb2L6hEP9WEcAknGQ==, - } - peerDependencies: - "@babel/runtime": "*" - react: "*" - react-native: "*" - - "@shopify/react-native-performance-navigation@3.0.0": - resolution: - { - integrity: sha512-KhXXi3Rau2KWqwAXnW77gGuKEvWcMEmh+B5mdfRd9+oJ9QIoCkLPnnGcZYsMh0t3jFrmLFNmWTqScEB3CxkopQ==, - } - peerDependencies: - "@babel/runtime": "*" - "@react-navigation/core": ^6.2.1 - "@react-navigation/native": ^6.0.10 - "@react-navigation/stack": ^6.2.1 - "@shopify/react-native-performance": ^2.0.0 - react: "*" - react-native: "*" - - "@shopify/react-native-performance@4.1.2": - resolution: - { - integrity: sha512-1Xu2xo+hAxg75iuX5akVqAgc3h/J1ohfi7JKXlGsprP4ylpW7kHMfq/7AstL7FoUC8xcHsTUvUFhoZ94ot8g6Q==, - } - peerDependencies: - "@babel/runtime": "*" - react: "*" - react-native: "*" - - "@sideway/address@4.1.5": - resolution: - { - integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==, - } - - "@sideway/formula@3.0.1": - resolution: - { - integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==, - } - - "@sideway/pinpoint@2.0.0": - resolution: - { - integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==, - } - - "@sinclair/typebox@0.24.51": - resolution: - { - integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==, - } - - "@sinclair/typebox@0.27.8": - resolution: - { - integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==, - } - - "@sindresorhus/is@0.14.0": - resolution: - { - integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==, - } - engines: { node: ">=6" } - - "@sindresorhus/is@4.6.0": - resolution: - { - integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==, - } - engines: { node: ">=10" } - - "@sinonjs/commons@1.8.6": - resolution: - { - integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==, - } - - "@sinonjs/commons@3.0.1": - resolution: - { - integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==, - } - - "@sinonjs/fake-timers@10.3.0": - resolution: - { - integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==, - } - - "@sinonjs/fake-timers@8.1.0": - resolution: - { - integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==, - } - - "@sinonjs/fake-timers@9.1.2": - resolution: - { - integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==, - } - - "@smithy/abort-controller@2.2.0": - resolution: - { - integrity: sha512-wRlta7GuLWpTqtFfGo+nZyOO1vEvewdNR1R4rTxpC8XU6vG/NDyrFBhwLZsqg1NUoR1noVaXJPC/7ZK47QCySw==, - } - engines: { node: ">=14.0.0" } - - "@smithy/abort-controller@3.1.2": - resolution: - { - integrity: sha512-b5g+PNujlfqIib9BjkNB108NyO5aZM/RXjfOCXRCqXQ1oPnIkfvdORrztbGgCZdPe/BN/MKDlrGA7PafKPM2jw==, - } - engines: { node: ">=16.0.0" } - - "@smithy/chunked-blob-reader-native@2.2.0": - resolution: - { - integrity: sha512-VNB5+1oCgX3Fzs072yuRsUoC2N4Zg/LJ11DTxX3+Qu+Paa6AmbIF0E9sc2wthz9Psrk/zcOlTCyuposlIhPjZQ==, - } - - "@smithy/chunked-blob-reader-native@3.0.0": - resolution: - { - integrity: sha512-VDkpCYW+peSuM4zJip5WDfqvg2Mo/e8yxOv3VF1m11y7B8KKMKVFtmZWDe36Fvk8rGuWrPZHHXZ7rR7uM5yWyg==, - } - - "@smithy/chunked-blob-reader@2.2.0": - resolution: - { - integrity: sha512-3GJNvRwXBGdkDZZOGiziVYzDpn4j6zfyULHMDKAGIUo72yHALpE9CbhfQp/XcLNVoc1byfMpn6uW5H2BqPjgaQ==, - } - - "@smithy/chunked-blob-reader@3.0.0": - resolution: - { - integrity: sha512-sbnURCwjF0gSToGlsBiAmd1lRCmSn72nu9axfJu5lIx6RUEgHu6GwTMbqCdhQSi0Pumcm5vFxsi9XWXb2mTaoA==, - } - - "@smithy/config-resolver@2.2.0": - resolution: - { - integrity: sha512-fsiMgd8toyUba6n1WRmr+qACzXltpdDkPTAaDqc8QqPBUzO+/JKwL6bUBseHVi8tu9l+3JOK+tSf7cay+4B3LA==, - } - engines: { node: ">=14.0.0" } - - "@smithy/config-resolver@3.0.6": - resolution: - { - integrity: sha512-j7HuVNoRd8EhcFp0MzcUb4fG40C7BcyshH+fAd3Jhd8bINNFvEQYBrZoS/SK6Pun9WPlfoI8uuU2SMz8DsEGlA==, - } - engines: { node: ">=16.0.0" } - - "@smithy/core@1.4.0": - resolution: - { - integrity: sha512-uu9ZDI95Uij4qk+L6kyFjdk11zqBkcJ3Lv0sc6jZrqHvLyr0+oeekD3CnqMafBn/5PRI6uv6ulW3kNLRBUHeVw==, - } - engines: { node: ">=14.0.0" } - - "@smithy/core@2.4.1": - resolution: - { - integrity: sha512-7cts7/Oni7aCHebHGiBeWoz5z+vmH+Vx2Z/UW3XtXMslcxI3PEwBZxNinepwZjixS3n12fPc247PHWmjU7ndsQ==, - } - engines: { node: ">=16.0.0" } - - "@smithy/credential-provider-imds@2.3.0": - resolution: - { - integrity: sha512-BWB9mIukO1wjEOo1Ojgl6LrG4avcaC7T/ZP6ptmAaW4xluhSIPZhY+/PI5YKzlk+jsm+4sQZB45Bt1OfMeQa3w==, - } - engines: { node: ">=14.0.0" } - - "@smithy/credential-provider-imds@3.2.1": - resolution: - { - integrity: sha512-4z/oTWpRF2TqQI3aCM89/PWu3kim58XU4kOCTtuTJnoaS4KT95cPWMxbQfTN2vzcOe96SOKO8QouQW/+ESB1fQ==, - } - engines: { node: ">=16.0.0" } - - "@smithy/eventstream-codec@2.2.0": - resolution: - { - integrity: sha512-8janZoJw85nJmQZc4L8TuePp2pk1nxLgkxIR0TUjKJ5Dkj5oelB9WtiSSGXCQvNsJl0VSTvK/2ueMXxvpa9GVw==, - } - - "@smithy/eventstream-codec@3.1.3": - resolution: - { - integrity: sha512-mKBrmhg6Zd3j07G9dkKTGmrU7pdJGTNz8LbZtIOR3QoodS5yDNqEqoXU4Eg38snZcnCAh7NPBsw5ndxtJPLiCg==, - } - - "@smithy/eventstream-serde-browser@2.2.0": - resolution: - { - integrity: sha512-UaPf8jKbcP71BGiO0CdeLmlg+RhWnlN8ipsMSdwvqBFigl5nil3rHOI/5GE3tfiuX8LvY5Z9N0meuU7Rab7jWw==, - } - engines: { node: ">=14.0.0" } - - "@smithy/eventstream-serde-browser@3.0.7": - resolution: - { - integrity: sha512-UC4RQqyM8B0g5cX/xmWtsNgSBmZ13HrzCqoe5Ulcz6R462/egbIdfTXnayik7jkjvwOrCPL1N11Q9S+n68jPLA==, - } - engines: { node: ">=16.0.0" } - - "@smithy/eventstream-serde-config-resolver@2.2.0": - resolution: - { - integrity: sha512-RHhbTw/JW3+r8QQH7PrganjNCiuiEZmpi6fYUAetFfPLfZ6EkiA08uN3EFfcyKubXQxOwTeJRZSQmDDCdUshaA==, - } - engines: { node: ">=14.0.0" } - - "@smithy/eventstream-serde-config-resolver@3.0.4": - resolution: - { - integrity: sha512-saIs5rtAMpifqL7u7nc5YeE/6gkenzXpSz5NwEyhIesRWtHK+zEuYn9KY8SArZEbPSHyGxvvgKk1z86VzfUGHw==, - } - engines: { node: ">=16.0.0" } - - "@smithy/eventstream-serde-node@2.2.0": - resolution: - { - integrity: sha512-zpQMtJVqCUMn+pCSFcl9K/RPNtQE0NuMh8sKpCdEHafhwRsjP50Oq/4kMmvxSRy6d8Jslqd8BLvDngrUtmN9iA==, - } - engines: { node: ">=14.0.0" } - - "@smithy/eventstream-serde-node@3.0.6": - resolution: - { - integrity: sha512-gRKGBdZah3EjZZgWcsTpShq4cZ4Q4JTTe1OPob+jrftmbYj6CvpeydZbH0roO5SvBG8SI3aBZIet9TGN3zUxUw==, - } - engines: { node: ">=16.0.0" } - - "@smithy/eventstream-serde-universal@2.2.0": - resolution: - { - integrity: sha512-pvoe/vvJY0mOpuF84BEtyZoYfbehiFj8KKWk1ds2AT0mTLYFVs+7sBJZmioOFdBXKd48lfrx1vumdPdmGlCLxA==, - } - engines: { node: ">=14.0.0" } - - "@smithy/eventstream-serde-universal@3.0.6": - resolution: - { - integrity: sha512-1jvXd4sFG+zKaL6WqrJXpL6E+oAMafuM5GPd4qF0+ccenZTX3DZugoCCjlooQyTh+TZho2FpdVYUf5J/bB/j6Q==, - } - engines: { node: ">=16.0.0" } - - "@smithy/fetch-http-handler@2.5.0": - resolution: - { - integrity: sha512-BOWEBeppWhLn/no/JxUL/ghTfANTjT7kg3Ww2rPqTUY9R4yHPXxJ9JhMe3Z03LN3aPwiwlpDIUcVw1xDyHqEhw==, - } - - "@smithy/fetch-http-handler@3.2.5": - resolution: - { - integrity: sha512-DjRtGmK8pKQMIo9+JlAKUt14Z448bg8nAN04yKIvlrrpmpRSG57s5d2Y83npks1r4gPtTRNbAFdQCoj9l3P2KQ==, - } - - "@smithy/hash-blob-browser@2.2.0": - resolution: - { - integrity: sha512-SGPoVH8mdXBqrkVCJ1Hd1X7vh1zDXojNN1yZyZTZsCno99hVue9+IYzWDjq/EQDDXxmITB0gBmuyPh8oAZSTcg==, - } - - "@smithy/hash-blob-browser@3.1.3": - resolution: - { - integrity: sha512-im9wAU9mANWW0OP0YGqwX3lw0nXG0ngyIcKQ8V/MUz1r7A6uO2lpPqKmAsH4VPGNLP2JPUhj4aW/m5UKkxX/IA==, - } - - "@smithy/hash-node@2.2.0": - resolution: - { - integrity: sha512-zLWaC/5aWpMrHKpoDF6nqpNtBhlAYKF/7+9yMN7GpdR8CzohnWfGtMznPybnwSS8saaXBMxIGwJqR4HmRp6b3g==, - } - engines: { node: ">=14.0.0" } - - "@smithy/hash-node@3.0.4": - resolution: - { - integrity: sha512-6FgTVqEfCr9z/7+Em8BwSkJKA2y3krf1em134x3yr2NHWVCo2KYI8tcA53cjeO47y41jwF84ntsEE0Pe6pNKlg==, - } - engines: { node: ">=16.0.0" } - - "@smithy/hash-stream-node@2.2.0": - resolution: - { - integrity: sha512-aT+HCATOSRMGpPI7bi7NSsTNVZE/La9IaxLXWoVAYMxHT5hGO3ZOGEMZQg8A6nNL+pdFGtZQtND1eoY084HgHQ==, - } - engines: { node: ">=14.0.0" } - - "@smithy/hash-stream-node@3.1.3": - resolution: - { - integrity: sha512-Tz/eTlo1ffqYn+19VaMjDDbmEWqYe4DW1PAWaS8HvgRdO6/k9hxNPt8Wv5laXoilxE20YzKugiHvxHyO6J7kGA==, - } - engines: { node: ">=16.0.0" } - - "@smithy/invalid-dependency@2.2.0": - resolution: - { - integrity: sha512-nEDASdbKFKPXN2O6lOlTgrEEOO9NHIeO+HVvZnkqc8h5U9g3BIhWsvzFo+UcUbliMHvKNPD/zVxDrkP1Sbgp8Q==, - } - - "@smithy/invalid-dependency@3.0.4": - resolution: - { - integrity: sha512-MJBUrojC4SEXi9aJcnNOE3oNAuYNphgCGFXscaCj2TA/59BTcXhzHACP8jnnEU3n4yir/NSLKzxqez0T4x4tjA==, - } - - "@smithy/is-array-buffer@2.2.0": - resolution: - { - integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==, - } - engines: { node: ">=14.0.0" } - - "@smithy/is-array-buffer@3.0.0": - resolution: - { - integrity: sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==, - } - engines: { node: ">=16.0.0" } - - "@smithy/md5-js@2.2.0": - resolution: - { - integrity: sha512-M26XTtt9IIusVMOWEAhIvFIr9jYj4ISPPGJROqw6vXngO3IYJCnVVSMFn4Tx1rUTG5BiKJNg9u2nxmBiZC5IlQ==, - } - - "@smithy/md5-js@3.0.4": - resolution: - { - integrity: sha512-qSlqr/+hybufIJgxQW2gYzGE6ywfOxkjjJVojbbmv4MtxfdDFfzRew+NOIOXcYgazW0f8OYBTIKsmNsjxpvnng==, - } - - "@smithy/middleware-content-length@2.2.0": - resolution: - { - integrity: sha512-5bl2LG1Ah/7E5cMSC+q+h3IpVHMeOkG0yLRyQT1p2aMJkSrZG7RlXHPuAgb7EyaFeidKEnnd/fNaLLaKlHGzDQ==, - } - engines: { node: ">=14.0.0" } - - "@smithy/middleware-content-length@3.0.6": - resolution: - { - integrity: sha512-AFyHCfe8rumkJkz+hCOVJmBagNBj05KypyDwDElA4TgMSA4eYDZRjVePFZuyABrJZFDc7uVj3dpFIDCEhf59SA==, - } - engines: { node: ">=16.0.0" } - - "@smithy/middleware-endpoint@2.5.0": - resolution: - { - integrity: sha512-OBhI9ZEAG8Xen0xsFJwwNOt44WE2CWkfYIxTognC8x42Lfsdf0VN/wCMqpdkySMDio/vts10BiovAxQp0T0faA==, - } - engines: { node: ">=14.0.0" } - - "@smithy/middleware-endpoint@3.1.1": - resolution: - { - integrity: sha512-Irv+soW8NKluAtFSEsF8O3iGyLxa5oOevJb/e1yNacV9H7JP/yHyJuKST5YY2ORS1+W34VR8EuUrOF+K29Pl4g==, - } - engines: { node: ">=16.0.0" } - - "@smithy/middleware-retry@2.2.0": - resolution: - { - integrity: sha512-PsjDOLpbevgn37yJbawmfVoanru40qVA8UEf2+YA1lvOefmhuhL6ZbKtGsLAWDRnE1OlAmedsbA/htH6iSZjNA==, - } - engines: { node: ">=14.0.0" } - - "@smithy/middleware-retry@3.0.16": - resolution: - { - integrity: sha512-08kI36p1yB4CWO3Qi+UQxjzobt8iQJpnruF0K5BkbZmA/N/sJ51A1JJGJ36GgcbFyPfWw2FU48S5ZoqXt0h0jw==, - } - engines: { node: ">=16.0.0" } - - "@smithy/middleware-serde@2.3.0": - resolution: - { - integrity: sha512-sIADe7ojwqTyvEQBe1nc/GXB9wdHhi9UwyX0lTyttmUWDJLP655ZYE1WngnNyXREme8I27KCaUhyhZWRXL0q7Q==, - } - engines: { node: ">=14.0.0" } - - "@smithy/middleware-serde@3.0.4": - resolution: - { - integrity: sha512-1lPDB2O6IJ50Ucxgn7XrvZXbbuI48HmPCcMTuSoXT1lDzuTUfIuBjgAjpD8YLVMfnrjdepi/q45556LA51Pubw==, - } - engines: { node: ">=16.0.0" } - - "@smithy/middleware-stack@2.2.0": - resolution: - { - integrity: sha512-Qntc3jrtwwrsAC+X8wms8zhrTr0sFXnyEGhZd9sLtsJ/6gGQKFzNB+wWbOcpJd7BR8ThNCoKt76BuQahfMvpeA==, - } - engines: { node: ">=14.0.0" } - - "@smithy/middleware-stack@3.0.4": - resolution: - { - integrity: sha512-sLMRjtMCqtVcrOqaOZ10SUnlFE25BSlmLsi4bRSGFD7dgR54eqBjfqkVkPBQyrKBortfGM0+2DJoUPcGECR+nQ==, - } - engines: { node: ">=16.0.0" } - - "@smithy/node-config-provider@2.3.0": - resolution: - { - integrity: sha512-0elK5/03a1JPWMDPaS726Iw6LpQg80gFut1tNpPfxFuChEEklo2yL823V94SpTZTxmKlXFtFgsP55uh3dErnIg==, - } - engines: { node: ">=14.0.0" } - - "@smithy/node-config-provider@3.1.5": - resolution: - { - integrity: sha512-dq/oR3/LxgCgizVk7in7FGTm0w9a3qM4mg3IIXLTCHeW3fV+ipssSvBZ2bvEx1+asfQJTyCnVLeYf7JKfd9v3Q==, - } - engines: { node: ">=16.0.0" } - - "@smithy/node-http-handler@2.5.0": - resolution: - { - integrity: sha512-mVGyPBzkkGQsPoxQUbxlEfRjrj6FPyA3u3u2VXGr9hT8wilsoQdZdvKpMBFMB8Crfhv5dNkKHIW0Yyuc7eABqA==, - } - engines: { node: ">=14.0.0" } - - "@smithy/node-http-handler@3.2.0": - resolution: - { - integrity: sha512-5TFqaABbiY7uJMKbqR4OARjwI/l4TRoysDJ75pLpVQyO3EcmeloKYwDGyCtgB9WJniFx3BMkmGCB9+j+QiB+Ww==, - } - engines: { node: ">=16.0.0" } - - "@smithy/property-provider@2.2.0": - resolution: - { - integrity: sha512-+xiil2lFhtTRzXkx8F053AV46QnIw6e7MV8od5Mi68E1ICOjCeCHw2XfLnDEUHnT9WGUIkwcqavXjfwuJbGlpg==, - } - engines: { node: ">=14.0.0" } - - "@smithy/property-provider@3.1.4": - resolution: - { - integrity: sha512-BmhefQbfkSl9DeU0/e6k9N4sT5bya5etv2epvqLUz3eGyfRBhtQq60nDkc1WPp4c+KWrzK721cUc/3y0f2psPQ==, - } - engines: { node: ">=16.0.0" } - - "@smithy/protocol-http@3.3.0": - resolution: - { - integrity: sha512-Xy5XK1AFWW2nlY/biWZXu6/krgbaf2dg0q492D8M5qthsnU2H+UgFeZLbM76FnH7s6RO/xhQRkj+T6KBO3JzgQ==, - } - engines: { node: ">=14.0.0" } - - "@smithy/protocol-http@4.1.1": - resolution: - { - integrity: sha512-Fm5+8LkeIus83Y8jTL1XHsBGP8sPvE1rEVyKf/87kbOPTbzEDMcgOlzcmYXat2h+nC3wwPtRy8hFqtJS71+Wow==, - } - engines: { node: ">=16.0.0" } - - "@smithy/querystring-builder@2.2.0": - resolution: - { - integrity: sha512-L1kSeviUWL+emq3CUVSgdogoM/D9QMFaqxL/dd0X7PCNWmPXqt+ExtrBjqT0V7HLN03Vs9SuiLrG3zy3JGnE5A==, - } - engines: { node: ">=14.0.0" } - - "@smithy/querystring-builder@3.0.4": - resolution: - { - integrity: sha512-NEoPAsZPdpfVbF98qm8i5k1XMaRKeEnO47CaL5ja6Y1Z2DgJdwIJuJkTJypKm/IKfp8gc0uimIFLwhml8+/pAw==, - } - engines: { node: ">=16.0.0" } - - "@smithy/querystring-parser@2.2.0": - resolution: - { - integrity: sha512-BvHCDrKfbG5Yhbpj4vsbuPV2GgcpHiAkLeIlcA1LtfpMz3jrqizP1+OguSNSj1MwBHEiN+jwNisXLGdajGDQJA==, - } - engines: { node: ">=14.0.0" } - - "@smithy/querystring-parser@3.0.4": - resolution: - { - integrity: sha512-7CHPXffFcakFzhO0OZs/rn6fXlTHrSDdLhIT6/JIk1u2bvwguTL3fMCc1+CfcbXA7TOhjWXu3TcB1EGMqJQwHg==, - } - engines: { node: ">=16.0.0" } - - "@smithy/service-error-classification@2.1.5": - resolution: - { - integrity: sha512-uBDTIBBEdAQryvHdc5W8sS5YX7RQzF683XrHePVdFmAgKiMofU15FLSM0/HU03hKTnazdNRFa0YHS7+ArwoUSQ==, - } - engines: { node: ">=14.0.0" } - - "@smithy/service-error-classification@3.0.4": - resolution: - { - integrity: sha512-KciDHHKFVTb9A1KlJHBt2F26PBaDtoE23uTZy5qRvPzHPqrooXFi6fmx98lJb3Jl38PuUTqIuCUmmY3pacuMBQ==, - } - engines: { node: ">=16.0.0" } - - "@smithy/shared-ini-file-loader@2.4.0": - resolution: - { - integrity: sha512-WyujUJL8e1B6Z4PBfAqC/aGY1+C7T0w20Gih3yrvJSk97gpiVfB+y7c46T4Nunk+ZngLq0rOIdeVeIklk0R3OA==, - } - engines: { node: ">=14.0.0" } - - "@smithy/shared-ini-file-loader@3.1.5": - resolution: - { - integrity: sha512-6jxsJ4NOmY5Du4FD0enYegNJl4zTSuKLiChIMqIkh+LapxiP7lmz5lYUNLE9/4cvA65mbBmtdzZ8yxmcqM5igg==, - } - engines: { node: ">=16.0.0" } - - "@smithy/signature-v4@2.2.0": - resolution: - { - integrity: sha512-+B5TNzj/fRZzVW3z8UUJOkNx15+4E0CLuvJmJUA1JUIZFp3rdJ/M2H5r2SqltaVPXL0oIxv/6YK92T9TsFGbFg==, - } - engines: { node: ">=14.0.0" } - - "@smithy/signature-v4@4.1.1": - resolution: - { - integrity: sha512-SH9J9be81TMBNGCmjhrgMWu4YSpQ3uP1L06u/K9SDrE2YibUix1qxedPCxEQu02At0P0SrYDjvz+y91vLG0KRQ==, - } - engines: { node: ">=16.0.0" } - - "@smithy/smithy-client@2.5.0": - resolution: - { - integrity: sha512-DDXWHWdimtS3y/Kw1Jo46KQ0ZYsDKcldFynQERUGBPDpkW1lXOTHy491ALHjwfiBQvzsVKVxl5+ocXNIgJuX4g==, - } - engines: { node: ">=14.0.0" } - - "@smithy/smithy-client@3.3.0": - resolution: - { - integrity: sha512-H32nVo8tIX82kB0xI2LBrIcj8jx/3/ITotNLbeG1UL0b3b440YPR/hUvqjFJiaB24pQrMjRbU8CugqH5sV0hkw==, - } - engines: { node: ">=16.0.0" } - - "@smithy/types@2.12.0": - resolution: - { - integrity: sha512-QwYgloJ0sVNBeBuBs65cIkTbfzV/Q6ZNPCJ99EICFEdJYG50nGIY/uYXp+TbsdJReIuPr0a0kXmCvren3MbRRw==, - } - engines: { node: ">=14.0.0" } - - "@smithy/types@3.4.0": - resolution: - { - integrity: sha512-0shOWSg/pnFXPcsSU8ZbaJ4JBHZJPPzLCJxafJvbMVFo9l1w81CqpgUqjlKGNHVrVB7fhIs+WS82JDTyzaLyLA==, - } - engines: { node: ">=16.0.0" } - - "@smithy/url-parser@2.2.0": - resolution: - { - integrity: sha512-hoA4zm61q1mNTpksiSWp2nEl1dt3j726HdRhiNgVJQMj7mLp7dprtF57mOB6JvEk/x9d2bsuL5hlqZbBuHQylQ==, - } - - "@smithy/url-parser@3.0.4": - resolution: - { - integrity: sha512-XdXfObA8WrloavJYtDuzoDhJAYc5rOt+FirFmKBRKaihu7QtU/METAxJgSo7uMK6hUkx0vFnqxV75urtRaLkLg==, - } - - "@smithy/util-base64@2.3.0": - resolution: - { - integrity: sha512-s3+eVwNeJuXUwuMbusncZNViuhv2LjVJ1nMwTqSA0XAC7gjKhqqxRdJPhR8+YrkoZ9IiIbFk/yK6ACe/xlF+hw==, - } - engines: { node: ">=14.0.0" } - - "@smithy/util-base64@3.0.0": - resolution: - { - integrity: sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==, - } - engines: { node: ">=16.0.0" } - - "@smithy/util-body-length-browser@2.2.0": - resolution: - { - integrity: sha512-dtpw9uQP7W+n3vOtx0CfBD5EWd7EPdIdsQnWTDoFf77e3VUf05uA7R7TGipIo8e4WL2kuPdnsr3hMQn9ziYj5w==, - } - - "@smithy/util-body-length-browser@3.0.0": - resolution: - { - integrity: sha512-cbjJs2A1mLYmqmyVl80uoLTJhAcfzMOyPgjwAYusWKMdLeNtzmMz9YxNl3/jRLoxSS3wkqkf0jwNdtXWtyEBaQ==, - } - - "@smithy/util-body-length-node@2.3.0": - resolution: - { - integrity: sha512-ITWT1Wqjubf2CJthb0BuT9+bpzBfXeMokH/AAa5EJQgbv9aPMVfnM76iFIZVFf50hYXGbtiV71BHAthNWd6+dw==, - } - engines: { node: ">=14.0.0" } - - "@smithy/util-body-length-node@3.0.0": - resolution: - { - integrity: sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==, - } - engines: { node: ">=16.0.0" } - - "@smithy/util-buffer-from@2.2.0": - resolution: - { - integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==, - } - engines: { node: ">=14.0.0" } - - "@smithy/util-buffer-from@3.0.0": - resolution: - { - integrity: sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==, - } - engines: { node: ">=16.0.0" } - - "@smithy/util-config-provider@2.3.0": - resolution: - { - integrity: sha512-HZkzrRcuFN1k70RLqlNK4FnPXKOpkik1+4JaBoHNJn+RnJGYqaa3c5/+XtLOXhlKzlRgNvyaLieHTW2VwGN0VQ==, - } - engines: { node: ">=14.0.0" } - - "@smithy/util-config-provider@3.0.0": - resolution: - { - integrity: sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==, - } - engines: { node: ">=16.0.0" } - - "@smithy/util-defaults-mode-browser@2.2.0": - resolution: - { - integrity: sha512-2okTdZaCBvOJszAPU/KSvlimMe35zLOKbQpHhamFJmR7t95HSe0K3C92jQPjKY3PmDBD+7iMkOnuW05F5OlF4g==, - } - engines: { node: ">= 10.0.0" } - - "@smithy/util-defaults-mode-browser@3.0.16": - resolution: - { - integrity: sha512-Os8ddfNBe7hmc5UMWZxygIHCyAqY0aWR8Wnp/aKbti3f8Df/r0J9ttMZIxeMjsFgtVjEryB0q7SGcwBsHk8WEw==, - } - engines: { node: ">= 10.0.0" } - - "@smithy/util-defaults-mode-node@2.3.0": - resolution: - { - integrity: sha512-hfKXnNLmsW9cmLb/JXKIvtuO6Cf4SuqN5PN1C2Ru/TBIws+m1wSgb+A53vo0r66xzB6E82inKG2J7qtwdi+Kkw==, - } - engines: { node: ">= 10.0.0" } - - "@smithy/util-defaults-mode-node@3.0.16": - resolution: - { - integrity: sha512-rNhFIYRtrOrrhRlj6RL8jWA6/dcwrbGYAmy8+OAHjjzQ6zdzUBB1P+3IuJAgwWN6Y5GxI+mVXlM/pOjaoIgHow==, - } - engines: { node: ">= 10.0.0" } - - "@smithy/util-endpoints@1.2.0": - resolution: - { - integrity: sha512-BuDHv8zRjsE5zXd3PxFXFknzBG3owCpjq8G3FcsXW3CykYXuEqM3nTSsmLzw5q+T12ZYuDlVUZKBdpNbhVtlrQ==, - } - engines: { node: ">= 14.0.0" } - - "@smithy/util-endpoints@2.1.0": - resolution: - { - integrity: sha512-ilS7/0jcbS2ELdg0fM/4GVvOiuk8/U3bIFXUW25xE1Vh1Ol4DP6vVHQKqM40rCMizCLmJ9UxK+NeJrKlhI3HVA==, - } - engines: { node: ">=16.0.0" } - - "@smithy/util-hex-encoding@2.2.0": - resolution: - { - integrity: sha512-7iKXR+/4TpLK194pVjKiasIyqMtTYJsgKgM242Y9uzt5dhHnUDvMNb+3xIhRJ9QhvqGii/5cRUt4fJn3dtXNHQ==, - } - engines: { node: ">=14.0.0" } - - "@smithy/util-hex-encoding@3.0.0": - resolution: - { - integrity: sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==, - } - engines: { node: ">=16.0.0" } - - "@smithy/util-middleware@2.2.0": - resolution: - { - integrity: sha512-L1qpleXf9QD6LwLCJ5jddGkgWyuSvWBkJwWAZ6kFkdifdso+sk3L3O1HdmPvCdnCK3IS4qWyPxev01QMnfHSBw==, - } - engines: { node: ">=14.0.0" } - - "@smithy/util-middleware@3.0.4": - resolution: - { - integrity: sha512-uSXHTBhstb1c4nHdmQEdkNMv9LiRNaJ/lWV2U/GO+5F236YFpdPw+hyWI9Zc0Rp9XKzwD9kVZvhZmEgp0UCVnA==, - } - engines: { node: ">=16.0.0" } - - "@smithy/util-retry@2.2.0": - resolution: - { - integrity: sha512-q9+pAFPTfftHXRytmZ7GzLFFrEGavqapFc06XxzZFcSIGERXMerXxCitjOG1prVDR9QdjqotF40SWvbqcCpf8g==, - } - engines: { node: ">= 14.0.0" } - - "@smithy/util-retry@3.0.4": - resolution: - { - integrity: sha512-JJr6g0tO1qO2tCQyK+n3J18r34ZpvatlFN5ULcLranFIBZPxqoivb77EPyNTVwTGMEvvq2qMnyjm4jMIxjdLFg==, - } - engines: { node: ">=16.0.0" } - - "@smithy/util-stream@2.2.0": - resolution: - { - integrity: sha512-17faEXbYWIRst1aU9SvPZyMdWmqIrduZjVOqCPMIsWFNxs5yQQgFrJL6b2SdiCzyW9mJoDjFtgi53xx7EH+BXA==, - } - engines: { node: ">=14.0.0" } - - "@smithy/util-stream@3.1.4": - resolution: - { - integrity: sha512-txU3EIDLhrBZdGfon6E9V6sZz/irYnKFMblz4TLVjyq8hObNHNS2n9a2t7GIrl7d85zgEPhwLE0gANpZsvpsKg==, - } - engines: { node: ">=16.0.0" } - - "@smithy/util-uri-escape@2.2.0": - resolution: - { - integrity: sha512-jtmJMyt1xMD/d8OtbVJ2gFZOSKc+ueYJZPW20ULW1GOp/q/YIM0wNh+u8ZFao9UaIGz4WoPW8hC64qlWLIfoDA==, - } - engines: { node: ">=14.0.0" } - - "@smithy/util-uri-escape@3.0.0": - resolution: - { - integrity: sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==, - } - engines: { node: ">=16.0.0" } - - "@smithy/util-utf8@2.3.0": - resolution: - { - integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==, - } - engines: { node: ">=14.0.0" } - - "@smithy/util-utf8@3.0.0": - resolution: - { - integrity: sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==, - } - engines: { node: ">=16.0.0" } - - "@smithy/util-waiter@2.2.0": - resolution: - { - integrity: sha512-IHk53BVw6MPMi2Gsn+hCng8rFA3ZmR3Rk7GllxDUW9qFJl/hiSvskn7XldkECapQVkIg/1dHpMAxI9xSTaLLSA==, - } - engines: { node: ">=14.0.0" } - - "@smithy/util-waiter@3.1.3": - resolution: - { - integrity: sha512-OU0YllH51/CxD8iyr3UHSMwYqTGTyuxFdCMH/0F978t+iDmJseC/ttrWPb22zmYkhkrjqtipzC1xaMuax5QKIA==, - } - engines: { node: ">=16.0.0" } - - "@soda/friendly-errors-webpack-plugin@1.8.1": - resolution: - { - integrity: sha512-h2ooWqP8XuFqTXT+NyAFbrArzfQA7R6HTezADrvD9Re8fxMLTPPniLdqVTdDaO0eIoLaAwKT+d6w+5GeTk7Vbg==, - } - engines: { node: ">=8.0.0" } + '@sentry/replay@7.117.0': + resolution: {integrity: sha512-V4DfU+x4UsA4BsufbQ8jHYa5H0q5PYUgso2X1PR31g1fpx7yiYguSmCfz1UryM6KkH92dfTnqXapDB44kXOqzQ==} + engines: {node: '>=12'} + + '@sentry/types@6.19.7': + resolution: {integrity: sha512-jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg==} + engines: {node: '>=6'} + + '@sentry/types@7.117.0': + resolution: {integrity: sha512-5dtdulcUttc3F0Te7ekZmpSp/ebt/CA71ELx0uyqVGjWsSAINwskFD77sdcjqvZWek//WjiYX1+GRKlpJ1QqsA==} + engines: {node: '>=8'} + + '@sentry/types@8.16.0': + resolution: {integrity: sha512-cIRsn7gWGVaWHgCniBWA0N8PNwzDYibhjyjPRTMxUjuZCT37i7zxByKKmd9u4TpRIJ64MyirNyM0O6T0A26fpg==} + engines: {node: '>=14.18'} + + '@sentry/utils@6.19.7': + resolution: {integrity: sha512-z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA==} + engines: {node: '>=6'} + + '@sentry/utils@7.117.0': + resolution: {integrity: sha512-KkcLY8643SGBiDyPvMQOubBkwVX5IPknMHInc7jYC8pDVncGp7C65Wi506bCNPpKCWspUd/0VDNWOOen51/qKA==} + engines: {node: '>=8'} + + '@sentry/utils@8.16.0': + resolution: {integrity: sha512-tltCf2DVzz5TiYjxu/Rxbc9Qmm04893MFshV97jOTBcQeO2AAZBEl5rAoTCv1P08y7Yg+KiVwCx9Zj2x5U80/g==} + engines: {node: '>=14.18'} + + '@shopify/flash-list@1.6.4': + resolution: {integrity: sha512-M2momcnY7swsvmpHIFDVbdOaFw4aQocJXA/lFP0Gpz+alQjFylqVKvszxl4atYO2SNbjxlb2L6hEP9WEcAknGQ==} + peerDependencies: + '@babel/runtime': '*' + react: '*' + react-native: '*' + + '@shopify/react-native-performance-navigation@3.0.0': + resolution: {integrity: sha512-KhXXi3Rau2KWqwAXnW77gGuKEvWcMEmh+B5mdfRd9+oJ9QIoCkLPnnGcZYsMh0t3jFrmLFNmWTqScEB3CxkopQ==} + peerDependencies: + '@babel/runtime': '*' + '@react-navigation/core': ^6.2.1 + '@react-navigation/native': ^6.0.10 + '@react-navigation/stack': ^6.2.1 + '@shopify/react-native-performance': ^2.0.0 + react: '*' + react-native: '*' + + '@shopify/react-native-performance@4.1.2': + resolution: {integrity: sha512-1Xu2xo+hAxg75iuX5akVqAgc3h/J1ohfi7JKXlGsprP4ylpW7kHMfq/7AstL7FoUC8xcHsTUvUFhoZ94ot8g6Q==} + peerDependencies: + '@babel/runtime': '*' + react: '*' + react-native: '*' + + '@sideway/address@4.1.5': + resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} + + '@sideway/formula@3.0.1': + resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} + + '@sideway/pinpoint@2.0.0': + resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} + + '@sinclair/typebox@0.24.51': + resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==} + + '@sinclair/typebox@0.27.8': + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} + + '@sindresorhus/is@0.14.0': + resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} + engines: {node: '>=6'} + + '@sindresorhus/is@4.6.0': + resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} + engines: {node: '>=10'} + + '@sinonjs/commons@1.8.6': + resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==} + + '@sinonjs/commons@3.0.1': + resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==} + + '@sinonjs/fake-timers@10.3.0': + resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==} + + '@sinonjs/fake-timers@8.1.0': + resolution: {integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==} + + '@sinonjs/fake-timers@9.1.2': + resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==} + + '@smithy/abort-controller@2.2.0': + resolution: {integrity: sha512-wRlta7GuLWpTqtFfGo+nZyOO1vEvewdNR1R4rTxpC8XU6vG/NDyrFBhwLZsqg1NUoR1noVaXJPC/7ZK47QCySw==} + engines: {node: '>=14.0.0'} + + '@smithy/abort-controller@3.1.2': + resolution: {integrity: sha512-b5g+PNujlfqIib9BjkNB108NyO5aZM/RXjfOCXRCqXQ1oPnIkfvdORrztbGgCZdPe/BN/MKDlrGA7PafKPM2jw==} + engines: {node: '>=16.0.0'} + + '@smithy/chunked-blob-reader-native@2.2.0': + resolution: {integrity: sha512-VNB5+1oCgX3Fzs072yuRsUoC2N4Zg/LJ11DTxX3+Qu+Paa6AmbIF0E9sc2wthz9Psrk/zcOlTCyuposlIhPjZQ==} + + '@smithy/chunked-blob-reader-native@3.0.0': + resolution: {integrity: sha512-VDkpCYW+peSuM4zJip5WDfqvg2Mo/e8yxOv3VF1m11y7B8KKMKVFtmZWDe36Fvk8rGuWrPZHHXZ7rR7uM5yWyg==} + + '@smithy/chunked-blob-reader@2.2.0': + resolution: {integrity: sha512-3GJNvRwXBGdkDZZOGiziVYzDpn4j6zfyULHMDKAGIUo72yHALpE9CbhfQp/XcLNVoc1byfMpn6uW5H2BqPjgaQ==} + + '@smithy/chunked-blob-reader@3.0.0': + resolution: {integrity: sha512-sbnURCwjF0gSToGlsBiAmd1lRCmSn72nu9axfJu5lIx6RUEgHu6GwTMbqCdhQSi0Pumcm5vFxsi9XWXb2mTaoA==} + + '@smithy/config-resolver@2.2.0': + resolution: {integrity: sha512-fsiMgd8toyUba6n1WRmr+qACzXltpdDkPTAaDqc8QqPBUzO+/JKwL6bUBseHVi8tu9l+3JOK+tSf7cay+4B3LA==} + engines: {node: '>=14.0.0'} + + '@smithy/config-resolver@3.0.6': + resolution: {integrity: sha512-j7HuVNoRd8EhcFp0MzcUb4fG40C7BcyshH+fAd3Jhd8bINNFvEQYBrZoS/SK6Pun9WPlfoI8uuU2SMz8DsEGlA==} + engines: {node: '>=16.0.0'} + + '@smithy/core@1.4.0': + resolution: {integrity: sha512-uu9ZDI95Uij4qk+L6kyFjdk11zqBkcJ3Lv0sc6jZrqHvLyr0+oeekD3CnqMafBn/5PRI6uv6ulW3kNLRBUHeVw==} + engines: {node: '>=14.0.0'} + + '@smithy/core@2.4.1': + resolution: {integrity: sha512-7cts7/Oni7aCHebHGiBeWoz5z+vmH+Vx2Z/UW3XtXMslcxI3PEwBZxNinepwZjixS3n12fPc247PHWmjU7ndsQ==} + engines: {node: '>=16.0.0'} + + '@smithy/credential-provider-imds@2.3.0': + resolution: {integrity: sha512-BWB9mIukO1wjEOo1Ojgl6LrG4avcaC7T/ZP6ptmAaW4xluhSIPZhY+/PI5YKzlk+jsm+4sQZB45Bt1OfMeQa3w==} + engines: {node: '>=14.0.0'} + + '@smithy/credential-provider-imds@3.2.1': + resolution: {integrity: sha512-4z/oTWpRF2TqQI3aCM89/PWu3kim58XU4kOCTtuTJnoaS4KT95cPWMxbQfTN2vzcOe96SOKO8QouQW/+ESB1fQ==} + engines: {node: '>=16.0.0'} + + '@smithy/eventstream-codec@2.2.0': + resolution: {integrity: sha512-8janZoJw85nJmQZc4L8TuePp2pk1nxLgkxIR0TUjKJ5Dkj5oelB9WtiSSGXCQvNsJl0VSTvK/2ueMXxvpa9GVw==} + + '@smithy/eventstream-codec@3.1.3': + resolution: {integrity: sha512-mKBrmhg6Zd3j07G9dkKTGmrU7pdJGTNz8LbZtIOR3QoodS5yDNqEqoXU4Eg38snZcnCAh7NPBsw5ndxtJPLiCg==} + + '@smithy/eventstream-serde-browser@2.2.0': + resolution: {integrity: sha512-UaPf8jKbcP71BGiO0CdeLmlg+RhWnlN8ipsMSdwvqBFigl5nil3rHOI/5GE3tfiuX8LvY5Z9N0meuU7Rab7jWw==} + engines: {node: '>=14.0.0'} + + '@smithy/eventstream-serde-browser@3.0.7': + resolution: {integrity: sha512-UC4RQqyM8B0g5cX/xmWtsNgSBmZ13HrzCqoe5Ulcz6R462/egbIdfTXnayik7jkjvwOrCPL1N11Q9S+n68jPLA==} + engines: {node: '>=16.0.0'} + + '@smithy/eventstream-serde-config-resolver@2.2.0': + resolution: {integrity: sha512-RHhbTw/JW3+r8QQH7PrganjNCiuiEZmpi6fYUAetFfPLfZ6EkiA08uN3EFfcyKubXQxOwTeJRZSQmDDCdUshaA==} + engines: {node: '>=14.0.0'} + + '@smithy/eventstream-serde-config-resolver@3.0.4': + resolution: {integrity: sha512-saIs5rtAMpifqL7u7nc5YeE/6gkenzXpSz5NwEyhIesRWtHK+zEuYn9KY8SArZEbPSHyGxvvgKk1z86VzfUGHw==} + engines: {node: '>=16.0.0'} + + '@smithy/eventstream-serde-node@2.2.0': + resolution: {integrity: sha512-zpQMtJVqCUMn+pCSFcl9K/RPNtQE0NuMh8sKpCdEHafhwRsjP50Oq/4kMmvxSRy6d8Jslqd8BLvDngrUtmN9iA==} + engines: {node: '>=14.0.0'} + + '@smithy/eventstream-serde-node@3.0.6': + resolution: {integrity: sha512-gRKGBdZah3EjZZgWcsTpShq4cZ4Q4JTTe1OPob+jrftmbYj6CvpeydZbH0roO5SvBG8SI3aBZIet9TGN3zUxUw==} + engines: {node: '>=16.0.0'} + + '@smithy/eventstream-serde-universal@2.2.0': + resolution: {integrity: sha512-pvoe/vvJY0mOpuF84BEtyZoYfbehiFj8KKWk1ds2AT0mTLYFVs+7sBJZmioOFdBXKd48lfrx1vumdPdmGlCLxA==} + engines: {node: '>=14.0.0'} + + '@smithy/eventstream-serde-universal@3.0.6': + resolution: {integrity: sha512-1jvXd4sFG+zKaL6WqrJXpL6E+oAMafuM5GPd4qF0+ccenZTX3DZugoCCjlooQyTh+TZho2FpdVYUf5J/bB/j6Q==} + engines: {node: '>=16.0.0'} + + '@smithy/fetch-http-handler@2.5.0': + resolution: {integrity: sha512-BOWEBeppWhLn/no/JxUL/ghTfANTjT7kg3Ww2rPqTUY9R4yHPXxJ9JhMe3Z03LN3aPwiwlpDIUcVw1xDyHqEhw==} + + '@smithy/fetch-http-handler@3.2.5': + resolution: {integrity: sha512-DjRtGmK8pKQMIo9+JlAKUt14Z448bg8nAN04yKIvlrrpmpRSG57s5d2Y83npks1r4gPtTRNbAFdQCoj9l3P2KQ==} + + '@smithy/hash-blob-browser@2.2.0': + resolution: {integrity: sha512-SGPoVH8mdXBqrkVCJ1Hd1X7vh1zDXojNN1yZyZTZsCno99hVue9+IYzWDjq/EQDDXxmITB0gBmuyPh8oAZSTcg==} + + '@smithy/hash-blob-browser@3.1.3': + resolution: {integrity: sha512-im9wAU9mANWW0OP0YGqwX3lw0nXG0ngyIcKQ8V/MUz1r7A6uO2lpPqKmAsH4VPGNLP2JPUhj4aW/m5UKkxX/IA==} + + '@smithy/hash-node@2.2.0': + resolution: {integrity: sha512-zLWaC/5aWpMrHKpoDF6nqpNtBhlAYKF/7+9yMN7GpdR8CzohnWfGtMznPybnwSS8saaXBMxIGwJqR4HmRp6b3g==} + engines: {node: '>=14.0.0'} + + '@smithy/hash-node@3.0.4': + resolution: {integrity: sha512-6FgTVqEfCr9z/7+Em8BwSkJKA2y3krf1em134x3yr2NHWVCo2KYI8tcA53cjeO47y41jwF84ntsEE0Pe6pNKlg==} + engines: {node: '>=16.0.0'} + + '@smithy/hash-stream-node@2.2.0': + resolution: {integrity: sha512-aT+HCATOSRMGpPI7bi7NSsTNVZE/La9IaxLXWoVAYMxHT5hGO3ZOGEMZQg8A6nNL+pdFGtZQtND1eoY084HgHQ==} + engines: {node: '>=14.0.0'} + + '@smithy/hash-stream-node@3.1.3': + resolution: {integrity: sha512-Tz/eTlo1ffqYn+19VaMjDDbmEWqYe4DW1PAWaS8HvgRdO6/k9hxNPt8Wv5laXoilxE20YzKugiHvxHyO6J7kGA==} + engines: {node: '>=16.0.0'} + + '@smithy/invalid-dependency@2.2.0': + resolution: {integrity: sha512-nEDASdbKFKPXN2O6lOlTgrEEOO9NHIeO+HVvZnkqc8h5U9g3BIhWsvzFo+UcUbliMHvKNPD/zVxDrkP1Sbgp8Q==} + + '@smithy/invalid-dependency@3.0.4': + resolution: {integrity: sha512-MJBUrojC4SEXi9aJcnNOE3oNAuYNphgCGFXscaCj2TA/59BTcXhzHACP8jnnEU3n4yir/NSLKzxqez0T4x4tjA==} + + '@smithy/is-array-buffer@2.2.0': + resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==} + engines: {node: '>=14.0.0'} + + '@smithy/is-array-buffer@3.0.0': + resolution: {integrity: sha512-+Fsu6Q6C4RSJiy81Y8eApjEB5gVtM+oFKTffg+jSuwtvomJJrhUJBu2zS8wjXSgH/g1MKEWrzyChTBe6clb5FQ==} + engines: {node: '>=16.0.0'} + + '@smithy/md5-js@2.2.0': + resolution: {integrity: sha512-M26XTtt9IIusVMOWEAhIvFIr9jYj4ISPPGJROqw6vXngO3IYJCnVVSMFn4Tx1rUTG5BiKJNg9u2nxmBiZC5IlQ==} + + '@smithy/md5-js@3.0.4': + resolution: {integrity: sha512-qSlqr/+hybufIJgxQW2gYzGE6ywfOxkjjJVojbbmv4MtxfdDFfzRew+NOIOXcYgazW0f8OYBTIKsmNsjxpvnng==} + + '@smithy/middleware-content-length@2.2.0': + resolution: {integrity: sha512-5bl2LG1Ah/7E5cMSC+q+h3IpVHMeOkG0yLRyQT1p2aMJkSrZG7RlXHPuAgb7EyaFeidKEnnd/fNaLLaKlHGzDQ==} + engines: {node: '>=14.0.0'} + + '@smithy/middleware-content-length@3.0.6': + resolution: {integrity: sha512-AFyHCfe8rumkJkz+hCOVJmBagNBj05KypyDwDElA4TgMSA4eYDZRjVePFZuyABrJZFDc7uVj3dpFIDCEhf59SA==} + engines: {node: '>=16.0.0'} + + '@smithy/middleware-endpoint@2.5.0': + resolution: {integrity: sha512-OBhI9ZEAG8Xen0xsFJwwNOt44WE2CWkfYIxTognC8x42Lfsdf0VN/wCMqpdkySMDio/vts10BiovAxQp0T0faA==} + engines: {node: '>=14.0.0'} + + '@smithy/middleware-endpoint@3.1.1': + resolution: {integrity: sha512-Irv+soW8NKluAtFSEsF8O3iGyLxa5oOevJb/e1yNacV9H7JP/yHyJuKST5YY2ORS1+W34VR8EuUrOF+K29Pl4g==} + engines: {node: '>=16.0.0'} + + '@smithy/middleware-retry@2.2.0': + resolution: {integrity: sha512-PsjDOLpbevgn37yJbawmfVoanru40qVA8UEf2+YA1lvOefmhuhL6ZbKtGsLAWDRnE1OlAmedsbA/htH6iSZjNA==} + engines: {node: '>=14.0.0'} + + '@smithy/middleware-retry@3.0.16': + resolution: {integrity: sha512-08kI36p1yB4CWO3Qi+UQxjzobt8iQJpnruF0K5BkbZmA/N/sJ51A1JJGJ36GgcbFyPfWw2FU48S5ZoqXt0h0jw==} + engines: {node: '>=16.0.0'} + + '@smithy/middleware-serde@2.3.0': + resolution: {integrity: sha512-sIADe7ojwqTyvEQBe1nc/GXB9wdHhi9UwyX0lTyttmUWDJLP655ZYE1WngnNyXREme8I27KCaUhyhZWRXL0q7Q==} + engines: {node: '>=14.0.0'} + + '@smithy/middleware-serde@3.0.4': + resolution: {integrity: sha512-1lPDB2O6IJ50Ucxgn7XrvZXbbuI48HmPCcMTuSoXT1lDzuTUfIuBjgAjpD8YLVMfnrjdepi/q45556LA51Pubw==} + engines: {node: '>=16.0.0'} + + '@smithy/middleware-stack@2.2.0': + resolution: {integrity: sha512-Qntc3jrtwwrsAC+X8wms8zhrTr0sFXnyEGhZd9sLtsJ/6gGQKFzNB+wWbOcpJd7BR8ThNCoKt76BuQahfMvpeA==} + engines: {node: '>=14.0.0'} + + '@smithy/middleware-stack@3.0.4': + resolution: {integrity: sha512-sLMRjtMCqtVcrOqaOZ10SUnlFE25BSlmLsi4bRSGFD7dgR54eqBjfqkVkPBQyrKBortfGM0+2DJoUPcGECR+nQ==} + engines: {node: '>=16.0.0'} + + '@smithy/node-config-provider@2.3.0': + resolution: {integrity: sha512-0elK5/03a1JPWMDPaS726Iw6LpQg80gFut1tNpPfxFuChEEklo2yL823V94SpTZTxmKlXFtFgsP55uh3dErnIg==} + engines: {node: '>=14.0.0'} + + '@smithy/node-config-provider@3.1.5': + resolution: {integrity: sha512-dq/oR3/LxgCgizVk7in7FGTm0w9a3qM4mg3IIXLTCHeW3fV+ipssSvBZ2bvEx1+asfQJTyCnVLeYf7JKfd9v3Q==} + engines: {node: '>=16.0.0'} + + '@smithy/node-http-handler@2.5.0': + resolution: {integrity: sha512-mVGyPBzkkGQsPoxQUbxlEfRjrj6FPyA3u3u2VXGr9hT8wilsoQdZdvKpMBFMB8Crfhv5dNkKHIW0Yyuc7eABqA==} + engines: {node: '>=14.0.0'} + + '@smithy/node-http-handler@3.2.0': + resolution: {integrity: sha512-5TFqaABbiY7uJMKbqR4OARjwI/l4TRoysDJ75pLpVQyO3EcmeloKYwDGyCtgB9WJniFx3BMkmGCB9+j+QiB+Ww==} + engines: {node: '>=16.0.0'} + + '@smithy/property-provider@2.2.0': + resolution: {integrity: sha512-+xiil2lFhtTRzXkx8F053AV46QnIw6e7MV8od5Mi68E1ICOjCeCHw2XfLnDEUHnT9WGUIkwcqavXjfwuJbGlpg==} + engines: {node: '>=14.0.0'} + + '@smithy/property-provider@3.1.4': + resolution: {integrity: sha512-BmhefQbfkSl9DeU0/e6k9N4sT5bya5etv2epvqLUz3eGyfRBhtQq60nDkc1WPp4c+KWrzK721cUc/3y0f2psPQ==} + engines: {node: '>=16.0.0'} + + '@smithy/protocol-http@3.3.0': + resolution: {integrity: sha512-Xy5XK1AFWW2nlY/biWZXu6/krgbaf2dg0q492D8M5qthsnU2H+UgFeZLbM76FnH7s6RO/xhQRkj+T6KBO3JzgQ==} + engines: {node: '>=14.0.0'} + + '@smithy/protocol-http@4.1.1': + resolution: {integrity: sha512-Fm5+8LkeIus83Y8jTL1XHsBGP8sPvE1rEVyKf/87kbOPTbzEDMcgOlzcmYXat2h+nC3wwPtRy8hFqtJS71+Wow==} + engines: {node: '>=16.0.0'} + + '@smithy/querystring-builder@2.2.0': + resolution: {integrity: sha512-L1kSeviUWL+emq3CUVSgdogoM/D9QMFaqxL/dd0X7PCNWmPXqt+ExtrBjqT0V7HLN03Vs9SuiLrG3zy3JGnE5A==} + engines: {node: '>=14.0.0'} + + '@smithy/querystring-builder@3.0.4': + resolution: {integrity: sha512-NEoPAsZPdpfVbF98qm8i5k1XMaRKeEnO47CaL5ja6Y1Z2DgJdwIJuJkTJypKm/IKfp8gc0uimIFLwhml8+/pAw==} + engines: {node: '>=16.0.0'} + + '@smithy/querystring-parser@2.2.0': + resolution: {integrity: sha512-BvHCDrKfbG5Yhbpj4vsbuPV2GgcpHiAkLeIlcA1LtfpMz3jrqizP1+OguSNSj1MwBHEiN+jwNisXLGdajGDQJA==} + engines: {node: '>=14.0.0'} + + '@smithy/querystring-parser@3.0.4': + resolution: {integrity: sha512-7CHPXffFcakFzhO0OZs/rn6fXlTHrSDdLhIT6/JIk1u2bvwguTL3fMCc1+CfcbXA7TOhjWXu3TcB1EGMqJQwHg==} + engines: {node: '>=16.0.0'} + + '@smithy/service-error-classification@2.1.5': + resolution: {integrity: sha512-uBDTIBBEdAQryvHdc5W8sS5YX7RQzF683XrHePVdFmAgKiMofU15FLSM0/HU03hKTnazdNRFa0YHS7+ArwoUSQ==} + engines: {node: '>=14.0.0'} + + '@smithy/service-error-classification@3.0.4': + resolution: {integrity: sha512-KciDHHKFVTb9A1KlJHBt2F26PBaDtoE23uTZy5qRvPzHPqrooXFi6fmx98lJb3Jl38PuUTqIuCUmmY3pacuMBQ==} + engines: {node: '>=16.0.0'} + + '@smithy/shared-ini-file-loader@2.4.0': + resolution: {integrity: sha512-WyujUJL8e1B6Z4PBfAqC/aGY1+C7T0w20Gih3yrvJSk97gpiVfB+y7c46T4Nunk+ZngLq0rOIdeVeIklk0R3OA==} + engines: {node: '>=14.0.0'} + + '@smithy/shared-ini-file-loader@3.1.5': + resolution: {integrity: sha512-6jxsJ4NOmY5Du4FD0enYegNJl4zTSuKLiChIMqIkh+LapxiP7lmz5lYUNLE9/4cvA65mbBmtdzZ8yxmcqM5igg==} + engines: {node: '>=16.0.0'} + + '@smithy/signature-v4@2.2.0': + resolution: {integrity: sha512-+B5TNzj/fRZzVW3z8UUJOkNx15+4E0CLuvJmJUA1JUIZFp3rdJ/M2H5r2SqltaVPXL0oIxv/6YK92T9TsFGbFg==} + engines: {node: '>=14.0.0'} + + '@smithy/signature-v4@4.1.1': + resolution: {integrity: sha512-SH9J9be81TMBNGCmjhrgMWu4YSpQ3uP1L06u/K9SDrE2YibUix1qxedPCxEQu02At0P0SrYDjvz+y91vLG0KRQ==} + engines: {node: '>=16.0.0'} + + '@smithy/smithy-client@2.5.0': + resolution: {integrity: sha512-DDXWHWdimtS3y/Kw1Jo46KQ0ZYsDKcldFynQERUGBPDpkW1lXOTHy491ALHjwfiBQvzsVKVxl5+ocXNIgJuX4g==} + engines: {node: '>=14.0.0'} + + '@smithy/smithy-client@3.3.0': + resolution: {integrity: sha512-H32nVo8tIX82kB0xI2LBrIcj8jx/3/ITotNLbeG1UL0b3b440YPR/hUvqjFJiaB24pQrMjRbU8CugqH5sV0hkw==} + engines: {node: '>=16.0.0'} + + '@smithy/types@2.12.0': + resolution: {integrity: sha512-QwYgloJ0sVNBeBuBs65cIkTbfzV/Q6ZNPCJ99EICFEdJYG50nGIY/uYXp+TbsdJReIuPr0a0kXmCvren3MbRRw==} + engines: {node: '>=14.0.0'} + + '@smithy/types@3.4.0': + resolution: {integrity: sha512-0shOWSg/pnFXPcsSU8ZbaJ4JBHZJPPzLCJxafJvbMVFo9l1w81CqpgUqjlKGNHVrVB7fhIs+WS82JDTyzaLyLA==} + engines: {node: '>=16.0.0'} + + '@smithy/url-parser@2.2.0': + resolution: {integrity: sha512-hoA4zm61q1mNTpksiSWp2nEl1dt3j726HdRhiNgVJQMj7mLp7dprtF57mOB6JvEk/x9d2bsuL5hlqZbBuHQylQ==} + + '@smithy/url-parser@3.0.4': + resolution: {integrity: sha512-XdXfObA8WrloavJYtDuzoDhJAYc5rOt+FirFmKBRKaihu7QtU/METAxJgSo7uMK6hUkx0vFnqxV75urtRaLkLg==} + + '@smithy/util-base64@2.3.0': + resolution: {integrity: sha512-s3+eVwNeJuXUwuMbusncZNViuhv2LjVJ1nMwTqSA0XAC7gjKhqqxRdJPhR8+YrkoZ9IiIbFk/yK6ACe/xlF+hw==} + engines: {node: '>=14.0.0'} + + '@smithy/util-base64@3.0.0': + resolution: {integrity: sha512-Kxvoh5Qtt0CDsfajiZOCpJxgtPHXOKwmM+Zy4waD43UoEMA+qPxxa98aE/7ZhdnBFZFXMOiBR5xbcaMhLtznQQ==} + engines: {node: '>=16.0.0'} + + '@smithy/util-body-length-browser@2.2.0': + resolution: {integrity: sha512-dtpw9uQP7W+n3vOtx0CfBD5EWd7EPdIdsQnWTDoFf77e3VUf05uA7R7TGipIo8e4WL2kuPdnsr3hMQn9ziYj5w==} + + '@smithy/util-body-length-browser@3.0.0': + resolution: {integrity: sha512-cbjJs2A1mLYmqmyVl80uoLTJhAcfzMOyPgjwAYusWKMdLeNtzmMz9YxNl3/jRLoxSS3wkqkf0jwNdtXWtyEBaQ==} + + '@smithy/util-body-length-node@2.3.0': + resolution: {integrity: sha512-ITWT1Wqjubf2CJthb0BuT9+bpzBfXeMokH/AAa5EJQgbv9aPMVfnM76iFIZVFf50hYXGbtiV71BHAthNWd6+dw==} + engines: {node: '>=14.0.0'} + + '@smithy/util-body-length-node@3.0.0': + resolution: {integrity: sha512-Tj7pZ4bUloNUP6PzwhN7K386tmSmEET9QtQg0TgdNOnxhZvCssHji+oZTUIuzxECRfG8rdm2PMw2WCFs6eIYkA==} + engines: {node: '>=16.0.0'} + + '@smithy/util-buffer-from@2.2.0': + resolution: {integrity: sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==} + engines: {node: '>=14.0.0'} + + '@smithy/util-buffer-from@3.0.0': + resolution: {integrity: sha512-aEOHCgq5RWFbP+UDPvPot26EJHjOC+bRgse5A8V3FSShqd5E5UN4qc7zkwsvJPPAVsf73QwYcHN1/gt/rtLwQA==} + engines: {node: '>=16.0.0'} + + '@smithy/util-config-provider@2.3.0': + resolution: {integrity: sha512-HZkzrRcuFN1k70RLqlNK4FnPXKOpkik1+4JaBoHNJn+RnJGYqaa3c5/+XtLOXhlKzlRgNvyaLieHTW2VwGN0VQ==} + engines: {node: '>=14.0.0'} + + '@smithy/util-config-provider@3.0.0': + resolution: {integrity: sha512-pbjk4s0fwq3Di/ANL+rCvJMKM5bzAQdE5S/6RL5NXgMExFAi6UgQMPOm5yPaIWPpr+EOXKXRonJ3FoxKf4mCJQ==} + engines: {node: '>=16.0.0'} + + '@smithy/util-defaults-mode-browser@2.2.0': + resolution: {integrity: sha512-2okTdZaCBvOJszAPU/KSvlimMe35zLOKbQpHhamFJmR7t95HSe0K3C92jQPjKY3PmDBD+7iMkOnuW05F5OlF4g==} + engines: {node: '>= 10.0.0'} + + '@smithy/util-defaults-mode-browser@3.0.16': + resolution: {integrity: sha512-Os8ddfNBe7hmc5UMWZxygIHCyAqY0aWR8Wnp/aKbti3f8Df/r0J9ttMZIxeMjsFgtVjEryB0q7SGcwBsHk8WEw==} + engines: {node: '>= 10.0.0'} + + '@smithy/util-defaults-mode-node@2.3.0': + resolution: {integrity: sha512-hfKXnNLmsW9cmLb/JXKIvtuO6Cf4SuqN5PN1C2Ru/TBIws+m1wSgb+A53vo0r66xzB6E82inKG2J7qtwdi+Kkw==} + engines: {node: '>= 10.0.0'} + + '@smithy/util-defaults-mode-node@3.0.16': + resolution: {integrity: sha512-rNhFIYRtrOrrhRlj6RL8jWA6/dcwrbGYAmy8+OAHjjzQ6zdzUBB1P+3IuJAgwWN6Y5GxI+mVXlM/pOjaoIgHow==} + engines: {node: '>= 10.0.0'} + + '@smithy/util-endpoints@1.2.0': + resolution: {integrity: sha512-BuDHv8zRjsE5zXd3PxFXFknzBG3owCpjq8G3FcsXW3CykYXuEqM3nTSsmLzw5q+T12ZYuDlVUZKBdpNbhVtlrQ==} + engines: {node: '>= 14.0.0'} + + '@smithy/util-endpoints@2.1.0': + resolution: {integrity: sha512-ilS7/0jcbS2ELdg0fM/4GVvOiuk8/U3bIFXUW25xE1Vh1Ol4DP6vVHQKqM40rCMizCLmJ9UxK+NeJrKlhI3HVA==} + engines: {node: '>=16.0.0'} + + '@smithy/util-hex-encoding@2.2.0': + resolution: {integrity: sha512-7iKXR+/4TpLK194pVjKiasIyqMtTYJsgKgM242Y9uzt5dhHnUDvMNb+3xIhRJ9QhvqGii/5cRUt4fJn3dtXNHQ==} + engines: {node: '>=14.0.0'} + + '@smithy/util-hex-encoding@3.0.0': + resolution: {integrity: sha512-eFndh1WEK5YMUYvy3lPlVmYY/fZcQE1D8oSf41Id2vCeIkKJXPcYDCZD+4+xViI6b1XSd7tE+s5AmXzz5ilabQ==} + engines: {node: '>=16.0.0'} + + '@smithy/util-middleware@2.2.0': + resolution: {integrity: sha512-L1qpleXf9QD6LwLCJ5jddGkgWyuSvWBkJwWAZ6kFkdifdso+sk3L3O1HdmPvCdnCK3IS4qWyPxev01QMnfHSBw==} + engines: {node: '>=14.0.0'} + + '@smithy/util-middleware@3.0.4': + resolution: {integrity: sha512-uSXHTBhstb1c4nHdmQEdkNMv9LiRNaJ/lWV2U/GO+5F236YFpdPw+hyWI9Zc0Rp9XKzwD9kVZvhZmEgp0UCVnA==} + engines: {node: '>=16.0.0'} + + '@smithy/util-retry@2.2.0': + resolution: {integrity: sha512-q9+pAFPTfftHXRytmZ7GzLFFrEGavqapFc06XxzZFcSIGERXMerXxCitjOG1prVDR9QdjqotF40SWvbqcCpf8g==} + engines: {node: '>= 14.0.0'} + + '@smithy/util-retry@3.0.4': + resolution: {integrity: sha512-JJr6g0tO1qO2tCQyK+n3J18r34ZpvatlFN5ULcLranFIBZPxqoivb77EPyNTVwTGMEvvq2qMnyjm4jMIxjdLFg==} + engines: {node: '>=16.0.0'} + + '@smithy/util-stream@2.2.0': + resolution: {integrity: sha512-17faEXbYWIRst1aU9SvPZyMdWmqIrduZjVOqCPMIsWFNxs5yQQgFrJL6b2SdiCzyW9mJoDjFtgi53xx7EH+BXA==} + engines: {node: '>=14.0.0'} + + '@smithy/util-stream@3.1.4': + resolution: {integrity: sha512-txU3EIDLhrBZdGfon6E9V6sZz/irYnKFMblz4TLVjyq8hObNHNS2n9a2t7GIrl7d85zgEPhwLE0gANpZsvpsKg==} + engines: {node: '>=16.0.0'} + + '@smithy/util-uri-escape@2.2.0': + resolution: {integrity: sha512-jtmJMyt1xMD/d8OtbVJ2gFZOSKc+ueYJZPW20ULW1GOp/q/YIM0wNh+u8ZFao9UaIGz4WoPW8hC64qlWLIfoDA==} + engines: {node: '>=14.0.0'} + + '@smithy/util-uri-escape@3.0.0': + resolution: {integrity: sha512-LqR7qYLgZTD7nWLBecUi4aqolw8Mhza9ArpNEQ881MJJIU2sE5iHCK6TdyqqzcDLy0OPe10IY4T8ctVdtynubg==} + engines: {node: '>=16.0.0'} + + '@smithy/util-utf8@2.3.0': + resolution: {integrity: sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==} + engines: {node: '>=14.0.0'} + + '@smithy/util-utf8@3.0.0': + resolution: {integrity: sha512-rUeT12bxFnplYDe815GXbq/oixEGHfRFFtcTF3YdDi/JaENIM6aSYYLJydG83UNzLXeRI5K8abYd/8Sp/QM0kA==} + engines: {node: '>=16.0.0'} + + '@smithy/util-waiter@2.2.0': + resolution: {integrity: sha512-IHk53BVw6MPMi2Gsn+hCng8rFA3ZmR3Rk7GllxDUW9qFJl/hiSvskn7XldkECapQVkIg/1dHpMAxI9xSTaLLSA==} + engines: {node: '>=14.0.0'} + + '@smithy/util-waiter@3.1.3': + resolution: {integrity: sha512-OU0YllH51/CxD8iyr3UHSMwYqTGTyuxFdCMH/0F978t+iDmJseC/ttrWPb22zmYkhkrjqtipzC1xaMuax5QKIA==} + engines: {node: '>=16.0.0'} + + '@soda/friendly-errors-webpack-plugin@1.8.1': + resolution: {integrity: sha512-h2ooWqP8XuFqTXT+NyAFbrArzfQA7R6HTezADrvD9Re8fxMLTPPniLdqVTdDaO0eIoLaAwKT+d6w+5GeTk7Vbg==} + engines: {node: '>=8.0.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 - "@soda/get-current-script@1.0.2": - resolution: - { - integrity: sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w==, - } - - "@solana/buffer-layout-utils@0.2.0": - resolution: - { - integrity: sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g==, - } - engines: { node: ">= 10" } - - "@solana/buffer-layout@4.0.1": - resolution: - { - integrity: sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA==, - } - engines: { node: ">=5.10" } - - "@solana/spl-token@0.3.8": - resolution: - { - integrity: sha512-ogwGDcunP9Lkj+9CODOWMiVJEdRtqHAtX2rWF62KxnnSWtMZtV9rDhTrZFshiyJmxDnRL/1nKE1yJHg4jjs3gg==, - } - engines: { node: ">=16" } - peerDependencies: - "@solana/web3.js": ^1.47.4 - - "@solana/web3.js@1.77.3": - resolution: - { - integrity: sha512-PHaO0BdoiQRPpieC1p31wJsBaxwIOWLh8j2ocXNKX8boCQVldt26Jqm2tZE4KlrvnCIV78owPLv1pEUgqhxZ3w==, - } - - "@stablelib/binary@1.0.1": - resolution: - { - integrity: sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==, - } - - "@stablelib/blake2b@1.0.1": - resolution: - { - integrity: sha512-B3KyKoBAjkIFeH7romcF96i+pVFYk7K2SBQ1pZvaxV+epSBXJ+n0C66esUhyz6FF+5FbdQVm77C5fzGFcEZpKA==, - } - - "@stablelib/ed25519@1.0.3": - resolution: - { - integrity: sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==, - } - - "@stablelib/hash@1.0.1": - resolution: - { - integrity: sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg==, - } - - "@stablelib/int@1.0.1": - resolution: - { - integrity: sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w==, - } - - "@stablelib/random@1.0.2": - resolution: - { - integrity: sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==, - } - - "@stablelib/sha512@1.0.1": - resolution: - { - integrity: sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw==, - } - - "@stablelib/wipe@1.0.1": - resolution: - { - integrity: sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg==, - } - - "@stacks/common@4.3.5": - resolution: - { - integrity: sha512-UuViiQ7fn3vdtTe3739aRzbl+wbukekeQuXgqt8d7nB2HC2HodD7GcHhpUga165cO35CD6lQUtj3vXxJb5Ga+A==, - } - - "@stacks/common@6.13.0": - resolution: - { - integrity: sha512-wwzyihjaSdmL6NxKvDeayy3dqM0L0Q2sawmdNtzJDi0FnXuJGm5PeapJj7bEfcI9XwI7Bw5jZoC6mCn9nc5YIw==, - } - - "@stacks/network@4.3.5": - resolution: - { - integrity: sha512-TC4+AkuT6qi3MoEGxTftA+4BNp99QvGnI+qtKQkoA1m0KDr8b9hSBUhugJHRhQbWuo7D6q0+JagYEGxLID29Kw==, - } - - "@stacks/network@6.10.0": - resolution: - { - integrity: sha512-mbiZ8nlsyy77ndmBdaqhHXii22IFdK4ThRcOQs9j/O00DkAr04jCM4GV5Q+VLUnZ9OBoJq7yOV7Pf6jglh+0hw==, - } - - "@stacks/transactions@4.3.8": - resolution: - { - integrity: sha512-5xYYv2TdXXM9PVixB79Pr99symQ8fhbVATjempGUxtL23/XUiRiLvJZohDxIE4VQ2EzbB4g4j8Y7oqPjj0h09Q==, - } - - "@stacks/transactions@6.11.0": - resolution: - { - integrity: sha512-+zIDqn9j4H/+o1ER8C9rFpig1fyrQcj2hVGNIrp+YbpPyja+cxv3fPk6kI/gePzwggzxRgUkIWhBc+mZAXuXyQ==, - } - - "@stdlib/array-float32@0.0.6": - resolution: - { - integrity: sha512-QgKT5UaE92Rv7cxfn7wBKZAlwFFHPla8eXsMFsTGt5BiL4yUy36lwinPUh4hzybZ11rw1vifS3VAPuk6JP413Q==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@soda/get-current-script@1.0.2': + resolution: {integrity: sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w==} + + '@solana/buffer-layout-utils@0.2.0': + resolution: {integrity: sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g==} + engines: {node: '>= 10'} + + '@solana/buffer-layout@4.0.1': + resolution: {integrity: sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA==} + engines: {node: '>=5.10'} + + '@solana/spl-token@0.3.8': + resolution: {integrity: sha512-ogwGDcunP9Lkj+9CODOWMiVJEdRtqHAtX2rWF62KxnnSWtMZtV9rDhTrZFshiyJmxDnRL/1nKE1yJHg4jjs3gg==} + engines: {node: '>=16'} + peerDependencies: + '@solana/web3.js': ^1.47.4 + + '@solana/web3.js@1.77.3': + resolution: {integrity: sha512-PHaO0BdoiQRPpieC1p31wJsBaxwIOWLh8j2ocXNKX8boCQVldt26Jqm2tZE4KlrvnCIV78owPLv1pEUgqhxZ3w==} + + '@stablelib/binary@1.0.1': + resolution: {integrity: sha512-ClJWvmL6UBM/wjkvv/7m5VP3GMr9t0osr4yVgLZsLCOz4hGN9gIAFEqnJ0TsSMAN+n840nf2cHZnA5/KFqHC7Q==} + + '@stablelib/blake2b@1.0.1': + resolution: {integrity: sha512-B3KyKoBAjkIFeH7romcF96i+pVFYk7K2SBQ1pZvaxV+epSBXJ+n0C66esUhyz6FF+5FbdQVm77C5fzGFcEZpKA==} + + '@stablelib/ed25519@1.0.3': + resolution: {integrity: sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==} + + '@stablelib/hash@1.0.1': + resolution: {integrity: sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg==} + + '@stablelib/int@1.0.1': + resolution: {integrity: sha512-byr69X/sDtDiIjIV6m4roLVWnNNlRGzsvxw+agj8CIEazqWGOQp2dTYgQhtyVXV9wpO6WyXRQUzLV/JRNumT2w==} + + '@stablelib/random@1.0.2': + resolution: {integrity: sha512-rIsE83Xpb7clHPVRlBj8qNe5L8ISQOzjghYQm/dZ7VaM2KHYwMW5adjQjrzTZCchFnNCNhkwtnOBa9HTMJCI8w==} + + '@stablelib/sha512@1.0.1': + resolution: {integrity: sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw==} + + '@stablelib/wipe@1.0.1': + resolution: {integrity: sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg==} + + '@stacks/common@4.3.5': + resolution: {integrity: sha512-UuViiQ7fn3vdtTe3739aRzbl+wbukekeQuXgqt8d7nB2HC2HodD7GcHhpUga165cO35CD6lQUtj3vXxJb5Ga+A==} + + '@stacks/common@6.13.0': + resolution: {integrity: sha512-wwzyihjaSdmL6NxKvDeayy3dqM0L0Q2sawmdNtzJDi0FnXuJGm5PeapJj7bEfcI9XwI7Bw5jZoC6mCn9nc5YIw==} + + '@stacks/network@4.3.5': + resolution: {integrity: sha512-TC4+AkuT6qi3MoEGxTftA+4BNp99QvGnI+qtKQkoA1m0KDr8b9hSBUhugJHRhQbWuo7D6q0+JagYEGxLID29Kw==} + + '@stacks/network@6.10.0': + resolution: {integrity: sha512-mbiZ8nlsyy77ndmBdaqhHXii22IFdK4ThRcOQs9j/O00DkAr04jCM4GV5Q+VLUnZ9OBoJq7yOV7Pf6jglh+0hw==} + + '@stacks/transactions@4.3.8': + resolution: {integrity: sha512-5xYYv2TdXXM9PVixB79Pr99symQ8fhbVATjempGUxtL23/XUiRiLvJZohDxIE4VQ2EzbB4g4j8Y7oqPjj0h09Q==} + + '@stacks/transactions@6.11.0': + resolution: {integrity: sha512-+zIDqn9j4H/+o1ER8C9rFpig1fyrQcj2hVGNIrp+YbpPyja+cxv3fPk6kI/gePzwggzxRgUkIWhBc+mZAXuXyQ==} + + '@stdlib/array-float32@0.0.6': + resolution: {integrity: sha512-QgKT5UaE92Rv7cxfn7wBKZAlwFFHPla8eXsMFsTGt5BiL4yUy36lwinPUh4hzybZ11rw1vifS3VAPuk6JP413Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/array-float64@0.0.6": - resolution: - { - integrity: sha512-oE8y4a84LyBF1goX5//sU1mOjet8gLI0/6wucZcjg+j/yMmNV1xFu84Az9GOGmFSE6Ze6lirGOhfBeEWNNNaJg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/array-float64@0.0.6': + resolution: {integrity: sha512-oE8y4a84LyBF1goX5//sU1mOjet8gLI0/6wucZcjg+j/yMmNV1xFu84Az9GOGmFSE6Ze6lirGOhfBeEWNNNaJg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/array-uint16@0.0.6": - resolution: - { - integrity: sha512-/A8Tr0CqJ4XScIDRYQawosko8ha1Uy+50wsTgJhjUtXDpPRp7aUjmxvYkbe7Rm+ImYYbDQVix/uCiPAFQ8ed4Q==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/array-uint16@0.0.6': + resolution: {integrity: sha512-/A8Tr0CqJ4XScIDRYQawosko8ha1Uy+50wsTgJhjUtXDpPRp7aUjmxvYkbe7Rm+ImYYbDQVix/uCiPAFQ8ed4Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/array-uint32@0.0.6": - resolution: - { - integrity: sha512-2hFPK1Fg7obYPZWlGDjW9keiIB6lXaM9dKmJubg/ergLQCsJQJZpYsG6mMAfTJi4NT1UF4jTmgvyKD+yf0D9cA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/array-uint32@0.0.6': + resolution: {integrity: sha512-2hFPK1Fg7obYPZWlGDjW9keiIB6lXaM9dKmJubg/ergLQCsJQJZpYsG6mMAfTJi4NT1UF4jTmgvyKD+yf0D9cA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/array-uint8@0.0.7": - resolution: - { - integrity: sha512-qYJQQfGKIcky6TzHFIGczZYTuVlut7oO+V8qUBs7BJC9TwikVnnOmb3hY3jToY4xaoi5p9OvgdJKPInhyIhzFg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/array-uint8@0.0.7': + resolution: {integrity: sha512-qYJQQfGKIcky6TzHFIGczZYTuVlut7oO+V8qUBs7BJC9TwikVnnOmb3hY3jToY4xaoi5p9OvgdJKPInhyIhzFg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/assert-has-float32array-support@0.0.8": - resolution: - { - integrity: sha512-Yrg7K6rBqwCzDWZ5bN0VWLS5dNUWcoSfUeU49vTERdUmZID06J069CDc07UUl8vfQWhFgBWGocH3rrpKm1hi9w==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-has-float32array-support@0.0.8': + resolution: {integrity: sha512-Yrg7K6rBqwCzDWZ5bN0VWLS5dNUWcoSfUeU49vTERdUmZID06J069CDc07UUl8vfQWhFgBWGocH3rrpKm1hi9w==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/assert-has-float64array-support@0.0.8": - resolution: - { - integrity: sha512-UVQcoeWqgMw9b8PnAmm/sgzFnuWkZcNhJoi7xyMjbiDV/SP1qLCrvi06mq86cqS3QOCma1fEayJdwgteoXyyuw==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-has-float64array-support@0.0.8': + resolution: {integrity: sha512-UVQcoeWqgMw9b8PnAmm/sgzFnuWkZcNhJoi7xyMjbiDV/SP1qLCrvi06mq86cqS3QOCma1fEayJdwgteoXyyuw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/assert-has-node-buffer-support@0.0.8": - resolution: - { - integrity: sha512-fgI+hW4Yg4ciiv4xVKH+1rzdV7e5+6UKgMnFbc1XDXHcxLub3vOr8+H6eDECdAIfgYNA7X0Dxa/DgvX9dwDTAQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-has-node-buffer-support@0.0.8': + resolution: {integrity: sha512-fgI+hW4Yg4ciiv4xVKH+1rzdV7e5+6UKgMnFbc1XDXHcxLub3vOr8+H6eDECdAIfgYNA7X0Dxa/DgvX9dwDTAQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/assert-has-own-property@0.0.7": - resolution: - { - integrity: sha512-3YHwSWiUqGlTLSwxAWxrqaD1PkgcJniGyotJeIt5X0tSNmSW0/c9RWroCImTUUB3zBkyBJ79MyU9Nf4Qgm59fQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-has-own-property@0.0.7': + resolution: {integrity: sha512-3YHwSWiUqGlTLSwxAWxrqaD1PkgcJniGyotJeIt5X0tSNmSW0/c9RWroCImTUUB3zBkyBJ79MyU9Nf4Qgm59fQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/assert-has-symbol-support@0.0.8": - resolution: - { - integrity: sha512-PoQ9rk8DgDCuBEkOIzGGQmSnjtcdagnUIviaP5YskB45/TJHXseh4NASWME8FV77WFW9v/Wt1MzKFKMzpDFu4Q==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-has-symbol-support@0.0.8': + resolution: {integrity: sha512-PoQ9rk8DgDCuBEkOIzGGQmSnjtcdagnUIviaP5YskB45/TJHXseh4NASWME8FV77WFW9v/Wt1MzKFKMzpDFu4Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/assert-has-tostringtag-support@0.0.9": - resolution: - { - integrity: sha512-UTsqdkrnQ7eufuH5BeyWOJL3ska3u5nvDWKqw3onNNZ2mvdgkfoFD7wHutVGzAA2rkTsSJAMBHVwWLsm5SbKgw==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-has-tostringtag-support@0.0.9': + resolution: {integrity: sha512-UTsqdkrnQ7eufuH5BeyWOJL3ska3u5nvDWKqw3onNNZ2mvdgkfoFD7wHutVGzAA2rkTsSJAMBHVwWLsm5SbKgw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/assert-has-uint16array-support@0.0.8": - resolution: - { - integrity: sha512-vqFDn30YrtzD+BWnVqFhB130g3cUl2w5AdOxhIkRkXCDYAM5v7YwdNMJEON+D4jI8YB4D5pEYjqKweYaCq4nyg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-has-uint16array-support@0.0.8': + resolution: {integrity: sha512-vqFDn30YrtzD+BWnVqFhB130g3cUl2w5AdOxhIkRkXCDYAM5v7YwdNMJEON+D4jI8YB4D5pEYjqKweYaCq4nyg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/assert-has-uint32array-support@0.0.8": - resolution: - { - integrity: sha512-tJtKuiFKwFSQQUfRXEReOVGXtfdo6+xlshSfwwNWXL1WPP2LrceoiUoQk7zMCMT6VdbXgGH92LDjVcPmSbH4Xw==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-has-uint32array-support@0.0.8': + resolution: {integrity: sha512-tJtKuiFKwFSQQUfRXEReOVGXtfdo6+xlshSfwwNWXL1WPP2LrceoiUoQk7zMCMT6VdbXgGH92LDjVcPmSbH4Xw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/assert-has-uint8array-support@0.0.8": - resolution: - { - integrity: sha512-ie4vGTbAS/5Py+LLjoSQi0nwtYBp+WKk20cMYCzilT0rCsBI/oez0RqHrkYYpmt4WaJL4eJqC+/vfQ5NsI7F5w==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-has-uint8array-support@0.0.8': + resolution: {integrity: sha512-ie4vGTbAS/5Py+LLjoSQi0nwtYBp+WKk20cMYCzilT0rCsBI/oez0RqHrkYYpmt4WaJL4eJqC+/vfQ5NsI7F5w==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/assert-is-array@0.0.7": - resolution: - { - integrity: sha512-/o6KclsGkNcZ5hiROarsD9XUs6xQMb4lTwF6O71UHbKWTtomEF/jD0rxLvlvj0BiCxfKrReddEYd2CnhUyskMA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-array@0.0.7': + resolution: {integrity: sha512-/o6KclsGkNcZ5hiROarsD9XUs6xQMb4lTwF6O71UHbKWTtomEF/jD0rxLvlvj0BiCxfKrReddEYd2CnhUyskMA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/assert-is-big-endian@0.0.7": - resolution: - { - integrity: sha512-BvutsX84F76YxaSIeS5ZQTl536lz+f+P7ew68T1jlFqxBhr4v7JVYFmuf24U040YuK1jwZ2sAq+bPh6T09apwQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-big-endian@0.0.7': + resolution: {integrity: sha512-BvutsX84F76YxaSIeS5ZQTl536lz+f+P7ew68T1jlFqxBhr4v7JVYFmuf24U040YuK1jwZ2sAq+bPh6T09apwQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/assert-is-boolean@0.0.8": - resolution: - { - integrity: sha512-PRCpslMXSYqFMz1Yh4dG2K/WzqxTCtlKbgJQD2cIkAtXux4JbYiXCtepuoV7l4Wv1rm0a1eU8EqNPgnOmWajGw==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-boolean@0.0.8': + resolution: {integrity: sha512-PRCpslMXSYqFMz1Yh4dG2K/WzqxTCtlKbgJQD2cIkAtXux4JbYiXCtepuoV7l4Wv1rm0a1eU8EqNPgnOmWajGw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/assert-is-buffer@0.0.8": - resolution: - { - integrity: sha512-SYmGwOXkzZVidqUyY1IIx6V6QnSL36v3Lcwj8Rvne/fuW0bU2OomsEBzYCFMvcNgtY71vOvgZ9VfH3OppvV6eA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-buffer@0.0.8': + resolution: {integrity: sha512-SYmGwOXkzZVidqUyY1IIx6V6QnSL36v3Lcwj8Rvne/fuW0bU2OomsEBzYCFMvcNgtY71vOvgZ9VfH3OppvV6eA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/assert-is-float32array@0.0.8": - resolution: - { - integrity: sha512-Phk0Ze7Vj2/WLv5Wy8Oo7poZIDMSTiTrEnc1t4lBn3Svz2vfBXlvCufi/i5d93vc4IgpkdrOEwfry6nldABjNQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-float32array@0.0.8': + resolution: {integrity: sha512-Phk0Ze7Vj2/WLv5Wy8Oo7poZIDMSTiTrEnc1t4lBn3Svz2vfBXlvCufi/i5d93vc4IgpkdrOEwfry6nldABjNQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/assert-is-float64array@0.0.8": - resolution: - { - integrity: sha512-UC0Av36EEYIgqBbCIz1lj9g7qXxL5MqU1UrWun+n91lmxgdJ+Z77fHy75efJbJlXBf6HXhcYXECIsc0u3SzyDQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-float64array@0.0.8': + resolution: {integrity: sha512-UC0Av36EEYIgqBbCIz1lj9g7qXxL5MqU1UrWun+n91lmxgdJ+Z77fHy75efJbJlXBf6HXhcYXECIsc0u3SzyDQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/assert-is-function@0.0.8": - resolution: - { - integrity: sha512-M55Dt2njp5tnY8oePdbkKBRIypny+LpCMFZhEjJIxjLE4rA6zSlHs1yRMqD4PmW+Wl9WTeEM1GYO4AQHl1HAjA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-function@0.0.8': + resolution: {integrity: sha512-M55Dt2njp5tnY8oePdbkKBRIypny+LpCMFZhEjJIxjLE4rA6zSlHs1yRMqD4PmW+Wl9WTeEM1GYO4AQHl1HAjA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/assert-is-little-endian@0.0.7": - resolution: - { - integrity: sha512-SPObC73xXfDXY0dOewXR0LDGN3p18HGzm+4K8azTj6wug0vpRV12eB3hbT28ybzRCa6TAKUjwM/xY7Am5QzIlA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-little-endian@0.0.7': + resolution: {integrity: sha512-SPObC73xXfDXY0dOewXR0LDGN3p18HGzm+4K8azTj6wug0vpRV12eB3hbT28ybzRCa6TAKUjwM/xY7Am5QzIlA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/assert-is-number@0.0.7": - resolution: - { - integrity: sha512-mNV4boY1cUOmoWWfA2CkdEJfXA6YvhcTvwKC0Fzq+HoFFOuTK/scpTd9HanUyN6AGBlWA8IW+cQ1ZwOT3XMqag==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-number@0.0.7': + resolution: {integrity: sha512-mNV4boY1cUOmoWWfA2CkdEJfXA6YvhcTvwKC0Fzq+HoFFOuTK/scpTd9HanUyN6AGBlWA8IW+cQ1ZwOT3XMqag==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/assert-is-object-like@0.0.8": - resolution: - { - integrity: sha512-pe9selDPYAu/lYTFV5Rj4BStepgbzQCr36b/eC8EGSJh6gMgRXgHVv0R+EbdJ69KNkHvKKRjnWj0A/EmCwW+OA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-object-like@0.0.8': + resolution: {integrity: sha512-pe9selDPYAu/lYTFV5Rj4BStepgbzQCr36b/eC8EGSJh6gMgRXgHVv0R+EbdJ69KNkHvKKRjnWj0A/EmCwW+OA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/assert-is-object@0.0.8": - resolution: - { - integrity: sha512-ooPfXDp9c7w+GSqD2NBaZ/Du1JRJlctv+Abj2vRJDcDPyrnRTb1jmw+AuPgcW7Ca7op39JTbArI+RVHm/FPK+Q==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-object@0.0.8': + resolution: {integrity: sha512-ooPfXDp9c7w+GSqD2NBaZ/Du1JRJlctv+Abj2vRJDcDPyrnRTb1jmw+AuPgcW7Ca7op39JTbArI+RVHm/FPK+Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/assert-is-plain-object@0.0.7": - resolution: - { - integrity: sha512-t/CEq2a083ajAgXgSa5tsH8l3kSoEqKRu1qUwniVLFYL4RGv3615CrpJUDQKVtEX5S/OKww5q0Byu3JidJ4C5w==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-plain-object@0.0.7': + resolution: {integrity: sha512-t/CEq2a083ajAgXgSa5tsH8l3kSoEqKRu1qUwniVLFYL4RGv3615CrpJUDQKVtEX5S/OKww5q0Byu3JidJ4C5w==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/assert-is-regexp-string@0.0.9": - resolution: - { - integrity: sha512-FYRJJtH7XwXEf//X6UByUC0Eqd0ZYK5AC8or5g5m5efQrgr2lOaONHyDQ3Scj1A2D6QLIJKZc9XBM4uq5nOPXA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-regexp-string@0.0.9': + resolution: {integrity: sha512-FYRJJtH7XwXEf//X6UByUC0Eqd0ZYK5AC8or5g5m5efQrgr2lOaONHyDQ3Scj1A2D6QLIJKZc9XBM4uq5nOPXA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/assert-is-regexp@0.0.7": - resolution: - { - integrity: sha512-ty5qvLiqkDq6AibHlNJe0ZxDJ9Mg896qolmcHb69mzp64vrsORnPPOTzVapAq0bEUZbXoypeijypLPs9sCGBSQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-regexp@0.0.7': + resolution: {integrity: sha512-ty5qvLiqkDq6AibHlNJe0ZxDJ9Mg896qolmcHb69mzp64vrsORnPPOTzVapAq0bEUZbXoypeijypLPs9sCGBSQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/assert-is-string@0.0.8": - resolution: - { - integrity: sha512-Uk+bR4cglGBbY0q7O7HimEJiW/DWnO1tSzr4iAGMxYgf+VM2PMYgI5e0TLy9jOSOzWon3YS39lc63eR3a9KqeQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-string@0.0.8': + resolution: {integrity: sha512-Uk+bR4cglGBbY0q7O7HimEJiW/DWnO1tSzr4iAGMxYgf+VM2PMYgI5e0TLy9jOSOzWon3YS39lc63eR3a9KqeQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/assert-is-uint16array@0.0.8": - resolution: - { - integrity: sha512-M+qw7au+qglRXcXHjvoUZVLlGt1mPjuKudrVRto6KL4+tDsP2j+A89NDP3Fz8/XIUD+5jhj+65EOKHSMvDYnng==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-uint16array@0.0.8': + resolution: {integrity: sha512-M+qw7au+qglRXcXHjvoUZVLlGt1mPjuKudrVRto6KL4+tDsP2j+A89NDP3Fz8/XIUD+5jhj+65EOKHSMvDYnng==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/assert-is-uint32array@0.0.8": - resolution: - { - integrity: sha512-cnZi2DicYcplMnkJ3dBxBVKsRNFjzoGpmG9A6jXq4KH5rFl52SezGAXSVY9o5ZV7bQGaF5JLyCLp6n9Y74hFGg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-uint32array@0.0.8': + resolution: {integrity: sha512-cnZi2DicYcplMnkJ3dBxBVKsRNFjzoGpmG9A6jXq4KH5rFl52SezGAXSVY9o5ZV7bQGaF5JLyCLp6n9Y74hFGg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/assert-is-uint8array@0.0.8": - resolution: - { - integrity: sha512-8cqpDQtjnJAuVtRkNAktn45ixq0JHaGJxVsSiK79k7GRggvMI6QsbzO6OvcLnZ/LimD42FmgbLd13Yc2esDmZw==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-is-uint8array@0.0.8': + resolution: {integrity: sha512-8cqpDQtjnJAuVtRkNAktn45ixq0JHaGJxVsSiK79k7GRggvMI6QsbzO6OvcLnZ/LimD42FmgbLd13Yc2esDmZw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/assert-tools-array-function@0.0.7": - resolution: - { - integrity: sha512-3lqkaCIBMSJ/IBHHk4NcCnk2NYU52tmwTYbbqhAmv7vim8rZPNmGfj3oWkzrCsyCsyTF7ooD+In2x+qTmUbCtQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/assert-tools-array-function@0.0.7': + resolution: {integrity: sha512-3lqkaCIBMSJ/IBHHk4NcCnk2NYU52tmwTYbbqhAmv7vim8rZPNmGfj3oWkzrCsyCsyTF7ooD+In2x+qTmUbCtQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/buffer-ctor@0.0.7": - resolution: - { - integrity: sha512-4IyTSGijKUQ8+DYRaKnepf9spvKLZ+nrmZ+JrRcB3FrdTX/l9JDpggcUcC/Fe+A4KIZOnClfxLn6zfIlkCZHNA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/buffer-ctor@0.0.7': + resolution: {integrity: sha512-4IyTSGijKUQ8+DYRaKnepf9spvKLZ+nrmZ+JrRcB3FrdTX/l9JDpggcUcC/Fe+A4KIZOnClfxLn6zfIlkCZHNA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/buffer-from-string@0.0.8": - resolution: - { - integrity: sha512-Dws5ZbK2M9l4Bkn/ODHFm3lNZ8tWko+NYXqGS/UH/RIQv3PGp+1tXFUSvjwjDneM6ppjQVExzVedUH1ftABs9A==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/buffer-from-string@0.0.8': + resolution: {integrity: sha512-Dws5ZbK2M9l4Bkn/ODHFm3lNZ8tWko+NYXqGS/UH/RIQv3PGp+1tXFUSvjwjDneM6ppjQVExzVedUH1ftABs9A==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/cli-ctor@0.0.3": - resolution: - { - integrity: sha512-0zCuZnzFyxj66GoF8AyIOhTX5/mgGczFvr6T9h4mXwegMZp8jBC/ZkOGMwmp+ODLBTvlcnnDNpNFkDDyR6/c2g==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/cli-ctor@0.0.3': + resolution: {integrity: sha512-0zCuZnzFyxj66GoF8AyIOhTX5/mgGczFvr6T9h4mXwegMZp8jBC/ZkOGMwmp+ODLBTvlcnnDNpNFkDDyR6/c2g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/complex-float32@0.0.7": - resolution: - { - integrity: sha512-POCtQcBZnPm4IrFmTujSaprR1fcOFr/MRw2Mt7INF4oed6b1nzeG647K+2tk1m4mMrMPiuXCdvwJod4kJ0SXxQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/complex-float32@0.0.7': + resolution: {integrity: sha512-POCtQcBZnPm4IrFmTujSaprR1fcOFr/MRw2Mt7INF4oed6b1nzeG647K+2tk1m4mMrMPiuXCdvwJod4kJ0SXxQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/complex-float64@0.0.8": - resolution: - { - integrity: sha512-lUJwsXtGEziOWAqCcnKnZT4fcVoRsl6t6ECaCJX45Z7lAc70yJLiwUieLWS5UXmyoADHuZyUXkxtI4oClfpnaw==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/complex-float64@0.0.8': + resolution: {integrity: sha512-lUJwsXtGEziOWAqCcnKnZT4fcVoRsl6t6ECaCJX45Z7lAc70yJLiwUieLWS5UXmyoADHuZyUXkxtI4oClfpnaw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/complex-reim@0.0.6": - resolution: - { - integrity: sha512-28WXfPSIFMtHb0YgdatkGS4yxX5sPYea5MiNgqPv3E78+tFcg8JJG52NQ/MviWP2wsN9aBQAoCPeu8kXxSPdzA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/complex-reim@0.0.6': + resolution: {integrity: sha512-28WXfPSIFMtHb0YgdatkGS4yxX5sPYea5MiNgqPv3E78+tFcg8JJG52NQ/MviWP2wsN9aBQAoCPeu8kXxSPdzA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/complex-reimf@0.0.1": - resolution: - { - integrity: sha512-P9zu05ZW2i68Oppp3oHelP7Tk0D7tGBL0hGl1skJppr2vY9LltuNbeYI3C96tQe/7Enw/5GyAWgxoQI4cWccQA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/complex-reimf@0.0.1': + resolution: {integrity: sha512-P9zu05ZW2i68Oppp3oHelP7Tk0D7tGBL0hGl1skJppr2vY9LltuNbeYI3C96tQe/7Enw/5GyAWgxoQI4cWccQA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/constants-float64-exponent-bias@0.0.8": - resolution: - { - integrity: sha512-IzBJQw9hYgWCki7VoC/zJxEA76Nmf8hmY+VkOWnJ8IyfgTXClgY8tfDGS1cc4l/hCOEllxGp9FRvVdn24A5tKQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/constants-float64-exponent-bias@0.0.8': + resolution: {integrity: sha512-IzBJQw9hYgWCki7VoC/zJxEA76Nmf8hmY+VkOWnJ8IyfgTXClgY8tfDGS1cc4l/hCOEllxGp9FRvVdn24A5tKQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/constants-float64-high-word-abs-mask@0.0.1": - resolution: - { - integrity: sha512-1vy8SUyMHFBwqUUVaZFA7r4/E3cMMRKSwsaa/EZ15w7Kmc01W/ZmaaTLevRcIdACcNgK+8i8813c8H7LScXNcQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/constants-float64-high-word-abs-mask@0.0.1': + resolution: {integrity: sha512-1vy8SUyMHFBwqUUVaZFA7r4/E3cMMRKSwsaa/EZ15w7Kmc01W/ZmaaTLevRcIdACcNgK+8i8813c8H7LScXNcQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/constants-float64-high-word-exponent-mask@0.0.8": - resolution: - { - integrity: sha512-z28/EQERc0VG7N36bqdvtrRWjFc8600PKkwvl/nqx6TpKAzMXNw55BS1xT4C28Sa9Z7uBWeUj3UbIFedbkoyMw==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/constants-float64-high-word-exponent-mask@0.0.8': + resolution: {integrity: sha512-z28/EQERc0VG7N36bqdvtrRWjFc8600PKkwvl/nqx6TpKAzMXNw55BS1xT4C28Sa9Z7uBWeUj3UbIFedbkoyMw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/constants-float64-high-word-sign-mask@0.0.1": - resolution: - { - integrity: sha512-hmTr5caK1lh1m0eyaQqt2Vt3y+eEdAx57ndbADEbXhxC9qSGd0b4bLSzt/Xp4MYBYdQkHAE/BlkgUiRThswhCg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/constants-float64-high-word-sign-mask@0.0.1': + resolution: {integrity: sha512-hmTr5caK1lh1m0eyaQqt2Vt3y+eEdAx57ndbADEbXhxC9qSGd0b4bLSzt/Xp4MYBYdQkHAE/BlkgUiRThswhCg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/constants-float64-max-base2-exponent-subnormal@0.0.8": - resolution: - { - integrity: sha512-YGBZykSiXFebznnJfWFDwhho2Q9xhUWOL+X0lZJ4ItfTTo40W6VHAyNYz98tT/gJECFype0seNzzo1nUxCE7jQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/constants-float64-max-base2-exponent-subnormal@0.0.8': + resolution: {integrity: sha512-YGBZykSiXFebznnJfWFDwhho2Q9xhUWOL+X0lZJ4ItfTTo40W6VHAyNYz98tT/gJECFype0seNzzo1nUxCE7jQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/constants-float64-max-base2-exponent@0.0.8": - resolution: - { - integrity: sha512-xBAOtso1eiy27GnTut2difuSdpsGxI8dJhXupw0UukGgvy/3CSsyNm+a1Suz/dhqK4tPOTe5QboIdNMw5IgXKQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/constants-float64-max-base2-exponent@0.0.8': + resolution: {integrity: sha512-xBAOtso1eiy27GnTut2difuSdpsGxI8dJhXupw0UukGgvy/3CSsyNm+a1Suz/dhqK4tPOTe5QboIdNMw5IgXKQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/constants-float64-min-base2-exponent-subnormal@0.0.8": - resolution: - { - integrity: sha512-bt81nBus/91aEqGRQBenEFCyWNsf8uaxn4LN1NjgkvY92S1yVxXFlC65fJHsj9FTqvyZ+uj690/gdMKUDV3NjQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/constants-float64-min-base2-exponent-subnormal@0.0.8': + resolution: {integrity: sha512-bt81nBus/91aEqGRQBenEFCyWNsf8uaxn4LN1NjgkvY92S1yVxXFlC65fJHsj9FTqvyZ+uj690/gdMKUDV3NjQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/constants-float64-ninf@0.0.8": - resolution: - { - integrity: sha512-bn/uuzCne35OSLsQZJlNrkvU1/40spGTm22g1+ZI1LL19J8XJi/o4iupIHRXuLSTLFDBqMoJlUNphZlWQ4l8zw==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/constants-float64-ninf@0.0.8': + resolution: {integrity: sha512-bn/uuzCne35OSLsQZJlNrkvU1/40spGTm22g1+ZI1LL19J8XJi/o4iupIHRXuLSTLFDBqMoJlUNphZlWQ4l8zw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/constants-float64-pinf@0.0.8": - resolution: - { - integrity: sha512-I3R4rm2cemoMuiDph07eo5oWZ4ucUtpuK73qBJiJPDQKz8fSjSe4wJBAigq2AmWYdd7yJHsl5NJd8AgC6mP5Qw==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/constants-float64-pinf@0.0.8': + resolution: {integrity: sha512-I3R4rm2cemoMuiDph07eo5oWZ4ucUtpuK73qBJiJPDQKz8fSjSe4wJBAigq2AmWYdd7yJHsl5NJd8AgC6mP5Qw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/constants-float64-smallest-normal@0.0.8": - resolution: - { - integrity: sha512-Qwxpn5NA3RXf+mQcffCWRcsHSPTUQkalsz0+JDpblDszuz2XROcXkOdDr5LKgTAUPIXsjOgZzTsuRONENhsSEg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/constants-float64-smallest-normal@0.0.8': + resolution: {integrity: sha512-Qwxpn5NA3RXf+mQcffCWRcsHSPTUQkalsz0+JDpblDszuz2XROcXkOdDr5LKgTAUPIXsjOgZzTsuRONENhsSEg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/constants-uint16-max@0.0.7": - resolution: - { - integrity: sha512-7TPoku7SlskA67mAm7mykIAjeEnkQJemw1cnKZur0mT5W4ryvDR6iFfL9xBiByVnWYq/+ei7DHbOv6/2b2jizw==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/constants-uint16-max@0.0.7': + resolution: {integrity: sha512-7TPoku7SlskA67mAm7mykIAjeEnkQJemw1cnKZur0mT5W4ryvDR6iFfL9xBiByVnWYq/+ei7DHbOv6/2b2jizw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/constants-uint32-max@0.0.7": - resolution: - { - integrity: sha512-8+NK0ewqc1vnEZNqzwFJgFSy3S543Eft7i8WyW/ygkofiqEiLAsujvYMHzPAB8/3D+PYvjTSe37StSwRwvQ6uw==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/constants-uint32-max@0.0.7': + resolution: {integrity: sha512-8+NK0ewqc1vnEZNqzwFJgFSy3S543Eft7i8WyW/ygkofiqEiLAsujvYMHzPAB8/3D+PYvjTSe37StSwRwvQ6uw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/constants-uint8-max@0.0.7": - resolution: - { - integrity: sha512-fqV+xds4jgwFxwWu08b8xDuIoW6/D4/1dtEjZ1sXVeWR7nf0pjj1cHERq4kdkYxsvOGu+rjoR3MbjzpFc4fvSw==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/constants-uint8-max@0.0.7': + resolution: {integrity: sha512-fqV+xds4jgwFxwWu08b8xDuIoW6/D4/1dtEjZ1sXVeWR7nf0pjj1cHERq4kdkYxsvOGu+rjoR3MbjzpFc4fvSw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/fs-exists@0.0.8": - resolution: - { - integrity: sha512-mZktcCxiLmycCJefm1+jbMTYkmhK6Jk1ShFmUVqJvs+Ps9/2EEQXfPbdEniLoVz4HeHLlcX90JWobUEghOOnAQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/fs-exists@0.0.8': + resolution: {integrity: sha512-mZktcCxiLmycCJefm1+jbMTYkmhK6Jk1ShFmUVqJvs+Ps9/2EEQXfPbdEniLoVz4HeHLlcX90JWobUEghOOnAQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/fs-read-file@0.0.8": - resolution: - { - integrity: sha512-pIZID/G91+q7ep4x9ECNC45+JT2j0+jdz/ZQVjCHiEwXCwshZPEvxcPQWb9bXo6coOY+zJyX5TwBIpXBxomWFg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/fs-read-file@0.0.8': + resolution: {integrity: sha512-pIZID/G91+q7ep4x9ECNC45+JT2j0+jdz/ZQVjCHiEwXCwshZPEvxcPQWb9bXo6coOY+zJyX5TwBIpXBxomWFg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/fs-resolve-parent-path@0.0.8": - resolution: - { - integrity: sha512-ok1bTWsAziChibQE3u7EoXwbCQUDkFjjRAHSxh7WWE5JEYVJQg1F0o3bbjRr4D/wfYYPWLAt8AFIKBUDmWghpg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/fs-resolve-parent-path@0.0.8': + resolution: {integrity: sha512-ok1bTWsAziChibQE3u7EoXwbCQUDkFjjRAHSxh7WWE5JEYVJQg1F0o3bbjRr4D/wfYYPWLAt8AFIKBUDmWghpg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/math-base-assert-is-infinite@0.0.9": - resolution: - { - integrity: sha512-JuPDdmxd+AtPWPHu9uaLvTsnEPaZODZk+zpagziNbDKy8DRiU1cy+t+QEjB5WizZt0A5MkuxDTjZ/8/sG5GaYQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/math-base-assert-is-infinite@0.0.9': + resolution: {integrity: sha512-JuPDdmxd+AtPWPHu9uaLvTsnEPaZODZk+zpagziNbDKy8DRiU1cy+t+QEjB5WizZt0A5MkuxDTjZ/8/sG5GaYQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/math-base-assert-is-nan@0.0.8": - resolution: - { - integrity: sha512-m+gCVBxLFW8ZdAfdkATetYMvM7sPFoMKboacHjb1pe21jHQqVb+/4bhRSDg6S7HGX7/8/bSzEUm9zuF7vqK5rQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/math-base-assert-is-nan@0.0.8': + resolution: {integrity: sha512-m+gCVBxLFW8ZdAfdkATetYMvM7sPFoMKboacHjb1pe21jHQqVb+/4bhRSDg6S7HGX7/8/bSzEUm9zuF7vqK5rQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/math-base-napi-binary@0.0.8": - resolution: - { - integrity: sha512-B8d0HBPhfXefbdl/h0h5c+lM2sE+/U7Fb7hY/huVeoQtBtEx0Jbx/qKvPSVxMjmWCKfWlbPpbgKpN5GbFgLiAg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/math-base-napi-binary@0.0.8': + resolution: {integrity: sha512-B8d0HBPhfXefbdl/h0h5c+lM2sE+/U7Fb7hY/huVeoQtBtEx0Jbx/qKvPSVxMjmWCKfWlbPpbgKpN5GbFgLiAg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/math-base-napi-unary@0.0.9": - resolution: - { - integrity: sha512-2WNKhjCygkGMp0RgjaD7wAHJTqPZmuVW7yPOc62Tnz2U+Ad8q/tcOcN+uvq2dtKsAGr1HDMIQxZ/XrrThMePyA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/math-base-napi-unary@0.0.9': + resolution: {integrity: sha512-2WNKhjCygkGMp0RgjaD7wAHJTqPZmuVW7yPOc62Tnz2U+Ad8q/tcOcN+uvq2dtKsAGr1HDMIQxZ/XrrThMePyA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/math-base-special-abs@0.0.6": - resolution: - { - integrity: sha512-FaaMUnYs2qIVN3kI5m/qNlBhDnjszhDOzEhxGEoQWR/k0XnxbCsTyjNesR2DkpiKuoAXAr9ojoDe2qBYdirWoQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/math-base-special-abs@0.0.6': + resolution: {integrity: sha512-FaaMUnYs2qIVN3kI5m/qNlBhDnjszhDOzEhxGEoQWR/k0XnxbCsTyjNesR2DkpiKuoAXAr9ojoDe2qBYdirWoQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/math-base-special-copysign@0.0.7": - resolution: - { - integrity: sha512-7Br7oeuVJSBKG8BiSk/AIRFTBd2sbvHdV3HaqRj8tTZHX8BQomZ3Vj4Qsiz3kPyO4d6PpBLBTYlGTkSDlGOZJA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/math-base-special-copysign@0.0.7': + resolution: {integrity: sha512-7Br7oeuVJSBKG8BiSk/AIRFTBd2sbvHdV3HaqRj8tTZHX8BQomZ3Vj4Qsiz3kPyO4d6PpBLBTYlGTkSDlGOZJA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/math-base-special-ldexp@0.0.5": - resolution: - { - integrity: sha512-RLRsPpCdcJZMhwb4l4B/FsmGfEPEWAsik6KYUkUSSHb7ok/gZWt8LgVScxGMpJMpl5IV0v9qG4ZINVONKjX5KA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/math-base-special-ldexp@0.0.5': + resolution: {integrity: sha512-RLRsPpCdcJZMhwb4l4B/FsmGfEPEWAsik6KYUkUSSHb7ok/gZWt8LgVScxGMpJMpl5IV0v9qG4ZINVONKjX5KA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/number-ctor@0.0.7": - resolution: - { - integrity: sha512-kXNwKIfnb10Ro3RTclhAYqbE3DtIXax+qpu0z1/tZpI2vkmTfYDQLno2QJrzJsZZgdeFtXIws+edONN9kM34ow==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/number-ctor@0.0.7': + resolution: {integrity: sha512-kXNwKIfnb10Ro3RTclhAYqbE3DtIXax+qpu0z1/tZpI2vkmTfYDQLno2QJrzJsZZgdeFtXIws+edONN9kM34ow==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/number-float64-base-exponent@0.0.6": - resolution: - { - integrity: sha512-wLXsG+cvynmapoffmj5hVNDH7BuHIGspBcTCdjPaD+tnqPDIm03qV5Z9YBhDh91BdOCuPZQ8Ovu2WBpX+ySeGg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/number-float64-base-exponent@0.0.6': + resolution: {integrity: sha512-wLXsG+cvynmapoffmj5hVNDH7BuHIGspBcTCdjPaD+tnqPDIm03qV5Z9YBhDh91BdOCuPZQ8Ovu2WBpX+ySeGg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/number-float64-base-from-words@0.0.6": - resolution: - { - integrity: sha512-r0elnekypCN831aw9Gp8+08br8HHAqvqtc5uXaxEh3QYIgBD/QM5qSb3b7WSAQ0ZxJJKdoykupODWWBkWQTijg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/number-float64-base-from-words@0.0.6': + resolution: {integrity: sha512-r0elnekypCN831aw9Gp8+08br8HHAqvqtc5uXaxEh3QYIgBD/QM5qSb3b7WSAQ0ZxJJKdoykupODWWBkWQTijg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/number-float64-base-get-high-word@0.0.6": - resolution: - { - integrity: sha512-jSFSYkgiG/IzDurbwrDKtWiaZeSEJK8iJIsNtbPG1vOIdQMRyw+t0bf3Kf3vuJu/+bnSTvYZLqpCO6wzT/ve9g==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/number-float64-base-get-high-word@0.0.6': + resolution: {integrity: sha512-jSFSYkgiG/IzDurbwrDKtWiaZeSEJK8iJIsNtbPG1vOIdQMRyw+t0bf3Kf3vuJu/+bnSTvYZLqpCO6wzT/ve9g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/number-float64-base-normalize@0.0.9": - resolution: - { - integrity: sha512-+rm7RQJEj8zHkqYFE2a6DgNQSB5oKE/IydHAajgZl40YB91BoYRYf/ozs5/tTwfy2Fc04+tIpSfFtzDr4ZY19Q==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/number-float64-base-normalize@0.0.9': + resolution: {integrity: sha512-+rm7RQJEj8zHkqYFE2a6DgNQSB5oKE/IydHAajgZl40YB91BoYRYf/ozs5/tTwfy2Fc04+tIpSfFtzDr4ZY19Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/number-float64-base-to-float32@0.0.7": - resolution: - { - integrity: sha512-PNUSi6+cqfFiu4vgFljUKMFY2O9PxI6+T+vqtIoh8cflf+PjSGj3v4QIlstK9+6qU40eGR5SHZyLTWdzmNqLTQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/number-float64-base-to-float32@0.0.7': + resolution: {integrity: sha512-PNUSi6+cqfFiu4vgFljUKMFY2O9PxI6+T+vqtIoh8cflf+PjSGj3v4QIlstK9+6qU40eGR5SHZyLTWdzmNqLTQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/number-float64-base-to-words@0.0.7": - resolution: - { - integrity: sha512-7wsYuq+2MGp9rAkTnQ985rah7EJI9TfgHrYSSd4UIu4qIjoYmWIKEhIDgu7/69PfGrls18C3PxKg1pD/v7DQTg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/number-float64-base-to-words@0.0.7': + resolution: {integrity: sha512-7wsYuq+2MGp9rAkTnQ985rah7EJI9TfgHrYSSd4UIu4qIjoYmWIKEhIDgu7/69PfGrls18C3PxKg1pD/v7DQTg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/os-byte-order@0.0.7": - resolution: - { - integrity: sha512-rRJWjFM9lOSBiIX4zcay7BZsqYBLoE32Oz/Qfim8cv1cN1viS5D4d3DskRJcffw7zXDnG3oZAOw5yZS0FnlyUg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/os-byte-order@0.0.7': + resolution: {integrity: sha512-rRJWjFM9lOSBiIX4zcay7BZsqYBLoE32Oz/Qfim8cv1cN1viS5D4d3DskRJcffw7zXDnG3oZAOw5yZS0FnlyUg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/os-float-word-order@0.0.7": - resolution: - { - integrity: sha512-gXIcIZf+ENKP7E41bKflfXmPi+AIfjXW/oU+m8NbP3DQasqHaZa0z5758qvnbO8L1lRJb/MzLOkIY8Bx/0cWEA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/os-float-word-order@0.0.7': + resolution: {integrity: sha512-gXIcIZf+ENKP7E41bKflfXmPi+AIfjXW/oU+m8NbP3DQasqHaZa0z5758qvnbO8L1lRJb/MzLOkIY8Bx/0cWEA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/process-cwd@0.0.8": - resolution: - { - integrity: sha512-GHINpJgSlKEo9ODDWTHp0/Zc/9C/qL92h5Mc0QlIFBXAoUjy6xT4FB2U16wCNZMG3eVOzt5+SjmCwvGH0Wbg3Q==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/process-cwd@0.0.8': + resolution: {integrity: sha512-GHINpJgSlKEo9ODDWTHp0/Zc/9C/qL92h5Mc0QlIFBXAoUjy6xT4FB2U16wCNZMG3eVOzt5+SjmCwvGH0Wbg3Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/process-read-stdin@0.0.7": - resolution: - { - integrity: sha512-nep9QZ5iDGrRtrZM2+pYAvyCiYG4HfO0/9+19BiLJepjgYq4GKeumPAQo22+1xawYDL7Zu62uWzYszaVZcXuyw==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/process-read-stdin@0.0.7': + resolution: {integrity: sha512-nep9QZ5iDGrRtrZM2+pYAvyCiYG4HfO0/9+19BiLJepjgYq4GKeumPAQo22+1xawYDL7Zu62uWzYszaVZcXuyw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/regexp-eol@0.0.7": - resolution: - { - integrity: sha512-BTMpRWrmlnf1XCdTxOrb8o6caO2lmu/c80XSyhYCi1DoizVIZnqxOaN5yUJNCr50g28vQ47PpsT3Yo7J3SdlRA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/regexp-eol@0.0.7': + resolution: {integrity: sha512-BTMpRWrmlnf1XCdTxOrb8o6caO2lmu/c80XSyhYCi1DoizVIZnqxOaN5yUJNCr50g28vQ47PpsT3Yo7J3SdlRA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/regexp-extended-length-path@0.0.7": - resolution: - { - integrity: sha512-z6uqzMWq3WPDKbl4MIZJoNA5ZsYLQI9G3j2TIvhU8X2hnhlku8p4mvK9F+QmoVvgPxKliwNnx/DAl7ltutSDKw==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/regexp-extended-length-path@0.0.7': + resolution: {integrity: sha512-z6uqzMWq3WPDKbl4MIZJoNA5ZsYLQI9G3j2TIvhU8X2hnhlku8p4mvK9F+QmoVvgPxKliwNnx/DAl7ltutSDKw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/regexp-function-name@0.0.7": - resolution: - { - integrity: sha512-MaiyFUUqkAUpUoz/9F6AMBuMQQfA9ssQfK16PugehLQh4ZtOXV1LhdY8e5Md7SuYl9IrvFVg1gSAVDysrv5ZMg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/regexp-function-name@0.0.7': + resolution: {integrity: sha512-MaiyFUUqkAUpUoz/9F6AMBuMQQfA9ssQfK16PugehLQh4ZtOXV1LhdY8e5Md7SuYl9IrvFVg1gSAVDysrv5ZMg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/regexp-regexp@0.0.8": - resolution: - { - integrity: sha512-S5PZICPd/XRcn1dncVojxIDzJsHtEleuJHHD7ji3o981uPHR7zI2Iy9a1eV2u7+ABeUswbI1Yuix6fXJfcwV1w==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/regexp-regexp@0.0.8': + resolution: {integrity: sha512-S5PZICPd/XRcn1dncVojxIDzJsHtEleuJHHD7ji3o981uPHR7zI2Iy9a1eV2u7+ABeUswbI1Yuix6fXJfcwV1w==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/streams-node-stdin@0.0.7": - resolution: - { - integrity: sha512-gg4lgrjuoG3V/L29wNs32uADMCqepIcmoOFHJCTAhVe0GtHDLybUVnLljaPfdvmpPZmTvmusPQtIcscbyWvAyg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/streams-node-stdin@0.0.7': + resolution: {integrity: sha512-gg4lgrjuoG3V/L29wNs32uADMCqepIcmoOFHJCTAhVe0GtHDLybUVnLljaPfdvmpPZmTvmusPQtIcscbyWvAyg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/string-base-format-interpolate@0.0.4": - resolution: - { - integrity: sha512-8FC8+/ey+P5hf1B50oXpXzRzoAgKI1rikpyKZ98Xmjd5rcbSq3NWYi8TqOF8mUHm9hVZ2CXWoNCtEe2wvMQPMg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/string-base-format-interpolate@0.0.4': + resolution: {integrity: sha512-8FC8+/ey+P5hf1B50oXpXzRzoAgKI1rikpyKZ98Xmjd5rcbSq3NWYi8TqOF8mUHm9hVZ2CXWoNCtEe2wvMQPMg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/string-base-format-tokenize@0.0.4": - resolution: - { - integrity: sha512-+vMIkheqAhDeT/iF5hIQo95IMkt5IzC68eR3CxW1fhc48NMkKFE2UfN73ET8fmLuOanLo/5pO2E90c2G7PExow==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/string-base-format-tokenize@0.0.4': + resolution: {integrity: sha512-+vMIkheqAhDeT/iF5hIQo95IMkt5IzC68eR3CxW1fhc48NMkKFE2UfN73ET8fmLuOanLo/5pO2E90c2G7PExow==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/string-format@0.0.3": - resolution: - { - integrity: sha512-1jiElUQXlI/tTkgRuzJi9jUz/EjrO9kzS8VWHD3g7gdc3ZpxlA5G9JrIiPXGw/qmZTi0H1pXl6KmX+xWQEQJAg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/string-format@0.0.3': + resolution: {integrity: sha512-1jiElUQXlI/tTkgRuzJi9jUz/EjrO9kzS8VWHD3g7gdc3ZpxlA5G9JrIiPXGw/qmZTi0H1pXl6KmX+xWQEQJAg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/string-lowercase@0.0.9": - resolution: - { - integrity: sha512-tXFFjbhIlDak4jbQyV1DhYiSTO8b1ozS2g/LELnsKUjIXECDKxGFyWYcz10KuyAWmFotHnCJdIm8/blm2CfDIA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/string-lowercase@0.0.9': + resolution: {integrity: sha512-tXFFjbhIlDak4jbQyV1DhYiSTO8b1ozS2g/LELnsKUjIXECDKxGFyWYcz10KuyAWmFotHnCJdIm8/blm2CfDIA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/string-replace@0.0.11": - resolution: - { - integrity: sha512-F0MY4f9mRE5MSKpAUfL4HLbJMCbG6iUTtHAWnNeAXIvUX1XYIw/eItkA58R9kNvnr1l5B08bavnjrgTJGIKFFQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/string-replace@0.0.11': + resolution: {integrity: sha512-F0MY4f9mRE5MSKpAUfL4HLbJMCbG6iUTtHAWnNeAXIvUX1XYIw/eItkA58R9kNvnr1l5B08bavnjrgTJGIKFFQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/types@0.0.14": - resolution: - { - integrity: sha512-AP3EI9/il/xkwUazcoY+SbjtxHRrheXgSbWZdEGD+rWpEgj6n2i63hp6hTOpAB5NipE0tJwinQlDGOuQ1lCaCw==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/types@0.0.14': + resolution: {integrity: sha512-AP3EI9/il/xkwUazcoY+SbjtxHRrheXgSbWZdEGD+rWpEgj6n2i63hp6hTOpAB5NipE0tJwinQlDGOuQ1lCaCw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/utils-constructor-name@0.0.8": - resolution: - { - integrity: sha512-GXpyNZwjN8u3tyYjL2GgGfrsxwvfogUC3gg7L7NRZ1i86B6xmgfnJUYHYOUnSfB+R531ET7NUZlK52GxL7P82Q==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/utils-constructor-name@0.0.8': + resolution: {integrity: sha512-GXpyNZwjN8u3tyYjL2GgGfrsxwvfogUC3gg7L7NRZ1i86B6xmgfnJUYHYOUnSfB+R531ET7NUZlK52GxL7P82Q==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/utils-convert-path@0.0.8": - resolution: - { - integrity: sha512-GNd8uIswrcJCctljMbmjtE4P4oOjhoUIfMvdkqfSrRLRY+ZqPB2xM+yI0MQFfUq/0Rnk/xtESlGSVLz9ZDtXfA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/utils-convert-path@0.0.8': + resolution: {integrity: sha512-GNd8uIswrcJCctljMbmjtE4P4oOjhoUIfMvdkqfSrRLRY+ZqPB2xM+yI0MQFfUq/0Rnk/xtESlGSVLz9ZDtXfA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/utils-define-nonenumerable-read-only-property@0.0.7": - resolution: - { - integrity: sha512-c7dnHDYuS4Xn3XBRWIQBPcROTtP/4lkcFyq0FrQzjXUjimfMgHF7cuFIIob6qUTnU8SOzY9p0ydRR2QJreWE6g==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/utils-define-nonenumerable-read-only-property@0.0.7': + resolution: {integrity: sha512-c7dnHDYuS4Xn3XBRWIQBPcROTtP/4lkcFyq0FrQzjXUjimfMgHF7cuFIIob6qUTnU8SOzY9p0ydRR2QJreWE6g==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/utils-define-property@0.0.9": - resolution: - { - integrity: sha512-pIzVvHJvVfU/Lt45WwUAcodlvSPDDSD4pIPc9WmIYi4vnEBA9U7yHtiNz2aTvfGmBMTaLYTVVFIXwkFp+QotMA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/utils-define-property@0.0.9': + resolution: {integrity: sha512-pIzVvHJvVfU/Lt45WwUAcodlvSPDDSD4pIPc9WmIYi4vnEBA9U7yHtiNz2aTvfGmBMTaLYTVVFIXwkFp+QotMA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/utils-escape-regexp-string@0.0.9": - resolution: - { - integrity: sha512-E+9+UDzf2mlMLgb+zYrrPy2FpzbXh189dzBJY6OG+XZqEJAXcjWs7DURO5oGffkG39EG5KXeaQwDXUavcMDCIw==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/utils-escape-regexp-string@0.0.9': + resolution: {integrity: sha512-E+9+UDzf2mlMLgb+zYrrPy2FpzbXh189dzBJY6OG+XZqEJAXcjWs7DURO5oGffkG39EG5KXeaQwDXUavcMDCIw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/utils-get-prototype-of@0.0.7": - resolution: - { - integrity: sha512-fCUk9lrBO2ELrq+/OPJws1/hquI4FtwG0SzVRH6UJmJfwb1zoEFnjcwyDAy+HWNVmo3xeRLsrz6XjHrJwer9pg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/utils-get-prototype-of@0.0.7': + resolution: {integrity: sha512-fCUk9lrBO2ELrq+/OPJws1/hquI4FtwG0SzVRH6UJmJfwb1zoEFnjcwyDAy+HWNVmo3xeRLsrz6XjHrJwer9pg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/utils-global@0.0.7": - resolution: - { - integrity: sha512-BBNYBdDUz1X8Lhfw9nnnXczMv9GztzGpQ88J/6hnY7PHJ71av5d41YlijWeM9dhvWjnH9I7HNE3LL7R07yw0kA==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/utils-global@0.0.7': + resolution: {integrity: sha512-BBNYBdDUz1X8Lhfw9nnnXczMv9GztzGpQ88J/6hnY7PHJ71av5d41YlijWeM9dhvWjnH9I7HNE3LL7R07yw0kA==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/utils-library-manifest@0.0.8": - resolution: - { - integrity: sha512-IOQSp8skSRQn9wOyMRUX9Hi0j/P5v5TvD8DJWTqtE8Lhr8kVVluMBjHfvheoeKHxfWAbNHSVpkpFY/Bdh/SHgQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/utils-library-manifest@0.0.8': + resolution: {integrity: sha512-IOQSp8skSRQn9wOyMRUX9Hi0j/P5v5TvD8DJWTqtE8Lhr8kVVluMBjHfvheoeKHxfWAbNHSVpkpFY/Bdh/SHgQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] hasBin: true - "@stdlib/utils-native-class@0.0.8": - resolution: - { - integrity: sha512-0Zl9me2V9rSrBw/N8o8/9XjmPUy8zEeoMM0sJmH3N6C9StDsYTjXIAMPGzYhMEWaWHvGeYyNteFK2yDOVGtC3w==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/utils-native-class@0.0.8': + resolution: {integrity: sha512-0Zl9me2V9rSrBw/N8o8/9XjmPUy8zEeoMM0sJmH3N6C9StDsYTjXIAMPGzYhMEWaWHvGeYyNteFK2yDOVGtC3w==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/utils-next-tick@0.0.8": - resolution: - { - integrity: sha512-l+hPl7+CgLPxk/gcWOXRxX/lNyfqcFCqhzzV/ZMvFCYLY/wI9lcWO4xTQNMALY2rp+kiV+qiAiO9zcO+hewwUg==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/utils-next-tick@0.0.8': + resolution: {integrity: sha512-l+hPl7+CgLPxk/gcWOXRxX/lNyfqcFCqhzzV/ZMvFCYLY/wI9lcWO4xTQNMALY2rp+kiV+qiAiO9zcO+hewwUg==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/utils-noop@0.0.14": - resolution: - { - integrity: sha512-A5faFEUfszMgd93RCyB+aWb62hQxgP+dZ/l9rIOwNWbIrCYNwSuL4z50lNJuatnwwU4BQ4EjQr+AmBsnvuLcyQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/utils-noop@0.0.14': + resolution: {integrity: sha512-A5faFEUfszMgd93RCyB+aWb62hQxgP+dZ/l9rIOwNWbIrCYNwSuL4z50lNJuatnwwU4BQ4EjQr+AmBsnvuLcyQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/utils-regexp-from-string@0.0.9": - resolution: - { - integrity: sha512-3rN0Mcyiarl7V6dXRjFAUMacRwe0/sYX7ThKYurf0mZkMW9tjTP+ygak9xmL9AL0QQZtbrFFwWBrDO+38Vnavw==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/utils-regexp-from-string@0.0.9': + resolution: {integrity: sha512-3rN0Mcyiarl7V6dXRjFAUMacRwe0/sYX7ThKYurf0mZkMW9tjTP+ygak9xmL9AL0QQZtbrFFwWBrDO+38Vnavw==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stdlib/utils-type-of@0.0.8": - resolution: - { - integrity: sha512-b4xqdy3AnnB7NdmBBpoiI67X4vIRxvirjg3a8BfhM5jPr2k0njby1jAbG9dUxJvgAV6o32S4kjUgfIdjEYpTNQ==, - } - engines: { node: ">=0.10.0", npm: ">2.7.0" } + '@stdlib/utils-type-of@0.0.8': + resolution: {integrity: sha512-b4xqdy3AnnB7NdmBBpoiI67X4vIRxvirjg3a8BfhM5jPr2k0njby1jAbG9dUxJvgAV6o32S4kjUgfIdjEYpTNQ==} + engines: {node: '>=0.10.0', npm: '>2.7.0'} os: [aix, darwin, freebsd, linux, macos, openbsd, sunos, win32, windows] - "@stellar/js-xdr@3.1.1": - resolution: - { - integrity: sha512-3gnPjAz78htgqsNEDkEsKHKosV2BF2iZkoHCNxpmZwUxiPsw+2VaXMed8RRMe0rGk3d5GZe7RrSba8zV80J3Ag==, - } - - "@stellar/stellar-base@11.0.1": - resolution: - { - integrity: sha512-VQh+1KEtFjegD6spx08+lENt8tQOkQQQZoLtqExjpRXyWlqDhEe+bXMlBTYKDc5MIynHyD42RPEib27UG17trA==, - } - - "@stellar/stellar-sdk@11.3.0": - resolution: - { - integrity: sha512-i+heopibJNRA7iM8rEPz0AXphBPYvy2HDo8rxbDwWpozwCfw8kglP9cLkkhgJe8YicgLrdExz/iQZaLpqLC+6w==, - } - - "@storybook/addon-actions@7.6.17": - resolution: - { - integrity: sha512-TBphs4v6LRfyTpFo/WINF0TkMaE3rrNog7wW5mbz6n0j8o53kDN4o9ZEcygSL5zQX43CAaghQTeDCss7ueG7ZQ==, - } - - "@storybook/addon-actions@7.6.20": - resolution: - { - integrity: sha512-c/GkEQ2U9BC/Ew/IMdh+zvsh4N6y6n7Zsn2GIhJgcu9YEAa5aF2a9/pNgEGBMOABH959XE8DAOMERw/5qiLR8g==, - } - - "@storybook/addon-backgrounds@7.6.17": - resolution: - { - integrity: sha512-7dize7x8+37PH77kmt69b0xSaeDqOcZ4fpzW6+hk53hIaCVU26eGs4+j+743Xva31eOgZWNLupUhOpUDc6SqZw==, - } - - "@storybook/addon-backgrounds@7.6.20": - resolution: - { - integrity: sha512-a7ukoaXT42vpKsMxkseIeO3GqL0Zst2IxpCTq5dSlXiADrcemSF/8/oNpNW9C4L6F1Zdt+WDtECXslEm017FvQ==, - } - - "@storybook/addon-controls@7.6.17": - resolution: - { - integrity: sha512-zR0aLaUF7FtV/nMRyfniFbCls/e0DAAoXACuOAUAwNAv0lbIS8AyZZiHSmKucCvziUQ6WceeCC7+du3C+9y0rQ==, - } - - "@storybook/addon-controls@7.6.20": - resolution: - { - integrity: sha512-06ZT5Ce1sZW52B0s6XuokwjkKO9GqHlTUHvuflvd8wifxKlCmRvNUxjBvwh+ccGJ49ZS73LbMSLFgtmBEkCxbg==, - } - - "@storybook/addon-docs@7.6.17": - resolution: - { - integrity: sha512-FKa4Mdy7nhgvEVZJHpMkHriDzpVHbohn87zv9NCL+Ctjs1iAmzGwxEm0culszyDS1HN2ToVoY0h8CSi2RSSZqA==, - } + '@stellar/js-xdr@3.1.1': + resolution: {integrity: sha512-3gnPjAz78htgqsNEDkEsKHKosV2BF2iZkoHCNxpmZwUxiPsw+2VaXMed8RRMe0rGk3d5GZe7RrSba8zV80J3Ag==} + + '@stellar/stellar-base@11.0.1': + resolution: {integrity: sha512-VQh+1KEtFjegD6spx08+lENt8tQOkQQQZoLtqExjpRXyWlqDhEe+bXMlBTYKDc5MIynHyD42RPEib27UG17trA==} + + '@stellar/stellar-sdk@11.3.0': + resolution: {integrity: sha512-i+heopibJNRA7iM8rEPz0AXphBPYvy2HDo8rxbDwWpozwCfw8kglP9cLkkhgJe8YicgLrdExz/iQZaLpqLC+6w==} + + '@storybook/addon-actions@7.6.17': + resolution: {integrity: sha512-TBphs4v6LRfyTpFo/WINF0TkMaE3rrNog7wW5mbz6n0j8o53kDN4o9ZEcygSL5zQX43CAaghQTeDCss7ueG7ZQ==} + + '@storybook/addon-actions@7.6.20': + resolution: {integrity: sha512-c/GkEQ2U9BC/Ew/IMdh+zvsh4N6y6n7Zsn2GIhJgcu9YEAa5aF2a9/pNgEGBMOABH959XE8DAOMERw/5qiLR8g==} + + '@storybook/addon-backgrounds@7.6.17': + resolution: {integrity: sha512-7dize7x8+37PH77kmt69b0xSaeDqOcZ4fpzW6+hk53hIaCVU26eGs4+j+743Xva31eOgZWNLupUhOpUDc6SqZw==} + + '@storybook/addon-backgrounds@7.6.20': + resolution: {integrity: sha512-a7ukoaXT42vpKsMxkseIeO3GqL0Zst2IxpCTq5dSlXiADrcemSF/8/oNpNW9C4L6F1Zdt+WDtECXslEm017FvQ==} + + '@storybook/addon-controls@7.6.17': + resolution: {integrity: sha512-zR0aLaUF7FtV/nMRyfniFbCls/e0DAAoXACuOAUAwNAv0lbIS8AyZZiHSmKucCvziUQ6WceeCC7+du3C+9y0rQ==} + + '@storybook/addon-controls@7.6.20': + resolution: {integrity: sha512-06ZT5Ce1sZW52B0s6XuokwjkKO9GqHlTUHvuflvd8wifxKlCmRvNUxjBvwh+ccGJ49ZS73LbMSLFgtmBEkCxbg==} + + '@storybook/addon-docs@7.6.17': + resolution: {integrity: sha512-FKa4Mdy7nhgvEVZJHpMkHriDzpVHbohn87zv9NCL+Ctjs1iAmzGwxEm0culszyDS1HN2ToVoY0h8CSi2RSSZqA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/addon-docs@7.6.20": - resolution: - { - integrity: sha512-XNfYRhbxH5JP7B9Lh4W06PtMefNXkfpV39Gaoih5HuqngV3eoSL4RikZYOMkvxRGQ738xc6axySU3+JKcP1OZg==, - } + '@storybook/addon-docs@7.6.20': + resolution: {integrity: sha512-XNfYRhbxH5JP7B9Lh4W06PtMefNXkfpV39Gaoih5HuqngV3eoSL4RikZYOMkvxRGQ738xc6axySU3+JKcP1OZg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/addon-essentials@7.6.17": - resolution: - { - integrity: sha512-qlSpamxuYfT2taF953nC9QijGF2pSbg1ewMNpdwLTj16PTZvR/d8NCDMTJujI1bDwM2m18u8Yc43ibh5LEmxCw==, - } + '@storybook/addon-essentials@7.6.17': + resolution: {integrity: sha512-qlSpamxuYfT2taF953nC9QijGF2pSbg1ewMNpdwLTj16PTZvR/d8NCDMTJujI1bDwM2m18u8Yc43ibh5LEmxCw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/addon-essentials@7.6.20": - resolution: - { - integrity: sha512-hCupSOiJDeOxJKZSgH0x5Mb2Xqii6mps21g5hpxac1XjhQtmGflShxi/xOHhK3sNqrbgTSbScfpUP3hUlZO/2Q==, - } + '@storybook/addon-essentials@7.6.20': + resolution: {integrity: sha512-hCupSOiJDeOxJKZSgH0x5Mb2Xqii6mps21g5hpxac1XjhQtmGflShxi/xOHhK3sNqrbgTSbScfpUP3hUlZO/2Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/addon-highlight@7.6.17": - resolution: - { - integrity: sha512-R1yBPUUqGn+60aJakn8q+5Zt34E/gU3n3VmgPdryP0LJUdZ5q1/RZShoVDV+yYQ40htMH6oaCv3OyyPzFAGJ6A==, - } + '@storybook/addon-highlight@7.6.17': + resolution: {integrity: sha512-R1yBPUUqGn+60aJakn8q+5Zt34E/gU3n3VmgPdryP0LJUdZ5q1/RZShoVDV+yYQ40htMH6oaCv3OyyPzFAGJ6A==} - "@storybook/addon-highlight@7.6.20": - resolution: - { - integrity: sha512-7/x7xFdFyqCki5Dm3uBePldUs9l98/WxJ7rTHQuYqlX7kASwyN5iXPzuhmMRUhlMm/6G6xXtLabIpzwf1sFurA==, - } + '@storybook/addon-highlight@7.6.20': + resolution: {integrity: sha512-7/x7xFdFyqCki5Dm3uBePldUs9l98/WxJ7rTHQuYqlX7kASwyN5iXPzuhmMRUhlMm/6G6xXtLabIpzwf1sFurA==} - "@storybook/addon-links@7.6.17": - resolution: - { - integrity: sha512-iFUwKObRn0EKI0zMETsil2p9a/81rCuSMEWECsi+khkCAs1FUnD2cT6Ag5ydcNcBXsdtdfDJdtXQrkw+TSoStQ==, - } + '@storybook/addon-links@7.6.17': + resolution: {integrity: sha512-iFUwKObRn0EKI0zMETsil2p9a/81rCuSMEWECsi+khkCAs1FUnD2cT6Ag5ydcNcBXsdtdfDJdtXQrkw+TSoStQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: react: optional: true - "@storybook/addon-links@7.6.20": - resolution: - { - integrity: sha512-iomSnBD90CA4MinesYiJkFX2kb3P1Psd/a1Y0ghlFEsHD4uMId9iT6sx2s16DYMja0SlPkrbWYnGukqaCjZpRw==, - } + '@storybook/addon-links@7.6.20': + resolution: {integrity: sha512-iomSnBD90CA4MinesYiJkFX2kb3P1Psd/a1Y0ghlFEsHD4uMId9iT6sx2s16DYMja0SlPkrbWYnGukqaCjZpRw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: react: optional: true - "@storybook/addon-measure@7.6.17": - resolution: - { - integrity: sha512-O5vnHZNkduvZ95jf1UssbOl6ivIxzl5tv+4EpScPYId7w700bxWsJH+QX7ip6KlrCf2o3iUhmPe8bm05ghG2KA==, - } - - "@storybook/addon-measure@7.6.20": - resolution: - { - integrity: sha512-i2Iq08bGfI7gZbG6Lb8uF/L287tnaGUR+2KFEmdBjH6+kgjWLiwfpanoPQpy4drm23ar0gUjX+L3Ri03VI5/Xg==, - } - - "@storybook/addon-ondevice-actions@6.5.7": - resolution: - { - integrity: sha512-Zrk75yQbJ3fOf/e5XROeBYfT/UYz24he+LWNicIajNTPRz+YhnOmWedWYF/vEVQ+exnAi3U4cFkX3qUq9blI3w==, - } - peerDependencies: - "@storybook/addon-actions": ^6.5.14 - react: "*" - react-native: "*" - - "@storybook/addon-ondevice-backgrounds@6.5.7": - resolution: - { - integrity: sha512-JY+kLkI+VGV9ry3oIdn9bNHzd/dE1X5F//LXppx8pcbqswgCrwIkuZJJQ3A7ppPr34YxtnGJptKdAId7FFpB3w==, - } - peerDependencies: - "@emotion/native": "*" - react: "*" - react-native: "*" + '@storybook/addon-measure@7.6.17': + resolution: {integrity: sha512-O5vnHZNkduvZ95jf1UssbOl6ivIxzl5tv+4EpScPYId7w700bxWsJH+QX7ip6KlrCf2o3iUhmPe8bm05ghG2KA==} + + '@storybook/addon-measure@7.6.20': + resolution: {integrity: sha512-i2Iq08bGfI7gZbG6Lb8uF/L287tnaGUR+2KFEmdBjH6+kgjWLiwfpanoPQpy4drm23ar0gUjX+L3Ri03VI5/Xg==} + + '@storybook/addon-ondevice-actions@6.5.7': + resolution: {integrity: sha512-Zrk75yQbJ3fOf/e5XROeBYfT/UYz24he+LWNicIajNTPRz+YhnOmWedWYF/vEVQ+exnAi3U4cFkX3qUq9blI3w==} + peerDependencies: + '@storybook/addon-actions': ^6.5.14 + react: '*' + react-native: '*' + + '@storybook/addon-ondevice-backgrounds@6.5.7': + resolution: {integrity: sha512-JY+kLkI+VGV9ry3oIdn9bNHzd/dE1X5F//LXppx8pcbqswgCrwIkuZJJQ3A7ppPr34YxtnGJptKdAId7FFpB3w==} + peerDependencies: + '@emotion/native': '*' + react: '*' + react-native: '*' peerDependenciesMeta: - "@emotion/native": - optional: true - - "@storybook/addon-ondevice-controls@6.5.7": - resolution: - { - integrity: sha512-dy3d2D8TzEIGaEufS3mB3X7K0Wa5qBc6QEGE1b0S8ra9pa9Hw5YD43fk7xvwSJ1QIbOFCr7QWbfnB1c2QwyFSQ==, - } - peerDependencies: - "@react-native-community/datetimepicker": "*" - "@react-native-community/slider": "*" - "@storybook/addon-controls": ^6.5.14 - react: "*" - react-native: "*" - - "@storybook/addon-ondevice-notes@6.5.7": - resolution: - { - integrity: sha512-qs84AdYlWwEb6/B4HnujV0+bqK70Lz5aLn+B4vyeU0154ebF40b2R7PS0bDeWVOwsEu3mLK3sRF6lDRfaUn8OQ==, - } - peerDependencies: - react: "*" - react-native: "*" - - "@storybook/addon-outline@7.6.17": - resolution: - { - integrity: sha512-9o9JXDsYjNaDgz/cY5+jv694+aik/1aiRGGvsCv68e1p/ob0glkGKav4lnJe2VJqD+gCmaARoD8GOJlhoQl8JQ==, - } - - "@storybook/addon-outline@7.6.20": - resolution: - { - integrity: sha512-TdsIQZf/TcDsGoZ1XpO+9nBc4OKqcMIzY4SrI8Wj9dzyFLQ37s08gnZr9POci8AEv62NTUOVavsxcafllkzqDQ==, - } - - "@storybook/addon-react-native-web@0.0.21": - resolution: - { - integrity: sha512-qEDUe1gbY2o0x8QCN7TbTBQGMhJP7FMbYVsJ357ApvsySQwog3tJqU6zHt5YJ0X41dteBfdrDL9ziwirHdl7GA==, - } - peerDependencies: - "@babel/preset-react": "*" - babel-plugin-react-native-web: "*" - metro-react-native-babel-preset: "*" + '@emotion/native': + optional: true + + '@storybook/addon-ondevice-controls@6.5.7': + resolution: {integrity: sha512-dy3d2D8TzEIGaEufS3mB3X7K0Wa5qBc6QEGE1b0S8ra9pa9Hw5YD43fk7xvwSJ1QIbOFCr7QWbfnB1c2QwyFSQ==} + peerDependencies: + '@react-native-community/datetimepicker': '*' + '@react-native-community/slider': '*' + '@storybook/addon-controls': ^6.5.14 + react: '*' + react-native: '*' + + '@storybook/addon-ondevice-notes@6.5.7': + resolution: {integrity: sha512-qs84AdYlWwEb6/B4HnujV0+bqK70Lz5aLn+B4vyeU0154ebF40b2R7PS0bDeWVOwsEu3mLK3sRF6lDRfaUn8OQ==} + peerDependencies: + react: '*' + react-native: '*' + + '@storybook/addon-outline@7.6.17': + resolution: {integrity: sha512-9o9JXDsYjNaDgz/cY5+jv694+aik/1aiRGGvsCv68e1p/ob0glkGKav4lnJe2VJqD+gCmaARoD8GOJlhoQl8JQ==} + + '@storybook/addon-outline@7.6.20': + resolution: {integrity: sha512-TdsIQZf/TcDsGoZ1XpO+9nBc4OKqcMIzY4SrI8Wj9dzyFLQ37s08gnZr9POci8AEv62NTUOVavsxcafllkzqDQ==} + + '@storybook/addon-react-native-web@0.0.21': + resolution: {integrity: sha512-qEDUe1gbY2o0x8QCN7TbTBQGMhJP7FMbYVsJ357ApvsySQwog3tJqU6zHt5YJ0X41dteBfdrDL9ziwirHdl7GA==} + peerDependencies: + '@babel/preset-react': '*' + babel-plugin-react-native-web: '*' + metro-react-native-babel-preset: '*' react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - webpack: "5" + webpack: '*' peerDependenciesMeta: react: optional: true @@ -18115,3261 +13888,1887 @@ packages: webpack: optional: true - "@storybook/addon-toolbars@7.6.17": - resolution: - { - integrity: sha512-UMrchbUHiyWrh6WuGnpy34Jqzkx/63B+MSgb3CW7YsQaXz64kE0Rol0TNSznnB+mYXplcqH+ndI4r4kFsmgwDg==, - } - - "@storybook/addon-toolbars@7.6.20": - resolution: - { - integrity: sha512-5Btg4i8ffWTDHsU72cqxC8nIv9N3E3ObJAc6k0llrmPBG/ybh3jxmRfs8fNm44LlEXaZ5qrK/petsXX3UbpIFg==, - } - - "@storybook/addon-viewport@7.6.17": - resolution: - { - integrity: sha512-sA0QCcf4QAMixWvn8uvRYPfkKCSl6JajJaAspoPqXSxHEpK7uwOlpg3kqFU5XJJPXD0X957M+ONgNvBzYqSpEw==, - } - - "@storybook/addon-viewport@7.6.20": - resolution: - { - integrity: sha512-i8mIw8BjLWAVHEQsOTE6UPuEGQvJDpsu1XZnOCkpfTfPMz73m+3td/PmLG7mMT2wPnLu9IZncKLCKTAZRbt/YQ==, - } - - "@storybook/addons@6.5.16": - resolution: - { - integrity: sha512-p3DqQi+8QRL5k7jXhXmJZLsE/GqHqyY6PcoA1oNTJr0try48uhTGUOYkgzmqtDaa/qPFO5LP+xCPzZXckGtquQ==, - } + '@storybook/addon-toolbars@7.6.17': + resolution: {integrity: sha512-UMrchbUHiyWrh6WuGnpy34Jqzkx/63B+MSgb3CW7YsQaXz64kE0Rol0TNSznnB+mYXplcqH+ndI4r4kFsmgwDg==} + + '@storybook/addon-toolbars@7.6.20': + resolution: {integrity: sha512-5Btg4i8ffWTDHsU72cqxC8nIv9N3E3ObJAc6k0llrmPBG/ybh3jxmRfs8fNm44LlEXaZ5qrK/petsXX3UbpIFg==} + + '@storybook/addon-viewport@7.6.17': + resolution: {integrity: sha512-sA0QCcf4QAMixWvn8uvRYPfkKCSl6JajJaAspoPqXSxHEpK7uwOlpg3kqFU5XJJPXD0X957M+ONgNvBzYqSpEw==} + + '@storybook/addon-viewport@7.6.20': + resolution: {integrity: sha512-i8mIw8BjLWAVHEQsOTE6UPuEGQvJDpsu1XZnOCkpfTfPMz73m+3td/PmLG7mMT2wPnLu9IZncKLCKTAZRbt/YQ==} + + '@storybook/addons@6.5.16': + resolution: {integrity: sha512-p3DqQi+8QRL5k7jXhXmJZLsE/GqHqyY6PcoA1oNTJr0try48uhTGUOYkgzmqtDaa/qPFO5LP+xCPzZXckGtquQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/addons@7.6.17": - resolution: - { - integrity: sha512-Ok18Y698Ccyg++MoUNJNHY0cXUvo8ETFIRLJk1g9ElJ70j6kPgNnzW2pAtZkBNmswHtofZ7pT156cj96k/LgfA==, - } + '@storybook/addons@7.6.17': + resolution: {integrity: sha512-Ok18Y698Ccyg++MoUNJNHY0cXUvo8ETFIRLJk1g9ElJ70j6kPgNnzW2pAtZkBNmswHtofZ7pT156cj96k/LgfA==} - "@storybook/api@6.5.16": - resolution: - { - integrity: sha512-HOsuT8iomqeTMQJrRx5U8nsC7lJTwRr1DhdD0SzlqL4c80S/7uuCy4IZvOt4sYQjOzW5fOo/kamcoBXyLproTA==, - } + '@storybook/api@6.5.16': + resolution: {integrity: sha512-HOsuT8iomqeTMQJrRx5U8nsC7lJTwRr1DhdD0SzlqL4c80S/7uuCy4IZvOt4sYQjOzW5fOo/kamcoBXyLproTA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/blocks@7.6.17": - resolution: - { - integrity: sha512-PsNVoe0bX1mMn4Kk3nbKZ0ItDZZ0YJnYAFJ6toAbsyBAbgzg1sce88sQinzvbn58/RT9MPKeWMPB45ZS7ggiNg==, - } + '@storybook/blocks@7.6.17': + resolution: {integrity: sha512-PsNVoe0bX1mMn4Kk3nbKZ0ItDZZ0YJnYAFJ6toAbsyBAbgzg1sce88sQinzvbn58/RT9MPKeWMPB45ZS7ggiNg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/blocks@7.6.20": - resolution: - { - integrity: sha512-xADKGEOJWkG0UD5jbY4mBXRlmj2C+CIupDL0/hpzvLvwobxBMFPKZIkcZIMvGvVnI/Ui+tJxQxLSuJ5QsPthUw==, - } + '@storybook/blocks@7.6.20': + resolution: {integrity: sha512-xADKGEOJWkG0UD5jbY4mBXRlmj2C+CIupDL0/hpzvLvwobxBMFPKZIkcZIMvGvVnI/Ui+tJxQxLSuJ5QsPthUw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/builder-manager@7.6.17": - resolution: - { - integrity: sha512-Sj8hcDYiPCCMfeLzus37czl0zdrAxAz4IyYam2jBjVymrIrcDAFyL1OCZvnq33ft179QYQWhUs9qwzVmlR/ZWg==, - } - - "@storybook/builder-manager@7.6.20": - resolution: - { - integrity: sha512-e2GzpjLaw6CM/XSmc4qJRzBF8GOoOyotyu3JrSPTYOt4RD8kjUsK4QlismQM1DQRu8i39aIexxmRbiJyD74xzQ==, - } - - "@storybook/builder-webpack5@7.6.17": - resolution: - { - integrity: sha512-GMaBd8/RzivuAmWrYSt9Rga3j8WLcu5LCMYiPVs+XKXsKAC8lTkV0WRWh8Nk6wTmfzsRQ2acwFjSG5oE4ClZKA==, - } - peerDependencies: - typescript: "*" + '@storybook/builder-manager@7.6.17': + resolution: {integrity: sha512-Sj8hcDYiPCCMfeLzus37czl0zdrAxAz4IyYam2jBjVymrIrcDAFyL1OCZvnq33ft179QYQWhUs9qwzVmlR/ZWg==} + + '@storybook/builder-manager@7.6.20': + resolution: {integrity: sha512-e2GzpjLaw6CM/XSmc4qJRzBF8GOoOyotyu3JrSPTYOt4RD8kjUsK4QlismQM1DQRu8i39aIexxmRbiJyD74xzQ==} + + '@storybook/builder-webpack5@7.6.17': + resolution: {integrity: sha512-GMaBd8/RzivuAmWrYSt9Rga3j8WLcu5LCMYiPVs+XKXsKAC8lTkV0WRWh8Nk6wTmfzsRQ2acwFjSG5oE4ClZKA==} + peerDependencies: + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@storybook/builder-webpack5@7.6.20": - resolution: - { - integrity: sha512-kUcMZHVo/jybwsje03MFN1ZucdjyH6QB+jlw9dzHrAhM6N1IItwHzhlixvxmseA5OB7jk1b0WcCN8tfD2qByFA==, - } + '@storybook/builder-webpack5@7.6.20': + resolution: {integrity: sha512-kUcMZHVo/jybwsje03MFN1ZucdjyH6QB+jlw9dzHrAhM6N1IItwHzhlixvxmseA5OB7jk1b0WcCN8tfD2qByFA==} peerDependencies: - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@storybook/channel-postmessage@6.5.16": - resolution: - { - integrity: sha512-fZZSN29dsUArWOx7e7lTdMA9+7zijVwCwbvi2Fo4fqhRLh1DsTb/VXfz1FKMCWAjNlcX7QQvV25tnxbqsD6lyw==, - } - - "@storybook/channel-websocket@6.5.16": - resolution: - { - integrity: sha512-wJg2lpBjmRC2GJFzmhB9kxlh109VE58r/0WhFtLbwKvPqsvGf82xkBEl6BtBCvIQ4stzYnj/XijjA8qSi2zpOg==, - } - - "@storybook/channels@6.5.16": - resolution: - { - integrity: sha512-VylzaWQZaMozEwZPJdyJoz+0jpDa8GRyaqu9TGG6QGv+KU5POoZaGLDkRE7TzWkyyP0KQLo80K99MssZCpgSeg==, - } - - "@storybook/channels@7.5.3": - resolution: - { - integrity: sha512-dhWuV2o2lmxH0RKuzND8jxYzvSQTSmpE13P0IT/k8+I1up/rSNYOBQJT6SalakcNWXFAMXguo/8E7ApmnKKcEw==, - } - - "@storybook/channels@7.6.17": - resolution: - { - integrity: sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==, - } - - "@storybook/channels@7.6.18": - resolution: - { - integrity: sha512-ayMJ6GJot81URJySXcwZG1mLacblUVdLgAMIhU7oSW1K1v4KvQPxv3FqjNN+48g/1s+2A9UraCDqN0qzO3wznQ==, - } - - "@storybook/channels@7.6.20": - resolution: - { - integrity: sha512-4hkgPSH6bJclB2OvLnkZOGZW1WptJs09mhQ6j6qLjgBZzL/ZdD6priWSd7iXrmPiN5TzUobkG4P4Dp7FjkiO7A==, - } - - "@storybook/cli@7.6.17": - resolution: - { - integrity: sha512-1sCo+nCqyR+nKfTcEidVu8XzNoECC7Y1l+uW38/r7s2f/TdDorXaIGAVrpjbSaXSoQpx5DxYJVaKCcQuOgqwcA==, - } + '@storybook/channel-postmessage@6.5.16': + resolution: {integrity: sha512-fZZSN29dsUArWOx7e7lTdMA9+7zijVwCwbvi2Fo4fqhRLh1DsTb/VXfz1FKMCWAjNlcX7QQvV25tnxbqsD6lyw==} + + '@storybook/channel-websocket@6.5.16': + resolution: {integrity: sha512-wJg2lpBjmRC2GJFzmhB9kxlh109VE58r/0WhFtLbwKvPqsvGf82xkBEl6BtBCvIQ4stzYnj/XijjA8qSi2zpOg==} + + '@storybook/channels@6.5.16': + resolution: {integrity: sha512-VylzaWQZaMozEwZPJdyJoz+0jpDa8GRyaqu9TGG6QGv+KU5POoZaGLDkRE7TzWkyyP0KQLo80K99MssZCpgSeg==} + + '@storybook/channels@7.5.3': + resolution: {integrity: sha512-dhWuV2o2lmxH0RKuzND8jxYzvSQTSmpE13P0IT/k8+I1up/rSNYOBQJT6SalakcNWXFAMXguo/8E7ApmnKKcEw==} + + '@storybook/channels@7.6.17': + resolution: {integrity: sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==} + + '@storybook/channels@7.6.18': + resolution: {integrity: sha512-ayMJ6GJot81URJySXcwZG1mLacblUVdLgAMIhU7oSW1K1v4KvQPxv3FqjNN+48g/1s+2A9UraCDqN0qzO3wznQ==} + + '@storybook/channels@7.6.20': + resolution: {integrity: sha512-4hkgPSH6bJclB2OvLnkZOGZW1WptJs09mhQ6j6qLjgBZzL/ZdD6priWSd7iXrmPiN5TzUobkG4P4Dp7FjkiO7A==} + + '@storybook/cli@7.6.17': + resolution: {integrity: sha512-1sCo+nCqyR+nKfTcEidVu8XzNoECC7Y1l+uW38/r7s2f/TdDorXaIGAVrpjbSaXSoQpx5DxYJVaKCcQuOgqwcA==} hasBin: true - "@storybook/cli@7.6.20": - resolution: - { - integrity: sha512-ZlP+BJyqg7HlnXf7ypjG2CKMI/KVOn03jFIiClItE/jQfgR6kRFgtjRU7uajh427HHfjv9DRiur8nBzuO7vapA==, - } + '@storybook/cli@7.6.20': + resolution: {integrity: sha512-ZlP+BJyqg7HlnXf7ypjG2CKMI/KVOn03jFIiClItE/jQfgR6kRFgtjRU7uajh427HHfjv9DRiur8nBzuO7vapA==} hasBin: true - "@storybook/client-api@6.5.16": - resolution: - { - integrity: sha512-i3UwkzzUFw8I+E6fOcgB5sc4oU2fhvaKnqC1mpd9IYGJ9JN9MnGIaVl3Ko28DtFItu/QabC9JsLIJVripFLktQ==, - } + '@storybook/client-api@6.5.16': + resolution: {integrity: sha512-i3UwkzzUFw8I+E6fOcgB5sc4oU2fhvaKnqC1mpd9IYGJ9JN9MnGIaVl3Ko28DtFItu/QabC9JsLIJVripFLktQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/client-logger@6.5.16": - resolution: - { - integrity: sha512-pxcNaCj3ItDdicPTXTtmYJE3YC1SjxFrBmHcyrN+nffeNyiMuViJdOOZzzzucTUG0wcOOX8jaSyak+nnHg5H1Q==, - } - - "@storybook/client-logger@7.5.3": - resolution: - { - integrity: sha512-vUFYALypjix5FoJ5M/XUP6KmyTnQJNW1poHdW7WXUVSg+lBM6E5eAtjTm0hdxNNDH8KSrdy24nCLra5h0X0BWg==, - } - - "@storybook/client-logger@7.6.17": - resolution: - { - integrity: sha512-6WBYqixAXNAXlSaBWwgljWpAu10tPRBJrcFvx2gPUne58EeMM20Gi/iHYBz2kMCY+JLAgeIH7ZxInqwO8vDwiQ==, - } - - "@storybook/client-logger@7.6.18": - resolution: - { - integrity: sha512-/mSKa968G++M7RTW1XLM0jgNMUATxKv/vggLyQ9Oo2UpQhRaXX8dKRl7GVu2yFDRm9sDKs7rg+KSsstrEjQcSg==, - } - - "@storybook/client-logger@7.6.20": - resolution: - { - integrity: sha512-NwG0VIJQCmKrSaN5GBDFyQgTAHLNishUPLW1NrzqTDNAhfZUoef64rPQlinbopa0H4OXmlB+QxbQIb3ubeXmSQ==, - } - - "@storybook/codemod@7.6.17": - resolution: - { - integrity: sha512-JuTmf2u3C4fCnjO7o3dqRgrq3ozNYfWlrRP8xuIdvT7niMap7a396hJtSKqS10FxCgKFcMAOsRgrCalH1dWxUg==, - } - - "@storybook/codemod@7.6.20": - resolution: - { - integrity: sha512-8vmSsksO4XukNw0TmqylPmk7PxnfNfE21YsxFa7mnEBmEKQcZCQsNil4ZgWfG0IzdhTfhglAN4r++Ew0WE+PYA==, - } - - "@storybook/components@6.5.16": - resolution: - { - integrity: sha512-LzBOFJKITLtDcbW9jXl0/PaG+4xAz25PK8JxPZpIALbmOpYWOAPcO6V9C2heX6e6NgWFMUxjplkULEk9RCQMNA==, - } + '@storybook/client-logger@6.5.16': + resolution: {integrity: sha512-pxcNaCj3ItDdicPTXTtmYJE3YC1SjxFrBmHcyrN+nffeNyiMuViJdOOZzzzucTUG0wcOOX8jaSyak+nnHg5H1Q==} + + '@storybook/client-logger@7.5.3': + resolution: {integrity: sha512-vUFYALypjix5FoJ5M/XUP6KmyTnQJNW1poHdW7WXUVSg+lBM6E5eAtjTm0hdxNNDH8KSrdy24nCLra5h0X0BWg==} + + '@storybook/client-logger@7.6.17': + resolution: {integrity: sha512-6WBYqixAXNAXlSaBWwgljWpAu10tPRBJrcFvx2gPUne58EeMM20Gi/iHYBz2kMCY+JLAgeIH7ZxInqwO8vDwiQ==} + + '@storybook/client-logger@7.6.18': + resolution: {integrity: sha512-/mSKa968G++M7RTW1XLM0jgNMUATxKv/vggLyQ9Oo2UpQhRaXX8dKRl7GVu2yFDRm9sDKs7rg+KSsstrEjQcSg==} + + '@storybook/client-logger@7.6.20': + resolution: {integrity: sha512-NwG0VIJQCmKrSaN5GBDFyQgTAHLNishUPLW1NrzqTDNAhfZUoef64rPQlinbopa0H4OXmlB+QxbQIb3ubeXmSQ==} + + '@storybook/codemod@7.6.17': + resolution: {integrity: sha512-JuTmf2u3C4fCnjO7o3dqRgrq3ozNYfWlrRP8xuIdvT7niMap7a396hJtSKqS10FxCgKFcMAOsRgrCalH1dWxUg==} + + '@storybook/codemod@7.6.20': + resolution: {integrity: sha512-8vmSsksO4XukNw0TmqylPmk7PxnfNfE21YsxFa7mnEBmEKQcZCQsNil4ZgWfG0IzdhTfhglAN4r++Ew0WE+PYA==} + + '@storybook/components@6.5.16': + resolution: {integrity: sha512-LzBOFJKITLtDcbW9jXl0/PaG+4xAz25PK8JxPZpIALbmOpYWOAPcO6V9C2heX6e6NgWFMUxjplkULEk9RCQMNA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/components@7.6.17": - resolution: - { - integrity: sha512-lbh7GynMidA+CZcJnstVku6Nhs+YkqjYaZ+mKPugvlVhGVWv0DaaeQFVuZ8cJtUGJ/5FFU4Y+n+gylYUHkGBMA==, - } + '@storybook/components@7.6.17': + resolution: {integrity: sha512-lbh7GynMidA+CZcJnstVku6Nhs+YkqjYaZ+mKPugvlVhGVWv0DaaeQFVuZ8cJtUGJ/5FFU4Y+n+gylYUHkGBMA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/components@7.6.20": - resolution: - { - integrity: sha512-0d8u4m558R+W5V+rseF/+e9JnMciADLXTpsILrG+TBhwECk0MctIWW18bkqkujdCm8kDZr5U2iM/5kS1Noy7Ug==, - } + '@storybook/components@7.6.20': + resolution: {integrity: sha512-0d8u4m558R+W5V+rseF/+e9JnMciADLXTpsILrG+TBhwECk0MctIWW18bkqkujdCm8kDZr5U2iM/5kS1Noy7Ug==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/core-client@6.5.16": - resolution: - { - integrity: sha512-14IRaDrVtKrQ+gNWC0wPwkCNfkZOKghYV/swCUnQX3rP99defsZK8Hc7xHIYoAiOP5+sc3sweRAxgmFiJeQ1Ig==, - } + '@storybook/core-client@6.5.16': + resolution: {integrity: sha512-14IRaDrVtKrQ+gNWC0wPwkCNfkZOKghYV/swCUnQX3rP99defsZK8Hc7xHIYoAiOP5+sc3sweRAxgmFiJeQ1Ig==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: "*" - webpack: "*" + typescript: '*' + webpack: '*' peerDependenciesMeta: typescript: optional: true - "@storybook/core-client@7.6.17": - resolution: - { - integrity: sha512-LuDbADK+DPNAOOCXOlvY09hdGVueXlDetsdOJ/DgYnSa9QSWv9Uv+F8QcEgR3QckZJbPlztKJIVLgP2n/Xkijw==, - } - - "@storybook/core-client@7.6.20": - resolution: - { - integrity: sha512-upQuQQinLmlOPKcT8yqXNtwIucZ4E4qegYZXH5HXRWoLAL6GQtW7sUVSIuFogdki8OXRncr/dz8OA+5yQyYS4w==, - } - - "@storybook/core-common@7.6.17": - resolution: - { - integrity: sha512-me2TP3Q9/qzqCLoDHUSsUF+VS1MHxfHbTVF6vAz0D/COTxzsxLpu9TxTbzJoBCxse6XRb6wWI1RgF1mIcjic7g==, - } - - "@storybook/core-common@7.6.20": - resolution: - { - integrity: sha512-8H1zPWPjcmeD4HbDm4FDD0WLsfAKGVr566IZ4hG+h3iWVW57II9JW9MLBtiR2LPSd8u7o0kw64lwRGmtCO1qAw==, - } - - "@storybook/core-events@6.5.16": - resolution: - { - integrity: sha512-qMZQwmvzpH5F2uwNUllTPg6eZXr2OaYZQRRN8VZJiuorZzDNdAFmiVWMWdkThwmyLEJuQKXxqCL8lMj/7PPM+g==, - } - - "@storybook/core-events@7.5.3": - resolution: - { - integrity: sha512-DFOpyQ22JD5C1oeOFzL8wlqSWZzrqgDfDbUGP8xdO4wJu+FVTxnnWN6ZYLdTPB1u27DOhd7TzjQMfLDHLu7kbQ==, - } - - "@storybook/core-events@7.6.17": - resolution: - { - integrity: sha512-AriWMCm/k1cxlv10f+jZ1wavThTRpLaN3kY019kHWbYT9XgaSuLU67G7GPr3cGnJ6HuA6uhbzu8qtqVCd6OfXA==, - } - - "@storybook/core-events@7.6.18": - resolution: - { - integrity: sha512-K4jrHedFRfokvkIfKfNtQTcguPzeWF3oiuyXQR4gv4bnMCndCoiSRKfCE5zesgGmfml/Krt2zb4nNz/UPLbDeA==, - } - - "@storybook/core-events@7.6.20": - resolution: - { - integrity: sha512-tlVDuVbDiNkvPDFAu+0ou3xBBYbx9zUURQz4G9fAq0ScgBOs/bpzcRrFb4mLpemUViBAd47tfZKdH4MAX45KVQ==, - } - - "@storybook/core-server@7.6.17": - resolution: - { - integrity: sha512-KWGhTTaL1Q14FolcoKKZgytlPJUbH6sbJ1Ptj/84EYWFewcnEgVs0Zlnh1VStRZg+Rd1WC1V4yVd/bbDzxrvQA==, - } - - "@storybook/core-server@7.6.20": - resolution: - { - integrity: sha512-qC5BdbqqwMLTdCwMKZ1Hbc3+3AaxHYWLiJaXL9e8s8nJw89xV8c8l30QpbJOGvcDmsgY6UTtXYaJ96OsTr7MrA==, - } - - "@storybook/core-webpack@7.6.17": - resolution: - { - integrity: sha512-PyGrFhRM8sTONGwwLWLqBQ1HO+LBnVZ+5TOQO7ejQfdV2FWyNOzjBXm2e5jL/C6XlqiEhmL5pyHEyDBaQJQ3KA==, - } - - "@storybook/core-webpack@7.6.20": - resolution: - { - integrity: sha512-pGYhKQhMYQ76HPL336L5n7eiJGk1sjWFkA+xRRRmQ9q6VUlqtEPuRHjKBQwrrTb1nA33BQX58Be06OtlbsFkjg==, - } - - "@storybook/csf-plugin@7.6.17": - resolution: - { - integrity: sha512-xTHv9BUh3bkDVCvcbmdfVF0/e96BdrEgqPJ3G3RmKbSzWLOkQ2U9yiPfHzT0KJWPhVwj12fjfZp0zunu+pcS6Q==, - } - - "@storybook/csf-plugin@7.6.20": - resolution: - { - integrity: sha512-dzBzq0dN+8WLDp6NxYS4G7BCe8+vDeDRBRjHmM0xb0uJ6xgQViL8SDplYVSGnk3bXE/1WmtvyRzQyTffBnaj9Q==, - } - - "@storybook/csf-tools@7.6.17": - resolution: - { - integrity: sha512-dAQtam0EBPeTJYcQPLxXgz4L9JFqD+HWbLFG9CmNIhMMjticrB0mpk1EFIS6vPXk/VsVWpBgMLD7dZlD6YMKcQ==, - } - - "@storybook/csf-tools@7.6.20": - resolution: - { - integrity: sha512-rwcwzCsAYh/m/WYcxBiEtLpIW5OH1ingxNdF/rK9mtGWhJxXRDV8acPkFrF8rtFWIVKoOCXu5USJYmc3f2gdYQ==, - } - - "@storybook/csf@0.0.1": - resolution: - { - integrity: sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==, - } - - "@storybook/csf@0.0.2--canary.4566f4d.1": - resolution: - { - integrity: sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==, - } - - "@storybook/csf@0.1.3": - resolution: - { - integrity: sha512-IPZvXXo4b3G+gpmgBSBqVM81jbp2ePOKsvhgJdhyZJtkYQCII7rg9KKLQhvBQM5sLaF1eU6r0iuwmyynC9d9SA==, - } - - "@storybook/docs-mdx@0.1.0": - resolution: - { - integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==, - } - - "@storybook/docs-tools@7.6.17": - resolution: - { - integrity: sha512-bYrLoj06adqklyLkEwD32C0Ww6t+9ZVvrJHiVT42bIhTRpFiFPAetl1a9KPHtFLnfduh4n2IxIr1jv32ThPDTA==, - } - - "@storybook/docs-tools@7.6.20": - resolution: - { - integrity: sha512-Bw2CcCKQ5xGLQgtexQsI1EGT6y5epoFzOINi0FSTGJ9Wm738nRp5LH3dLk1GZLlywIXcYwOEThb2pM+pZeRQxQ==, - } - - "@storybook/global@5.0.0": - resolution: - { - integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==, - } - - "@storybook/manager-api@7.5.3": - resolution: - { - integrity: sha512-d8mVLr/5BEG4bAS2ZeqYTy/aX4jPEpZHdcLaWoB4mAM+PAL9wcWsirUyApKtDVYLITJf/hd8bb2Dm2ok6E45gA==, - } + '@storybook/core-client@7.6.17': + resolution: {integrity: sha512-LuDbADK+DPNAOOCXOlvY09hdGVueXlDetsdOJ/DgYnSa9QSWv9Uv+F8QcEgR3QckZJbPlztKJIVLgP2n/Xkijw==} + + '@storybook/core-client@7.6.20': + resolution: {integrity: sha512-upQuQQinLmlOPKcT8yqXNtwIucZ4E4qegYZXH5HXRWoLAL6GQtW7sUVSIuFogdki8OXRncr/dz8OA+5yQyYS4w==} + + '@storybook/core-common@7.6.17': + resolution: {integrity: sha512-me2TP3Q9/qzqCLoDHUSsUF+VS1MHxfHbTVF6vAz0D/COTxzsxLpu9TxTbzJoBCxse6XRb6wWI1RgF1mIcjic7g==} + + '@storybook/core-common@7.6.20': + resolution: {integrity: sha512-8H1zPWPjcmeD4HbDm4FDD0WLsfAKGVr566IZ4hG+h3iWVW57II9JW9MLBtiR2LPSd8u7o0kw64lwRGmtCO1qAw==} + + '@storybook/core-events@6.5.16': + resolution: {integrity: sha512-qMZQwmvzpH5F2uwNUllTPg6eZXr2OaYZQRRN8VZJiuorZzDNdAFmiVWMWdkThwmyLEJuQKXxqCL8lMj/7PPM+g==} + + '@storybook/core-events@7.5.3': + resolution: {integrity: sha512-DFOpyQ22JD5C1oeOFzL8wlqSWZzrqgDfDbUGP8xdO4wJu+FVTxnnWN6ZYLdTPB1u27DOhd7TzjQMfLDHLu7kbQ==} + + '@storybook/core-events@7.6.17': + resolution: {integrity: sha512-AriWMCm/k1cxlv10f+jZ1wavThTRpLaN3kY019kHWbYT9XgaSuLU67G7GPr3cGnJ6HuA6uhbzu8qtqVCd6OfXA==} + + '@storybook/core-events@7.6.18': + resolution: {integrity: sha512-K4jrHedFRfokvkIfKfNtQTcguPzeWF3oiuyXQR4gv4bnMCndCoiSRKfCE5zesgGmfml/Krt2zb4nNz/UPLbDeA==} + + '@storybook/core-events@7.6.20': + resolution: {integrity: sha512-tlVDuVbDiNkvPDFAu+0ou3xBBYbx9zUURQz4G9fAq0ScgBOs/bpzcRrFb4mLpemUViBAd47tfZKdH4MAX45KVQ==} + + '@storybook/core-server@7.6.17': + resolution: {integrity: sha512-KWGhTTaL1Q14FolcoKKZgytlPJUbH6sbJ1Ptj/84EYWFewcnEgVs0Zlnh1VStRZg+Rd1WC1V4yVd/bbDzxrvQA==} + + '@storybook/core-server@7.6.20': + resolution: {integrity: sha512-qC5BdbqqwMLTdCwMKZ1Hbc3+3AaxHYWLiJaXL9e8s8nJw89xV8c8l30QpbJOGvcDmsgY6UTtXYaJ96OsTr7MrA==} + + '@storybook/core-webpack@7.6.17': + resolution: {integrity: sha512-PyGrFhRM8sTONGwwLWLqBQ1HO+LBnVZ+5TOQO7ejQfdV2FWyNOzjBXm2e5jL/C6XlqiEhmL5pyHEyDBaQJQ3KA==} + + '@storybook/core-webpack@7.6.20': + resolution: {integrity: sha512-pGYhKQhMYQ76HPL336L5n7eiJGk1sjWFkA+xRRRmQ9q6VUlqtEPuRHjKBQwrrTb1nA33BQX58Be06OtlbsFkjg==} + + '@storybook/csf-plugin@7.6.17': + resolution: {integrity: sha512-xTHv9BUh3bkDVCvcbmdfVF0/e96BdrEgqPJ3G3RmKbSzWLOkQ2U9yiPfHzT0KJWPhVwj12fjfZp0zunu+pcS6Q==} + + '@storybook/csf-plugin@7.6.20': + resolution: {integrity: sha512-dzBzq0dN+8WLDp6NxYS4G7BCe8+vDeDRBRjHmM0xb0uJ6xgQViL8SDplYVSGnk3bXE/1WmtvyRzQyTffBnaj9Q==} + + '@storybook/csf-tools@7.6.17': + resolution: {integrity: sha512-dAQtam0EBPeTJYcQPLxXgz4L9JFqD+HWbLFG9CmNIhMMjticrB0mpk1EFIS6vPXk/VsVWpBgMLD7dZlD6YMKcQ==} + + '@storybook/csf-tools@7.6.20': + resolution: {integrity: sha512-rwcwzCsAYh/m/WYcxBiEtLpIW5OH1ingxNdF/rK9mtGWhJxXRDV8acPkFrF8rtFWIVKoOCXu5USJYmc3f2gdYQ==} + + '@storybook/csf@0.0.1': + resolution: {integrity: sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==} + + '@storybook/csf@0.0.2--canary.4566f4d.1': + resolution: {integrity: sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==} + + '@storybook/csf@0.1.3': + resolution: {integrity: sha512-IPZvXXo4b3G+gpmgBSBqVM81jbp2ePOKsvhgJdhyZJtkYQCII7rg9KKLQhvBQM5sLaF1eU6r0iuwmyynC9d9SA==} + + '@storybook/docs-mdx@0.1.0': + resolution: {integrity: sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==} + + '@storybook/docs-tools@7.6.17': + resolution: {integrity: sha512-bYrLoj06adqklyLkEwD32C0Ww6t+9ZVvrJHiVT42bIhTRpFiFPAetl1a9KPHtFLnfduh4n2IxIr1jv32ThPDTA==} + + '@storybook/docs-tools@7.6.20': + resolution: {integrity: sha512-Bw2CcCKQ5xGLQgtexQsI1EGT6y5epoFzOINi0FSTGJ9Wm738nRp5LH3dLk1GZLlywIXcYwOEThb2pM+pZeRQxQ==} + + '@storybook/global@5.0.0': + resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} + + '@storybook/manager-api@7.5.3': + resolution: {integrity: sha512-d8mVLr/5BEG4bAS2ZeqYTy/aX4jPEpZHdcLaWoB4mAM+PAL9wcWsirUyApKtDVYLITJf/hd8bb2Dm2ok6E45gA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/manager-api@7.6.17": - resolution: - { - integrity: sha512-IJIV1Yc6yw1dhCY4tReHCfBnUKDqEBnMyHp3mbXpsaHxnxJZrXO45WjRAZIKlQKhl/Ge1CrnznmHRCmYgqmrWg==, - } - - "@storybook/manager-api@7.6.18": - resolution: - { - integrity: sha512-4c2japUMjnHiel38wQoNWh5RVac6ATMcWxvzPhOKx3I19gbSoUF1CcDg+1piRMWuSyzUBIBlIrBB3s4/02gnnA==, - } - - "@storybook/manager-api@7.6.20": - resolution: - { - integrity: sha512-gOB3m8hO3gBs9cBoN57T7jU0wNKDh+hi06gLcyd2awARQlAlywnLnr3s1WH5knih6Aq+OpvGBRVKkGLOkaouCQ==, - } - - "@storybook/manager@7.6.17": - resolution: - { - integrity: sha512-A1LDDIqMpwRzq/dqkbbiza0QI04o4ZHCl2a3UMDZUV/+QLc2nsr2DAaLk4CVL4/cIc5zGqmIcaOTvprx2YKVBw==, - } - - "@storybook/manager@7.6.20": - resolution: - { - integrity: sha512-0Cf6WN0t7yEG2DR29tN5j+i7H/TH5EfPppg9h9/KiQSoFHk+6KLoy2p5do94acFU+Ro4+zzxvdCGbcYGKuArpg==, - } - - "@storybook/mdx2-csf@1.1.0": - resolution: - { - integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==, - } - - "@storybook/node-logger@7.6.17": - resolution: - { - integrity: sha512-w59MQuXhhUNrUVmVkXhMwIg2nvFWjdDczLTwYLorhfsE36CWeUOY5QCZWQy0Qf/h+jz8Uo7Evy64qn18v9C4wA==, - } - - "@storybook/node-logger@7.6.20": - resolution: - { - integrity: sha512-l2i4qF1bscJkOplNffcRTsgQWYR7J51ewmizj5YrTM8BK6rslWT1RntgVJWB1RgPqvx6VsCz1gyP3yW1oKxvYw==, - } - - "@storybook/postinstall@7.6.17": - resolution: - { - integrity: sha512-WaWqB8o9vUc9aaVls+povQSVirf1Xd1LZcVhUKfAocAF3mzYUsnJsVqvnbjRj/F96UFVihOyDt9Zjl/9OvrCvQ==, - } - - "@storybook/postinstall@7.6.20": - resolution: - { - integrity: sha512-AN4WPeNma2xC2/K/wP3I/GMbBUyeSGD3+86ZFFJFO1QmE/Zea6E+1aVlTd1iKHQUcNkZ9bZTrqkhPGVYx10pIw==, - } - - "@storybook/preset-react-webpack@7.6.17": - resolution: - { - integrity: sha512-gn/LvIbll9loOkzwbFlxzOZGmJ6t1vF2/gfi+p/N/AifDYe8+LVM1QV4KRVKt6UEJwsQd79lKf7vPH92AQaKKQ==, - } - engines: { node: ">=16.0.0" } - peerDependencies: - "@babel/core": ^7.22.0 + '@storybook/manager-api@7.6.17': + resolution: {integrity: sha512-IJIV1Yc6yw1dhCY4tReHCfBnUKDqEBnMyHp3mbXpsaHxnxJZrXO45WjRAZIKlQKhl/Ge1CrnznmHRCmYgqmrWg==} + + '@storybook/manager-api@7.6.18': + resolution: {integrity: sha512-4c2japUMjnHiel38wQoNWh5RVac6ATMcWxvzPhOKx3I19gbSoUF1CcDg+1piRMWuSyzUBIBlIrBB3s4/02gnnA==} + + '@storybook/manager-api@7.6.20': + resolution: {integrity: sha512-gOB3m8hO3gBs9cBoN57T7jU0wNKDh+hi06gLcyd2awARQlAlywnLnr3s1WH5knih6Aq+OpvGBRVKkGLOkaouCQ==} + + '@storybook/manager@7.6.17': + resolution: {integrity: sha512-A1LDDIqMpwRzq/dqkbbiza0QI04o4ZHCl2a3UMDZUV/+QLc2nsr2DAaLk4CVL4/cIc5zGqmIcaOTvprx2YKVBw==} + + '@storybook/manager@7.6.20': + resolution: {integrity: sha512-0Cf6WN0t7yEG2DR29tN5j+i7H/TH5EfPppg9h9/KiQSoFHk+6KLoy2p5do94acFU+Ro4+zzxvdCGbcYGKuArpg==} + + '@storybook/mdx2-csf@1.1.0': + resolution: {integrity: sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==} + + '@storybook/node-logger@7.6.17': + resolution: {integrity: sha512-w59MQuXhhUNrUVmVkXhMwIg2nvFWjdDczLTwYLorhfsE36CWeUOY5QCZWQy0Qf/h+jz8Uo7Evy64qn18v9C4wA==} + + '@storybook/node-logger@7.6.20': + resolution: {integrity: sha512-l2i4qF1bscJkOplNffcRTsgQWYR7J51ewmizj5YrTM8BK6rslWT1RntgVJWB1RgPqvx6VsCz1gyP3yW1oKxvYw==} + + '@storybook/postinstall@7.6.17': + resolution: {integrity: sha512-WaWqB8o9vUc9aaVls+povQSVirf1Xd1LZcVhUKfAocAF3mzYUsnJsVqvnbjRj/F96UFVihOyDt9Zjl/9OvrCvQ==} + + '@storybook/postinstall@7.6.20': + resolution: {integrity: sha512-AN4WPeNma2xC2/K/wP3I/GMbBUyeSGD3+86ZFFJFO1QmE/Zea6E+1aVlTd1iKHQUcNkZ9bZTrqkhPGVYx10pIw==} + + '@storybook/preset-react-webpack@7.6.17': + resolution: {integrity: sha512-gn/LvIbll9loOkzwbFlxzOZGmJ6t1vF2/gfi+p/N/AifDYe8+LVM1QV4KRVKt6UEJwsQd79lKf7vPH92AQaKKQ==} + engines: {node: '>=16.0.0'} + peerDependencies: + '@babel/core': ^7.22.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true typescript: optional: true - "@storybook/preset-react-webpack@7.6.20": - resolution: - { - integrity: sha512-z5/NF+HI9zN/ONocNyxQwewaG5G/1ChCeWfi5m5E1mwKQxxJbFUgE8oiAFhe90A1R7lAEsGFKd8WxdefY2JvEg==, - } - engines: { node: ">=16.0.0" } + '@storybook/preset-react-webpack@7.6.20': + resolution: {integrity: sha512-z5/NF+HI9zN/ONocNyxQwewaG5G/1ChCeWfi5m5E1mwKQxxJbFUgE8oiAFhe90A1R7lAEsGFKd8WxdefY2JvEg==} + engines: {node: '>=16.0.0'} peerDependencies: - "@babel/core": ^7.22.0 + '@babel/core': ^7.22.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true typescript: optional: true - "@storybook/preview-api@7.6.17": - resolution: - { - integrity: sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==, - } + '@storybook/preview-api@7.6.17': + resolution: {integrity: sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==} - "@storybook/preview-api@7.6.20": - resolution: - { - integrity: sha512-3ic2m9LDZEPwZk02wIhNc3n3rNvbi7VDKn52hDXfAxnL5EYm7yDICAkaWcVaTfblru2zn0EDJt7ROpthscTW5w==, - } + '@storybook/preview-api@7.6.20': + resolution: {integrity: sha512-3ic2m9LDZEPwZk02wIhNc3n3rNvbi7VDKn52hDXfAxnL5EYm7yDICAkaWcVaTfblru2zn0EDJt7ROpthscTW5w==} - "@storybook/preview-web@6.5.16": - resolution: - { - integrity: sha512-IJnvfe2sKCfk7apN9Fu9U8qibbarrPX5JB55ZzK1amSHVmSDuYk5MIMc/U3NnSQNnvd1DO5v/zMcGgj563hrtg==, - } + '@storybook/preview-web@6.5.16': + resolution: {integrity: sha512-IJnvfe2sKCfk7apN9Fu9U8qibbarrPX5JB55ZzK1amSHVmSDuYk5MIMc/U3NnSQNnvd1DO5v/zMcGgj563hrtg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/preview@7.6.17": - resolution: - { - integrity: sha512-LvkMYK/y6alGjwRVNDIKL1lFlbyZ0H0c8iAbcQkiMoaFiujMQyVswMDKlWcj42Upfr/B1igydiruomc+eUt0mw==, - } - - "@storybook/preview@7.6.20": - resolution: - { - integrity: sha512-cxYlZ5uKbCYMHoFpgleZqqGWEnqHrk5m5fT8bYSsDsdQ+X5wPcwI/V+v8dxYAdQcMphZVIlTjo6Dno9WG8qmVA==, - } - - "@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0": - resolution: - { - integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==, - } - peerDependencies: - typescript: ">= 4.x" - webpack: ">= 4" - - "@storybook/react-dom-shim@7.6.17": - resolution: - { - integrity: sha512-32Sa/G+WnvaPiQ1Wvjjw5UM9rr2c4GDohwCcWVv3/LJuiFPqNS6zglAtmnsrlIBnUwRBMLMh/ekCTdqMiUmfDw==, - } + '@storybook/preview@7.6.17': + resolution: {integrity: sha512-LvkMYK/y6alGjwRVNDIKL1lFlbyZ0H0c8iAbcQkiMoaFiujMQyVswMDKlWcj42Upfr/B1igydiruomc+eUt0mw==} + + '@storybook/preview@7.6.20': + resolution: {integrity: sha512-cxYlZ5uKbCYMHoFpgleZqqGWEnqHrk5m5fT8bYSsDsdQ+X5wPcwI/V+v8dxYAdQcMphZVIlTjo6Dno9WG8qmVA==} + + '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0': + resolution: {integrity: sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==} + peerDependencies: + typescript: '>= 4.x' + webpack: '>= 4' + + '@storybook/react-dom-shim@7.6.17': + resolution: {integrity: sha512-32Sa/G+WnvaPiQ1Wvjjw5UM9rr2c4GDohwCcWVv3/LJuiFPqNS6zglAtmnsrlIBnUwRBMLMh/ekCTdqMiUmfDw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/react-dom-shim@7.6.20": - resolution: - { - integrity: sha512-SRvPDr9VWcS24ByQOVmbfZ655y5LvjXRlsF1I6Pr9YZybLfYbu3L5IicfEHT4A8lMdghzgbPFVQaJez46DTrkg==, - } + '@storybook/react-dom-shim@7.6.20': + resolution: {integrity: sha512-SRvPDr9VWcS24ByQOVmbfZ655y5LvjXRlsF1I6Pr9YZybLfYbu3L5IicfEHT4A8lMdghzgbPFVQaJez46DTrkg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/react-native-theming@6.5.7": - resolution: - { - integrity: sha512-wvNQvpmSFwnuH4VSLKlS4z/YFiRf+CuCMpxnRWrnrbXtah8HtsWzP2sYNrtGadhneA/jS0zkHXPCsDx/lIjw9A==, - } - peerDependencies: - react: "*" - react-native: ">=0.57.0" - - "@storybook/react-native@6.5.7": - resolution: - { - integrity: sha512-6uB/Yc2gkOGz4Amf2hikjy4L7HnWIVfOqoADE4PpIMZzRCnm6+gTaUXsuTOHr3gZ5NFH1bN1YXjpSly2d4I0Kw==, - } - engines: { node: ">=8.0.0" } + '@storybook/react-native-theming@6.5.7': + resolution: {integrity: sha512-wvNQvpmSFwnuH4VSLKlS4z/YFiRf+CuCMpxnRWrnrbXtah8HtsWzP2sYNrtGadhneA/jS0zkHXPCsDx/lIjw9A==} + peerDependencies: + react: '*' + react-native: '>=0.57.0' + + '@storybook/react-native@6.5.7': + resolution: {integrity: sha512-6uB/Yc2gkOGz4Amf2hikjy4L7HnWIVfOqoADE4PpIMZzRCnm6+gTaUXsuTOHr3gZ5NFH1bN1YXjpSly2d4I0Kw==} + engines: {node: '>=8.0.0'} hasBin: true peerDependencies: - "@react-native-async-storage/async-storage": ">=1" - react: "*" - react-native: ">=0.57.0" - react-native-safe-area-context: "*" + '@react-native-async-storage/async-storage': '>=1' + react: '*' + react-native: '>=0.57.0' + react-native-safe-area-context: '*' - "@storybook/react-webpack5@7.6.17": - resolution: - { - integrity: sha512-qGc2JxaSmvPXV7ndxA/8qPtPLK7lAwejL/QdrzLXhxEmVdZLMew640FBYgOV/zWnehV3BnivThln/8PsQyst/g==, - } - engines: { node: ">=16.0.0" } + '@storybook/react-webpack5@7.6.17': + resolution: {integrity: sha512-qGc2JxaSmvPXV7ndxA/8qPtPLK7lAwejL/QdrzLXhxEmVdZLMew640FBYgOV/zWnehV3BnivThln/8PsQyst/g==} + engines: {node: '>=16.0.0'} peerDependencies: - "@babel/core": ^7.22.0 + '@babel/core': ^7.22.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true typescript: optional: true - "@storybook/react-webpack5@7.6.20": - resolution: - { - integrity: sha512-xaLtadKczfUdpyPMk/e49qGnRpjMDtTwFq4RqkS7q+Z+EO72kTCUPGtK3jJXyv70pp/qbzM5OfjFLjXjMezvYw==, - } - engines: { node: ">=16.0.0" } + '@storybook/react-webpack5@7.6.20': + resolution: {integrity: sha512-xaLtadKczfUdpyPMk/e49qGnRpjMDtTwFq4RqkS7q+Z+EO72kTCUPGtK3jJXyv70pp/qbzM5OfjFLjXjMezvYw==} + engines: {node: '>=16.0.0'} peerDependencies: - "@babel/core": ^7.22.0 + '@babel/core': ^7.22.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true typescript: optional: true - "@storybook/react@7.6.17": - resolution: - { - integrity: sha512-lVqzQSU03rRJWYW+gK2gq6mSo3/qtnVICY8B8oP7gc36jVu4ksDIu45bTfukM618ODkUZy0vZe6T4engK3azjA==, - } - engines: { node: ">=16.0.0" } + '@storybook/react@7.6.17': + resolution: {integrity: sha512-lVqzQSU03rRJWYW+gK2gq6mSo3/qtnVICY8B8oP7gc36jVu4ksDIu45bTfukM618ODkUZy0vZe6T4engK3azjA==} + engines: {node: '>=16.0.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@storybook/react@7.6.20": - resolution: - { - integrity: sha512-i5tKNgUbTNwlqBWGwPveDhh9ktlS0wGtd97A1ZgKZc3vckLizunlAFc7PRC1O/CMq5PTyxbuUb4RvRD2jWKwDA==, - } - engines: { node: ">=16.0.0" } + '@storybook/react@7.6.20': + resolution: {integrity: sha512-i5tKNgUbTNwlqBWGwPveDhh9ktlS0wGtd97A1ZgKZc3vckLizunlAFc7PRC1O/CMq5PTyxbuUb4RvRD2jWKwDA==} + engines: {node: '>=16.0.0'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@storybook/router@6.5.16": - resolution: - { - integrity: sha512-ZgeP8a5YV/iuKbv31V8DjPxlV4AzorRiR8OuSt/KqaiYXNXlOoQDz/qMmiNcrshrfLpmkzoq7fSo4T8lWo2UwQ==, - } + '@storybook/router@6.5.16': + resolution: {integrity: sha512-ZgeP8a5YV/iuKbv31V8DjPxlV4AzorRiR8OuSt/KqaiYXNXlOoQDz/qMmiNcrshrfLpmkzoq7fSo4T8lWo2UwQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/router@7.5.3": - resolution: - { - integrity: sha512-/iNYCFore7R5n6eFHbBYoB0P2/sybTVpA+uXTNUd3UEt7Ro6CEslTaFTEiH2RVQwOkceBp/NpyWon74xZuXhMg==, - } + '@storybook/router@7.5.3': + resolution: {integrity: sha512-/iNYCFore7R5n6eFHbBYoB0P2/sybTVpA+uXTNUd3UEt7Ro6CEslTaFTEiH2RVQwOkceBp/NpyWon74xZuXhMg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/router@7.6.17": - resolution: - { - integrity: sha512-GnyC0j6Wi5hT4qRhSyT8NPtJfGmf82uZw97LQRWeyYu5gWEshUdM7aj40XlNiScd5cZDp0owO1idduVF2k2l2A==, - } - - "@storybook/router@7.6.18": - resolution: - { - integrity: sha512-Kw6nAPWRAFE9DM//pnyjL7Xnxt+yQIONdERDnPrdEmHG5mErXGtO18aFMsb/7GiAD50J/i5ObTp7FJsWffAnbg==, - } - - "@storybook/router@7.6.20": - resolution: - { - integrity: sha512-mCzsWe6GrH47Xb1++foL98Zdek7uM5GhaSlrI7blWVohGa0qIUYbfJngqR4ZsrXmJeeEvqowobh+jlxg3IJh+w==, - } - - "@storybook/semver@7.3.2": - resolution: - { - integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==, - } - engines: { node: ">=10" } + '@storybook/router@7.6.17': + resolution: {integrity: sha512-GnyC0j6Wi5hT4qRhSyT8NPtJfGmf82uZw97LQRWeyYu5gWEshUdM7aj40XlNiScd5cZDp0owO1idduVF2k2l2A==} + + '@storybook/router@7.6.18': + resolution: {integrity: sha512-Kw6nAPWRAFE9DM//pnyjL7Xnxt+yQIONdERDnPrdEmHG5mErXGtO18aFMsb/7GiAD50J/i5ObTp7FJsWffAnbg==} + + '@storybook/router@7.6.20': + resolution: {integrity: sha512-mCzsWe6GrH47Xb1++foL98Zdek7uM5GhaSlrI7blWVohGa0qIUYbfJngqR4ZsrXmJeeEvqowobh+jlxg3IJh+w==} + + '@storybook/semver@7.3.2': + resolution: {integrity: sha512-SWeszlsiPsMI0Ps0jVNtH64cI5c0UF3f7KgjVKJoNP30crQ6wUSddY2hsdeczZXEKVJGEn50Q60flcGsQGIcrg==} + engines: {node: '>=10'} hasBin: true - "@storybook/store@6.5.16": - resolution: - { - integrity: sha512-g+bVL5hmMq/9cM51K04e37OviUPHT0rHHrRm5wj/hrf18Kd9120b3sxdQ5Dc+HZ292yuME0n+cyrQPTYx9Epmw==, - } + '@storybook/store@6.5.16': + resolution: {integrity: sha512-g+bVL5hmMq/9cM51K04e37OviUPHT0rHHrRm5wj/hrf18Kd9120b3sxdQ5Dc+HZ292yuME0n+cyrQPTYx9Epmw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/telemetry@7.6.17": - resolution: - { - integrity: sha512-WOcOAmmengYnGInH98Px44F47DSpLyk20BM+Z/IIQDzfttGOLlxNqBBG1XTEhNRn+AYuk4aZ2JEed2lCjVIxcA==, - } + '@storybook/telemetry@7.6.17': + resolution: {integrity: sha512-WOcOAmmengYnGInH98Px44F47DSpLyk20BM+Z/IIQDzfttGOLlxNqBBG1XTEhNRn+AYuk4aZ2JEed2lCjVIxcA==} - "@storybook/telemetry@7.6.20": - resolution: - { - integrity: sha512-dmAOCWmOscYN6aMbhCMmszQjoycg7tUPRVy2kTaWg6qX10wtMrvEtBV29W4eMvqdsoRj5kcvoNbzRdYcWBUOHQ==, - } + '@storybook/telemetry@7.6.20': + resolution: {integrity: sha512-dmAOCWmOscYN6aMbhCMmszQjoycg7tUPRVy2kTaWg6qX10wtMrvEtBV29W4eMvqdsoRj5kcvoNbzRdYcWBUOHQ==} - "@storybook/theming@6.5.16": - resolution: - { - integrity: sha512-hNLctkjaYLRdk1+xYTkC1mg4dYz2wSv6SqbLpcKMbkPHTE0ElhddGPHQqB362md/w9emYXNkt1LSMD8Xk9JzVQ==, - } + '@storybook/theming@6.5.16': + resolution: {integrity: sha512-hNLctkjaYLRdk1+xYTkC1mg4dYz2wSv6SqbLpcKMbkPHTE0ElhddGPHQqB362md/w9emYXNkt1LSMD8Xk9JzVQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/theming@7.5.3": - resolution: - { - integrity: sha512-Cjmthe1MAk0z4RKCZ7m72gAD8YD0zTAH97z5ryM1Qv84QXjiCQ143fGOmYz1xEQdNFpOThPcwW6FEccLHTkVcg==, - } + '@storybook/theming@7.5.3': + resolution: {integrity: sha512-Cjmthe1MAk0z4RKCZ7m72gAD8YD0zTAH97z5ryM1Qv84QXjiCQ143fGOmYz1xEQdNFpOThPcwW6FEccLHTkVcg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/theming@7.6.17": - resolution: - { - integrity: sha512-ZbaBt3KAbmBtfjNqgMY7wPMBshhSJlhodyMNQypv+95xLD/R+Az6aBYbpVAOygLaUQaQk4ar7H/Ww6lFIoiFbA==, - } + '@storybook/theming@7.6.17': + resolution: {integrity: sha512-ZbaBt3KAbmBtfjNqgMY7wPMBshhSJlhodyMNQypv+95xLD/R+Az6aBYbpVAOygLaUQaQk4ar7H/Ww6lFIoiFbA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/theming@7.6.18": - resolution: - { - integrity: sha512-5nwqV/rAVzS8wZ6DbsX5/ugDLV189hn2m3K9JlJmhVW9b2mSDYW5i1cTjpoChh1t9gMZl82VPnEhgPRMx5bXgw==, - } + '@storybook/theming@7.6.18': + resolution: {integrity: sha512-5nwqV/rAVzS8wZ6DbsX5/ugDLV189hn2m3K9JlJmhVW9b2mSDYW5i1cTjpoChh1t9gMZl82VPnEhgPRMx5bXgw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/theming@7.6.20": - resolution: - { - integrity: sha512-iT1pXHkSkd35JsCte6Qbanmprx5flkqtSHC6Gi6Umqoxlg9IjiLPmpHbaIXzoC06DSW93hPj5Zbi1lPlTvRC7Q==, - } + '@storybook/theming@7.6.20': + resolution: {integrity: sha512-iT1pXHkSkd35JsCte6Qbanmprx5flkqtSHC6Gi6Umqoxlg9IjiLPmpHbaIXzoC06DSW93hPj5Zbi1lPlTvRC7Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@storybook/types@7.5.3": - resolution: - { - integrity: sha512-iu5W0Kdd6nysN5CPkY4GRl+0BpxRTdSfBIJak7mb6xCIHSB5t1tw4BOuqMQ5EgpikRY3MWJ4gY647QkWBX3MNQ==, - } - - "@storybook/types@7.6.17": - resolution: - { - integrity: sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==, - } - - "@storybook/types@7.6.18": - resolution: - { - integrity: sha512-W7/8kUtMhEopZhwXFMOKlXwQCrz0PBJ5wQwmJNZ4i0YPTVfFzb+/6pgpkzUNtbXiTp6dfxi3ERoAF9wz9Zyt7w==, - } - - "@storybook/types@7.6.20": - resolution: - { - integrity: sha512-GncdY3x0LpbhmUAAJwXYtJDUQEwfF175gsjH0/fxPkxPoV7Sef9TM41jQLJW/5+6TnZoCZP/+aJZTJtq3ni23Q==, - } - - "@storybook/ui@6.5.16": - resolution: - { - integrity: sha512-rHn/n12WM8BaXtZ3IApNZCiS+C4Oc5+Lkl4MoctX8V7QSml0SxZBB5hsJ/AiWkgbRxjQpa/L/Nt7/Qw0FjTH/A==, - } + '@storybook/types@7.5.3': + resolution: {integrity: sha512-iu5W0Kdd6nysN5CPkY4GRl+0BpxRTdSfBIJak7mb6xCIHSB5t1tw4BOuqMQ5EgpikRY3MWJ4gY647QkWBX3MNQ==} + + '@storybook/types@7.6.17': + resolution: {integrity: sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==} + + '@storybook/types@7.6.18': + resolution: {integrity: sha512-W7/8kUtMhEopZhwXFMOKlXwQCrz0PBJ5wQwmJNZ4i0YPTVfFzb+/6pgpkzUNtbXiTp6dfxi3ERoAF9wz9Zyt7w==} + + '@storybook/types@7.6.20': + resolution: {integrity: sha512-GncdY3x0LpbhmUAAJwXYtJDUQEwfF175gsjH0/fxPkxPoV7Sef9TM41jQLJW/5+6TnZoCZP/+aJZTJtq3ni23Q==} + + '@storybook/ui@6.5.16': + resolution: {integrity: sha512-rHn/n12WM8BaXtZ3IApNZCiS+C4Oc5+Lkl4MoctX8V7QSml0SxZBB5hsJ/AiWkgbRxjQpa/L/Nt7/Qw0FjTH/A==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@stricahq/bip32ed25519@1.0.4": - resolution: - { - integrity: sha512-b+4+aTRF9QY19auN4oBmZxv/7lJIBPBfAIU9wOTzc9Wxb0ifWpVcM4qt+qZuRNlMQofSlSa6lUet6CwaNyDEuA==, - } - - "@stricahq/cbors@1.0.2": - resolution: - { - integrity: sha512-6ePsEiq7EGHA5IiPn9poA7sF5iXPqt30kKw3pjR/BhP7S+XHZNu/OPumESWnVl4AM+IEYC2x9eL+4qRPsTPVww==, - } - - "@stricahq/typhonjs@2.0.0": - resolution: - { - integrity: sha512-4EdoVAht+hKDaBT1m0qCBQsi5unP9ghM4eUUKGcQcQQiEUZGsP8CgxcGuQbsXL1/LU5wNKoBnxWXUiylZD9uRQ==, - } - - "@styled-system/background@5.1.2": - resolution: - { - integrity: sha512-jtwH2C/U6ssuGSvwTN3ri/IyjdHb8W9X/g8Y0JLcrH02G+BW3OS8kZdHphF1/YyRklnrKrBT2ngwGUK6aqqV3A==, - } - - "@styled-system/border@5.1.5": - resolution: - { - integrity: sha512-JvddhNrnhGigtzWRCVuAHepniyVi6hBlimxWDVAdcTuk7aRn9BYJUwfHslURtwYFsF5FoEs8Zmr1oZq2M1AP0A==, - } - - "@styled-system/color@5.1.2": - resolution: - { - integrity: sha512-1kCkeKDZkt4GYkuFNKc7vJQMcOmTl3bJY3YBUs7fCNM6mMYJeT1pViQ2LwBSBJytj3AB0o4IdLBoepgSgGl5MA==, - } - - "@styled-system/core@5.1.2": - resolution: - { - integrity: sha512-XclBDdNIy7OPOsN4HBsawG2eiWfCcuFt6gxKn1x4QfMIgeO6TOlA2pZZ5GWZtIhCUqEPTgIBta6JXsGyCkLBYw==, - } - - "@styled-system/css@5.1.5": - resolution: - { - integrity: sha512-XkORZdS5kypzcBotAMPBoeckDs9aSZVkvrAlq5K3xP8IMAUek+x2O4NtwoSgkYkWWzVBu6DGdFZLR790QWGG+A==, - } - - "@styled-system/flexbox@5.1.2": - resolution: - { - integrity: sha512-6hHV52+eUk654Y1J2v77B8iLeBNtc+SA3R4necsu2VVinSD7+XY5PCCEzBFaWs42dtOEDIa2lMrgL0YBC01mDQ==, - } - - "@styled-system/grid@5.1.2": - resolution: - { - integrity: sha512-K3YiV1KyHHzgdNuNlaw8oW2ktMuGga99o1e/NAfTEi5Zsa7JXxzwEnVSDSBdJC+z6R8WYTCYRQC6bkVFcvdTeg==, - } - - "@styled-system/layout@5.1.2": - resolution: - { - integrity: sha512-wUhkMBqSeacPFhoE9S6UF3fsMEKFv91gF4AdDWp0Aym1yeMPpqz9l9qS/6vjSsDPF7zOb5cOKC3tcKKOMuDCPw==, - } - - "@styled-system/position@5.1.2": - resolution: - { - integrity: sha512-60IZfMXEOOZe3l1mCu6sj/2NAyUmES2kR9Kzp7s2D3P4qKsZWxD1Se1+wJvevb+1TP+ZMkGPEYYXRyU8M1aF5A==, - } - - "@styled-system/shadow@5.1.2": - resolution: - { - integrity: sha512-wqniqYb7XuZM7K7C0d1Euxc4eGtqEe/lvM0WjuAFsQVImiq6KGT7s7is+0bNI8O4Dwg27jyu4Lfqo/oIQXNzAg==, - } - - "@styled-system/space@5.1.2": - resolution: - { - integrity: sha512-+zzYpR8uvfhcAbaPXhH8QgDAV//flxqxSjHiS9cDFQQUSznXMQmxJegbhcdEF7/eNnJgHeIXv1jmny78kipgBA==, - } - - "@styled-system/typography@5.1.2": - resolution: - { - integrity: sha512-BxbVUnN8N7hJ4aaPOd7wEsudeT7CxarR+2hns8XCX1zp0DFfbWw4xYa/olA0oQaqx7F1hzDg+eRaGzAJbF+jOg==, - } - - "@styled-system/variant@5.1.5": - resolution: - { - integrity: sha512-Yn8hXAFoWIro8+Q5J8YJd/mP85Teiut3fsGVR9CAxwgNfIAiqlYxsk5iHU7VHJks/0KjL4ATSjmbtCDC/4l1qw==, - } - - "@substrate/connect-extension-protocol@2.0.0": - resolution: - { - integrity: sha512-nKu8pDrE3LNCEgJjZe1iGXzaD6OSIDD4Xzz/yo4KO9mQ6LBvf49BVrt4qxBFGL6++NneLiWUZGoh+VSd4PyVIg==, - } - - "@substrate/connect-known-chains@1.1.6": - resolution: - { - integrity: sha512-JwtdGbnK3ZqrY1qp3Ifr/p648sp9hG0Q715h4nRghnqZJnMQIiLKaFkcLnvrAiYQD3zNTYDztHidy5Q/u0TcbQ==, - } - - "@substrate/connect@0.8.10": - resolution: - { - integrity: sha512-DIyQ13DDlXqVFnLV+S6/JDgiGowVRRrh18kahieJxhgvzcWicw5eLc6jpfQ0moVVLBYkO7rctB5Wreldwpva8w==, - } + '@stricahq/bip32ed25519@1.0.4': + resolution: {integrity: sha512-b+4+aTRF9QY19auN4oBmZxv/7lJIBPBfAIU9wOTzc9Wxb0ifWpVcM4qt+qZuRNlMQofSlSa6lUet6CwaNyDEuA==} + + '@stricahq/cbors@1.0.2': + resolution: {integrity: sha512-6ePsEiq7EGHA5IiPn9poA7sF5iXPqt30kKw3pjR/BhP7S+XHZNu/OPumESWnVl4AM+IEYC2x9eL+4qRPsTPVww==} + + '@stricahq/typhonjs@2.0.0': + resolution: {integrity: sha512-4EdoVAht+hKDaBT1m0qCBQsi5unP9ghM4eUUKGcQcQQiEUZGsP8CgxcGuQbsXL1/LU5wNKoBnxWXUiylZD9uRQ==} + + '@styled-system/background@5.1.2': + resolution: {integrity: sha512-jtwH2C/U6ssuGSvwTN3ri/IyjdHb8W9X/g8Y0JLcrH02G+BW3OS8kZdHphF1/YyRklnrKrBT2ngwGUK6aqqV3A==} + + '@styled-system/border@5.1.5': + resolution: {integrity: sha512-JvddhNrnhGigtzWRCVuAHepniyVi6hBlimxWDVAdcTuk7aRn9BYJUwfHslURtwYFsF5FoEs8Zmr1oZq2M1AP0A==} + + '@styled-system/color@5.1.2': + resolution: {integrity: sha512-1kCkeKDZkt4GYkuFNKc7vJQMcOmTl3bJY3YBUs7fCNM6mMYJeT1pViQ2LwBSBJytj3AB0o4IdLBoepgSgGl5MA==} + + '@styled-system/core@5.1.2': + resolution: {integrity: sha512-XclBDdNIy7OPOsN4HBsawG2eiWfCcuFt6gxKn1x4QfMIgeO6TOlA2pZZ5GWZtIhCUqEPTgIBta6JXsGyCkLBYw==} + + '@styled-system/css@5.1.5': + resolution: {integrity: sha512-XkORZdS5kypzcBotAMPBoeckDs9aSZVkvrAlq5K3xP8IMAUek+x2O4NtwoSgkYkWWzVBu6DGdFZLR790QWGG+A==} + + '@styled-system/flexbox@5.1.2': + resolution: {integrity: sha512-6hHV52+eUk654Y1J2v77B8iLeBNtc+SA3R4necsu2VVinSD7+XY5PCCEzBFaWs42dtOEDIa2lMrgL0YBC01mDQ==} + + '@styled-system/grid@5.1.2': + resolution: {integrity: sha512-K3YiV1KyHHzgdNuNlaw8oW2ktMuGga99o1e/NAfTEi5Zsa7JXxzwEnVSDSBdJC+z6R8WYTCYRQC6bkVFcvdTeg==} + + '@styled-system/layout@5.1.2': + resolution: {integrity: sha512-wUhkMBqSeacPFhoE9S6UF3fsMEKFv91gF4AdDWp0Aym1yeMPpqz9l9qS/6vjSsDPF7zOb5cOKC3tcKKOMuDCPw==} + + '@styled-system/position@5.1.2': + resolution: {integrity: sha512-60IZfMXEOOZe3l1mCu6sj/2NAyUmES2kR9Kzp7s2D3P4qKsZWxD1Se1+wJvevb+1TP+ZMkGPEYYXRyU8M1aF5A==} + + '@styled-system/shadow@5.1.2': + resolution: {integrity: sha512-wqniqYb7XuZM7K7C0d1Euxc4eGtqEe/lvM0WjuAFsQVImiq6KGT7s7is+0bNI8O4Dwg27jyu4Lfqo/oIQXNzAg==} + + '@styled-system/space@5.1.2': + resolution: {integrity: sha512-+zzYpR8uvfhcAbaPXhH8QgDAV//flxqxSjHiS9cDFQQUSznXMQmxJegbhcdEF7/eNnJgHeIXv1jmny78kipgBA==} + + '@styled-system/typography@5.1.2': + resolution: {integrity: sha512-BxbVUnN8N7hJ4aaPOd7wEsudeT7CxarR+2hns8XCX1zp0DFfbWw4xYa/olA0oQaqx7F1hzDg+eRaGzAJbF+jOg==} + + '@styled-system/variant@5.1.5': + resolution: {integrity: sha512-Yn8hXAFoWIro8+Q5J8YJd/mP85Teiut3fsGVR9CAxwgNfIAiqlYxsk5iHU7VHJks/0KjL4ATSjmbtCDC/4l1qw==} + + '@substrate/connect-extension-protocol@2.0.0': + resolution: {integrity: sha512-nKu8pDrE3LNCEgJjZe1iGXzaD6OSIDD4Xzz/yo4KO9mQ6LBvf49BVrt4qxBFGL6++NneLiWUZGoh+VSd4PyVIg==} + + '@substrate/connect-known-chains@1.1.6': + resolution: {integrity: sha512-JwtdGbnK3ZqrY1qp3Ifr/p648sp9hG0Q715h4nRghnqZJnMQIiLKaFkcLnvrAiYQD3zNTYDztHidy5Q/u0TcbQ==} + + '@substrate/connect@0.8.10': + resolution: {integrity: sha512-DIyQ13DDlXqVFnLV+S6/JDgiGowVRRrh18kahieJxhgvzcWicw5eLc6jpfQ0moVVLBYkO7rctB5Wreldwpva8w==} deprecated: versions below 1.x are no longer maintained - "@substrate/light-client-extension-helpers@0.0.6": - resolution: - { - integrity: sha512-girltEuxQ1BvkJWmc8JJlk4ZxnlGXc/wkLcNguhY+UoDEMBK0LsdtfzQKIfrIehi4QdeSBlFEFBoI4RqPmsZzA==, - } + '@substrate/light-client-extension-helpers@0.0.6': + resolution: {integrity: sha512-girltEuxQ1BvkJWmc8JJlk4ZxnlGXc/wkLcNguhY+UoDEMBK0LsdtfzQKIfrIehi4QdeSBlFEFBoI4RqPmsZzA==} peerDependencies: smoldot: 2.x - "@substrate/ss58-registry@1.47.0": - resolution: - { - integrity: sha512-6kuIJedRcisUJS2pgksEH2jZf3hfSIVzqtFzs/AyjTW3ETbMg5q1Bb7VWa0WYaT6dTrEXp/6UoXM5B9pSIUmcw==, - } - - "@surma/rollup-plugin-off-main-thread@2.2.3": - resolution: - { - integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==, - } - - "@svgr/babel-plugin-add-jsx-attribute@5.4.0": - resolution: - { - integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==, - } - engines: { node: ">=10" } - - "@svgr/babel-plugin-remove-jsx-attribute@5.4.0": - resolution: - { - integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==, - } - engines: { node: ">=10" } - - "@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1": - resolution: - { - integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==, - } - engines: { node: ">=10" } - - "@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1": - resolution: - { - integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==, - } - engines: { node: ">=10" } - - "@svgr/babel-plugin-svg-dynamic-title@5.4.0": - resolution: - { - integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==, - } - engines: { node: ">=10" } - - "@svgr/babel-plugin-svg-em-dimensions@5.4.0": - resolution: - { - integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==, - } - engines: { node: ">=10" } - - "@svgr/babel-plugin-transform-react-native-svg@5.4.0": - resolution: - { - integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==, - } - engines: { node: ">=10" } - - "@svgr/babel-plugin-transform-svg-component@5.5.0": - resolution: - { - integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==, - } - engines: { node: ">=10" } - - "@svgr/babel-preset@5.5.0": - resolution: - { - integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==, - } - engines: { node: ">=10" } - - "@svgr/core@5.5.0": - resolution: - { - integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==, - } - engines: { node: ">=10" } - peerDependencies: - "@svgr/plugin-svgo": "*" + '@substrate/ss58-registry@1.47.0': + resolution: {integrity: sha512-6kuIJedRcisUJS2pgksEH2jZf3hfSIVzqtFzs/AyjTW3ETbMg5q1Bb7VWa0WYaT6dTrEXp/6UoXM5B9pSIUmcw==} + + '@surma/rollup-plugin-off-main-thread@2.2.3': + resolution: {integrity: sha512-lR8q/9W7hZpMWweNiAKU7NQerBnzQQLvi8qnTDU/fxItPhtZVMbPV3lbCwjhIlNBe9Bbr5V+KHshvWmVSG9cxQ==} + + '@svgr/babel-plugin-add-jsx-attribute@5.4.0': + resolution: {integrity: sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-remove-jsx-attribute@5.4.0': + resolution: {integrity: sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1': + resolution: {integrity: sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1': + resolution: {integrity: sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-svg-dynamic-title@5.4.0': + resolution: {integrity: sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-svg-em-dimensions@5.4.0': + resolution: {integrity: sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-transform-react-native-svg@5.4.0': + resolution: {integrity: sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==} + engines: {node: '>=10'} + + '@svgr/babel-plugin-transform-svg-component@5.5.0': + resolution: {integrity: sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==} + engines: {node: '>=10'} + + '@svgr/babel-preset@5.5.0': + resolution: {integrity: sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==} + engines: {node: '>=10'} + + '@svgr/core@5.5.0': + resolution: {integrity: sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==} + engines: {node: '>=10'} + peerDependencies: + '@svgr/plugin-svgo': '*' peerDependenciesMeta: - "@svgr/plugin-svgo": - optional: true - - "@svgr/hast-util-to-babel-ast@5.5.0": - resolution: - { - integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==, - } - engines: { node: ">=10" } - - "@svgr/plugin-jsx@5.5.0": - resolution: - { - integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==, - } - engines: { node: ">=10" } - - "@svgr/plugin-svgo@5.5.0": - resolution: - { - integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==, - } - engines: { node: ">=10" } - - "@svgr/webpack@5.5.0": - resolution: - { - integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==, - } - engines: { node: ">=10" } - - "@swc/core-darwin-arm64@1.4.11": - resolution: - { - integrity: sha512-C1j1Qp/IHSelVWdEnT7f0iONWxQz6FAqzjCF2iaL+0vFg4V5f2nlgrueY8vj5pNNzSGhrAlxsMxEIp4dj1MXkg==, - } - engines: { node: ">=10" } + '@svgr/plugin-svgo': + optional: true + + '@svgr/hast-util-to-babel-ast@5.5.0': + resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} + engines: {node: '>=10'} + + '@svgr/plugin-jsx@5.5.0': + resolution: {integrity: sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==} + engines: {node: '>=10'} + + '@svgr/plugin-svgo@5.5.0': + resolution: {integrity: sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==} + engines: {node: '>=10'} + + '@svgr/webpack@5.5.0': + resolution: {integrity: sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==} + engines: {node: '>=10'} + + '@swc/core-darwin-arm64@1.4.11': + resolution: {integrity: sha512-C1j1Qp/IHSelVWdEnT7f0iONWxQz6FAqzjCF2iaL+0vFg4V5f2nlgrueY8vj5pNNzSGhrAlxsMxEIp4dj1MXkg==} + engines: {node: '>=10'} cpu: [arm64] os: [darwin] - "@swc/core-darwin-x64@1.4.11": - resolution: - { - integrity: sha512-0TTy3Ni8ncgaMCchSQ7FK8ZXQLlamy0FXmGWbR58c+pVZWYZltYPTmheJUvVcR0H2+gPAymRKyfC0iLszDALjg==, - } - engines: { node: ">=10" } + '@swc/core-darwin-x64@1.4.11': + resolution: {integrity: sha512-0TTy3Ni8ncgaMCchSQ7FK8ZXQLlamy0FXmGWbR58c+pVZWYZltYPTmheJUvVcR0H2+gPAymRKyfC0iLszDALjg==} + engines: {node: '>=10'} cpu: [x64] os: [darwin] - "@swc/core-linux-arm-gnueabihf@1.4.11": - resolution: - { - integrity: sha512-XJLB71uw0rog4DjYAPxFGAuGCBQpgJDlPZZK6MTmZOvI/1t0+DelJ24IjHIxk500YYM26Yv47xPabqFPD7I2zQ==, - } - engines: { node: ">=10" } + '@swc/core-linux-arm-gnueabihf@1.4.11': + resolution: {integrity: sha512-XJLB71uw0rog4DjYAPxFGAuGCBQpgJDlPZZK6MTmZOvI/1t0+DelJ24IjHIxk500YYM26Yv47xPabqFPD7I2zQ==} + engines: {node: '>=10'} cpu: [arm] os: [linux] - "@swc/core-linux-arm64-gnu@1.4.11": - resolution: - { - integrity: sha512-vYQwzJvm/iu052d5Iw27UFALIN5xSrGkPZXxLNMHPySVko2QMNNBv35HLatkEQHbQ3X+VKSW9J9SkdtAvAVRAQ==, - } - engines: { node: ">=10" } + '@swc/core-linux-arm64-gnu@1.4.11': + resolution: {integrity: sha512-vYQwzJvm/iu052d5Iw27UFALIN5xSrGkPZXxLNMHPySVko2QMNNBv35HLatkEQHbQ3X+VKSW9J9SkdtAvAVRAQ==} + engines: {node: '>=10'} cpu: [arm64] os: [linux] - "@swc/core-linux-arm64-musl@1.4.11": - resolution: - { - integrity: sha512-eV+KduiRYUFjPsvbZuJ9aknQH9Tj0U2/G9oIZSzLx/18WsYi+upzHbgxmIIHJ2VJgfd7nN40RI/hMtxNsUzR/g==, - } - engines: { node: ">=10" } + '@swc/core-linux-arm64-musl@1.4.11': + resolution: {integrity: sha512-eV+KduiRYUFjPsvbZuJ9aknQH9Tj0U2/G9oIZSzLx/18WsYi+upzHbgxmIIHJ2VJgfd7nN40RI/hMtxNsUzR/g==} + engines: {node: '>=10'} cpu: [arm64] os: [linux] - "@swc/core-linux-x64-gnu@1.4.11": - resolution: - { - integrity: sha512-WA1iGXZ2HpqM1OR9VCQZJ8sQ1KP2or9O4bO8vWZo6HZJIeoQSo7aa9waaCLRpkZvkng1ct/TF/l6ymqSNFXIzQ==, - } - engines: { node: ">=10" } + '@swc/core-linux-x64-gnu@1.4.11': + resolution: {integrity: sha512-WA1iGXZ2HpqM1OR9VCQZJ8sQ1KP2or9O4bO8vWZo6HZJIeoQSo7aa9waaCLRpkZvkng1ct/TF/l6ymqSNFXIzQ==} + engines: {node: '>=10'} cpu: [x64] os: [linux] - "@swc/core-linux-x64-musl@1.4.11": - resolution: - { - integrity: sha512-UkVJToKf0owwQYRnGvjHAeYVDfeimCEcx0VQSbJoN7Iy0ckRZi7YPlmWJU31xtKvikE2bQWCOVe0qbSDqqcWXA==, - } - engines: { node: ">=10" } + '@swc/core-linux-x64-musl@1.4.11': + resolution: {integrity: sha512-UkVJToKf0owwQYRnGvjHAeYVDfeimCEcx0VQSbJoN7Iy0ckRZi7YPlmWJU31xtKvikE2bQWCOVe0qbSDqqcWXA==} + engines: {node: '>=10'} cpu: [x64] os: [linux] - "@swc/core-win32-arm64-msvc@1.4.11": - resolution: - { - integrity: sha512-35khwkyly7lF5NDSyvIrukBMzxPorgc5iTSDfVO/LvnmN5+fm4lTlrDr4tUfTdOhv3Emy7CsKlsNAeFRJ+Pm+w==, - } - engines: { node: ">=10" } + '@swc/core-win32-arm64-msvc@1.4.11': + resolution: {integrity: sha512-35khwkyly7lF5NDSyvIrukBMzxPorgc5iTSDfVO/LvnmN5+fm4lTlrDr4tUfTdOhv3Emy7CsKlsNAeFRJ+Pm+w==} + engines: {node: '>=10'} cpu: [arm64] os: [win32] - "@swc/core-win32-ia32-msvc@1.4.11": - resolution: - { - integrity: sha512-Wx8/6f0ufgQF2pbVPsJ2dAmFLwIOW+xBE5fxnb7VnEbGkTgP1qMDWiiAtD9rtvDSuODG3i1AEmAak/2HAc6i6A==, - } - engines: { node: ">=10" } + '@swc/core-win32-ia32-msvc@1.4.11': + resolution: {integrity: sha512-Wx8/6f0ufgQF2pbVPsJ2dAmFLwIOW+xBE5fxnb7VnEbGkTgP1qMDWiiAtD9rtvDSuODG3i1AEmAak/2HAc6i6A==} + engines: {node: '>=10'} cpu: [ia32] os: [win32] - "@swc/core-win32-x64-msvc@1.4.11": - resolution: - { - integrity: sha512-0xRFW6K9UZQH2NVC/0pVB0GJXS45lY24f+6XaPBF1YnMHd8A8GoHl7ugyM5yNUTe2AKhSgk5fJV00EJt/XBtdQ==, - } - engines: { node: ">=10" } + '@swc/core-win32-x64-msvc@1.4.11': + resolution: {integrity: sha512-0xRFW6K9UZQH2NVC/0pVB0GJXS45lY24f+6XaPBF1YnMHd8A8GoHl7ugyM5yNUTe2AKhSgk5fJV00EJt/XBtdQ==} + engines: {node: '>=10'} cpu: [x64] os: [win32] - "@swc/core@1.4.11": - resolution: - { - integrity: sha512-WKEakMZxkVwRdgMN4AMJ9K5nysY8g8npgQPczmjBeNK5In7QEAZAJwnyccrWwJZU0XjVeHn2uj+XbOKdDW17rg==, - } - engines: { node: ">=10" } + '@swc/core@1.4.11': + resolution: {integrity: sha512-WKEakMZxkVwRdgMN4AMJ9K5nysY8g8npgQPczmjBeNK5In7QEAZAJwnyccrWwJZU0XjVeHn2uj+XbOKdDW17rg==} + engines: {node: '>=10'} peerDependencies: - "@swc/helpers": ^0.5.0 + '@swc/helpers': ^0.5.0 peerDependenciesMeta: - "@swc/helpers": - optional: true - - "@swc/counter@0.1.3": - resolution: - { - integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==, - } - - "@swc/helpers@0.4.14": - resolution: - { - integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==, - } - - "@swc/helpers@0.5.5": - resolution: - { - integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==, - } - - "@swc/jest@0.2.36": - resolution: - { - integrity: sha512-8X80dp81ugxs4a11z1ka43FPhP+/e+mJNXJSxiNYk8gIX/jPBtY4gQTrKu/KIoco8bzKuPI5lUxjfLiGsfvnlw==, - } - engines: { npm: ">= 7.0.0" } - peerDependencies: - "@swc/core": "*" - - "@swc/types@0.1.6": - resolution: - { - integrity: sha512-/JLo/l2JsT/LRd80C3HfbmVpxOAJ11FO2RCEslFrgzLltoP9j8XIbsyDcfCt2WWyX+CM96rBoNM+IToAkFOugg==, - } - - "@szmarczak/http-timer@1.1.2": - resolution: - { - integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==, - } - engines: { node: ">=6" } - - "@szmarczak/http-timer@4.0.6": - resolution: - { - integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==, - } - engines: { node: ">=10" } - - "@tanstack/query-core@5.28.9": - resolution: - { - integrity: sha512-hNlfCiqZevr3GRVPXS3MhaGW5hjcxvCsIQ4q6ff7EPlvFwYZaS+0d9EIIgofnegDaU2BbCDlyURoYfRl5rmzow==, - } - - "@tanstack/query-devtools@5.28.10": - resolution: - { - integrity: sha512-5UN629fKa5/1K/2Pd26gaU7epxRrYiT1gy+V+pW5K6hnf1DeUKK3pANSb2eHKlecjIKIhTwyF7k9XdyE2gREvQ==, - } - - "@tanstack/react-query-devtools@5.28.14": - resolution: - { - integrity: sha512-4CrFBI1O5wibV1ZdGAnBMmTuc7SiShhxWubxRMyIloeEioxs3DQkFbouGBea5nexuwIxAkvhUB8khpPnNjhxMw==, - } - peerDependencies: - "@tanstack/react-query": ^5.28.14 + '@swc/helpers': + optional: true + + '@swc/counter@0.1.3': + resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} + + '@swc/helpers@0.4.14': + resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} + + '@swc/helpers@0.5.5': + resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==} + + '@swc/jest@0.2.36': + resolution: {integrity: sha512-8X80dp81ugxs4a11z1ka43FPhP+/e+mJNXJSxiNYk8gIX/jPBtY4gQTrKu/KIoco8bzKuPI5lUxjfLiGsfvnlw==} + engines: {npm: '>= 7.0.0'} + peerDependencies: + '@swc/core': '*' + + '@swc/types@0.1.6': + resolution: {integrity: sha512-/JLo/l2JsT/LRd80C3HfbmVpxOAJ11FO2RCEslFrgzLltoP9j8XIbsyDcfCt2WWyX+CM96rBoNM+IToAkFOugg==} + + '@szmarczak/http-timer@1.1.2': + resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} + engines: {node: '>=6'} + + '@szmarczak/http-timer@4.0.6': + resolution: {integrity: sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==} + engines: {node: '>=10'} + + '@tanstack/query-core@5.28.9': + resolution: {integrity: sha512-hNlfCiqZevr3GRVPXS3MhaGW5hjcxvCsIQ4q6ff7EPlvFwYZaS+0d9EIIgofnegDaU2BbCDlyURoYfRl5rmzow==} + + '@tanstack/query-devtools@5.28.10': + resolution: {integrity: sha512-5UN629fKa5/1K/2Pd26gaU7epxRrYiT1gy+V+pW5K6hnf1DeUKK3pANSb2eHKlecjIKIhTwyF7k9XdyE2gREvQ==} + + '@tanstack/react-query-devtools@5.28.14': + resolution: {integrity: sha512-4CrFBI1O5wibV1ZdGAnBMmTuc7SiShhxWubxRMyIloeEioxs3DQkFbouGBea5nexuwIxAkvhUB8khpPnNjhxMw==} + peerDependencies: + '@tanstack/react-query': ^5.28.14 react: ^18.0.0 - "@tanstack/react-query@5.28.9": - resolution: - { - integrity: sha512-vwifBkGXsydsLxFOBMe3+f8kvtDoqDRDwUNjPHVDDt+FoBetCbOWAUHgZn4k+CVeZgLmy7bx6aKeDbe3e8koOQ==, - } + '@tanstack/react-query@5.28.9': + resolution: {integrity: sha512-vwifBkGXsydsLxFOBMe3+f8kvtDoqDRDwUNjPHVDDt+FoBetCbOWAUHgZn4k+CVeZgLmy7bx6aKeDbe3e8koOQ==} peerDependencies: react: ^18.0.0 - "@tanstack/react-virtual@3.2.0": - resolution: - { - integrity: sha512-OEdMByf2hEfDa6XDbGlZN8qO6bTjlNKqjM3im9JG+u3mCL8jALy0T/67oDI001raUUPh1Bdmfn4ZvPOV5knpcg==, - } + '@tanstack/react-virtual@3.2.0': + resolution: {integrity: sha512-OEdMByf2hEfDa6XDbGlZN8qO6bTjlNKqjM3im9JG+u3mCL8jALy0T/67oDI001raUUPh1Bdmfn4ZvPOV5knpcg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 - "@tanstack/virtual-core@3.2.0": - resolution: - { - integrity: sha512-P5XgYoAw/vfW65byBbJQCw+cagdXDT/qH6wmABiLt4v4YBT2q2vqCOhihe+D1Nt325F/S/0Tkv6C5z0Lv+VBQQ==, - } - - "@taquito/core@20.0.0": - resolution: - { - integrity: sha512-JSDWLaVeaSqI98Xwd2TQwNy/fznSLEhikUxM7da6WbGJGtH8lG9SI9q6N9LLPfOFNGlP5RVQLO9HK/Pcmn4H8Q==, - } - engines: { node: ">=18" } - - "@taquito/core@20.0.1": - resolution: - { - integrity: sha512-/NvTkS8Enz5zxm481h7Ld5+MTa3/q84PMqtQ+HN3Mniv4EshnX5uIGfbdXdCQoaAeVdJOCeNIZDgeP6ZnkomRA==, - } - engines: { node: ">=18" } - - "@taquito/http-utils@20.0.1": - resolution: - { - integrity: sha512-belYNmWoT49IF8o51gEB5je5Wz54+C7Q5hmvh7modl7fG0qE8VD1ulSH+WjuZsFTPJdNEAfCe0O50Vb5tNzw2w==, - } - engines: { node: ">=18" } - - "@taquito/ledger-signer@20.0.0": - resolution: - { - integrity: sha512-wfl1plx/uAIbmHsYxwsO2pXKDa9aMOmuuw25rjwsniBP36hM0Ly9GSrQ0z1CozteQF9ThP+OwrNMCwlfqXx43Q==, - } - engines: { node: ">=18" } - - "@taquito/ledger-signer@20.0.1": - resolution: - { - integrity: sha512-w8PM2tmBGK7FaQnifDJr43Gt+xt5AApiMr8rh7PV5v+uyHfmaqudNBK0SdlbTKpS7GkERs4X8CBojpeGAage8Q==, - } - engines: { node: ">=18" } - - "@taquito/local-forging@20.0.1": - resolution: - { - integrity: sha512-+XYHnoAYXpOYA4WbUvUO86F6uoUh1anaNQGD544ySaonJW1ZgwhylrGvvTVjQfFSqqP3TRWn69EqINco+hX7gA==, - } - engines: { node: ">=18" } - - "@taquito/michel-codec@20.0.1": - resolution: - { - integrity: sha512-TB6fJS4ArW4p1mqR28cjKbYs4cbLz/wnf8bHI/4ubxpiPcARZkja7r4U89D+Lb6Kn1Er+USPIMdbRTkP011e0w==, - } - engines: { node: ">=18" } - - "@taquito/michelson-encoder@20.0.1": - resolution: - { - integrity: sha512-YfMLpxDL/Qd9AlIfjlCsXYiE07ReZRAqvj+mI/Q8sPsKpqrkjvhyieNUQDLVqMDRcWLBWUSIqccr7UVRlQ/+BQ==, - } - engines: { node: ">=18" } - - "@taquito/rpc@20.0.1": - resolution: - { - integrity: sha512-Ec6fXoehjLpfILpVAHZ1NJz6cAaguEFs9McK2Ct4RRKmVhModgrVPAGXn17rb7fLXwOLP3MCzqSgFPToY7ZIFA==, - } - engines: { node: ">=18" } - - "@taquito/taquito@20.0.1": - resolution: - { - integrity: sha512-BcRNWcUGOWfthFPgPf12U1ZIf1xSyy1ZS4xU5TciuxI395LnKTz6I3WfmMggsZzWxqEgi/Lj8GXjji7DCtaZRg==, - } - engines: { node: ">=18" } - - "@taquito/utils@20.0.1": - resolution: - { - integrity: sha512-aJaKukIW9thzU/WZ7p9ARRIDoXLQZ8TsB0brtbf48GqBFoGXDNAsDo72lkeTpehEcgYItSjdBuWEKH/lyTMr+w==, - } - engines: { node: ">=18" } - - "@testing-library/dom@9.3.4": - resolution: - { - integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==, - } - engines: { node: ">=14" } - - "@testing-library/jest-dom@6.4.2": - resolution: - { - integrity: sha512-CzqH0AFymEMG48CpzXFriYYkOjk6ZGPCLMhW9e9jg3KMCn5OfJecF8GtGW7yGfR/IgCe3SX8BSwjdzI6BBbZLw==, - } - engines: { node: ">=14", npm: ">=6", yarn: ">=1" } - peerDependencies: - "@jest/globals": ">= 28" - "@types/bun": latest - "@types/jest": ">= 28" - jest: ">= 28" - vitest: ">= 0.32" + '@tanstack/virtual-core@3.2.0': + resolution: {integrity: sha512-P5XgYoAw/vfW65byBbJQCw+cagdXDT/qH6wmABiLt4v4YBT2q2vqCOhihe+D1Nt325F/S/0Tkv6C5z0Lv+VBQQ==} + + '@taquito/core@20.0.0': + resolution: {integrity: sha512-JSDWLaVeaSqI98Xwd2TQwNy/fznSLEhikUxM7da6WbGJGtH8lG9SI9q6N9LLPfOFNGlP5RVQLO9HK/Pcmn4H8Q==} + engines: {node: '>=18'} + + '@taquito/core@20.0.1': + resolution: {integrity: sha512-/NvTkS8Enz5zxm481h7Ld5+MTa3/q84PMqtQ+HN3Mniv4EshnX5uIGfbdXdCQoaAeVdJOCeNIZDgeP6ZnkomRA==} + engines: {node: '>=18'} + + '@taquito/http-utils@20.0.1': + resolution: {integrity: sha512-belYNmWoT49IF8o51gEB5je5Wz54+C7Q5hmvh7modl7fG0qE8VD1ulSH+WjuZsFTPJdNEAfCe0O50Vb5tNzw2w==} + engines: {node: '>=18'} + + '@taquito/ledger-signer@20.0.0': + resolution: {integrity: sha512-wfl1plx/uAIbmHsYxwsO2pXKDa9aMOmuuw25rjwsniBP36hM0Ly9GSrQ0z1CozteQF9ThP+OwrNMCwlfqXx43Q==} + engines: {node: '>=18'} + + '@taquito/ledger-signer@20.0.1': + resolution: {integrity: sha512-w8PM2tmBGK7FaQnifDJr43Gt+xt5AApiMr8rh7PV5v+uyHfmaqudNBK0SdlbTKpS7GkERs4X8CBojpeGAage8Q==} + engines: {node: '>=18'} + + '@taquito/local-forging@20.0.1': + resolution: {integrity: sha512-+XYHnoAYXpOYA4WbUvUO86F6uoUh1anaNQGD544ySaonJW1ZgwhylrGvvTVjQfFSqqP3TRWn69EqINco+hX7gA==} + engines: {node: '>=18'} + + '@taquito/michel-codec@20.0.1': + resolution: {integrity: sha512-TB6fJS4ArW4p1mqR28cjKbYs4cbLz/wnf8bHI/4ubxpiPcARZkja7r4U89D+Lb6Kn1Er+USPIMdbRTkP011e0w==} + engines: {node: '>=18'} + + '@taquito/michelson-encoder@20.0.1': + resolution: {integrity: sha512-YfMLpxDL/Qd9AlIfjlCsXYiE07ReZRAqvj+mI/Q8sPsKpqrkjvhyieNUQDLVqMDRcWLBWUSIqccr7UVRlQ/+BQ==} + engines: {node: '>=18'} + + '@taquito/rpc@20.0.1': + resolution: {integrity: sha512-Ec6fXoehjLpfILpVAHZ1NJz6cAaguEFs9McK2Ct4RRKmVhModgrVPAGXn17rb7fLXwOLP3MCzqSgFPToY7ZIFA==} + engines: {node: '>=18'} + + '@taquito/taquito@20.0.1': + resolution: {integrity: sha512-BcRNWcUGOWfthFPgPf12U1ZIf1xSyy1ZS4xU5TciuxI395LnKTz6I3WfmMggsZzWxqEgi/Lj8GXjji7DCtaZRg==} + engines: {node: '>=18'} + + '@taquito/utils@20.0.1': + resolution: {integrity: sha512-aJaKukIW9thzU/WZ7p9ARRIDoXLQZ8TsB0brtbf48GqBFoGXDNAsDo72lkeTpehEcgYItSjdBuWEKH/lyTMr+w==} + engines: {node: '>=18'} + + '@testing-library/dom@9.3.4': + resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==} + engines: {node: '>=14'} + + '@testing-library/jest-dom@6.4.2': + resolution: {integrity: sha512-CzqH0AFymEMG48CpzXFriYYkOjk6ZGPCLMhW9e9jg3KMCn5OfJecF8GtGW7yGfR/IgCe3SX8BSwjdzI6BBbZLw==} + engines: {node: '>=14', npm: '>=6', yarn: '>=1'} + peerDependencies: + '@jest/globals': '>= 28' + '@types/bun': latest + '@types/jest': '>= 28' + jest: '>= 28' + vitest: '>= 0.32' peerDependenciesMeta: - "@jest/globals": + '@jest/globals': optional: true - "@types/bun": + '@types/bun': optional: true - "@types/jest": + '@types/jest': optional: true jest: optional: true vitest: optional: true - "@testing-library/jest-native@5.4.3": - resolution: - { - integrity: sha512-/sSDGaOuE+PJ1Z9Kp4u7PQScSVVXGud59I/qsBFFJvIbcn4P6yYw6cBnBmbPF+X9aRIsTJRDl6gzw5ZkJNm66w==, - } + '@testing-library/jest-native@5.4.3': + resolution: {integrity: sha512-/sSDGaOuE+PJ1Z9Kp4u7PQScSVVXGud59I/qsBFFJvIbcn4P6yYw6cBnBmbPF+X9aRIsTJRDl6gzw5ZkJNm66w==} peerDependencies: - react: ">=16.0.0" - react-native: ">=0.59" - react-test-renderer: ">=16.0.0" + react: '>=16.0.0' + react-native: '>=0.59' + react-test-renderer: '>=16.0.0' - "@testing-library/react-native@12.4.5": - resolution: - { - integrity: sha512-SfwFwV1MrnvL//9T4C4UyusnZfWy2IOftNU7mG+bspk23bDM9HH1TxsMvec7JVZleraicDO7tP1odFqwb4KPcg==, - } + '@testing-library/react-native@12.4.5': + resolution: {integrity: sha512-SfwFwV1MrnvL//9T4C4UyusnZfWy2IOftNU7mG+bspk23bDM9HH1TxsMvec7JVZleraicDO7tP1odFqwb4KPcg==} peerDependencies: - jest: ">=28.0.0" - react: ">=16.8.0" - react-native: ">=0.59" - react-test-renderer: ">=16.8.0" + jest: '>=28.0.0' + react: '>=16.8.0' + react-native: '>=0.59' + react-test-renderer: '>=16.8.0' peerDependenciesMeta: jest: optional: true - "@testing-library/react@14.2.2": - resolution: - { - integrity: sha512-SOUuM2ysCvjUWBXTNfQ/ztmnKDmqaiPV3SvoIuyxMUca45rbSWWAT/qB8CUs/JQ/ux/8JFs9DNdFQ3f6jH3crA==, - } - engines: { node: ">=14" } + '@testing-library/react@14.2.2': + resolution: {integrity: sha512-SOUuM2ysCvjUWBXTNfQ/ztmnKDmqaiPV3SvoIuyxMUca45rbSWWAT/qB8CUs/JQ/ux/8JFs9DNdFQ3f6jH3crA==} + engines: {node: '>=14'} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 - "@testing-library/user-event@14.5.2": - resolution: - { - integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==, - } - engines: { node: ">=12", npm: ">=6" } + '@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" + '@testing-library/dom': '>=7.21.4' - "@theguild/remark-mermaid@0.0.5": - resolution: - { - integrity: sha512-e+ZIyJkEv9jabI4m7q29wZtZv+2iwPGsXJ2d46Zi7e+QcFudiyuqhLhHG/3gX3ZEB+hxTch+fpItyMS8jwbIcw==, - } + '@theguild/remark-mermaid@0.0.5': + resolution: {integrity: sha512-e+ZIyJkEv9jabI4m7q29wZtZv+2iwPGsXJ2d46Zi7e+QcFudiyuqhLhHG/3gX3ZEB+hxTch+fpItyMS8jwbIcw==} peerDependencies: react: ^18.2.0 - "@theguild/remark-npm2yarn@0.2.1": - resolution: - { - integrity: sha512-jUTFWwDxtLEFtGZh/TW/w30ySaDJ8atKWH8dq2/IiQF61dPrGfETpl0WxD0VdBfuLOeU14/kop466oBSRO/5CA==, - } - - "@tippyjs/react@4.2.6": - resolution: - { - integrity: sha512-91RicDR+H7oDSyPycI13q3b7o4O60wa2oRbjlz2fyRLmHImc4vyDwuUP8NtZaN0VARJY5hybvDYrFzhY9+Lbyw==, - } - peerDependencies: - react: ">=16.8" - react-dom: ">=16.8" - - "@ton-community/ton-ledger@7.0.1": - resolution: - { - integrity: sha512-4QDjG9D/c3vKyApKa36KfqyE0UcPn/ExSJvCb8Cd03BdhMiZQNvm7tJsKg12lslPCIbl1dW9ZC6fg1RvqAAqnQ==, - } - peerDependencies: - "@ton/core": ">=0.52.2" - - "@ton/core@0.56.3": - resolution: - { - integrity: sha512-HVkalfqw8zqLLPehtq0CNhu5KjVzc7IrbDwDHPjGoOSXmnqSobiWj8a5F+YuWnZnEbQKtrnMGNOOjVw4LG37rg==, - } - peerDependencies: - "@ton/crypto": ">=3.2.0" - - "@ton/crypto-primitives@2.1.0": - resolution: - { - integrity: sha512-PQesoyPgqyI6vzYtCXw4/ZzevePc4VGcJtFwf08v10OevVJHVfW238KBdpj1kEDQkxWLeuNHEpTECNFKnP6tow==, - } - - "@ton/crypto@3.3.0": - resolution: - { - integrity: sha512-/A6CYGgA/H36OZ9BbTaGerKtzWp50rg67ZCH2oIjV1NcrBaCK9Z343M+CxedvM7Haf3f/Ee9EhxyeTp0GKMUpA==, - } - - "@ton/ton@13.11.2": - resolution: - { - integrity: sha512-EPqW+ZTe0MmfqguJEIGMuAqTAFRKMEce95HlDx8h6CGn2y3jiMgV1/oO+WpDIOiX+1wnTu+xtajk8JTWr8nKRQ==, - } - peerDependencies: - "@ton/core": ">=0.56.0" - "@ton/crypto": ">=3.2.0" - - "@tootallnate/once@1.1.2": - resolution: - { - integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==, - } - engines: { node: ">= 6" } - - "@tootallnate/once@2.0.0": - resolution: - { - integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==, - } - engines: { node: ">= 10" } - - "@tronweb3/google-protobuf@3.21.2": - resolution: - { - integrity: sha512-IVcT2GfWX3K6tHUVhs14NP5uzKhQt4KeDya1g9ACxuZsUzsaoGUIGzceK2Ltu7xp1YV94AaHOf4yxLAivlvEkQ==, - } - - "@trust/keyto@1.0.1": - resolution: - { - integrity: sha512-OXTmKkrnkwktCX86XA7eWs1TQ6u64enm0syzAfNhjigbuGLy5aLhbhRYWtjt4zzdG/irWudluheRZ9Ic9pCwsA==, - } - - "@trysound/sax@0.2.0": - resolution: - { - integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==, - } - engines: { node: ">=10.13.0" } - - "@tsconfig/node10@1.0.11": - resolution: - { - integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==, - } - - "@tsconfig/node12@1.0.11": - resolution: - { - integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==, - } - - "@tsconfig/node14@1.0.3": - resolution: - { - integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==, - } - - "@tsconfig/node16@1.0.4": - resolution: - { - integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==, - } - - "@tsconfig/recommended@1.0.6": - resolution: - { - integrity: sha512-0IKu9GHYF1NGTJiYgfWwqnOQSlnE9V9R7YohHNNf0/fj/SyOZWzdd06JFr0fLpg1Mqw0kGbYg8w5xdkSqLKM9g==, - } - - "@types/accepts@1.3.7": - resolution: - { - integrity: sha512-Pay9fq2lM2wXPWbteBsRAGiWH2hig4ZE2asK+mm7kUzlxRTfL961rj89I6zV/E3PcIkDqyuBEcMxFT7rccugeQ==, - } - - "@types/acorn@4.0.6": - resolution: - { - integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==, - } - - "@types/aria-query@5.0.4": - resolution: - { - integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==, - } - - "@types/axios@0.14.0": - resolution: - { - integrity: sha512-KqQnQbdYE54D7oa/UmYVMZKq7CO4l8DEENzOKc4aBRwxCXSlJXGz83flFx5L7AWrOQnmuN3kVsRdt+GZPPjiVQ==, - } + '@theguild/remark-npm2yarn@0.2.1': + resolution: {integrity: sha512-jUTFWwDxtLEFtGZh/TW/w30ySaDJ8atKWH8dq2/IiQF61dPrGfETpl0WxD0VdBfuLOeU14/kop466oBSRO/5CA==} + + '@tippyjs/react@4.2.6': + resolution: {integrity: sha512-91RicDR+H7oDSyPycI13q3b7o4O60wa2oRbjlz2fyRLmHImc4vyDwuUP8NtZaN0VARJY5hybvDYrFzhY9+Lbyw==} + peerDependencies: + react: '>=16.8' + react-dom: '>=16.8' + + '@ton-community/ton-ledger@7.0.1': + resolution: {integrity: sha512-4QDjG9D/c3vKyApKa36KfqyE0UcPn/ExSJvCb8Cd03BdhMiZQNvm7tJsKg12lslPCIbl1dW9ZC6fg1RvqAAqnQ==} + peerDependencies: + '@ton/core': '>=0.52.2' + + '@ton/core@0.56.3': + resolution: {integrity: sha512-HVkalfqw8zqLLPehtq0CNhu5KjVzc7IrbDwDHPjGoOSXmnqSobiWj8a5F+YuWnZnEbQKtrnMGNOOjVw4LG37rg==} + peerDependencies: + '@ton/crypto': '>=3.2.0' + + '@ton/crypto-primitives@2.1.0': + resolution: {integrity: sha512-PQesoyPgqyI6vzYtCXw4/ZzevePc4VGcJtFwf08v10OevVJHVfW238KBdpj1kEDQkxWLeuNHEpTECNFKnP6tow==} + + '@ton/crypto@3.3.0': + resolution: {integrity: sha512-/A6CYGgA/H36OZ9BbTaGerKtzWp50rg67ZCH2oIjV1NcrBaCK9Z343M+CxedvM7Haf3f/Ee9EhxyeTp0GKMUpA==} + + '@ton/ton@13.11.2': + resolution: {integrity: sha512-EPqW+ZTe0MmfqguJEIGMuAqTAFRKMEce95HlDx8h6CGn2y3jiMgV1/oO+WpDIOiX+1wnTu+xtajk8JTWr8nKRQ==} + peerDependencies: + '@ton/core': '>=0.56.0' + '@ton/crypto': '>=3.2.0' + + '@tootallnate/once@1.1.2': + resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} + engines: {node: '>= 6'} + + '@tootallnate/once@2.0.0': + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + + '@tronweb3/google-protobuf@3.21.2': + resolution: {integrity: sha512-IVcT2GfWX3K6tHUVhs14NP5uzKhQt4KeDya1g9ACxuZsUzsaoGUIGzceK2Ltu7xp1YV94AaHOf4yxLAivlvEkQ==} + + '@trust/keyto@1.0.1': + resolution: {integrity: sha512-OXTmKkrnkwktCX86XA7eWs1TQ6u64enm0syzAfNhjigbuGLy5aLhbhRYWtjt4zzdG/irWudluheRZ9Ic9pCwsA==} + + '@trysound/sax@0.2.0': + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + + '@tsconfig/node10@1.0.11': + resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} + + '@tsconfig/node12@1.0.11': + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + + '@tsconfig/node14@1.0.3': + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + + '@tsconfig/node16@1.0.4': + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + + '@tsconfig/recommended@1.0.6': + resolution: {integrity: sha512-0IKu9GHYF1NGTJiYgfWwqnOQSlnE9V9R7YohHNNf0/fj/SyOZWzdd06JFr0fLpg1Mqw0kGbYg8w5xdkSqLKM9g==} + + '@types/accepts@1.3.7': + resolution: {integrity: sha512-Pay9fq2lM2wXPWbteBsRAGiWH2hig4ZE2asK+mm7kUzlxRTfL961rj89I6zV/E3PcIkDqyuBEcMxFT7rccugeQ==} + + '@types/acorn@4.0.6': + resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} + + '@types/aria-query@5.0.4': + resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} + + '@types/axios@0.14.0': + resolution: {integrity: sha512-KqQnQbdYE54D7oa/UmYVMZKq7CO4l8DEENzOKc4aBRwxCXSlJXGz83flFx5L7AWrOQnmuN3kVsRdt+GZPPjiVQ==} deprecated: This is a stub types definition for axios (https://github.com/mzabriskie/axios). axios provides its own type definitions, so you don't need @types/axios installed! - "@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.5": - resolution: - { - integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==, - } - - "@types/bchaddrjs@0.4.3": - resolution: - { - integrity: sha512-KJT+Tz39T/Y8/WMijiL4DXhaaUODytoXxvLpwIvI+WwLzfKR4kLrnzLyuIId245GjsVSvK3T9qz/fbvK+//b5w==, - } - - "@types/blake2b@2.1.3": - resolution: - { - integrity: sha512-MFCdX0MNxFBP/xEILO5Td0kv6nI7+Q2iRWZbTL/yzH2/eDVZS5Wd1LHdsmXClvsCyzqaZfHFzZaN6BUeUCfSDA==, - } - - "@types/bluebird@3.5.42": - resolution: - { - integrity: sha512-Jhy+MWRlro6UjVi578V/4ZGNfeCOcNCp0YaFNIUGFKlImowqwb1O/22wDVk3FDGMLqxdpOV3qQHD5fPEH4hK6A==, - } - - "@types/bn.js@4.11.6": - resolution: - { - integrity: sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==, - } - - "@types/bn.js@5.1.5": - resolution: - { - integrity: sha512-V46N0zwKRF5Q00AZ6hWtN0T8gGmDUaUzLWQvHFo5yThtVwK/VCenFY3wXVbOvNfajEpsTfQM4IN9k/d6gUVX3A==, - } - - "@types/body-parser@1.19.5": - resolution: - { - integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==, - } - - "@types/bonjour@3.5.13": - resolution: - { - integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==, - } - - "@types/bs58@4.0.4": - resolution: - { - integrity: sha512-0IEpMFXXQi2zXaXl9GJ3sRwQo0uEkD+yFOv+FnAU5lkPtcu6h61xb7jc2CFPEZ5BUOaiP13ThuGc9HD4R8lR5g==, - } - - "@types/bs58check@2.1.2": - resolution: - { - integrity: sha512-xpXaQlOIY1KoXlA/ytHGHpEIU87PJt+g9SH7nC6HdCgaBwT2IEZIwBMHbjuX6BpnfbiUMlmwqurdLDwXpcdmSA==, - } - - "@types/btoa-lite@1.0.2": - resolution: - { - integrity: sha512-ZYbcE2x7yrvNFJiU7xJGrpF/ihpkM7zKgw8bha3LNJSesvTtUNxbpzaT7WXBIryf6jovisrxTBvymxMeLLj1Mg==, - } - - "@types/cacheable-request@6.0.3": - resolution: - { - integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==, - } - - "@types/cashaddrjs@0.3.3": - resolution: - { - integrity: sha512-eZ4NOd1bR5SCccmb3y76BSTPfFGHNe6G7dcJq4OuGV5mt7NNnLhl/UCWz5WJNdpqochsm09czLJY+I+/OsKv2g==, - } - - "@types/cbor@6.0.0": - resolution: - { - integrity: sha512-mGQ1lbYOwVti5Xlarn1bTeBZqgY0kstsdjnkoEovgohYKdBjGejHyNGXHdMBeqyQazIv32Jjp33+5pBEaSRy2w==, - } + '@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.5': + resolution: {integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==} + + '@types/bchaddrjs@0.4.3': + resolution: {integrity: sha512-KJT+Tz39T/Y8/WMijiL4DXhaaUODytoXxvLpwIvI+WwLzfKR4kLrnzLyuIId245GjsVSvK3T9qz/fbvK+//b5w==} + + '@types/blake2b@2.1.3': + resolution: {integrity: sha512-MFCdX0MNxFBP/xEILO5Td0kv6nI7+Q2iRWZbTL/yzH2/eDVZS5Wd1LHdsmXClvsCyzqaZfHFzZaN6BUeUCfSDA==} + + '@types/bluebird@3.5.42': + resolution: {integrity: sha512-Jhy+MWRlro6UjVi578V/4ZGNfeCOcNCp0YaFNIUGFKlImowqwb1O/22wDVk3FDGMLqxdpOV3qQHD5fPEH4hK6A==} + + '@types/bn.js@4.11.6': + resolution: {integrity: sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==} + + '@types/bn.js@5.1.5': + resolution: {integrity: sha512-V46N0zwKRF5Q00AZ6hWtN0T8gGmDUaUzLWQvHFo5yThtVwK/VCenFY3wXVbOvNfajEpsTfQM4IN9k/d6gUVX3A==} + + '@types/body-parser@1.19.5': + resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} + + '@types/bonjour@3.5.13': + resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} + + '@types/bs58@4.0.4': + resolution: {integrity: sha512-0IEpMFXXQi2zXaXl9GJ3sRwQo0uEkD+yFOv+FnAU5lkPtcu6h61xb7jc2CFPEZ5BUOaiP13ThuGc9HD4R8lR5g==} + + '@types/bs58check@2.1.2': + resolution: {integrity: sha512-xpXaQlOIY1KoXlA/ytHGHpEIU87PJt+g9SH7nC6HdCgaBwT2IEZIwBMHbjuX6BpnfbiUMlmwqurdLDwXpcdmSA==} + + '@types/btoa-lite@1.0.2': + resolution: {integrity: sha512-ZYbcE2x7yrvNFJiU7xJGrpF/ihpkM7zKgw8bha3LNJSesvTtUNxbpzaT7WXBIryf6jovisrxTBvymxMeLLj1Mg==} + + '@types/cacheable-request@6.0.3': + resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} + + '@types/cashaddrjs@0.3.3': + resolution: {integrity: sha512-eZ4NOd1bR5SCccmb3y76BSTPfFGHNe6G7dcJq4OuGV5mt7NNnLhl/UCWz5WJNdpqochsm09czLJY+I+/OsKv2g==} + + '@types/cbor@6.0.0': + resolution: {integrity: sha512-mGQ1lbYOwVti5Xlarn1bTeBZqgY0kstsdjnkoEovgohYKdBjGejHyNGXHdMBeqyQazIv32Jjp33+5pBEaSRy2w==} deprecated: This is a stub types definition. cbor provides its own type definitions, so you do not need this installed. - "@types/chart.js@2.9.41": - resolution: - { - integrity: sha512-3dvkDvueckY83UyUXtJMalYoH6faOLkWQoaTlJgB4Djde3oORmNP0Jw85HtzTuXyliUHcdp704s0mZFQKio/KQ==, - } - - "@types/color-convert@2.0.3": - resolution: - { - integrity: sha512-2Q6wzrNiuEvYxVQqhh7sXM2mhIhvZR/Paq4FdsQkOMgWsCIkKvSGj8Le1/XalulrmgOzPMqNa0ix+ePY4hTrfg==, - } - - "@types/color-name@1.1.3": - resolution: - { - integrity: sha512-87W6MJCKZYDhLAx/J1ikW8niMvmGRyY+rpUxWpL1cO7F8Uu5CHuQoFv+R0/L5pgNdW4jTyda42kv60uwVIPjLw==, - } - - "@types/color@3.0.6": - resolution: - { - integrity: sha512-NMiNcZFRUAiUUCCf7zkAelY8eV3aKqfbzyFQlXpPIEeoNDbsEHGpb854V3gzTsGKYj830I5zPuOwU/TP5/cW6A==, - } - - "@types/command-line-args@5.2.3": - resolution: - { - integrity: sha512-uv0aG6R0Y8WHZLTamZwtfsDLVRnOa+n+n5rEvFWL5Na5gZ8V2Teab/duDPFzIIIhs9qizDpcavCusCLJZu62Kw==, - } - - "@types/connect-history-api-fallback@1.5.4": - resolution: - { - integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==, - } - - "@types/connect@3.4.36": - resolution: - { - integrity: sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==, - } - - "@types/connect@3.4.38": - resolution: - { - integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==, - } - - "@types/content-disposition@0.5.8": - resolution: - { - integrity: sha512-QVSSvno3dE0MgO76pJhmv4Qyi/j0Yk9pBp0Y7TJ2Tlj+KCgJWY6qX7nnxCOLkZ3VYRSIk1WTxCvwUSdx6CCLdg==, - } - - "@types/cookie@0.6.0": - resolution: - { - integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==, - } - - "@types/cookies@0.9.0": - resolution: - { - integrity: sha512-40Zk8qR147RABiQ7NQnBzWzDcjKzNrntB5BAmeGCb2p/MIyOE+4BVvc17wumsUqUw00bJYqoXFHYygQnEFh4/Q==, - } - - "@types/cors@2.8.17": - resolution: - { - integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==, - } - - "@types/create-hmac@1.1.3": - resolution: - { - integrity: sha512-oDDSoBrAfdEPQuBpQp14y/ygUVU1IC6gq8Arm8IPP8TRC11AnLLYmpE3VvNUhPK/Ax3USGDjdE1Sc1LCIpf0NQ==, - } - - "@types/cross-spawn@6.0.6": - resolution: - { - integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==, - } - - "@types/crypto-js@4.2.2": - resolution: - { - integrity: sha512-sDOLlVbHhXpAUAL0YHDUUwDZf3iN4Bwi4W6a0W0b+QcAezUbRtH4FVb+9J4h+XFPW7l/gQ9F8qC7P+Ec4k8QVQ==, - } - - "@types/d3-array@2.3.0": - resolution: - { - integrity: sha512-eBQLBDq0bcXW9K14ktZDL/oeTzhS7BIoyEb0ZQb7gq4kTI/nZD+OISrpmxFll9LIXp7gOmYk+yPPoxt3GeXtQg==, - } - - "@types/d3-path@3.1.0": - resolution: - { - integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==, - } - - "@types/d3-scale-chromatic@3.0.3": - resolution: - { - integrity: sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==, - } - - "@types/d3-scale@3.3.5": - resolution: - { - integrity: sha512-YOpKj0kIEusRf7ofeJcSZQsvKbnTwpe1DUF+P2qsotqG53kEsjm7EzzliqQxMkAWdkZcHrg5rRhB4JiDOQPX+A==, - } - - "@types/d3-scale@4.0.8": - resolution: - { - integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==, - } - - "@types/d3-shape@3.1.6": - resolution: - { - integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==, - } - - "@types/d3-time@2.1.4": - resolution: - { - integrity: sha512-BTfLsxTeo7yFxI/haOOf1ZwJ6xKgQLT9dCp+EcmQv87Gox6X+oKl4mLKfO6fnWm3P22+A6DknMNEZany8ql2Rw==, - } - - "@types/d3-time@3.0.3": - resolution: - { - integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==, - } - - "@types/debug@4.1.12": - resolution: - { - integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==, - } - - "@types/detect-port@1.3.5": - resolution: - { - integrity: sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==, - } - - "@types/doctrine@0.0.3": - resolution: - { - integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==, - } - - "@types/doctrine@0.0.9": - resolution: - { - integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==, - } - - "@types/ejs@3.1.5": - resolution: - { - integrity: sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==, - } - - "@types/elliptic@6.4.18": - resolution: - { - integrity: sha512-UseG6H5vjRiNpQvrhy4VF/JXdA3V/Fp5amvveaL+fs28BZ6xIKJBPnUPRlEaZpysD9MbpfaLi8lbl7PGUAkpWw==, - } - - "@types/emscripten@1.39.10": - resolution: - { - integrity: sha512-TB/6hBkYQJxsZHSqyeuO1Jt0AB/bW6G7rHt9g7lML7SOF6lbgcHvw/Lr+69iqN0qxgXLhWKScAon73JNnptuDw==, - } - - "@types/escodegen@0.0.6": - resolution: - { - integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==, - } - - "@types/eslint-scope@3.7.7": - resolution: - { - integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==, - } - - "@types/eslint@8.56.6": - resolution: - { - integrity: sha512-ymwc+qb1XkjT/gfoQwxIeHZ6ixH23A+tCT2ADSA/DPVKzAjwYkTXBMCQ/f6fe4wEa85Lhp26VPeUxI7wMhAi7A==, - } - - "@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@0.0.51": - resolution: - { - integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==, - } - - "@types/estree@1.0.5": - resolution: - { - integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==, - } - - "@types/ethereumjs-util@5.2.0": - resolution: - { - integrity: sha512-qwQgQqXXTRv2h2AlJef+tMEszLFkCB9dWnrJYIdAwqjubERXEc/geB+S3apRw0yQyTVnsBf8r6BhlrE8vx+3WQ==, - } - - "@types/events@3.0.3": - resolution: - { - integrity: sha512-trOc4AAUThEz9hapPtSd7wf5tiQKvTtu5b371UxXdTuqzIh0ArcRspRP0i0Viu+LXstIQ1z96t1nsPxT9ol01g==, - } - - "@types/express-serve-static-core@4.17.43": - resolution: - { - integrity: sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==, - } - - "@types/express@4.17.21": - resolution: - { - integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==, - } - - "@types/extend@3.0.4": - resolution: - { - integrity: sha512-ArMouDUTJEz1SQRpFsT2rIw7DeqICFv5aaVzLSIYMYQSLcwcGOfT3VyglQs/p7K3F7fT4zxr0NWxYZIdifD6dA==, - } - - "@types/find-cache-dir@3.2.1": - resolution: - { - integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==, - } - - "@types/fs-extra@11.0.4": - resolution: - { - integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==, - } - - "@types/fs-extra@9.0.13": - resolution: - { - integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==, - } - - "@types/glob@7.2.0": - resolution: - { - integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==, - } - - "@types/graceful-fs@4.1.9": - resolution: - { - integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==, - } - - "@types/hammerjs@2.0.45": - resolution: - { - integrity: sha512-qkcUlZmX6c4J8q45taBKTL3p+LbITgyx7qhlPYOdOHZB7B31K0mXbP5YA7i7SgDeEGuI9MnumiKPEMrxg8j3KQ==, - } - - "@types/hast@2.3.10": - resolution: - { - integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==, - } - - "@types/hast@3.0.4": - resolution: - { - integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==, - } - - "@types/history@4.7.11": - resolution: - { - integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==, - } - - "@types/hoist-non-react-statics@3.3.5": - resolution: - { - integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==, - } - peerDependencies: - "@types/react": "*" + '@types/chart.js@2.9.41': + resolution: {integrity: sha512-3dvkDvueckY83UyUXtJMalYoH6faOLkWQoaTlJgB4Djde3oORmNP0Jw85HtzTuXyliUHcdp704s0mZFQKio/KQ==} + + '@types/color-convert@2.0.3': + resolution: {integrity: sha512-2Q6wzrNiuEvYxVQqhh7sXM2mhIhvZR/Paq4FdsQkOMgWsCIkKvSGj8Le1/XalulrmgOzPMqNa0ix+ePY4hTrfg==} + + '@types/color-name@1.1.3': + resolution: {integrity: sha512-87W6MJCKZYDhLAx/J1ikW8niMvmGRyY+rpUxWpL1cO7F8Uu5CHuQoFv+R0/L5pgNdW4jTyda42kv60uwVIPjLw==} + + '@types/color@3.0.6': + resolution: {integrity: sha512-NMiNcZFRUAiUUCCf7zkAelY8eV3aKqfbzyFQlXpPIEeoNDbsEHGpb854V3gzTsGKYj830I5zPuOwU/TP5/cW6A==} + + '@types/command-line-args@5.2.3': + resolution: {integrity: sha512-uv0aG6R0Y8WHZLTamZwtfsDLVRnOa+n+n5rEvFWL5Na5gZ8V2Teab/duDPFzIIIhs9qizDpcavCusCLJZu62Kw==} + + '@types/connect-history-api-fallback@1.5.4': + resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==} + + '@types/connect@3.4.36': + resolution: {integrity: sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==} + + '@types/connect@3.4.38': + resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + + '@types/content-disposition@0.5.8': + resolution: {integrity: sha512-QVSSvno3dE0MgO76pJhmv4Qyi/j0Yk9pBp0Y7TJ2Tlj+KCgJWY6qX7nnxCOLkZ3VYRSIk1WTxCvwUSdx6CCLdg==} + + '@types/cookie@0.6.0': + resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} + + '@types/cookies@0.9.0': + resolution: {integrity: sha512-40Zk8qR147RABiQ7NQnBzWzDcjKzNrntB5BAmeGCb2p/MIyOE+4BVvc17wumsUqUw00bJYqoXFHYygQnEFh4/Q==} + + '@types/cors@2.8.17': + resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==} + + '@types/create-hmac@1.1.3': + resolution: {integrity: sha512-oDDSoBrAfdEPQuBpQp14y/ygUVU1IC6gq8Arm8IPP8TRC11AnLLYmpE3VvNUhPK/Ax3USGDjdE1Sc1LCIpf0NQ==} + + '@types/cross-spawn@6.0.6': + resolution: {integrity: sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==} + + '@types/crypto-js@4.2.2': + resolution: {integrity: sha512-sDOLlVbHhXpAUAL0YHDUUwDZf3iN4Bwi4W6a0W0b+QcAezUbRtH4FVb+9J4h+XFPW7l/gQ9F8qC7P+Ec4k8QVQ==} + + '@types/d3-array@2.3.0': + resolution: {integrity: sha512-eBQLBDq0bcXW9K14ktZDL/oeTzhS7BIoyEb0ZQb7gq4kTI/nZD+OISrpmxFll9LIXp7gOmYk+yPPoxt3GeXtQg==} + + '@types/d3-path@3.1.0': + resolution: {integrity: sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==} + + '@types/d3-scale-chromatic@3.0.3': + resolution: {integrity: sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==} + + '@types/d3-scale@3.3.5': + resolution: {integrity: sha512-YOpKj0kIEusRf7ofeJcSZQsvKbnTwpe1DUF+P2qsotqG53kEsjm7EzzliqQxMkAWdkZcHrg5rRhB4JiDOQPX+A==} + + '@types/d3-scale@4.0.8': + resolution: {integrity: sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==} + + '@types/d3-shape@3.1.6': + resolution: {integrity: sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==} + + '@types/d3-time@2.1.4': + resolution: {integrity: sha512-BTfLsxTeo7yFxI/haOOf1ZwJ6xKgQLT9dCp+EcmQv87Gox6X+oKl4mLKfO6fnWm3P22+A6DknMNEZany8ql2Rw==} + + '@types/d3-time@3.0.3': + resolution: {integrity: sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==} + + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + + '@types/detect-port@1.3.5': + resolution: {integrity: sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==} + + '@types/doctrine@0.0.3': + resolution: {integrity: sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==} + + '@types/doctrine@0.0.9': + resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} + + '@types/ejs@3.1.5': + resolution: {integrity: sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==} + + '@types/elliptic@6.4.18': + resolution: {integrity: sha512-UseG6H5vjRiNpQvrhy4VF/JXdA3V/Fp5amvveaL+fs28BZ6xIKJBPnUPRlEaZpysD9MbpfaLi8lbl7PGUAkpWw==} + + '@types/emscripten@1.39.10': + resolution: {integrity: sha512-TB/6hBkYQJxsZHSqyeuO1Jt0AB/bW6G7rHt9g7lML7SOF6lbgcHvw/Lr+69iqN0qxgXLhWKScAon73JNnptuDw==} + + '@types/escodegen@0.0.6': + resolution: {integrity: sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==} + + '@types/eslint-scope@3.7.7': + resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} + + '@types/eslint@8.56.6': + resolution: {integrity: sha512-ymwc+qb1XkjT/gfoQwxIeHZ6ixH23A+tCT2ADSA/DPVKzAjwYkTXBMCQ/f6fe4wEa85Lhp26VPeUxI7wMhAi7A==} + + '@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@0.0.51': + resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} + + '@types/estree@1.0.5': + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + + '@types/ethereumjs-util@5.2.0': + resolution: {integrity: sha512-qwQgQqXXTRv2h2AlJef+tMEszLFkCB9dWnrJYIdAwqjubERXEc/geB+S3apRw0yQyTVnsBf8r6BhlrE8vx+3WQ==} + + '@types/events@3.0.3': + resolution: {integrity: sha512-trOc4AAUThEz9hapPtSd7wf5tiQKvTtu5b371UxXdTuqzIh0ArcRspRP0i0Viu+LXstIQ1z96t1nsPxT9ol01g==} + + '@types/express-serve-static-core@4.17.43': + resolution: {integrity: sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==} + + '@types/express@4.17.21': + resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==} + + '@types/extend@3.0.4': + resolution: {integrity: sha512-ArMouDUTJEz1SQRpFsT2rIw7DeqICFv5aaVzLSIYMYQSLcwcGOfT3VyglQs/p7K3F7fT4zxr0NWxYZIdifD6dA==} + + '@types/find-cache-dir@3.2.1': + resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==} + + '@types/fs-extra@11.0.4': + resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==} + + '@types/fs-extra@9.0.13': + resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} + + '@types/glob@7.2.0': + resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} + + '@types/graceful-fs@4.1.9': + resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} + + '@types/hammerjs@2.0.45': + resolution: {integrity: sha512-qkcUlZmX6c4J8q45taBKTL3p+LbITgyx7qhlPYOdOHZB7B31K0mXbP5YA7i7SgDeEGuI9MnumiKPEMrxg8j3KQ==} + + '@types/hast@2.3.10': + resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} + + '@types/hast@3.0.4': + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + + '@types/history@4.7.11': + resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==} + + '@types/hoist-non-react-statics@3.3.5': + resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==} + peerDependencies: + '@types/react': '*' peerDependenciesMeta: - "@types/react": - optional: true - - "@types/html-minifier-terser@6.1.0": - resolution: - { - integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==, - } - - "@types/http-assert@1.5.5": - resolution: - { - integrity: sha512-4+tE/lwdAahgZT1g30Jkdm9PzFRde0xwxBNUyRsCitRvCQB90iuA2uJYdUnhnANRcqGXaWOGY4FEoxeElNAK2g==, - } - - "@types/http-cache-semantics@4.0.4": - resolution: - { - integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==, - } - - "@types/http-errors@2.0.4": - resolution: - { - integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==, - } - - "@types/http-proxy@1.17.14": - resolution: - { - integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==, - } - - "@types/imurmurhash@0.1.4": - resolution: - { - integrity: sha512-Zo/QlTiAvOP3pd9nuPOw33k0l/QssLOBrriShWzUE4qhIZByIF3rCoyF8ZTxdyFTUM2mYljYLqMUeLvA3NJUmQ==, - } - - "@types/invariant@2.2.37": - resolution: - { - integrity: sha512-IwpIMieE55oGWiXkQPSBY1nw1nFs6bsKXTFskNY8sdS17K24vyEBRQZEwlRS7ZmXCWnJcQtbxWzly+cODWGs2A==, - } - - "@types/is-function@1.0.3": - resolution: - { - integrity: sha512-/CLhCW79JUeLKznI6mbVieGbl4QU5Hfn+6udw1YHZoofASjbQ5zaP5LzAUZYDpRYEjS4/P+DhEgyJ/PQmGGTWw==, - } - - "@types/istanbul-lib-coverage@2.0.6": - resolution: - { - integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==, - } - - "@types/istanbul-lib-report@3.0.3": - resolution: - { - integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==, - } - - "@types/istanbul-reports@1.1.2": - resolution: - { - integrity: sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==, - } - - "@types/istanbul-reports@3.0.4": - resolution: - { - integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==, - } - - "@types/jest@27.5.2": - resolution: - { - integrity: sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==, - } - - "@types/jest@28.1.8": - resolution: - { - integrity: sha512-8TJkV++s7B6XqnDrzR1m/TT0A0h948Pnl/097veySPN67VRAgQ4gZ7n2KfJo2rVq6njQjdxU3GCCyDvAeuHoiw==, - } - - "@types/jest@29.5.12": - resolution: - { - integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==, - } - - "@types/js-yaml@4.0.9": - resolution: - { - integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==, - } - - "@types/jsdom@16.2.15": - resolution: - { - integrity: sha512-nwF87yjBKuX/roqGYerZZM0Nv1pZDMAT5YhOHYeM/72Fic+VEqJh4nyoqoapzJnW3pUlfxPY5FhgsJtM+dRnQQ==, - } - - "@types/jsdom@20.0.1": - resolution: - { - integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==, - } - - "@types/json-schema@7.0.15": - resolution: - { - integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==, - } - - "@types/json5@0.0.29": - resolution: - { - integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, - } - - "@types/jsonfile@6.1.4": - resolution: - { - integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==, - } - - "@types/jsonwebtoken@9.0.6": - resolution: - { - integrity: sha512-/5hndP5dCjloafCXns6SZyESp3Ldq7YjH3zwzwczYnjxIT0Fqzk5ROSYVGfFyczIue7IUEj8hkvLbPoLQ18vQw==, - } - - "@types/katex@0.16.7": - resolution: - { - integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==, - } - - "@types/keygrip@1.0.6": - resolution: - { - integrity: sha512-lZuNAY9xeJt7Bx4t4dx0rYCDqGPW8RXhQZK1td7d4H6E9zYbLoOtjBvfwdTKpsyxQI/2jv+armjX/RW+ZNpXOQ==, - } - - "@types/keyv@3.1.4": - resolution: - { - integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==, - } - - "@types/koa-compose@3.2.8": - resolution: - { - integrity: sha512-4Olc63RY+MKvxMwVknCUDhRQX1pFQoBZ/lXcRLP69PQkEpze/0cr8LNqJQe5NFb/b19DWi2a5bTi2VAlQzhJuA==, - } - - "@types/koa@2.14.0": - resolution: - { - integrity: sha512-DTDUyznHGNHAl+wd1n0z1jxNajduyTh8R53xoewuerdBzGo6Ogj6F2299BFtrexJw4NtgjsI5SMPCmV9gZwGXA==, - } - - "@types/koa__router@12.0.3": - resolution: - { - integrity: sha512-5YUJVv6NwM1z7m6FuYpKfNLTZ932Z6EF6xy2BbtpJSyn13DKNQEkXVffFVSnJHxvwwWh2SAeumpjAYUELqgjyw==, - } - - "@types/ledgerhq__hw-transport@4.21.8": - resolution: - { - integrity: sha512-uO2AJYZUVCwgyqgyy2/KW+JsQaO0hcwDdubRaHgF2ehO0ngGAY41PbE8qnPnmUw1uerMXONvL68QFioA7Y6C5g==, - } - - "@types/libsodium-wrappers@0.7.13": - resolution: - { - integrity: sha512-KeAKtlObirLJk/na6jHBFEdTDjDfFS6Vcr0eG2FjiHKn3Nw8axJFfIu0Y9TpwaauRldQBj/pZm/MHtK76r6OWg==, - } - - "@types/linkify-it@5.0.0": - resolution: - { - integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==, - } - - "@types/lodash@4.17.0": - resolution: - { - integrity: sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==, - } - - "@types/lodash@4.17.4": - resolution: - { - integrity: sha512-wYCP26ZLxaT3R39kiN2+HcJ4kTd3U1waI/cY7ivWYqFP6pW3ZNpvi6Wd6PHZx7T/t8z0vlkXMg3QYLa7DZ/IJQ==, - } - - "@types/lodash@4.17.7": - resolution: - { - integrity: sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==, - } - - "@types/long@4.0.2": - resolution: - { - integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==, - } - - "@types/markdown-it@14.1.1": - resolution: - { - integrity: sha512-4NpsnpYl2Gt1ljyBGrKMxFYAYvpqbnnkgP/i/g+NLpjEUa3obn1XJCur9YbEXKDAkaXqsR1LbDnGEJ0MmKFxfg==, - } - - "@types/mdast@3.0.15": - resolution: - { - integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==, - } - - "@types/mdast@4.0.4": - resolution: - { - integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==, - } - - "@types/mdurl@2.0.0": - resolution: - { - integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==, - } - - "@types/mdx@2.0.12": - resolution: - { - integrity: sha512-H9VZ9YqE+H28FQVchC83RCs5xQ2J7mAAv6qdDEaWmXEVl3OpdH+xfrSUzQ1lp7U7oSTRZ0RvW08ASPJsYBi7Cw==, - } - - "@types/mime-types@2.1.4": - resolution: - { - integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==, - } - - "@types/mime@1.3.5": - resolution: - { - integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==, - } - - "@types/mime@3.0.4": - resolution: - { - integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==, - } - - "@types/minimatch@5.1.2": - resolution: - { - integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==, - } - - "@types/minimist@1.2.5": - resolution: - { - integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==, - } - - "@types/ms@0.7.34": - resolution: - { - integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==, - } - - "@types/mute-stream@0.0.4": - resolution: - { - integrity: sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==, - } - - "@types/mysql@2.15.22": - resolution: - { - integrity: sha512-wK1pzsJVVAjYCSZWQoWHziQZbNggXFDUEIGf54g4ZM/ERuP86uGdWeKZWMYlqTPMZfHJJvLPyogXGvCOg87yLQ==, - } - - "@types/node-fetch@2.6.11": - resolution: - { - integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==, - } - - "@types/node-forge@1.3.11": - resolution: - { - integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==, - } - - "@types/node-hid@1.3.4": - resolution: - { - integrity: sha512-0ootpsYetN9vjqkDSwm/cA4fk/9yGM/PO0X8SLPE/BzXlUaBelImMWMymtF9QEoEzxY0pnhcROIJM0CNSUqO8w==, - } - - "@types/node@10.12.18": - resolution: - { - integrity: sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ==, - } - - "@types/node@10.17.60": - resolution: - { - integrity: sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==, - } - - "@types/node@11.11.6": - resolution: - { - integrity: sha512-Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ==, - } - - "@types/node@12.20.55": - resolution: - { - integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==, - } - - "@types/node@13.13.52": - resolution: - { - integrity: sha512-s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ==, - } - - "@types/node@18.15.13": - resolution: - { - integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==, - } - - "@types/node@18.19.26": - resolution: - { - integrity: sha512-+wiMJsIwLOYCvUqSdKTrfkS8mpTp+MPINe6+Np4TAGFWWRWiBQ5kSq9nZGCSPkzx9mvT+uEukzpX4MOSCydcvw==, - } - - "@types/node@20.12.12": - resolution: - { - integrity: sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==, - } - - "@types/node@20.5.1": - resolution: - { - integrity: sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==, - } - - "@types/node@20.8.10": - resolution: - { - integrity: sha512-TlgT8JntpcbmKUFzjhsyhGfP2fsiz1Mv56im6enJ905xG1DAYesxJaeSbGqQmAw8OWPdhyJGhGSQGKRNJ45u9w==, - } - - "@types/normalize-package-data@2.4.4": - resolution: - { - integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==, - } - - "@types/numeral@2.0.5": - resolution: - { - integrity: sha512-kH8I7OSSwQu9DS9JYdFWbuvhVzvFRoCPCkGxNwoGgaPeDfEPJlcxNvEOypZhQ3XXHsGbfIuYcxcJxKUfJHnRfw==, - } - - "@types/object-hash@2.2.1": - resolution: - { - integrity: sha512-i/rtaJFCsPljrZvP/akBqEwUP2y5cZLOmvO+JaYnz01aPknrQ+hB5MRcO7iqCUsFaYfTG8kGfKUyboA07xeDHQ==, - } - - "@types/pako@2.0.3": - resolution: - { - integrity: sha512-bq0hMV9opAcrmE0Byyo0fY3Ew4tgOevJmQ9grUhpXQhYfyLJ1Kqg3P33JT5fdbT2AjeAjR51zqqVjAL/HMkx7Q==, - } - - "@types/parse-json@4.0.2": - resolution: - { - integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==, - } - - "@types/parse5@6.0.3": - resolution: - { - integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==, - } - - "@types/pbkdf2@3.1.2": - resolution: - { - integrity: sha512-uRwJqmiXmh9++aSu1VNEn3iIxWOhd8AHXNSdlaLfdAAdSTY9jYVeGWnzejM3dvrkbqE3/hyQkQQ29IFATEGlew==, - } - - "@types/pg-pool@2.0.4": - resolution: - { - integrity: sha512-qZAvkv1K3QbmHHFYSNRYPkRjOWRLBYrL4B9c+wG0GSVGBw0NtJwPcgx/DSddeDJvRGMHCEQ4VMEVfuJ/0gZ3XQ==, - } - - "@types/pg@8.6.1": - resolution: - { - integrity: sha512-1Kc4oAGzAl7uqUStZCDvaLFqZrW9qWSjXOmBfdgyBP5La7Us6Mg4GBvRlSoaZMhQF/zSj1C8CtKMBkoiT8eL8w==, - } - - "@types/plist@3.0.2": - resolution: - { - integrity: sha512-ULqvZNGMv0zRFvqn8/4LSPtnmN4MfhlPNtJCTpKuIIxGVGZ2rYWzFXrvEBoh9CVyqSE7D6YFRJ1hydLHI6kbWw==, - } - - "@types/prettier@2.7.3": - resolution: - { - integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==, - } - - "@types/pretty-hrtime@1.0.3": - resolution: - { - integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==, - } - - "@types/prop-types@15.7.12": - resolution: - { - integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==, - } - - "@types/ps-tree@1.1.6": - resolution: - { - integrity: sha512-PtrlVaOaI44/3pl3cvnlK+GxOM3re2526TJvPvh7W+keHIXdV4TE0ylpPBAcvFQCbGitaTXwL9u+RF7qtVeazQ==, - } - - "@types/q@1.5.8": - resolution: - { - integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==, - } - - "@types/qrcode@1.5.5": - resolution: - { - integrity: sha512-CdfBi/e3Qk+3Z/fXYShipBT13OJ2fDO2Q2w5CIP5anLTLIndQG9z6P1cnm+8zCWSpm5dnxMFd/uREtb0EXuQzg==, - } - - "@types/qs@6.9.14": - resolution: - { - integrity: sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==, - } - - "@types/range-parser@1.2.7": - resolution: - { - integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==, - } - - "@types/react-dom@18.2.23": - resolution: - { - integrity: sha512-ZQ71wgGOTmDYpnav2knkjr3qXdAFu0vsk8Ci5w3pGAIdj7/kKAyn+VsQDhXsmzzzepAiI9leWMmubXz690AI/A==, - } - peerDependencies: - "@types/react": "*" + '@types/react': + optional: true + + '@types/html-minifier-terser@6.1.0': + resolution: {integrity: sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==} + + '@types/http-assert@1.5.5': + resolution: {integrity: sha512-4+tE/lwdAahgZT1g30Jkdm9PzFRde0xwxBNUyRsCitRvCQB90iuA2uJYdUnhnANRcqGXaWOGY4FEoxeElNAK2g==} + + '@types/http-cache-semantics@4.0.4': + resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==} + + '@types/http-errors@2.0.4': + resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==} + + '@types/http-proxy@1.17.14': + resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} + + '@types/imurmurhash@0.1.4': + resolution: {integrity: sha512-Zo/QlTiAvOP3pd9nuPOw33k0l/QssLOBrriShWzUE4qhIZByIF3rCoyF8ZTxdyFTUM2mYljYLqMUeLvA3NJUmQ==} + + '@types/invariant@2.2.37': + resolution: {integrity: sha512-IwpIMieE55oGWiXkQPSBY1nw1nFs6bsKXTFskNY8sdS17K24vyEBRQZEwlRS7ZmXCWnJcQtbxWzly+cODWGs2A==} + + '@types/is-function@1.0.3': + resolution: {integrity: sha512-/CLhCW79JUeLKznI6mbVieGbl4QU5Hfn+6udw1YHZoofASjbQ5zaP5LzAUZYDpRYEjS4/P+DhEgyJ/PQmGGTWw==} + + '@types/istanbul-lib-coverage@2.0.6': + resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==} + + '@types/istanbul-lib-report@3.0.3': + resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==} + + '@types/istanbul-reports@1.1.2': + resolution: {integrity: sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==} + + '@types/istanbul-reports@3.0.4': + resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==} + + '@types/jest@27.5.2': + resolution: {integrity: sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==} + + '@types/jest@28.1.8': + resolution: {integrity: sha512-8TJkV++s7B6XqnDrzR1m/TT0A0h948Pnl/097veySPN67VRAgQ4gZ7n2KfJo2rVq6njQjdxU3GCCyDvAeuHoiw==} + + '@types/jest@29.5.12': + resolution: {integrity: sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw==} + + '@types/js-yaml@4.0.9': + resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==} + + '@types/jsdom@16.2.15': + resolution: {integrity: sha512-nwF87yjBKuX/roqGYerZZM0Nv1pZDMAT5YhOHYeM/72Fic+VEqJh4nyoqoapzJnW3pUlfxPY5FhgsJtM+dRnQQ==} + + '@types/jsdom@20.0.1': + resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/json5@0.0.29': + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + + '@types/jsonfile@6.1.4': + resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==} + + '@types/jsonwebtoken@9.0.6': + resolution: {integrity: sha512-/5hndP5dCjloafCXns6SZyESp3Ldq7YjH3zwzwczYnjxIT0Fqzk5ROSYVGfFyczIue7IUEj8hkvLbPoLQ18vQw==} + + '@types/katex@0.16.7': + resolution: {integrity: sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==} + + '@types/keygrip@1.0.6': + resolution: {integrity: sha512-lZuNAY9xeJt7Bx4t4dx0rYCDqGPW8RXhQZK1td7d4H6E9zYbLoOtjBvfwdTKpsyxQI/2jv+armjX/RW+ZNpXOQ==} + + '@types/keyv@3.1.4': + resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} + + '@types/koa-compose@3.2.8': + resolution: {integrity: sha512-4Olc63RY+MKvxMwVknCUDhRQX1pFQoBZ/lXcRLP69PQkEpze/0cr8LNqJQe5NFb/b19DWi2a5bTi2VAlQzhJuA==} + + '@types/koa@2.14.0': + resolution: {integrity: sha512-DTDUyznHGNHAl+wd1n0z1jxNajduyTh8R53xoewuerdBzGo6Ogj6F2299BFtrexJw4NtgjsI5SMPCmV9gZwGXA==} + + '@types/koa__router@12.0.3': + resolution: {integrity: sha512-5YUJVv6NwM1z7m6FuYpKfNLTZ932Z6EF6xy2BbtpJSyn13DKNQEkXVffFVSnJHxvwwWh2SAeumpjAYUELqgjyw==} + + '@types/ledgerhq__hw-transport@4.21.8': + resolution: {integrity: sha512-uO2AJYZUVCwgyqgyy2/KW+JsQaO0hcwDdubRaHgF2ehO0ngGAY41PbE8qnPnmUw1uerMXONvL68QFioA7Y6C5g==} + + '@types/libsodium-wrappers@0.7.13': + resolution: {integrity: sha512-KeAKtlObirLJk/na6jHBFEdTDjDfFS6Vcr0eG2FjiHKn3Nw8axJFfIu0Y9TpwaauRldQBj/pZm/MHtK76r6OWg==} + + '@types/linkify-it@5.0.0': + resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==} + + '@types/lodash@4.17.0': + resolution: {integrity: sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==} + + '@types/lodash@4.17.4': + resolution: {integrity: sha512-wYCP26ZLxaT3R39kiN2+HcJ4kTd3U1waI/cY7ivWYqFP6pW3ZNpvi6Wd6PHZx7T/t8z0vlkXMg3QYLa7DZ/IJQ==} + + '@types/lodash@4.17.7': + resolution: {integrity: sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==} + + '@types/long@4.0.2': + resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==} + + '@types/markdown-it@14.1.1': + resolution: {integrity: sha512-4NpsnpYl2Gt1ljyBGrKMxFYAYvpqbnnkgP/i/g+NLpjEUa3obn1XJCur9YbEXKDAkaXqsR1LbDnGEJ0MmKFxfg==} + + '@types/mdast@3.0.15': + resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} + + '@types/mdast@4.0.4': + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + + '@types/mdurl@2.0.0': + resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==} + + '@types/mdx@2.0.12': + resolution: {integrity: sha512-H9VZ9YqE+H28FQVchC83RCs5xQ2J7mAAv6qdDEaWmXEVl3OpdH+xfrSUzQ1lp7U7oSTRZ0RvW08ASPJsYBi7Cw==} + + '@types/mime-types@2.1.4': + resolution: {integrity: sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==} + + '@types/mime@1.3.5': + resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==} + + '@types/mime@3.0.4': + resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==} + + '@types/minimatch@5.1.2': + resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} + + '@types/minimist@1.2.5': + resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==} + + '@types/ms@0.7.34': + resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} + + '@types/mute-stream@0.0.4': + resolution: {integrity: sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==} + + '@types/mysql@2.15.22': + resolution: {integrity: sha512-wK1pzsJVVAjYCSZWQoWHziQZbNggXFDUEIGf54g4ZM/ERuP86uGdWeKZWMYlqTPMZfHJJvLPyogXGvCOg87yLQ==} + + '@types/node-fetch@2.6.11': + resolution: {integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==} + + '@types/node-forge@1.3.11': + resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==} + + '@types/node-hid@1.3.4': + resolution: {integrity: sha512-0ootpsYetN9vjqkDSwm/cA4fk/9yGM/PO0X8SLPE/BzXlUaBelImMWMymtF9QEoEzxY0pnhcROIJM0CNSUqO8w==} + + '@types/node@10.12.18': + resolution: {integrity: sha512-fh+pAqt4xRzPfqA6eh3Z2y6fyZavRIumvjhaCL753+TVkGKGhpPeyrJG2JftD0T9q4GF00KjefsQ+PQNDdWQaQ==} + + '@types/node@10.17.60': + resolution: {integrity: sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==} + + '@types/node@11.11.6': + resolution: {integrity: sha512-Exw4yUWMBXM3X+8oqzJNRqZSwUAaS4+7NdvHqQuFi/d+synz++xmX3QIf+BFqneW8N31R8Ky+sikfZUXq07ggQ==} + + '@types/node@12.20.55': + resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} + + '@types/node@13.13.52': + resolution: {integrity: sha512-s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ==} + + '@types/node@18.15.13': + resolution: {integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==} + + '@types/node@18.19.26': + resolution: {integrity: sha512-+wiMJsIwLOYCvUqSdKTrfkS8mpTp+MPINe6+Np4TAGFWWRWiBQ5kSq9nZGCSPkzx9mvT+uEukzpX4MOSCydcvw==} + + '@types/node@20.12.12': + resolution: {integrity: sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==} + + '@types/node@20.5.1': + resolution: {integrity: sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==} + + '@types/node@20.8.10': + resolution: {integrity: sha512-TlgT8JntpcbmKUFzjhsyhGfP2fsiz1Mv56im6enJ905xG1DAYesxJaeSbGqQmAw8OWPdhyJGhGSQGKRNJ45u9w==} + + '@types/normalize-package-data@2.4.4': + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + + '@types/numeral@2.0.5': + resolution: {integrity: sha512-kH8I7OSSwQu9DS9JYdFWbuvhVzvFRoCPCkGxNwoGgaPeDfEPJlcxNvEOypZhQ3XXHsGbfIuYcxcJxKUfJHnRfw==} + + '@types/object-hash@2.2.1': + resolution: {integrity: sha512-i/rtaJFCsPljrZvP/akBqEwUP2y5cZLOmvO+JaYnz01aPknrQ+hB5MRcO7iqCUsFaYfTG8kGfKUyboA07xeDHQ==} + + '@types/pako@2.0.3': + resolution: {integrity: sha512-bq0hMV9opAcrmE0Byyo0fY3Ew4tgOevJmQ9grUhpXQhYfyLJ1Kqg3P33JT5fdbT2AjeAjR51zqqVjAL/HMkx7Q==} + + '@types/parse-json@4.0.2': + resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + + '@types/parse5@6.0.3': + resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==} + + '@types/pbkdf2@3.1.2': + resolution: {integrity: sha512-uRwJqmiXmh9++aSu1VNEn3iIxWOhd8AHXNSdlaLfdAAdSTY9jYVeGWnzejM3dvrkbqE3/hyQkQQ29IFATEGlew==} + + '@types/pg-pool@2.0.4': + resolution: {integrity: sha512-qZAvkv1K3QbmHHFYSNRYPkRjOWRLBYrL4B9c+wG0GSVGBw0NtJwPcgx/DSddeDJvRGMHCEQ4VMEVfuJ/0gZ3XQ==} + + '@types/pg@8.6.1': + resolution: {integrity: sha512-1Kc4oAGzAl7uqUStZCDvaLFqZrW9qWSjXOmBfdgyBP5La7Us6Mg4GBvRlSoaZMhQF/zSj1C8CtKMBkoiT8eL8w==} + + '@types/plist@3.0.2': + resolution: {integrity: sha512-ULqvZNGMv0zRFvqn8/4LSPtnmN4MfhlPNtJCTpKuIIxGVGZ2rYWzFXrvEBoh9CVyqSE7D6YFRJ1hydLHI6kbWw==} + + '@types/prettier@2.7.3': + resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} + + '@types/pretty-hrtime@1.0.3': + resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} + + '@types/prop-types@15.7.12': + resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} + + '@types/ps-tree@1.1.6': + resolution: {integrity: sha512-PtrlVaOaI44/3pl3cvnlK+GxOM3re2526TJvPvh7W+keHIXdV4TE0ylpPBAcvFQCbGitaTXwL9u+RF7qtVeazQ==} + + '@types/q@1.5.8': + resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==} + + '@types/qrcode@1.5.5': + resolution: {integrity: sha512-CdfBi/e3Qk+3Z/fXYShipBT13OJ2fDO2Q2w5CIP5anLTLIndQG9z6P1cnm+8zCWSpm5dnxMFd/uREtb0EXuQzg==} + + '@types/qs@6.9.14': + resolution: {integrity: sha512-5khscbd3SwWMhFqylJBLQ0zIu7c1K6Vz0uBIt915BI3zV0q1nfjRQD3RqSBcPaO6PHEF4ov/t9y89fSiyThlPA==} + + '@types/range-parser@1.2.7': + resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} + + '@types/react-dom@18.2.23': + resolution: {integrity: sha512-ZQ71wgGOTmDYpnav2knkjr3qXdAFu0vsk8Ci5w3pGAIdj7/kKAyn+VsQDhXsmzzzepAiI9leWMmubXz690AI/A==} + peerDependencies: + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-dom@18.3.0": - resolution: - { - integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==, - } + '@types/react-dom@18.3.0': + resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-inspector@4.0.6": - resolution: - { - integrity: sha512-fTOzxjP+Cve6TVfmmslm+qoD5x0L9aaeX23RONHSWr8pkMFNl5xadXH0oS3S0t3up8lCxmdb9FUCgesCndxn1A==, - } + '@types/react-inspector@4.0.6': + resolution: {integrity: sha512-fTOzxjP+Cve6TVfmmslm+qoD5x0L9aaeX23RONHSWr8pkMFNl5xadXH0oS3S0t3up8lCxmdb9FUCgesCndxn1A==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-is@17.0.7": - resolution: - { - integrity: sha512-WrTEiT+c6rgq36QApoy0063uAOdltCrhF0QMXLIgYPaTvIdQhAB8hPb5oGGqX18xToElNILS9UprwU6GyINcJg==, - } + '@types/react-is@17.0.7': + resolution: {integrity: sha512-WrTEiT+c6rgq36QApoy0063uAOdltCrhF0QMXLIgYPaTvIdQhAB8hPb5oGGqX18xToElNILS9UprwU6GyINcJg==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-key-handler@1.2.4": - resolution: - { - integrity: sha512-MgxXP5FfW9PqqbzhZ9P2p06MXdSAobuvFMmolnK0BPL8t5cxIR6gu4XCslnrANgRX3/qYHnWuZNzD/HlvG9CPA==, - } + '@types/react-key-handler@1.2.4': + resolution: {integrity: sha512-MgxXP5FfW9PqqbzhZ9P2p06MXdSAobuvFMmolnK0BPL8t5cxIR6gu4XCslnrANgRX3/qYHnWuZNzD/HlvG9CPA==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-lottie@1.2.10": - resolution: - { - integrity: sha512-rCd1p3US4ELKJlqwVnP0h5b24zt5p9OCvKUoNpYExLqwbFZMWEiJ6EGLMmH7nmq5V7KomBIbWO2X/XRFsL0vCA==, - } + '@types/react-lottie@1.2.10': + resolution: {integrity: sha512-rCd1p3US4ELKJlqwVnP0h5b24zt5p9OCvKUoNpYExLqwbFZMWEiJ6EGLMmH7nmq5V7KomBIbWO2X/XRFsL0vCA==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-motion@0.0.40": - resolution: - { - integrity: sha512-Bp6i9WTvW6QFN2E/XQPm8HPGMx1SVJ7H1DPsvptwWWh1XBymDZ7N7SK4nSZT/4tP4bTGvp1KHSAsswWZKO/WHA==, - } + '@types/react-motion@0.0.40': + resolution: {integrity: sha512-Bp6i9WTvW6QFN2E/XQPm8HPGMx1SVJ7H1DPsvptwWWh1XBymDZ7N7SK4nSZT/4tP4bTGvp1KHSAsswWZKO/WHA==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-native-extra-dimensions-android@1.2.3": - resolution: - { - integrity: sha512-g+Jkc+idhsqzUMWQZlcj132CUKdw/KG+NuGEoRAsWUwQDRVCnY/H4n0xdGxwf7GSdlSuoyjqb8ps7/quHihmRA==, - } + '@types/react-native-extra-dimensions-android@1.2.3': + resolution: {integrity: sha512-g+Jkc+idhsqzUMWQZlcj132CUKdw/KG+NuGEoRAsWUwQDRVCnY/H4n0xdGxwf7GSdlSuoyjqb8ps7/quHihmRA==} - "@types/react-native-vector-icons@6.4.18": - resolution: - { - integrity: sha512-YGlNWb+k5laTBHd7+uZowB9DpIK3SXUneZqAiKQaj1jnJCZM0x71GDim5JCTMi4IFkhc9m8H/Gm28T5BjyivUw==, - } + '@types/react-native-vector-icons@6.4.18': + resolution: {integrity: sha512-YGlNWb+k5laTBHd7+uZowB9DpIK3SXUneZqAiKQaj1jnJCZM0x71GDim5JCTMi4IFkhc9m8H/Gm28T5BjyivUw==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-native-video@5.0.20": - resolution: - { - integrity: sha512-CdD4T43uEKzTNJ/RylTDViNuGuyOPWQUEuA1Y9GY8T+HiE9cwYw1zQNqk8a7zz9GHamlPfJQ+bYoEE9OWjZ/6g==, - } + '@types/react-native-video@5.0.20': + resolution: {integrity: sha512-CdD4T43uEKzTNJ/RylTDViNuGuyOPWQUEuA1Y9GY8T+HiE9cwYw1zQNqk8a7zz9GHamlPfJQ+bYoEE9OWjZ/6g==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-native@0.70.19": - resolution: - { - integrity: sha512-c6WbyCgWTBgKKMESj/8b4w+zWcZSsCforson7UdXtXMecG3MxCinYi6ihhrHVPyUrVzORsvEzK8zg32z4pK6Sg==, - } + '@types/react-native@0.70.19': + resolution: {integrity: sha512-c6WbyCgWTBgKKMESj/8b4w+zWcZSsCforson7UdXtXMecG3MxCinYi6ihhrHVPyUrVzORsvEzK8zg32z4pK6Sg==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-redux@7.1.33": - resolution: - { - integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==, - } + '@types/react-redux@7.1.33': + resolution: {integrity: sha512-NF8m5AjWCkert+fosDsN3hAlHzpjSiXlVy9EgQEmLoBhaNXbmyeGs/aj5dQzKuF+/q+S7JQagorGDW8pJ28Hmg==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-router-dom@5.3.3": - resolution: - { - integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==, - } + '@types/react-router-dom@5.3.3': + resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-router@5.1.20": - resolution: - { - integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==, - } + '@types/react-router@5.1.20': + resolution: {integrity: sha512-jGjmu/ZqS7FjSH6owMcD5qpq19+1RS9DeVRqfl1FeBMxTDQAGwlMWOcs52NDoXaNKyG3d1cYQFMs9rCrb88o9Q==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-select@4.0.18": - resolution: - { - integrity: sha512-uCPRMPshd96BwHuT7oCrFduiv5d6km3VwmtW7rVl9g4XetS3VoJ9nZo540LiwtQgaFcW96POwaxQDZDAyYaepg==, - } + '@types/react-select@4.0.18': + resolution: {integrity: sha512-uCPRMPshd96BwHuT7oCrFduiv5d6km3VwmtW7rVl9g4XetS3VoJ9nZo540LiwtQgaFcW96POwaxQDZDAyYaepg==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-table@6.8.15": - resolution: - { - integrity: sha512-5+1Fv5aqvjEvfmjDhGyJgtA/spUSuTcUWSP8e2QS6vdFUdDeRiQmqDK+2619mm9htlmWMgb8vUMUlpsKXmUgRg==, - } + '@types/react-table@6.8.15': + resolution: {integrity: sha512-5+1Fv5aqvjEvfmjDhGyJgtA/spUSuTcUWSP8e2QS6vdFUdDeRiQmqDK+2619mm9htlmWMgb8vUMUlpsKXmUgRg==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-table@7.7.20": - resolution: - { - integrity: sha512-ahMp4pmjVlnExxNwxyaDrFgmKxSbPwU23sGQw2gJK4EhCvnvmib2s/O/+y1dfV57dXOwpr2plfyBol+vEHbi2w==, - } + '@types/react-table@7.7.20': + resolution: {integrity: sha512-ahMp4pmjVlnExxNwxyaDrFgmKxSbPwU23sGQw2gJK4EhCvnvmib2s/O/+y1dfV57dXOwpr2plfyBol+vEHbi2w==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-test-renderer@18.0.7": - resolution: - { - integrity: sha512-1+ANPOWc6rB3IkSnElhjv6VLlKg2dSv/OWClUyZimbLsQyBn8Js9Vtdsi3UICJ2rIQ3k2la06dkB+C92QfhKmg==, - } + '@types/react-test-renderer@18.0.7': + resolution: {integrity: sha512-1+ANPOWc6rB3IkSnElhjv6VLlKg2dSv/OWClUyZimbLsQyBn8Js9Vtdsi3UICJ2rIQ3k2la06dkB+C92QfhKmg==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-transition-group@4.4.10": - resolution: - { - integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==, - } + '@types/react-transition-group@4.4.10': + resolution: {integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-virtualized-auto-sizer@1.0.4": - resolution: - { - integrity: sha512-nhYwlFiYa8M3S+O2T9QO/e1FQUYMr/wJENUdf/O0dhRi1RS/93rjrYQFYdbUqtdFySuhrtnEDX29P6eKOttY+A==, - } + '@types/react-virtualized-auto-sizer@1.0.4': + resolution: {integrity: sha512-nhYwlFiYa8M3S+O2T9QO/e1FQUYMr/wJENUdf/O0dhRi1RS/93rjrYQFYdbUqtdFySuhrtnEDX29P6eKOttY+A==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-window-infinite-loader@1.0.9": - resolution: - { - integrity: sha512-gEInTjQwURCnDOFyIEK2+fWB5gTjqwx30O62QfxA9stE5aiB6EWkGj4UMhc0axq7/FV++Gs/TGW8FtgEx0S6Tw==, - } + '@types/react-window-infinite-loader@1.0.9': + resolution: {integrity: sha512-gEInTjQwURCnDOFyIEK2+fWB5gTjqwx30O62QfxA9stE5aiB6EWkGj4UMhc0axq7/FV++Gs/TGW8FtgEx0S6Tw==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/react-window@1.8.8": - resolution: - { - integrity: sha512-8Ls660bHR1AUA2kuRvVG9D/4XpRC6wjAaPT9dil7Ckc76eP9TKWZwwmgfq8Q1LANX3QNDnoU4Zp48A3w+zK69Q==, - } + '@types/react-window@1.8.8': + resolution: {integrity: sha512-8Ls660bHR1AUA2kuRvVG9D/4XpRC6wjAaPT9dil7Ckc76eP9TKWZwwmgfq8Q1LANX3QNDnoU4Zp48A3w+zK69Q==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": - optional: true - - "@types/react@18.2.73": - resolution: - { - integrity: sha512-XcGdod0Jjv84HOC7N5ziY3x+qL0AfmubvKOZ9hJjJ2yd5EE+KYjWhdOjt387e9HPheHkdggF9atTifMRtyAaRA==, - } - - "@types/react@18.3.5": - resolution: - { - integrity: sha512-WeqMfGJLGuLCqHGYRGHxnKrXcTitc6L/nBUWfWPcTarG3t9PsquqUMuVeXZeca+mglY4Vo5GZjCi0A3Or2lnxA==, - } - - "@types/redux-actions@2.6.5": - resolution: - { - integrity: sha512-RgXOigay5cNweP+xH1ru+Vaaj1xXYLpWIfSVO8cSA8Ii2xvR+HRfWYdLe1UVOA8X0kIklalGOa0DTDyld0obkg==, - } - - "@types/resolve@1.17.1": - resolution: - { - integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==, - } - - "@types/resolve@1.20.2": - resolution: - { - integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==, - } - - "@types/resolve@1.20.6": - resolution: - { - integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==, - } - - "@types/responselike@1.0.3": - resolution: - { - integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==, - } - - "@types/retry@0.12.0": - resolution: - { - integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==, - } - - "@types/retry@0.12.2": - resolution: - { - integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==, - } - - "@types/ripemd160@2.0.3": - resolution: - { - integrity: sha512-/GrtUuorXQGl4/qCgo0YhzHaDbWc6i2kIBt5q7gA0np+/5GmLMK6aYb0pUYFfJ4Y2oraKkrDW4falfLip3Hzdw==, - } - - "@types/secp256k1@4.0.6": - resolution: - { - integrity: sha512-hHxJU6PAEUn0TP4S/ZOzuTUvJWuZ6eIKeNKb5RBpODvSl6hp1Wrw4s7ATY50rklRCScUDpHzVA/DQdSjJ3UoYQ==, - } - - "@types/semver@7.5.7": - resolution: - { - integrity: sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg==, - } - - "@types/semver@7.5.8": - resolution: - { - integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==, - } - - "@types/send@0.17.4": - resolution: - { - integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==, - } - - "@types/serve-handler@6.1.4": - resolution: - { - integrity: sha512-aXy58tNie0NkuSCY291xUxl0X+kGYy986l4kqW6Gi4kEXgr6Tx0fpSH7YwUSa5usPpG3s9DBeIR6hHcDtL2IvQ==, - } - - "@types/serve-index@1.9.4": - resolution: - { - integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==, - } - - "@types/serve-static@1.15.5": - resolution: - { - integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==, - } - - "@types/sha.js@2.4.4": - resolution: - { - integrity: sha512-Qukd+D6S2Hm0wLVt2Vh+/eWBIoUt+wF8jWjBsG4F8EFQRwKtYvtXCPcNl2OEUQ1R+eTr3xuSaBYUyM3WD1x/Qw==, - } - - "@types/shimmer@1.2.0": - resolution: - { - integrity: sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==, - } - - "@types/sockjs@0.3.36": - resolution: - { - integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==, - } - - "@types/stack-utils@2.0.3": - resolution: - { - integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==, - } - - "@types/statuses@2.0.5": - resolution: - { - integrity: sha512-jmIUGWrAiwu3dZpxntxieC+1n/5c3mjrImkmOSQ2NC5uP6cYO4aAZDdSmRcI5C1oiTmqlZGHC+/NmJrKogbP5A==, - } - - "@types/stream-chain@2.0.4": - resolution: - { - integrity: sha512-V7TsWLHrx79KumkHqSD7F8eR6POpEuWb6PuXJ7s/dRHAf3uVst3Jkp1yZ5XqIfECZLQ4a28vBVstTErmsMBvaQ==, - } - - "@types/stream-json@1.7.7": - resolution: - { - integrity: sha512-hHG7cLQ09H/m9i0jzL6UJAeLLxIWej90ECn0svO4T8J0nGcl89xZDQ2ujT4WKlvg0GWkcxJbjIDzW/v7BYUM6Q==, - } - - "@types/styled-components-react-native@5.2.5": - resolution: - { - integrity: sha512-hDYioy4gAusO9NJI0n1e0Dwne4zofRVjou8i+FdNNz4vOG/iEBS99Rl87ybytjx/WD3NXqZQJ5g98AA+ZW7JKA==, - } - peerDependencies: - "@types/react": "*" + '@types/react': + optional: true + + '@types/react@18.2.73': + resolution: {integrity: sha512-XcGdod0Jjv84HOC7N5ziY3x+qL0AfmubvKOZ9hJjJ2yd5EE+KYjWhdOjt387e9HPheHkdggF9atTifMRtyAaRA==} + + '@types/react@18.3.5': + resolution: {integrity: sha512-WeqMfGJLGuLCqHGYRGHxnKrXcTitc6L/nBUWfWPcTarG3t9PsquqUMuVeXZeca+mglY4Vo5GZjCi0A3Or2lnxA==} + + '@types/redux-actions@2.6.5': + resolution: {integrity: sha512-RgXOigay5cNweP+xH1ru+Vaaj1xXYLpWIfSVO8cSA8Ii2xvR+HRfWYdLe1UVOA8X0kIklalGOa0DTDyld0obkg==} + + '@types/resolve@1.17.1': + resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} + + '@types/resolve@1.20.2': + resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} + + '@types/resolve@1.20.6': + resolution: {integrity: sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==} + + '@types/responselike@1.0.3': + resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} + + '@types/retry@0.12.0': + resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} + + '@types/retry@0.12.2': + resolution: {integrity: sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==} + + '@types/ripemd160@2.0.3': + resolution: {integrity: sha512-/GrtUuorXQGl4/qCgo0YhzHaDbWc6i2kIBt5q7gA0np+/5GmLMK6aYb0pUYFfJ4Y2oraKkrDW4falfLip3Hzdw==} + + '@types/secp256k1@4.0.6': + resolution: {integrity: sha512-hHxJU6PAEUn0TP4S/ZOzuTUvJWuZ6eIKeNKb5RBpODvSl6hp1Wrw4s7ATY50rklRCScUDpHzVA/DQdSjJ3UoYQ==} + + '@types/semver@7.5.7': + resolution: {integrity: sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg==} + + '@types/semver@7.5.8': + resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} + + '@types/send@0.17.4': + resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} + + '@types/serve-handler@6.1.4': + resolution: {integrity: sha512-aXy58tNie0NkuSCY291xUxl0X+kGYy986l4kqW6Gi4kEXgr6Tx0fpSH7YwUSa5usPpG3s9DBeIR6hHcDtL2IvQ==} + + '@types/serve-index@1.9.4': + resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} + + '@types/serve-static@1.15.5': + resolution: {integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==} + + '@types/sha.js@2.4.4': + resolution: {integrity: sha512-Qukd+D6S2Hm0wLVt2Vh+/eWBIoUt+wF8jWjBsG4F8EFQRwKtYvtXCPcNl2OEUQ1R+eTr3xuSaBYUyM3WD1x/Qw==} + + '@types/shimmer@1.2.0': + resolution: {integrity: sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==} + + '@types/sockjs@0.3.36': + resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} + + '@types/stack-utils@2.0.3': + resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==} + + '@types/statuses@2.0.5': + resolution: {integrity: sha512-jmIUGWrAiwu3dZpxntxieC+1n/5c3mjrImkmOSQ2NC5uP6cYO4aAZDdSmRcI5C1oiTmqlZGHC+/NmJrKogbP5A==} + + '@types/stream-chain@2.0.4': + resolution: {integrity: sha512-V7TsWLHrx79KumkHqSD7F8eR6POpEuWb6PuXJ7s/dRHAf3uVst3Jkp1yZ5XqIfECZLQ4a28vBVstTErmsMBvaQ==} + + '@types/stream-json@1.7.7': + resolution: {integrity: sha512-hHG7cLQ09H/m9i0jzL6UJAeLLxIWej90ECn0svO4T8J0nGcl89xZDQ2ujT4WKlvg0GWkcxJbjIDzW/v7BYUM6Q==} + + '@types/styled-components-react-native@5.2.5': + resolution: {integrity: sha512-hDYioy4gAusO9NJI0n1e0Dwne4zofRVjou8i+FdNNz4vOG/iEBS99Rl87ybytjx/WD3NXqZQJ5g98AA+ZW7JKA==} + peerDependencies: + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true - "@types/styled-components@5.1.34": - resolution: - { - integrity: sha512-mmiVvwpYklFIv9E8qfxuPyIt/OuyIrn6gMOAMOFUO3WJfSrSE+sGUoa4PiZj77Ut7bKZpaa6o1fBKS/4TOEvnA==, - } + '@types/styled-components@5.1.34': + resolution: {integrity: sha512-mmiVvwpYklFIv9E8qfxuPyIt/OuyIrn6gMOAMOFUO3WJfSrSE+sGUoa4PiZj77Ut7bKZpaa6o1fBKS/4TOEvnA==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": - optional: true - - "@types/styled-system@5.1.22": - resolution: - { - integrity: sha512-NbRp37zWcrf/+Qf2NumdyZfhSx1dzJ50zgfKvnezYJx1HTRUMVYY8jtWvK1eoIAa6F5sXwHLhE8oXNu15ThBAA==, - } - - "@types/stylis@4.2.0": - resolution: - { - integrity: sha512-n4sx2bqL0mW1tvDf/loQ+aMX7GQD3lc3fkCMC55VFNDu/vBOabO+LTIeXKM14xK0ppk5TUGcWRjiSpIlUpghKw==, - } - - "@types/supports-color@8.1.3": - resolution: - { - integrity: sha512-Hy6UMpxhE3j1tLpl27exp1XqHD7n8chAiNPzWfz16LPZoMMoSc4dzLl6w9qijkEb/r5O1ozdu1CWGA2L83ZeZg==, - } - - "@types/testing-library__jest-dom@5.14.9": - resolution: - { - integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==, - } - - "@types/tough-cookie@4.0.5": - resolution: - { - integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==, - } - - "@types/triple-beam@1.3.5": - resolution: - { - integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==, - } - - "@types/trust__keyto@1.0.4": - resolution: - { - integrity: sha512-qUfZR9LG8txSmbYCGBWiy27yhr1aj7l8JVe8ocdSPnTmeVzslYNBHwRLUu5ITyvqAaQARgB7rA3gDOgph3vQTw==, - } - - "@types/trusted-types@2.0.7": - resolution: - { - integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==, - } - - "@types/tunnel@0.0.3": - resolution: - { - integrity: sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==, - } - - "@types/unist@2.0.10": - resolution: - { - integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==, - } - - "@types/unist@3.0.2": - resolution: - { - integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==, - } - - "@types/unzipper@0.10.9": - resolution: - { - integrity: sha512-vHbmFZAw8emNAOVkHVbS3qBnbr0x/qHQZ+ei1HE7Oy6Tyrptl+jpqnOX+BF5owcu/HZLOV0nJK+K9sjs1Ox2JA==, - } - - "@types/utf8@2.1.6": - resolution: - { - integrity: sha512-pRs2gYF5yoKYrgSaira0DJqVg2tFuF+Qjp838xS7K+mJyY2jJzjsrl6y17GbIa4uMRogMbxs+ghNCvKg6XyNrA==, - } - - "@types/uuid@8.3.4": - resolution: - { - integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==, - } - - "@types/uuid@9.0.8": - resolution: - { - integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==, - } - - "@types/verror@1.10.10": - resolution: - { - integrity: sha512-l4MM0Jppn18hb9xmM6wwD1uTdShpf9Pn80aXTStnK1C94gtPvJcV2FrDmbOQUAQfJ1cKZHktkQUDwEqaAKXMMg==, - } - - "@types/w3c-web-hid@1.0.6": - resolution: - { - integrity: sha512-IWyssXmRDo6K7s31dxf+U+x/XUWuVsl9qUIYbJmpUHPcTv/COfBCKw/F0smI45+gPV34brjyP30BFcIsHgYWLA==, - } - - "@types/w3c-web-usb@1.0.10": - resolution: - { - integrity: sha512-CHgUI5kTc/QLMP8hODUHhge0D4vx+9UiAwIGiT0sTy/B2XpdX1U5rJt6JSISgr6ikRT7vxV9EVAFeYZqUnl1gQ==, - } - - "@types/web-bluetooth@0.0.20": - resolution: - { - integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==, - } - - "@types/webpack-env@1.18.4": - resolution: - { - integrity: sha512-I6e+9+HtWADAWeeJWDFQtdk4EVSAbj6Rtz4q8fJ7mSr1M0jzlFcs8/HZ+Xb5SHzVm1dxH7aUiI+A8kA8Gcrm0A==, - } - - "@types/which@3.0.3": - resolution: - { - integrity: sha512-2C1+XoY0huExTbs8MQv1DuS5FS86+SEjdM9F/+GS61gg5Hqbtj8ZiDSx8MfWcyei907fIPbfPGCOrNUTnVHY1g==, - } - - "@types/wrap-ansi@3.0.0": - resolution: - { - integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==, - } - - "@types/write-file-atomic@4.0.3": - resolution: - { - integrity: sha512-qdo+vZRchyJIHNeuI1nrpsLw+hnkgqP/8mlaN6Wle/NKhydHmUN9l4p3ZE8yP90AJNJW4uB8HQhedb4f1vNayQ==, - } - - "@types/ws@7.4.7": - resolution: - { - integrity: sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==, - } - - "@types/ws@8.5.10": - resolution: - { - integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==, - } - - "@types/yargs-parser@21.0.3": - resolution: - { - integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==, - } - - "@types/yargs@13.0.12": - resolution: - { - integrity: sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==, - } - - "@types/yargs@15.0.19": - resolution: - { - integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==, - } - - "@types/yargs@16.0.9": - resolution: - { - integrity: sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==, - } - - "@types/yargs@17.0.32": - resolution: - { - integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==, - } - - "@types/yauzl@2.10.3": - resolution: - { - integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==, - } - - "@typescript-eslint/eslint-plugin@5.62.0": - resolution: - { - integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - peerDependencies: - "@typescript-eslint/parser": ^5.0.0 + '@types/react': + optional: true + + '@types/styled-system@5.1.22': + resolution: {integrity: sha512-NbRp37zWcrf/+Qf2NumdyZfhSx1dzJ50zgfKvnezYJx1HTRUMVYY8jtWvK1eoIAa6F5sXwHLhE8oXNu15ThBAA==} + + '@types/stylis@4.2.0': + resolution: {integrity: sha512-n4sx2bqL0mW1tvDf/loQ+aMX7GQD3lc3fkCMC55VFNDu/vBOabO+LTIeXKM14xK0ppk5TUGcWRjiSpIlUpghKw==} + + '@types/supports-color@8.1.3': + resolution: {integrity: sha512-Hy6UMpxhE3j1tLpl27exp1XqHD7n8chAiNPzWfz16LPZoMMoSc4dzLl6w9qijkEb/r5O1ozdu1CWGA2L83ZeZg==} + + '@types/testing-library__jest-dom@5.14.9': + resolution: {integrity: sha512-FSYhIjFlfOpGSRyVoMBMuS3ws5ehFQODymf3vlI7U1K8c7PHwWwFY7VREfmsuzHSOnoKs/9/Y983ayOs7eRzqw==} + + '@types/tough-cookie@4.0.5': + resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} + + '@types/triple-beam@1.3.5': + resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==} + + '@types/trust__keyto@1.0.4': + resolution: {integrity: sha512-qUfZR9LG8txSmbYCGBWiy27yhr1aj7l8JVe8ocdSPnTmeVzslYNBHwRLUu5ITyvqAaQARgB7rA3gDOgph3vQTw==} + + '@types/trusted-types@2.0.7': + resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} + + '@types/tunnel@0.0.3': + resolution: {integrity: sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==} + + '@types/unist@2.0.10': + resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} + + '@types/unist@3.0.2': + resolution: {integrity: sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==} + + '@types/unzipper@0.10.9': + resolution: {integrity: sha512-vHbmFZAw8emNAOVkHVbS3qBnbr0x/qHQZ+ei1HE7Oy6Tyrptl+jpqnOX+BF5owcu/HZLOV0nJK+K9sjs1Ox2JA==} + + '@types/utf8@2.1.6': + resolution: {integrity: sha512-pRs2gYF5yoKYrgSaira0DJqVg2tFuF+Qjp838xS7K+mJyY2jJzjsrl6y17GbIa4uMRogMbxs+ghNCvKg6XyNrA==} + + '@types/uuid@8.3.4': + resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==} + + '@types/uuid@9.0.8': + resolution: {integrity: sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==} + + '@types/verror@1.10.10': + resolution: {integrity: sha512-l4MM0Jppn18hb9xmM6wwD1uTdShpf9Pn80aXTStnK1C94gtPvJcV2FrDmbOQUAQfJ1cKZHktkQUDwEqaAKXMMg==} + + '@types/w3c-web-hid@1.0.6': + resolution: {integrity: sha512-IWyssXmRDo6K7s31dxf+U+x/XUWuVsl9qUIYbJmpUHPcTv/COfBCKw/F0smI45+gPV34brjyP30BFcIsHgYWLA==} + + '@types/w3c-web-usb@1.0.10': + resolution: {integrity: sha512-CHgUI5kTc/QLMP8hODUHhge0D4vx+9UiAwIGiT0sTy/B2XpdX1U5rJt6JSISgr6ikRT7vxV9EVAFeYZqUnl1gQ==} + + '@types/web-bluetooth@0.0.20': + resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==} + + '@types/webpack-env@1.18.4': + resolution: {integrity: sha512-I6e+9+HtWADAWeeJWDFQtdk4EVSAbj6Rtz4q8fJ7mSr1M0jzlFcs8/HZ+Xb5SHzVm1dxH7aUiI+A8kA8Gcrm0A==} + + '@types/which@3.0.3': + resolution: {integrity: sha512-2C1+XoY0huExTbs8MQv1DuS5FS86+SEjdM9F/+GS61gg5Hqbtj8ZiDSx8MfWcyei907fIPbfPGCOrNUTnVHY1g==} + + '@types/wrap-ansi@3.0.0': + resolution: {integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==} + + '@types/write-file-atomic@4.0.3': + resolution: {integrity: sha512-qdo+vZRchyJIHNeuI1nrpsLw+hnkgqP/8mlaN6Wle/NKhydHmUN9l4p3ZE8yP90AJNJW4uB8HQhedb4f1vNayQ==} + + '@types/ws@7.4.7': + resolution: {integrity: sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==} + + '@types/ws@8.5.10': + resolution: {integrity: sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==} + + '@types/yargs-parser@21.0.3': + resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==} + + '@types/yargs@13.0.12': + resolution: {integrity: sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==} + + '@types/yargs@15.0.19': + resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==} + + '@types/yargs@16.0.9': + resolution: {integrity: sha512-tHhzvkFXZQeTECenFoRljLBYPZJ7jAVxqqtEI0qTLOmuultnFp4I9yKE17vTuhf7BkhCu7I4XuemPgikDVuYqA==} + + '@types/yargs@17.0.32': + resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==} + + '@types/yauzl@2.10.3': + resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} + + '@typescript-eslint/eslint-plugin@5.62.0': + resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/parser': ^5.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@typescript-eslint/eslint-plugin@6.21.0": - resolution: - { - integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==, - } - engines: { node: ^16.0.0 || >=18.0.0 } + '@typescript-eslint/eslint-plugin@6.21.0': + resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: - "@typescript-eslint/parser": ^6.0.0 || ^6.0.0-alpha + '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha eslint: ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@typescript-eslint/experimental-utils@5.62.0": - resolution: - { - integrity: sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + '@typescript-eslint/experimental-utils@5.62.0': + resolution: {integrity: sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - "@typescript-eslint/parser@5.62.0": - resolution: - { - integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + '@typescript-eslint/parser@5.62.0': + resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@typescript-eslint/parser@6.21.0": - resolution: - { - integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==, - } - engines: { node: ^16.0.0 || >=18.0.0 } + '@typescript-eslint/parser@6.21.0': + resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@typescript-eslint/scope-manager@5.62.0": - resolution: - { - integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - - "@typescript-eslint/scope-manager@6.21.0": - resolution: - { - integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==, - } - engines: { node: ^16.0.0 || >=18.0.0 } - - "@typescript-eslint/type-utils@5.62.0": - resolution: - { - integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - peerDependencies: - eslint: "*" - typescript: "*" + '@typescript-eslint/scope-manager@5.62.0': + resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@typescript-eslint/scope-manager@6.21.0': + resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==} + engines: {node: ^16.0.0 || >=18.0.0} + + '@typescript-eslint/type-utils@5.62.0': + resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '*' + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@typescript-eslint/type-utils@6.21.0": - resolution: - { - integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==, - } - engines: { node: ^16.0.0 || >=18.0.0 } + '@typescript-eslint/type-utils@6.21.0': + resolution: {integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@typescript-eslint/types@5.62.0": - resolution: - { - integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - - "@typescript-eslint/types@6.21.0": - resolution: - { - integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==, - } - engines: { node: ^16.0.0 || >=18.0.0 } - - "@typescript-eslint/typescript-estree@5.62.0": - resolution: - { - integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - peerDependencies: - typescript: "*" + '@typescript-eslint/types@5.62.0': + resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@typescript-eslint/types@6.21.0': + resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==} + engines: {node: ^16.0.0 || >=18.0.0} + + '@typescript-eslint/typescript-estree@5.62.0': + resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@typescript-eslint/typescript-estree@6.21.0": - resolution: - { - integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==, - } - engines: { node: ^16.0.0 || >=18.0.0 } + '@typescript-eslint/typescript-estree@6.21.0': + resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true - "@typescript-eslint/utils@5.62.0": - resolution: - { - integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + '@typescript-eslint/utils@5.62.0': + resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - "@typescript-eslint/utils@6.21.0": - resolution: - { - integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==, - } - engines: { node: ^16.0.0 || >=18.0.0 } + '@typescript-eslint/utils@6.21.0': + resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==} + engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 - "@typescript-eslint/visitor-keys@5.62.0": - resolution: - { - integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - - "@typescript-eslint/visitor-keys@6.21.0": - resolution: - { - integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==, - } - engines: { node: ^16.0.0 || >=18.0.0 } - - "@uiw/codemirror-extensions-basic-setup@4.22.2": - resolution: - { - integrity: sha512-zcHGkldLFN3cGoI5XdOGAkeW24yaAgrDEYoyPyWHODmPiNwybQQoZGnH3qUdzZwUaXtAcLWoAeOPzfNRW2yGww==, - } - peerDependencies: - "@codemirror/view": ">=6.0.0" - - "@uiw/react-codemirror@4.22.2": - resolution: - { - integrity: sha512-okCSl+WJG63gRx8Fdz7v0C6RakBQnbb3pHhuzIgDB+fwhipgFodSnu2n9oOsQesJ5YQ7mSOcKMgX0JEsu4nnfQ==, - } - peerDependencies: - "@codemirror/view": ">=6.0.0" - react: ">=16.8.0" - react-dom: ">=16.8.0" - - "@ungap/structured-clone@1.2.0": - resolution: - { - integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==, - } - - "@urql/core@2.3.6": - resolution: - { - integrity: sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==, - } + '@typescript-eslint/visitor-keys@5.62.0': + resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@typescript-eslint/visitor-keys@6.21.0': + resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==} + engines: {node: ^16.0.0 || >=18.0.0} + + '@uiw/codemirror-extensions-basic-setup@4.22.2': + resolution: {integrity: sha512-zcHGkldLFN3cGoI5XdOGAkeW24yaAgrDEYoyPyWHODmPiNwybQQoZGnH3qUdzZwUaXtAcLWoAeOPzfNRW2yGww==} + peerDependencies: + '@codemirror/view': '>=6.0.0' + + '@uiw/react-codemirror@4.22.2': + resolution: {integrity: sha512-okCSl+WJG63gRx8Fdz7v0C6RakBQnbb3pHhuzIgDB+fwhipgFodSnu2n9oOsQesJ5YQ7mSOcKMgX0JEsu4nnfQ==} + peerDependencies: + '@codemirror/view': '>=6.0.0' + react: '>=16.8.0' + react-dom: '>=16.8.0' + + '@ungap/structured-clone@1.2.0': + resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + + '@urql/core@2.3.6': + resolution: {integrity: sha512-PUxhtBh7/8167HJK6WqBv6Z0piuiaZHQGYbhwpNL9aIQmLROPEdaUYkY4wh45wPQXcTpnd11l0q3Pw+TI11pdw==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - "@urql/exchange-retry@0.3.0": - resolution: - { - integrity: sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg==, - } + '@urql/exchange-retry@0.3.0': + resolution: {integrity: sha512-hHqer2mcdVC0eYnVNbWyi28AlGOPb2vjH3lP3/Bc8Lc8BjhMsDwFMm7WhoP5C1+cfbr/QJ6Er3H/L08wznXxfg==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 - "@vechain/ethers@4.0.27-5": - resolution: - { - integrity: sha512-dR+rTUauPJpqHNBdEgV6Xh+o009uCRPCvN2HWYIAzZP2SvgsPHLxNUzeRbRKhNzz/HC8HjWNvECRxODF88B03Q==, - } + '@vechain/ethers@4.0.27-5': + resolution: {integrity: sha512-dR+rTUauPJpqHNBdEgV6Xh+o009uCRPCvN2HWYIAzZP2SvgsPHLxNUzeRbRKhNzz/HC8HjWNvECRxODF88B03Q==} - "@vitejs/plugin-react@3.1.0": - resolution: - { - integrity: sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==, - } - engines: { node: ^14.18.0 || >=16.0.0 } + '@vitejs/plugin-react@3.1.0': + resolution: {integrity: sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==} + engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.1.0-beta.0 - "@vitejs/plugin-react@4.2.1": - resolution: - { - integrity: sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==, - } - engines: { node: ^14.18.0 || >=16.0.0 } + '@vitejs/plugin-react@4.2.1': + resolution: {integrity: sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==} + engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.2.0 || ^5.0.0 - "@vue/cli-overlay@5.0.8": - resolution: - { - integrity: sha512-KmtievE/B4kcXp6SuM2gzsnSd8WebkQpg3XaB6GmFh1BJGRqa1UiW9up7L/Q67uOdTigHxr5Ar2lZms4RcDjwQ==, - } + '@vue/cli-overlay@5.0.8': + resolution: {integrity: sha512-KmtievE/B4kcXp6SuM2gzsnSd8WebkQpg3XaB6GmFh1BJGRqa1UiW9up7L/Q67uOdTigHxr5Ar2lZms4RcDjwQ==} - "@vue/cli-plugin-router@5.0.8": - resolution: - { - integrity: sha512-Gmv4dsGdAsWPqVijz3Ux2OS2HkMrWi1ENj2cYL75nUeL+Xj5HEstSqdtfZ0b1q9NCce+BFB6QnHfTBXc/fCvMg==, - } + '@vue/cli-plugin-router@5.0.8': + resolution: {integrity: sha512-Gmv4dsGdAsWPqVijz3Ux2OS2HkMrWi1ENj2cYL75nUeL+Xj5HEstSqdtfZ0b1q9NCce+BFB6QnHfTBXc/fCvMg==} peerDependencies: - "@vue/cli-service": ^3.0.0 || ^4.0.0 || ^5.0.0-0 + '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 - "@vue/cli-plugin-typescript@5.0.8": - resolution: - { - integrity: sha512-JKJOwzJshBqsmp4yLBexwVMebOZ4VGJgbnYvmHVxasJOStF2RxwyW28ZF+zIvASGdat4sAUuo/3mAQyVhm7JHg==, - } + '@vue/cli-plugin-typescript@5.0.8': + resolution: {integrity: sha512-JKJOwzJshBqsmp4yLBexwVMebOZ4VGJgbnYvmHVxasJOStF2RxwyW28ZF+zIvASGdat4sAUuo/3mAQyVhm7JHg==} peerDependencies: - "@vue/cli-service": ^3.0.0 || ^4.0.0 || ^5.0.0-0 + '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 cache-loader: ^4.1.0 - typescript: ">=2" + typescript: '>=2' vue: ^2 || ^3.2.13 vue-template-compiler: ^2.0.0 peerDependenciesMeta: @@ -21378,30 +15777,24 @@ packages: vue-template-compiler: optional: true - "@vue/cli-plugin-vuex@5.0.8": - resolution: - { - integrity: sha512-HSYWPqrunRE5ZZs8kVwiY6oWcn95qf/OQabwLfprhdpFWAGtLStShjsGED2aDpSSeGAskQETrtR/5h7VqgIlBA==, - } + '@vue/cli-plugin-vuex@5.0.8': + resolution: {integrity: sha512-HSYWPqrunRE5ZZs8kVwiY6oWcn95qf/OQabwLfprhdpFWAGtLStShjsGED2aDpSSeGAskQETrtR/5h7VqgIlBA==} peerDependencies: - "@vue/cli-service": ^3.0.0 || ^4.0.0 || ^5.0.0-0 + '@vue/cli-service': ^3.0.0 || ^4.0.0 || ^5.0.0-0 - "@vue/cli-service@5.0.8": - resolution: - { - integrity: sha512-nV7tYQLe7YsTtzFrfOMIHc5N2hp5lHG2rpYr0aNja9rNljdgcPZLyQRb2YRivTHqTv7lI962UXFURcpStHgyFw==, - } - engines: { node: ^12.0.0 || >= 14.0.0 } + '@vue/cli-service@5.0.8': + resolution: {integrity: sha512-nV7tYQLe7YsTtzFrfOMIHc5N2hp5lHG2rpYr0aNja9rNljdgcPZLyQRb2YRivTHqTv7lI962UXFURcpStHgyFw==} + engines: {node: ^12.0.0 || >= 14.0.0} hasBin: true peerDependencies: - cache-loader: "*" - less-loader: "*" - pug-plain-loader: "*" - raw-loader: "*" - sass-loader: "*" - stylus-loader: "*" + cache-loader: '*' + less-loader: '*' + pug-plain-loader: '*' + raw-loader: '*' + sass-loader: '*' + stylus-loader: '*' vue-template-compiler: ^2.0.0 - webpack-sources: "*" + webpack-sources: '*' peerDependenciesMeta: cache-loader: optional: true @@ -21420,712 +15813,400 @@ packages: webpack-sources: optional: true - "@vue/cli-shared-utils@5.0.8": - resolution: - { - integrity: sha512-uK2YB7bBVuQhjOJF+O52P9yFMXeJVj7ozqJkwYE9PlMHL1LMHjtCYm4cSdOebuPzyP+/9p0BimM/OqxsevIopQ==, - } - - "@vue/compiler-core@3.4.21": - resolution: - { - integrity: sha512-MjXawxZf2SbZszLPYxaFCjxfibYrzr3eYbKxwpLR9EQN+oaziSu3qKVbwBERj1IFIB8OLUewxB5m/BFzi613og==, - } - - "@vue/compiler-dom@3.4.21": - resolution: - { - integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==, - } - - "@vue/compiler-sfc@2.7.16": - resolution: - { - integrity: sha512-KWhJ9k5nXuNtygPU7+t1rX6baZeqOYLEforUPjgNDBnLicfHCoi48H87Q8XyLZOrNNsmhuwKqtpDQWjEFe6Ekg==, - } - - "@vue/compiler-sfc@3.4.21": - resolution: - { - integrity: sha512-me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ==, - } - - "@vue/compiler-ssr@3.4.21": - resolution: - { - integrity: sha512-M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q==, - } - - "@vue/component-compiler-utils@3.3.0": - resolution: - { - integrity: sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==, - } - - "@vue/shared@3.4.21": - resolution: - { - integrity: sha512-PuJe7vDIi6VYSinuEbUIQgMIRZGgM8e4R+G+/dQTk0X1NEdvgvvgv7m+rfmDH1gZzyA1OjjoWskvHlfRNfQf3g==, - } - - "@vue/web-component-wrapper@1.3.0": - resolution: - { - integrity: sha512-Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA==, - } - - "@webassemblyjs/ast@1.12.1": - resolution: - { - integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==, - } - - "@webassemblyjs/floating-point-hex-parser@1.11.6": - resolution: - { - integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==, - } - - "@webassemblyjs/helper-api-error@1.11.6": - resolution: - { - integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==, - } - - "@webassemblyjs/helper-buffer@1.12.1": - resolution: - { - integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==, - } - - "@webassemblyjs/helper-numbers@1.11.6": - resolution: - { - integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==, - } - - "@webassemblyjs/helper-wasm-bytecode@1.11.6": - resolution: - { - integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==, - } - - "@webassemblyjs/helper-wasm-section@1.12.1": - resolution: - { - integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==, - } - - "@webassemblyjs/ieee754@1.11.6": - resolution: - { - integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==, - } - - "@webassemblyjs/leb128@1.11.6": - resolution: - { - integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==, - } - - "@webassemblyjs/utf8@1.11.6": - resolution: - { - integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==, - } - - "@webassemblyjs/wasm-edit@1.12.1": - resolution: - { - integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==, - } - - "@webassemblyjs/wasm-gen@1.12.1": - resolution: - { - integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==, - } - - "@webassemblyjs/wasm-opt@1.12.1": - resolution: - { - integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==, - } - - "@webassemblyjs/wasm-parser@1.12.1": - resolution: - { - integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==, - } - - "@webassemblyjs/wast-printer@1.12.1": - resolution: - { - integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==, - } - - "@webpack-cli/configtest@1.2.0": - resolution: - { - integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==, - } + '@vue/cli-shared-utils@5.0.8': + resolution: {integrity: sha512-uK2YB7bBVuQhjOJF+O52P9yFMXeJVj7ozqJkwYE9PlMHL1LMHjtCYm4cSdOebuPzyP+/9p0BimM/OqxsevIopQ==} + + '@vue/compiler-core@3.4.21': + resolution: {integrity: sha512-MjXawxZf2SbZszLPYxaFCjxfibYrzr3eYbKxwpLR9EQN+oaziSu3qKVbwBERj1IFIB8OLUewxB5m/BFzi613og==} + + '@vue/compiler-dom@3.4.21': + resolution: {integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==} + + '@vue/compiler-sfc@2.7.16': + resolution: {integrity: sha512-KWhJ9k5nXuNtygPU7+t1rX6baZeqOYLEforUPjgNDBnLicfHCoi48H87Q8XyLZOrNNsmhuwKqtpDQWjEFe6Ekg==} + + '@vue/compiler-sfc@3.4.21': + resolution: {integrity: sha512-me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ==} + + '@vue/compiler-ssr@3.4.21': + resolution: {integrity: sha512-M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q==} + + '@vue/component-compiler-utils@3.3.0': + resolution: {integrity: sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==} + + '@vue/shared@3.4.21': + resolution: {integrity: sha512-PuJe7vDIi6VYSinuEbUIQgMIRZGgM8e4R+G+/dQTk0X1NEdvgvvgv7m+rfmDH1gZzyA1OjjoWskvHlfRNfQf3g==} + + '@vue/web-component-wrapper@1.3.0': + resolution: {integrity: sha512-Iu8Tbg3f+emIIMmI2ycSI8QcEuAUgPTgHwesDU1eKMLE4YC/c/sFbGc70QgMq31ijRftV0R7vCm9co6rldCeOA==} + + '@webassemblyjs/ast@1.12.1': + resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==} + + '@webassemblyjs/floating-point-hex-parser@1.11.6': + resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==} + + '@webassemblyjs/helper-api-error@1.11.6': + resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==} + + '@webassemblyjs/helper-buffer@1.12.1': + resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==} + + '@webassemblyjs/helper-numbers@1.11.6': + resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==} + + '@webassemblyjs/helper-wasm-bytecode@1.11.6': + resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==} + + '@webassemblyjs/helper-wasm-section@1.12.1': + resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==} + + '@webassemblyjs/ieee754@1.11.6': + resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==} + + '@webassemblyjs/leb128@1.11.6': + resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==} + + '@webassemblyjs/utf8@1.11.6': + resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==} + + '@webassemblyjs/wasm-edit@1.12.1': + resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==} + + '@webassemblyjs/wasm-gen@1.12.1': + resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==} + + '@webassemblyjs/wasm-opt@1.12.1': + resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==} + + '@webassemblyjs/wasm-parser@1.12.1': + resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==} + + '@webassemblyjs/wast-printer@1.12.1': + resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==} + + '@webpack-cli/configtest@1.2.0': + resolution: {integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==} peerDependencies: webpack: 4.x.x || 5.x.x webpack-cli: 4.x.x - "@webpack-cli/info@1.5.0": - resolution: - { - integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==, - } + '@webpack-cli/info@1.5.0': + resolution: {integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==} peerDependencies: webpack-cli: 4.x.x - "@webpack-cli/serve@1.7.0": - resolution: - { - integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==, - } + '@webpack-cli/serve@1.7.0': + resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==} peerDependencies: webpack-cli: 4.x.x - webpack-dev-server: "*" + webpack-dev-server: '*' peerDependenciesMeta: webpack-dev-server: optional: true - "@xmldom/xmldom@0.7.13": - resolution: - { - integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==, - } - engines: { node: ">=10.0.0" } - - "@xmldom/xmldom@0.8.10": - resolution: - { - integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==, - } - engines: { node: ">=10.0.0" } - - "@xrplf/isomorphic@1.0.0": - resolution: - { - integrity: sha512-IyMsxyjkJK8YWq566KyuFuh/PUiLzQ02RbUO5qa+vEQb6zIAR9MzFwN7wBmBy7wmKkjligcdNDMG5EaBRH8FxQ==, - } - engines: { node: ">=16.0.0" } - - "@xstate/react@1.6.3": - resolution: - { - integrity: sha512-NCUReRHPGvvCvj2yLZUTfR0qVp6+apc8G83oXSjN4rl89ZjyujiKrTff55bze/HrsvCsP/sUJASf2n0nzMF1KQ==, - } - peerDependencies: - "@xstate/fsm": ^1.0.0 + '@xmldom/xmldom@0.7.13': + resolution: {integrity: sha512-lm2GW5PkosIzccsaZIz7tp8cPADSIlIHWDFTR1N0SzfinhhYgeIQjFMz4rYzanCScr3DqQLeomUDArp6MWKm+g==} + engines: {node: '>=10.0.0'} + + '@xmldom/xmldom@0.8.10': + resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==} + engines: {node: '>=10.0.0'} + + '@xrplf/isomorphic@1.0.0': + resolution: {integrity: sha512-IyMsxyjkJK8YWq566KyuFuh/PUiLzQ02RbUO5qa+vEQb6zIAR9MzFwN7wBmBy7wmKkjligcdNDMG5EaBRH8FxQ==} + engines: {node: '>=16.0.0'} + + '@xstate/react@1.6.3': + resolution: {integrity: sha512-NCUReRHPGvvCvj2yLZUTfR0qVp6+apc8G83oXSjN4rl89ZjyujiKrTff55bze/HrsvCsP/sUJASf2n0nzMF1KQ==} + peerDependencies: + '@xstate/fsm': ^1.0.0 react: ^16.8.0 || ^17.0.0 xstate: ^4.11.0 peerDependenciesMeta: - "@xstate/fsm": + '@xstate/fsm': optional: true xstate: optional: true - "@xtuc/ieee754@1.2.0": - resolution: - { - integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==, - } - - "@xtuc/long@4.2.2": - resolution: - { - integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==, - } - - "@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15": - resolution: - { - integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==, - } - engines: { node: ">=14.15.0" } - peerDependencies: - esbuild: ">=0.10.0" - - "@yarnpkg/fslib@2.10.3": - resolution: - { - integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==, - } - engines: { node: ">=12 <14 || 14.2 - 14.9 || >14.10.0" } - - "@yarnpkg/libzip@2.3.0": - resolution: - { - integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==, - } - engines: { node: ">=12 <14 || 14.2 - 14.9 || >14.10.0" } - - "@zondax/cbor@8.1.0-zondax-no-bigint": - resolution: - { - integrity: sha512-dFjJxSIZH2aaiG35iIUqKr3OXnZwy1XVYP5yx78UJP7ftOBxmN3OWX8k+pt4I2l/gjYONW/XMkG+RtTkxvFzlw==, - } - engines: { node: ">=12.19" } - - "@zondax/ledger-casper@2.6.1": - resolution: - { - integrity: sha512-Zk+DOVK9G9Gyt7ua9x/G5iVVSlNfp1l+Tek+7+MoqP5aTr4YznBJIhdnPD8yYSxEEZZLs8Q0tV0TyfsXeRokQw==, - } - - "@zondax/ledger-cosmos-js@3.0.3": - resolution: - { - integrity: sha512-riIAlv8BcPXADIXaIrU8FSVtSlkFHcI9qVMD6eMqVtttynDdTt24ddn6UcgpTk4QiSjMI63n5k4M1T7GomKFgw==, - } - peerDependencies: - "@babel/core": ^7.17.5 - "@types/node": ^17.0.21 - - "@zondax/ledger-filecoin@0.11.2": - resolution: - { - integrity: sha512-S7dTCxSiB9cBQQc2zhLKQolU3EPVQD2tozXKnd5XTfIqBMkFP8Hi/6f7u3a196V3knMR62Sf4gsEM/cVV5QhAg==, - } - - "@zondax/ledger-icp@0.7.0": - resolution: - { - integrity: sha512-kJhGUQJZGA0iRYmUag5PMkcQyG0zFFn3nCfvhhV6E+J9aYJ2KgCGJE+2lbnoeKMhsy1EOJrIKPvpG23Pt4l0Qg==, - } - - "@zondax/ledger-js@0.2.2": - resolution: - { - integrity: sha512-7wOUlRF2+kRaRU2KSzKb7XjPfScwEg3Cjg6NH/p+ikQLJ9eMkGC45NhSxYn8lixIIk+TgZ4yzTNOzFvF836gQw==, - } - - "@zondax/ledger-js@0.8.2": - resolution: - { - integrity: sha512-U/lzNzcJwfYGhhpwUviazihXzIv8w3rM31HbgKWOwF/xVS4/hHSLCGpONEGVwtgYUNDF7L0YfSy95/0H+tGtFA==, - } - - "@zondax/ledger-stacks@1.0.4": - resolution: - { - integrity: sha512-R8CB0CZ2poTzpcG0jhzzXZvXF7axIsmZFhp06aHCUjgz+1df63YbC4tUzyzmseekwqNWnaebWFejQKJ99WiHZA==, - } - - "@zondax/ledger-substrate@0.44.2": - resolution: - { - integrity: sha512-9KSagJVEh2YNtkKsVLZdHM++AGYGRDSdGV2H46sy4qhjGh/p/R4h5amM4OzlQhMTdxc9EW13lHZwoucliosbxw==, - } + '@xtuc/ieee754@1.2.0': + resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + + '@xtuc/long@4.2.2': + resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + + '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15': + resolution: {integrity: sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==} + engines: {node: '>=14.15.0'} + peerDependencies: + esbuild: '>=0.10.0' + + '@yarnpkg/fslib@2.10.3': + resolution: {integrity: sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==} + engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} + + '@yarnpkg/libzip@2.3.0': + resolution: {integrity: sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==} + engines: {node: '>=12 <14 || 14.2 - 14.9 || >14.10.0'} + + '@zondax/cbor@8.1.0-zondax-no-bigint': + resolution: {integrity: sha512-dFjJxSIZH2aaiG35iIUqKr3OXnZwy1XVYP5yx78UJP7ftOBxmN3OWX8k+pt4I2l/gjYONW/XMkG+RtTkxvFzlw==} + engines: {node: '>=12.19'} + + '@zondax/ledger-casper@2.6.1': + resolution: {integrity: sha512-Zk+DOVK9G9Gyt7ua9x/G5iVVSlNfp1l+Tek+7+MoqP5aTr4YznBJIhdnPD8yYSxEEZZLs8Q0tV0TyfsXeRokQw==} + + '@zondax/ledger-cosmos-js@3.0.3': + resolution: {integrity: sha512-riIAlv8BcPXADIXaIrU8FSVtSlkFHcI9qVMD6eMqVtttynDdTt24ddn6UcgpTk4QiSjMI63n5k4M1T7GomKFgw==} + peerDependencies: + '@babel/core': ^7.17.5 + '@types/node': ^17.0.21 + + '@zondax/ledger-filecoin@0.11.2': + resolution: {integrity: sha512-S7dTCxSiB9cBQQc2zhLKQolU3EPVQD2tozXKnd5XTfIqBMkFP8Hi/6f7u3a196V3knMR62Sf4gsEM/cVV5QhAg==} + + '@zondax/ledger-icp@0.7.0': + resolution: {integrity: sha512-kJhGUQJZGA0iRYmUag5PMkcQyG0zFFn3nCfvhhV6E+J9aYJ2KgCGJE+2lbnoeKMhsy1EOJrIKPvpG23Pt4l0Qg==} + + '@zondax/ledger-js@0.2.2': + resolution: {integrity: sha512-7wOUlRF2+kRaRU2KSzKb7XjPfScwEg3Cjg6NH/p+ikQLJ9eMkGC45NhSxYn8lixIIk+TgZ4yzTNOzFvF836gQw==} + + '@zondax/ledger-js@0.8.2': + resolution: {integrity: sha512-U/lzNzcJwfYGhhpwUviazihXzIv8w3rM31HbgKWOwF/xVS4/hHSLCGpONEGVwtgYUNDF7L0YfSy95/0H+tGtFA==} + + '@zondax/ledger-stacks@1.0.4': + resolution: {integrity: sha512-R8CB0CZ2poTzpcG0jhzzXZvXF7axIsmZFhp06aHCUjgz+1df63YbC4tUzyzmseekwqNWnaebWFejQKJ99WiHZA==} + + '@zondax/ledger-substrate@0.44.2': + resolution: {integrity: sha512-9KSagJVEh2YNtkKsVLZdHM++AGYGRDSdGV2H46sy4qhjGh/p/R4h5amM4OzlQhMTdxc9EW13lHZwoucliosbxw==} JSONStream@1.3.5: - resolution: - { - integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==, - } + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true abab@2.0.6: - resolution: - { - integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==, - } + resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} deprecated: Use your platform's native atob() and btoa() methods instead abbrev@1.1.1: - resolution: - { - integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==, - } + resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} abort-controller@3.0.0: - resolution: - { - integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==, - } - engines: { node: ">=6.5" } + resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} + engines: {node: '>=6.5'} abstract-leveldown@0.12.4: - resolution: - { - integrity: sha512-TOod9d5RDExo6STLMGa+04HGkl+TlMfbDnTyN93/ETJ9DpQ0DaYLqcMZlbXvdc4W3vVo1Qrl+WhSp8zvDsJ+jA==, - } + resolution: {integrity: sha512-TOod9d5RDExo6STLMGa+04HGkl+TlMfbDnTyN93/ETJ9DpQ0DaYLqcMZlbXvdc4W3vVo1Qrl+WhSp8zvDsJ+jA==} abstract-leveldown@2.6.1: - resolution: - { - integrity: sha512-z3y8+/Y5i90z+viZGYIg7Tu+muVO4qGHAeug7QQ7oQcMaS1RY+3ccwHTISI/vkVAK9r7snv8lMICNdmrYM/LkA==, - } + resolution: {integrity: sha512-z3y8+/Y5i90z+viZGYIg7Tu+muVO4qGHAeug7QQ7oQcMaS1RY+3ccwHTISI/vkVAK9r7snv8lMICNdmrYM/LkA==} accepts@1.3.8: - resolution: - { - integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} + engines: {node: '>= 0.6'} acorn-globals@6.0.0: - resolution: - { - integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==, - } + resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} acorn-globals@7.0.1: - resolution: - { - integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==, - } + resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} acorn-import-assertions@1.9.0: - resolution: - { - integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==, - } + resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==} peerDependencies: acorn: ^8 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@7.2.0: - resolution: - { - integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} + engines: {node: '>=0.4.0'} acorn-walk@8.3.2: - resolution: - { - integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==} + engines: {node: '>=0.4.0'} acorn@7.4.1: - resolution: - { - integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} + engines: {node: '>=0.4.0'} hasBin: true acorn@8.11.3: - resolution: - { - integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} + engines: {node: '>=0.4.0'} hasBin: true address@1.2.2: - resolution: - { - integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==, - } - engines: { node: ">= 10.0.0" } + resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==} + engines: {node: '>= 10.0.0'} adjust-sourcemap-loader@4.0.0: - resolution: - { - integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==, - } - engines: { node: ">=8.9" } + resolution: {integrity: sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==} + engines: {node: '>=8.9'} aes-js@3.0.0: - resolution: - { - integrity: sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==, - } + resolution: {integrity: sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==} aes-js@3.1.2: - resolution: - { - integrity: sha512-e5pEa2kBnBOgR4Y/p20pskXI74UEz7de8ZGVo58asOtvSVG5YAbJeELPZxOmt+Bnz3rX753YKhfIn4X4l1PPRQ==, - } + resolution: {integrity: sha512-e5pEa2kBnBOgR4Y/p20pskXI74UEz7de8ZGVo58asOtvSVG5YAbJeELPZxOmt+Bnz3rX753YKhfIn4X4l1PPRQ==} aes-js@4.0.0-beta.5: - resolution: - { - integrity: sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==, - } + resolution: {integrity: sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==} agent-base@5.1.1: - resolution: - { - integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==, - } - engines: { node: ">= 6.0.0" } + resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==} + engines: {node: '>= 6.0.0'} agent-base@6.0.2: - resolution: - { - integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==, - } - engines: { node: ">= 6.0.0" } + resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} + engines: {node: '>= 6.0.0'} agentkeepalive@4.5.0: - resolution: - { - integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==, - } - engines: { node: ">= 8.0.0" } + resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==} + engines: {node: '>= 8.0.0'} aggregate-error@3.1.0: - resolution: - { - integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} + engines: {node: '>=8'} airbnb-js-shims@2.2.1: - resolution: - { - integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==, - } + resolution: {integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==} ajv-formats@2.1.1: - resolution: - { - integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==, - } + resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} ajv-keywords@3.5.2: - resolution: - { - integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==, - } + resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} peerDependencies: ajv: ^6.9.1 ajv-keywords@5.1.0: - resolution: - { - integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==, - } + resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==} peerDependencies: ajv: ^8.8.2 ajv@6.12.6: - resolution: - { - integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, - } + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} ajv@8.11.2: - resolution: - { - integrity: sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==, - } + resolution: {integrity: sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg==} ajv@8.16.0: - resolution: - { - integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==, - } + resolution: {integrity: sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==} ajv@8.17.1: - resolution: - { - integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==, - } + resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} algo-msgpack-with-bigint@2.1.1: - resolution: - { - integrity: sha512-F1tGh056XczEaEAqu7s+hlZUDWwOBT70Eq0lfMpBP2YguSQVyxRbprLq5rELXKQOyOaixTWYhMeMQMzP0U5FoQ==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-F1tGh056XczEaEAqu7s+hlZUDWwOBT70Eq0lfMpBP2YguSQVyxRbprLq5rELXKQOyOaixTWYhMeMQMzP0U5FoQ==} + engines: {node: '>= 10'} algosdk@1.13.1: - resolution: - { - integrity: sha512-htyJI1/zVcOzpNZVT8PHn4K0yXXTS+b7RXplc7nmFqGVThbM8+ufbnBLChxVPh3BVxqqpqS13VTsQcNArK10jg==, - } + resolution: {integrity: sha512-htyJI1/zVcOzpNZVT8PHn4K0yXXTS+b7RXplc7nmFqGVThbM8+ufbnBLChxVPh3BVxqqpqS13VTsQcNArK10jg==} allure-commandline@2.28.0: - resolution: - { - integrity: sha512-TZ3oxop0zseJp2bRKb8Zzkxa4/aB+RvKEMnhylbY6UiOkqhNAHovRJx03bFA9bbvE/nsR70sX+ktU5xI2WJiqQ==, - } + resolution: {integrity: sha512-TZ3oxop0zseJp2bRKb8Zzkxa4/aB+RvKEMnhylbY6UiOkqhNAHovRJx03bFA9bbvE/nsR70sX+ktU5xI2WJiqQ==} hasBin: true allure-js-commons@2.15.1: - resolution: - { - integrity: sha512-5V/VINplbu0APnfSZOkYpKOzucO36Q2EtTD1kqjWjl7n6tj7Hh+IHCZsH3Vpk/LXRDfj9RuXugBBvwYKV5YMJw==, - } + resolution: {integrity: sha512-5V/VINplbu0APnfSZOkYpKOzucO36Q2EtTD1kqjWjl7n6tj7Hh+IHCZsH3Vpk/LXRDfj9RuXugBBvwYKV5YMJw==} allure-playwright@2.15.1: - resolution: - { - integrity: sha512-P1Uu1j/ptDHdYp3V5ZAeBZyt33+L+OQu0otUIEl/zkOcv0KRycHqlHwC0GEJmpgnLKvVP7s+K37LcLoSUUj3Cg==, - } + resolution: {integrity: sha512-P1Uu1j/ptDHdYp3V5ZAeBZyt33+L+OQu0otUIEl/zkOcv0KRycHqlHwC0GEJmpgnLKvVP7s+K37LcLoSUUj3Cg==} anser@1.4.10: - resolution: - { - integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==, - } + resolution: {integrity: sha512-hCv9AqTQ8ycjpSd3upOJd7vFwW1JaoYQ7tpham03GJ1ca8/65rqn0RpaWpItOAd6ylW9wAw6luXYPJIyPFVOww==} ansi-colors@4.1.3: - resolution: - { - integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} + engines: {node: '>=6'} ansi-escape-sequences@5.1.2: - resolution: - { - integrity: sha512-JcpoVp1W1bl1Qn4cVuiXEhD6+dyXKSOgCn2zlzE8inYgCJCBy1aPnUhlz6I4DFum8D4ovb9Qi/iAjUcGvG2lqw==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-JcpoVp1W1bl1Qn4cVuiXEhD6+dyXKSOgCn2zlzE8inYgCJCBy1aPnUhlz6I4DFum8D4ovb9Qi/iAjUcGvG2lqw==} + engines: {node: '>=8.0.0'} ansi-escapes@3.2.0: - resolution: - { - integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==} + engines: {node: '>=4'} 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-escapes@5.0.0: - resolution: - { - integrity: sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-5GFMVX8HqE/TB+FuBJGuO5XG0WrsA6ptUqoODaT/n9mmUaZFkqnBueB4leqGBCmrUHnCnC4PCZTCd0E7QQ83bA==} + engines: {node: '>=12'} ansi-fragments@0.2.1: - resolution: - { - integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==, - } + resolution: {integrity: sha512-DykbNHxuXQwUDRv5ibc2b0x7uw7wmwOGLBUd5RmaQ5z8Lhx19vwvKV+FAsM5rEA6dEcHxX+/Ad5s9eF2k2bB+w==} ansi-html-community@0.0.8: - resolution: - { - integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==, - } - engines: { "0": node >= 0.8.0 } + resolution: {integrity: sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==} + engines: {'0': node >= 0.8.0} hasBin: true ansi-regex@2.1.1: - resolution: - { - integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} + engines: {node: '>=0.10.0'} ansi-regex@3.0.1: - resolution: - { - integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} + engines: {node: '>=4'} ansi-regex@4.1.1: - resolution: - { - integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==} + engines: {node: '>=6'} ansi-regex@5.0.1: - resolution: - { - integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} ansi-regex@6.0.1: - resolution: - { - integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} ansi-sequence-parser@1.1.1: - resolution: - { - integrity: sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==, - } + resolution: {integrity: sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg==} ansi-styles@2.2.1: - resolution: - { - integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} + engines: {node: '>=0.10.0'} ansi-styles@3.2.1: - resolution: - { - integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} 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'} ansi-to-html@0.6.15: - resolution: - { - integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==} + engines: {node: '>=8.0.0'} hasBin: true any-observable@0.3.0: - resolution: - { - integrity: sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==, - } - engines: { node: ">=6" } - peerDependencies: - rxjs: ^5.5.10 - zenObservable: "*" + resolution: {integrity: sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==} + engines: {node: '>=6'} + peerDependencies: + rxjs: '*' + zenObservable: '*' peerDependenciesMeta: rxjs: optional: true @@ -22133,2759 +16214,1520 @@ packages: optional: true 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'} app-builder-bin@4.0.0: - resolution: - { - integrity: sha512-xwdG0FJPQMe0M0UA4Tz0zEB8rBJTRA5a476ZawAqiBkMv16GRK5xpXThOjMaEOFnZ6zabejjG4J3da0SXG63KA==, - } + resolution: {integrity: sha512-xwdG0FJPQMe0M0UA4Tz0zEB8rBJTRA5a476ZawAqiBkMv16GRK5xpXThOjMaEOFnZ6zabejjG4J3da0SXG63KA==} app-builder-lib@24.13.3: - resolution: - { - integrity: sha512-FAzX6IBit2POXYGnTCT8YHFO/lr5AapAII6zzhQO3Rw4cEDOgK+t1xhLc5tNcKlicTHlo9zxIwnYCX9X2DLkig==, - } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-FAzX6IBit2POXYGnTCT8YHFO/lr5AapAII6zzhQO3Rw4cEDOgK+t1xhLc5tNcKlicTHlo9zxIwnYCX9X2DLkig==} + engines: {node: '>=14.0.0'} peerDependencies: dmg-builder: 24.13.3 electron-builder-squirrel-windows: 24.13.3 - lodash: "*" + lodash: '*' peerDependenciesMeta: lodash: optional: true app-root-dir@1.0.2: - resolution: - { - integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==, - } + resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==} appdirsjs@1.2.7: - resolution: - { - integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==, - } + resolution: {integrity: sha512-Quji6+8kLBC3NnBeo14nPDq0+2jUs5s3/xEye+udFHumHhRk4M7aAMXp/PBJqkKYGuuyR9M/6Dq7d2AViiGmhw==} append-transform@2.0.0: - resolution: - { - integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==} + engines: {node: '>=8'} application-config-path@0.1.1: - resolution: - { - integrity: sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==, - } + resolution: {integrity: sha512-zy9cHePtMP0YhwG+CfHm0bgwdnga2X3gZexpdCwEj//dpb+TKajtiC8REEUJUSq6Ab4f9cgNy2l8ObXzCXFkEw==} arch@2.2.0: - resolution: - { - integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==, - } + resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} archiver-utils@4.0.1: - resolution: - { - integrity: sha512-Q4Q99idbvzmgCTEAAhi32BkOyq8iVI5EwdO0PmBDSGIzzjYNdcFn7Q7k3OzbLy4kLUPXfJtG6fO2RjftXbobBg==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-Q4Q99idbvzmgCTEAAhi32BkOyq8iVI5EwdO0PmBDSGIzzjYNdcFn7Q7k3OzbLy4kLUPXfJtG6fO2RjftXbobBg==} + engines: {node: '>= 12.0.0'} archiver@6.0.2: - resolution: - { - integrity: sha512-UQ/2nW7NMl1G+1UnrLypQw1VdT9XZg/ECcKPq7l+STzStrSivFIXIp34D8M5zeNGW5NoOupdYCHv6VySCPNNlw==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-UQ/2nW7NMl1G+1UnrLypQw1VdT9XZg/ECcKPq7l+STzStrSivFIXIp34D8M5zeNGW5NoOupdYCHv6VySCPNNlw==} + engines: {node: '>= 12.0.0'} archy@1.0.0: - resolution: - { - integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==, - } + resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} arg@1.0.0: - resolution: - { - integrity: sha512-Wk7TEzl1KqvTGs/uyhmHO/3XLd3t1UeU4IstvPXVzGPM522cTjqjNZ99esCkcL52sjqjo8e8CTBcWhkxvGzoAw==, - } + resolution: {integrity: sha512-Wk7TEzl1KqvTGs/uyhmHO/3XLd3t1UeU4IstvPXVzGPM522cTjqjNZ99esCkcL52sjqjo8e8CTBcWhkxvGzoAw==} arg@4.1.0: - resolution: - { - integrity: sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg==, - } + resolution: {integrity: sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg==} arg@4.1.3: - resolution: - { - integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==, - } + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} arg@5.0.2: - resolution: - { - integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==, - } + resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} argparse@1.0.10: - resolution: - { - integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, - } + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} argparse@2.0.1: - resolution: - { - integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, - } + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} args@5.0.3: - resolution: - { - integrity: sha512-h6k/zfFgusnv3i5TU08KQkVKuCPBtL/PWQbWkHUxvJrZ2nAyeaUupneemcrgn1xmqxPQsPIzwkUhOpoqPDRZuA==, - } - engines: { node: ">= 6.0.0" } + resolution: {integrity: sha512-h6k/zfFgusnv3i5TU08KQkVKuCPBtL/PWQbWkHUxvJrZ2nAyeaUupneemcrgn1xmqxPQsPIzwkUhOpoqPDRZuA==} + engines: {node: '>= 6.0.0'} argsarray@0.0.1: - resolution: - { - integrity: sha512-u96dg2GcAKtpTrBdDoFIM7PjcBA+6rSP0OR94MOReNRyUECL6MtQt5XXmRr4qrftYaef9+l5hcpO5te7sML1Cg==, - } + resolution: {integrity: sha512-u96dg2GcAKtpTrBdDoFIM7PjcBA+6rSP0OR94MOReNRyUECL6MtQt5XXmRr4qrftYaef9+l5hcpO5te7sML1Cg==} 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.1.3: - resolution: - { - integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==, - } + resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} aria-query@5.3.0: - resolution: - { - integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==, - } + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} array-back@3.1.0: - resolution: - { - integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==} + engines: {node: '>=6'} array-back@4.0.2: - resolution: - { - integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==} + engines: {node: '>=8'} array-buffer-byte-length@1.0.1: - resolution: - { - integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} + engines: {node: '>= 0.4'} array-flatten@1.1.1: - resolution: - { - integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==, - } + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} array-ify@1.0.0: - resolution: - { - integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==, - } + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} 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@1.0.2: - resolution: - { - integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} + engines: {node: '>=0.10.0'} 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-union@3.0.1: - resolution: - { - integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==} + engines: {node: '>=12'} array-uniq@1.0.3: - resolution: - { - integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} + engines: {node: '>=0.10.0'} array.prototype.findlast@1.2.5: - resolution: - { - integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} + engines: {node: '>= 0.4'} 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.2: - resolution: - { - integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} + engines: {node: '>= 0.4'} array.prototype.flatmap@1.3.2: - resolution: - { - integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} + engines: {node: '>= 0.4'} array.prototype.map@1.0.7: - resolution: - { - integrity: sha512-XpcFfLoBEAhezrrNw1V+yLXkE7M6uR7xJEsxbG6c/V9v043qurwVJB9r9UTnoSioFDoz1i1VOydpWGmJpfVZbg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-XpcFfLoBEAhezrrNw1V+yLXkE7M6uR7xJEsxbG6c/V9v043qurwVJB9r9UTnoSioFDoz1i1VOydpWGmJpfVZbg==} + engines: {node: '>= 0.4'} array.prototype.reduce@1.0.7: - resolution: - { - integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==} + engines: {node: '>= 0.4'} array.prototype.toreversed@1.1.2: - resolution: - { - integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==, - } + resolution: {integrity: sha512-wwDCoT4Ck4Cz7sLtgUmzR5UV3YF5mFHUlbChCzZBQZ+0m2cl/DH3tKgvphv1nKgFsJ48oCSg6p91q2Vm0I/ZMA==} array.prototype.tosorted@1.1.3: - resolution: - { - integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==, - } + resolution: {integrity: sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==} arraybuffer.prototype.slice@1.0.3: - resolution: - { - integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} + engines: {node: '>= 0.4'} arrify@1.0.1: - resolution: - { - integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} + engines: {node: '>=0.10.0'} asap@2.0.6: - resolution: - { - integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==, - } + resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} asciichart@1.5.25: - resolution: - { - integrity: sha512-PNxzXIPPOtWq8T7bgzBtk9cI2lgS4SJZthUHEiQ1aoIc3lNzGfUvIvo9LiAnq26TACo9t1/4qP6KTGAUbzX9Xg==, - } + resolution: {integrity: sha512-PNxzXIPPOtWq8T7bgzBtk9cI2lgS4SJZthUHEiQ1aoIc3lNzGfUvIvo9LiAnq26TACo9t1/4qP6KTGAUbzX9Xg==} asn1.js@4.10.1: - resolution: - { - integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==, - } + resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==} asn1.js@5.4.1: - resolution: - { - integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==, - } + resolution: {integrity: sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==} asn1@0.2.6: - resolution: - { - integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==, - } + resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} assert-plus@1.0.0: - resolution: - { - integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==, - } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} + engines: {node: '>=0.8'} assert@1.5.1: - resolution: - { - integrity: sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==, - } + resolution: {integrity: sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==} assert@2.1.0: - resolution: - { - integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==, - } + resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} assertion-error@1.1.0: - resolution: - { - integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==, - } + resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} ast-types-flow@0.0.8: - resolution: - { - integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==, - } + resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} ast-types@0.15.2: - resolution: - { - integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==} + engines: {node: '>=4'} 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@1.0.0: - resolution: - { - integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==} + 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.8.6: - resolution: - { - integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==, - } + resolution: {integrity: sha512-ISvCdHdlTDlH5IpxQJIex7BWBywFWgjJSVdwst+/iQCoEYnyOaQ95+X1JGshuBjGp6nxKUy1jMgE3zPqN7fQdg==} hasBin: true async-exit-hook@2.0.1: - resolution: - { - integrity: sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==, - } - engines: { node: ">=0.12.0" } + resolution: {integrity: sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==} + engines: {node: '>=0.12.0'} async-limiter@1.0.1: - resolution: - { - integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==, - } + resolution: {integrity: sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==} async@2.6.4: - resolution: - { - integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==, - } + resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} async@3.2.5: - resolution: - { - integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==, - } + resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==} asynckit@0.4.0: - resolution: - { - integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, - } + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} asyncstorage-down@4.2.0: - resolution: - { - integrity: sha512-xTljBjicpnxsoA7yEs6duXFXWEZC0V1Q/PeKcUM7Cd2k2W1XPGfyBY1kPXBxTqR++u6ZuDa5egnU8/E/WkJv4Q==, - } + resolution: {integrity: sha512-xTljBjicpnxsoA7yEs6duXFXWEZC0V1Q/PeKcUM7Cd2k2W1XPGfyBY1kPXBxTqR++u6ZuDa5egnU8/E/WkJv4Q==} peerDependencies: - "@react-native-async-storage/async-storage": "*" + '@react-native-async-storage/async-storage': '*' peerDependenciesMeta: - "@react-native-async-storage/async-storage": + '@react-native-async-storage/async-storage': optional: true 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'} atomic-sleep@1.0.0: - resolution: - { - integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} + engines: {node: '>=8.0.0'} atomically@1.7.0: - resolution: - { - integrity: sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w==, - } - engines: { node: ">=10.12.0" } + resolution: {integrity: sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w==} + engines: {node: '>=10.12.0'} atomically@2.0.2: - resolution: - { - integrity: sha512-Xfmb4q5QV7uqTlVdMSTtO5eF4DCHfNOdaPyKlbFShkzeNP+3lj3yjjcbdjSmEY4+pDBKJ9g26aP+ImTe88UHoQ==, - } + resolution: {integrity: sha512-Xfmb4q5QV7uqTlVdMSTtO5eF4DCHfNOdaPyKlbFShkzeNP+3lj3yjjcbdjSmEY4+pDBKJ9g26aP+ImTe88UHoQ==} attr-accept@2.2.2: - resolution: - { - integrity: sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-7prDjvt9HmqiZ0cl5CRjtS84sEyhsHP2coDkaZKRKVfCDo9s7iw7ChVmar78Gu9pC4SoR/28wFu/G5JJhTnqEg==} + engines: {node: '>=4'} autoprefixer@10.4.19: - resolution: - { - integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==, - } - engines: { node: ^10 || ^12 || >=14 } + resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==} + 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'} aws-sign2@0.7.0: - resolution: - { - integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==, - } + resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} aws4@1.12.0: - resolution: - { - integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==, - } + resolution: {integrity: sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==} axe-core@4.7.0: - resolution: - { - integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} + engines: {node: '>=4'} axios@0.21.1: - resolution: - { - integrity: sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==, - } + resolution: {integrity: sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==} axios@0.21.2: - resolution: - { - integrity: sha512-87otirqUw3e8CzHTMO+/9kh/FSgXt/eVDvipijwDtEuwbkySWZ9SBm6VEubmJ/kLKEoLQV/POhxXFb66bfekfg==, - } + resolution: {integrity: sha512-87otirqUw3e8CzHTMO+/9kh/FSgXt/eVDvipijwDtEuwbkySWZ9SBm6VEubmJ/kLKEoLQV/POhxXFb66bfekfg==} axios@0.21.4: - resolution: - { - integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==, - } + resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} axios@0.24.0: - resolution: - { - integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==, - } + resolution: {integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==} axios@1.7.7: - resolution: - { - integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==, - } + resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==} axobject-query@3.2.1: - resolution: - { - integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==, - } + resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} b4a@1.6.6: - resolution: - { - integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==, - } + resolution: {integrity: sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==} babel-core@7.0.0-bridge.0: - resolution: - { - integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==, - } + resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 babel-jest@27.5.1: - resolution: - { - integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: - "@babel/core": ^7.8.0 + '@babel/core': ^7.8.0 babel-jest@28.1.3: - resolution: - { - integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: - "@babel/core": ^7.8.0 + '@babel/core': ^7.8.0 babel-jest@29.7.0: - resolution: - { - integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - "@babel/core": ^7.8.0 + '@babel/core': ^7.8.0 babel-loader@8.3.0: - resolution: - { - integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==, - } - engines: { node: ">= 8.9" } + resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==} + engines: {node: '>= 8.9'} peerDependencies: - "@babel/core": ^7.0.0 - webpack: ">=2" + '@babel/core': ^7.0.0 + webpack: '>=2' babel-loader@9.1.3: - resolution: - { - integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==, - } - engines: { node: ">= 14.15.0" } + resolution: {integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==} + engines: {node: '>= 14.15.0'} peerDependencies: - "@babel/core": ^7.12.0 - webpack: ">=5" + '@babel/core': ^7.12.0 + webpack: '>=5' babel-plugin-add-react-displayname@0.0.5: - resolution: - { - integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==, - } + resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} babel-plugin-emotion@10.2.2: - resolution: - { - integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==, - } + resolution: {integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==} babel-plugin-istanbul@6.1.1: - resolution: - { - integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} + engines: {node: '>=8'} babel-plugin-jest-hoist@27.5.1: - resolution: - { - integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} babel-plugin-jest-hoist@28.1.3: - resolution: - { - integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} babel-plugin-jest-hoist@29.6.3: - resolution: - { - integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} babel-plugin-macros@2.8.0: - resolution: - { - integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==, - } + resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} babel-plugin-macros@3.1.0: - resolution: - { - integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==, - } - engines: { node: ">=10", npm: ">=6" } + resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} + engines: {node: '>=10', npm: '>=6'} babel-plugin-module-resolver@4.1.0: - resolution: - { - integrity: sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA==, - } - engines: { node: ">= 8.0.0" } + resolution: {integrity: sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA==} + engines: {node: '>= 8.0.0'} babel-plugin-module-resolver@5.0.0: - resolution: - { - integrity: sha512-g0u+/ChLSJ5+PzYwLwP8Rp8Rcfowz58TJNCe+L/ui4rpzE/mg//JVX0EWBUYoxaextqnwuGHzfGp2hh0PPV25Q==, - } - engines: { node: ">= 16" } + resolution: {integrity: sha512-g0u+/ChLSJ5+PzYwLwP8Rp8Rcfowz58TJNCe+L/ui4rpzE/mg//JVX0EWBUYoxaextqnwuGHzfGp2hh0PPV25Q==} + engines: {node: '>= 16'} babel-plugin-named-asset-import@0.3.8: - resolution: - { - integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==, - } + resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==} peerDependencies: - "@babel/core": ^7.1.0 + '@babel/core': ^7.1.0 babel-plugin-polyfill-corejs2@0.4.10: - resolution: - { - integrity: sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==, - } + resolution: {integrity: sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==} 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.4: - resolution: - { - integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==, - } + resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} 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.1: - resolution: - { - integrity: sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==, - } + resolution: {integrity: sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==} 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-react-compiler@0.0.0-experimental-592953e-20240517: - resolution: - { - integrity: sha512-OjG1SVaeQZaJrqkMFJatg8W/MTow8Ak5rx2SI0ETQBO1XvOk/XZGMbltNCPdFJLKghBYoBjC+Y3Ap/Xr7B01mA==, - } + resolution: {integrity: sha512-OjG1SVaeQZaJrqkMFJatg8W/MTow8Ak5rx2SI0ETQBO1XvOk/XZGMbltNCPdFJLKghBYoBjC+Y3Ap/Xr7B01mA==} babel-plugin-react-docgen-typescript@1.5.1: - resolution: - { - integrity: sha512-gcC2Fw19ooW8U1AvyfuHTqvWOb6xi3IMNuuOgIjf0pfJwkuJFHsGW+JxWF1SKz4rFyQyWnQg3YkxMrJh45n7nA==, - } + resolution: {integrity: sha512-gcC2Fw19ooW8U1AvyfuHTqvWOb6xi3IMNuuOgIjf0pfJwkuJFHsGW+JxWF1SKz4rFyQyWnQg3YkxMrJh45n7nA==} peerDependencies: - "@babel/core": ^7.0.0-0 + '@babel/core': ^7.0.0-0 babel-plugin-react-native-web@0.18.12: - resolution: - { - integrity: sha512-4djr9G6fMdwQoD6LQ7hOKAm39+y12flWgovAqS1k5O8f42YQ3A1FFMyV5kKfetZuGhZO5BmNmOdRRZQ1TixtDw==, - } + resolution: {integrity: sha512-4djr9G6fMdwQoD6LQ7hOKAm39+y12flWgovAqS1k5O8f42YQ3A1FFMyV5kKfetZuGhZO5BmNmOdRRZQ1TixtDw==} babel-plugin-react-native-web@0.19.10: - resolution: - { - integrity: sha512-NshrsILJNbNbnMz7Ms14fa5PBJErYablPkCbSvbg0qn5rmruD2WzQqD+Dg8F45yG7i2nENDvKSwsa+1XPLcg4w==, - } + resolution: {integrity: sha512-NshrsILJNbNbnMz7Ms14fa5PBJErYablPkCbSvbg0qn5rmruD2WzQqD+Dg8F45yG7i2nENDvKSwsa+1XPLcg4w==} babel-plugin-styled-components@2.1.4: - resolution: - { - integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==, - } + resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==} peerDependencies: - styled-components: ">= 2" + styled-components: '>= 2' babel-plugin-syntax-jsx@6.18.0: - resolution: - { - integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==, - } + resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==} babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: - resolution: - { - integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==, - } + resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} babel-plugin-transform-flow-enums@0.0.2: - resolution: - { - integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==, - } + resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==} babel-plugin-transform-react-remove-prop-types@0.4.24: - resolution: - { - integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==, - } + resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==} babel-preset-current-node-syntax@1.0.1: - resolution: - { - integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==, - } + resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 babel-preset-expo@11.0.15: - resolution: - { - integrity: sha512-rgiMTYwqIPULaO7iZdqyL7aAff9QLOX6OWUtLZBlOrOTreGY1yHah/5+l8MvI6NVc/8Zj5LY4Y5uMSnJIuzTLw==, - } + resolution: {integrity: sha512-rgiMTYwqIPULaO7iZdqyL7aAff9QLOX6OWUtLZBlOrOTreGY1yHah/5+l8MvI6NVc/8Zj5LY4Y5uMSnJIuzTLw==} babel-preset-expo@9.5.2: - resolution: - { - integrity: sha512-hU1G1TDiikuXV6UDZjPnX+WdbjbtidDiYhftMEVrZQSst45pDPVBWbM41TUKrpJMwv4FypsLzK+378gnMPRVWQ==, - } + resolution: {integrity: sha512-hU1G1TDiikuXV6UDZjPnX+WdbjbtidDiYhftMEVrZQSst45pDPVBWbM41TUKrpJMwv4FypsLzK+378gnMPRVWQ==} babel-preset-expo@9.9.0: - resolution: - { - integrity: sha512-Mg5euDpBPi2/N/3eao+hJ0vYONAUVB9qhziGDnTf4MotBDrT4qEOBYdvN1HVBkoL8FtEHTlZ8tU8eAyeScynZw==, - } + resolution: {integrity: sha512-Mg5euDpBPi2/N/3eao+hJ0vYONAUVB9qhziGDnTf4MotBDrT4qEOBYdvN1HVBkoL8FtEHTlZ8tU8eAyeScynZw==} 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 babel-preset-jest@27.5.1: - resolution: - { - integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 babel-preset-jest@28.1.3: - resolution: - { - integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 babel-preset-jest@29.6.3: - resolution: - { - integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - "@babel/core": ^7.0.0 + '@babel/core': ^7.0.0 babel-preset-react-app@10.0.1: - resolution: - { - integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==, - } + resolution: {integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==} babel-runtime@6.26.0: - resolution: - { - integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==, - } + resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} backslash@0.2.0: - resolution: - { - integrity: sha512-Avs+8FUZ1HF/VFP4YWwHQZSGzRPm37ukU1JQYQWijuHhtXdOuAzcZ8PcAzfIw898a8PyBzdn+RtnKA6MzW0X2A==, - } + resolution: {integrity: sha512-Avs+8FUZ1HF/VFP4YWwHQZSGzRPm37ukU1JQYQWijuHhtXdOuAzcZ8PcAzfIw898a8PyBzdn+RtnKA6MzW0X2A==} bail@1.0.5: - resolution: - { - integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==, - } + resolution: {integrity: sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ==} 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==} balanced-match@2.0.0: - resolution: - { - integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==, - } + resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==} bare-events@2.4.2: - resolution: - { - integrity: sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==, - } + resolution: {integrity: sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==} base-64@0.1.0: - resolution: - { - integrity: sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==, - } + resolution: {integrity: sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==} base-x@2.0.6: - resolution: - { - integrity: sha512-UAmjxz9KbK+YIi66xej+pZVo/vxUOh49ubEvZW5egCbxhur05pBb+hwuireQwKO4nDpsNm64/jEei17LEpsr5g==, - } - engines: { node: ">=4.5.0" } + resolution: {integrity: sha512-UAmjxz9KbK+YIi66xej+pZVo/vxUOh49ubEvZW5egCbxhur05pBb+hwuireQwKO4nDpsNm64/jEei17LEpsr5g==} + engines: {node: '>=4.5.0'} deprecated: use 3.0.0 instead, safe-buffer has been merged and release for compatability base-x@3.0.9: - resolution: - { - integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==, - } + resolution: {integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==} base-x@4.0.0: - resolution: - { - integrity: sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw==, - } + resolution: {integrity: sha512-FuwxlW4H5kh37X/oW59pwTzzTKRzfrrQwhmyspRM7swOEZcHtDZSCt45U6oKgtuFE+WYPblePMVIPR4RZrh/hw==} base32.js@0.1.0: - resolution: - { - integrity: sha512-n3TkB02ixgBOhTvANakDb4xaMXnYUVkNoRFJjQflcqMQhyEKxEHdj3E6N8t8sUQ0mjH/3/JxzlXuz3ul/J90pQ==, - } - engines: { node: ">=0.12.0" } + resolution: {integrity: sha512-n3TkB02ixgBOhTvANakDb4xaMXnYUVkNoRFJjQflcqMQhyEKxEHdj3E6N8t8sUQ0mjH/3/JxzlXuz3ul/J90pQ==} + engines: {node: '>=0.12.0'} base64-arraybuffer@0.2.0: - resolution: - { - integrity: sha512-7emyCsu1/xiBXgQZrscw/8KPRT44I4Yq9Pe6EGs3aPRTsWuggML1/1DTuZUuIaJPIm1FTDUVXl4x/yW8s0kQDQ==, - } - engines: { node: ">= 0.6.0" } + resolution: {integrity: sha512-7emyCsu1/xiBXgQZrscw/8KPRT44I4Yq9Pe6EGs3aPRTsWuggML1/1DTuZUuIaJPIm1FTDUVXl4x/yW8s0kQDQ==} + engines: {node: '>= 0.6.0'} 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'} basic-auth@2.0.1: - resolution: - { - integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==} + engines: {node: '>= 0.8'} batch@0.6.1: - resolution: - { - integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==, - } + resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} bchaddrjs@0.5.2: - resolution: - { - integrity: sha512-OO7gIn3m7ea4FVx4cT8gdlWQR2+++EquhdpWQJH9BQjK63tJJ6ngB3QMZDO6DiBoXiIGUsTPHjlrHVxPGcGxLQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-OO7gIn3m7ea4FVx4cT8gdlWQR2+++EquhdpWQJH9BQjK63tJJ6ngB3QMZDO6DiBoXiIGUsTPHjlrHVxPGcGxLQ==} + engines: {node: '>=8.0.0'} bcrypt-pbkdf@1.0.2: - resolution: - { - integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==, - } + resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} bech32@1.1.4: - resolution: - { - integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==, - } + resolution: {integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==} bech32@2.0.0: - resolution: - { - integrity: sha512-LcknSilhIGatDAsY1ak2I8VtGaHNhgMSYVxFrGLXv+xLHytaKZKcaUJJUE7qmBr7h33o5YQwP55pMI0xmkpJwg==, - } + resolution: {integrity: sha512-LcknSilhIGatDAsY1ak2I8VtGaHNhgMSYVxFrGLXv+xLHytaKZKcaUJJUE7qmBr7h33o5YQwP55pMI0xmkpJwg==} before-after-hook@2.2.3: - resolution: - { - integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==, - } + resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} benchmark@2.1.4: - resolution: - { - integrity: sha512-l9MlfN4M1K/H2fbhfMy3B7vJd6AGKJVQn2h6Sg/Yx+KckoUA7ewS5Vv6TjSq18ooE1kS9hhAlQRH3AkXIh/aOQ==, - } + resolution: {integrity: sha512-l9MlfN4M1K/H2fbhfMy3B7vJd6AGKJVQn2h6Sg/Yx+KckoUA7ewS5Vv6TjSq18ooE1kS9hhAlQRH3AkXIh/aOQ==} 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'} better-path-resolve@1.0.0: - resolution: - { - integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} + engines: {node: '>=4'} bfj@7.1.0: - resolution: - { - integrity: sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==, - } - engines: { node: ">= 8.0.0" } + resolution: {integrity: sha512-I6MMLkn+anzNdCUp9hMRyui1HaNEUCco50lxbvNS4+EyXg8lN3nJ48PjPWtbH8UVS9CuMoaKE9U2V3l29DaRQw==} + engines: {node: '>= 8.0.0'} big-integer@1.6.36: - resolution: - { - integrity: sha512-t70bfa7HYEA1D9idDbmuv7YbsbVkQ+Hp+8KFSul4aE5e/i1bjCNIRYJZlA8Q8p0r9T8cF/RVvwUgRA//FydEyg==, - } - engines: { node: ">=0.6" } + resolution: {integrity: sha512-t70bfa7HYEA1D9idDbmuv7YbsbVkQ+Hp+8KFSul4aE5e/i1bjCNIRYJZlA8Q8p0r9T8cF/RVvwUgRA//FydEyg==} + engines: {node: '>=0.6'} big-integer@1.6.52: - resolution: - { - integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==, - } - engines: { node: ">=0.6" } + resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} + engines: {node: '>=0.6'} big.js@5.2.2: - resolution: - { - integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==, - } + resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} big.js@6.0.0: - resolution: - { - integrity: sha512-PGsJX+jhBY5qaGOymm4V1QMM2oOCtfGdW8CxgbDTg17C/qHeW89jhx6Kpda3vS0uPHFT6sEhwbb5tlc0wmA+wQ==, - } + resolution: {integrity: sha512-PGsJX+jhBY5qaGOymm4V1QMM2oOCtfGdW8CxgbDTg17C/qHeW89jhx6Kpda3vS0uPHFT6sEhwbb5tlc0wmA+wQ==} deprecated: Strict mode bug fixed in v6.0.3 bigint-buffer@1.1.5: - resolution: - { - integrity: sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA==, - } - engines: { node: ">= 10.0.0" } + resolution: {integrity: sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA==} + engines: {node: '>= 10.0.0'} bigint-mod-arith@3.3.1: - resolution: - { - integrity: sha512-pX/cYW3dCa87Jrzv6DAr8ivbbJRzEX5yGhdt8IutnX/PCIXfpx+mabWNK/M8qqh+zQ0J3thftUBHW0ByuUlG0w==, - } - engines: { node: ">=10.4.0" } + resolution: {integrity: sha512-pX/cYW3dCa87Jrzv6DAr8ivbbJRzEX5yGhdt8IutnX/PCIXfpx+mabWNK/M8qqh+zQ0J3thftUBHW0ByuUlG0w==} + engines: {node: '>=10.4.0'} bignumber.js@7.2.1: - resolution: - { - integrity: sha512-S4XzBk5sMB+Rcb/LNcpzXr57VRTxgAvaAEDAl1AwRx27j00hT84O6OkteE7u8UB3NuaaygCRrEpqox4uDOrbdQ==, - } + resolution: {integrity: sha512-S4XzBk5sMB+Rcb/LNcpzXr57VRTxgAvaAEDAl1AwRx27j00hT84O6OkteE7u8UB3NuaaygCRrEpqox4uDOrbdQ==} bignumber.js@9.0.1: - resolution: - { - integrity: sha512-IdZR9mh6ahOBv/hYGiXyVuyCetmGJhtYkqLBpTStdhEGjegpPlUawydyaF3pbIOFynJTpllEs+NP+CS9jKFLjA==, - } + resolution: {integrity: sha512-IdZR9mh6ahOBv/hYGiXyVuyCetmGJhtYkqLBpTStdhEGjegpPlUawydyaF3pbIOFynJTpllEs+NP+CS9jKFLjA==} bignumber.js@9.1.2: - resolution: - { - integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==, - } + resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==} binary-extensions@2.3.0: - resolution: - { - integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} + engines: {node: '>=8'} binary@0.3.0: - resolution: - { - integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==, - } + resolution: {integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==} bindings@1.5.0: - resolution: - { - integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==, - } + resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} bip174@2.1.1: - resolution: - { - integrity: sha512-mdFV5+/v0XyNYXjBS6CQPLo9ekCx4gtKZFnJm5PMto7Fs9hTTDpkkzOB7/FtluRI6JbUUAu+snTYfJRgHLZbZQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-mdFV5+/v0XyNYXjBS6CQPLo9ekCx4gtKZFnJm5PMto7Fs9hTTDpkkzOB7/FtluRI6JbUUAu+snTYfJRgHLZbZQ==} + engines: {node: '>=8.0.0'} bip32-path@0.4.2: - resolution: - { - integrity: sha512-ZBMCELjJfcNMkz5bDuJ1WrYvjlhEF5k6mQ8vUr4N7MbVRsXei7ZOg8VhhwMfNiW68NWmLkgkc6WvTickrLGprQ==, - } + resolution: {integrity: sha512-ZBMCELjJfcNMkz5bDuJ1WrYvjlhEF5k6mQ8vUr4N7MbVRsXei7ZOg8VhhwMfNiW68NWmLkgkc6WvTickrLGprQ==} bip32@2.0.6: - resolution: - { - integrity: sha512-HpV5OMLLGTjSVblmrtYRfFFKuQB+GArM0+XP8HGWfJ5vxYBqo+DesvJwOdC2WJ3bCkZShGf0QIfoIpeomVzVdA==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-HpV5OMLLGTjSVblmrtYRfFFKuQB+GArM0+XP8HGWfJ5vxYBqo+DesvJwOdC2WJ3bCkZShGf0QIfoIpeomVzVdA==} + engines: {node: '>=6.0.0'} bip32@4.0.0: - resolution: - { - integrity: sha512-aOGy88DDlVUhspIXJN+dVEtclhIsfAUppD43V0j40cPTld3pv/0X/MlrZSZ6jowIaQQzFwP8M6rFU2z2mVYjDQ==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-aOGy88DDlVUhspIXJN+dVEtclhIsfAUppD43V0j40cPTld3pv/0X/MlrZSZ6jowIaQQzFwP8M6rFU2z2mVYjDQ==} + engines: {node: '>=6.0.0'} bip39@3.0.2: - resolution: - { - integrity: sha512-J4E1r2N0tUylTKt07ibXvhpT2c5pyAFgvuA5q1H9uDy6dEGpjV8jmymh3MTYJDLCNbIVClSB9FbND49I6N24MQ==, - } + resolution: {integrity: sha512-J4E1r2N0tUylTKt07ibXvhpT2c5pyAFgvuA5q1H9uDy6dEGpjV8jmymh3MTYJDLCNbIVClSB9FbND49I6N24MQ==} bip39@3.1.0: - resolution: - { - integrity: sha512-c9kiwdk45Do5GL0vJMe7tS95VjCii65mYAH7DfWl3uW8AVzXKQVUm64i3hzVybBDMp9r7j9iNxR85+ul8MdN/A==, - } + resolution: {integrity: sha512-c9kiwdk45Do5GL0vJMe7tS95VjCii65mYAH7DfWl3uW8AVzXKQVUm64i3hzVybBDMp9r7j9iNxR85+ul8MdN/A==} bip66@1.1.5: - resolution: - { - integrity: sha512-nemMHz95EmS38a26XbbdxIYj5csHd3RMP3H5bwQknX0WYHF01qhpufP42mLOwVICuH2JmhIhXiWs89MfUGL7Xw==, - } + resolution: {integrity: sha512-nemMHz95EmS38a26XbbdxIYj5csHd3RMP3H5bwQknX0WYHF01qhpufP42mLOwVICuH2JmhIhXiWs89MfUGL7Xw==} bitcoin-ops@1.4.1: - resolution: - { - integrity: sha512-pef6gxZFztEhaE9RY9HmWVmiIHqCb2OyS4HPKkpc6CIiiOa3Qmuoylxc5P2EkU3w+5eTSifI9SEZC88idAIGow==, - } + resolution: {integrity: sha512-pef6gxZFztEhaE9RY9HmWVmiIHqCb2OyS4HPKkpc6CIiiOa3Qmuoylxc5P2EkU3w+5eTSifI9SEZC88idAIGow==} bitcoinjs-lib@5.2.0: - resolution: - { - integrity: sha512-5DcLxGUDejgNBYcieMIUfjORtUeNWl828VWLHJGVKZCb4zIS1oOySTUr0LGmcqJBQgTBz3bGbRQla4FgrdQEIQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-5DcLxGUDejgNBYcieMIUfjORtUeNWl828VWLHJGVKZCb4zIS1oOySTUr0LGmcqJBQgTBz3bGbRQla4FgrdQEIQ==} + engines: {node: '>=8.0.0'} bl@0.8.2: - resolution: - { - integrity: sha512-pfqikmByp+lifZCS0p6j6KreV6kNU6Apzpm2nKOk+94cZb/jvle55+JxWiByUQ0Wo/+XnDXEy5MxxKMb6r0VIw==, - } + resolution: {integrity: sha512-pfqikmByp+lifZCS0p6j6KreV6kNU6Apzpm2nKOk+94cZb/jvle55+JxWiByUQ0Wo/+XnDXEy5MxxKMb6r0VIw==} bl@4.1.0: - resolution: - { - integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==, - } + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} blake-hash@2.0.0: - resolution: - { - integrity: sha512-Igj8YowDu1PRkRsxZA7NVkdFNxH5rKv5cpLxQ0CVXSIA77pVYwCPRQJ2sMew/oneUpfuYRyjG6r8SmmmnbZb1w==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-Igj8YowDu1PRkRsxZA7NVkdFNxH5rKv5cpLxQ0CVXSIA77pVYwCPRQJ2sMew/oneUpfuYRyjG6r8SmmmnbZb1w==} + engines: {node: '>= 10'} blake2b-wasm@1.1.7: - resolution: - { - integrity: sha512-oFIHvXhlz/DUgF0kq5B1CqxIDjIJwh9iDeUUGQUcvgiGz7Wdw03McEO7CfLBy7QKGdsydcMCgO9jFNBAFCtFcA==, - } + resolution: {integrity: sha512-oFIHvXhlz/DUgF0kq5B1CqxIDjIJwh9iDeUUGQUcvgiGz7Wdw03McEO7CfLBy7QKGdsydcMCgO9jFNBAFCtFcA==} blake2b-wasm@2.4.0: - resolution: - { - integrity: sha512-S1kwmW2ZhZFFFOghcx73+ZajEfKBqhP82JMssxtLVMxlaPea1p9uoLiUZ5WYyHn0KddwbLc+0vh4wR0KBNoT5w==, - } + resolution: {integrity: sha512-S1kwmW2ZhZFFFOghcx73+ZajEfKBqhP82JMssxtLVMxlaPea1p9uoLiUZ5WYyHn0KddwbLc+0vh4wR0KBNoT5w==} blake2b@2.1.3: - resolution: - { - integrity: sha512-pkDss4xFVbMb4270aCyGD3qLv92314Et+FsKzilCLxDz5DuZ2/1g3w4nmBbu6nKApPspnjG7JcwTjGZnduB1yg==, - } + resolution: {integrity: sha512-pkDss4xFVbMb4270aCyGD3qLv92314Et+FsKzilCLxDz5DuZ2/1g3w4nmBbu6nKApPspnjG7JcwTjGZnduB1yg==} blake2b@2.1.4: - resolution: - { - integrity: sha512-AyBuuJNI64gIvwx13qiICz6H6hpmjvYS5DGkG6jbXMOT8Z3WUJ3V1X0FlhIoT1b/5JtHE3ki+xjtMvu1nn+t9A==, - } + resolution: {integrity: sha512-AyBuuJNI64gIvwx13qiICz6H6hpmjvYS5DGkG6jbXMOT8Z3WUJ3V1X0FlhIoT1b/5JtHE3ki+xjtMvu1nn+t9A==} blakejs@1.2.1: - resolution: - { - integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==, - } + resolution: {integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==} bluebird-lst@1.0.9: - resolution: - { - integrity: sha512-7B1Rtx82hjnSD4PGLAjVWeYH3tHAcVUmChh85a3lltKQm6FresXh9ErQo6oAv6CqxttczC3/kEg8SY5NluPuUw==, - } + resolution: {integrity: sha512-7B1Rtx82hjnSD4PGLAjVWeYH3tHAcVUmChh85a3lltKQm6FresXh9ErQo6oAv6CqxttczC3/kEg8SY5NluPuUw==} bluebird@3.4.7: - resolution: - { - integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==, - } + resolution: {integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==} bluebird@3.7.2: - resolution: - { - integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==, - } + resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} blueimp-md5@2.19.0: - resolution: - { - integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==, - } + resolution: {integrity: sha512-DRQrD6gJyy8FbiE4s+bDoXS9hiW3Vbx5uCdwvcCf3zLHL+Iv7LtGHLpr+GZV8rHG8tK766FGYBwRbu8pELTt+w==} bn.js@4.11.6: - resolution: - { - integrity: sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==, - } + resolution: {integrity: sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==} bn.js@4.12.0: - resolution: - { - integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==, - } + resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==} bn.js@5.2.1: - resolution: - { - integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==, - } + resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==} body-parser@1.20.2: - resolution: - { - integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==, - } - engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 } + resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==} + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} bonjour-service@1.2.1: - resolution: - { - integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==, - } + resolution: {integrity: sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==} boolbase@1.0.0: - resolution: - { - integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==, - } + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} boolean@3.2.0: - resolution: - { - integrity: sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==, - } + resolution: {integrity: sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==} borc@2.1.2: - resolution: - { - integrity: sha512-Sy9eoUi4OiKzq7VovMn246iTo17kzuyHJKomCfpWMlI6RpfN1gk95w7d7gH264nApVLg0HZfcpz62/g4VH1Y4w==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-Sy9eoUi4OiKzq7VovMn246iTo17kzuyHJKomCfpWMlI6RpfN1gk95w7d7gH264nApVLg0HZfcpz62/g4VH1Y4w==} + engines: {node: '>=4'} borsh@0.7.0: - resolution: - { - integrity: sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA==, - } + resolution: {integrity: sha512-CLCsZGIBCFnPtkNnieW/a8wmreDmfUtjU2m9yHrzPXIlNbqVs0AQrSatSG6vdNYUqdc83tkQi2eHfF98ubzQLA==} borsh@1.0.0: - resolution: - { - integrity: sha512-fSVWzzemnyfF89EPwlUNsrS5swF5CrtiN4e+h0/lLf4dz2he4L3ndM20PS9wj7ICSkXJe/TQUHdaPTq15b1mNQ==, - } + resolution: {integrity: sha512-fSVWzzemnyfF89EPwlUNsrS5swF5CrtiN4e+h0/lLf4dz2he4L3ndM20PS9wj7ICSkXJe/TQUHdaPTq15b1mNQ==} bottleneck@2.19.5: - resolution: - { - integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==, - } + resolution: {integrity: sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==} bowser@2.11.0: - resolution: - { - integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==, - } + resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==} bplist-creator@0.0.7: - resolution: - { - integrity: sha512-xp/tcaV3T5PCiaY04mXga7o/TE+t95gqeLmADeBI1CvZtdWTbgBt3uLpvh4UWtenKeBhCV6oVxGk38yZr2uYEA==, - } + resolution: {integrity: sha512-xp/tcaV3T5PCiaY04mXga7o/TE+t95gqeLmADeBI1CvZtdWTbgBt3uLpvh4UWtenKeBhCV6oVxGk38yZr2uYEA==} bplist-creator@0.1.0: - resolution: - { - integrity: sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==, - } + resolution: {integrity: sha512-sXaHZicyEEmY86WyueLTQesbeoH/mquvarJaQNbjuOQO+7gbFcDEWqKmcWA4cOTLzFlfgvkiVxolk1k5bBIpmg==} bplist-parser@0.2.0: - resolution: - { - integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==, - } - engines: { node: ">= 5.10.0" } + resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} + engines: {node: '>= 5.10.0'} bplist-parser@0.3.1: - resolution: - { - integrity: sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==, - } - engines: { node: ">= 5.10.0" } + resolution: {integrity: sha512-PyJxiNtA5T2PlLIeBot4lbp7rj4OadzjnMZD/G5zuBNt8ei/yCU7+wW0h2bag9vr8c+/WuRWmSxbqAl9hL1rBA==} + engines: {node: '>= 5.10.0'} bplist-parser@0.3.2: - resolution: - { - integrity: sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==, - } - engines: { node: ">= 5.10.0" } + resolution: {integrity: sha512-apC2+fspHGI3mMKj+dGevkGo/tCqVB8jMb6i+OX+E29p0Iposz07fABkRIfVUPNd5A5VbuOz1bZbnmkKLYF+wQ==} + engines: {node: '>= 5.10.0'} 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'} brorand@1.1.0: - resolution: - { - integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==, - } + resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} browser-assert@1.2.1: - resolution: - { - integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==, - } + resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} browser-process-hrtime@1.0.0: - resolution: - { - integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==, - } + resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} browserify-aes@1.2.0: - resolution: - { - integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==, - } + resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} browserify-cipher@1.0.1: - resolution: - { - integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==, - } + resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==} browserify-des@1.0.2: - resolution: - { - integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==, - } + resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==} browserify-rsa@4.1.0: - resolution: - { - integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==, - } + resolution: {integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==} browserify-sign@4.2.3: - resolution: - { - integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==, - } - engines: { node: ">= 0.12" } + resolution: {integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==} + engines: {node: '>= 0.12'} browserify-zlib@0.1.4: - resolution: - { - integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==, - } + resolution: {integrity: sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==} browserify-zlib@0.2.0: - resolution: - { - integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==, - } + resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==} browserslist@4.23.0: - resolution: - { - integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==, - } - engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } + resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true bs-logger@0.2.6: - resolution: - { - integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} + engines: {node: '>= 6'} bs58@4.0.0: - resolution: - { - integrity: sha512-/jcGuUuSebyxwLLfKrbKnCJttxRf9PM51EnHTwmFKBxl4z1SGkoAhrfd6uZKE0dcjQTfm6XzTP8DPr1tzE4KIw==, - } + resolution: {integrity: sha512-/jcGuUuSebyxwLLfKrbKnCJttxRf9PM51EnHTwmFKBxl4z1SGkoAhrfd6uZKE0dcjQTfm6XzTP8DPr1tzE4KIw==} bs58@4.0.1: - resolution: - { - integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==, - } + resolution: {integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==} bs58@5.0.0: - resolution: - { - integrity: sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==, - } + resolution: {integrity: sha512-r+ihvQJvahgYT50JD05dyJNKlmmSlMoOGwn1lCcEzanPglg7TxYjioQUYehQ9mAR/+hOSd2jRc/Z2y5UxBymvQ==} bs58check@2.1.2: - resolution: - { - integrity: sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==, - } + resolution: {integrity: sha512-0TS1jicxdU09dwJMNZtVAfzPi6Q6QeN0pM1Fkzrjn+XYHvzMKPU3pHVpva+769iNVSfIYWf7LJ6WR+BuuMf8cA==} bs58check@3.0.1: - resolution: - { - integrity: sha512-hjuuJvoWEybo7Hn/0xOrczQKKEKD63WguEjlhLExYs2wUBcebDC1jDNK17eEAD2lYfw82d5ASC1d7K3SWszjaQ==, - } + resolution: {integrity: sha512-hjuuJvoWEybo7Hn/0xOrczQKKEKD63WguEjlhLExYs2wUBcebDC1jDNK17eEAD2lYfw82d5ASC1d7K3SWszjaQ==} bser@2.1.1: - resolution: - { - integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==, - } + resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} btoa-lite@1.0.0: - resolution: - { - integrity: sha512-gvW7InbIyF8AicrqWoptdW08pUxuhq8BEgowNajy9RhiE86fmGAGl+bLKo6oB8QP0CkqHLowfN0oJdKC/J6LbA==, - } + resolution: {integrity: sha512-gvW7InbIyF8AicrqWoptdW08pUxuhq8BEgowNajy9RhiE86fmGAGl+bLKo6oB8QP0CkqHLowfN0oJdKC/J6LbA==} btoa@1.2.1: - resolution: - { - integrity: sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==, - } - engines: { node: ">= 0.4.0" } + resolution: {integrity: sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==} + engines: {node: '>= 0.4.0'} hasBin: true buffer-alloc-unsafe@1.1.0: - resolution: - { - integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==, - } + resolution: {integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==} buffer-alloc@1.2.0: - resolution: - { - integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==, - } + resolution: {integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==} buffer-crc32@0.2.13: - resolution: - { - integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==, - } + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} buffer-equal-constant-time@1.0.1: - resolution: - { - integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==, - } + resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} buffer-equal@1.0.1: - resolution: - { - integrity: sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==, - } - engines: { node: ">=0.4" } + resolution: {integrity: sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==} + engines: {node: '>=0.4'} buffer-fill@1.0.0: - resolution: - { - integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==, - } + resolution: {integrity: sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==} buffer-from@1.1.2: - resolution: - { - integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, - } + resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} buffer-indexof-polyfill@1.0.2: - resolution: - { - integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==} + engines: {node: '>=0.10'} buffer-to-arraybuffer@0.0.5: - resolution: - { - integrity: sha512-3dthu5CYiVB1DEJp61FtApNnNndTckcqe4pFcLdvHtrpG+kcyekCJKg4MRiDcFW7A6AODnXB9U4dwQiCW5kzJQ==, - } + resolution: {integrity: sha512-3dthu5CYiVB1DEJp61FtApNnNndTckcqe4pFcLdvHtrpG+kcyekCJKg4MRiDcFW7A6AODnXB9U4dwQiCW5kzJQ==} buffer-xor@1.0.3: - resolution: - { - integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==, - } + resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} buffer@4.9.2: - resolution: - { - integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==, - } + resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==} buffer@5.4.3: - resolution: - { - integrity: sha512-zvj65TkFeIt3i6aj5bIvJDzjjQQGs4o/sNoezg1F1kYap9Nu2jcUdpwzRSJTHMMzG0H7bZkn4rNQpImhuxWX2A==, - } + resolution: {integrity: sha512-zvj65TkFeIt3i6aj5bIvJDzjjQQGs4o/sNoezg1F1kYap9Nu2jcUdpwzRSJTHMMzG0H7bZkn4rNQpImhuxWX2A==} buffer@5.6.0: - resolution: - { - integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==, - } + resolution: {integrity: sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==} buffer@5.6.1: - resolution: - { - integrity: sha512-2z15UUHpS9/3tk9mY/q+Rl3rydOi7yMp5XWNQnRvoz+mJwiv8brqYwp9a+nOCtma6dwuEIxljD8W3ysVBZ05Vg==, - } + resolution: {integrity: sha512-2z15UUHpS9/3tk9mY/q+Rl3rydOi7yMp5XWNQnRvoz+mJwiv8brqYwp9a+nOCtma6dwuEIxljD8W3ysVBZ05Vg==} 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==} buffers@0.1.1: - resolution: - { - integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==, - } - engines: { node: ">=0.2.0" } + resolution: {integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==} + engines: {node: '>=0.2.0'} bufferutil@4.0.8: - resolution: - { - integrity: sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==, - } - engines: { node: ">=6.14.2" } + resolution: {integrity: sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==} + engines: {node: '>=6.14.2'} builder-util-runtime@9.2.3: - resolution: - { - integrity: sha512-FGhkqXdFFZ5dNC4C+yuQB9ak311rpGAw+/ASz8ZdxwODCv1GGMWgLDeofRkdi0F3VCHQEWy/aXcJQozx2nOPiw==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-FGhkqXdFFZ5dNC4C+yuQB9ak311rpGAw+/ASz8ZdxwODCv1GGMWgLDeofRkdi0F3VCHQEWy/aXcJQozx2nOPiw==} + engines: {node: '>=12.0.0'} builder-util-runtime@9.2.4: - resolution: - { - integrity: sha512-upp+biKpN/XZMLim7aguUyW8s0FUpDvOtK6sbanMFDAMBzpHDqdhgVYm6zc9HJ6nWo7u2Lxk60i2M6Jd3aiNrA==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-upp+biKpN/XZMLim7aguUyW8s0FUpDvOtK6sbanMFDAMBzpHDqdhgVYm6zc9HJ6nWo7u2Lxk60i2M6Jd3aiNrA==} + engines: {node: '>=12.0.0'} builder-util@24.13.1: - resolution: - { - integrity: sha512-NhbCSIntruNDTOVI9fdXz0dihaqX2YuE1D6zZMrwiErzH4ELZHE6mdiB40wEgZNprDia+FghRFgKoAqMZRRjSA==, - } + resolution: {integrity: sha512-NhbCSIntruNDTOVI9fdXz0dihaqX2YuE1D6zZMrwiErzH4ELZHE6mdiB40wEgZNprDia+FghRFgKoAqMZRRjSA==} builtin-modules@3.3.0: - resolution: - { - integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} + engines: {node: '>=6'} builtin-status-codes@3.0.0: - resolution: - { - integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==, - } + resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==} builtins@1.0.3: - resolution: - { - integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==, - } + resolution: {integrity: sha512-uYBjakWipfaO/bXI7E8rq6kpwHRZK5cNYrUv2OzZSI/FvmdMyXJ2tG9dKcjEC5YHmHpUAwsargWIZNWdxb/bnQ==} bundle-require@4.0.2: - resolution: - { - integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} peerDependencies: - esbuild: ">=0.17" + esbuild: '>=0.17' bunyamin@1.5.2: - resolution: - { - integrity: sha512-Xp2nfqk33zt3nX90OSTkLVOc5N+1zdR3MWvfLHoIrm3cGRkdxPTPYB9CCgrDV8oum5rbghJjAbmXFXOrRXvMtg==, - } - engines: { node: ">=14.18.2" } + resolution: {integrity: sha512-Xp2nfqk33zt3nX90OSTkLVOc5N+1zdR3MWvfLHoIrm3cGRkdxPTPYB9CCgrDV8oum5rbghJjAbmXFXOrRXvMtg==} + engines: {node: '>=14.18.2'} peerDependencies: - "@types/bunyan": ^1.8.8 + '@types/bunyan': ^1.8.8 bunyan: ^1.8.15 || ^2.0.0 peerDependenciesMeta: - "@types/bunyan": + '@types/bunyan': optional: true bunyan: optional: true bunyamin@1.6.3: - resolution: - { - integrity: sha512-m1hAijFhu8pFiidsVc0XEDic46uxPK+mKNLqkb5mluNx0nTolNzx/DjwMqHChQWCgfOLMjKYJJ2uPTQLE6t4Ng==, - } - engines: { node: ">=14.18.2" } + resolution: {integrity: sha512-m1hAijFhu8pFiidsVc0XEDic46uxPK+mKNLqkb5mluNx0nTolNzx/DjwMqHChQWCgfOLMjKYJJ2uPTQLE6t4Ng==} + engines: {node: '>=14.18.2'} peerDependencies: - "@types/bunyan": ^1.8.8 + '@types/bunyan': ^1.8.8 bunyan: ^1.8.15 || ^2.0.0 peerDependenciesMeta: - "@types/bunyan": + '@types/bunyan': optional: true bunyan: optional: true bunyan-debug-stream@3.1.0: - resolution: - { - integrity: sha512-VaFYbDVdiSn3ZpdozrjZ8mFpxHXl26t11C1DKRQtbo0EgffqeFNrRLOGIESKVeGEvVu4qMxMSSxzNlSw7oTj7w==, - } - engines: { node: ">=0.12.0" } + resolution: {integrity: sha512-VaFYbDVdiSn3ZpdozrjZ8mFpxHXl26t11C1DKRQtbo0EgffqeFNrRLOGIESKVeGEvVu4qMxMSSxzNlSw7oTj7w==} + engines: {node: '>=0.12.0'} peerDependencies: - bunyan: "*" + bunyan: '*' bunyan@1.8.15: - resolution: - { - integrity: sha512-0tECWShh6wUysgucJcBAoYegf3JJoZWibxdqhTm7OHPeT42qdjkZ29QCMcKwbgU1kiH+auSIasNRXMLWXafXig==, - } - engines: { "0": node >=0.10.0 } + resolution: {integrity: sha512-0tECWShh6wUysgucJcBAoYegf3JJoZWibxdqhTm7OHPeT42qdjkZ29QCMcKwbgU1kiH+auSIasNRXMLWXafXig==} + engines: {'0': node >=0.10.0} hasBin: true bunyan@2.0.5: - resolution: - { - integrity: sha512-Jvl74TdxCN6rSP9W1I6+UOUtwslTDqsSFkDqZlFb/ilaSvQ+bZAnXT/GT97IZ5L+Vph0joPZPhxUyn6FLNmFAA==, - } - engines: { "0": node >=0.10.0 } + resolution: {integrity: sha512-Jvl74TdxCN6rSP9W1I6+UOUtwslTDqsSFkDqZlFb/ilaSvQ+bZAnXT/GT97IZ5L+Vph0joPZPhxUyn6FLNmFAA==} + engines: {'0': node >=0.10.0} hasBin: true 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'} byte-size@6.2.0: - resolution: - { - integrity: sha512-6EspYUCAPMc7E2rltBgKwhG+Cmk0pDm9zDtF1Awe2dczNUL3YpZ8mTs/dueOTS1hqGWBOatqef4jYMGjln7WmA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-6EspYUCAPMc7E2rltBgKwhG+Cmk0pDm9zDtF1Awe2dczNUL3YpZ8mTs/dueOTS1hqGWBOatqef4jYMGjln7WmA==} + engines: {node: '>=8'} bytes@3.0.0: - resolution: - { - integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} + engines: {node: '>= 0.8'} bytes@3.1.2: - resolution: - { - integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} + engines: {node: '>= 0.8'} c32check@1.1.3: - resolution: - { - integrity: sha512-ADADE/PjAbJRlwpG3ShaOMbBUlJJZO7xaYSRD5Tub6PixQlgR4s36y9cvMf/YRGpkqX+QOxIdMw216iC320q9A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ADADE/PjAbJRlwpG3ShaOMbBUlJJZO7xaYSRD5Tub6PixQlgR4s36y9cvMf/YRGpkqX+QOxIdMw216iC320q9A==} + engines: {node: '>=8'} c32check@2.0.0: - resolution: - { - integrity: sha512-rpwfAcS/CMqo0oCqDf3r9eeLgScRE3l/xHDCXhM3UyrfvIn7PrLq63uHh7yYbv8NzaZn5MVsVhIRpQ+5GZ5HyA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-rpwfAcS/CMqo0oCqDf3r9eeLgScRE3l/xHDCXhM3UyrfvIn7PrLq63uHh7yYbv8NzaZn5MVsVhIRpQ+5GZ5HyA==} + engines: {node: '>=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'} cacache@15.3.0: - resolution: - { - integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==} + engines: {node: '>= 10'} cacache@18.0.4: - resolution: - { - integrity: sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==, - } - engines: { node: ^16.14.0 || >=18.0.0 } + resolution: {integrity: sha512-B+L5iIa9mgcjLbliir2th36yEwPftrzteHYujzsx3dFP/31GCHcIeS8f5MGd80odLOjaOvSpU3EEAmRQptkxLQ==} + engines: {node: ^16.14.0 || >=18.0.0} cache-content-type@1.0.1: - resolution: - { - integrity: sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==, - } - engines: { node: ">= 6.0.0" } + resolution: {integrity: sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==} + engines: {node: '>= 6.0.0'} cacheable-lookup@5.0.4: - resolution: - { - integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==, - } - engines: { node: ">=10.6.0" } + resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} + engines: {node: '>=10.6.0'} cacheable-request@6.1.0: - resolution: - { - integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} + engines: {node: '>=8'} cacheable-request@7.0.4: - resolution: - { - integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==} + engines: {node: '>=8'} caching-transform@4.0.0: - resolution: - { - integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==} + engines: {node: '>=8'} caf@15.0.1: - resolution: - { - integrity: sha512-Xp/IK6vMwujxWZXra7djdYzPdPnEQKa7Mudu2wZgDQ3TJry1I0TgtjEgwZHpoBcMp68j4fb0/FZ1SJyMEgJrXQ==, - } + resolution: {integrity: sha512-Xp/IK6vMwujxWZXra7djdYzPdPnEQKa7Mudu2wZgDQ3TJry1I0TgtjEgwZHpoBcMp68j4fb0/FZ1SJyMEgJrXQ==} call-bind@1.0.7: - resolution: - { - integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} + engines: {node: '>= 0.4'} caller-callsite@2.0.0: - resolution: - { - integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ==} + engines: {node: '>=4'} caller-path@2.0.0: - resolution: - { - integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A==} + engines: {node: '>=4'} callsites@2.0.0: - resolution: - { - integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ==} + engines: {node: '>=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-keys@6.2.2: - resolution: - { - integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} + engines: {node: '>=8'} camelcase@5.0.0: - resolution: - { - integrity: sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==} + 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'} camelize@1.0.1: - resolution: - { - integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==, - } + resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} caniuse-api@3.0.0: - resolution: - { - integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==, - } + resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} caniuse-lite@1.0.30001600: - resolution: - { - integrity: sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ==, - } + resolution: {integrity: sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ==} canvas-confetti@1.9.2: - resolution: - { - integrity: sha512-6Xi7aHHzKwxZsem4mCKoqP6YwUG3HamaHHAlz1hTNQPCqXhARFpSXnkC9TWlahHY5CG6hSL5XexNjxK8irVErg==, - } + resolution: {integrity: sha512-6Xi7aHHzKwxZsem4mCKoqP6YwUG3HamaHHAlz1hTNQPCqXhARFpSXnkC9TWlahHY5CG6hSL5XexNjxK8irVErg==} case-sensitive-paths-webpack-plugin@2.4.0: - resolution: - { - integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==} + engines: {node: '>=4'} caseless@0.12.0: - resolution: - { - integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==, - } + resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} cashaddrjs@0.4.4: - resolution: - { - integrity: sha512-xZkuWdNOh0uq/mxJIng6vYWfTowZLd9F4GMAlp2DwFHlcCqCm91NtuAc47RuV4L7r4PYcY5p6Cr2OKNb4hnkWA==, - } + resolution: {integrity: sha512-xZkuWdNOh0uq/mxJIng6vYWfTowZLd9F4GMAlp2DwFHlcCqCm91NtuAc47RuV4L7r4PYcY5p6Cr2OKNb4hnkWA==} casper-js-sdk@2.15.4: - resolution: - { - integrity: sha512-mdd8IBTW3g4RIfQ8YOWIijXPTf5oumWJLoAH1YvYKJ9R2sI9eqJCXjAFo7ragnhiqoR07J3IYNFYYwXMvGwUDA==, - } + resolution: {integrity: sha512-mdd8IBTW3g4RIfQ8YOWIijXPTf5oumWJLoAH1YvYKJ9R2sI9eqJCXjAFo7ragnhiqoR07J3IYNFYYwXMvGwUDA==} catharsis@0.9.0: - resolution: - { - integrity: sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==} + engines: {node: '>= 10'} cbor@9.0.2: - resolution: - { - integrity: sha512-JPypkxsB10s9QOWwa6zwPzqE1Md3vqpPc+cai4sAecuCsRyAtAl/pMyhPlMbT/xtPnm2dznJZYRLui57qiRhaQ==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-JPypkxsB10s9QOWwa6zwPzqE1Md3vqpPc+cai4sAecuCsRyAtAl/pMyhPlMbT/xtPnm2dznJZYRLui57qiRhaQ==} + engines: {node: '>=16'} cborg@4.1.4: - resolution: - { - integrity: sha512-cCw4IuvCnwjsrgrCQoreyLZDETsfw+AtFz+OFwWbWgA1yALo4nHC3Vv+zhgcVB2bor6GFRZVxrZ7Yt/3hBFAkA==, - } + resolution: {integrity: sha512-cCw4IuvCnwjsrgrCQoreyLZDETsfw+AtFz+OFwWbWgA1yALo4nHC3Vv+zhgcVB2bor6GFRZVxrZ7Yt/3hBFAkA==} hasBin: true ccount@2.0.1: - resolution: - { - integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==, - } + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} chai@4.4.1: - resolution: - { - integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-13sOfMv2+DWduEU+/xbun3LScLoqN17nBeTLUsmDfKdoiC1fr0n9PU4guu4AhRcOVFk/sW8LyZWHuhWtQZiF+g==} + engines: {node: '>=4'} chainsaw@0.1.0: - resolution: - { - integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==, - } + resolution: {integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==} chalk@1.1.3: - resolution: - { - integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} + engines: {node: '>=0.10.0'} chalk@2.3.0: - resolution: - { - integrity: sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==} + engines: {node: '>=4'} chalk@2.4.2: - resolution: - { - integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} 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.3.0: - resolution: - { - integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==, - } - engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} char-regex@1.0.2: - resolution: - { - integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} + engines: {node: '>=10'} char-regex@2.0.1: - resolution: - { - integrity: sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==, - } - engines: { node: ">=12.20" } + resolution: {integrity: sha512-oSvEeo6ZUD7NepqAat3RqoucZ5SeqLJgOvVIwkafu6IP3V0pO38s/ypdVUmDDK6qIIHNlYHJAKX9E7R7HoKElw==} + engines: {node: '>=12.20'} character-entities-html4@2.1.0: - resolution: - { - integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==, - } + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} character-entities-legacy@1.1.4: - resolution: - { - integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==, - } + resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} 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@1.2.4: - resolution: - { - integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==, - } + resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} 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@1.1.4: - resolution: - { - integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==, - } + resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} 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==} charenc@0.0.2: - resolution: - { - integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==, - } + resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==} chart.js@2.9.4: - resolution: - { - integrity: sha512-B07aAzxcrikjAPyV+01j7BmOpxtQETxTSlQ26BEYJ+3iUkbNKaOJ/nDbT6JjyqYxseM0ON12COHYdU2cTIjC7A==, - } + resolution: {integrity: sha512-B07aAzxcrikjAPyV+01j7BmOpxtQETxTSlQ26BEYJ+3iUkbNKaOJ/nDbT6JjyqYxseM0ON12COHYdU2cTIjC7A==} chartjs-color-string@0.6.0: - resolution: - { - integrity: sha512-TIB5OKn1hPJvO7JcteW4WY/63v6KwEdt6udfnDE9iCAZgy+V4SrbSxoIbTw/xkUIapjEI4ExGtD0+6D3KyFd7A==, - } + resolution: {integrity: sha512-TIB5OKn1hPJvO7JcteW4WY/63v6KwEdt6udfnDE9iCAZgy+V4SrbSxoIbTw/xkUIapjEI4ExGtD0+6D3KyFd7A==} chartjs-color@2.4.1: - resolution: - { - integrity: sha512-haqOg1+Yebys/Ts/9bLo/BqUcONQOdr/hoEr2LLTRl6C5LXctUdHxsCYfvQVg5JIxITrfCNUDr4ntqmQk9+/0w==, - } + resolution: {integrity: sha512-haqOg1+Yebys/Ts/9bLo/BqUcONQOdr/hoEr2LLTRl6C5LXctUdHxsCYfvQVg5JIxITrfCNUDr4ntqmQk9+/0w==} check-error@1.0.3: - resolution: - { - integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==, - } + resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} check-types@11.2.3: - resolution: - { - integrity: sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==, - } + resolution: {integrity: sha512-+67P1GkJRaxQD6PKK0Et9DhwQB+vGg3PM5+aavopCpZT1lj9jeqfvpgTLAWErNj8qApkkmXlu/Ug74kmhagkXg==} child-process-promise@2.2.1: - resolution: - { - integrity: sha512-Fi4aNdqBsr0mv+jgWxcZ/7rAIC2mgihrptyVI4foh/rrjY/3BNjfP9+oaiFx/fzim+1ZyCNBae0DlyfQhSugog==, - } + resolution: {integrity: sha512-Fi4aNdqBsr0mv+jgWxcZ/7rAIC2mgihrptyVI4foh/rrjY/3BNjfP9+oaiFx/fzim+1ZyCNBae0DlyfQhSugog==} 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'} chownr@1.1.4: - resolution: - { - integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==, - } + resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} chownr@2.0.0: - resolution: - { - integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} + engines: {node: '>=10'} chrome-launcher@0.15.2: - resolution: - { - integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==, - } - engines: { node: ">=12.13.0" } + resolution: {integrity: sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==} + engines: {node: '>=12.13.0'} hasBin: true chrome-trace-event@1.0.3: - resolution: - { - integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==, - } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==} + engines: {node: '>=6.0'} chromium-pickle-js@0.2.0: - resolution: - { - integrity: sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==, - } + resolution: {integrity: sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==} ci-info@2.0.0: - resolution: - { - integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==, - } + resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} ci-info@3.9.0: - resolution: - { - integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} + engines: {node: '>=8'} cids@0.7.5: - resolution: - { - integrity: sha512-zT7mPeghoWAu+ppn8+BS1tQ5qGmbMfB4AregnQjA/qHY3GC1m1ptI9GkWNlgeu38r7CuRdXB47uY2XgAYt6QVA==, - } - engines: { node: ">=4.0.0", npm: ">=3.0.0" } + resolution: {integrity: sha512-zT7mPeghoWAu+ppn8+BS1tQ5qGmbMfB4AregnQjA/qHY3GC1m1ptI9GkWNlgeu38r7CuRdXB47uY2XgAYt6QVA==} + engines: {node: '>=4.0.0', npm: '>=3.0.0'} deprecated: This module has been superseded by the multiformats module cipher-base@1.0.4: - resolution: - { - integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==, - } + resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==} citty@0.1.6: - resolution: - { - integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==, - } + resolution: {integrity: sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==} cjs-module-lexer@1.2.3: - resolution: - { - integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==, - } + resolution: {integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==} class-is@1.1.0: - resolution: - { - integrity: sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw==, - } + resolution: {integrity: sha512-rhjH9AG1fvabIDoGRVH587413LPjTZgmDF9fOFCbFJQV4yuocX1mHxxvXI4g3cGwbVY9wAYIoKlg1N79frJKQw==} classnames@2.5.1: - resolution: - { - integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==, - } + resolution: {integrity: sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==} clean-css@5.3.3: - resolution: - { - integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==, - } - engines: { node: ">= 10.0" } + resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==} + engines: {node: '>= 10.0'} clean-stack@2.2.0: - resolution: - { - integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} + engines: {node: '>=6'} clean-webpack-plugin@4.0.0: - resolution: - { - integrity: sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==} + engines: {node: '>=10.0.0'} peerDependencies: - webpack: ">=4.0.0 <6.0.0" + webpack: '>=4.0.0 <6.0.0' cli-cursor@2.1.0: - resolution: - { - integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==} + engines: {node: '>=4'} 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-highlight@2.1.11: - resolution: - { - integrity: sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==, - } - engines: { node: ">=8.0.0", npm: ">=5.0.0" } + resolution: {integrity: sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==} + engines: {node: '>=8.0.0', npm: '>=5.0.0'} hasBin: true cli-spinners@2.9.2: - resolution: - { - integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} + engines: {node: '>=6'} cli-table3@0.6.4: - resolution: - { - integrity: sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==, - } - engines: { node: 10.* || >= 12.* } + resolution: {integrity: sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==} + engines: {node: 10.* || >= 12.*} cli-truncate@0.2.1: - resolution: - { - integrity: sha512-f4r4yJnbT++qUPI9NR4XLDLq41gQ+uqnPItWG0F5ZkehuNiTTa3EY0S4AqTSUOeJ7/zU41oWPQSNkW5BqPL9bg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-f4r4yJnbT++qUPI9NR4XLDLq41gQ+uqnPItWG0F5ZkehuNiTTa3EY0S4AqTSUOeJ7/zU41oWPQSNkW5BqPL9bg==} + engines: {node: '>=0.10.0'} 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-truncate@3.1.0: - resolution: - { - integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} cli-width@2.2.1: - resolution: - { - integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==, - } + resolution: {integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==} cli-width@4.1.0: - resolution: - { - integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==, - } - engines: { node: ">= 12" } + resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} + engines: {node: '>= 12'} client-only@0.0.1: - resolution: - { - integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==, - } + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} clipboardy@1.2.2: - resolution: - { - integrity: sha512-16KrBOV7bHmHdxcQiCvfUFYVFyEah4FI8vYT1Fr7CGSA4G+xBWMEfUEQJS1hxeHGtI9ju1Bzs9uXSbj5HZKArw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-16KrBOV7bHmHdxcQiCvfUFYVFyEah4FI8vYT1Fr7CGSA4G+xBWMEfUEQJS1hxeHGtI9ju1Bzs9uXSbj5HZKArw==} + engines: {node: '>=4'} clipboardy@2.3.0: - resolution: - { - integrity: sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-mKhiIL2DrQIsuXMgBgnfEHOZOryC7kY7YO//TN6c63wlEm3NG5tz+YgY5rVi29KCmq/QQjKYvM7a19+MDOTHOQ==} + engines: {node: '>=8'} cliui@6.0.0: - resolution: - { - integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==, - } + resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} cliui@7.0.4: - resolution: - { - integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==, - } + resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==} 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-deep@2.0.2: - resolution: - { - integrity: sha512-SZegPTKjCgpQH63E+eN6mVEEPdQBOUzjyJm5Pora4lrwWRFS8I0QAxV/KD6vV/i0WuijHZWQC1fMsPEdxfdVCQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-SZegPTKjCgpQH63E+eN6mVEEPdQBOUzjyJm5Pora4lrwWRFS8I0QAxV/KD6vV/i0WuijHZWQC1fMsPEdxfdVCQ==} + engines: {node: '>=0.10.0'} clone-deep@4.0.1: - resolution: - { - integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==} + engines: {node: '>=6'} clone-response@1.0.3: - resolution: - { - integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==, - } + resolution: {integrity: sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==} clone@0.1.19: - resolution: - { - integrity: sha512-IO78I0y6JcSpEPHzK4obKdsL7E7oLdRVDVOLwr2Hkbjsb+Eoz0dxW6tef0WizoKu0gLC4oZSZuEF4U2K6w1WQw==, - } + resolution: {integrity: sha512-IO78I0y6JcSpEPHzK4obKdsL7E7oLdRVDVOLwr2Hkbjsb+Eoz0dxW6tef0WizoKu0gLC4oZSZuEF4U2K6w1WQw==} 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'} clone@2.1.2: - resolution: - { - integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==, - } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} + engines: {node: '>=0.8'} clsx@2.1.1: - resolution: - { - integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} cluster-key-slot@1.1.2: - resolution: - { - integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==} + engines: {node: '>=0.10.0'} co-body@6.1.0: - resolution: - { - integrity: sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ==, - } + resolution: {integrity: sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ==} co@4.6.0: - resolution: - { - integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==, - } - engines: { iojs: ">= 1.0.0", node: ">= 0.12.0" } + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} + engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} coa@2.0.2: - resolution: - { - integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==, - } - engines: { node: ">= 4.0" } + resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} + engines: {node: '>= 4.0'} code-point-at@1.1.0: - resolution: - { - integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==} + engines: {node: '>=0.10.0'} codemirror@6.0.1: - resolution: - { - integrity: sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==, - } + resolution: {integrity: sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==} coininfo@5.2.1: - resolution: - { - integrity: sha512-mqSQIhAMgeiySzS0Ei33qno0oN/JQt9X3I6J1zx4eIYUnObGPuoLOrpssoqU84ZQoIpJGt3mQdEd2dL3sZJADw==, - } + resolution: {integrity: sha512-mqSQIhAMgeiySzS0Ei33qno0oN/JQt9X3I6J1zx4eIYUnObGPuoLOrpssoqU84ZQoIpJGt3mQdEd2dL3sZJADw==} collapse-white-space@1.0.6: - resolution: - { - integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==, - } + resolution: {integrity: sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ==} collect-v8-coverage@1.0.2: - resolution: - { - integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==, - } + resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} color-convert@1.9.3: - resolution: - { - integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, - } + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 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.3: - resolution: - { - integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, - } + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} color-name@1.1.4: - resolution: - { - integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, - } + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} color-string@1.9.1: - resolution: - { - integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==, - } + resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} color@3.2.1: - resolution: - { - integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==, - } + resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==} color@4.2.3: - resolution: - { - integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==, - } - engines: { node: ">=12.5.0" } + resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} + engines: {node: '>=12.5.0'} colord@2.9.3: - resolution: - { - integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==, - } + resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} colorette@1.4.0: - resolution: - { - integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==, - } + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} colorette@2.0.20: - resolution: - { - integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==, - } + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} colorspace@1.1.4: - resolution: - { - integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==, - } + resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==} 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==} command-exists@1.2.9: - resolution: - { - integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==, - } + resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==} command-line-args@5.2.1: - resolution: - { - integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==, - } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==} + engines: {node: '>=4.0.0'} command-line-usage@6.1.3: - resolution: - { - integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==} + engines: {node: '>=8.0.0'} commander@11.0.0: - resolution: - { - integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-9HMlXtt/BNoYr8ooyjjNRdIilOTkVJXB+GhxMTtOKwk0R4j4lS4NpjuqmRxroBfnfTSHQIHQB7wryHhXarNjmQ==} + engines: {node: '>=16'} commander@12.0.0: - resolution: - { - integrity: sha512-MwVNWlYjDTtOjX5PiD7o5pK0UrFU/OYgcJfjjK4RaHZETNtjJqrZa9Y9ds88+A+f+d5lv+561eZ+yCKoS3gbAA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-MwVNWlYjDTtOjX5PiD7o5pK0UrFU/OYgcJfjjK4RaHZETNtjJqrZa9Y9ds88+A+f+d5lv+561eZ+yCKoS3gbAA==} + engines: {node: '>=18'} commander@2.13.0: - resolution: - { - integrity: sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==, - } + resolution: {integrity: sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==} commander@2.20.0: - resolution: - { - integrity: sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==, - } + resolution: {integrity: sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==} 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@5.1.0: - resolution: - { - integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} + engines: {node: '>= 6'} commander@6.2.1: - resolution: - { - integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} + 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'} commander@8.3.0: - resolution: - { - integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==, - } - engines: { node: ">= 12" } + resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} + engines: {node: '>= 12'} commander@9.5.0: - resolution: - { - integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==, - } - engines: { node: ^12.20.0 || >=14 } + resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} + engines: {node: ^12.20.0 || >=14} common-log-format@1.0.0: - resolution: - { - integrity: sha512-fFn/WPNbsTCGTTwdCpZfVZSa5mgqMEkA0gMTRApFSlEsYN+9B2FPfiqch5FT+jsv5IV1RHV3GeZvCa7Qg+jssw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-fFn/WPNbsTCGTTwdCpZfVZSa5mgqMEkA0gMTRApFSlEsYN+9B2FPfiqch5FT+jsv5IV1RHV3GeZvCa7Qg+jssw==} + engines: {node: '>=8'} hasBin: true common-path-prefix@3.0.0: - resolution: - { - integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==, - } + resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==} 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'} commondir@1.0.1: - resolution: - { - integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==, - } + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} compare-func@2.0.0: - resolution: - { - integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==, - } + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} compare-version@0.1.2: - resolution: - { - integrity: sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==} + engines: {node: '>=0.10.0'} compare-versions@3.6.0: - resolution: - { - integrity: sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==, - } + resolution: {integrity: sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==} component-emitter@1.3.1: - resolution: - { - integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==, - } + resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==} component-type@1.2.2: - resolution: - { - integrity: sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA==, - } + resolution: {integrity: sha512-99VUHREHiN5cLeHm3YLq312p6v+HUEcwtLCAtelvUDI6+SH5g5Cr85oNR2S1o6ywzL0ykMbuwLzM2ANocjEOIA==} compress-commons@5.0.3: - resolution: - { - integrity: sha512-/UIcLWvwAQyVibgpQDPtfNM3SvqN7G9elAPAV7GM0L53EbNWwWiCsWtK8Fwed/APEbptPHXs5PuW+y8Bq8lFTA==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-/UIcLWvwAQyVibgpQDPtfNM3SvqN7G9elAPAV7GM0L53EbNWwWiCsWtK8Fwed/APEbptPHXs5PuW+y8Bq8lFTA==} + engines: {node: '>= 12.0.0'} compressible@2.0.18: - resolution: - { - integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} + engines: {node: '>= 0.6'} compression@1.7.4: - resolution: - { - integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==} + engines: {node: '>= 0.8.0'} compute-scroll-into-view@3.1.0: - resolution: - { - integrity: sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==, - } + resolution: {integrity: sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==} concat-map@0.0.1: - resolution: - { - integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, - } + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} concat-stream@1.6.2: - resolution: - { - integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==, - } - engines: { "0": node >= 0.8 } + resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} + engines: {'0': node >= 0.8} concurrently@8.2.2: - resolution: - { - integrity: sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==, - } - engines: { node: ^14.13.0 || >=16.0.0 } + resolution: {integrity: sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==} + engines: {node: ^14.13.0 || >=16.0.0} hasBin: true conf@10.2.0: - resolution: - { - integrity: sha512-8fLl9F04EJqjSqH+QjITQfJF8BrOVaYr1jewVgSRAEWePfxT0sku4w2hrGQ60BC/TNLGQ2pgxNlTbWQmMPFvXg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-8fLl9F04EJqjSqH+QjITQfJF8BrOVaYr1jewVgSRAEWePfxT0sku4w2hrGQ60BC/TNLGQ2pgxNlTbWQmMPFvXg==} + engines: {node: '>=12'} conf@12.0.0: - resolution: - { - integrity: sha512-fIWyWUXrJ45cHCIQX+Ck1hrZDIf/9DR0P0Zewn3uNht28hbt5OfGUq8rRWsxi96pZWPyBEd0eY9ama01JTaknA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-fIWyWUXrJ45cHCIQX+Ck1hrZDIf/9DR0P0Zewn3uNht28hbt5OfGUq8rRWsxi96pZWPyBEd0eY9ama01JTaknA==} + engines: {node: '>=18'} config-file-ts@0.2.6: - resolution: - { - integrity: sha512-6boGVaglwblBgJqGyxm4+xCmEGcWgnWHSWHY5jad58awQhB6gftq0G8HbzU39YqCIYHMLAiL1yjwiZ36m/CL8w==, - } + resolution: {integrity: sha512-6boGVaglwblBgJqGyxm4+xCmEGcWgnWHSWHY5jad58awQhB6gftq0G8HbzU39YqCIYHMLAiL1yjwiZ36m/CL8w==} confusing-browser-globals@1.0.11: - resolution: - { - integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==, - } + resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} connect-history-api-fallback@2.0.0: - resolution: - { - integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==, - } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==} + engines: {node: '>=0.8'} connect@3.7.0: - resolution: - { - integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==, - } - engines: { node: ">= 0.10.0" } + resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==} + engines: {node: '>= 0.10.0'} consola@3.2.3: - resolution: - { - integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==, - } - engines: { node: ^14.18.0 || >=16.10.0 } + resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} + engines: {node: ^14.18.0 || >=16.10.0} console-browserify@1.2.0: - resolution: - { - integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==, - } + resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==} consolidate@0.15.1: - resolution: - { - integrity: sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==, - } - engines: { node: ">= 0.10.0" } + resolution: {integrity: sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==} + engines: {node: '>= 0.10.0'} deprecated: Please upgrade to consolidate v1.0.0+ as it has been modernized with several long-awaited fixes implemented. Maintenance is supported by Forward Email at https://forwardemail.net ; follow/watch https://github.com/ladjs/consolidate for updates and release changelog peerDependencies: arc-templates: ^0.5.3 - atpl: ">=0.7.6" + atpl: '>=0.7.6' babel-core: ^6.26.3 bracket-template: ^1.1.5 coffee-script: ^1.12.7 @@ -24925,9 +17767,9 @@ packages: swig: ^1.4.2 swig-templates: ^2.0.3 teacup: ^2.0.0 - templayed: ">=0.2.3" - then-jade: "*" - then-pug: "*" + templayed: '>=0.2.3' + then-jade: '*' + then-pug: '*' tinyliquid: ^0.2.34 toffee: ^0.3.6 twig: ^1.15.2 @@ -25046,472 +17888,277 @@ packages: optional: true constants-browserify@1.0.0: - resolution: - { - integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==, - } + resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} content-disposition@0.5.2: - resolution: - { - integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==} + engines: {node: '>= 0.6'} content-disposition@0.5.4: - resolution: - { - integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} + engines: {node: '>= 0.6'} content-hash@2.5.2: - resolution: - { - integrity: sha512-FvIQKy0S1JaWV10sMsA7TRx8bpU+pqPkhbsfvOJAdjRXvYxEckAwQWGwtRjiaJfh+E0DvcWUGqcdjwMGFjsSdw==, - } + resolution: {integrity: sha512-FvIQKy0S1JaWV10sMsA7TRx8bpU+pqPkhbsfvOJAdjRXvYxEckAwQWGwtRjiaJfh+E0DvcWUGqcdjwMGFjsSdw==} content-type@1.0.5: - resolution: - { - integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} + engines: {node: '>= 0.6'} conventional-changelog-angular@6.0.0: - resolution: - { - integrity: sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==} + engines: {node: '>=14'} conventional-changelog-conventionalcommits@6.1.0: - resolution: - { - integrity: sha512-3cS3GEtR78zTfMzk0AizXKKIdN4OvSh7ibNz6/DPbhWWQu7LqE/8+/GqSodV+sywUR2gpJAdP/1JFf4XtN7Zpw==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-3cS3GEtR78zTfMzk0AizXKKIdN4OvSh7ibNz6/DPbhWWQu7LqE/8+/GqSodV+sywUR2gpJAdP/1JFf4XtN7Zpw==} + engines: {node: '>=14'} conventional-commits-parser@4.0.0: - resolution: - { - integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==} + engines: {node: '>=14'} hasBin: true convert-source-map@1.9.0: - resolution: - { - integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==, - } + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} convert-source-map@2.0.0: - resolution: - { - integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, - } + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} cookie-signature@1.0.6: - resolution: - { - integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==, - } + resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} cookie@0.4.2: - resolution: - { - integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} + engines: {node: '>= 0.6'} cookie@0.5.0: - resolution: - { - integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} + engines: {node: '>= 0.6'} cookie@0.6.0: - resolution: - { - integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} + engines: {node: '>= 0.6'} cookiejar@2.1.4: - resolution: - { - integrity: sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==, - } + resolution: {integrity: sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==} cookies@0.9.1: - resolution: - { - integrity: sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==} + engines: {node: '>= 0.8'} copy-to@2.0.1: - resolution: - { - integrity: sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==, - } + resolution: {integrity: sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==} copy-webpack-plugin@10.2.4: - resolution: - { - integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==, - } - engines: { node: ">= 12.20.0" } + resolution: {integrity: sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==} + engines: {node: '>= 12.20.0'} peerDependencies: webpack: ^5.1.0 copy-webpack-plugin@9.1.0: - resolution: - { - integrity: sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==} + engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.1.0 core-js-compat@3.36.1: - resolution: - { - integrity: sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==, - } + resolution: {integrity: sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==} core-js-pure@3.36.1: - resolution: - { - integrity: sha512-NXCvHvSVYSrewP0L5OhltzXeWFJLo2AL2TYnj6iLV3Bw8mM62wAQMNgUCRI6EBu6hVVpbCxmOPlxh1Ikw2PfUA==, - } + resolution: {integrity: sha512-NXCvHvSVYSrewP0L5OhltzXeWFJLo2AL2TYnj6iLV3Bw8mM62wAQMNgUCRI6EBu6hVVpbCxmOPlxh1Ikw2PfUA==} core-js@2.6.12: - resolution: - { - integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==, - } + resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==} deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. core-js@3.36.1: - resolution: - { - integrity: sha512-BTvUrwxVBezj5SZ3f10ImnX2oRByMxql3EimVqMysepbC9EeMUOpLwdy6Eoili2x6E4kf+ZUB5k/+Jv55alPfA==, - } + resolution: {integrity: sha512-BTvUrwxVBezj5SZ3f10ImnX2oRByMxql3EimVqMysepbC9EeMUOpLwdy6Eoili2x6E4kf+ZUB5k/+Jv55alPfA==} core-util-is@1.0.2: - resolution: - { - integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==, - } + resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} core-util-is@1.0.3: - resolution: - { - integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==, - } + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} cors@2.8.5: - resolution: - { - integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==, - } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} + engines: {node: '>= 0.10'} corser@2.0.1: - resolution: - { - integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==, - } - engines: { node: ">= 0.4.0" } + resolution: {integrity: sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==} + engines: {node: '>= 0.4.0'} cose-base@1.0.3: - resolution: - { - integrity: sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==, - } + resolution: {integrity: sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==} cosmiconfig-typescript-loader@4.4.0: - resolution: - { - integrity: sha512-BabizFdC3wBHhbI4kJh0VkQP9GkBfoHPydD0COMce1nJ1kJAB3F2TmJ/I7diULBKtmEWSwEbuN/KDtgnmUUVmw==, - } - engines: { node: ">=v14.21.3" } + resolution: {integrity: sha512-BabizFdC3wBHhbI4kJh0VkQP9GkBfoHPydD0COMce1nJ1kJAB3F2TmJ/I7diULBKtmEWSwEbuN/KDtgnmUUVmw==} + engines: {node: '>=v14.21.3'} peerDependencies: - "@types/node": "*" - cosmiconfig: ">=7" - ts-node: ">=10" - typescript: ">=4" + '@types/node': '*' + cosmiconfig: '>=7' + ts-node: '>=10' + typescript: '>=4' cosmiconfig@5.2.1: - resolution: - { - integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==} + engines: {node: '>=4'} cosmiconfig@6.0.0: - resolution: - { - integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} + engines: {node: '>=8'} cosmiconfig@7.1.0: - resolution: - { - integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} + engines: {node: '>=10'} 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 cosmjs-types@0.2.1: - resolution: - { - integrity: sha512-EUG6TgdWkYHBzXjo5tZ82L+0QLijTu/rZGNIbJ/n07ST30GmptYkPmO+REX7qF4YUtli//Rfy0rrNzH9IMrMmw==, - } + resolution: {integrity: sha512-EUG6TgdWkYHBzXjo5tZ82L+0QLijTu/rZGNIbJ/n07ST30GmptYkPmO+REX7qF4YUtli//Rfy0rrNzH9IMrMmw==} cosmjs-types@0.4.1: - resolution: - { - integrity: sha512-I7E/cHkIgoJzMNQdFF0YVqPlaTqrqKHrskuSTIqlEyxfB5Lf3WKCajSXVK2yHOfOFfSux/RxEdpMzw/eO4DIog==, - } + resolution: {integrity: sha512-I7E/cHkIgoJzMNQdFF0YVqPlaTqrqKHrskuSTIqlEyxfB5Lf3WKCajSXVK2yHOfOFfSux/RxEdpMzw/eO4DIog==} crc-32@1.2.2: - resolution: - { - integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==, - } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} + engines: {node: '>=0.8'} hasBin: true crc32-stream@5.0.1: - resolution: - { - integrity: sha512-lO1dFui+CEUh/ztYIpgpKItKW9Bb4NWakCRJrnqAbFIYD+OZAwb2VfD5T5eXMw2FNcsDHkQcNl/Wh3iVXYwU6g==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-lO1dFui+CEUh/ztYIpgpKItKW9Bb4NWakCRJrnqAbFIYD+OZAwb2VfD5T5eXMw2FNcsDHkQcNl/Wh3iVXYwU6g==} + engines: {node: '>= 12.0.0'} crc@3.8.0: - resolution: - { - integrity: sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==, - } + resolution: {integrity: sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==} create-ecdh@4.0.4: - resolution: - { - integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==, - } + resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==} create-hash@1.2.0: - resolution: - { - integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==, - } + resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} create-hmac@1.1.7: - resolution: - { - integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==, - } + resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==} create-jest@29.7.0: - resolution: - { - integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true create-mixin@3.0.0: - resolution: - { - integrity: sha512-LkdMqnWT9LaqBN4huqpUnMz56Yr1mVSoCduAd2xXefgH/YZP2sXCMAyztXjk4q8hTF/TlcDa+zQW2aTgGdjjKQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-LkdMqnWT9LaqBN4huqpUnMz56Yr1mVSoCduAd2xXefgH/YZP2sXCMAyztXjk4q8hTF/TlcDa+zQW2aTgGdjjKQ==} + engines: {node: '>=10'} create-require@1.1.1: - resolution: - { - integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==, - } + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} crelt@1.0.6: - resolution: - { - integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==, - } + resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==} cross-env@7.0.3: - resolution: - { - integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==, - } - engines: { node: ">=10.14", npm: ">=6", yarn: ">=1" } + resolution: {integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==} + engines: {node: '>=10.14', npm: '>=6', yarn: '>=1'} hasBin: true cross-fetch@3.1.8: - resolution: - { - integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==, - } + resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==} cross-sha256@1.2.0: - resolution: - { - integrity: sha512-KViLNMDZKV7jwFqjFx+rNhG26amnFYYQ0S+VaFlVvpk8tM+2XbFia/don/SjGHg9WQxnFVi6z64CGPuF3T+nNw==, - } + resolution: {integrity: sha512-KViLNMDZKV7jwFqjFx+rNhG26amnFYYQ0S+VaFlVvpk8tM+2XbFia/don/SjGHg9WQxnFVi6z64CGPuF3T+nNw==} cross-spawn@4.0.2: - resolution: - { - integrity: sha512-yAXz/pA1tD8Gtg2S98Ekf/sewp3Lcp3YoFKJ4Hkp5h5yLWnKVTDU0kwjKJ8NDCYcfTLfyGkzTikst+jWypT1iA==, - } + resolution: {integrity: sha512-yAXz/pA1tD8Gtg2S98Ekf/sewp3Lcp3YoFKJ4Hkp5h5yLWnKVTDU0kwjKJ8NDCYcfTLfyGkzTikst+jWypT1iA==} cross-spawn@5.1.0: - resolution: - { - integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==, - } + resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} cross-spawn@6.0.5: - resolution: - { - integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==, - } - engines: { node: ">=4.8" } + resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==} + engines: {node: '>=4.8'} cross-spawn@7.0.3: - resolution: - { - integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} crypt@0.0.2: - resolution: - { - integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==, - } + resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==} crypto-browserify@3.12.0: - resolution: - { - integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==, - } + resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==} crypto-js@4.2.0: - resolution: - { - integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==, - } + resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==} crypto-random-string@1.0.0: - resolution: - { - integrity: sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-GsVpkFPlycH7/fRR7Dhcmnoii54gV1nz7y4CWyeFS14N+JVBBhY+r8amRHE4BwSYal7BPTDp8isvAlCxyFt3Hg==} + engines: {node: '>=4'} 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-blank-pseudo@3.0.3: - resolution: - { - integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==} + engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: postcss: ^8.4 css-color-keywords@1.0.0: - resolution: - { - integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} + engines: {node: '>=4'} css-declaration-sorter@6.4.1: - resolution: - { - integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==, - } - engines: { node: ^10 || ^12 || >=14 } + resolution: {integrity: sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==} + engines: {node: ^10 || ^12 || >=14} peerDependencies: postcss: ^8.0.9 css-functions-list@3.2.1: - resolution: - { - integrity: sha512-Nj5YcaGgBtuUmn1D7oHqPW0c9iui7xsTsj5lIX8ZgevdfhmjFfKB3r8moHJtNJnctnYXJyYX5I1pp90HM4TPgQ==, - } - engines: { node: ">=12 || >=16" } + resolution: {integrity: sha512-Nj5YcaGgBtuUmn1D7oHqPW0c9iui7xsTsj5lIX8ZgevdfhmjFfKB3r8moHJtNJnctnYXJyYX5I1pp90HM4TPgQ==} + engines: {node: '>=12 || >=16'} css-has-pseudo@3.0.4: - resolution: - { - integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==} + engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: postcss: ^8.4 css-in-js-utils@3.1.0: - resolution: - { - integrity: sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==, - } + resolution: {integrity: sha512-fJAcud6B3rRu+KHYk+Bwf+WFL2MDCJJ1XG9x137tJQ0xYxor7XziQtuGFbWNdqrvF4Tk26O3H73nfVqXt/fW1A==} css-loader@6.10.0: - resolution: - { - integrity: sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==} + engines: {node: '>= 12.13.0'} peerDependencies: - "@rspack/core": 0.x || 1.x + '@rspack/core': 0.x || 1.x webpack: ^5.0.0 peerDependenciesMeta: - "@rspack/core": + '@rspack/core': optional: true webpack: optional: true css-minimizer-webpack-plugin@3.4.1: - resolution: - { - integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==, - } - engines: { node: ">= 12.13.0" } - peerDependencies: - "@parcel/css": "*" - clean-css: "*" - csso: "*" - esbuild: "*" + resolution: {integrity: sha512-1u6D71zeIfgngN2XNRJefc/hY7Ybsxd74Jm4qngIXyUEk7fss3VUzuHxLAq/R8NAba4QU9OUSaMZlbpRc7bM4Q==} + engines: {node: '>= 12.13.0'} + peerDependencies: + '@parcel/css': '*' + clean-css: '*' + csso: '*' + esbuild: '*' webpack: ^5.0.0 peerDependenciesMeta: - "@parcel/css": + '@parcel/css': optional: true clean-css: optional: true @@ -25521,726 +18168,411 @@ packages: optional: true css-prefers-color-scheme@6.0.3: - resolution: - { - integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} + engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: postcss: ^8.4 css-select-base-adapter@0.1.1: - resolution: - { - integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==, - } + resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} css-select@2.1.0: - resolution: - { - integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==, - } + resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} css-select@4.3.0: - resolution: - { - integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==, - } + resolution: {integrity: sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==} css-select@5.1.0: - resolution: - { - integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==, - } + resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} css-to-react-native@3.2.0: - resolution: - { - integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==, - } + resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==} css-tree@1.0.0-alpha.37: - resolution: - { - integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} + engines: {node: '>=8.0.0'} css-tree@1.1.3: - resolution: - { - integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} + engines: {node: '>=8.0.0'} css-what@3.4.2: - resolution: - { - integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} + engines: {node: '>= 6'} 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==} cssdb@7.11.2: - resolution: - { - integrity: sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A==, - } + resolution: {integrity: sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A==} 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 cssfontparser@1.2.1: - resolution: - { - integrity: sha512-6tun4LoZnj7VN6YeegOVb67KBX/7JJsqvj+pv3ZA7F878/eN33AbGa5b/S/wXxS/tcp8nc40xRUrsPlxIyNUPg==, - } + resolution: {integrity: sha512-6tun4LoZnj7VN6YeegOVb67KBX/7JJsqvj+pv3ZA7F878/eN33AbGa5b/S/wXxS/tcp8nc40xRUrsPlxIyNUPg==} cssnano-preset-default@5.2.14: - resolution: - { - integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 cssnano-utils@3.1.0: - resolution: - { - integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 cssnano@5.1.15: - resolution: - { - integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 csso@4.2.0: - resolution: - { - integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} + engines: {node: '>=8.0.0'} cssom@0.3.8: - resolution: - { - integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==, - } + resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} cssom@0.4.4: - resolution: - { - integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==, - } + resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} cssom@0.5.0: - resolution: - { - integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==, - } + resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} cssstyle@2.3.0: - resolution: - { - integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==} + engines: {node: '>=8'} csstype@2.6.21: - resolution: - { - integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==, - } + resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==} csstype@3.1.2: - resolution: - { - integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==, - } + resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} csstype@3.1.3: - resolution: - { - integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==, - } + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} curve25519-js@0.0.4: - resolution: - { - integrity: sha512-axn2UMEnkhyDUPWOwVKBMVIzSQy2ejH2xRGy1wq81dqRwApXfIzfbE3hIX0ZRFBIihf/KDqK158DLwESu4AK1w==, - } + resolution: {integrity: sha512-axn2UMEnkhyDUPWOwVKBMVIzSQy2ejH2xRGy1wq81dqRwApXfIzfbE3hIX0ZRFBIihf/KDqK158DLwESu4AK1w==} cytoscape-cose-bilkent@4.1.0: - resolution: - { - integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==, - } + resolution: {integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==} peerDependencies: cytoscape: ^3.2.0 cytoscape@3.28.1: - resolution: - { - integrity: sha512-xyItz4O/4zp9/239wCcH8ZcFuuZooEeF8KHRmzjDfGdXsj3OG9MFSMA0pJE0uX3uCN/ygof6hHf4L7lst+JaDg==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-xyItz4O/4zp9/239wCcH8ZcFuuZooEeF8KHRmzjDfGdXsj3OG9MFSMA0pJE0uX3uCN/ygof6hHf4L7lst+JaDg==} + engines: {node: '>=0.10'} d3-array@2.3.3: - resolution: - { - integrity: sha512-syv3wp0U5aB6toP2zb2OdBkhTy1MWDsCAaYk6OXJZv+G4u7bSWEmYgxLoFyc88RQUhZYGCebW9a9UD1gFi5+MQ==, - } + resolution: {integrity: sha512-syv3wp0U5aB6toP2zb2OdBkhTy1MWDsCAaYk6OXJZv+G4u7bSWEmYgxLoFyc88RQUhZYGCebW9a9UD1gFi5+MQ==} d3-array@3.2.4: - resolution: - { - integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} + engines: {node: '>=12'} d3-axis@3.0.0: - resolution: - { - integrity: sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==} + engines: {node: '>=12'} d3-brush@3.0.0: - resolution: - { - integrity: sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==} + engines: {node: '>=12'} d3-chord@3.0.1: - resolution: - { - integrity: sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==} + engines: {node: '>=12'} d3-color@2.0.0: - resolution: - { - integrity: sha512-SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ==, - } + resolution: {integrity: sha512-SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ==} d3-color@3.1.0: - resolution: - { - integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} + engines: {node: '>=12'} d3-contour@4.0.2: - resolution: - { - integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==} + engines: {node: '>=12'} d3-delaunay@6.0.4: - resolution: - { - integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==} + engines: {node: '>=12'} d3-dispatch@3.0.1: - resolution: - { - integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} + engines: {node: '>=12'} d3-drag@3.0.0: - resolution: - { - integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} + engines: {node: '>=12'} d3-dsv@3.0.1: - resolution: - { - integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==} + engines: {node: '>=12'} hasBin: true d3-ease@3.0.1: - resolution: - { - integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} + engines: {node: '>=12'} d3-fetch@3.0.1: - resolution: - { - integrity: sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==} + engines: {node: '>=12'} d3-force@3.0.0: - resolution: - { - integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==} + engines: {node: '>=12'} d3-format@2.0.0: - resolution: - { - integrity: sha512-Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA==, - } + resolution: {integrity: sha512-Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA==} d3-format@3.1.0: - resolution: - { - integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} + engines: {node: '>=12'} d3-geo@3.1.1: - resolution: - { - integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==} + engines: {node: '>=12'} d3-hierarchy@3.1.2: - resolution: - { - integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==} + engines: {node: '>=12'} d3-interpolate@2.0.1: - resolution: - { - integrity: sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ==, - } + resolution: {integrity: sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ==} d3-interpolate@3.0.1: - resolution: - { - integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} + engines: {node: '>=12'} d3-path@1.0.9: - resolution: - { - integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==, - } + resolution: {integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==} d3-path@3.1.0: - resolution: - { - integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} + engines: {node: '>=12'} d3-polygon@3.0.1: - resolution: - { - integrity: sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==} + engines: {node: '>=12'} d3-quadtree@3.0.1: - resolution: - { - integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==} + engines: {node: '>=12'} d3-random@3.0.1: - resolution: - { - integrity: sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==} + engines: {node: '>=12'} d3-sankey@0.12.3: - resolution: - { - integrity: sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==, - } + resolution: {integrity: sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==} d3-scale-chromatic@3.1.0: - resolution: - { - integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==} + engines: {node: '>=12'} d3-scale@3.3.0: - resolution: - { - integrity: sha512-1JGp44NQCt5d1g+Yy+GeOnZP7xHo0ii8zsQp6PGzd+C1/dl0KGsp9A7Mxwp+1D1o4unbTTxVdU/ZOIEBoeZPbQ==, - } + resolution: {integrity: sha512-1JGp44NQCt5d1g+Yy+GeOnZP7xHo0ii8zsQp6PGzd+C1/dl0KGsp9A7Mxwp+1D1o4unbTTxVdU/ZOIEBoeZPbQ==} d3-scale@4.0.2: - resolution: - { - integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} + engines: {node: '>=12'} d3-selection@3.0.0: - resolution: - { - integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} + engines: {node: '>=12'} d3-shape@1.3.7: - resolution: - { - integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==, - } + resolution: {integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==} d3-shape@3.2.0: - resolution: - { - integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} + engines: {node: '>=12'} d3-time-format@3.0.0: - resolution: - { - integrity: sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==, - } + resolution: {integrity: sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==} d3-time-format@4.1.0: - resolution: - { - integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} + engines: {node: '>=12'} d3-time@2.1.1: - resolution: - { - integrity: sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ==, - } + resolution: {integrity: sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ==} d3-time@3.1.0: - resolution: - { - integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} + engines: {node: '>=12'} d3-timer@3.0.1: - resolution: - { - integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} + engines: {node: '>=12'} d3-transition@3.0.1: - resolution: - { - integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} + engines: {node: '>=12'} peerDependencies: d3-selection: 2 - 3 d3-zoom@3.0.0: - resolution: - { - integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} + engines: {node: '>=12'} d3@7.9.0: - resolution: - { - integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==} + engines: {node: '>=12'} d64@1.0.0: - resolution: - { - integrity: sha512-5eNy3WZziVYnrogqgXhcdEmqcDB2IHurTqLcrgssJsfkMVCUoUaZpK6cJjxxvLV2dUm5SuJMNcYfVGoin9UIRw==, - } + resolution: {integrity: sha512-5eNy3WZziVYnrogqgXhcdEmqcDB2IHurTqLcrgssJsfkMVCUoUaZpK6cJjxxvLV2dUm5SuJMNcYfVGoin9UIRw==} d@1.0.2: - resolution: - { - integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==, - } - engines: { node: ">=0.12" } + resolution: {integrity: sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==} + engines: {node: '>=0.12'} dag-map@1.0.2: - resolution: - { - integrity: sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw==, - } + resolution: {integrity: sha512-+LSAiGFwQ9dRnRdOeaj7g47ZFJcOUPukAP8J3A3fuZ1g9Y44BG+P1sgApjLXTQPOzC4+7S9Wr8kXsfpINM4jpw==} dagre-d3-es@7.0.10: - resolution: - { - integrity: sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A==, - } + resolution: {integrity: sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A==} damerau-levenshtein@1.0.8: - resolution: - { - integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==, - } + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} dargs@7.0.0: - resolution: - { - integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==} + engines: {node: '>=8'} dashdash@1.14.1: - resolution: - { - integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} + engines: {node: '>=0.10'} data-uri-to-buffer@4.0.1: - resolution: - { - integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==, - } - engines: { node: ">= 12" } + resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} + engines: {node: '>= 12'} data-urls@2.0.0: - resolution: - { - integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} + engines: {node: '>=10'} data-urls@3.0.2: - resolution: - { - integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} + engines: {node: '>=12'} data-view-buffer@1.0.1: - resolution: - { - integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} + engines: {node: '>= 0.4'} data-view-byte-length@1.0.1: - resolution: - { - integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} + engines: {node: '>= 0.4'} data-view-byte-offset@1.0.0: - resolution: - { - integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} + engines: {node: '>= 0.4'} dataloader@1.4.0: - resolution: - { - integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==, - } + resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==} dataloader@2.2.2: - resolution: - { - integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==, - } + resolution: {integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==} date-fns@1.30.1: - resolution: - { - integrity: sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==, - } + resolution: {integrity: sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==} date-fns@2.30.0: - resolution: - { - integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==, - } - engines: { node: ">=0.11" } + resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} + engines: {node: '>=0.11'} dateformat@4.6.3: - resolution: - { - integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==, - } + resolution: {integrity: sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==} dayjs@1.11.10: - resolution: - { - integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==, - } + resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==} de-indent@1.0.2: - resolution: - { - integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==, - } + resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} debounce-fn@4.0.0: - resolution: - { - integrity: sha512-8pYCQiL9Xdcg0UPSD3d+0KMlOjp+KGU5EPwYddgzQ7DATsg4fuUDjQtsYLmWjnk2obnNHgV3vE2Y4jejSOJVBQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-8pYCQiL9Xdcg0UPSD3d+0KMlOjp+KGU5EPwYddgzQ7DATsg4fuUDjQtsYLmWjnk2obnNHgV3vE2Y4jejSOJVBQ==} + engines: {node: '>=10'} debounce-fn@5.1.2: - resolution: - { - integrity: sha512-Sr4SdOZ4vw6eQDvPYNxHogvrxmCIld/VenC5JbNrFwMiwd7lY/Z18ZFfo+EWNG4DD9nFlAujWAo/wGuOPHmy5A==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-Sr4SdOZ4vw6eQDvPYNxHogvrxmCIld/VenC5JbNrFwMiwd7lY/Z18ZFfo+EWNG4DD9nFlAujWAo/wGuOPHmy5A==} + engines: {node: '>=12'} 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.3.4: - resolution: - { - integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, - } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} peerDependencies: - supports-color: "*" + supports-color: '*' peerDependenciesMeta: supports-color: optional: true decamelize-keys@1.1.1: - resolution: - { - integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==} + engines: {node: '>=0.10.0'} 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'} decamelize@4.0.0: - resolution: - { - integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==} + engines: {node: '>=10'} 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'} decompress-response@3.3.0: - resolution: - { - integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} + engines: {node: '>=4'} decompress-response@6.0.0: - resolution: - { - integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + engines: {node: '>=10'} dedent@0.7.0: - resolution: - { - integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==, - } + resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} dedent@1.5.1: - resolution: - { - integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==, - } + resolution: {integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==} peerDependencies: babel-plugin-macros: ^3.1.0 peerDependenciesMeta: @@ -26248,336 +18580,189 @@ packages: optional: true deep-eql@4.1.3: - resolution: - { - integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==} + engines: {node: '>=6'} deep-equal@1.0.1: - resolution: - { - integrity: sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==, - } + resolution: {integrity: sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==} deep-equal@1.1.2: - resolution: - { - integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==} + engines: {node: '>= 0.4'} deep-equal@2.2.3: - resolution: - { - integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-ZIwpnevOurS8bpT4192sqAowWM76JDKSHYzMLty3BZGSswgq6pBaH3DhCSW5xVAZICZyKdOBPjwww5wfgT/6PA==} + engines: {node: '>= 0.4'} deep-extend@0.6.0: - resolution: - { - integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==, - } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} 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==} deepmerge@1.5.2: - resolution: - { - integrity: sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==} + engines: {node: '>=0.10.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'} default-browser-id@3.0.0: - resolution: - { - integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} + engines: {node: '>=12'} default-gateway@4.2.0: - resolution: - { - integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==} + engines: {node: '>=6'} default-gateway@6.0.3: - resolution: - { - integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} + engines: {node: '>= 10'} default-require-extensions@3.0.1: - resolution: - { - integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==} + engines: {node: '>=8'} defaults@1.0.4: - resolution: - { - integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==, - } + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} defer-to-connect@1.1.3: - resolution: - { - integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==, - } + resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} defer-to-connect@2.0.1: - resolution: - { - integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} + engines: {node: '>=10'} deferred-leveldown@0.2.0: - resolution: - { - integrity: sha512-+WCbb4+ez/SZ77Sdy1iadagFiVzMB89IKOBhglgnUkVxOxRWmmFsz8UDSNWh4Rhq+3wr/vMFlYj+rdEwWUDdng==, - } + resolution: {integrity: sha512-+WCbb4+ez/SZ77Sdy1iadagFiVzMB89IKOBhglgnUkVxOxRWmmFsz8UDSNWh4Rhq+3wr/vMFlYj+rdEwWUDdng==} 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'} defu@6.1.4: - resolution: - { - integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==, - } + resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} del@4.1.1: - resolution: - { - integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==} + engines: {node: '>=6'} del@6.1.1: - resolution: - { - integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} + engines: {node: '>=10'} delaunator@5.0.1: - resolution: - { - integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==, - } + resolution: {integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==} delay@5.0.0: - resolution: - { - integrity: sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw==} + engines: {node: '>=10'} delay@6.0.0: - resolution: - { - integrity: sha512-2NJozoOHQ4NuZuVIr5CWd0iiLVIRSDepakaovIN+9eIDHEhdCAEvSy2cuf1DCrPPQLvHmbqTHODlhHg8UCy4zw==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-2NJozoOHQ4NuZuVIr5CWd0iiLVIRSDepakaovIN+9eIDHEhdCAEvSy2cuf1DCrPPQLvHmbqTHODlhHg8UCy4zw==} + engines: {node: '>=16'} delayed-stream@1.0.0: - resolution: - { - integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} delegates@1.0.0: - resolution: - { - integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==, - } + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} delimit-stream@0.1.0: - resolution: - { - integrity: sha512-a02fiQ7poS5CnjiJBAsjGLPp5EwVoGHNeu9sziBd9huppRfsAFIpv5zNLv0V1gbop53ilngAf5Kf331AwcoRBQ==, - } + resolution: {integrity: sha512-a02fiQ7poS5CnjiJBAsjGLPp5EwVoGHNeu9sziBd9huppRfsAFIpv5zNLv0V1gbop53ilngAf5Kf331AwcoRBQ==} denodeify@1.2.1: - resolution: - { - integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==, - } + resolution: {integrity: sha512-KNTihKNmQENUZeKu5fzfpzRqR5S2VMp4gl9RFHiWzj9DfvYQPMJ6XHKNaQxaGCXwPk6y9yme3aUoaiAe+KX+vg==} denque@2.1.0: - resolution: - { - integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==} + engines: {node: '>=0.10'} depd@1.1.2: - resolution: - { - integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} + engines: {node: '>= 0.6'} 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'} deprecated-react-native-prop-types@2.3.0: - resolution: - { - integrity: sha512-pWD0voFtNYxrVqvBMYf5gq3NA2GCpfodS1yNynTPc93AYA/KEMGeWDqqeUB6R2Z9ZofVhks2aeJXiuQqKNpesA==, - } + resolution: {integrity: sha512-pWD0voFtNYxrVqvBMYf5gq3NA2GCpfodS1yNynTPc93AYA/KEMGeWDqqeUB6R2Z9ZofVhks2aeJXiuQqKNpesA==} 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'} des.js@1.1.0: - resolution: - { - integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==, - } + resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==} 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-newline@3.1.0: - resolution: - { - integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==} + engines: {node: '>=8'} detect-node-es@1.1.0: - resolution: - { - integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==, - } + resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} detect-node@2.1.0: - resolution: - { - integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==, - } + resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} detect-package-manager@2.0.1: - resolution: - { - integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} + engines: {node: '>=12'} detect-port-alt@1.1.6: - resolution: - { - integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==, - } - engines: { node: ">= 4.2.1" } + resolution: {integrity: sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==} + engines: {node: '>= 4.2.1'} hasBin: true detect-port@1.5.1: - resolution: - { - integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==, - } + resolution: {integrity: sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==} hasBin: true detox-allure2-adapter@1.0.0-alpha.12: - resolution: - { - integrity: sha512-rmPZ+Xcw/0bAI/g2qHTYPVclun2xcgf0/yr0ShEY6miTINsirG2jhVkvJ/kFD2KxukJZK+9qvETjyRABzzi9BQ==, - } - engines: { node: ">=16.14.0" } + resolution: {integrity: sha512-rmPZ+Xcw/0bAI/g2qHTYPVclun2xcgf0/yr0ShEY6miTINsirG2jhVkvJ/kFD2KxukJZK+9qvETjyRABzzi9BQ==} + engines: {node: '>=16.14.0'} peerDependencies: detox: 20.14.2-smoke.0 || >20.14.5 jest-allure2-reporter: ^2.0.0-beta.15 detox-copilot@0.0.0: - resolution: - { - integrity: sha512-BasCw/JXlplL1UZfe19xJYT0i0JU4tdGPWutsmybGy6166Jvj2ryikbgoE1ls44F+41p9Y0Yei0cdBC7KawXeQ==, - } + resolution: {integrity: sha512-BasCw/JXlplL1UZfe19xJYT0i0JU4tdGPWutsmybGy6166Jvj2ryikbgoE1ls44F+41p9Y0Yei0cdBC7KawXeQ==} detox@20.26.2: - resolution: - { - integrity: sha512-pJU8WHD7GuoGlCuDzZxCD784mQfOO/ihRxe2/EebnesniWnV6FOwbC+32J1kGivhAdyvvPawfMQ7PoD4FwkxfA==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-pJU8WHD7GuoGlCuDzZxCD784mQfOO/ihRxe2/EebnesniWnV6FOwbC+32J1kGivhAdyvvPawfMQ7PoD4FwkxfA==} + engines: {node: '>=14'} hasBin: true peerDependencies: jest: 29.x.x || 28.x.x || ^27.2.5 @@ -26586,1067 +18771,599 @@ packages: optional: true devlop@1.1.0: - resolution: - { - integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==, - } + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} dezalgo@1.0.4: - resolution: - { - integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==, - } + resolution: {integrity: sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==} didyoumean@1.2.2: - resolution: - { - integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==, - } + resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} diff-sequences@26.6.2: - resolution: - { - integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==, - } - engines: { node: ">= 10.14.2" } + resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==} + engines: {node: '>= 10.14.2'} diff-sequences@27.5.1: - resolution: - { - integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} diff-sequences@28.1.1: - resolution: - { - integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} 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} diff@4.0.2: - resolution: - { - integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==, - } - engines: { node: ">=0.3.1" } + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} diff@5.2.0: - resolution: - { - integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==, - } - engines: { node: ">=0.3.1" } + resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} + engines: {node: '>=0.3.1'} diffie-hellman@5.0.3: - resolution: - { - integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==, - } + resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==} dijkstrajs@1.0.3: - resolution: - { - integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==, - } + resolution: {integrity: sha512-qiSlmBq9+BCdCA/L46dw8Uy93mloxsPSbwnm5yrKn2vMPiy8KyAskTF6zuV/j5BMsmOGZDPs7KjU+mjb670kfA==} dir-compare@3.3.0: - resolution: - { - integrity: sha512-J7/et3WlGUCxjdnD3HAAzQ6nsnc0WL6DD7WcwJb7c39iH1+AWfg+9OqzJNaI6PkBwBvm1mhZNL9iY/nRiZXlPg==, - } + resolution: {integrity: sha512-J7/et3WlGUCxjdnD3HAAzQ6nsnc0WL6DD7WcwJb7c39iH1+AWfg+9OqzJNaI6PkBwBvm1mhZNL9iY/nRiZXlPg==} dir-glob@3.0.1: - resolution: - { - integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} dlv@1.1.3: - resolution: - { - integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==, - } + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} dmg-builder@24.13.3: - resolution: - { - integrity: sha512-rcJUkMfnJpfCboZoOOPf4L29TRtEieHNOeAbYPWPxlaBw/Z1RKrRA86dOI9rwaI4tQSc/RD82zTNHprfUHXsoQ==, - } + resolution: {integrity: sha512-rcJUkMfnJpfCboZoOOPf4L29TRtEieHNOeAbYPWPxlaBw/Z1RKrRA86dOI9rwaI4tQSc/RD82zTNHprfUHXsoQ==} dmg-license@1.0.11: - resolution: - { - integrity: sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q==} + engines: {node: '>=8'} os: [darwin] hasBin: true dns-packet@5.6.1: - resolution: - { - integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==} + engines: {node: '>=6'} docker-compose@0.24.8: - resolution: - { - integrity: sha512-plizRs/Vf15H+GCVxq2EUvyPK7ei9b/cVesHvjnX4xaXjM9spHe2Ytq0BitndFgvTJ3E3NljPNUEl7BAN43iZw==, - } - engines: { node: ">= 6.0.0" } + resolution: {integrity: sha512-plizRs/Vf15H+GCVxq2EUvyPK7ei9b/cVesHvjnX4xaXjM9spHe2Ytq0BitndFgvTJ3E3NljPNUEl7BAN43iZw==} + engines: {node: '>= 6.0.0'} doctrine-temporary-fork@2.1.0: - resolution: - { - integrity: sha512-nliqOv5NkE4zMON4UA6AMJE6As35afs8aYXATpU4pTUdIKiARZwrJVEP1boA3Rx1ZXHVkwxkhcq4VkqvsuRLsA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-nliqOv5NkE4zMON4UA6AMJE6As35afs8aYXATpU4pTUdIKiARZwrJVEP1boA3Rx1ZXHVkwxkhcq4VkqvsuRLsA==} + engines: {node: '>=0.10.0'} 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'} documentation@14.0.2: - resolution: - { - integrity: sha512-hWoTf8/u4pOjib02L7w94hwmhPfcSwyJNGtlPdGVe8GFyq8HkzcFzQQltaaikKunHEp0YSwDAbwBAO7nxrWIfA==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-hWoTf8/u4pOjib02L7w94hwmhPfcSwyJNGtlPdGVe8GFyq8HkzcFzQQltaaikKunHEp0YSwDAbwBAO7nxrWIfA==} + engines: {node: '>=14'} hasBin: true 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-converter@0.2.0: - resolution: - { - integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==, - } + resolution: {integrity: sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==} dom-helpers@5.2.1: - resolution: - { - integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==, - } + resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} dom-serializer@0.2.2: - resolution: - { - integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==, - } + resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} dom-serializer@1.4.1: - resolution: - { - integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==, - } + resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==} dom-serializer@2.0.0: - resolution: - { - integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==, - } + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} dom-walk@0.1.2: - resolution: - { - integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==, - } + resolution: {integrity: sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w==} dom7@4.0.6: - resolution: - { - integrity: sha512-emjdpPLhpNubapLFdjNL9tP06Sr+GZkrIHEXLWvOGsytACUrkbeIdjO5g77m00BrHTznnlcNqgmn7pCN192TBA==, - } + resolution: {integrity: sha512-emjdpPLhpNubapLFdjNL9tP06Sr+GZkrIHEXLWvOGsytACUrkbeIdjO5g77m00BrHTznnlcNqgmn7pCN192TBA==} domain-browser@1.2.0: - resolution: - { - integrity: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==, - } - engines: { node: ">=0.4", npm: ">=1.2" } + resolution: {integrity: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==} + engines: {node: '>=0.4', npm: '>=1.2'} domelementtype@1.3.1: - resolution: - { - integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==, - } + resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} domelementtype@2.3.0: - resolution: - { - integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==, - } + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} domexception@2.0.1: - resolution: - { - integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} + engines: {node: '>=8'} deprecated: Use your platform's native DOMException instead domexception@4.0.0: - resolution: - { - integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + engines: {node: '>=12'} deprecated: Use your platform's native DOMException instead domhandler@4.3.1: - resolution: - { - integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} + engines: {node: '>= 4'} domhandler@5.0.3: - resolution: - { - integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} dompurify@3.0.11: - resolution: - { - integrity: sha512-Fan4uMuyB26gFV3ovPoEoQbxRRPfTu3CvImyZnhGq5fsIEO+gEFLp45ISFt+kQBWsK5ulDdT0oV28jS1UrwQLg==, - } + resolution: {integrity: sha512-Fan4uMuyB26gFV3ovPoEoQbxRRPfTu3CvImyZnhGq5fsIEO+gEFLp45ISFt+kQBWsK5ulDdT0oV28jS1UrwQLg==} domutils@1.7.0: - resolution: - { - integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==, - } + resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} domutils@2.8.0: - resolution: - { - integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==, - } + resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} domutils@3.1.0: - resolution: - { - integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==, - } + resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} dot-case@3.0.4: - resolution: - { - integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==, - } + resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} dot-prop@5.3.0: - resolution: - { - integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} dot-prop@6.0.1: - resolution: - { - integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} + engines: {node: '>=10'} dot-prop@8.0.2: - resolution: - { - integrity: sha512-xaBe6ZT4DHPkg0k4Ytbvn5xoxgpG0jOS1dYxSOwAHPuNLjP3/OzN0gH55SrLqpx8cBfSaVt91lXYkApjb+nYdQ==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-xaBe6ZT4DHPkg0k4Ytbvn5xoxgpG0jOS1dYxSOwAHPuNLjP3/OzN0gH55SrLqpx8cBfSaVt91lXYkApjb+nYdQ==} + engines: {node: '>=16'} dotenv-expand@10.0.0: - resolution: - { - integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==} + engines: {node: '>=12'} dotenv-expand@11.0.6: - resolution: - { - integrity: sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==} + engines: {node: '>=12'} dotenv-expand@5.1.0: - resolution: - { - integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==, - } + resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} dotenv@10.0.0: - resolution: - { - integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==} + engines: {node: '>=10'} dotenv@16.0.3: - resolution: - { - integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==} + engines: {node: '>=12'} dotenv@16.4.5: - resolution: - { - integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==} + engines: {node: '>=12'} dotenv@8.6.0: - resolution: - { - integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==} + engines: {node: '>=10'} dotenv@9.0.2: - resolution: - { - integrity: sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg==} + engines: {node: '>=10'} dset@3.1.3: - resolution: - { - integrity: sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==} + engines: {node: '>=4'} dtrace-provider@0.8.8: - resolution: - { - integrity: sha512-b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg==} + engines: {node: '>=0.10'} duplexer2@0.1.4: - resolution: - { - integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==, - } + resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==} duplexer3@0.1.5: - resolution: - { - integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==, - } + resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} duplexer@0.1.2: - resolution: - { - integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==, - } + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} duplexify@3.7.1: - resolution: - { - integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==, - } + resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} eastasianwidth@0.2.0: - resolution: - { - integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, - } + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} easy-stack@1.0.1: - resolution: - { - integrity: sha512-wK2sCs4feiiJeFXn3zvY0p41mdU5VUgbgs1rNsc/y5ngFUijdWd+iIN8eoyuZHKB8xN6BL4PdWmzqFmxNg6V2w==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-wK2sCs4feiiJeFXn3zvY0p41mdU5VUgbgs1rNsc/y5ngFUijdWd+iIN8eoyuZHKB8xN6BL4PdWmzqFmxNg6V2w==} + engines: {node: '>=6.0.0'} ecc-jsbn@0.1.2: - resolution: - { - integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==, - } + resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} ecdsa-sig-formatter@1.0.11: - resolution: - { - integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==, - } + resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==} ee-first@1.1.1: - resolution: - { - integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==, - } + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} eip55@2.1.1: - resolution: - { - integrity: sha512-WcagVAmNu2Ww2cDUfzuWVntYwFxbvZ5MvIyLZpMjTTkjD6sCvkGOiS86jTppzu9/gWsc8isLHAeMBWK02OnZmA==, - } + resolution: {integrity: sha512-WcagVAmNu2Ww2cDUfzuWVntYwFxbvZ5MvIyLZpMjTTkjD6sCvkGOiS86jTppzu9/gWsc8isLHAeMBWK02OnZmA==} ejs@3.1.9: - resolution: - { - integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==} + engines: {node: '>=0.10.0'} hasBin: true electron-app-universal-protocol-client@1.3.0: - resolution: - { - integrity: sha512-8txI5+PP4sFIYooTmBOP1imsMx1Mov7ouEebT+mwikoENq70e6tflOOXBCNJVxsbp93+BQ/l/+WT5BiPvRFXZA==, - } + resolution: {integrity: sha512-8txI5+PP4sFIYooTmBOP1imsMx1Mov7ouEebT+mwikoENq70e6tflOOXBCNJVxsbp93+BQ/l/+WT5BiPvRFXZA==} peerDependencies: - electron: ">12.0.0" + electron: '>12.0.0' electron-builder@24.13.3: - resolution: - { - integrity: sha512-yZSgVHft5dNVlo31qmJAe4BVKQfFdwpRw7sFp1iQglDRCDD6r22zfRJuZlhtB5gp9FHUxCMEoWGq10SkCnMAIg==, - } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-yZSgVHft5dNVlo31qmJAe4BVKQfFdwpRw7sFp1iQglDRCDD6r22zfRJuZlhtB5gp9FHUxCMEoWGq10SkCnMAIg==} + engines: {node: '>=14.0.0'} hasBin: true electron-context-menu@3.6.1: - resolution: - { - integrity: sha512-lcpO6tzzKUROeirhzBjdBWNqayEThmdW+2I2s6H6QMrwqTVyT3EK47jW3Nxm60KTxl5/bWfEoIruoUNn57/QkQ==, - } + resolution: {integrity: sha512-lcpO6tzzKUROeirhzBjdBWNqayEThmdW+2I2s6H6QMrwqTVyT3EK47jW3Nxm60KTxl5/bWfEoIruoUNn57/QkQ==} electron-devtools-installer@3.2.0: - resolution: - { - integrity: sha512-t3UczsYugm4OAbqvdImMCImIMVdFzJAHgbwHpkl5jmfu1izVgUcP/mnrPqJIpEeCK1uZGpt+yHgWEN+9EwoYhQ==, - } + resolution: {integrity: sha512-t3UczsYugm4OAbqvdImMCImIMVdFzJAHgbwHpkl5jmfu1izVgUcP/mnrPqJIpEeCK1uZGpt+yHgWEN+9EwoYhQ==} electron-dl@3.5.2: - resolution: - { - integrity: sha512-i104cl+u8yJ0lhpRAtUWfeGuWuL1PL6TBiw2gLf0MMIBjfgE485Ags2mcySx4uWU9P9uj/vsD3jd7X+w1lzZxw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-i104cl+u8yJ0lhpRAtUWfeGuWuL1PL6TBiw2gLf0MMIBjfgE485Ags2mcySx4uWU9P9uj/vsD3jd7X+w1lzZxw==} + engines: {node: '>=12'} electron-is-dev@2.0.0: - resolution: - { - integrity: sha512-3X99K852Yoqu9AcW50qz3ibYBWY79/pBhlMCab8ToEWS48R0T9tyxRiQhwylE7zQdXrMnx2JKqUJyMPmt5FBqA==, - } + resolution: {integrity: sha512-3X99K852Yoqu9AcW50qz3ibYBWY79/pBhlMCab8ToEWS48R0T9tyxRiQhwylE7zQdXrMnx2JKqUJyMPmt5FBqA==} electron-publish@24.13.1: - resolution: - { - integrity: sha512-2ZgdEqJ8e9D17Hwp5LEq5mLQPjqU3lv/IALvgp+4W8VeNhryfGhYEQC/PgDPMrnWUp+l60Ou5SJLsu+k4mhQ8A==, - } + resolution: {integrity: sha512-2ZgdEqJ8e9D17Hwp5LEq5mLQPjqU3lv/IALvgp+4W8VeNhryfGhYEQC/PgDPMrnWUp+l60Ou5SJLsu+k4mhQ8A==} electron-store@8.2.0: - resolution: - { - integrity: sha512-ukLL5Bevdil6oieAOXz3CMy+OgaItMiVBg701MNlG6W5RaC0AHN7rvlqTCmeb6O7jP0Qa1KKYTE0xV0xbhF4Hw==, - } + resolution: {integrity: sha512-ukLL5Bevdil6oieAOXz3CMy+OgaItMiVBg701MNlG6W5RaC0AHN7rvlqTCmeb6O7jP0Qa1KKYTE0xV0xbhF4Hw==} electron-to-chromium@1.4.721: - resolution: - { - integrity: sha512-k1x2r6foI8iJOp+1qTxbbrrWMsOiHkzGBYwYigaq+apO1FSqtn44KTo3Sy69qt7CRr7149zTcsDvH7MUKsOuIQ==, - } + resolution: {integrity: sha512-k1x2r6foI8iJOp+1qTxbbrrWMsOiHkzGBYwYigaq+apO1FSqtn44KTo3Sy69qt7CRr7149zTcsDvH7MUKsOuIQ==} electron-updater@6.1.8: - resolution: - { - integrity: sha512-hhOTfaFAd6wRHAfUaBhnAOYc+ymSGCWJLtFkw4xJqOvtpHmIdNHnXDV9m1MHC+A6q08Abx4Ykgyz/R5DGKNAMQ==, - } + resolution: {integrity: sha512-hhOTfaFAd6wRHAfUaBhnAOYc+ymSGCWJLtFkw4xJqOvtpHmIdNHnXDV9m1MHC+A6q08Abx4Ykgyz/R5DGKNAMQ==} electron@32.0.2: - resolution: - { - integrity: sha512-nmZblq8wW3HZ17MAyaUuiMI9Mb0Cgc7UR3To85h/rVopbfyF5s34NxtK4gvyRfYPxpDGP4k+HoQIPniPPrdE3w==, - } - engines: { node: ">= 12.20.55" } + resolution: {integrity: sha512-nmZblq8wW3HZ17MAyaUuiMI9Mb0Cgc7UR3To85h/rVopbfyF5s34NxtK4gvyRfYPxpDGP4k+HoQIPniPPrdE3w==} + engines: {node: '>= 12.20.55'} hasBin: true elegant-spinner@1.0.1: - resolution: - { - integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ==} + engines: {node: '>=0.10.0'} elkjs@0.9.2: - resolution: - { - integrity: sha512-2Y/RaA1pdgSHpY0YG4TYuYCD2wh97CRvu22eLG3Kz0pgQ/6KbIFTxsTnDc4MH/6hFlg2L/9qXrDMG0nMjP63iw==, - } + resolution: {integrity: sha512-2Y/RaA1pdgSHpY0YG4TYuYCD2wh97CRvu22eLG3Kz0pgQ/6KbIFTxsTnDc4MH/6hFlg2L/9qXrDMG0nMjP63iw==} elliptic@6.5.4: - resolution: - { - integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==, - } + resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==} elliptic@6.5.5: - resolution: - { - integrity: sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==, - } + resolution: {integrity: sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==} embla-carousel-react@8.0.0-rc17: - resolution: - { - integrity: sha512-x4aFprwFB+PQO9EsHHZsrDxARb0uYNBYn9mr5oDFdBdPez4M8G1r5yidWbUcT9pNUc8AQXC9sGzlfauBfBxVOw==, - } + resolution: {integrity: sha512-x4aFprwFB+PQO9EsHHZsrDxARb0uYNBYn9mr5oDFdBdPez4M8G1r5yidWbUcT9pNUc8AQXC9sGzlfauBfBxVOw==} peerDependencies: react: ^16.8.0 || ^17.0.1 || ^18.0.0 embla-carousel-reactive-utils@8.0.0-rc17: - resolution: - { - integrity: sha512-eluEOK/u5HdjYaTLC4bUG3iTCnyX7RsYix3il0aH4ZECOKa5fS+pVK2vrM17Mgw6C5Hyjcr3r3lfJtGerVzVsQ==, - } + resolution: {integrity: sha512-eluEOK/u5HdjYaTLC4bUG3iTCnyX7RsYix3il0aH4ZECOKa5fS+pVK2vrM17Mgw6C5Hyjcr3r3lfJtGerVzVsQ==} peerDependencies: embla-carousel: 8.0.0-rc17 embla-carousel@8.0.0-rc17: - resolution: - { - integrity: sha512-evF49b88VOitvqFtlvhvKVSu96Y8A+QSFdhok87Bfm8R7OYuk95FT+o8+M1GQLi/EhGDUlT193HTVAR0Wt2neQ==, - } + resolution: {integrity: sha512-evF49b88VOitvqFtlvhvKVSu96Y8A+QSFdhok87Bfm8R7OYuk95FT+o8+M1GQLi/EhGDUlT193HTVAR0Wt2neQ==} eme-encryption-scheme-polyfill@2.1.1: - resolution: - { - integrity: sha512-njD17wcUrbqCj0ArpLu5zWXtaiupHb/2fIUQGdInf83GlI+Q6mmqaPGLdrke4savKAu15J/z1Tg/ivDgl14g0g==, - } + resolution: {integrity: sha512-njD17wcUrbqCj0ArpLu5zWXtaiupHb/2fIUQGdInf83GlI+Q6mmqaPGLdrke4savKAu15J/z1Tg/ivDgl14g0g==} emittery@0.10.2: - resolution: - { - integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==} + engines: {node: '>=12'} emittery@0.13.1: - resolution: - { - integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} + engines: {node: '>=12'} emittery@0.8.1: - resolution: - { - integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==} + engines: {node: '>=10'} 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==} emojis-list@3.0.0: - resolution: - { - integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} + engines: {node: '>= 4'} enabled@2.0.0: - resolution: - { - integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==, - } + resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==} encode-utf8@1.0.3: - resolution: - { - integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==, - } + resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==} 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'} encoding@0.1.13: - resolution: - { - integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==, - } + resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} end-of-stream@1.4.4: - resolution: - { - integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==, - } + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} endent@2.1.0: - resolution: - { - integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==, - } + resolution: {integrity: sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==} enhanced-resolve@5.16.0: - resolution: - { - integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==} + engines: {node: '>=10.13.0'} enhanced-resolve@5.17.1: - resolution: - { - integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} + engines: {node: '>=10.13.0'} enquirer@2.4.1: - resolution: - { - integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==, - } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} + engines: {node: '>=8.6'} entities@2.2.0: - resolution: - { - integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==, - } + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} entities@4.5.0: - resolution: - { - integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==, - } - engines: { node: ">=0.12" } + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} env-cmd@10.1.0: - resolution: - { - integrity: sha512-mMdWTT9XKN7yNth/6N6g2GuKuJTsKMDHlQFUDacb/heQRRWOTIZ42t1rMHnQu4jYxU1ajdTeJM+9eEETlqToMA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-mMdWTT9XKN7yNth/6N6g2GuKuJTsKMDHlQFUDacb/heQRRWOTIZ42t1rMHnQu4jYxU1ajdTeJM+9eEETlqToMA==} + engines: {node: '>=8.0.0'} hasBin: true env-editor@0.4.2: - resolution: - { - integrity: sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ObFo8v4rQJAE59M69QzwloxPZtd33TpYEIjtKD1rrFDcM1Gd7IkDxEBU+HriziN6HSHQnBJi8Dmy+JWkav5HKA==} + engines: {node: '>=8'} env-paths@2.2.1: - resolution: - { - integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} env-paths@3.0.0: - resolution: - { - integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} envinfo@7.11.1: - resolution: - { - integrity: sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg==} + engines: {node: '>=4'} hasBin: true eol@0.9.1: - resolution: - { - integrity: sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==, - } + resolution: {integrity: sha512-Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg==} err-code@2.0.3: - resolution: - { - integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==, - } + resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==} errno@0.1.8: - resolution: - { - integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==, - } + resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} hasBin: true error-ex@1.3.2: - resolution: - { - integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, - } + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} error-stack-parser@2.1.4: - resolution: - { - integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==, - } + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} errorhandler@1.5.1: - resolution: - { - integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-rcOwbfvP1WTViVoUjcfZicVzjhjTuhSMntHh6mW3IrEiyE6mJyXvsToJUJGlGlw/2xU9P5whlWNGlIDVeCiT4A==} + engines: {node: '>= 0.8'} es-abstract@1.23.2: - resolution: - { - integrity: sha512-60s3Xv2T2p1ICykc7c+DNDPLDMm9t4QxCOUU0K9JxiLjM3C1zB9YVdN7tjxrFd4+AkZ8CdX1ovUga4P2+1e+/w==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-60s3Xv2T2p1ICykc7c+DNDPLDMm9t4QxCOUU0K9JxiLjM3C1zB9YVdN7tjxrFd4+AkZ8CdX1ovUga4P2+1e+/w==} + engines: {node: '>= 0.4'} es-array-method-boxes-properly@1.0.0: - resolution: - { - integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==, - } + resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} es-define-property@1.0.0: - resolution: - { - integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} + 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-get-iterator@1.1.3: - resolution: - { - integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==, - } + resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} es-iterator-helpers@1.0.18: - resolution: - { - integrity: sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA==} + engines: {node: '>= 0.4'} es-module-lexer@1.5.0: - resolution: - { - integrity: sha512-pqrTKmwEIgafsYZAGw9kszYzmagcE/n4dbgwGWLEXg7J4QFJVQRBld8j3Q3GNez79jzxZshq0bcT962QHOghjw==, - } + resolution: {integrity: sha512-pqrTKmwEIgafsYZAGw9kszYzmagcE/n4dbgwGWLEXg7J4QFJVQRBld8j3Q3GNez79jzxZshq0bcT962QHOghjw==} 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.0.3: - resolution: - { - integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} + 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.2.1: - resolution: - { - integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} + engines: {node: '>= 0.4'} es5-ext@0.10.64: - resolution: - { - integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==} + engines: {node: '>=0.10'} es5-shim@4.6.7: - resolution: - { - integrity: sha512-jg21/dmlrNQI7JyyA2w7n+yifSxBng0ZralnSfVZjoCawgNTCnS+yBCyVM9DL5itm7SUnDGgv7hcq2XCZX4iRQ==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-jg21/dmlrNQI7JyyA2w7n+yifSxBng0ZralnSfVZjoCawgNTCnS+yBCyVM9DL5itm7SUnDGgv7hcq2XCZX4iRQ==} + engines: {node: '>=0.4.0'} es6-error@4.1.1: - resolution: - { - integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==, - } + resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} es6-iterator@2.0.3: - resolution: - { - integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==, - } + resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} es6-promise@4.2.8: - resolution: - { - integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==, - } + resolution: {integrity: sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w==} es6-promisify@5.0.0: - resolution: - { - integrity: sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==, - } + resolution: {integrity: sha512-C+d6UdsYDk0lMebHNR4S2NybQMMngAOnOwYBQjTOiv0MkoJMP0Myw2mgpDLBcpfCmRLxyFqYhS/CfOENq4SJhQ==} es6-shim@0.35.8: - resolution: - { - integrity: sha512-Twf7I2v4/1tLoIXMT8HlqaBSS5H2wQTs2wx3MNYCI8K1R1/clXyCazrcVCPm/FuO9cyV8+leEaZOWD5C253NDg==, - } + resolution: {integrity: sha512-Twf7I2v4/1tLoIXMT8HlqaBSS5H2wQTs2wx3MNYCI8K1R1/clXyCazrcVCPm/FuO9cyV8+leEaZOWD5C253NDg==} es6-symbol@3.1.4: - resolution: - { - integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==, - } - engines: { node: ">=0.12" } + resolution: {integrity: sha512-U9bFFjX8tFiATgtkJ1zg25+KviIXpgRvRHS8sau3GfhVzThRQrOeksPeT0BWW2MNZs1OEWJ1DPXOQMn0KKRkvg==} + engines: {node: '>=0.12'} es6-template-regex@0.1.1: - resolution: - { - integrity: sha512-sCeu9DOYhaSlKG7ry2y384bwxxaxPPdqWS0Jj45lv1MeQSpRK7mYlLO0jZdqwDLHViDWMsMikOkSIXuXpf4DiQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-sCeu9DOYhaSlKG7ry2y384bwxxaxPPdqWS0Jj45lv1MeQSpRK7mYlLO0jZdqwDLHViDWMsMikOkSIXuXpf4DiQ==} + engines: {node: '>=0.10.0'} es6-template@1.0.4: - resolution: - { - integrity: sha512-91S2Zl/xHps/4gYIOFTl6xIEZgkCYSmyH6Nmw3uZUD89EEjj7YjK4m8C9RbjSHwCw94ENLOJJQjxZ6eEM4JanQ==, - } + resolution: {integrity: sha512-91S2Zl/xHps/4gYIOFTl6xIEZgkCYSmyH6Nmw3uZUD89EEjj7YjK4m8C9RbjSHwCw94ENLOJJQjxZ6eEM4JanQ==} esbuild-plugin-alias@0.2.1: - resolution: - { - integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==, - } + resolution: {integrity: sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==} esbuild-plugin-import-glob@0.1.1: - resolution: - { - integrity: sha512-yAFH+9AoIcsQkODSx0KUPRv1FeJUN6Tef8vkPQMcuVkc2vXYneYKsHhOiFS/yIsg5bQ70HHtAlXVA1uTjgoJXg==, - } + resolution: {integrity: sha512-yAFH+9AoIcsQkODSx0KUPRv1FeJUN6Tef8vkPQMcuVkc2vXYneYKsHhOiFS/yIsg5bQ70HHtAlXVA1uTjgoJXg==} esbuild-register@3.5.0: - resolution: - { - integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==, - } + resolution: {integrity: sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==} peerDependencies: - esbuild: ">=0.12 <1" + esbuild: '>=0.12 <1' esbuild@0.18.20: - resolution: - { - integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==} + engines: {node: '>=12'} hasBin: true 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.20.2: - resolution: - { - integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==} + engines: {node: '>=12'} hasBin: true escalade@3.1.2: - resolution: - { - integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==} + engines: {node: '>=6'} escape-goat@2.1.1: - resolution: - { - integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} + engines: {node: '>=8'} escape-html@1.0.3: - resolution: - { - integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==, - } + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} 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@2.0.0: - resolution: - { - integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==} + engines: {node: '>=8'} 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'} escodegen@1.14.3: - resolution: - { - integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==, - } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==} + engines: {node: '>=4.0'} hasBin: true escodegen@2.1.0: - resolution: - { - integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==, - } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} hasBin: true eslint-config-next@13.5.6: - resolution: - { - integrity: sha512-o8pQsUHTo9aHqJ2YiZDym5gQAMRf7O2HndHo/JZeY7TDD+W4hk6Ma8Vw54RHiBeb7OWWO5dPirQB+Is/aVQ7Kg==, - } + resolution: {integrity: sha512-o8pQsUHTo9aHqJ2YiZDym5gQAMRf7O2HndHo/JZeY7TDD+W4hk6Ma8Vw54RHiBeb7OWWO5dPirQB+Is/aVQ7Kg==} peerDependencies: eslint: ^7.23.0 || ^8.0.0 - typescript: ">=3.3.1" + typescript: '>=3.3.1' peerDependenciesMeta: typescript: optional: true eslint-config-prettier@9.1.0: - resolution: - { - integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==, - } + resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} hasBin: true peerDependencies: - eslint: ">=7.0.0" + eslint: '>=7.0.0' eslint-config-react-app@7.0.1: - resolution: - { - integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==, - } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==} + engines: {node: '>=14.0.0'} peerDependencies: eslint: ^8.0.0 - typescript: "*" + typescript: '*' peerDependenciesMeta: typescript: optional: true eslint-import-resolver-node@0.3.9: - resolution: - { - integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==, - } + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} eslint-import-resolver-typescript@3.6.1: - resolution: - { - integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==, - } - engines: { node: ^14.18.0 || >=16.0.0 } + resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} + engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: - eslint: "*" - eslint-plugin-import: "*" + eslint: '*' + eslint-plugin-import: '*' eslint-module-utils@2.8.1: - resolution: - { - integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==, - } - engines: { node: ">=4" } - peerDependencies: - "@typescript-eslint/parser": "*" - eslint: "*" - eslint-import-resolver-node: "*" - eslint-import-resolver-typescript: "*" - eslint-import-resolver-webpack: "*" + resolution: {integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==} + 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 @@ -27658,614 +19375,368 @@ packages: optional: true eslint-plugin-detox@1.0.0: - resolution: - { - integrity: sha512-Dd+Cwyap5IO9DBKXOKrQTE1RQk9hvSSi+qsS1cMVPZY37mojz2PvriEOfGhKj5XN1G14lJ8TArf+6Y+Np2ZsoQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Dd+Cwyap5IO9DBKXOKrQTE1RQk9hvSSi+qsS1cMVPZY37mojz2PvriEOfGhKj5XN1G14lJ8TArf+6Y+Np2ZsoQ==} + engines: {node: '>=0.10.0'} eslint-plugin-flowtype@2.50.3: - resolution: - { - integrity: sha512-X+AoKVOr7Re0ko/yEXyM5SSZ0tazc6ffdIOocp2fFUlWoDt7DV0Bz99mngOkAFLOAWjqRA5jPwqUCbrx13XoxQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-X+AoKVOr7Re0ko/yEXyM5SSZ0tazc6ffdIOocp2fFUlWoDt7DV0Bz99mngOkAFLOAWjqRA5jPwqUCbrx13XoxQ==} + engines: {node: '>=4'} peerDependencies: - eslint: ">=2.0.0" + eslint: '>=2.0.0' eslint-plugin-flowtype@8.0.3: - resolution: - { - integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==, - } - engines: { node: ">=12.0.0" } - peerDependencies: - "@babel/plugin-syntax-flow": ^7.14.5 - "@babel/plugin-transform-react-jsx": ^7.14.9 + resolution: {integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==} + engines: {node: '>=12.0.0'} + peerDependencies: + '@babel/plugin-syntax-flow': ^7.14.5 + '@babel/plugin-transform-react-jsx': ^7.14.9 eslint: ^8.1.0 eslint-plugin-i18next@6.0.3: - resolution: - { - integrity: sha512-RtQXYfg6PZCjejIQ/YG+dUj/x15jPhufJ9hUDGH0kCpJ6CkVMAWOQ9exU1CrbPmzeykxLjrXkjAaOZF/V7+DOA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-RtQXYfg6PZCjejIQ/YG+dUj/x15jPhufJ9hUDGH0kCpJ6CkVMAWOQ9exU1CrbPmzeykxLjrXkjAaOZF/V7+DOA==} + engines: {node: '>=0.10.0'} eslint-plugin-import@2.29.1: - resolution: - { - integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} + engines: {node: '>=4'} peerDependencies: - "@typescript-eslint/parser": "*" + '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 peerDependenciesMeta: - "@typescript-eslint/parser": + '@typescript-eslint/parser': optional: true eslint-plugin-jest@25.7.0: - resolution: - { - integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==, - } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} peerDependencies: - "@typescript-eslint/eslint-plugin": ^4.0.0 || ^5.0.0 + '@typescript-eslint/eslint-plugin': ^4.0.0 || ^5.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - jest: ^27.0.0 + jest: '*' peerDependenciesMeta: - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': optional: true jest: optional: true eslint-plugin-jest@27.9.0: - resolution: - { - integrity: sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - "@typescript-eslint/eslint-plugin": ^5.0.0 || ^6.0.0 || ^7.0.0 + '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0 || ^7.0.0 eslint: ^7.0.0 || ^8.0.0 - jest: "*" + jest: '*' peerDependenciesMeta: - "@typescript-eslint/eslint-plugin": + '@typescript-eslint/eslint-plugin': optional: true jest: optional: true eslint-plugin-json@3.1.0: - resolution: - { - integrity: sha512-MrlG2ynFEHe7wDGwbUuFPsaT2b1uhuEFhJ+W1f1u+1C2EkXmTYJp4B1aAdQQ8M+CC3t//N/oRKiIVw14L2HR1g==, - } - engines: { node: ">=12.0" } + resolution: {integrity: sha512-MrlG2ynFEHe7wDGwbUuFPsaT2b1uhuEFhJ+W1f1u+1C2EkXmTYJp4B1aAdQQ8M+CC3t//N/oRKiIVw14L2HR1g==} + engines: {node: '>=12.0'} eslint-plugin-jsx-a11y@6.8.0: - resolution: - { - integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==, - } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==} + engines: {node: '>=4.0'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 eslint-plugin-prettier@5.1.3: - resolution: - { - integrity: sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==, - } - engines: { node: ^14.18.0 || >=16.0.0 } - peerDependencies: - "@types/eslint": ">=8.0.0" - eslint: ">=8.0.0" - eslint-config-prettier: "*" - prettier: ">=3.0.0" + resolution: {integrity: sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + '@types/eslint': '>=8.0.0' + eslint: '>=8.0.0' + eslint-config-prettier: '*' + prettier: '>=3.0.0' peerDependenciesMeta: - "@types/eslint": + '@types/eslint': optional: true eslint-config-prettier: optional: true eslint-plugin-react-hooks@4.6.0: - resolution: - { - integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} + engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 eslint-plugin-react-refresh@0.4.6: - resolution: - { - integrity: sha512-NjGXdm7zgcKRkKMua34qVO9doI7VOxZ6ancSvBELJSSoX97jyndXcSoa8XBh69JoB31dNz3EEzlMcizZl7LaMA==, - } + resolution: {integrity: sha512-NjGXdm7zgcKRkKMua34qVO9doI7VOxZ6ancSvBELJSSoX97jyndXcSoa8XBh69JoB31dNz3EEzlMcizZl7LaMA==} peerDependencies: - eslint: ">=7" + eslint: '>=7' eslint-plugin-react@7.34.1: - resolution: - { - integrity: sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw==} + engines: {node: '>=4'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 eslint-plugin-storybook@0.6.15: - resolution: - { - integrity: sha512-lAGqVAJGob47Griu29KXYowI4G7KwMoJDOkEip8ujikuDLxU+oWJ1l0WL6F2oDO4QiyUFXvtDkEkISMOPzo+7w==, - } - engines: { node: 12.x || 14.x || >= 16 } + resolution: {integrity: sha512-lAGqVAJGob47Griu29KXYowI4G7KwMoJDOkEip8ujikuDLxU+oWJ1l0WL6F2oDO4QiyUFXvtDkEkISMOPzo+7w==} + engines: {node: 12.x || 14.x || >= 16} peerDependencies: - eslint: ">=6" + eslint: '>=6' eslint-plugin-testing-library@5.11.1: - resolution: - { - integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: ">=6" } + resolution: {integrity: sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: '>=6'} peerDependencies: eslint: ^7.5.0 || ^8.0.0 eslint-scope@5.1.1: - resolution: - { - integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} + engines: {node: '>=8.0.0'} eslint-scope@7.2.2: - resolution: - { - integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} eslint-visitor-keys@2.1.0: - resolution: - { - integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} + engines: {node: '>=10'} 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-webpack-plugin@3.2.0: - resolution: - { - integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-avrKcGncpPbPSUHX6B3stNGzkKFto3eL+DKM4+VyMrVnhPc3vRczVlCq3uhuFOdRvDHTVXuzwk1ZKUrqDQHQ9w==} + engines: {node: '>= 12.13.0'} peerDependencies: eslint: ^7.0.0 || ^8.0.0 webpack: ^5.0.0 eslint@8.57.0: - resolution: - { - integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true esniff@2.0.1: - resolution: - { - integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==} + engines: {node: '>=0.10'} espree@9.6.1: - resolution: - { - integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} esprima@1.2.2: - resolution: - { - integrity: sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-+JpPZam9w5DuJ3Q67SqsMGtiHKENSMRVoxvArfJZK01/BfLEObtZ6orJa/MtoGNR/rfMgp5837T41PAmTwAv/A==} + engines: {node: '>=0.4.0'} hasBin: true 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.5.0: - resolution: - { - integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} + 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@4.3.0: - resolution: - { - integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==, - } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} + 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@2.1.1: - resolution: - { - integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==, - } + resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==} estree-util-build-jsx@2.2.2: - resolution: - { - integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==, - } + resolution: {integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==} estree-util-is-identifier-name@2.1.0: - resolution: - { - integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==, - } + resolution: {integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==} estree-util-to-js@1.2.0: - resolution: - { - integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==, - } + resolution: {integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==} estree-util-value-to-estree@1.3.0: - resolution: - { - integrity: sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-Y+ughcF9jSUJvncXwqRageavjrNPAI+1M/L3BI3PyLp1nmgYTGUXU6t5z1Y7OWuThoDdhPME07bQU+d5LxdJqw==} + engines: {node: '>=12.0.0'} estree-util-visit@1.2.1: - resolution: - { - integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==, - } + resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==} 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'} eth-ens-namehash@2.0.8: - resolution: - { - integrity: sha512-VWEI1+KJfz4Km//dadyvBBoBeSQ0MHTXPvr8UIXiLW6IanxvAV+DmlZAijZwAyggqGUfwQBeHf7tc9wzc1piSw==, - } + resolution: {integrity: sha512-VWEI1+KJfz4Km//dadyvBBoBeSQ0MHTXPvr8UIXiLW6IanxvAV+DmlZAijZwAyggqGUfwQBeHf7tc9wzc1piSw==} eth-lib@0.1.29: - resolution: - { - integrity: sha512-bfttrr3/7gG4E02HoWTDUcDDslN003OlOoBxk9virpAZQ1ja/jDgwkWB8QfJF7ojuEowrqy+lzp9VcJG7/k5bQ==, - } + resolution: {integrity: sha512-bfttrr3/7gG4E02HoWTDUcDDslN003OlOoBxk9virpAZQ1ja/jDgwkWB8QfJF7ojuEowrqy+lzp9VcJG7/k5bQ==} eth-lib@0.2.8: - resolution: - { - integrity: sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==, - } + resolution: {integrity: sha512-ArJ7x1WcWOlSpzdoTBX8vkwlkSQ85CjjifSZtV4co64vWxSV8geWfPI9x4SVYu3DSxnX4yWFVTtGL+j9DUFLNw==} ethereum-bloom-filters@1.0.10: - resolution: - { - integrity: sha512-rxJ5OFN3RwjQxDcFP2Z5+Q9ho4eIdEmSc2ht0fCu8Se9nbXjZ7/031uXoUYJ87KHCOdVeiUuwSnoS7hmYAGVHA==, - } + resolution: {integrity: sha512-rxJ5OFN3RwjQxDcFP2Z5+Q9ho4eIdEmSc2ht0fCu8Se9nbXjZ7/031uXoUYJ87KHCOdVeiUuwSnoS7hmYAGVHA==} ethereum-cryptography@0.1.3: - resolution: - { - integrity: sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==, - } + resolution: {integrity: sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==} ethereum-cryptography@2.1.3: - resolution: - { - integrity: sha512-BlwbIL7/P45W8FGW2r7LGuvoEZ+7PWsniMvQ4p5s2xCyw9tmaDlpfsN9HjAucbF+t/qpVHwZUisgfK24TCW8aA==, - } + resolution: {integrity: sha512-BlwbIL7/P45W8FGW2r7LGuvoEZ+7PWsniMvQ4p5s2xCyw9tmaDlpfsN9HjAucbF+t/qpVHwZUisgfK24TCW8aA==} ethereumjs-common@1.5.2: - resolution: - { - integrity: sha512-hTfZjwGX52GS2jcVO6E2sx4YuFnf0Fhp5ylo4pEPhEffNln7vS59Hr5sLnp3/QCazFLluuBZ+FZ6J5HTp0EqCA==, - } - deprecated: "New package name format for new versions: @ethereumjs/common. Please update." + resolution: {integrity: sha512-hTfZjwGX52GS2jcVO6E2sx4YuFnf0Fhp5ylo4pEPhEffNln7vS59Hr5sLnp3/QCazFLluuBZ+FZ6J5HTp0EqCA==} + deprecated: 'New package name format for new versions: @ethereumjs/common. Please update.' ethereumjs-tx@2.1.2: - resolution: - { - integrity: sha512-zZEK1onCeiORb0wyCXUvg94Ve5It/K6GD1K+26KfFKodiBiS6d9lfCXlUKGBBdQ+bv7Day+JK0tj1K+BeNFRAw==, - } - deprecated: "New package name format for new versions: @ethereumjs/tx. Please update." + resolution: {integrity: sha512-zZEK1onCeiORb0wyCXUvg94Ve5It/K6GD1K+26KfFKodiBiS6d9lfCXlUKGBBdQ+bv7Day+JK0tj1K+BeNFRAw==} + deprecated: 'New package name format for new versions: @ethereumjs/tx. Please update.' ethereumjs-util@5.2.1: - resolution: - { - integrity: sha512-v3kT+7zdyCm1HIqWlLNrHGqHGLpGYIhjeHxQjnDXjLT2FyGJDsd3LWMYUo7pAFRrk86CR3nUJfhC81CCoJNNGQ==, - } + resolution: {integrity: sha512-v3kT+7zdyCm1HIqWlLNrHGqHGLpGYIhjeHxQjnDXjLT2FyGJDsd3LWMYUo7pAFRrk86CR3nUJfhC81CCoJNNGQ==} ethereumjs-util@6.2.1: - resolution: - { - integrity: sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==, - } + resolution: {integrity: sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==} ethereumjs-util@7.1.5: - resolution: - { - integrity: sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==} + engines: {node: '>=10.0.0'} ethers@5.7.2: - resolution: - { - integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==, - } + resolution: {integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==} ethers@6.12.1: - resolution: - { - integrity: sha512-j6wcVoZf06nqEcBbDWkKg8Fp895SS96dSnTCjiXT+8vt2o02raTn4Lo9ERUuIVU5bAjoPYeA+7ytQFexFmLuVw==, - } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-j6wcVoZf06nqEcBbDWkKg8Fp895SS96dSnTCjiXT+8vt2o02raTn4Lo9ERUuIVU5bAjoPYeA+7ytQFexFmLuVw==} + engines: {node: '>=14.0.0'} ethjs-unit@0.1.6: - resolution: - { - integrity: sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==, - } - engines: { node: ">=6.5.0", npm: ">=3" } + resolution: {integrity: sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==} + engines: {node: '>=6.5.0', npm: '>=3'} ethjs-util@0.1.6: - resolution: - { - integrity: sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==, - } - engines: { node: ">=6.5.0", npm: ">=3" } + resolution: {integrity: sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==} + engines: {node: '>=6.5.0', npm: '>=3'} event-emitter@0.3.5: - resolution: - { - integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==, - } + resolution: {integrity: sha512-D9rRn9y7kLPnJ+hMq7S/nhvoKwwvVJahBi2BPmx3bvbsEdK3W9ii8cBSGjP+72/LnM4n6fo3+dkCX5FeTQruXA==} event-pubsub@4.3.0: - resolution: - { - integrity: sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ==, - } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-z7IyloorXvKbFx9Bpie2+vMJKKx1fH1EN5yiTfp8CiLOTptSYy1g8H4yDpGlEdshL1PBiFtBHepF2cNsqeEeFQ==} + engines: {node: '>=4.0.0'} event-stream@3.3.4: - resolution: - { - integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==, - } + resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==} event-target-shim@5.0.1: - resolution: - { - integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} + engines: {node: '>=6'} eventemitter3@3.1.2: - resolution: - { - integrity: sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==, - } + resolution: {integrity: sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==} eventemitter3@4.0.4: - resolution: - { - integrity: sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==, - } + resolution: {integrity: sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==} eventemitter3@4.0.7: - resolution: - { - integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==, - } + resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==} eventemitter3@5.0.1: - resolution: - { - integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==, - } + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} events@1.1.1: - resolution: - { - integrity: sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==, - } - engines: { node: ">=0.4.x" } + resolution: {integrity: sha512-kEcvvCBByWXGnZy6JUlgAp2gBIUjfCAV6P6TgT1/aaQKcmuAEC4OZTV1I4EWQLz2gxZw76atuVyvHhTxvi0Flw==} + engines: {node: '>=0.4.x'} events@3.3.0: - resolution: - { - integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==, - } - engines: { node: ">=0.8.x" } + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} + engines: {node: '>=0.8.x'} eventsource@2.0.2: - resolution: - { - integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-IzUmBGPR3+oUG9dUeXynyNmf91/3zUSJg1lCktzKw47OXuhco54U3r9B7O4XX+Rb1Itm9OZ2b0RkTs10bICOxA==} + engines: {node: '>=12.0.0'} evp_bytestokey@1.0.3: - resolution: - { - integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==, - } + resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==} exec-async@2.2.0: - resolution: - { - integrity: sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==, - } + resolution: {integrity: sha512-87OpwcEiMia/DeiKFzaQNBNFeN3XkkpYIh9FyOqq5mS2oKv3CBE67PXoEKcr6nodWdXNogTiQ0jE2NGuoffXPw==} execa@0.8.0: - resolution: - { - integrity: sha512-zDWS+Rb1E8BlqqhALSt9kUhss8Qq4nN3iof3gsOdyINksElaPyNBtKUMTR62qhvgVWR0CqCX7sdnKe4MnUbFEA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-zDWS+Rb1E8BlqqhALSt9kUhss8Qq4nN3iof3gsOdyINksElaPyNBtKUMTR62qhvgVWR0CqCX7sdnKe4MnUbFEA==} + engines: {node: '>=4'} execa@1.0.0: - resolution: - { - integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==} + engines: {node: '>=6'} execa@5.0.0: - resolution: - { - integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==} + engines: {node: '>=10'} execa@5.1.1: - resolution: - { - integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} execa@7.2.0: - resolution: - { - integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==, - } - engines: { node: ^14.18.0 || ^16.14.0 || >=18.0.0 } + resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==} + engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} 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'} exenv@1.2.2: - resolution: - { - integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==, - } + resolution: {integrity: sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==} exeunt@1.1.0: - resolution: - { - integrity: sha512-dd++Yn/0Fp+gtJ04YHov7MeAii+LFivJc6KqnJNfplzLVUkUDrfKoQDTLlCgzcW15vY5hKlHasWeIsQJ8agHsw==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-dd++Yn/0Fp+gtJ04YHov7MeAii+LFivJc6KqnJNfplzLVUkUDrfKoQDTLlCgzcW15vY5hKlHasWeIsQJ8agHsw==} + engines: {node: '>=0.10'} exit@0.1.2: - resolution: - { - integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} + engines: {node: '>= 0.8.0'} expand-template@2.0.3: - resolution: - { - integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} + engines: {node: '>=6'} expect@27.5.1: - resolution: - { - integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} expect@28.1.3: - resolution: - { - integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} expect@29.7.0: - resolution: - { - integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} expo-application@5.3.1: - resolution: - { - integrity: sha512-HR2+K+Hm33vLw/TfbFaHrvUbRRNRco8R+3QaCKy7eJC2LFfT05kZ15ynGaKfB5DJ/oqPV3mxXVR/EfwmE++hoA==, - } - peerDependencies: - expo: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-HR2+K+Hm33vLw/TfbFaHrvUbRRNRco8R+3QaCKy7eJC2LFfT05kZ15ynGaKfB5DJ/oqPV3mxXVR/EfwmE++hoA==} + peerDependencies: + expo: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28277,16 +19748,13 @@ packages: optional: true expo-asset@10.0.10: - resolution: - { - integrity: sha512-0qoTIihB79k+wGus9wy0JMKq7DdenziVx3iUkGvMAy2azscSgWH6bd2gJ9CGnhC6JRd3qTMFBL0ou/fx7WZl7A==, - } - peerDependencies: - expo: "*" - expo-file-system: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-0qoTIihB79k+wGus9wy0JMKq7DdenziVx3iUkGvMAy2azscSgWH6bd2gJ9CGnhC6JRd3qTMFBL0ou/fx7WZl7A==} + peerDependencies: + expo: '*' + expo-file-system: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-file-system: optional: true @@ -28298,15 +19766,12 @@ packages: optional: true expo-asset@8.10.1: - resolution: - { - integrity: sha512-5VMTESxgY9GBsspO/esY25SKEa7RyascVkLe/OcL1WgblNFm7xCCEEUIW8VWS1nHJQGYxpMZPr3bEfjMpdWdyA==, - } - peerDependencies: - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-5VMTESxgY9GBsspO/esY25SKEa7RyascVkLe/OcL1WgblNFm7xCCEEUIW8VWS1nHJQGYxpMZPr3bEfjMpdWdyA==} + peerDependencies: + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28318,16 +19783,13 @@ packages: optional: true expo-barcode-scanner@13.0.1: - resolution: - { - integrity: sha512-xBGLT1An2gpAMIQRTLU3oHydKohX8r8F9/ait1Fk9Vgd0GraFZbP4IiT7nHMlaw4H6E7Muucf7vXpGV6u7d4HQ==, - } - peerDependencies: - expo: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-xBGLT1An2gpAMIQRTLU3oHydKohX8r8F9/ait1Fk9Vgd0GraFZbP4IiT7nHMlaw4H6E7Muucf7vXpGV6u7d4HQ==} + peerDependencies: + expo: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28339,16 +19801,13 @@ packages: optional: true expo-camera@15.0.16: - resolution: - { - integrity: sha512-FLE02DMqkjwsb7IugKAqQvBe6s+TCQeb5LupO1+r//wAhBwmHncOrc6zV95ZEC2f9PTPK34nFH/s8CDGiVzIAA==, - } - peerDependencies: - expo: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-FLE02DMqkjwsb7IugKAqQvBe6s+TCQeb5LupO1+r//wAhBwmHncOrc6zV95ZEC2f9PTPK34nFH/s8CDGiVzIAA==} + peerDependencies: + expo: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28360,16 +19819,13 @@ packages: optional: true expo-constants@14.4.2: - resolution: - { - integrity: sha512-nOB122DOAjk+KrJT69lFQAoYVQGQjFHSigCPVBzVdko9S1xGsfiOH9+X5dygTsZTIlVLpQJDdmZ7ONiv3i+26w==, - } - peerDependencies: - expo: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-nOB122DOAjk+KrJT69lFQAoYVQGQjFHSigCPVBzVdko9S1xGsfiOH9+X5dygTsZTIlVLpQJDdmZ7ONiv3i+26w==} + peerDependencies: + expo: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28381,16 +19837,13 @@ packages: optional: true expo-constants@14.5.1: - resolution: - { - integrity: sha512-06OKXQmKI0vuje++6lm7w1kO3rKsZAHio/4d9hwQuVAtExJ6RM92BnpzkDAV16ZheVN/FHKzNyY1BYLqXfujMw==, - } - peerDependencies: - expo: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-06OKXQmKI0vuje++6lm7w1kO3rKsZAHio/4d9hwQuVAtExJ6RM92BnpzkDAV16ZheVN/FHKzNyY1BYLqXfujMw==} + peerDependencies: + expo: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28402,16 +19855,13 @@ packages: optional: true expo-constants@16.0.2: - resolution: - { - integrity: sha512-9tNY3OVO0jfiMzl7ngb6IOyR5VFzNoN5OOazUWoeGfmMqVB5kltTemRvKraK9JRbBKIw+SOYLEmF0sEqgFZ6OQ==, - } - peerDependencies: - expo: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-9tNY3OVO0jfiMzl7ngb6IOyR5VFzNoN5OOazUWoeGfmMqVB5kltTemRvKraK9JRbBKIw+SOYLEmF0sEqgFZ6OQ==} + peerDependencies: + expo: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28423,16 +19873,13 @@ packages: optional: true expo-crypto@10.2.0: - resolution: - { - integrity: sha512-YVFp+DJXBtt4t6oZXepnzb+xwpKzFbXn3B9Oma1Tfh6J0rIlm/I20UW/5apdvEdbj44fxJ5DsiZeyADI3bcZkQ==, - } - peerDependencies: - expo: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-YVFp+DJXBtt4t6oZXepnzb+xwpKzFbXn3B9Oma1Tfh6J0rIlm/I20UW/5apdvEdbj44fxJ5DsiZeyADI3bcZkQ==} + peerDependencies: + expo: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28444,16 +19891,13 @@ packages: optional: true expo-crypto@13.0.2: - resolution: - { - integrity: sha512-7f/IMPYJZkBM21LNEMXGrNo/0uXSVfZTwufUdpNKedJR0fm5fH4DCSN79ZddlV26nF90PuXjK2inIbI6lb0qRA==, - } - peerDependencies: - expo: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-7f/IMPYJZkBM21LNEMXGrNo/0uXSVfZTwufUdpNKedJR0fm5fH4DCSN79ZddlV26nF90PuXjK2inIbI6lb0qRA==} + peerDependencies: + expo: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28465,16 +19909,13 @@ packages: optional: true expo-file-system@15.4.5: - resolution: - { - integrity: sha512-xy61KaTaDgXhT/dllwYDHm3ch026EyO8j4eC6wSVr/yE12MMMxAC09yGwy4f7kkOs6ztGVQF5j7ldRzNLN4l0Q==, - } - peerDependencies: - expo: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-xy61KaTaDgXhT/dllwYDHm3ch026EyO8j4eC6wSVr/yE12MMMxAC09yGwy4f7kkOs6ztGVQF5j7ldRzNLN4l0Q==} + peerDependencies: + expo: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28486,16 +19927,13 @@ packages: optional: true expo-file-system@17.0.1: - resolution: - { - integrity: sha512-dYpnZJqTGj6HCYJyXAgpFkQWsiCH3HY1ek2cFZVHFoEc5tLz9gmdEgTF6nFHurvmvfmXqxi7a5CXyVm0aFYJBw==, - } - peerDependencies: - expo: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-dYpnZJqTGj6HCYJyXAgpFkQWsiCH3HY1ek2cFZVHFoEc5tLz9gmdEgTF6nFHurvmvfmXqxi7a5CXyVm0aFYJBw==} + peerDependencies: + expo: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28507,17 +19945,14 @@ packages: optional: true expo-font@11.10.3: - resolution: - { - integrity: sha512-q1Td2zUvmLbCA9GV4OG4nLPw5gJuNY1VrPycsnemN1m8XWTzzs8nyECQQqrcBhgulCgcKZZJJ6U0kC2iuSoQHQ==, - } - peerDependencies: - expo: "*" - expo-asset: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-q1Td2zUvmLbCA9GV4OG4nLPw5gJuNY1VrPycsnemN1m8XWTzzs8nyECQQqrcBhgulCgcKZZJJ6U0kC2iuSoQHQ==} + peerDependencies: + expo: '*' + expo-asset: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-asset: optional: true @@ -28531,17 +19966,14 @@ packages: optional: true expo-font@11.4.0: - resolution: - { - integrity: sha512-nkmezCFD7gR/I6R+e3/ry18uEfF8uYrr6h+PdBJu+3dawoLOpo+wFb/RG9bHUekU1/cPanR58LR7G5MEMKHR2w==, - } - peerDependencies: - expo: "*" - expo-asset: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-nkmezCFD7gR/I6R+e3/ry18uEfF8uYrr6h+PdBJu+3dawoLOpo+wFb/RG9bHUekU1/cPanR58LR7G5MEMKHR2w==} + peerDependencies: + expo: '*' + expo-asset: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-asset: optional: true @@ -28555,17 +19987,14 @@ packages: optional: true expo-font@12.0.10: - resolution: - { - integrity: sha512-Q1i2NuYri3jy32zdnBaHHCya1wH1yMAsI+3CCmj9zlQzlhsS9Bdwcj2W3c5eU5FvH2hsNQy4O+O1NnM6o/pDaQ==, - } - peerDependencies: - expo: "*" - expo-asset: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-Q1i2NuYri3jy32zdnBaHHCya1wH1yMAsI+3CCmj9zlQzlhsS9Bdwcj2W3c5eU5FvH2hsNQy4O+O1NnM6o/pDaQ==} + peerDependencies: + expo: '*' + expo-asset: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-asset: optional: true @@ -28579,16 +20008,13 @@ packages: optional: true expo-image-loader@4.7.0: - resolution: - { - integrity: sha512-cx+MxxsAMGl9AiWnQUzrkJMJH4eNOGlu7XkLGnAXSJrRoIiciGaKqzeaD326IyCTV+Z1fXvIliSgNW+DscvD8g==, - } - peerDependencies: - expo: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-cx+MxxsAMGl9AiWnQUzrkJMJH4eNOGlu7XkLGnAXSJrRoIiciGaKqzeaD326IyCTV+Z1fXvIliSgNW+DscvD8g==} + peerDependencies: + expo: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28600,16 +20026,13 @@ packages: optional: true expo-image-manipulator@12.0.5: - resolution: - { - integrity: sha512-zJ8yINjckYw/yfoSuICt4yJ9xr112+W9e5QVXwK3nCAHr7sv45RQ5sxte0qppf594TPl+UoV6Tjim7WpoKipRQ==, - } - peerDependencies: - expo: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-zJ8yINjckYw/yfoSuICt4yJ9xr112+W9e5QVXwK3nCAHr7sv45RQ5sxte0qppf594TPl+UoV6Tjim7WpoKipRQ==} + peerDependencies: + expo: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28621,16 +20044,13 @@ packages: optional: true expo-keep-awake@12.3.0: - resolution: - { - integrity: sha512-ujiJg1p9EdCOYS05jh5PtUrfiZnK0yyLy+UewzqrjUqIT8eAGMQbkfOn3C3fHE7AKd5AefSMzJnS3lYZcZYHDw==, - } - peerDependencies: - expo: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-ujiJg1p9EdCOYS05jh5PtUrfiZnK0yyLy+UewzqrjUqIT8eAGMQbkfOn3C3fHE7AKd5AefSMzJnS3lYZcZYHDw==} + peerDependencies: + expo: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28642,16 +20062,13 @@ packages: optional: true expo-keep-awake@13.0.2: - resolution: - { - integrity: sha512-kKiwkVg/bY0AJ5q1Pxnm/GvpeB6hbNJhcFsoOWDh2NlpibhCLaHL826KHUM+WsnJRbVRxJ+K9vbPRHEMvFpVyw==, - } - peerDependencies: - expo: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-kKiwkVg/bY0AJ5q1Pxnm/GvpeB6hbNJhcFsoOWDh2NlpibhCLaHL826KHUM+WsnJRbVRxJ+K9vbPRHEMvFpVyw==} + peerDependencies: + expo: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28663,16 +20080,13 @@ packages: optional: true expo-modules-autolinking@1.11.2: - resolution: - { - integrity: sha512-fdcaNO8ucHA3yLNY52ZUENBcAG7KEx8QyMmnVNavO1JVBGRMZG8JyVcbrhYQDtVtpxkbai5YzwvLutINvbDZDQ==, - } + resolution: {integrity: sha512-fdcaNO8ucHA3yLNY52ZUENBcAG7KEx8QyMmnVNavO1JVBGRMZG8JyVcbrhYQDtVtpxkbai5YzwvLutINvbDZDQ==} hasBin: true peerDependencies: - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28684,16 +20098,13 @@ packages: optional: true expo-modules-autolinking@1.5.1: - resolution: - { - integrity: sha512-yt5a1VCp2BF9CrsO689PCD5oXKP14MMhnOanQMvDn4BDpURYfzAlDVGC5fZrNQKtwn/eq3bcrxIwZ7D9QjVVRg==, - } + resolution: {integrity: sha512-yt5a1VCp2BF9CrsO689PCD5oXKP14MMhnOanQMvDn4BDpURYfzAlDVGC5fZrNQKtwn/eq3bcrxIwZ7D9QjVVRg==} hasBin: true peerDependencies: - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28705,15 +20116,12 @@ packages: optional: true expo-modules-core@1.12.25: - resolution: - { - integrity: sha512-HB2LS2LEM41Xq1bG+Jtzqm6XgPaa+mM9BAvCdX1lDGMQ9Ay9vMTL/GVEs2gpsINPofICopjBRwD+wftyCbVrzg==, - } - peerDependencies: - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-HB2LS2LEM41Xq1bG+Jtzqm6XgPaa+mM9BAvCdX1lDGMQ9Ay9vMTL/GVEs2gpsINPofICopjBRwD+wftyCbVrzg==} + peerDependencies: + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28725,15 +20133,12 @@ packages: optional: true expo-modules-core@1.5.11: - resolution: - { - integrity: sha512-1Dj2t74nVjxq6xEQf2b9WFfAMhPzVnR0thY0PfRFgob4STyj3sq1U4PIHVWvKQBtDKIa227DrNRb+Hu+LqKWQg==, - } - peerDependencies: - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-1Dj2t74nVjxq6xEQf2b9WFfAMhPzVnR0thY0PfRFgob4STyj3sq1U4PIHVWvKQBtDKIa227DrNRb+Hu+LqKWQg==} + peerDependencies: + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28745,17 +20150,14 @@ packages: optional: true expo-pwa@0.0.126: - resolution: - { - integrity: sha512-9qb6aIY0awez4FTyIiNhqyekb6sKnbvODOFCDPg23PqpkvdhuzzDRtP/Avgippt8kqRAgPpFXmIp2LaAyH1/aw==, - } + resolution: {integrity: sha512-9qb6aIY0awez4FTyIiNhqyekb6sKnbvODOFCDPg23PqpkvdhuzzDRtP/Avgippt8kqRAgPpFXmIp2LaAyH1/aw==} hasBin: true peerDependencies: - expo: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + expo: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28767,16 +20169,13 @@ packages: optional: true expo-random@12.3.0: - resolution: - { - integrity: sha512-q+AsTfGNT+Q+fb2sRrYtRkI3g5tV4H0kuYXM186aueILGO/vLn/YYFa7xFZj1IZ8LJZg2h96JDPDpsqHfRG2mQ==, - } - peerDependencies: - expo: "*" - expo-constants: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-q+AsTfGNT+Q+fb2sRrYtRkI3g5tV4H0kuYXM186aueILGO/vLn/YYFa7xFZj1IZ8LJZg2h96JDPDpsqHfRG2mQ==} + peerDependencies: + expo: '*' + expo-constants: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-constants: optional: true @@ -28788,15 +20187,12 @@ packages: optional: true expo@49.0.23: - resolution: - { - integrity: sha512-mFdBpWisPXBuocRGywC14nDai5vSUmvEyQpwvKH/xUo+m5/TUvfqV6YIewFpW22zn5WFGFiuJPhzNrqhBBinIw==, - } + resolution: {integrity: sha512-mFdBpWisPXBuocRGywC14nDai5vSUmvEyQpwvKH/xUo+m5/TUvfqV6YIewFpW22zn5WFGFiuJPhzNrqhBBinIw==} hasBin: true peerDependencies: - expo-modules-core: "*" - react: 18.2.0 - react-native: 0.72.10 + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-modules-core: optional: true @@ -28806,16 +20202,13 @@ packages: optional: true expo@51.0.37: - resolution: - { - integrity: sha512-zMdfTiGNgNWG0HOOFA3zRreS94iQ7fDxxgEIR6wdQCbncTpbeYj+5mscTAlHE9JJ+oBkcNyJXrLSjE/YVbFERg==, - } + resolution: {integrity: sha512-zMdfTiGNgNWG0HOOFA3zRreS94iQ7fDxxgEIR6wdQCbncTpbeYj+5mscTAlHE9JJ+oBkcNyJXrLSjE/YVbFERg==} hasBin: true peerDependencies: - expo-modules-autolinking: "*" - expo-modules-core: "*" - react: "*" - react-native: "*" + expo-modules-autolinking: '*' + expo-modules-core: '*' + react: '*' + react-native: '*' peerDependenciesMeta: expo-modules-autolinking: optional: true @@ -28827,649 +20220,358 @@ packages: optional: true exponential-backoff@3.1.1: - resolution: - { - integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==, - } + resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==} express@4.19.2: - resolution: - { - integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==, - } - engines: { node: ">= 0.10.0" } + resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==} + engines: {node: '>= 0.10.0'} ext-list@2.2.2: - resolution: - { - integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} + engines: {node: '>=0.10.0'} ext-name@5.0.0: - resolution: - { - integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==} + engines: {node: '>=4'} ext@1.7.0: - resolution: - { - integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==, - } + resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==} 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@3.0.2: - resolution: - { - integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==, - } + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} extendable-error@0.1.7: - resolution: - { - integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==, - } + resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} external-editor@3.1.0: - resolution: - { - integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} + engines: {node: '>=4'} extract-zip@1.7.0: - resolution: - { - integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==, - } + resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==} hasBin: true extract-zip@2.0.1: - resolution: - { - integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==, - } - engines: { node: ">= 10.17.0" } + resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} + engines: {node: '>= 10.17.0'} hasBin: true extsprintf@1.3.0: - resolution: - { - integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==, - } - engines: { "0": node >=0.6.0 } + resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} + engines: {'0': node >=0.6.0} extsprintf@1.4.1: - resolution: - { - integrity: sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==, - } - engines: { "0": node >=0.6.0 } + resolution: {integrity: sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==} + engines: {'0': node >=0.6.0} eyes@0.1.8: - resolution: - { - integrity: sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==, - } - engines: { node: "> 0.1.90" } + resolution: {integrity: sha512-GipyPsXO1anza0AOZdy69Im7hGFCNB7Y/NGjDlZGJ3GJJLtwNSb2vrzYrTYJRrRloVx7pl+bhUaTB8yiccPvFQ==} + engines: {node: '> 0.1.90'} fast-base64-decode@1.0.0: - resolution: - { - integrity: sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q==, - } + resolution: {integrity: sha512-qwaScUgUGBYeDNRnbc/KyllVU88Jk1pRHPStuF/lO7B0/RTRLj7U0lkdTAutlBblY08rwZDff6tNU9cjv6j//Q==} fast-check@3.17.1: - resolution: - { - integrity: sha512-jIKXJVe6ZO0SpwEgVtEVujTf8TwjI9wMXFJCjsDHUB3RroUbXBgF4kOSz3A7MW0UR26aqsoB8i9O2mjtjERAiA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-jIKXJVe6ZO0SpwEgVtEVujTf8TwjI9wMXFJCjsDHUB3RroUbXBgF4kOSz3A7MW0UR26aqsoB8i9O2mjtjERAiA==} + engines: {node: '>=8.0.0'} fast-deep-equal@2.0.1: - resolution: - { - integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==, - } + resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==} fast-deep-equal@3.1.1: - resolution: - { - integrity: sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==, - } + resolution: {integrity: sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==} fast-deep-equal@3.1.3: - resolution: - { - integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, - } + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} fast-diff@1.3.0: - resolution: - { - integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==, - } + resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} fast-fifo@1.3.2: - resolution: - { - integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==, - } + resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} fast-glob@3.3.2: - resolution: - { - integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==, - } - engines: { node: ">=8.6.0" } + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} fast-json-parse@1.0.3: - resolution: - { - integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==, - } + resolution: {integrity: sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==} 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-loops@1.1.3: - resolution: - { - integrity: sha512-8EZzEP0eKkEEVX+drtd9mtuQ+/QrlfW/5MlwcwK5Nds6EkZ/tRzEexkzUY2mIssnAyVLT+TKHuRXmFNNXYUd6g==, - } + resolution: {integrity: sha512-8EZzEP0eKkEEVX+drtd9mtuQ+/QrlfW/5MlwcwK5Nds6EkZ/tRzEexkzUY2mIssnAyVLT+TKHuRXmFNNXYUd6g==} fast-redact@3.5.0: - resolution: - { - integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==} + engines: {node: '>=6'} fast-safe-stringify@2.1.1: - resolution: - { - integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==, - } + resolution: {integrity: sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==} fast-stable-stringify@1.0.0: - resolution: - { - integrity: sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag==, - } + resolution: {integrity: sha512-wpYMUmFu5f00Sm0cj2pfivpmawLZ0NKdviQ4w9zJeR8JVtOpOxHmLaJuj0vxvGqMJQWyP/COUkF75/57OKyRag==} fast-uri@3.0.2: - resolution: - { - integrity: sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==, - } + resolution: {integrity: sha512-GR6f0hD7XXyNJa25Tb9BuIdN0tdr+0BMi6/CJPH3wJO1JjNG3n/VsSw38AwRdKZABm8lGbPfakLRkYzx2V9row==} fast-url-parser@1.1.3: - resolution: - { - integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==, - } + resolution: {integrity: sha512-5jOCVXADYNuRkKFzNJ0dCCewsZiYo0dz8QNYljkOpFC6r2U4OBmKtvm/Tsuh4w1YYdDqDb31a8TVhBJ2OJKdqQ==} fast-xml-parser@4.2.5: - resolution: - { - integrity: sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==, - } + resolution: {integrity: sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==} hasBin: true fast-xml-parser@4.4.1: - resolution: - { - integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==, - } + resolution: {integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==} hasBin: true fastest-levenshtein@1.0.16: - resolution: - { - integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==, - } - engines: { node: ">= 4.9.1" } + resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} + engines: {node: '>= 4.9.1'} fastq@1.17.1: - resolution: - { - integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==, - } + resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} faye-websocket@0.11.4: - resolution: - { - integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==, - } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} + engines: {node: '>=0.8.0'} fb-watchman@2.0.2: - resolution: - { - integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==, - } + resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==} fbemitter@3.0.0: - resolution: - { - integrity: sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==, - } + resolution: {integrity: sha512-KWKaceCwKQU0+HPoop6gn4eOHk50bBv/VxjJtGMfwmJt3D29JpN4H4eisCtIPA+a8GVBam+ldMMpMjJUvpDyHw==} 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==} fd-slicer@1.1.0: - resolution: - { - integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==, - } + resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} fecha@4.2.3: - resolution: - { - integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==, - } + resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==} fetch-blob@3.2.0: - resolution: - { - integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==, - } - engines: { node: ^12.20 || >= 14.13 } + resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==} + engines: {node: ^12.20 || >= 14.13} fetch-retry@4.1.1: - resolution: - { - integrity: sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==, - } + resolution: {integrity: sha512-e6eB7zN6UBSwGVwrbWVH+gdLnkW9WwHhmq2YDK1Sh30pzx1onRVGBvogTlUeWxwTa+L86NYdo4hFkh7O8ZjSnA==} fetch-retry@5.0.6: - resolution: - { - integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==, - } + resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==} figures@1.7.0: - resolution: - { - integrity: sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ==} + engines: {node: '>=0.10.0'} figures@2.0.0: - resolution: - { - integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==} + engines: {node: '>=4'} file-entry-cache@6.0.1: - resolution: - { - integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==, - } - engines: { node: ^10.12.0 || >=12.0.0 } + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} file-loader@6.2.0: - resolution: - { - integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==, - } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} + engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 file-selector@0.6.0: - resolution: - { - integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==, - } - engines: { node: ">= 12" } + resolution: {integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==} + engines: {node: '>= 12'} file-system-cache@2.3.0: - resolution: - { - integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==, - } + resolution: {integrity: sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==} 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==} filename-reserved-regex@2.0.0: - resolution: - { - integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==} + engines: {node: '>=4'} filenamify@4.3.0: - resolution: - { - integrity: sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==} + engines: {node: '>=8'} filesize@8.0.7: - resolution: - { - integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==, - } - engines: { node: ">= 0.4.0" } + resolution: {integrity: sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==} + engines: {node: '>= 0.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'} finalhandler@1.1.2: - resolution: - { - integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} + engines: {node: '>= 0.8'} finalhandler@1.2.0: - resolution: - { - integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==} + engines: {node: '>= 0.8'} find-babel-config@1.2.0: - resolution: - { - integrity: sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA==, - } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-jB2CHJeqy6a820ssiqwrKMeyC6nNdmrcgkKWJWmpoxpE8RKciYJXCcXRq1h2AzCo5I5BJeN2tkGEO3hLTuePRA==} + engines: {node: '>=4.0.0'} find-babel-config@2.0.0: - resolution: - { - integrity: sha512-dOKT7jvF3hGzlW60Gc3ONox/0rRZ/tz7WCil0bqA1In/3I8f1BctpXahRnEKDySZqci7u+dqq93sZST9fOJpFw==, - } - engines: { node: ">=16.0.0" } + resolution: {integrity: sha512-dOKT7jvF3hGzlW60Gc3ONox/0rRZ/tz7WCil0bqA1In/3I8f1BctpXahRnEKDySZqci7u+dqq93sZST9fOJpFw==} + engines: {node: '>=16.0.0'} find-cache-dir@2.1.0: - resolution: - { - integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} + engines: {node: '>=6'} find-cache-dir@3.3.2: - resolution: - { - integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==} + engines: {node: '>=8'} find-cache-dir@4.0.0: - resolution: - { - integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==} + engines: {node: '>=14.16'} find-replace@3.0.0: - resolution: - { - integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==, - } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==} + engines: {node: '>=4.0.0'} find-root@1.1.0: - resolution: - { - integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==, - } + resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} find-up@3.0.0: - resolution: - { - integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} + engines: {node: '>=6'} 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'} find-up@6.3.0: - resolution: - { - integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} find-yarn-workspace-root2@1.2.16: - resolution: - { - integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==, - } + resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} find-yarn-workspace-root@2.0.0: - resolution: - { - integrity: sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==, - } + resolution: {integrity: sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==} firebase@9.23.0: - resolution: - { - integrity: sha512-/4lUVY0lUvBDIaeY1q6dUYhS8Sd18Qb9CgWkPZICUo9IXpJNCEagfNZXBBFCkMTTN5L5gx2Hjr27y21a9NzUcA==, - } + resolution: {integrity: sha512-/4lUVY0lUvBDIaeY1q6dUYhS8Sd18Qb9CgWkPZICUo9IXpJNCEagfNZXBBFCkMTTN5L5gx2Hjr27y21a9NzUcA==} flat-cache@3.2.0: - resolution: - { - integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==, - } - engines: { node: ^10.12.0 || >=12.0.0 } + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} flat@5.0.2: - resolution: - { - integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==, - } + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} hasBin: true flatted@3.3.1: - resolution: - { - integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==, - } + resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} flexsearch@0.7.43: - resolution: - { - integrity: sha512-c5o/+Um8aqCSOXGcZoqZOm+NqtVwNsvVpWv6lfmSclU954O3wvQKxxK8zj74fPaSJbXpSLTs4PRhh+wnoCXnKg==, - } + resolution: {integrity: sha512-c5o/+Um8aqCSOXGcZoqZOm+NqtVwNsvVpWv6lfmSclU954O3wvQKxxK8zj74fPaSJbXpSLTs4PRhh+wnoCXnKg==} flow-enums-runtime@0.0.6: - resolution: - { - integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==, - } + resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==} flow-parser@0.156.0: - resolution: - { - integrity: sha512-OCE3oIixhOttaV4ahIGtxf9XfaDdxujiTnXuHu+0dvDVVDiSDJlQpgCWdDKqP0OHfFnxQKrjMamArDAXtrBtZw==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-OCE3oIixhOttaV4ahIGtxf9XfaDdxujiTnXuHu+0dvDVVDiSDJlQpgCWdDKqP0OHfFnxQKrjMamArDAXtrBtZw==} + engines: {node: '>=0.4.0'} flow-parser@0.232.0: - resolution: - { - integrity: sha512-U8vcKyYdM+Kb0tPzfPJ5JyPMU0uXKwHxp0L6BcEc+wBlbTW9qRhOqV5DeGXclgclVvtqQNGEG8Strj/b6c/IxA==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-U8vcKyYdM+Kb0tPzfPJ5JyPMU0uXKwHxp0L6BcEc+wBlbTW9qRhOqV5DeGXclgclVvtqQNGEG8Strj/b6c/IxA==} + engines: {node: '>=0.4.0'} flow-remove-types@2.156.0: - resolution: - { - integrity: sha512-ivU28S1ycaVo5anxlXdIVlrmqLD81JWFADa6oUjyoQg0va4zSyZCp5OYco74VZi7nm42O/yTNv1Y5Byc7bJF1Q==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-ivU28S1ycaVo5anxlXdIVlrmqLD81JWFADa6oUjyoQg0va4zSyZCp5OYco74VZi7nm42O/yTNv1Y5Byc7bJF1Q==} + engines: {node: '>=4'} hasBin: true flow-remove-types@2.232.0: - resolution: - { - integrity: sha512-t7B6axPRmSGeWU1m2j+LOBocw9ORXcomoykfMoZedd8snGum3QQpzro3eQpDoutnqKRtJliAvX6PJtFCNEjpMQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-t7B6axPRmSGeWU1m2j+LOBocw9ORXcomoykfMoZedd8snGum3QQpzro3eQpDoutnqKRtJliAvX6PJtFCNEjpMQ==} + engines: {node: '>=4'} hasBin: true fn.name@1.1.0: - resolution: - { - integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==, - } + resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==} focus-trap@6.9.4: - resolution: - { - integrity: sha512-v2NTsZe2FF59Y+sDykKY+XjqZ0cPfhq/hikWVL88BqLivnNiEffAsac6rP6H45ff9wG9LL5ToiDqrLEP9GX9mw==, - } + resolution: {integrity: sha512-v2NTsZe2FF59Y+sDykKY+XjqZ0cPfhq/hikWVL88BqLivnNiEffAsac6rP6H45ff9wG9LL5ToiDqrLEP9GX9mw==} focus-visible@5.2.0: - resolution: - { - integrity: sha512-Rwix9pBtC1Nuy5wysTmKy+UjbDJpIfg8eHjw0rjZ1mX4GNLz1Bmd16uDpI3Gk1i70Fgcs8Csg2lPm8HULFg9DQ==, - } + resolution: {integrity: sha512-Rwix9pBtC1Nuy5wysTmKy+UjbDJpIfg8eHjw0rjZ1mX4GNLz1Bmd16uDpI3Gk1i70Fgcs8Csg2lPm8HULFg9DQ==} follow-redirects@1.15.6: - resolution: - { - integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==, - } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==} + engines: {node: '>=4.0'} fontfaceobserver@2.3.0: - resolution: - { - integrity: sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==, - } + resolution: {integrity: sha512-6FPvD/IVyT4ZlNe7Wcn5Fb/4ChigpucKYSvD6a+0iMoLn2inpo711eyIcKjmDtE5XNcgAkSH9uN/nfAeZzHEfg==} for-each@0.3.3: - resolution: - { - integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, - } + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} for-in@0.1.8: - resolution: - { - integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==} + engines: {node: '>=0.10.0'} 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'} for-own@1.0.0: - resolution: - { - integrity: sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==} + engines: {node: '>=0.10.0'} foreach@2.0.6: - resolution: - { - integrity: sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==, - } + resolution: {integrity: sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==} foreground-child@2.0.0: - resolution: - { - integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} + engines: {node: '>=8.0.0'} foreground-child@3.1.1: - resolution: - { - integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} + engines: {node: '>=14'} forever-agent@0.6.1: - resolution: - { - integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==, - } + resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} fork-ts-checker-webpack-plugin@6.5.3: - resolution: - { - integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==, - } - engines: { node: ">=10", yarn: ">=1.0.0" } - peerDependencies: - eslint: ">= 6" - typescript: ">= 2.7" - vue-template-compiler: "*" - webpack: ">= 4" + resolution: {integrity: sha512-SbH/l9ikmMWycd5puHJKTkZJKddF4iRLyW3DeZ08HTI7NGyLS38MXd/KGgeWumQO7YNQbW2u/NtPT2YowbPaGQ==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: '>= 4' peerDependenciesMeta: eslint: optional: true @@ -29477,99 +20579,60 @@ packages: optional: true fork-ts-checker-webpack-plugin@8.0.0: - resolution: - { - integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==, - } - engines: { node: ">=12.13.0", yarn: ">=1.0.0" } + resolution: {integrity: sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==} + engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: - typescript: ">3.6.0" + typescript: '>3.6.0' webpack: ^5.11.0 form-data@2.3.3: - resolution: - { - integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==, - } - engines: { node: ">= 0.12" } + resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} + engines: {node: '>= 0.12'} form-data@2.5.1: - resolution: - { - integrity: sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==, - } - engines: { node: ">= 0.12" } + resolution: {integrity: sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==} + engines: {node: '>= 0.12'} form-data@3.0.1: - resolution: - { - integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==} + engines: {node: '>= 6'} form-data@4.0.0: - resolution: - { - integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} formdata-polyfill@4.0.10: - resolution: - { - integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==, - } - engines: { node: ">=12.20.0" } + resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==} + engines: {node: '>=12.20.0'} formidable@1.2.6: - resolution: - { - integrity: sha512-KcpbcpuLNOwrEjnbpMC0gS+X8ciDoZE1kkqzat4a8vrprf+s9pKNQ/QIwWfbfs4ltgmFl3MD177SNTkve3BwGQ==, - } - deprecated: "Please upgrade to latest, formidable@v2 or formidable@v3! Check these notes: https://bit.ly/2ZEqIau" + resolution: {integrity: sha512-KcpbcpuLNOwrEjnbpMC0gS+X8ciDoZE1kkqzat4a8vrprf+s9pKNQ/QIwWfbfs4ltgmFl3MD177SNTkve3BwGQ==} + deprecated: 'Please upgrade to latest, formidable@v2 or formidable@v3! Check these notes: https://bit.ly/2ZEqIau' formidable@2.1.2: - resolution: - { - integrity: sha512-CM3GuJ57US06mlpQ47YcunuUZ9jpm8Vx+P2CGt2j7HpgkKZO/DJYQ0Bobim8G6PFQmK5lOqOOdUXboU+h73A4g==, - } + resolution: {integrity: sha512-CM3GuJ57US06mlpQ47YcunuUZ9jpm8Vx+P2CGt2j7HpgkKZO/DJYQ0Bobim8G6PFQmK5lOqOOdUXboU+h73A4g==} forwarded@0.2.0: - resolution: - { - integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} + engines: {node: '>= 0.6'} fp-ts@2.1.1: - resolution: - { - integrity: sha512-YcWhMdDCFCja0MmaDroTgNu+NWWrrnUEn92nvDgrtVy9Z71YFnhNVIghoHPt8gs82ijoMzFGeWKvArbyICiJgw==, - } + resolution: {integrity: sha512-YcWhMdDCFCja0MmaDroTgNu+NWWrrnUEn92nvDgrtVy9Z71YFnhNVIghoHPt8gs82ijoMzFGeWKvArbyICiJgw==} fp-ts@2.16.5: - resolution: - { - integrity: sha512-N8T8PwMSeTKKtkm9lkj/zSTAnPC/aJIIrQhnHxxkL0KLsRCNUPANksJOlMXxcKKCo7H1ORP3No9EMD+fP0tsdA==, - } + resolution: {integrity: sha512-N8T8PwMSeTKKtkm9lkj/zSTAnPC/aJIIrQhnHxxkL0KLsRCNUPANksJOlMXxcKKCo7H1ORP3No9EMD+fP0tsdA==} fraction.js@4.3.7: - resolution: - { - integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==, - } + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} framer-motion@11.3.28: - resolution: - { - integrity: sha512-dqhoawipEAjqdv32zbv72sOMJZjol7dROWn7t/FOq23WXJ40O4OUybgnO2ldnuS+3YquSn8xO/KKRavZ+TBVOQ==, - } + resolution: {integrity: sha512-dqhoawipEAjqdv32zbv72sOMJZjol7dROWn7t/FOq23WXJ40O4OUybgnO2ldnuS+3YquSn8xO/KKRavZ+TBVOQ==} peerDependencies: - "@emotion/is-prop-valid": "*" + '@emotion/is-prop-valid': '*' react: ^18.0.0 react-dom: ^18.0.0 peerDependenciesMeta: - "@emotion/is-prop-valid": + '@emotion/is-prop-valid': optional: true react: optional: true @@ -29577,2642 +20640,1460 @@ packages: optional: true freeport-async@2.0.0: - resolution: - { - integrity: sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-K7od3Uw45AJg00XUmy15+Hae2hOcgKcmN3/EF6Y7i01O0gaqiRx8sUSpsb9+BRNL8RPBrhzPsVfy8q9ADlJuWQ==} + engines: {node: '>=8'} fresh@0.5.2: - resolution: - { - integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + engines: {node: '>= 0.6'} from@0.1.7: - resolution: - { - integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==, - } + resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==} fromentries@1.3.2: - resolution: - { - integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==, - } + resolution: {integrity: sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==} fs-constants@1.0.0: - resolution: - { - integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==, - } + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} 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.1.1: - resolution: - { - integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==, - } - engines: { node: ">=14.14" } + resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} + engines: {node: '>=14.14'} 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@4.0.3: - resolution: - { - integrity: sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==, - } + resolution: {integrity: sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg==} fs-extra@7.0.1: - resolution: - { - integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==, - } - engines: { node: ">=6 <7 || >=8" } + resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} + engines: {node: '>=6 <7 || >=8'} fs-extra@8.1.0: - resolution: - { - integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==, - } - engines: { node: ">=6 <7 || >=8" } + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} fs-extra@9.0.0: - resolution: - { - integrity: sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-pmEYSk3vYsG/bF651KPUXZ+hvjpgWYw/Gc7W9NFUe3ZVLczKKWIij3IKpOrQcdw4TILtibFslZ0UmR8Vvzig4g==} + engines: {node: '>=10'} 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-minipass@1.2.7: - resolution: - { - integrity: sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==, - } + resolution: {integrity: sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==} fs-minipass@2.1.0: - resolution: - { - integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} fs-minipass@3.0.3: - resolution: - { - integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} fs-monkey@1.0.5: - resolution: - { - integrity: sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==, - } + resolution: {integrity: sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==} fs.realpath@1.0.0: - resolution: - { - integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, - } + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} fs@0.0.1-security: - resolution: - { - integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==, - } + resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} fsevents@2.3.2: - resolution: - { - integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, - } - engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } + resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] 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] fstream@1.0.12: - resolution: - { - integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==, - } - engines: { node: ">=0.6" } + resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==} + engines: {node: '>=0.6'} deprecated: This package is no longer supported. function-bind@1.1.2: - resolution: - { - integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, - } + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} function.prototype.name@1.1.6: - resolution: - { - integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} + engines: {node: '>= 0.4'} functions-have-names@1.2.3: - resolution: - { - integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, - } + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} funpermaproxy@1.1.0: - resolution: - { - integrity: sha512-2Sp1hWuO8m5fqeFDusyhKqYPT+7rGLw34N3qonDcdRP8+n7M7Gl/yKp/q7oCxnnJ6pWCectOmLFJpsMU/++KrQ==, - } - engines: { node: ">=8.3.0" } + resolution: {integrity: sha512-2Sp1hWuO8m5fqeFDusyhKqYPT+7rGLw34N3qonDcdRP8+n7M7Gl/yKp/q7oCxnnJ6pWCectOmLFJpsMU/++KrQ==} + engines: {node: '>=8.3.0'} fuse.js@6.6.2: - resolution: - { - integrity: sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==} + engines: {node: '>=10'} fwd-stream@1.0.4: - resolution: - { - integrity: sha512-q2qaK2B38W07wfPSQDKMiKOD5Nzv2XyuvQlrmh1q0pxyHNanKHq8lwQ6n9zHucAwA5EbzRJKEgds2orn88rYTg==, - } + resolution: {integrity: sha512-q2qaK2B38W07wfPSQDKMiKOD5Nzv2XyuvQlrmh1q0pxyHNanKHq8lwQ6n9zHucAwA5EbzRJKEgds2orn88rYTg==} fx@34.0.0: - resolution: - { - integrity: sha512-/fZih3/WLsrtlaj2mahjWxAmyuikmcl3D5kKPqLtFmEilLsy9wp0+/vEmfvYXXhwJc+ajtCFDCf+yttXmPMHSQ==, - } + resolution: {integrity: sha512-/fZih3/WLsrtlaj2mahjWxAmyuikmcl3D5kKPqLtFmEilLsy9wp0+/vEmfvYXXhwJc+ajtCFDCf+yttXmPMHSQ==} hasBin: true 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.4: - resolution: - { - integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} + 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-npm-tarball-url@2.1.0: - resolution: - { - integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==, - } - engines: { node: ">=12.17" } + resolution: {integrity: sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==} + engines: {node: '>=12.17'} get-own-enumerable-property-symbols@3.0.2: - resolution: - { - integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==, - } + resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} get-package-type@0.1.0: - resolution: - { - integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} + engines: {node: '>=8.0.0'} get-port@3.2.0: - resolution: - { - integrity: sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-x5UJKlgeUiNT8nyo/AcnwLnZuZNcSjSw0kogRB+Whd1fjjFq4B1hySFxSFWWSn4mIBzg3sRNUDFYc4g5gjPoLg==} + engines: {node: '>=4'} get-port@5.1.1: - resolution: - { - integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==} + engines: {node: '>=8'} get-stream@3.0.0: - resolution: - { - integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==} + engines: {node: '>=4'} get-stream@4.1.0: - resolution: - { - integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} + engines: {node: '>=6'} get-stream@5.2.0: - resolution: - { - integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} 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.0.2: - resolution: - { - integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} + engines: {node: '>= 0.4'} get-tsconfig@4.7.5: - resolution: - { - integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==, - } + resolution: {integrity: sha512-ZCuZCnlqNzjb4QprAzXKdpp/gh6KTxSJuw3IBsPnV/7fV4NxC9ckB+vPTt8w7fJA0TaSD7c55BR47JD6MEDyDw==} get-value@2.0.6: - resolution: - { - integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} + engines: {node: '>=0.10.0'} getenv@1.0.0: - resolution: - { - integrity: sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-7yetJWqbS9sbn0vIfliPsFgoXMKn/YMF+Wuiog97x+urnSRRRZ7xB+uVkwGKzRgq9CDFfMQnE9ruL5DHv9c6Xg==} + engines: {node: '>=6'} getpass@0.1.7: - resolution: - { - integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==, - } + resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} giget@1.2.3: - resolution: - { - integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==, - } + resolution: {integrity: sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==} hasBin: true git-raw-commits@2.0.11: - resolution: - { - integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==} + engines: {node: '>=10'} hasBin: true git-up@7.0.0: - resolution: - { - integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==, - } + resolution: {integrity: sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==} git-url-parse@13.1.1: - resolution: - { - integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==, - } + resolution: {integrity: sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==} github-from-package@0.0.0: - resolution: - { - integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==, - } + resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} github-slugger@1.4.0: - resolution: - { - integrity: sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==, - } + resolution: {integrity: sha512-w0dzqw/nt51xMVmlaV1+JRzN+oCa1KfcgGEWhxUG16wbdA+Xnt/yoFO8Z8x/V82ZcZ0wy6ln9QDup5avbhiDhQ==} github-slugger@1.5.0: - resolution: - { - integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==, - } + resolution: {integrity: sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==} 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-to-regexp@0.4.1: - resolution: - { - integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==, - } + resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} glob@10.3.12: - resolution: - { - integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==, - } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==} + engines: {node: '>=16 || 14 >=14.17'} hasBin: true glob@6.0.4: - resolution: - { - integrity: sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==, - } + resolution: {integrity: sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==} deprecated: Glob versions prior to v9 are no longer supported glob@7.0.6: - resolution: - { - integrity: sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==, - } + resolution: {integrity: sha512-f8c0rE8JiCxpa52kWPAOa3ZaYEnzofDzCQLCn3Vdk0Z5OVLq3BsRFJI4S4ykpeVW6QMGBUkMeUpoEgWnMTnw5Q==} deprecated: Glob versions prior to v9 are no longer supported glob@7.1.6: - resolution: - { - integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==, - } + resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} deprecated: Glob versions prior to v9 are no longer supported glob@7.1.7: - resolution: - { - integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==, - } + resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} deprecated: Glob versions prior to v9 are no longer supported 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 glob@8.1.0: - resolution: - { - integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} + engines: {node: '>=12'} deprecated: Glob versions prior to v9 are no longer supported glob@9.3.5: - resolution: - { - integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==, - } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==} + engines: {node: '>=16 || 14 >=14.17'} global-agent@3.0.0: - resolution: - { - integrity: sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==, - } - engines: { node: ">=10.0" } + resolution: {integrity: sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==} + engines: {node: '>=10.0'} global-dirs@0.1.1: - resolution: - { - integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==} + engines: {node: '>=4'} global-modules@2.0.0: - resolution: - { - integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==} + engines: {node: '>=6'} global-prefix@3.0.0: - resolution: - { - integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} + engines: {node: '>=6'} global@4.4.0: - resolution: - { - integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==, - } + resolution: {integrity: sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==} globals-docs@2.4.1: - resolution: - { - integrity: sha512-qpPnUKkWnz8NESjrCvnlGklsgiQzlq+rcCxoG5uNQ+dNA7cFMCmn231slLAwS2N/PlkzZ3COL8CcS10jXmLHqg==, - } + resolution: {integrity: sha512-qpPnUKkWnz8NESjrCvnlGklsgiQzlq+rcCxoG5uNQ+dNA7cFMCmn231slLAwS2N/PlkzZ3COL8CcS10jXmLHqg==} 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@13.24.0: - resolution: - { - integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} + engines: {node: '>=8'} 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'} globalyzer@0.1.0: - resolution: - { - integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==, - } + resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} globby@11.1.0: - resolution: - { - integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} globby@12.2.0: - resolution: - { - integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 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} globby@6.1.0: - resolution: - { - integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==} + engines: {node: '>=0.10.0'} globjoin@0.1.4: - resolution: - { - integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==, - } + resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==} globrex@0.1.2: - resolution: - { - integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==, - } + resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} gopd@1.0.1: - resolution: - { - integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, - } + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} got@11.8.6: - resolution: - { - integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==, - } - engines: { node: ">=10.19.0" } + resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} + engines: {node: '>=10.19.0'} got@9.6.0: - resolution: - { - integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==, - } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} + engines: {node: '>=8.6'} 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-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@15.8.0: - resolution: - { - integrity: sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==, - } - engines: { node: ">= 10.x" } + resolution: {integrity: sha512-5gghUc24tP9HRznNpV2+FIoq3xKkj5dTQqf4v0CpdPbFVwFkWoxOM+o+2OC9ZSvjEMTjfmG9QT+gcvggTwW1zw==} + engines: {node: '>= 10.x'} graphql@16.8.1: - resolution: - { - integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==, - } - engines: { node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0 } + resolution: {integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==} + engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} gray-matter@4.0.3: - resolution: - { - integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==, - } - engines: { node: ">=6.0" } + resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} + engines: {node: '>=6.0'} gunzip-maybe@1.4.2: - resolution: - { - integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==, - } + resolution: {integrity: sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==} hasBin: true gzip-size@6.0.0: - resolution: - { - integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} handle-thing@2.0.1: - resolution: - { - integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==, - } + resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} handlebars@4.7.8: - resolution: - { - integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==, - } - engines: { node: ">=0.4.7" } + resolution: {integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==} + engines: {node: '>=0.4.7'} hasBin: true har-schema@2.0.0: - resolution: - { - integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==} + engines: {node: '>=4'} har-validator@5.1.5: - resolution: - { - integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==} + engines: {node: '>=6'} deprecated: this library is no longer supported hard-rejection@2.1.0: - resolution: - { - integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==} + engines: {node: '>=6'} harmony-reflect@1.6.2: - resolution: - { - integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==, - } + resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==} has-ansi@2.0.0: - resolution: - { - integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} + engines: {node: '>=0.10.0'} has-bigints@1.0.2: - resolution: - { - integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, - } + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} has-flag@2.0.0: - resolution: - { - integrity: sha512-P+1n3MnwjR/Epg9BBo1KT8qbye2g2Ou4sFumihwt6I4tsUX7jnLcX4BTOSKg/B1ZrIYMN9FcEnG4x5a7NB8Eng==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-P+1n3MnwjR/Epg9BBo1KT8qbye2g2Ou4sFumihwt6I4tsUX7jnLcX4BTOSKg/B1ZrIYMN9FcEnG4x5a7NB8Eng==} + engines: {node: '>=0.10.0'} has-flag@3.0.0: - resolution: - { - integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=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.0.3: - resolution: - { - integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} + engines: {node: '>= 0.4'} has-symbols@1.0.3: - resolution: - { - integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + 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'} hash-base@3.0.4: - resolution: - { - integrity: sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow==} + engines: {node: '>=4'} hash-base@3.1.0: - resolution: - { - integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==} + engines: {node: '>=4'} hash-obj@4.0.0: - resolution: - { - integrity: sha512-FwO1BUVWkyHasWDW4S8o0ssQXjvyghLV2rfVhnN36b2bbcj45eGiuzdn9XOvOpjV3TKQD7Gm2BWNXdE9V4KKYg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-FwO1BUVWkyHasWDW4S8o0ssQXjvyghLV2rfVhnN36b2bbcj45eGiuzdn9XOvOpjV3TKQD7Gm2BWNXdE9V4KKYg==} + engines: {node: '>=12'} hash-sum@1.0.2: - resolution: - { - integrity: sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==, - } + resolution: {integrity: sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==} hash-sum@2.0.0: - resolution: - { - integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==, - } + resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==} hash.js@1.1.3: - resolution: - { - integrity: sha512-/UETyP0W22QILqS+6HowevwhEFJ3MBJnwTf75Qob9Wz9t0DPuisL8kW8YZMK62dHAKE1c1p+gY1TtOLY+USEHA==, - } + resolution: {integrity: sha512-/UETyP0W22QILqS+6HowevwhEFJ3MBJnwTf75Qob9Wz9t0DPuisL8kW8YZMK62dHAKE1c1p+gY1TtOLY+USEHA==} hash.js@1.1.7: - resolution: - { - integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==, - } + resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} hasha@5.2.2: - resolution: - { - integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==} + engines: {node: '>=8'} hasown@2.0.2: - resolution: - { - integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} hast-util-from-dom@5.0.0: - resolution: - { - integrity: sha512-d6235voAp/XR3Hh5uy7aGLbM3S4KamdW0WEgOaU1YoewnuYw4HXb5eRtv9g65m/RFGEfUY1Mw4UqCc5Y8L4Stg==, - } + resolution: {integrity: sha512-d6235voAp/XR3Hh5uy7aGLbM3S4KamdW0WEgOaU1YoewnuYw4HXb5eRtv9g65m/RFGEfUY1Mw4UqCc5Y8L4Stg==} hast-util-from-html-isomorphic@2.0.0: - resolution: - { - integrity: sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw==, - } + resolution: {integrity: sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw==} hast-util-from-html@2.0.1: - resolution: - { - integrity: sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g==, - } + resolution: {integrity: sha512-RXQBLMl9kjKVNkJTIO6bZyb2n+cUH8LFaSSzo82jiLT6Tfc+Pt7VQCS+/h3YwG4jaNE2TA2sdJisGWR+aJrp0g==} hast-util-from-parse5@7.1.2: - resolution: - { - integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==, - } + resolution: {integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==} hast-util-from-parse5@8.0.1: - resolution: - { - integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==, - } + resolution: {integrity: sha512-Er/Iixbc7IEa7r/XLtuG52zoqn/b3Xng/w6aZQ0xGVxzhw5xUFxcRqdPzP6yFi/4HBYRaifaI5fQ1RH8n0ZeOQ==} 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@3.1.1: - resolution: - { - integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==, - } + resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==} hast-util-parse-selector@4.0.0: - resolution: - { - integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==, - } + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} hast-util-raw@7.2.3: - resolution: - { - integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==, - } + resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==} hast-util-raw@9.0.3: - resolution: - { - integrity: sha512-ICWvVOF2fq4+7CMmtCPD5CM4QKjPbHpPotE6+8tDooV0ZuyJVUzHsrNX+O5NaRbieTf0F7FfeBOMAwi6Td0+yQ==, - } + resolution: {integrity: sha512-ICWvVOF2fq4+7CMmtCPD5CM4QKjPbHpPotE6+8tDooV0ZuyJVUzHsrNX+O5NaRbieTf0F7FfeBOMAwi6Td0+yQ==} hast-util-sanitize@4.1.0: - resolution: - { - integrity: sha512-Hd9tU0ltknMGRDv+d6Ro/4XKzBqQnP/EZrpiTbpFYfXv/uOhWeKc+2uajcbEvAEH98VZd7eII2PiXm13RihnLw==, - } + resolution: {integrity: sha512-Hd9tU0ltknMGRDv+d6Ro/4XKzBqQnP/EZrpiTbpFYfXv/uOhWeKc+2uajcbEvAEH98VZd7eII2PiXm13RihnLw==} hast-util-to-estree@2.3.3: - resolution: - { - integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==, - } + resolution: {integrity: sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==} hast-util-to-html@8.0.4: - resolution: - { - integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==, - } + resolution: {integrity: sha512-4tpQTUOr9BMjtYyNlt0P50mH7xj0Ks2xpo8M943Vykljf99HW6EzulIoJP1N3eKOSScEHzyzi9dm7/cn0RfGwA==} hast-util-to-parse5@7.1.0: - resolution: - { - integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==, - } + resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==} hast-util-to-parse5@8.0.0: - resolution: - { - integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==, - } + resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} hast-util-to-text@4.0.2: - resolution: - { - integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==, - } + resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} hast-util-whitespace@2.0.1: - resolution: - { - integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==, - } + resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==} hastscript@7.2.0: - resolution: - { - integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==, - } + resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==} hastscript@8.0.0: - resolution: - { - integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==, - } + resolution: {integrity: sha512-dMOtzCEd3ABUeSIISmrETiKuyydk1w0pa+gE/uormcTpSYuaNJPbX1NU3JLyscSLjwAQM8bWMhhIlnCqnRvDTw==} he@1.2.0: - resolution: - { - integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==, - } + resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true headers-polyfill@4.0.3: - resolution: - { - integrity: sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==, - } + resolution: {integrity: sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==} heap@0.2.7: - resolution: - { - integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==, - } + resolution: {integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==} hermes-estree@0.14.0: - resolution: - { - integrity: sha512-L6M67+0/eSEbt6Ha2XOBFXL++7MR34EOJMgm+j7YCaI4L/jZqrVAg6zYQKzbs1ZCFDLvEQpOgLlapTX4gpFriA==, - } + resolution: {integrity: sha512-L6M67+0/eSEbt6Ha2XOBFXL++7MR34EOJMgm+j7YCaI4L/jZqrVAg6zYQKzbs1ZCFDLvEQpOgLlapTX4gpFriA==} hermes-estree@0.19.1: - resolution: - { - integrity: sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g==, - } + resolution: {integrity: sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g==} hermes-estree@0.20.1: - resolution: - { - integrity: sha512-SQpZK4BzR48kuOg0v4pb3EAGNclzIlqMj3Opu/mu7bbAoFw6oig6cEt/RAi0zTFW/iW6Iz9X9ggGuZTAZ/yZHg==, - } + resolution: {integrity: sha512-SQpZK4BzR48kuOg0v4pb3EAGNclzIlqMj3Opu/mu7bbAoFw6oig6cEt/RAi0zTFW/iW6Iz9X9ggGuZTAZ/yZHg==} hermes-estree@0.23.1: - resolution: - { - integrity: sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==, - } + resolution: {integrity: sha512-eT5MU3f5aVhTqsfIReZ6n41X5sYn4IdQL0nvz6yO+MMlPxw49aSARHLg/MSehQftyjnrE8X6bYregzSumqc6cg==} hermes-parser@0.14.0: - resolution: - { - integrity: sha512-pt+8uRiJhVlErY3fiXB3gKhZ72RxM6E1xRMpvfZ5n6Z5TQKQQXKorgRCRzoe02mmvLKBJFP5nPDGv75MWAgCTw==, - } + resolution: {integrity: sha512-pt+8uRiJhVlErY3fiXB3gKhZ72RxM6E1xRMpvfZ5n6Z5TQKQQXKorgRCRzoe02mmvLKBJFP5nPDGv75MWAgCTw==} hermes-parser@0.19.1: - resolution: - { - integrity: sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A==, - } + resolution: {integrity: sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A==} hermes-parser@0.20.1: - resolution: - { - integrity: sha512-BL5P83cwCogI8D7rrDCgsFY0tdYUtmFP9XaXtl2IQjC+2Xo+4okjfXintlTxcIwl4qeGddEl28Z11kbVIw0aNA==, - } + resolution: {integrity: sha512-BL5P83cwCogI8D7rrDCgsFY0tdYUtmFP9XaXtl2IQjC+2Xo+4okjfXintlTxcIwl4qeGddEl28Z11kbVIw0aNA==} hermes-parser@0.23.1: - resolution: - { - integrity: sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==, - } + resolution: {integrity: sha512-oxl5h2DkFW83hT4DAUJorpah8ou4yvmweUzLJmmr6YV2cezduCdlil1AvU/a/xSsAFo4WUcNA4GoV5Bvq6JffA==} hermes-profile-transformer@0.0.6: - resolution: - { - integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==} + engines: {node: '>=8'} hexoid@1.0.0: - resolution: - { - integrity: sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==} + engines: {node: '>=8'} hi-base32@0.5.1: - resolution: - { - integrity: sha512-EmBBpvdYh/4XxsnUybsPag6VikPYnN30td+vQk+GI3qpahVEG9+gTkG0aXVxTjBqQ5T6ijbWIu77O+C5WFWsnA==, - } + resolution: {integrity: sha512-EmBBpvdYh/4XxsnUybsPag6VikPYnN30td+vQk+GI3qpahVEG9+gTkG0aXVxTjBqQ5T6ijbWIu77O+C5WFWsnA==} highlight.js@10.7.3: - resolution: - { - integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==, - } + resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} highlight.js@11.9.0: - resolution: - { - integrity: sha512-fJ7cW7fQGCYAkgv4CPfwFHrfd/cLS4Hau96JuJ+ZTOWhjnhoeN1ub1tFmALm/+lW5z4WCAuAV9bm05AP0mS6Gw==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-fJ7cW7fQGCYAkgv4CPfwFHrfd/cLS4Hau96JuJ+ZTOWhjnhoeN1ub1tFmALm/+lW5z4WCAuAV9bm05AP0mS6Gw==} + engines: {node: '>=12.0.0'} history@4.10.1: - resolution: - { - integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==, - } + resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==} hmac-drbg@1.0.1: - resolution: - { - integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==, - } + resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} hoist-non-react-statics@3.3.2: - resolution: - { - integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==, - } + resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} hoopy@0.1.4: - resolution: - { - integrity: sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==, - } - engines: { node: ">= 6.0.0" } + resolution: {integrity: sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==} + engines: {node: '>= 6.0.0'} hosted-git-info@2.8.9: - resolution: - { - integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==, - } + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} hosted-git-info@3.0.8: - resolution: - { - integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==} + engines: {node: '>=10'} hosted-git-info@4.1.0: - resolution: - { - integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} hpack.js@2.1.6: - resolution: - { - integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==, - } + resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} html-encoding-sniffer@2.0.1: - resolution: - { - integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} + engines: {node: '>=10'} html-encoding-sniffer@3.0.0: - resolution: - { - integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} html-entities@2.5.2: - resolution: - { - integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==, - } + resolution: {integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==} html-escaper@2.0.2: - resolution: - { - integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==, - } + resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} html-minifier-terser@6.1.0: - resolution: - { - integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==} + engines: {node: '>=12'} hasBin: true html-parse-stringify@3.0.1: - resolution: - { - integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==, - } + resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==} html-tags@3.3.1: - resolution: - { - integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==} + engines: {node: '>=8'} html-to-react@1.7.0: - resolution: - { - integrity: sha512-b5HTNaTGyOj5GGIMiWVr1k57egAZ/vGy0GGefnCQ1VW5hu9+eku8AXHtf2/DeD95cj/FKBKYa1J7SWBOX41yUQ==, - } + resolution: {integrity: sha512-b5HTNaTGyOj5GGIMiWVr1k57egAZ/vGy0GGefnCQ1VW5hu9+eku8AXHtf2/DeD95cj/FKBKYa1J7SWBOX41yUQ==} peerDependencies: react: ^0.13.0 || ^0.14.0 || >=15 html-void-elements@2.0.1: - resolution: - { - integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==, - } + resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==} html-void-elements@3.0.0: - resolution: - { - integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==, - } + resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} html-webpack-plugin@5.6.0: - resolution: - { - integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-iwaY4wzbe48AfKLZ/Cc8k0L+FKG6oSNRaZ8x5A/T/IVDGyXcbHncM9TdDa93wn0FsSm82FhTKW7f3vS61thXAw==} + engines: {node: '>=10.13.0'} peerDependencies: - "@rspack/core": 0.x || 1.x + '@rspack/core': 0.x || 1.x webpack: ^5.20.0 peerDependenciesMeta: - "@rspack/core": + '@rspack/core': optional: true webpack: optional: true htmlparser2@6.1.0: - resolution: - { - integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==, - } + resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} htmlparser2@9.1.0: - resolution: - { - integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==, - } + resolution: {integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==} http-assert@1.5.0: - resolution: - { - integrity: sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==} + engines: {node: '>= 0.8'} http-cache-semantics@4.1.1: - resolution: - { - integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==, - } + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} http-deceiver@1.2.7: - resolution: - { - integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==, - } + resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} http-errors@1.6.3: - resolution: - { - integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} + engines: {node: '>= 0.6'} http-errors@1.7.2: - resolution: - { - integrity: sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==} + engines: {node: '>= 0.6'} http-errors@1.8.1: - resolution: - { - integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==} + engines: {node: '>= 0.6'} 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-https@1.0.0: - resolution: - { - integrity: sha512-o0PWwVCSp3O0wS6FvNr6xfBCHgt0m1tvPLFOCc2iFDKTRAXhB7m8klDf7ErowFH8POa6dVdGatKU5I1YYwzUyg==, - } + resolution: {integrity: sha512-o0PWwVCSp3O0wS6FvNr6xfBCHgt0m1tvPLFOCc2iFDKTRAXhB7m8klDf7ErowFH8POa6dVdGatKU5I1YYwzUyg==} http-parser-js@0.5.8: - resolution: - { - integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==, - } + resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==} http-proxy-agent@4.0.1: - resolution: - { - integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==} + engines: {node: '>= 6'} http-proxy-agent@5.0.0: - resolution: - { - integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} http-proxy-middleware@2.0.6: - resolution: - { - integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} + engines: {node: '>=12.0.0'} peerDependencies: - "@types/express": ^4.17.13 + '@types/express': ^4.17.13 peerDependenciesMeta: - "@types/express": + '@types/express': optional: true http-proxy@1.18.1: - resolution: - { - integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==} + engines: {node: '>=8.0.0'} http-server@14.1.1: - resolution: - { - integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==} + engines: {node: '>=12'} hasBin: true http-signature@1.2.0: - resolution: - { - integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==, - } - engines: { node: ">=0.8", npm: ">=1.3.7" } + resolution: {integrity: sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==} + engines: {node: '>=0.8', npm: '>=1.3.7'} http2-wrapper@1.0.3: - resolution: - { - integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==, - } - engines: { node: ">=10.19.0" } + resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} + engines: {node: '>=10.19.0'} https-browserify@1.0.0: - resolution: - { - integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==, - } + resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==} https-proxy-agent@4.0.0: - resolution: - { - integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==, - } - engines: { node: ">= 6.0.0" } + resolution: {integrity: sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==} + engines: {node: '>= 6.0.0'} https-proxy-agent@5.0.1: - resolution: - { - integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} + engines: {node: '>= 6'} human-id@1.0.2: - resolution: - { - integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==, - } + resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==} 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@4.3.1: - resolution: - { - integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==, - } - engines: { node: ">=14.18.0" } + resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} + engines: {node: '>=14.18.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'} humanize-duration@3.31.0: - resolution: - { - integrity: sha512-fRrehgBG26NNZysRlTq1S+HPtDpp3u+Jzdc/d5A4cEzOD86YLAkDaJyJg8krSdCi7CJ+s7ht3fwRj8Dl+Btd0w==, - } + resolution: {integrity: sha512-fRrehgBG26NNZysRlTq1S+HPtDpp3u+Jzdc/d5A4cEzOD86YLAkDaJyJg8krSdCi7CJ+s7ht3fwRj8Dl+Btd0w==} humanize-ms@1.2.1: - resolution: - { - integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==, - } + resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} hyphenate-style-name@1.0.4: - resolution: - { - integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==, - } + resolution: {integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==} i18next@20.6.1: - resolution: - { - integrity: sha512-yCMYTMEJ9ihCwEQQ3phLo7I/Pwycf8uAx+sRHwwk5U9Aui/IZYgQRyMqXafQOw5QQ7DM1Z+WyEXWIqSuJHhG2A==, - } + resolution: {integrity: sha512-yCMYTMEJ9ihCwEQQ3phLo7I/Pwycf8uAx+sRHwwk5U9Aui/IZYgQRyMqXafQOw5QQ7DM1Z+WyEXWIqSuJHhG2A==} i18next@23.10.1: - resolution: - { - integrity: sha512-NDiIzFbcs3O9PXpfhkjyf7WdqFn5Vq6mhzhtkXzj51aOcNuPNcTwuYNuXCpHsanZGHlHKL35G7huoFeVic1hng==, - } + resolution: {integrity: sha512-NDiIzFbcs3O9PXpfhkjyf7WdqFn5Vq6mhzhtkXzj51aOcNuPNcTwuYNuXCpHsanZGHlHKL35G7huoFeVic1hng==} icon-sdk-js@1.5.2: - resolution: - { - integrity: sha512-fUYsFGFWuftxy3Ogsjy4kGUsxgH4DSdvN446BvwzaogXwYkOpzpLgZFWnQyrfuZxBSRVRzGtErlfDoMj4TOGGQ==, - } - engines: { node: ">=18.0.0", yarn: ^1.22.10 } + resolution: {integrity: sha512-fUYsFGFWuftxy3Ogsjy4kGUsxgH4DSdvN446BvwzaogXwYkOpzpLgZFWnQyrfuZxBSRVRzGtErlfDoMj4TOGGQ==} + engines: {node: '>=18.0.0', yarn: ^1.22.10} iconv-corefoundation@1.1.7: - resolution: - { - integrity: sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ==, - } - engines: { node: ^8.11.2 || >=10 } + resolution: {integrity: sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ==} + engines: {node: ^8.11.2 || >=10} os: [darwin] 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'} icss-utils@5.1.0: - resolution: - { - integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==, - } - engines: { node: ^10 || ^12 || >= 14 } + resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} + engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 idb-keyval@6.2.1: - resolution: - { - integrity: sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==, - } + resolution: {integrity: sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==} idb@7.0.1: - resolution: - { - integrity: sha512-UUxlE7vGWK5RfB/fDwEGgRf84DY/ieqNha6msMV99UsEMQhJ1RwbCd8AYBj3QMgnE3VZnfQvm4oKVCJTYlqIgg==, - } + resolution: {integrity: sha512-UUxlE7vGWK5RfB/fDwEGgRf84DY/ieqNha6msMV99UsEMQhJ1RwbCd8AYBj3QMgnE3VZnfQvm4oKVCJTYlqIgg==} idb@7.1.1: - resolution: - { - integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==, - } + resolution: {integrity: sha512-gchesWBzyvGHRO9W8tzUWFDycow5gwjvFKfyV9FF32Y7F50yZMp7mP+T2mJIWFx49zicqyC4uefHM17o6xKIVQ==} identity-obj-proxy@3.0.0: - resolution: - { - integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==} + engines: {node: '>=4'} idna-uts46-hx@2.3.1: - resolution: - { - integrity: sha512-PWoF9Keq6laYdIRwwCdhTPl60xRqAloYNMQLiyUnG42VjT53oW07BXIRM+NK7eQjzXjAk2gUvX9caRxlnF9TAA==, - } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-PWoF9Keq6laYdIRwwCdhTPl60xRqAloYNMQLiyUnG42VjT53oW07BXIRM+NK7eQjzXjAk2gUvX9caRxlnF9TAA==} + engines: {node: '>=4.0.0'} ieee754@1.2.1: - resolution: - { - integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, - } + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} ignore-by-default@1.0.1: - resolution: - { - integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==, - } + resolution: {integrity: sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==} ignore@5.3.1: - resolution: - { - integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==} + engines: {node: '>= 4'} image-size@1.1.1: - resolution: - { - integrity: sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==, - } - engines: { node: ">=16.x" } + resolution: {integrity: sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==} + engines: {node: '>=16.x'} hasBin: true immediate@3.0.6: - resolution: - { - integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==, - } + resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} immer@10.0.3: - resolution: - { - integrity: sha512-pwupu3eWfouuaowscykeckFmVTpqbzW+rXFCX8rQLkZzM9ftBmU/++Ra+o+L27mz03zJTlyV4UUr+fdKNffo4A==, - } + resolution: {integrity: sha512-pwupu3eWfouuaowscykeckFmVTpqbzW+rXFCX8rQLkZzM9ftBmU/++Ra+o+L27mz03zJTlyV4UUr+fdKNffo4A==} immer@9.0.21: - resolution: - { - integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==, - } + resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==} import-fresh@2.0.0: - resolution: - { - integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==} + engines: {node: '>=4'} 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'} import-in-the-middle@1.10.0: - resolution: - { - integrity: sha512-Z1jumVdF2GwnnYfM0a/y2ts7mZbwFMgt5rRuVmLgobgahC6iKgN5MBuXjzfTIOUpq5LSU10vJIPpVKe0X89fIw==, - } + resolution: {integrity: sha512-Z1jumVdF2GwnnYfM0a/y2ts7mZbwFMgt5rRuVmLgobgahC6iKgN5MBuXjzfTIOUpq5LSU10vJIPpVKe0X89fIw==} import-in-the-middle@1.4.2: - resolution: - { - integrity: sha512-9WOz1Yh/cvO/p69sxRmhyQwrIGGSp7EIdcb+fFNVi7CzQGQB8U1/1XrKVSbEd/GNOAeM0peJtmi7+qphe7NvAw==, - } + resolution: {integrity: sha512-9WOz1Yh/cvO/p69sxRmhyQwrIGGSp7EIdcb+fFNVi7CzQGQB8U1/1XrKVSbEd/GNOAeM0peJtmi7+qphe7NvAw==} import-lazy@4.0.0: - resolution: - { - integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==} + engines: {node: '>=8'} import-local@3.1.0: - resolution: - { - integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} + engines: {node: '>=8'} hasBin: true imurmurhash@0.1.4: - resolution: - { - integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, - } - engines: { node: ">=0.8.19" } + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} indent-string@3.2.0: - resolution: - { - integrity: sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==} + engines: {node: '>=4'} 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'} indexof@0.0.1: - resolution: - { - integrity: sha512-i0G7hLJ1z0DE8dsqJa2rycj9dBmNKgXBvotXtZYXakU9oivfB9Uj2ZBC27qqef2U58/ZLwalxa1X/RDCdkHtVg==, - } + resolution: {integrity: sha512-i0G7hLJ1z0DE8dsqJa2rycj9dBmNKgXBvotXtZYXakU9oivfB9Uj2ZBC27qqef2U58/ZLwalxa1X/RDCdkHtVg==} infer-owner@1.0.4: - resolution: - { - integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==, - } + resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} inflation@2.1.0: - resolution: - { - integrity: sha512-t54PPJHG1Pp7VQvxyVCJ9mBbjG3Hqryges9bXoOO6GExCPa+//i/d5GSuFtpx3ALLd7lgIAur6zrIlBQyJuMlQ==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-t54PPJHG1Pp7VQvxyVCJ9mBbjG3Hqryges9bXoOO6GExCPa+//i/d5GSuFtpx3ALLd7lgIAur6zrIlBQyJuMlQ==} + engines: {node: '>= 0.8.0'} 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.3: - resolution: - { - integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==, - } + resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} inherits@2.0.4: - resolution: - { - integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, - } + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} ini@1.3.8: - resolution: - { - integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==, - } + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} ini@3.0.1: - resolution: - { - integrity: sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==, - } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} injectpromise@1.0.0: - resolution: - { - integrity: sha512-qNq5wy4qX4uWHcVFOEU+RqZkoVG65FhvGkyDWbuBxILMjK6A1LFf5A1mgXZkD4nRx5FCorD81X/XvPKp/zVfPA==, - } + resolution: {integrity: sha512-qNq5wy4qX4uWHcVFOEU+RqZkoVG65FhvGkyDWbuBxILMjK6A1LFf5A1mgXZkD4nRx5FCorD81X/XvPKp/zVfPA==} inline-style-parser@0.1.1: - resolution: - { - integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==, - } + resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} inline-style-prefixer@6.0.4: - resolution: - { - integrity: sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg==, - } + resolution: {integrity: sha512-FwXmZC2zbeeS7NzGjJ6pAiqRhXR0ugUShSNb6GApMl6da0/XGc4MOJsoWAywia52EEWbXNSy0pzkwz/+Y+swSg==} inquirer@6.5.2: - resolution: - { - integrity: sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==} + engines: {node: '>=6.0.0'} int64-buffer@1.0.1: - resolution: - { - integrity: sha512-+3azY4pXrjAupJHU1V9uGERWlhoqNswJNji6aD/02xac7oxol508AsMC5lxKhEqyZeDFy3enq5OGWXF4u75hiw==, - } - engines: { node: ">= 4.5.0" } + resolution: {integrity: sha512-+3azY4pXrjAupJHU1V9uGERWlhoqNswJNji6aD/02xac7oxol508AsMC5lxKhEqyZeDFy3enq5OGWXF4u75hiw==} + engines: {node: '>= 4.5.0'} internal-ip@4.3.0: - resolution: - { - integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==} + engines: {node: '>=6'} internal-slot@1.0.7: - resolution: - { - integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} + engines: {node: '>= 0.4'} internmap@2.0.3: - resolution: - { - integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} + engines: {node: '>=12'} interpret@2.2.0: - resolution: - { - integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==, - } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==} + engines: {node: '>= 0.10'} intersection-observer@0.12.2: - resolution: - { - integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==, - } + resolution: {integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==} invariant@2.2.4: - resolution: - { - integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==, - } + resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} io-ts@2.0.1: - resolution: - { - integrity: sha512-RezD+WcCfW4VkMkEcQWL/Nmy/nqsWTvTYg7oUmTGzglvSSV2P9h2z1PVeREPFf0GWNzruYleAt1XCMQZSg1xxQ==, - } + resolution: {integrity: sha512-RezD+WcCfW4VkMkEcQWL/Nmy/nqsWTvTYg7oUmTGzglvSSV2P9h2z1PVeREPFf0GWNzruYleAt1XCMQZSg1xxQ==} peerDependencies: fp-ts: ^2.0.0 ioredis@5.3.2: - resolution: - { - integrity: sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==, - } - engines: { node: ">=12.22.0" } + resolution: {integrity: sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==} + engines: {node: '>=12.22.0'} ip-regex@2.1.0: - resolution: - { - integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==} + engines: {node: '>=4'} ip@2.0.1: - resolution: - { - integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==, - } + resolution: {integrity: sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==} ipaddr.js@1.9.1: - resolution: - { - integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==, - } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} + engines: {node: '>= 0.10'} ipaddr.js@2.1.0: - resolution: - { - integrity: sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==} + engines: {node: '>= 10'} is-absolute-url@3.0.3: - resolution: - { - integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==} + engines: {node: '>=8'} 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@1.0.4: - resolution: - { - integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==, - } + resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} is-alphabetical@2.0.1: - resolution: - { - integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==, - } + resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} is-alphanumerical@1.0.4: - resolution: - { - integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==, - } + resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} is-alphanumerical@2.0.1: - resolution: - { - integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==, - } + resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} is-arguments@1.1.1: - resolution: - { - integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} + engines: {node: '>= 0.4'} is-array-buffer@3.0.4: - resolution: - { - integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} + engines: {node: '>= 0.4'} is-arrayish@0.2.1: - resolution: - { - integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, - } + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} is-arrayish@0.3.2: - resolution: - { - integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==, - } + resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} is-async-function@2.0.0: - resolution: - { - integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} + engines: {node: '>= 0.4'} is-bigint@1.0.4: - resolution: - { - integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, - } + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 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.1.2: - resolution: - { - integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} + engines: {node: '>= 0.4'} is-buffer@1.1.6: - resolution: - { - integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==, - } + resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} is-buffer@2.0.5: - resolution: - { - integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==} + engines: {node: '>=4'} is-builtin-module@3.2.1: - resolution: - { - integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} + engines: {node: '>=6'} 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-ci@3.0.1: - resolution: - { - integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==, - } + resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} hasBin: true is-core-module@2.13.1: - resolution: - { - integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==, - } + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} is-data-view@1.0.1: - resolution: - { - integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} + engines: {node: '>= 0.4'} is-date-object@1.0.5: - resolution: - { - integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} + engines: {node: '>= 0.4'} is-decimal@1.0.4: - resolution: - { - integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==, - } + resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} is-decimal@2.0.1: - resolution: - { - integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==, - } + resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} is-deflate@1.0.0: - resolution: - { - integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==, - } + resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==} is-directory@0.3.1: - resolution: - { - integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-yVChGzahRFvbkscn2MlwGismPO12i9+znNruC5gVEntG3qu0xQMzsGg/JFbrsqDOHtHFPci+V5aP5T9I+yeKqw==} + engines: {node: '>=0.10.0'} is-docker@2.2.1: - resolution: - { - integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} hasBin: true is-dom@1.1.0: - resolution: - { - integrity: sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==, - } + resolution: {integrity: sha512-u82f6mvhYxRPKpw8V1N0W8ce1xXwOrQtgGcxl6UCL5zBmZu3is/18K0rR7uFCnMDuAsS/3W54mGL4vsaFUQlEQ==} 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-extglob@1.0.0: - resolution: - { - integrity: sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-7Q+VbVafe6x2T+Tu6NcOf6sRklazEPmBoB3IWk3WdGZM2iGUwU/Oe3Wtq5lSEkDTTlpp8yx+5t4pzO/i9Ty1ww==} + 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-file-esm@1.0.0: - resolution: - { - integrity: sha512-rZlaNKb4Mr8WlRu2A9XdeoKgnO5aA53XdPHgCKVyCrQ/rWi89RET1+bq37Ru46obaQXeiX4vmFIm1vks41hoSA==, - } + resolution: {integrity: sha512-rZlaNKb4Mr8WlRu2A9XdeoKgnO5aA53XdPHgCKVyCrQ/rWi89RET1+bq37Ru46obaQXeiX4vmFIm1vks41hoSA==} is-finalizationregistry@1.0.2: - resolution: - { - integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==, - } + resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} is-fullwidth-code-point@1.0.0: - resolution: - { - integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==} + engines: {node: '>=0.10.0'} is-fullwidth-code-point@2.0.0: - resolution: - { - integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==} + engines: {node: '>=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-fullwidth-code-point@4.0.0: - resolution: - { - integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} + engines: {node: '>=12'} is-function@1.0.2: - resolution: - { - integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==, - } + resolution: {integrity: sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ==} is-generator-fn@2.1.0: - resolution: - { - integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==} + engines: {node: '>=6'} is-generator-function@1.0.10: - resolution: - { - integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + engines: {node: '>= 0.4'} is-glob@2.0.1: - resolution: - { - integrity: sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-a1dBeB19NXsf/E0+FHqkagizel/LQw2DjSQpvQrj3zT+jYPpaUCryPnrQajXKFLCMuf4I6FhRpaGtw4lPrG6Eg==} + engines: {node: '>=0.10.0'} 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-gzip@1.0.0: - resolution: - { - integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==} + engines: {node: '>=0.10.0'} is-hex-prefixed@1.0.0: - resolution: - { - integrity: sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==, - } - engines: { node: ">=6.5.0", npm: ">=3" } + resolution: {integrity: sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==} + engines: {node: '>=6.5.0', npm: '>=3'} is-hexadecimal@1.0.4: - resolution: - { - integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==, - } + resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} 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-invalid-path@0.1.0: - resolution: - { - integrity: sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-aZMG0T3F34mTg4eTdszcGXx54oiZ4NtHSft3hWNJMGJXUUqdIj3cOZuHcU0nCWWcY3jd7yRe/3AEm3vSNTpBGQ==} + engines: {node: '>=0.10.0'} 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-nan@1.3.2: - resolution: - { - integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} + engines: {node: '>= 0.4'} is-negative-zero@2.0.3: - resolution: - { - integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} + engines: {node: '>= 0.4'} is-network-error@1.1.0: - resolution: - { - integrity: sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==} + engines: {node: '>=16'} is-node-process@1.2.0: - resolution: - { - integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==, - } + resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==} is-number-object@1.0.7: - resolution: - { - integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} + 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-obj@2.0.0: - resolution: - { - integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} is-obj@3.0.0: - resolution: - { - integrity: sha512-IlsXEHOjtKhpN8r/tRFj2nDyTmHvcfNeu/nrRIcXE17ROeatXchkojffa1SpdqW4cr/Fj6QkEf/Gn4zf6KKvEQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-IlsXEHOjtKhpN8r/tRFj2nDyTmHvcfNeu/nrRIcXE17ROeatXchkojffa1SpdqW4cr/Fj6QkEf/Gn4zf6KKvEQ==} + engines: {node: '>=12'} is-object@0.1.2: - resolution: - { - integrity: sha512-GkfZZlIZtpkFrqyAXPQSRBMsaHAw+CgoKe2HXAkjd/sfoI9+hS8PT4wg2rJxdQyUKr7N2vHJbg7/jQtE5l5vBQ==, - } + resolution: {integrity: sha512-GkfZZlIZtpkFrqyAXPQSRBMsaHAw+CgoKe2HXAkjd/sfoI9+hS8PT4wg2rJxdQyUKr7N2vHJbg7/jQtE5l5vBQ==} is-object@1.0.2: - resolution: - { - integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==, - } + resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==} is-observable@1.1.0: - resolution: - { - integrity: sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==} + engines: {node: '>=4'} is-path-cwd@2.2.0: - resolution: - { - integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} + engines: {node: '>=6'} is-path-in-cwd@2.1.0: - resolution: - { - integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==} + engines: {node: '>=6'} is-path-inside@2.1.0: - resolution: - { - integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==} + engines: {node: '>=6'} is-path-inside@3.0.3: - resolution: - { - integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} is-plain-obj@1.1.0: - resolution: - { - integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} + engines: {node: '>=0.10.0'} is-plain-obj@2.1.0: - resolution: - { - integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==} + engines: {node: '>=8'} is-plain-obj@3.0.0: - resolution: - { - integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} + engines: {node: '>=10'} 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-plain-object@5.0.0: - resolution: - { - integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} is-potential-custom-element-name@1.0.1: - resolution: - { - integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==, - } + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} is-promise@2.2.2: - resolution: - { - integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==, - } + resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} is-reference@1.2.1: - resolution: - { - integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==, - } + resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} is-reference@3.0.2: - resolution: - { - integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==, - } + resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} is-regex@1.1.4: - resolution: - { - integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} + 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-root@2.1.0: - resolution: - { - integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==} + engines: {node: '>=6'} 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.3: - resolution: - { - integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} + engines: {node: '>= 0.4'} is-ssh@1.4.0: - resolution: - { - integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==, - } + resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==} is-stream@1.1.0: - resolution: - { - integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} + engines: {node: '>=0.10.0'} 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.0.7: - resolution: - { - integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} + engines: {node: '>= 0.4'} is-subdir@1.2.0: - resolution: - { - integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==} + engines: {node: '>=4'} is-symbol@1.0.4: - resolution: - { - integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} + engines: {node: '>= 0.4'} is-text-path@1.0.1: - resolution: - { - integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==} + engines: {node: '>=0.10.0'} is-typed-array@1.1.13: - resolution: - { - integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} + engines: {node: '>= 0.4'} is-typedarray@1.0.0: - resolution: - { - integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==, - } + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} 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-valid-path@0.1.1: - resolution: - { - integrity: sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-+kwPrVDu9Ms03L90Qaml+79+6DZHqHyRoANI6IsZJ/g8frhnfchDOBCa0RbQ6/kdHt5CS5OeIEyrYznNuVN+8A==} + engines: {node: '>=0.10.0'} 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.0.2: - resolution: - { - integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, - } + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} is-weakset@2.0.3: - resolution: - { - integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} + engines: {node: '>= 0.4'} is-whitespace-character@1.0.4: - resolution: - { - integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==, - } + resolution: {integrity: sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w==} is-window@1.0.2: - resolution: - { - integrity: sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg==, - } + resolution: {integrity: sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg==} 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-word-character@1.0.4: - resolution: - { - integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==, - } + resolution: {integrity: sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA==} is-wsl@1.1.0: - resolution: - { - integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} + engines: {node: '>=4'} is-wsl@2.2.0: - resolution: - { - integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} is@0.2.7: - resolution: - { - integrity: sha512-ajQCouIvkcSnl2iRdK70Jug9mohIHVX9uKpoWnl115ov0R5mzBvRrXxrnHbsA+8AdwCwc/sfw7HXmd4I5EJBdQ==, - } + resolution: {integrity: sha512-ajQCouIvkcSnl2iRdK70Jug9mohIHVX9uKpoWnl115ov0R5mzBvRrXxrnHbsA+8AdwCwc/sfw7HXmd4I5EJBdQ==} isarray@0.0.1: - resolution: - { - integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==, - } + resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} isarray@1.0.0: - resolution: - { - integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, - } + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} isarray@2.0.5: - resolution: - { - integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, - } + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} isbinaryfile@4.0.10: - resolution: - { - integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==, - } - engines: { node: ">= 8.0.0" } + resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==} + engines: {node: '>= 8.0.0'} isbinaryfile@5.0.0: - resolution: - { - integrity: sha512-UDdnyGvMajJUWCkib7Cei/dvyJrrvo4FIrsvSFWdPpXSUorzXrDJ0S+X5Q4ZlasfPjca4yqCNNsjbCeiy8FFeg==, - } - engines: { node: ">= 14.0.0" } + resolution: {integrity: sha512-UDdnyGvMajJUWCkib7Cei/dvyJrrvo4FIrsvSFWdPpXSUorzXrDJ0S+X5Q4ZlasfPjca4yqCNNsjbCeiy8FFeg==} + engines: {node: '>= 14.0.0'} isexe@2.0.0: - resolution: - { - integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, - } + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} iso-base@4.0.0: - resolution: - { - integrity: sha512-Vf+6r7XlP+LQD0HSR0ZBLSj/mwuP+59ElbgMKT+iFSnkBW2RzRohQScgKfPCYbaGZAjEdbi40eYq28E/RAnrVA==, - } + resolution: {integrity: sha512-Vf+6r7XlP+LQD0HSR0ZBLSj/mwuP+59ElbgMKT+iFSnkBW2RzRohQScgKfPCYbaGZAjEdbi40eYq28E/RAnrVA==} iso-filecoin@4.1.0: - resolution: - { - integrity: sha512-jUtgWHC2I0j+0WtjhoRc321Mdo54/ntKbLZ1Ad1Ptq55N6RoHL2rJHp0RvPmjtCHlKc++DfMJnO4nWLwFVFr2g==, - } + resolution: {integrity: sha512-jUtgWHC2I0j+0WtjhoRc321Mdo54/ntKbLZ1Ad1Ptq55N6RoHL2rJHp0RvPmjtCHlKc++DfMJnO4nWLwFVFr2g==} iso-kv@3.0.3: - resolution: - { - integrity: sha512-NVW7TJGiTbDlfBclLJeGqGLvZhgMu02tPId6ghLEygCVgitp3946TM6HJordcSbyJbD0wRzByilRYK/GY8dKlw==, - } + resolution: {integrity: sha512-NVW7TJGiTbDlfBclLJeGqGLvZhgMu02tPId6ghLEygCVgitp3946TM6HJordcSbyJbD0wRzByilRYK/GY8dKlw==} iso-url@0.4.7: - resolution: - { - integrity: sha512-27fFRDnPAMnHGLq36bWTpKET+eiXct3ENlCcdcMdk+mjXrb2kw3mhBUg1B7ewAC0kVzlOPhADzQgz1SE6Tglog==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-27fFRDnPAMnHGLq36bWTpKET+eiXct3ENlCcdcMdk+mjXrb2kw3mhBUg1B7ewAC0kVzlOPhADzQgz1SE6Tglog==} + engines: {node: '>=10'} iso-web@1.0.6: - resolution: - { - integrity: sha512-aPG6UoEoUSecDAArSilUcmAlt4sW0eROQhDgvSC0yTWzh/RrhEwM3VIgrv2cTV0oXZiMpzmpLb4bNWT3ea7CzQ==, - } + resolution: {integrity: sha512-aPG6UoEoUSecDAArSilUcmAlt4sW0eROQhDgvSC0yTWzh/RrhEwM3VIgrv2cTV0oXZiMpzmpLb4bNWT3ea7CzQ==} 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'} isobject@4.0.0: - resolution: - { - integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==} + engines: {node: '>=0.10.0'} isomorphic-fetch@3.0.0: - resolution: - { - integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==, - } + resolution: {integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==} isomorphic-ws@4.0.1: - resolution: - { - integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==, - } + resolution: {integrity: sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==} peerDependencies: - ws: "*" + ws: '*' isomorphic-ws@5.0.0: - resolution: - { - integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==, - } + resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==} peerDependencies: - ws: "*" + ws: '*' isstream@0.1.2: - resolution: - { - integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==, - } + resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} 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-hook@3.0.0: - resolution: - { - integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==} + engines: {node: '>=8'} istanbul-lib-instrument@4.0.3: - resolution: - { - integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==} + engines: {node: '>=8'} istanbul-lib-instrument@5.2.1: - resolution: - { - integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} + engines: {node: '>=8'} istanbul-lib-instrument@6.0.2: - resolution: - { - integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==} + engines: {node: '>=10'} istanbul-lib-processinfo@2.0.3: - resolution: - { - integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==} + 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@4.0.1: - resolution: - { - integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==} + 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'} iterate-iterator@1.0.2: - resolution: - { - integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==, - } + resolution: {integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==} iterate-value@1.0.2: - resolution: - { - integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==, - } + resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==} iterator.prototype@1.1.2: - resolution: - { - integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==, - } + resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} jackspeak@2.3.6: - resolution: - { - integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} + engines: {node: '>=14'} jake@10.8.7: - resolution: - { - integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==} + engines: {node: '>=10'} hasBin: true javascript-stringify@2.1.0: - resolution: - { - integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==, - } + resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==} jayson@4.1.0: - resolution: - { - integrity: sha512-R6JlbyLN53Mjku329XoRT2zJAE6ZgOQ8f91ucYdMCD4nkGCF9kZSrcGXpHIU4jeKj58zUZke2p+cdQchU7Ly7A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-R6JlbyLN53Mjku329XoRT2zJAE6ZgOQ8f91ucYdMCD4nkGCF9kZSrcGXpHIU4jeKj58zUZke2p+cdQchU7Ly7A==} + engines: {node: '>=8'} hasBin: true jest-allure2-reporter@2.0.0-beta.25: - resolution: - { - integrity: sha512-SKAWiukVjptF2AIVPPyfpJNH651TFs0xRX5V71S2Z7TGBJZDBdY0Wm875PLNLb7l9WsX6N2veMNYOThOaOkg3Q==, - } - engines: { node: ">=16.20.0" } - peerDependencies: - jest: ">=27.2.5" - jest-docblock: ">=27.2.5" + resolution: {integrity: sha512-SKAWiukVjptF2AIVPPyfpJNH651TFs0xRX5V71S2Z7TGBJZDBdY0Wm875PLNLb7l9WsX6N2veMNYOThOaOkg3Q==} + engines: {node: '>=16.20.0'} + peerDependencies: + jest: '>=27.2.5' + jest-docblock: '>=27.2.5' peerDependenciesMeta: jest: optional: true @@ -32220,59 +22101,35 @@ packages: optional: true jest-canvas-mock@2.5.2: - resolution: - { - integrity: sha512-vgnpPupjOL6+L5oJXzxTxFrlGEIbHdZqFU+LFNdtLxZ3lRDCl17FlTMM7IatoRQkrcyOTMlDinjUguqmQ6bR2A==, - } + resolution: {integrity: sha512-vgnpPupjOL6+L5oJXzxTxFrlGEIbHdZqFU+LFNdtLxZ3lRDCl17FlTMM7IatoRQkrcyOTMlDinjUguqmQ6bR2A==} jest-changed-files@27.5.1: - resolution: - { - integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-changed-files@28.1.3: - resolution: - { - integrity: sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-changed-files@29.7.0: - resolution: - { - integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-circus@27.5.1: - resolution: - { - integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-circus@28.1.3: - resolution: - { - integrity: sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-circus@29.7.0: - resolution: - { - integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-cli@27.5.1: - resolution: - { - integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -32281,11 +22138,8 @@ packages: optional: true jest-cli@28.1.3: - resolution: - { - integrity: sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -32294,11 +22148,8 @@ packages: optional: true jest-cli@29.7.0: - resolution: - { - integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -32307,133 +22158,91 @@ packages: optional: true jest-config@27.5.1: - resolution: - { - integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: - ts-node: ">=9.0.0" + ts-node: '>=9.0.0' peerDependenciesMeta: ts-node: optional: true jest-config@28.1.3: - resolution: - { - integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } - peerDependencies: - "@types/node": "*" - ts-node: ">=9.0.0" + resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true ts-node: optional: true jest-config@29.7.0: - resolution: - { - integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } - peerDependencies: - "@types/node": "*" - ts-node: ">=9.0.0" + resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' peerDependenciesMeta: - "@types/node": + '@types/node': optional: true ts-node: optional: true jest-diff@26.6.2: - resolution: - { - integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==, - } - engines: { node: ">= 10.14.2" } + resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==} + engines: {node: '>= 10.14.2'} jest-diff@27.5.1: - resolution: - { - integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-diff@28.1.3: - resolution: - { - integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-diff@29.7.0: - resolution: - { - integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-docblock@27.5.1: - resolution: - { - integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-docblock@28.1.1: - resolution: - { - integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-docblock@29.7.0: - resolution: - { - integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-each@27.5.1: - resolution: - { - integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-each@28.1.3: - resolution: - { - integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-each@29.7.0: - resolution: - { - integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-environment-emit@1.0.8: - resolution: - { - integrity: sha512-WNqvxBLH0yNojHJQ99Y21963aT7UTavxV3PgiBQFi8zwrlnKU6HvkB6LOvQrbk5I8mI8JEKvcoOrQOvBVMLIXQ==, - } - engines: { node: ">=16.14.0" } - peerDependencies: - "@jest/environment": ">=27.2.5" - "@jest/types": ">=27.2.5" - jest: ">=27.2.5" - jest-environment-jsdom: ">=27.2.5" - jest-environment-node: ">=27.2.5" + resolution: {integrity: sha512-WNqvxBLH0yNojHJQ99Y21963aT7UTavxV3PgiBQFi8zwrlnKU6HvkB6LOvQrbk5I8mI8JEKvcoOrQOvBVMLIXQ==} + engines: {node: '>=16.14.0'} + peerDependencies: + '@jest/environment': '>=27.2.5' + '@jest/types': '>=27.2.5' + jest: '>=27.2.5' + jest-environment-jsdom: '>=27.2.5' + jest-environment-node: '>=27.2.5' peerDependenciesMeta: - "@jest/environment": + '@jest/environment': optional: true - "@jest/types": + '@jest/types': optional: true jest: optional: true @@ -32443,25 +22252,16 @@ packages: optional: true jest-environment-jsdom@27.5.1: - resolution: - { - integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-environment-jsdom@28.1.3: - resolution: - { - integrity: sha512-HnlGUmZRdxfCByd3GM2F100DgQOajUBzEitjGqIREcb45kGjZvRrKUdlaF6escXBdcXNl0OBh+1ZrfeZT3GnAg==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-HnlGUmZRdxfCByd3GM2F100DgQOajUBzEitjGqIREcb45kGjZvRrKUdlaF6escXBdcXNl0OBh+1ZrfeZT3GnAg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-environment-jsdom@29.7.0: - resolution: - { - integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -32469,176 +22269,107 @@ packages: optional: true jest-environment-node@27.5.1: - resolution: - { - integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-environment-node@28.1.3: - resolution: - { - integrity: sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-environment-node@29.7.0: - resolution: - { - integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-expect-message@1.1.3: - resolution: - { - integrity: sha512-bTK77T4P+zto+XepAX3low8XVQxDgaEqh3jSTQOG8qvPpD69LsIdyJTa+RmnJh3HNSzJng62/44RPPc7OIlFxg==, - } + resolution: {integrity: sha512-bTK77T4P+zto+XepAX3low8XVQxDgaEqh3jSTQOG8qvPpD69LsIdyJTa+RmnJh3HNSzJng62/44RPPc7OIlFxg==} jest-file-snapshot@0.5.0: - resolution: - { - integrity: sha512-A3cqn9RRB6yl/bMsN9+EiNU94JTptLmoFqmSfSeuku22UYotYF6C/Ntw7C2Kai0C7deirYfpDwRpdlyLhItvMQ==, - } + resolution: {integrity: sha512-A3cqn9RRB6yl/bMsN9+EiNU94JTptLmoFqmSfSeuku22UYotYF6C/Ntw7C2Kai0C7deirYfpDwRpdlyLhItvMQ==} jest-get-type@26.3.0: - resolution: - { - integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==, - } - engines: { node: ">= 10.14.2" } + resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==} + engines: {node: '>= 10.14.2'} jest-get-type@27.5.1: - resolution: - { - integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-get-type@28.0.2: - resolution: - { - integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-get-type@29.6.3: - resolution: - { - integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-haste-map@27.5.1: - resolution: - { - integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-haste-map@28.1.3: - resolution: - { - integrity: sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-haste-map@29.7.0: - resolution: - { - integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-jasmine2@27.5.1: - resolution: - { - integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-leak-detector@27.5.1: - resolution: - { - integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-leak-detector@28.1.3: - resolution: - { - integrity: sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-leak-detector@29.7.0: - resolution: - { - integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-matcher-utils@27.5.1: - resolution: - { - integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-matcher-utils@28.1.3: - resolution: - { - integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-matcher-utils@29.7.0: - resolution: - { - integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-message-util@27.5.1: - resolution: - { - integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-message-util@28.1.3: - resolution: - { - integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-message-util@29.7.0: - resolution: - { - integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-metadata@1.5.3: - resolution: - { - integrity: sha512-tFNJqxeI6k2RvwRXqK0RxFb62DRkmQrCntVJ5zhyGvQdOPBHufgPd/cpYgHKbyL3pkBT32ut91Nk2BqpaK7YeA==, - } - engines: { node: ">=16.14.0" } - peerDependencies: - "@jest/environment": ">=27.2.5" - "@jest/reporters": ">=27.2.5" - "@jest/types": ">=27.2.5" - jest: ">=27.2.5" - jest-environment-jsdom: ">=27.2.5" - jest-environment-node: ">=27.2.5" + resolution: {integrity: sha512-tFNJqxeI6k2RvwRXqK0RxFb62DRkmQrCntVJ5zhyGvQdOPBHufgPd/cpYgHKbyL3pkBT32ut91Nk2BqpaK7YeA==} + engines: {node: '>=16.14.0'} + peerDependencies: + '@jest/environment': '>=27.2.5' + '@jest/reporters': '>=27.2.5' + '@jest/types': '>=27.2.5' + jest: '>=27.2.5' + jest-environment-jsdom: '>=27.2.5' + jest-environment-node: '>=27.2.5' peerDependenciesMeta: - "@jest/environment": + '@jest/environment': optional: true - "@jest/reporters": + '@jest/reporters': optional: true - "@jest/types": + '@jest/types': optional: true jest: optional: true @@ -32648,297 +22379,183 @@ packages: optional: true jest-mock@27.5.1: - resolution: - { - integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-mock@28.1.3: - resolution: - { - integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-mock@29.7.0: - resolution: - { - integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-pnp-resolver@1.2.3: - resolution: - { - integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} + engines: {node: '>=6'} peerDependencies: - jest-resolve: "*" + jest-resolve: '*' peerDependenciesMeta: jest-resolve: optional: true jest-regex-util@27.5.1: - resolution: - { - integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-regex-util@28.0.2: - resolution: - { - integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-regex-util@29.6.3: - resolution: - { - integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-resolve-dependencies@27.5.1: - resolution: - { - integrity: sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-resolve-dependencies@28.1.3: - resolution: - { - integrity: sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-resolve-dependencies@29.7.0: - resolution: - { - integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-resolve@27.5.1: - resolution: - { - integrity: sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-resolve@28.1.3: - resolution: - { - integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-resolve@29.7.0: - resolution: - { - integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-runner@27.5.1: - resolution: - { - integrity: sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-runner@28.1.3: - resolution: - { - integrity: sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-runner@29.7.0: - resolution: - { - integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-runtime@27.5.1: - resolution: - { - integrity: sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-runtime@28.1.3: - resolution: - { - integrity: sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-runtime@29.7.0: - resolution: - { - integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-serializer@27.5.1: - resolution: - { - integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-snapshot@27.5.1: - resolution: - { - integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-snapshot@28.1.3: - resolution: - { - integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-snapshot@29.7.0: - resolution: - { - integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-util@27.5.1: - resolution: - { - integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-util@28.1.3: - resolution: - { - integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-util@29.7.0: - resolution: - { - integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-validate@27.5.1: - resolution: - { - integrity: sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-validate@28.1.3: - resolution: - { - integrity: sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-validate@29.7.0: - resolution: - { - integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-watch-typeahead@1.1.0: - resolution: - { - integrity: sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-Va5nLSJTN7YFtC2jd+7wsoe1pNe5K4ShLux/E5iHEwlB9AxaxmggY7to9KUqKojhaJw3aXqt5WAb4jGPOolpEw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: jest: ^27.0.0 || ^28.0.0 jest-watcher@27.5.1: - resolution: - { - integrity: sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} jest-watcher@28.1.3: - resolution: - { - integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} jest-watcher@29.7.0: - resolution: - { - integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} jest-worker@26.6.2: - resolution: - { - integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==, - } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} + engines: {node: '>= 10.13.0'} peerDependencies: - metro: "*" + metro: '*' peerDependenciesMeta: metro: optional: true jest-worker@27.5.1: - resolution: - { - integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==, - } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} + engines: {node: '>= 10.13.0'} peerDependencies: - metro: "*" + metro: '*' peerDependenciesMeta: metro: optional: true jest-worker@28.1.3: - resolution: - { - integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: - metro: "*" + metro: '*' peerDependenciesMeta: metro: optional: true jest-worker@29.7.0: - resolution: - { - integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: - metro: "*" + metro: '*' peerDependenciesMeta: metro: optional: true jest@27.5.1: - resolution: - { - integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==, - } - engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -32947,11 +22564,8 @@ packages: optional: true jest@28.1.3: - resolution: - { - integrity: sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -32960,11 +22574,8 @@ packages: optional: true jest@29.7.0: - resolution: - { - integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==, - } - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } + resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -32973,231 +22584,132 @@ packages: optional: true jetifier@2.0.0: - resolution: - { - integrity: sha512-J4Au9KuT74te+PCCCHKgAjyLlEa+2VyIAEPNCdE5aNkAJ6FAJcAqcdzEkSnzNksIa9NkGmC4tPiClk2e7tCJuQ==, - } + resolution: {integrity: sha512-J4Au9KuT74te+PCCCHKgAjyLlEa+2VyIAEPNCdE5aNkAJ6FAJcAqcdzEkSnzNksIa9NkGmC4tPiClk2e7tCJuQ==} hasBin: true jimp-compact@0.16.1: - resolution: - { - integrity: sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==, - } + resolution: {integrity: sha512-dZ6Ra7u1G8c4Letq/B5EzAxj4tLFHL+cGtdpR+PVm4yzPDj+lCk+AbivWt1eOM+ikzkowtyV7qSqX6qr3t71Ww==} jiti@1.21.0: - resolution: - { - integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==, - } + resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} hasBin: true jmespath@0.15.0: - resolution: - { - integrity: sha512-+kHj8HXArPfpPEKGLZ+kB5ONRTCiGQXo8RQYL0hH8t6pWXUBBK5KkkQmTNOwKK4LEsd0yTsgtjJVm4UBSZea4w==, - } - engines: { node: ">= 0.6.0" } + resolution: {integrity: sha512-+kHj8HXArPfpPEKGLZ+kB5ONRTCiGQXo8RQYL0hH8t6pWXUBBK5KkkQmTNOwKK4LEsd0yTsgtjJVm4UBSZea4w==} + engines: {node: '>= 0.6.0'} joi@17.12.2: - resolution: - { - integrity: sha512-RonXAIzCiHLc8ss3Ibuz45u28GOsWE1UpfDXLbN/9NKbL4tCJf8TWYVKsoYuuh+sAUt7fsSNpA+r2+TBA6Wjmw==, - } + resolution: {integrity: sha512-RonXAIzCiHLc8ss3Ibuz45u28GOsWE1UpfDXLbN/9NKbL4tCJf8TWYVKsoYuuh+sAUt7fsSNpA+r2+TBA6Wjmw==} join-component@1.1.0: - resolution: - { - integrity: sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==, - } + resolution: {integrity: sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==} jotai@2.7.1: - resolution: - { - integrity: sha512-bsaTPn02nFgWNP6cBtg/htZhCu4s0wxqoklRHePp6l/vlsypR9eLn7diRliwXYWMXDpPvW/LLA2afI8vwgFFaw==, - } - engines: { node: ">=12.20.0" } - peerDependencies: - "@types/react": ">=17.0.0" - react: ">=17.0.0" + resolution: {integrity: sha512-bsaTPn02nFgWNP6cBtg/htZhCu4s0wxqoklRHePp6l/vlsypR9eLn7diRliwXYWMXDpPvW/LLA2afI8vwgFFaw==} + 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-base64@3.7.7: - resolution: - { - integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==, - } + resolution: {integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==} js-crypto-env@0.3.2: - resolution: - { - integrity: sha512-F1uHiCkSOo36qBuuZABA4sBf+xeFBzhJZ0Sd7af8FAruszIhm1Xxv+Zr5Ne90Zlh7/fnxCsrdkj0N8f0a3lVlQ==, - } + resolution: {integrity: sha512-F1uHiCkSOo36qBuuZABA4sBf+xeFBzhJZ0Sd7af8FAruszIhm1Xxv+Zr5Ne90Zlh7/fnxCsrdkj0N8f0a3lVlQ==} js-crypto-hash@0.6.3: - resolution: - { - integrity: sha512-SG8c9tM8y3sUb4k7WvpVfu5vU7zfPvX+eaYR5578TvehkehdaQbqAc+y+1FwxnqQ3WZ0gsYoOKp/mW+mqtNoWA==, - } + resolution: {integrity: sha512-SG8c9tM8y3sUb4k7WvpVfu5vU7zfPvX+eaYR5578TvehkehdaQbqAc+y+1FwxnqQ3WZ0gsYoOKp/mW+mqtNoWA==} js-crypto-hkdf@0.7.3: - resolution: - { - integrity: sha512-eAaVArAjS2GCacWGXY4hjBiexrLQYlI0PMOcbwtrSEj84XU3kUfMYZm9bpTyaTXgdHC/eQoXe/Of6biG+RSEaQ==, - } + resolution: {integrity: sha512-eAaVArAjS2GCacWGXY4hjBiexrLQYlI0PMOcbwtrSEj84XU3kUfMYZm9bpTyaTXgdHC/eQoXe/Of6biG+RSEaQ==} js-crypto-hmac@0.6.3: - resolution: - { - integrity: sha512-T0pKOaHACOSG6Xs6/06G8RDDeZouQwIQNBq9L/zoUGsd4F67gAjpT3q2lGigAGpUd1hiyy7vnhvLpz7VDt6DbA==, - } + resolution: {integrity: sha512-T0pKOaHACOSG6Xs6/06G8RDDeZouQwIQNBq9L/zoUGsd4F67gAjpT3q2lGigAGpUd1hiyy7vnhvLpz7VDt6DbA==} js-crypto-random@0.4.3: - resolution: - { - integrity: sha512-C3gzphPPfw9jfQ9Q/LjhJMZxQNp3AaoVRDvyZkiB+zYltfs8tKQPsskWkXACpg1Nzh01PtSRUvVijjptd2qGHQ==, - } + resolution: {integrity: sha512-C3gzphPPfw9jfQ9Q/LjhJMZxQNp3AaoVRDvyZkiB+zYltfs8tKQPsskWkXACpg1Nzh01PtSRUvVijjptd2qGHQ==} js-encoding-utils@0.5.6: - resolution: - { - integrity: sha512-qnAGsUIWrmzh5n+3AXqbxX1KsB9hkQmJZf3aA9DLAS7GpL/NEHCBreFFbW+imramoU+Q0TDyvkwhRbBRH1TVkg==, - } + resolution: {integrity: sha512-qnAGsUIWrmzh5n+3AXqbxX1KsB9hkQmJZf3aA9DLAS7GpL/NEHCBreFFbW+imramoU+Q0TDyvkwhRbBRH1TVkg==} js-logger@1.6.1: - resolution: - { - integrity: sha512-yTgMCPXVjhmg28CuUH8CKjU+cIKL/G+zTu4Fn4lQxs8mRFH/03QTNvEFngcxfg/gRDiQAOoyCKmMTOm9ayOzXA==, - } + resolution: {integrity: sha512-yTgMCPXVjhmg28CuUH8CKjU+cIKL/G+zTu4Fn4lQxs8mRFH/03QTNvEFngcxfg/gRDiQAOoyCKmMTOm9ayOzXA==} js-message@1.0.7: - resolution: - { - integrity: sha512-efJLHhLjIyKRewNS9EGZ4UpI8NguuL6fKkhRxVuMmrGV2xN/0APGdQYwLFky5w9naebSZ0OwAGp0G6/2Cg90rA==, - } - engines: { node: ">=0.6.0" } + resolution: {integrity: sha512-efJLHhLjIyKRewNS9EGZ4UpI8NguuL6fKkhRxVuMmrGV2xN/0APGdQYwLFky5w9naebSZ0OwAGp0G6/2Cg90rA==} + engines: {node: '>=0.6.0'} js-queue@2.0.2: - resolution: - { - integrity: sha512-pbKLsbCfi7kriM3s1J4DDCo7jQkI58zPLHi0heXPzPlj0hjUsm+FesPUbE0DSbIVIK503A36aUBoCN7eMFedkA==, - } - engines: { node: ">=1.0.0" } + resolution: {integrity: sha512-pbKLsbCfi7kriM3s1J4DDCo7jQkI58zPLHi0heXPzPlj0hjUsm+FesPUbE0DSbIVIK503A36aUBoCN7eMFedkA==} + engines: {node: '>=1.0.0'} js-sha256@0.9.0: - resolution: - { - integrity: sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA==, - } + resolution: {integrity: sha512-sga3MHh9sgQN2+pJ9VYZ+1LPwXOxuBJBA5nrR5/ofPfuiJBE2hnjsaN8se8JznOmGLN2p49Pe5U/ttafcs/apA==} js-sha3@0.5.7: - resolution: - { - integrity: sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g==, - } + resolution: {integrity: sha512-GII20kjaPX0zJ8wzkTbNDYMY7msuZcTWk8S5UOh6806Jq/wz1J8/bnr8uGU0DAUmYDjj2Mr4X1cW8v/GLYnR+g==} js-sha3@0.8.0: - resolution: - { - integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==, - } + resolution: {integrity: sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q==} js-sha512@0.8.0: - resolution: - { - integrity: sha512-PWsmefG6Jkodqt+ePTvBZCSMFgN7Clckjd0O7su3I0+BW2QWUTJNzjktHsztGLhncP2h8mcF9V9Y2Ha59pAViQ==, - } + resolution: {integrity: sha512-PWsmefG6Jkodqt+ePTvBZCSMFgN7Clckjd0O7su3I0+BW2QWUTJNzjktHsztGLhncP2h8mcF9V9Y2Ha59pAViQ==} js-tokens@4.0.0: - resolution: - { - integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, - } + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} js-yaml@3.14.1: - resolution: - { - integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, - } + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} hasBin: true js-yaml@4.1.0: - resolution: - { - integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, - } + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true js2xmlparser@4.0.2: - resolution: - { - integrity: sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA==, - } + resolution: {integrity: sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA==} jsbn@0.1.1: - resolution: - { - integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==, - } + resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} jsc-android@250231.0.0: - resolution: - { - integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==, - } + resolution: {integrity: sha512-rS46PvsjYmdmuz1OAWXY/1kCYG7pnf1TBqeTiOJr1iDz7s5DLxxC9n/ZMknLDxzYzNVfI7R95MH10emSSG1Wuw==} jsc-safe-url@0.2.4: - resolution: - { - integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==, - } + resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==} jscodeshift@0.14.0: - resolution: - { - integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==, - } + resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==} hasBin: true peerDependencies: - "@babel/preset-env": ^7.1.6 + '@babel/preset-env': ^7.1.6 jscodeshift@0.15.2: - resolution: - { - integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==, - } + resolution: {integrity: sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==} hasBin: true peerDependencies: - "@babel/preset-env": ^7.1.6 + '@babel/preset-env': ^7.1.6 peerDependenciesMeta: - "@babel/preset-env": + '@babel/preset-env': optional: true jsdoc@4.0.3: - resolution: - { - integrity: sha512-Nu7Sf35kXJ1MWDZIMAuATRQTg1iIPdzh7tqJ6jjvaU/GfDf+qi5UV8zJR3Mo+/pYFvm8mzay4+6O5EWigaQBQw==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-Nu7Sf35kXJ1MWDZIMAuATRQTg1iIPdzh7tqJ6jjvaU/GfDf+qi5UV8zJR3Mo+/pYFvm8mzay4+6O5EWigaQBQw==} + engines: {node: '>=12.0.0'} hasBin: true jsdom@16.7.0: - resolution: - { - integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} + engines: {node: '>=10'} peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -33205,11 +22717,8 @@ packages: optional: true jsdom@17.0.0: - resolution: - { - integrity: sha512-MUq4XdqwtNurZDVeKScENMPHnkgmdIvMzZ1r1NSwHkDuaqI6BouPjr+17COo4/19oLNnmdpFDPOHVpgIZmZ+VA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-MUq4XdqwtNurZDVeKScENMPHnkgmdIvMzZ1r1NSwHkDuaqI6BouPjr+17COo4/19oLNnmdpFDPOHVpgIZmZ+VA==} + engines: {node: '>=12'} peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -33217,11 +22726,8 @@ packages: optional: true jsdom@19.0.0: - resolution: - { - integrity: sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-RYAyjCbxy/vri/CfnjUWJQQtZ3LKlLnDqj+9XLNnJPgEGeirZs3hllKR20re8LUZ6o1b1X4Jat+Qd26zmP41+A==} + engines: {node: '>=12'} peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -33229,11 +22735,8 @@ packages: optional: true jsdom@20.0.3: - resolution: - { - integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==} + engines: {node: '>=14'} peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -33241,3163 +22744,1747 @@ packages: optional: true jsesc@0.5.0: - resolution: - { - integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==, - } + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true jsesc@2.5.2: - resolution: - { - integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} + engines: {node: '>=4'} hasBin: true json-bigint@1.0.0: - resolution: - { - integrity: sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==, - } + resolution: {integrity: sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==} json-buffer@3.0.0: - resolution: - { - integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==, - } + resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} json-buffer@3.0.1: - resolution: - { - integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==, - } + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} json-cycle@1.5.0: - resolution: - { - integrity: sha512-GOehvd5PO2FeZ5T4c+RxobeT5a1PiGpF4u9/3+UvrMU4bhnVqzJY7hm39wg8PDCqkU91fWGH8qjWR4bn+wgq9w==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-GOehvd5PO2FeZ5T4c+RxobeT5a1PiGpF4u9/3+UvrMU4bhnVqzJY7hm39wg8PDCqkU91fWGH8qjWR4bn+wgq9w==} + engines: {node: '>= 4'} json-duplicate-key-handle@1.0.0: - resolution: - { - integrity: sha512-OLIxL+UpfwUsqcLX3i6Z51ChTou/Vje+6bSeGUSubj96dF/SfjObDprLy++ZXYH07KITuEzsXS7PX7e/BGf4jw==, - } + resolution: {integrity: sha512-OLIxL+UpfwUsqcLX3i6Z51ChTou/Vje+6bSeGUSubj96dF/SfjObDprLy++ZXYH07KITuEzsXS7PX7e/BGf4jw==} json-parse-better-errors@1.0.2: - resolution: - { - integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==, - } + resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} 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-rpc-2.0@0.2.19: - resolution: - { - integrity: sha512-tegZKneDQjWintJS5Zlw8xNvJK0/xq4sct2M5AgfFmcCJFMjvrLgk1noH7OPfFgEQ+ScueuWdaGfikCPr+qBtg==, - } + resolution: {integrity: sha512-tegZKneDQjWintJS5Zlw8xNvJK0/xq4sct2M5AgfFmcCJFMjvrLgk1noH7OPfFgEQ+ScueuWdaGfikCPr+qBtg==} json-rpc-2.0@1.7.0: - resolution: - { - integrity: sha512-asnLgC1qD5ytP+fvBP8uL0rvj+l8P6iYICbzZ8dVxCpESffVjzA7KkYkbKCIbavs7cllwH1ZUaNtJwphdeRqpg==, - } + resolution: {integrity: sha512-asnLgC1qD5ytP+fvBP8uL0rvj+l8P6iYICbzZ8dVxCpESffVjzA7KkYkbKCIbavs7cllwH1ZUaNtJwphdeRqpg==} json-schema-deref-sync@0.13.0: - resolution: - { - integrity: sha512-YBOEogm5w9Op337yb6pAT6ZXDqlxAsQCanM3grid8lMWNxRJO/zWEJi3ZzqDL8boWfwhTFym5EFrNgWwpqcBRg==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-YBOEogm5w9Op337yb6pAT6ZXDqlxAsQCanM3grid8lMWNxRJO/zWEJi3ZzqDL8boWfwhTFym5EFrNgWwpqcBRg==} + engines: {node: '>=6.0.0'} 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-typed@7.0.3: - resolution: - { - integrity: sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A==, - } + resolution: {integrity: sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A==} json-schema-typed@8.0.1: - resolution: - { - integrity: sha512-XQmWYj2Sm4kn4WeTYvmpKEbyPsL7nBsb647c7pMe6l02/yx2+Jfc4dT6UZkEXnIUb5LhD55r2HPsJ1milQ4rDg==, - } + resolution: {integrity: sha512-XQmWYj2Sm4kn4WeTYvmpKEbyPsL7nBsb647c7pMe6l02/yx2+Jfc4dT6UZkEXnIUb5LhD55r2HPsJ1milQ4rDg==} 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-stringify-safe@5.0.1: - resolution: - { - integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==, - } + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} json-text-sequence@0.1.1: - resolution: - { - integrity: sha512-L3mEegEWHRekSHjc7+sc8eJhba9Clq1PZ8kMkzf8OxElhXc8O4TS5MwcVlj9aEbm5dr81N90WHC5nAz3UO971w==, - } + resolution: {integrity: sha512-L3mEegEWHRekSHjc7+sc8eJhba9Clq1PZ8kMkzf8OxElhXc8O4TS5MwcVlj9aEbm5dr81N90WHC5nAz3UO971w==} json5@0.5.1: - resolution: - { - integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==, - } + resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==} hasBin: true 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 json@11.0.0: - resolution: - { - integrity: sha512-N/ITv3Yw9Za8cGxuQqSqrq6RHnlaHWZkAFavcfpH/R52522c26EbihMxnY7A1chxfXJ4d+cEFIsyTgfi9GihrA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-N/ITv3Yw9Za8cGxuQqSqrq6RHnlaHWZkAFavcfpH/R52522c26EbihMxnY7A1chxfXJ4d+cEFIsyTgfi9GihrA==} + engines: {node: '>=0.10.0'} hasBin: true jsonc-parser@3.2.1: - resolution: - { - integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==, - } + resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==} jsonfile@4.0.0: - resolution: - { - integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==, - } + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} jsonfile@6.1.0: - resolution: - { - integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, - } + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} jsonparse@1.3.1: - resolution: - { - integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==, - } - engines: { "0": node >= 0.2.0 } + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} jsonpath@1.1.1: - resolution: - { - integrity: sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==, - } + resolution: {integrity: sha512-l6Cg7jRpixfbgoWgkrl77dgEj8RPvND0wMH6TwQmi9Qs4TFfS9u5cUFnbeKTwj5ga5Y3BTGGNI28k117LJ009w==} 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'} jsonwebtoken@9.0.2: - resolution: - { - integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==, - } - engines: { node: ">=12", npm: ">=6" } + resolution: {integrity: sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==} + engines: {node: '>=12', npm: '>=6'} jsprim@1.4.2: - resolution: - { - integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==, - } - engines: { node: ">=0.6.0" } + resolution: {integrity: sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==} + engines: {node: '>=0.6.0'} jsqr@1.4.0: - resolution: - { - integrity: sha512-dxLob7q65Xg2DvstYkRpkYtmKm2sPJ9oFhrhmudT1dZvNFFTlroai3AWSpLey/w5vMcLBXRgOJsbXpdN9HzU/A==, - } + resolution: {integrity: sha512-dxLob7q65Xg2DvstYkRpkYtmKm2sPJ9oFhrhmudT1dZvNFFTlroai3AWSpLey/w5vMcLBXRgOJsbXpdN9HzU/A==} jssha@3.2.0: - resolution: - { - integrity: sha512-QuruyBENDWdN4tZwJbQq7/eAK85FqrI4oDbXjy5IBhYD+2pTJyBUWZe8ctWaCkrV0gy6AaelgOZZBMeswEa/6Q==, - } + resolution: {integrity: sha512-QuruyBENDWdN4tZwJbQq7/eAK85FqrI4oDbXjy5IBhYD+2pTJyBUWZe8ctWaCkrV0gy6AaelgOZZBMeswEa/6Q==} jsx-ast-utils@3.3.5: - resolution: - { - integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==, - } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} + engines: {node: '>=4.0'} jszip@3.10.1: - resolution: - { - integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==, - } + resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==} just-curry-it@3.2.1: - resolution: - { - integrity: sha512-Q8206k8pTY7krW32cdmPsP+DqqLgWx/hYPSj9/+7SYqSqz7UuwPbfSe07lQtvuuaVyiSJveXk0E5RydOuWwsEg==, - } + resolution: {integrity: sha512-Q8206k8pTY7krW32cdmPsP+DqqLgWx/hYPSj9/+7SYqSqz7UuwPbfSe07lQtvuuaVyiSJveXk0E5RydOuWwsEg==} jwa@1.4.1: - resolution: - { - integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==, - } + resolution: {integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==} jws@3.2.2: - resolution: - { - integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==, - } + resolution: {integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==} katex@0.16.10: - resolution: - { - integrity: sha512-ZiqaC04tp2O5utMsl2TEZTXxa6WSC4yo0fv5ML++D3QZv/vx2Mct0mTlRx3O+uUkjfuAgOkzsCmq5MiUEsDDdA==, - } + resolution: {integrity: sha512-ZiqaC04tp2O5utMsl2TEZTXxa6WSC4yo0fv5ML++D3QZv/vx2Mct0mTlRx3O+uUkjfuAgOkzsCmq5MiUEsDDdA==} hasBin: true keccak@3.0.2: - resolution: - { - integrity: sha512-PyKKjkH53wDMLGrvmRGSNWgmSxZOUqbnXwKL9tmgbFYA1iAYqW21kfR7mZXV0MlESiefxQQE9X9fTa3X+2MPDQ==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-PyKKjkH53wDMLGrvmRGSNWgmSxZOUqbnXwKL9tmgbFYA1iAYqW21kfR7mZXV0MlESiefxQQE9X9fTa3X+2MPDQ==} + engines: {node: '>=10.0.0'} keccak@3.0.4: - resolution: - { - integrity: sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q==} + engines: {node: '>=10.0.0'} key-encoder@2.0.3: - resolution: - { - integrity: sha512-fgBtpAGIr/Fy5/+ZLQZIPPhsZEcbSlYu/Wu96tNDFNSjSACw5lEIOFeaVdQ/iwrb8oxjlWi6wmWdH76hV6GZjg==, - } + resolution: {integrity: sha512-fgBtpAGIr/Fy5/+ZLQZIPPhsZEcbSlYu/Wu96tNDFNSjSACw5lEIOFeaVdQ/iwrb8oxjlWi6wmWdH76hV6GZjg==} keygrip@1.1.0: - resolution: - { - integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==} + engines: {node: '>= 0.6'} keymirror@0.1.1: - resolution: - { - integrity: sha512-vIkZAFWoDijgQT/Nvl2AHCMmnegN2ehgTPYuyy2hWQkQSntI0S7ESYqdLkoSe1HyEBFHHkCgSIvVdSEiWwKvCg==, - } + resolution: {integrity: sha512-vIkZAFWoDijgQT/Nvl2AHCMmnegN2ehgTPYuyy2hWQkQSntI0S7ESYqdLkoSe1HyEBFHHkCgSIvVdSEiWwKvCg==} keyv@3.1.0: - resolution: - { - integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==, - } + resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} keyv@4.5.4: - resolution: - { - integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==, - } + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} khroma@2.1.0: - resolution: - { - integrity: sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==, - } + resolution: {integrity: sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==} kind-of@5.1.0: - resolution: - { - integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==} + engines: {node: '>=0.10.0'} kind-of@6.0.3: - resolution: - { - integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} + engines: {node: '>=0.10.0'} klaw@3.0.0: - resolution: - { - integrity: sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==, - } + resolution: {integrity: sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==} kleur@3.0.3: - resolution: - { - integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} kleur@4.1.5: - resolution: - { - integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} + engines: {node: '>=6'} klona@2.0.6: - resolution: - { - integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} + engines: {node: '>= 8'} known-css-properties@0.26.0: - resolution: - { - integrity: sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==, - } + resolution: {integrity: sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==} koa-bodyparser@4.4.1: - resolution: - { - integrity: sha512-kBH3IYPMb+iAXnrxIhXnW+gXV8OTzCu8VPDqvcDHW9SQrbkHmqPQtiZwrltNmSq6/lpipHnT7k7PsjlVD7kK0w==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-kBH3IYPMb+iAXnrxIhXnW+gXV8OTzCu8VPDqvcDHW9SQrbkHmqPQtiZwrltNmSq6/lpipHnT7k7PsjlVD7kK0w==} + engines: {node: '>=8.0.0'} koa-compose@4.1.0: - resolution: - { - integrity: sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==, - } + resolution: {integrity: sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==} koa-compress@3.1.0: - resolution: - { - integrity: sha512-0m24/yS/GbhWI+g9FqtvStY+yJwTObwoxOvPok6itVjRen7PBWkjsJ8pre76m+99YybXLKhOJ62mJ268qyBFMQ==, - } - engines: { node: ">= 8.0.0" } + resolution: {integrity: sha512-0m24/yS/GbhWI+g9FqtvStY+yJwTObwoxOvPok6itVjRen7PBWkjsJ8pre76m+99YybXLKhOJ62mJ268qyBFMQ==} + engines: {node: '>= 8.0.0'} koa-conditional-get@2.0.0: - resolution: - { - integrity: sha512-FTZYr681zfyW0bz8FDc55RJrRnicz6KPv2oA3GOf6knksJd0uJdfenKud+RtBjHzO0g1tVHNjwN6gk7OfHAtbQ==, - } + resolution: {integrity: sha512-FTZYr681zfyW0bz8FDc55RJrRnicz6KPv2oA3GOf6knksJd0uJdfenKud+RtBjHzO0g1tVHNjwN6gk7OfHAtbQ==} koa-convert@2.0.0: - resolution: - { - integrity: sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==} + engines: {node: '>= 10'} koa-etag@3.0.0: - resolution: - { - integrity: sha512-HYU1zIsH4S9xOlUZGuZIP1PIiJ0EkBXgwL8PjFECb/pUYmAee8gfcvIovregBMYxECDhLulEWT2+ZRsA/lczCQ==, - } + resolution: {integrity: sha512-HYU1zIsH4S9xOlUZGuZIP1PIiJ0EkBXgwL8PjFECb/pUYmAee8gfcvIovregBMYxECDhLulEWT2+ZRsA/lczCQ==} koa-is-json@1.0.0: - resolution: - { - integrity: sha512-+97CtHAlWDx0ndt0J8y3P12EWLwTLMXIfMnYDev3wOTwH/RpBGMlfn4bDXlMEg1u73K6XRE9BbUp+5ZAYoRYWw==, - } + resolution: {integrity: sha512-+97CtHAlWDx0ndt0J8y3P12EWLwTLMXIfMnYDev3wOTwH/RpBGMlfn4bDXlMEg1u73K6XRE9BbUp+5ZAYoRYWw==} koa-json@2.0.2: - resolution: - { - integrity: sha512-8+dz0T2ekDuNN1svYoKPCV2txotQ3Ufg8Fn5bft1T48MPJWiC/HKmkk+3xj9EC/iNZuFYeLRazN2h2o3RSUXuQ==, - } + resolution: {integrity: sha512-8+dz0T2ekDuNN1svYoKPCV2txotQ3Ufg8Fn5bft1T48MPJWiC/HKmkk+3xj9EC/iNZuFYeLRazN2h2o3RSUXuQ==} koa-morgan@1.0.1: - resolution: - { - integrity: sha512-JOUdCNlc21G50afBXfErUrr1RKymbgzlrO5KURY+wmDG1Uvd2jmxUJcHgylb/mYXy2SjiNZyYim/ptUBGsIi3A==, - } + resolution: {integrity: sha512-JOUdCNlc21G50afBXfErUrr1RKymbgzlrO5KURY+wmDG1Uvd2jmxUJcHgylb/mYXy2SjiNZyYim/ptUBGsIi3A==} koa-range@0.3.0: - resolution: - { - integrity: sha512-Ich3pCz6RhtbajYXRWjIl6O5wtrLs6kE3nkXc9XmaWe+MysJyZO7K4L3oce1Jpg/iMgCbj+5UCiMm/rqVtcDIg==, - } - engines: { node: ">=7" } + resolution: {integrity: sha512-Ich3pCz6RhtbajYXRWjIl6O5wtrLs6kE3nkXc9XmaWe+MysJyZO7K4L3oce1Jpg/iMgCbj+5UCiMm/rqVtcDIg==} + engines: {node: '>=7'} koa-route@3.2.0: - resolution: - { - integrity: sha512-8FsuWw/L+CUWJfpgN6vrlYUDNTheEinG8Zkm97GyuLJNyWjCVUs9p10Ih3jTIWwmDVQcz6827l0RKadAS5ibqA==, - } + resolution: {integrity: sha512-8FsuWw/L+CUWJfpgN6vrlYUDNTheEinG8Zkm97GyuLJNyWjCVUs9p10Ih3jTIWwmDVQcz6827l0RKadAS5ibqA==} koa-send@5.0.1: - resolution: - { - integrity: sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==} + engines: {node: '>= 8'} koa-static@5.0.0: - resolution: - { - integrity: sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==, - } - engines: { node: ">= 7.6.0" } + resolution: {integrity: sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==} + engines: {node: '>= 7.6.0'} koa@2.15.2: - resolution: - { - integrity: sha512-MXTeZH3M6AJ8ukW2QZ8wqO3Dcdfh2WRRmjCBkEP+NhKNCiqlO5RDqHmSnsyNrbRJrdjyvIGSJho4vQiWgQJSVA==, - } - engines: { node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4 } + resolution: {integrity: sha512-MXTeZH3M6AJ8ukW2QZ8wqO3Dcdfh2WRRmjCBkEP+NhKNCiqlO5RDqHmSnsyNrbRJrdjyvIGSJho4vQiWgQJSVA==} + engines: {node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4} konan@2.1.1: - resolution: - { - integrity: sha512-7ZhYV84UzJ0PR/RJnnsMZcAbn+kLasJhVNWsu8ZyVEJYRpGA5XESQ9d/7zOa08U0Ou4cmB++hMNY/3OSV9KIbg==, - } + resolution: {integrity: sha512-7ZhYV84UzJ0PR/RJnnsMZcAbn+kLasJhVNWsu8ZyVEJYRpGA5XESQ9d/7zOa08U0Ou4cmB++hMNY/3OSV9KIbg==} kuler@2.0.0: - resolution: - { - integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==, - } + resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==} kysely@0.27.3: - resolution: - { - integrity: sha512-lG03Ru+XyOJFsjH3OMY6R/9U38IjDPfnOfDgO3ynhbDr+Dz8fak+X6L62vqu3iybQnj+lG84OttBuU9KY3L9kA==, - } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-lG03Ru+XyOJFsjH3OMY6R/9U38IjDPfnOfDgO3ynhbDr+Dz8fak+X6L62vqu3iybQnj+lG84OttBuU9KY3L9kA==} + engines: {node: '>=14.0.0'} language-subtag-registry@0.3.22: - resolution: - { - integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==, - } + resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} language-tags@1.0.9: - resolution: - { - integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} + engines: {node: '>=0.10'} launch-editor-middleware@2.8.0: - resolution: - { - integrity: sha512-0Az27jnPR2RgkUoZoLHluM5gg9zHeg7hPsUZESJxcTV8Rs6Fed+Nof7Lb2HmpsE8lN/3YzpU+mvK5exYWSftWw==, - } + resolution: {integrity: sha512-0Az27jnPR2RgkUoZoLHluM5gg9zHeg7hPsUZESJxcTV8Rs6Fed+Nof7Lb2HmpsE8lN/3YzpU+mvK5exYWSftWw==} launch-editor@2.6.1: - resolution: - { - integrity: sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==, - } + resolution: {integrity: sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==} launch-editor@2.8.0: - resolution: - { - integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==, - } + resolution: {integrity: sha512-vJranOAJrI/llyWGRQqiDM+adrw+k83fvmmx3+nV47g3+36xM15jE+zyZ6Ffel02+xSvuM0b2GDRosXZkbb6wA==} layout-base@1.0.2: - resolution: - { - integrity: sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==, - } + resolution: {integrity: sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==} lazy-cache@1.0.4: - resolution: - { - integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==} + engines: {node: '>=0.10.0'} lazy-universal-dotenv@4.0.0: - resolution: - { - integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==, - } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==} + engines: {node: '>=14.0.0'} lazy-val@1.0.5: - resolution: - { - integrity: sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==, - } + resolution: {integrity: sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==} lazystream@1.0.1: - resolution: - { - integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==, - } - engines: { node: ">= 0.6.3" } + resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==} + engines: {node: '>= 0.6.3'} level-blobs@0.1.7: - resolution: - { - integrity: sha512-n0iYYCGozLd36m/Pzm206+brIgXP8mxPZazZ6ZvgKr+8YwOZ8/PPpYC5zMUu2qFygRN8RO6WC/HH3XWMW7RMVg==, - } + resolution: {integrity: sha512-n0iYYCGozLd36m/Pzm206+brIgXP8mxPZazZ6ZvgKr+8YwOZ8/PPpYC5zMUu2qFygRN8RO6WC/HH3XWMW7RMVg==} level-filesystem@1.2.0: - resolution: - { - integrity: sha512-PhXDuCNYpngpxp3jwMT9AYBMgOvB6zxj3DeuIywNKmZqFj2djj9XfT2XDVslfqmo0Ip79cAd3SBy3FsfOZPJ1g==, - } + resolution: {integrity: sha512-PhXDuCNYpngpxp3jwMT9AYBMgOvB6zxj3DeuIywNKmZqFj2djj9XfT2XDVslfqmo0Ip79cAd3SBy3FsfOZPJ1g==} level-fix-range@1.0.2: - resolution: - { - integrity: sha512-9llaVn6uqBiSlBP+wKiIEoBa01FwEISFgHSZiyec2S0KpyLUkGR4afW/FCZ/X8y+QJvzS0u4PGOlZDdh1/1avQ==, - } + resolution: {integrity: sha512-9llaVn6uqBiSlBP+wKiIEoBa01FwEISFgHSZiyec2S0KpyLUkGR4afW/FCZ/X8y+QJvzS0u4PGOlZDdh1/1avQ==} level-fix-range@2.0.0: - resolution: - { - integrity: sha512-WrLfGWgwWbYPrHsYzJau+5+te89dUbENBg3/lsxOs4p2tYOhCHjbgXxBAj4DFqp3k/XBwitcRXoCh8RoCogASA==, - } + resolution: {integrity: sha512-WrLfGWgwWbYPrHsYzJau+5+te89dUbENBg3/lsxOs4p2tYOhCHjbgXxBAj4DFqp3k/XBwitcRXoCh8RoCogASA==} level-hooks@4.5.0: - resolution: - { - integrity: sha512-fxLNny/vL/G4PnkLhWsbHnEaRi+A/k8r5EH/M77npZwYL62RHi2fV0S824z3QdpAk6VTgisJwIRywzBHLK4ZVA==, - } + resolution: {integrity: sha512-fxLNny/vL/G4PnkLhWsbHnEaRi+A/k8r5EH/M77npZwYL62RHi2fV0S824z3QdpAk6VTgisJwIRywzBHLK4ZVA==} level-peek@1.0.6: - resolution: - { - integrity: sha512-TKEzH5TxROTjQxWMczt9sizVgnmJ4F3hotBI48xCTYvOKd/4gA/uY0XjKkhJFo6BMic8Tqjf6jFMLWeg3MAbqQ==, - } + resolution: {integrity: sha512-TKEzH5TxROTjQxWMczt9sizVgnmJ4F3hotBI48xCTYvOKd/4gA/uY0XjKkhJFo6BMic8Tqjf6jFMLWeg3MAbqQ==} level-sublevel@5.2.3: - resolution: - { - integrity: sha512-tO8jrFp+QZYrxx/Gnmjawuh1UBiifpvKNAcm4KCogesWr1Nm2+ckARitf+Oo7xg4OHqMW76eAqQ204BoIlscjA==, - } + resolution: {integrity: sha512-tO8jrFp+QZYrxx/Gnmjawuh1UBiifpvKNAcm4KCogesWr1Nm2+ckARitf+Oo7xg4OHqMW76eAqQ204BoIlscjA==} levelup@0.18.6: - resolution: - { - integrity: sha512-uB0auyRqIVXx+hrpIUtol4VAPhLRcnxcOsd2i2m6rbFIDarO5dnrupLOStYYpEcu8ZT087Z9HEuYw1wjr6RL6Q==, - } + resolution: {integrity: sha512-uB0auyRqIVXx+hrpIUtol4VAPhLRcnxcOsd2i2m6rbFIDarO5dnrupLOStYYpEcu8ZT087Z9HEuYw1wjr6RL6Q==} leven@2.1.0: - resolution: - { - integrity: sha512-nvVPLpIHUxCUoRLrFqTgSxXJ614d8AgQoWl7zPe/2VadE8+1dpU3LBhowRuBAcuwruWtOdD8oYC9jDNJjXDPyA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-nvVPLpIHUxCUoRLrFqTgSxXJ614d8AgQoWl7zPe/2VadE8+1dpU3LBhowRuBAcuwruWtOdD8oYC9jDNJjXDPyA==} + engines: {node: '>=0.10.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.3.0: - resolution: - { - integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==} + engines: {node: '>= 0.8.0'} 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'} libsodium-sumo@0.7.13: - resolution: - { - integrity: sha512-zTGdLu4b9zSNLfovImpBCbdAA4xkpkZbMnSQjP8HShyOutnGjRHmSOKlsylh1okao6QhLiz7nG98EGn+04cZjQ==, - } + resolution: {integrity: sha512-zTGdLu4b9zSNLfovImpBCbdAA4xkpkZbMnSQjP8HShyOutnGjRHmSOKlsylh1okao6QhLiz7nG98EGn+04cZjQ==} libsodium-wrappers-sumo@0.7.13: - resolution: - { - integrity: sha512-lz4YdplzDRh6AhnLGF2Dj2IUj94xRN6Bh8T0HLNwzYGwPehQJX6c7iYVrFUPZ3QqxE0bqC+K0IIqqZJYWumwSQ==, - } + resolution: {integrity: sha512-lz4YdplzDRh6AhnLGF2Dj2IUj94xRN6Bh8T0HLNwzYGwPehQJX6c7iYVrFUPZ3QqxE0bqC+K0IIqqZJYWumwSQ==} libsodium-wrappers@0.7.13: - resolution: - { - integrity: sha512-kasvDsEi/r1fMzKouIDv7B8I6vNmknXwGiYodErGuESoFTohGSKZplFtVxZqHaoQ217AynyIFgnOVRitpHs0Qw==, - } + resolution: {integrity: sha512-kasvDsEi/r1fMzKouIDv7B8I6vNmknXwGiYodErGuESoFTohGSKZplFtVxZqHaoQ217AynyIFgnOVRitpHs0Qw==} libsodium@0.7.13: - resolution: - { - integrity: sha512-mK8ju0fnrKXXfleL53vtp9xiPq5hKM0zbDQtcxQIsSmxNgSxqCj6R7Hl9PkrNe2j29T4yoDaF7DJLK9/i5iWUw==, - } + resolution: {integrity: sha512-mK8ju0fnrKXXfleL53vtp9xiPq5hKM0zbDQtcxQIsSmxNgSxqCj6R7Hl9PkrNe2j29T4yoDaF7DJLK9/i5iWUw==} lie@3.1.1: - resolution: - { - integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==, - } + resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==} lie@3.3.0: - resolution: - { - integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==, - } + resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==} lighthouse-logger@1.4.2: - resolution: - { - integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==, - } + resolution: {integrity: sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==} lightningcss-darwin-arm64@1.19.0: - resolution: - { - integrity: sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-wIJmFtYX0rXHsXHSr4+sC5clwblEMji7HHQ4Ub1/CznVRxtCFha6JIt5JZaNf8vQrfdZnBxLLC6R8pC818jXqg==} + engines: {node: '>= 12.0.0'} cpu: [arm64] os: [darwin] lightningcss-darwin-x64@1.19.0: - resolution: - { - integrity: sha512-Lif1wD6P4poaw9c/4Uh2z+gmrWhw/HtXFoeZ3bEsv6Ia4tt8rOJBdkfVaUJ6VXmpKHALve+iTyP2+50xY1wKPw==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-Lif1wD6P4poaw9c/4Uh2z+gmrWhw/HtXFoeZ3bEsv6Ia4tt8rOJBdkfVaUJ6VXmpKHALve+iTyP2+50xY1wKPw==} + engines: {node: '>= 12.0.0'} cpu: [x64] os: [darwin] lightningcss-linux-arm-gnueabihf@1.19.0: - resolution: - { - integrity: sha512-P15VXY5682mTXaiDtbnLYQflc8BYb774j2R84FgDLJTN6Qp0ZjWEFyN1SPqyfTj2B2TFjRHRUvQSSZ7qN4Weig==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-P15VXY5682mTXaiDtbnLYQflc8BYb774j2R84FgDLJTN6Qp0ZjWEFyN1SPqyfTj2B2TFjRHRUvQSSZ7qN4Weig==} + engines: {node: '>= 12.0.0'} cpu: [arm] os: [linux] lightningcss-linux-arm64-gnu@1.19.0: - resolution: - { - integrity: sha512-zwXRjWqpev8wqO0sv0M1aM1PpjHz6RVIsBcxKszIG83Befuh4yNysjgHVplF9RTU7eozGe3Ts7r6we1+Qkqsww==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-zwXRjWqpev8wqO0sv0M1aM1PpjHz6RVIsBcxKszIG83Befuh4yNysjgHVplF9RTU7eozGe3Ts7r6we1+Qkqsww==} + engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] lightningcss-linux-arm64-musl@1.19.0: - resolution: - { - integrity: sha512-vSCKO7SDnZaFN9zEloKSZM5/kC5gbzUjoJQ43BvUpyTFUX7ACs/mDfl2Eq6fdz2+uWhUh7vf92c4EaaP4udEtA==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-vSCKO7SDnZaFN9zEloKSZM5/kC5gbzUjoJQ43BvUpyTFUX7ACs/mDfl2Eq6fdz2+uWhUh7vf92c4EaaP4udEtA==} + engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] lightningcss-linux-x64-gnu@1.19.0: - resolution: - { - integrity: sha512-0AFQKvVzXf9byrXUq9z0anMGLdZJS+XSDqidyijI5njIwj6MdbvX2UZK/c4FfNmeRa2N/8ngTffoIuOUit5eIQ==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-0AFQKvVzXf9byrXUq9z0anMGLdZJS+XSDqidyijI5njIwj6MdbvX2UZK/c4FfNmeRa2N/8ngTffoIuOUit5eIQ==} + engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] lightningcss-linux-x64-musl@1.19.0: - resolution: - { - integrity: sha512-SJoM8CLPt6ECCgSuWe+g0qo8dqQYVcPiW2s19dxkmSI5+Uu1GIRzyKA0b7QqmEXolA+oSJhQqCmJpzjY4CuZAg==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-SJoM8CLPt6ECCgSuWe+g0qo8dqQYVcPiW2s19dxkmSI5+Uu1GIRzyKA0b7QqmEXolA+oSJhQqCmJpzjY4CuZAg==} + engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] lightningcss-win32-x64-msvc@1.19.0: - resolution: - { - integrity: sha512-C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-C+VuUTeSUOAaBZZOPT7Etn/agx/MatzJzGRkeV+zEABmPuntv1zihncsi+AyGmjkkzq3wVedEy7h0/4S84mUtg==} + engines: {node: '>= 12.0.0'} cpu: [x64] os: [win32] lightningcss@1.19.0: - resolution: - { - integrity: sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-yV5UR7og+Og7lQC+70DA7a8ta1uiOPnWPJfxa0wnxylev5qfo4P+4iMpzWAdYWOca4jdNQZii+bDL/l+4hUXIA==} + engines: {node: '>= 12.0.0'} lilconfig@2.1.0: - resolution: - { - integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} + engines: {node: '>=10'} lilconfig@3.1.1: - resolution: - { - integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==} + 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==} lint-staged@14.0.1: - resolution: - { - integrity: sha512-Mw0cL6HXnHN1ag0mN/Dg4g6sr8uf8sn98w2Oc1ECtFto9tvRF7nkXGJRbx8gPlHyoR0pLyBr2lQHbWwmUHe1Sw==, - } - engines: { node: ^16.14.0 || >=18.0.0 } + resolution: {integrity: sha512-Mw0cL6HXnHN1ag0mN/Dg4g6sr8uf8sn98w2Oc1ECtFto9tvRF7nkXGJRbx8gPlHyoR0pLyBr2lQHbWwmUHe1Sw==} + engines: {node: ^16.14.0 || >=18.0.0} hasBin: true listenercount@1.0.1: - resolution: - { - integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==, - } + resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==} listr-silent-renderer@1.1.1: - resolution: - { - integrity: sha512-L26cIFm7/oZeSNVhWB6faeorXhMg4HNlb/dS/7jHhr708jxlXrtrBWo4YUxZQkc6dGoxEAe6J/D3juTRBUzjtA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-L26cIFm7/oZeSNVhWB6faeorXhMg4HNlb/dS/7jHhr708jxlXrtrBWo4YUxZQkc6dGoxEAe6J/D3juTRBUzjtA==} + engines: {node: '>=4'} listr-update-renderer@0.5.0: - resolution: - { - integrity: sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==} + engines: {node: '>=6'} peerDependencies: listr: ^0.14.2 listr-verbose-renderer@0.5.0: - resolution: - { - integrity: sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==} + engines: {node: '>=4'} listr-verbose-renderer@0.6.0: - resolution: - { - integrity: sha512-P3bA/giMu432bs3gHiKXKOIHlWanCIlRhbhCfgKNgCoyvTvZsdbfkgX1BvThYXhm36cS8pOX3Z5vxXBFZC+NQw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-P3bA/giMu432bs3gHiKXKOIHlWanCIlRhbhCfgKNgCoyvTvZsdbfkgX1BvThYXhm36cS8pOX3Z5vxXBFZC+NQw==} + engines: {node: '>=6'} listr2@6.6.1: - resolution: - { - integrity: sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==, - } - engines: { node: ">=16.0.0" } + resolution: {integrity: sha512-+rAXGHh0fkEWdXBmX+L6mmfmXmXvDGEKzkjxO+8mP3+nI/r/CWznVBvsibXdxda9Zz0OW2e2ikphN3OwCT/jSg==} + engines: {node: '>=16.0.0'} peerDependencies: - enquirer: ">= 2.3.0 < 3" + enquirer: '>= 2.3.0 < 3' peerDependenciesMeta: enquirer: optional: true listr@0.14.3: - resolution: - { - integrity: sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==} + engines: {node: '>=6'} load-json-file@5.3.0: - resolution: - { - integrity: sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw==} + engines: {node: '>=6'} load-module@3.0.0: - resolution: - { - integrity: sha512-ZqprfrTx4vfH5+1mgpspPh5JYsNyA193NkMUdb3GwpmVqMczOh8cUDJgZBmEZVlSR42JBGYTUxlBAX9LHIBtIA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-ZqprfrTx4vfH5+1mgpspPh5JYsNyA193NkMUdb3GwpmVqMczOh8cUDJgZBmEZVlSR42JBGYTUxlBAX9LHIBtIA==} + engines: {node: '>=10'} 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} load-yaml-file@0.2.0: - resolution: - { - integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} + engines: {node: '>=6'} loader-runner@4.3.0: - resolution: - { - integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==, - } - engines: { node: ">=6.11.5" } + resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==} + engines: {node: '>=6.11.5'} loader-utils@1.4.2: - resolution: - { - integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==, - } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} + engines: {node: '>=4.0.0'} loader-utils@2.0.4: - resolution: - { - integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==, - } - engines: { node: ">=8.9.0" } + resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==} + engines: {node: '>=8.9.0'} loader-utils@3.2.1: - resolution: - { - integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==} + engines: {node: '>= 12.13.0'} local-web-server@4.2.1: - resolution: - { - integrity: sha512-v71LZool2w7uYA+tDP5HhfjzUxz5SFfcrPPB/zC98yFFawt7A6fcmAr2MR4Q9AHk/A8oyd/wrhEJBJLndwHxNQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-v71LZool2w7uYA+tDP5HhfjzUxz5SFfcrPPB/zC98yFFawt7A6fcmAr2MR4Q9AHk/A8oyd/wrhEJBJLndwHxNQ==} + engines: {node: '>=10'} hasBin: true localforage@1.10.0: - resolution: - { - integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==, - } + resolution: {integrity: sha512-14/H1aX7hzBBmmh7sGPd+AOMkkIrHM3Z1PAyGgZigA1H1p5O5ANnMyWzvpAETtG68/dC4pC0ncy3+PPGzXZHPg==} locate-path@3.0.0: - resolution: - { - integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} + engines: {node: '>=6'} 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'} locate-path@7.2.0: - resolution: - { - integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} lodash-es@4.17.21: - resolution: - { - integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==, - } + resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} lodash._reinterpolate@3.0.0: - resolution: - { - integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==, - } + resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==} lodash.assignwith@4.2.0: - resolution: - { - integrity: sha512-ZznplvbvtjK2gMvnQ1BR/zqPFZmS6jbK4p+6Up4xcRYA7yMIwxHCfbTcrYxXKzzqLsQ05eJPVznEW3tuwV7k1g==, - } + resolution: {integrity: sha512-ZznplvbvtjK2gMvnQ1BR/zqPFZmS6jbK4p+6Up4xcRYA7yMIwxHCfbTcrYxXKzzqLsQ05eJPVznEW3tuwV7k1g==} lodash.camelcase@4.3.0: - resolution: - { - integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==, - } + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} lodash.clonedeep@4.5.0: - resolution: - { - integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==, - } + resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==} lodash.debounce@4.0.8: - resolution: - { - integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==, - } + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} lodash.defaults@4.2.0: - resolution: - { - integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==, - } + resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==} lodash.defaultsdeep@4.6.1: - resolution: - { - integrity: sha512-3j8wdDzYuWO3lM3Reg03MuQR957t287Rpcxp1njpEa8oDrikb+FwGdW3n+FELh/A6qib6yPit0j/pv9G/yeAqA==, - } + resolution: {integrity: sha512-3j8wdDzYuWO3lM3Reg03MuQR957t287Rpcxp1njpEa8oDrikb+FwGdW3n+FELh/A6qib6yPit0j/pv9G/yeAqA==} lodash.escaperegexp@4.1.2: - resolution: - { - integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==, - } + resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==} lodash.flattendeep@4.4.0: - resolution: - { - integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==, - } + resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} lodash.get@4.4.2: - resolution: - { - integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==, - } + resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} lodash.includes@4.3.0: - resolution: - { - integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==, - } + resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==} lodash.isarguments@3.1.0: - resolution: - { - integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==, - } + resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==} lodash.isboolean@3.0.3: - resolution: - { - integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==, - } + resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==} lodash.isequal@4.5.0: - resolution: - { - integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==, - } + resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} lodash.isfunction@3.0.9: - resolution: - { - integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==, - } + resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==} lodash.isinteger@4.0.4: - resolution: - { - integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==, - } + resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==} lodash.isnumber@3.0.3: - resolution: - { - integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==, - } + resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==} lodash.isplainobject@4.0.6: - resolution: - { - integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==, - } + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} lodash.isstring@4.0.1: - resolution: - { - integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==, - } + resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} lodash.kebabcase@4.1.1: - resolution: - { - integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==, - } + resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} lodash.mapvalues@4.6.0: - resolution: - { - integrity: sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ==, - } + resolution: {integrity: sha512-JPFqXFeZQ7BfS00H58kClY7SPVeHertPE0lNuCyZ26/XlN8TvakYD7b9bGyNmXbT/D3BbtPAAmq90gPWqLkxlQ==} lodash.memoize@4.1.2: - resolution: - { - integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==, - } + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} lodash.merge@4.6.2: - resolution: - { - integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, - } + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} lodash.mergewith@4.6.2: - resolution: - { - integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==, - } + resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} lodash.once@4.1.1: - resolution: - { - integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==, - } + resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} lodash.snakecase@4.1.1: - resolution: - { - integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==, - } + resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} lodash.sortby@4.7.0: - resolution: - { - integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==, - } + resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} lodash.startcase@4.4.0: - resolution: - { - integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==, - } + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} lodash.template@4.5.0: - resolution: - { - integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==, - } + resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==} lodash.templatesettings@4.2.0: - resolution: - { - integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==, - } + resolution: {integrity: sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==} lodash.throttle@4.1.1: - resolution: - { - integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==, - } + resolution: {integrity: sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==} lodash.truncate@4.4.2: - resolution: - { - integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==, - } + resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} lodash.uniq@4.5.0: - resolution: - { - integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==, - } + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} lodash.upperfirst@4.3.1: - resolution: - { - integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==, - } + resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} lodash@4.17.21: - resolution: - { - integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, - } + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} log-symbols@1.0.2: - resolution: - { - integrity: sha512-mmPrW0Fh2fxOzdBbFv4g1m6pR72haFLPJ2G5SJEELf1y+iaQrDG6cWCPjy54RHYbZAt7X+ls690Kw62AdWXBzQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-mmPrW0Fh2fxOzdBbFv4g1m6pR72haFLPJ2G5SJEELf1y+iaQrDG6cWCPjy54RHYbZAt7X+ls690Kw62AdWXBzQ==} + engines: {node: '>=0.10.0'} log-symbols@2.2.0: - resolution: - { - integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==} + engines: {node: '>=4'} 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-update@2.3.0: - resolution: - { - integrity: sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg==} + engines: {node: '>=4'} log-update@5.0.1: - resolution: - { - integrity: sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-5UtUDQ/6edw4ofyljDNcOVJQ4c7OjDro4h3y8e1GQL5iYElYclVHJ3zeWchylvMaKnDbDilC8irOVyexnA/Slw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} logform@2.6.0: - resolution: - { - integrity: sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-1ulHeNPp6k/LD8H91o7VYFBng5i1BDE7HoKxVbZiGFidS1Rj65qcywLxX+pVfAPoQJEjRdvKcusKwOupHCVOVQ==} + engines: {node: '>= 12.0.0'} logkitty@0.7.1: - resolution: - { - integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==, - } + resolution: {integrity: sha512-/3ER20CTTbahrCrpYfPn7Xavv9diBROZpoXGVZDWMw4b/X4uuUwAC0ki85tgsdMRONURyIJbcOvS94QsUBYPbQ==} hasBin: true long@4.0.0: - resolution: - { - integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==, - } + resolution: {integrity: sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==} long@5.2.3: - resolution: - { - integrity: sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==, - } + resolution: {integrity: sha512-lcHwpNoggQTObv5apGNCTdJrO69eHOZMi4BNC+rTLER8iHAqGrUVeLh/irVIM7zTw2bOXA8T6uNPeujwOLg/2Q==} 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 lottie-react-native@6.7.0: - resolution: - { - integrity: sha512-doiF/36LaKkzo0XkgUIK8egxALNY6jGjCI4szpRuwop15LTW3DFtIA2L3pusNdaH7oM797aSH5UylIJw2k+Hgw==, - } - peerDependencies: - "@dotlottie/react-player": ^1.6.1 - "@lottiefiles/react-lottie-player": ^3.5.3 - react: "*" - react-native: ">=0.46" - react-native-windows: ">=0.63.x" + resolution: {integrity: sha512-doiF/36LaKkzo0XkgUIK8egxALNY6jGjCI4szpRuwop15LTW3DFtIA2L3pusNdaH7oM797aSH5UylIJw2k+Hgw==} + peerDependencies: + '@dotlottie/react-player': ^1.6.1 + '@lottiefiles/react-lottie-player': ^3.5.3 + react: '*' + react-native: '>=0.46' + react-native-windows: '>=0.63.x' peerDependenciesMeta: - "@dotlottie/react-player": + '@dotlottie/react-player': optional: true - "@lottiefiles/react-lottie-player": + '@lottiefiles/react-lottie-player': optional: true react-native-windows: optional: true lottie-web@5.12.2: - resolution: - { - integrity: sha512-uvhvYPC8kGPjXT3MyKMrL3JitEAmDMp30lVkuq/590Mw9ok6pWcFCwXJveo0t5uqYw1UREQHofD+jVpdjBv8wg==, - } + resolution: {integrity: sha512-uvhvYPC8kGPjXT3MyKMrL3JitEAmDMp30lVkuq/590Mw9ok6pWcFCwXJveo0t5uqYw1UREQHofD+jVpdjBv8wg==} loupe@2.3.7: - resolution: - { - integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==, - } + resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} lower-case@2.0.2: - resolution: - { - integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==, - } + resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} lowercase-keys@1.0.1: - resolution: - { - integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} + engines: {node: '>=0.10.0'} lowercase-keys@2.0.0: - resolution: - { - integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} + engines: {node: '>=8'} lru-cache@10.2.0: - resolution: - { - integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==, - } - engines: { node: 14 || >=16.14 } + resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==} + engines: {node: 14 || >=16.14} lru-cache@4.1.5: - resolution: - { - integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==, - } + resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} lru-cache@5.1.1: - resolution: - { - integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, - } + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} lru-cache@6.0.0: - resolution: - { - integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} lru-cache@7.18.3: - resolution: - { - integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} + engines: {node: '>=12'} lru_map@0.3.3: - resolution: - { - integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==, - } + resolution: {integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==} lru_map@0.4.1: - resolution: - { - integrity: sha512-I+lBvqMMFfqaV8CJCISjI3wbjmwVu/VyOoU7+qtu9d7ioW5klMgsTTiUOUp+DJvfTTzKXoPbyC6YfgkNcyPSOg==, - } + resolution: {integrity: sha512-I+lBvqMMFfqaV8CJCISjI3wbjmwVu/VyOoU7+qtu9d7ioW5klMgsTTiUOUp+DJvfTTzKXoPbyC6YfgkNcyPSOg==} ltgt@2.2.1: - resolution: - { - integrity: sha512-AI2r85+4MquTw9ZYqabu4nMwy9Oftlfa/e/52t9IjtfG+mGBbTNdAoZ3RQKLHR6r0wQnwZnPIEh/Ya6XTWAKNA==, - } + resolution: {integrity: sha512-AI2r85+4MquTw9ZYqabu4nMwy9Oftlfa/e/52t9IjtfG+mGBbTNdAoZ3RQKLHR6r0wQnwZnPIEh/Ya6XTWAKNA==} lws-basic-auth@2.0.0: - resolution: - { - integrity: sha512-zzyoGFLQPuKaQJvHMLmmSyfT6lIvocwcDXllTVW5brD0t0YgHYopILkzja+x+MIlJX/YhNKniaTSasujniYVjw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-zzyoGFLQPuKaQJvHMLmmSyfT6lIvocwcDXllTVW5brD0t0YgHYopILkzja+x+MIlJX/YhNKniaTSasujniYVjw==} + engines: {node: '>=10'} lws-blacklist@3.0.0: - resolution: - { - integrity: sha512-KNXGDBmbj+UGfWMBAefe2vrfuWpEQms/9Fd7kfMScTqAKF6nrVoEs4pkxfefArG3bX0bu7jWLyB4tJGma5WC6Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-KNXGDBmbj+UGfWMBAefe2vrfuWpEQms/9Fd7kfMScTqAKF6nrVoEs4pkxfefArG3bX0bu7jWLyB4tJGma5WC6Q==} + engines: {node: '>=10'} lws-body-parser@2.0.0: - resolution: - { - integrity: sha512-QFDzln3sSdKWL9fVNWy2+ZmrKy/XaYRO0/FFB0MBrDCsNnzepeCD4I7rOOfyuphLn42yR8XUpWdcJ3Ii5aauRA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-QFDzln3sSdKWL9fVNWy2+ZmrKy/XaYRO0/FFB0MBrDCsNnzepeCD4I7rOOfyuphLn42yR8XUpWdcJ3Ii5aauRA==} + engines: {node: '>=10'} lws-compress@2.0.0: - resolution: - { - integrity: sha512-5qDXI9pukVYWm07WjAOfpItLXKtL8lCHvjmW4RiXULhTRJj1qqBjNcmqReyk8L7NLUKhc+8eqoDDJFKURQEp0w==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-5qDXI9pukVYWm07WjAOfpItLXKtL8lCHvjmW4RiXULhTRJj1qqBjNcmqReyk8L7NLUKhc+8eqoDDJFKURQEp0w==} + engines: {node: '>=10'} lws-conditional-get@2.0.0: - resolution: - { - integrity: sha512-U05yDlFJKIYa7gJZYfnc1HIEuXbKpDJztgkvNYyxCqJC28j/k9ORoNnFNOIHpBh/jlPJgV8x7uH34mIxFAryWA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-U05yDlFJKIYa7gJZYfnc1HIEuXbKpDJztgkvNYyxCqJC28j/k9ORoNnFNOIHpBh/jlPJgV8x7uH34mIxFAryWA==} + engines: {node: '>=10'} lws-cors@3.1.1: - resolution: - { - integrity: sha512-JMqRHdZ8wS17LB9MbHZvOAiDE/2MD3TSODvEAmNkIPEvutKq1Z6wfuFbfiNjAQRGyImUfiUM99vJOFHmLCg2cw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-JMqRHdZ8wS17LB9MbHZvOAiDE/2MD3TSODvEAmNkIPEvutKq1Z6wfuFbfiNjAQRGyImUfiUM99vJOFHmLCg2cw==} + engines: {node: '>=10'} lws-index@2.0.0: - resolution: - { - integrity: sha512-qfkeQmKYnd13LmQubzI5LtFV2N8PJQG4QvgSoefoiB3dWre9k2T4C7ajjOTKO8mgSzYpUEREduNcQcLyt62n0g==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-qfkeQmKYnd13LmQubzI5LtFV2N8PJQG4QvgSoefoiB3dWre9k2T4C7ajjOTKO8mgSzYpUEREduNcQcLyt62n0g==} + engines: {node: '>=10'} lws-json@2.0.0: - resolution: - { - integrity: sha512-vqUFrAQ5BGpkMS2Mm/ZhgvUMi6Tgia7YtESG7pKjNoiSsD+TxncG0nqp8YjUh2xrEzi/SYFc/ed+9ZOl/t0A0g==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-vqUFrAQ5BGpkMS2Mm/ZhgvUMi6Tgia7YtESG7pKjNoiSsD+TxncG0nqp8YjUh2xrEzi/SYFc/ed+9ZOl/t0A0g==} + engines: {node: '>=10'} lws-log@2.0.0: - resolution: - { - integrity: sha512-YveoazSZ0Qb1Tljdm8G8yn9c+mAMXgvLMACZzh5aZIk7p8YJwiXf9r1S+xY7wbXEcKG629KfVO0B5G5gRFcyDQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-YveoazSZ0Qb1Tljdm8G8yn9c+mAMXgvLMACZzh5aZIk7p8YJwiXf9r1S+xY7wbXEcKG629KfVO0B5G5gRFcyDQ==} + engines: {node: '>=10'} lws-mime@2.0.0: - resolution: - { - integrity: sha512-mfrAgRQ5+hkQ7LJ6EAgwnUeymNeYxwLXZY3UQ6C2hSTr7BqMSzm9k5O0C8wWP2dzdhChzITYKwzWbUnAYVBwtA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-mfrAgRQ5+hkQ7LJ6EAgwnUeymNeYxwLXZY3UQ6C2hSTr7BqMSzm9k5O0C8wWP2dzdhChzITYKwzWbUnAYVBwtA==} + engines: {node: '>=10'} lws-range@3.0.0: - resolution: - { - integrity: sha512-7ZhA/LqQnKjolKBo/2BFj9DyDDXcJGY3v05TwYRD0qDGrxW4vuatEjluC3SV7ZO/k4PxDLdxuk+RCgL5t3ThtQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-7ZhA/LqQnKjolKBo/2BFj9DyDDXcJGY3v05TwYRD0qDGrxW4vuatEjluC3SV7ZO/k4PxDLdxuk+RCgL5t3ThtQ==} + engines: {node: '>=10'} lws-request-monitor@2.0.0: - resolution: - { - integrity: sha512-ZTo0/pS42qiejcYlL+wlpurSbDSS0J7pDDohqBx7jjUQkgni2Qd8cPzn/kW8QI82gXgDmdZH+ps0vheLHlgdgg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-ZTo0/pS42qiejcYlL+wlpurSbDSS0J7pDDohqBx7jjUQkgni2Qd8cPzn/kW8QI82gXgDmdZH+ps0vheLHlgdgg==} + engines: {node: '>=10'} lws-rewrite@3.1.1: - resolution: - { - integrity: sha512-cOeaPXIlLUVLxS6BZ52QzZVzI8JjCzlWD4RWizB5Hd+0YGO0SPa3Vgk7CIghtAOsSdjtXg/wSOap2H1h+tw8BQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-cOeaPXIlLUVLxS6BZ52QzZVzI8JjCzlWD4RWizB5Hd+0YGO0SPa3Vgk7CIghtAOsSdjtXg/wSOap2H1h+tw8BQ==} + engines: {node: '>=10'} hasBin: true lws-spa@3.0.0: - resolution: - { - integrity: sha512-Tz10LfuOTUsRG6z+OCJ/vBN+4LQWoAGIJ1R02CFPrDk0pY3rHezM7/cCpq6Z6dXD+ipdNE8alkVn4zL2M+eVGg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-Tz10LfuOTUsRG6z+OCJ/vBN+4LQWoAGIJ1R02CFPrDk0pY3rHezM7/cCpq6Z6dXD+ipdNE8alkVn4zL2M+eVGg==} + engines: {node: '>=10'} lws-static@2.0.0: - resolution: - { - integrity: sha512-P25A0+IXdkB6Y6gZAG7X0mnaa+FJ8aTiWLUgM5kazaWmruRO7lyhSjitsA3y5TLI3DpPCZn0mWE4SRREujUZLg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-P25A0+IXdkB6Y6gZAG7X0mnaa+FJ8aTiWLUgM5kazaWmruRO7lyhSjitsA3y5TLI3DpPCZn0mWE4SRREujUZLg==} + engines: {node: '>=10'} lws@3.1.0: - resolution: - { - integrity: sha512-I8rTgZxz8OJL0hjdlDxs6WpcVG7WSyalVHPQXXK+WPNVjm3KhkT5gV0Qmsgm2FRLbRUp15tso80xmDxMsyt7zA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-I8rTgZxz8OJL0hjdlDxs6WpcVG7WSyalVHPQXXK+WPNVjm3KhkT5gV0Qmsgm2FRLbRUp15tso80xmDxMsyt7zA==} + engines: {node: '>=10'} hasBin: true 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.8: - resolution: - { - integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==} + engines: {node: '>=12'} make-dir@2.1.0: - resolution: - { - integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} + engines: {node: '>=6'} make-dir@3.1.0: - resolution: - { - integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} + engines: {node: '>=8'} 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'} make-error@1.3.6: - resolution: - { - integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==, - } + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} makeerror@1.0.12: - resolution: - { - integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==, - } + resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==} 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-obj@1.0.1: - resolution: - { - integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} + engines: {node: '>=0.10.0'} map-obj@4.3.0: - resolution: - { - integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==} + engines: {node: '>=8'} map-or-similar@1.5.0: - resolution: - { - integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==, - } + resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} map-stream@0.1.0: - resolution: - { - integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==, - } + resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==} markdown-escapes@1.0.4: - resolution: - { - integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==, - } + resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==} markdown-extensions@1.1.1: - resolution: - { - integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==} + engines: {node: '>=0.10.0'} markdown-it-anchor@8.6.7: - resolution: - { - integrity: sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==, - } + resolution: {integrity: sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==} peerDependencies: - "@types/markdown-it": "*" - markdown-it: "*" + '@types/markdown-it': '*' + markdown-it: '*' markdown-it@14.1.0: - resolution: - { - integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==, - } + resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} hasBin: true markdown-table@3.0.3: - resolution: - { - integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==, - } + resolution: {integrity: sha512-Z1NL3Tb1M9wH4XESsCDEksWoKTdlUafKc4pt0GRwjUyXaCFZ+dc3g2erqB6zm3szA2IUSi7VnPI+o/9jnxh9hw==} markdown-to-jsx@7.4.5: - resolution: - { - integrity: sha512-c8NB0H/ig+FOWssE9be0PKsYbCDhcWEkicxMnpdfUuHbFljnen4LAdgUShOyR/PgO3/qKvt9cwfQ0U/zQvZ44A==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-c8NB0H/ig+FOWssE9be0PKsYbCDhcWEkicxMnpdfUuHbFljnen4LAdgUShOyR/PgO3/qKvt9cwfQ0U/zQvZ44A==} + engines: {node: '>= 10'} peerDependencies: - react: ">= 0.14.0" + react: '>= 0.14.0' marked@4.3.0: - resolution: - { - integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==, - } - engines: { node: ">= 12" } + resolution: {integrity: sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==} + engines: {node: '>= 12'} hasBin: true marky@1.2.5: - resolution: - { - integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==, - } + resolution: {integrity: sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==} match-sorter@6.3.4: - resolution: - { - integrity: sha512-jfZW7cWS5y/1xswZo8VBOdudUiSd9nifYRWphc9M5D/ee4w4AoXLgBEdRbgVaxbMuagBPeUC5y2Hi8DO6o9aDg==, - } + resolution: {integrity: sha512-jfZW7cWS5y/1xswZo8VBOdudUiSd9nifYRWphc9M5D/ee4w4AoXLgBEdRbgVaxbMuagBPeUC5y2Hi8DO6o9aDg==} matcher@3.0.0: - resolution: - { - integrity: sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==} + engines: {node: '>=10'} mathml-tag-names@2.1.3: - resolution: - { - integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==, - } + resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==} md5-file@3.2.3: - resolution: - { - integrity: sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-3Tkp1piAHaworfcCgH0jKbTvj1jWWFgbvh2cXaNCgHwyTCBxxvD1Y04rmfpvdPm1P4oXMOpm6+2H7sr7v9v8Fw==} + engines: {node: '>=0.10'} hasBin: true md5.js@1.3.5: - resolution: - { - integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==, - } + resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==} md5@2.2.1: - resolution: - { - integrity: sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ==, - } + resolution: {integrity: sha512-PlGG4z5mBANDGCKsYQe0CaUYHdZYZt8ZPZLmEt+Urf0W4GlpTX4HescwHU+dc9+Z/G/vZKYZYFrwgm9VxK6QOQ==} md5@2.3.0: - resolution: - { - integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==, - } + resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==} md5hex@1.0.0: - resolution: - { - integrity: sha512-c2YOUbp33+6thdCUi34xIyOU/a7bvGKj/3DB1iaPMTuPHf/Q2d5s4sn1FaCOO43XkXggnb08y5W2PU8UNYNLKQ==, - } + resolution: {integrity: sha512-c2YOUbp33+6thdCUi34xIyOU/a7bvGKj/3DB1iaPMTuPHf/Q2d5s4sn1FaCOO43XkXggnb08y5W2PU8UNYNLKQ==} mdast-add-list-metadata@1.0.1: - resolution: - { - integrity: sha512-fB/VP4MJ0LaRsog7hGPxgOrSL3gE/2uEdZyDuSEnKCv/8IkYHiDkIQSbChiJoHyxZZXZ9bzckyRk+vNxFzh8rA==, - } + resolution: {integrity: sha512-fB/VP4MJ0LaRsog7hGPxgOrSL3gE/2uEdZyDuSEnKCv/8IkYHiDkIQSbChiJoHyxZZXZ9bzckyRk+vNxFzh8rA==} mdast-util-definitions@4.0.0: - resolution: - { - integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==, - } + resolution: {integrity: sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==} mdast-util-definitions@5.1.2: - resolution: - { - integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==, - } + resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} mdast-util-find-and-replace@2.2.2: - resolution: - { - integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==, - } + resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==} mdast-util-from-markdown@1.3.1: - resolution: - { - integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==, - } + resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==} mdast-util-gfm-autolink-literal@1.0.3: - resolution: - { - integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==, - } + resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==} mdast-util-gfm-footnote@1.0.2: - resolution: - { - integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==, - } + resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==} mdast-util-gfm-strikethrough@1.0.3: - resolution: - { - integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==, - } + resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==} mdast-util-gfm-table@1.0.7: - resolution: - { - integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==, - } + resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==} mdast-util-gfm-task-list-item@1.0.2: - resolution: - { - integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==, - } + resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==} mdast-util-gfm@2.0.2: - resolution: - { - integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==, - } + resolution: {integrity: sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==} mdast-util-inject@1.1.0: - resolution: - { - integrity: sha512-CcJ0mHa36QYumDKiZ2OIR+ClhfOM7zIzN+Wfy8tRZ1hpH9DKLCS+Mh4DyK5bCxzE9uxMWcbIpeNFWsg1zrj/2g==, - } + resolution: {integrity: sha512-CcJ0mHa36QYumDKiZ2OIR+ClhfOM7zIzN+Wfy8tRZ1hpH9DKLCS+Mh4DyK5bCxzE9uxMWcbIpeNFWsg1zrj/2g==} mdast-util-math@2.0.2: - resolution: - { - integrity: sha512-8gmkKVp9v6+Tgjtq6SYx9kGPpTf6FVYRa53/DLh479aldR9AyP48qeVOgNZ5X7QUK7nOy4yw7vg6mbiGcs9jWQ==, - } + resolution: {integrity: sha512-8gmkKVp9v6+Tgjtq6SYx9kGPpTf6FVYRa53/DLh479aldR9AyP48qeVOgNZ5X7QUK7nOy4yw7vg6mbiGcs9jWQ==} mdast-util-mdx-expression@1.3.2: - resolution: - { - integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==, - } + resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==} mdast-util-mdx-jsx@2.1.4: - resolution: - { - integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==, - } + resolution: {integrity: sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==} mdast-util-mdx@2.0.1: - resolution: - { - integrity: sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==, - } + resolution: {integrity: sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==} mdast-util-mdxjs-esm@1.3.1: - resolution: - { - integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==, - } + resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==} mdast-util-phrasing@3.0.1: - resolution: - { - integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==, - } + resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==} mdast-util-to-hast@12.3.0: - resolution: - { - integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==, - } + resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==} mdast-util-to-hast@13.1.0: - resolution: - { - integrity: sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==, - } + resolution: {integrity: sha512-/e2l/6+OdGp/FB+ctrJ9Avz71AN/GRH3oi/3KAx/kMnoUsD6q0woXlDT8lLEeViVKE7oZxE7RXzvO3T8kF2/sA==} mdast-util-to-markdown@1.5.0: - resolution: - { - integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==, - } + resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==} mdast-util-to-string@1.1.0: - resolution: - { - integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==, - } + resolution: {integrity: sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==} mdast-util-to-string@3.2.0: - resolution: - { - integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==, - } + resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==} mdast-util-toc@6.1.1: - resolution: - { - integrity: sha512-Er21728Kow8hehecK2GZtb7Ny3omcoPUVrmObiSUwmoRYVZaXLR751QROEFjR8W/vAQdHMLj49Lz20J55XaNpw==, - } + resolution: {integrity: sha512-Er21728Kow8hehecK2GZtb7Ny3omcoPUVrmObiSUwmoRYVZaXLR751QROEFjR8W/vAQdHMLj49Lz20J55XaNpw==} mdn-data@2.0.14: - resolution: - { - integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==, - } + resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} mdn-data@2.0.4: - resolution: - { - integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==, - } + resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} mdurl@2.0.0: - resolution: - { - integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==, - } + resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} media-typer@0.3.0: - resolution: - { - integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + engines: {node: '>= 0.6'} memfs@3.5.3: - resolution: - { - integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==, - } - engines: { node: ">= 4.0.0" } + resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} + engines: {node: '>= 4.0.0'} memoize-one@5.2.1: - resolution: - { - integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==, - } + resolution: {integrity: sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==} memoize-one@6.0.0: - resolution: - { - integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==, - } + resolution: {integrity: sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==} memoizerific@1.11.3: - resolution: - { - integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==, - } + resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==} memory-cache@0.2.0: - resolution: - { - integrity: sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==, - } + resolution: {integrity: sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==} meow@8.1.2: - resolution: - { - integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} + engines: {node: '>=10'} meow@9.0.0: - resolution: - { - integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==} + engines: {node: '>=10'} merge-descriptors@1.0.1: - resolution: - { - integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==, - } + resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} merge-options@3.0.4: - resolution: - { - integrity: sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==} + engines: {node: '>=10'} merge-source-map@1.1.0: - resolution: - { - integrity: sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==, - } + resolution: {integrity: sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==} merge-stream@2.0.0: - resolution: - { - integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, - } + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} merge2@1.4.1: - resolution: - { - integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} merkle-lib@2.0.10: - resolution: - { - integrity: sha512-XrNQvUbn1DL5hKNe46Ccs+Tu3/PYOlrcZILuGUhb95oKBPjc/nmIC8D462PQkipVDGKRvwhn+QFg2cCdIvmDJA==, - } + resolution: {integrity: sha512-XrNQvUbn1DL5hKNe46Ccs+Tu3/PYOlrcZILuGUhb95oKBPjc/nmIC8D462PQkipVDGKRvwhn+QFg2cCdIvmDJA==} mermaid@10.9.0: - resolution: - { - integrity: sha512-swZju0hFox/B/qoLKK0rOxxgh8Cf7rJSfAUc1u8fezVihYMvrJAS45GzAxTVf4Q+xn9uMgitBcmWk7nWGXOs/g==, - } + resolution: {integrity: sha512-swZju0hFox/B/qoLKK0rOxxgh8Cf7rJSfAUc1u8fezVihYMvrJAS45GzAxTVf4Q+xn9uMgitBcmWk7nWGXOs/g==} methods@1.1.2: - resolution: - { - integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} + engines: {node: '>= 0.6'} metro-babel-transformer@0.80.12: - resolution: - { - integrity: sha512-YZziRs0MgA3pzCkkvOoQRXjIoVjvrpi/yRlJnObyIvMP6lFdtyG4nUGIwGY9VXnBvxmXD6mPY2e+NSw6JAyiRg==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-YZziRs0MgA3pzCkkvOoQRXjIoVjvrpi/yRlJnObyIvMP6lFdtyG4nUGIwGY9VXnBvxmXD6mPY2e+NSw6JAyiRg==} + engines: {node: '>=18'} metro-babel-transformer@0.80.8: - resolution: - { - integrity: sha512-TTzNwRZb2xxyv4J/+yqgtDAP2qVqH3sahsnFu6Xv4SkLqzrivtlnyUbaeTdJ9JjtADJUEjCbgbFgUVafrXdR9Q==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-TTzNwRZb2xxyv4J/+yqgtDAP2qVqH3sahsnFu6Xv4SkLqzrivtlnyUbaeTdJ9JjtADJUEjCbgbFgUVafrXdR9Q==} + engines: {node: '>=18'} metro-cache-key@0.80.12: - resolution: - { - integrity: sha512-o4BspKnugg/pE45ei0LGHVuBJXwRgruW7oSFAeSZvBKA/sGr0UhOGY3uycOgWInnS3v5yTTfiBA9lHlNRhsvGA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-o4BspKnugg/pE45ei0LGHVuBJXwRgruW7oSFAeSZvBKA/sGr0UhOGY3uycOgWInnS3v5yTTfiBA9lHlNRhsvGA==} + engines: {node: '>=18'} metro-cache-key@0.80.8: - resolution: - { - integrity: sha512-qWKzxrLsRQK5m3oH8ePecqCc+7PEhR03cJE6Z6AxAj0idi99dHOSitTmY0dclXVB9vP2tQIAE8uTd8xkYGk8fA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-qWKzxrLsRQK5m3oH8ePecqCc+7PEhR03cJE6Z6AxAj0idi99dHOSitTmY0dclXVB9vP2tQIAE8uTd8xkYGk8fA==} + engines: {node: '>=18'} metro-cache@0.80.12: - resolution: - { - integrity: sha512-p5kNHh2KJ0pbQI/H7ZBPCEwkyNcSz7OUkslzsiIWBMPQGFJ/xArMwkV7I+GJcWh+b4m6zbLxE5fk6fqbVK1xGA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-p5kNHh2KJ0pbQI/H7ZBPCEwkyNcSz7OUkslzsiIWBMPQGFJ/xArMwkV7I+GJcWh+b4m6zbLxE5fk6fqbVK1xGA==} + engines: {node: '>=18'} metro-cache@0.80.8: - resolution: - { - integrity: sha512-5svz+89wSyLo7BxdiPDlwDTgcB9kwhNMfNhiBZPNQQs1vLFXxOkILwQiV5F2EwYT9DEr6OPZ0hnJkZfRQ8lDYQ==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-5svz+89wSyLo7BxdiPDlwDTgcB9kwhNMfNhiBZPNQQs1vLFXxOkILwQiV5F2EwYT9DEr6OPZ0hnJkZfRQ8lDYQ==} + engines: {node: '>=18'} metro-config@0.80.12: - resolution: - { - integrity: sha512-4rwOWwrhm62LjB12ytiuR5NgK1ZBNr24/He8mqCsC+HXZ+ATbrewLNztzbAZHtFsrxP4D4GLTGgh96pCpYLSAQ==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-4rwOWwrhm62LjB12ytiuR5NgK1ZBNr24/He8mqCsC+HXZ+ATbrewLNztzbAZHtFsrxP4D4GLTGgh96pCpYLSAQ==} + engines: {node: '>=18'} peerDependencies: - metro-transform-worker: "*" + metro-transform-worker: '*' peerDependenciesMeta: metro-transform-worker: optional: true metro-config@0.80.8: - resolution: - { - integrity: sha512-VGQJpfJawtwRzGzGXVUoohpIkB0iPom4DmSbAppKfumdhtLA8uVeEPp2GM61kL9hRvdbMhdWA7T+hZFDlo4mJA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-VGQJpfJawtwRzGzGXVUoohpIkB0iPom4DmSbAppKfumdhtLA8uVeEPp2GM61kL9hRvdbMhdWA7T+hZFDlo4mJA==} + engines: {node: '>=18'} peerDependencies: - metro-transform-worker: "*" + metro-transform-worker: '*' peerDependenciesMeta: metro-transform-worker: optional: true metro-core@0.80.12: - resolution: - { - integrity: sha512-QqdJ/yAK+IpPs2HU/h5v2pKEdANBagSsc6DRSjnwSyJsCoHlmyJKCaCJ7KhWGx+N4OHxh37hoA8fc2CuZbx0Fw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-QqdJ/yAK+IpPs2HU/h5v2pKEdANBagSsc6DRSjnwSyJsCoHlmyJKCaCJ7KhWGx+N4OHxh37hoA8fc2CuZbx0Fw==} + engines: {node: '>=18'} metro-core@0.80.8: - resolution: - { - integrity: sha512-g6lud55TXeISRTleW6SHuPFZHtYrpwNqbyFIVd9j9Ofrb5IReiHp9Zl8xkAfZQp8v6ZVgyXD7c130QTsCz+vBw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-g6lud55TXeISRTleW6SHuPFZHtYrpwNqbyFIVd9j9Ofrb5IReiHp9Zl8xkAfZQp8v6ZVgyXD7c130QTsCz+vBw==} + engines: {node: '>=18'} metro-file-map@0.80.12: - resolution: - { - integrity: sha512-sYdemWSlk66bWzW2wp79kcPMzwuG32x1ZF3otI0QZTmrnTaaTiGyhE66P1z6KR4n2Eu5QXiABa6EWbAQv0r8bw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-sYdemWSlk66bWzW2wp79kcPMzwuG32x1ZF3otI0QZTmrnTaaTiGyhE66P1z6KR4n2Eu5QXiABa6EWbAQv0r8bw==} + engines: {node: '>=18'} metro-file-map@0.80.8: - resolution: - { - integrity: sha512-eQXMFM9ogTfDs2POq7DT2dnG7rayZcoEgRbHPXvhUWkVwiKkro2ngcBE++ck/7A36Cj5Ljo79SOkYwHaWUDYDw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-eQXMFM9ogTfDs2POq7DT2dnG7rayZcoEgRbHPXvhUWkVwiKkro2ngcBE++ck/7A36Cj5Ljo79SOkYwHaWUDYDw==} + engines: {node: '>=18'} metro-minify-terser@0.80.12: - resolution: - { - integrity: sha512-muWzUw3y5k+9083ZoX9VaJLWEV2Jcgi+Oan0Mmb/fBNMPqP9xVDuy4pOMn/HOiGndgfh/MK7s4bsjkyLJKMnXQ==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-muWzUw3y5k+9083ZoX9VaJLWEV2Jcgi+Oan0Mmb/fBNMPqP9xVDuy4pOMn/HOiGndgfh/MK7s4bsjkyLJKMnXQ==} + engines: {node: '>=18'} metro-minify-terser@0.80.8: - resolution: - { - integrity: sha512-y8sUFjVvdeUIINDuW1sejnIjkZfEF+7SmQo0EIpYbWmwh+kq/WMj74yVaBWuqNjirmUp1YNfi3alT67wlbBWBQ==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-y8sUFjVvdeUIINDuW1sejnIjkZfEF+7SmQo0EIpYbWmwh+kq/WMj74yVaBWuqNjirmUp1YNfi3alT67wlbBWBQ==} + engines: {node: '>=18'} metro-minify-uglify@0.76.8: - resolution: - { - integrity: sha512-6l8/bEvtVaTSuhG1FqS0+Mc8lZ3Bl4RI8SeRIifVLC21eeSDp4CEBUWSGjpFyUDfi6R5dXzYaFnSgMNyfxADiQ==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-6l8/bEvtVaTSuhG1FqS0+Mc8lZ3Bl4RI8SeRIifVLC21eeSDp4CEBUWSGjpFyUDfi6R5dXzYaFnSgMNyfxADiQ==} + engines: {node: '>=16'} metro-react-native-babel-preset@0.76.8: - resolution: - { - integrity: sha512-Ptza08GgqzxEdK8apYsjTx2S8WDUlS2ilBlu9DR1CUcHmg4g3kOkFylZroogVAUKtpYQNYwAvdsjmrSdDNtiAg==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-Ptza08GgqzxEdK8apYsjTx2S8WDUlS2ilBlu9DR1CUcHmg4g3kOkFylZroogVAUKtpYQNYwAvdsjmrSdDNtiAg==} + engines: {node: '>=16'} peerDependencies: - "@babel/core": "*" + '@babel/core': '*' metro-react-native-babel-preset@0.77.0: - resolution: - { - integrity: sha512-HPPD+bTxADtoE4y/4t1txgTQ1LVR6imOBy7RMHUsqMVTbekoi8Ph5YI9vKX2VMPtVWeFt0w9YnCSLPa76GcXsA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-HPPD+bTxADtoE4y/4t1txgTQ1LVR6imOBy7RMHUsqMVTbekoi8Ph5YI9vKX2VMPtVWeFt0w9YnCSLPa76GcXsA==} + engines: {node: '>=18'} peerDependencies: - "@babel/core": "*" + '@babel/core': '*' metro-react-native-babel-transformer@0.77.0: - resolution: - { - integrity: sha512-uCV1Kt4ebY9/hT7ayDGMDgIsrbyxiBHNP+q0LGxscOx3D/QODv1z+WhfC4Hy0/1wDCGV3l0EQrfLqM+7qpjsWA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-uCV1Kt4ebY9/hT7ayDGMDgIsrbyxiBHNP+q0LGxscOx3D/QODv1z+WhfC4Hy0/1wDCGV3l0EQrfLqM+7qpjsWA==} + engines: {node: '>=18'} peerDependencies: - "@babel/core": "*" + '@babel/core': '*' metro-resolver@0.80.12: - resolution: - { - integrity: sha512-PR24gYRZnYHM3xT9pg6BdbrGbM/Cu1TcyIFBVlAk7qDAuHkUNQ1nMzWumWs+kwSvtd9eZGzHoucGJpTUEeLZAw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-PR24gYRZnYHM3xT9pg6BdbrGbM/Cu1TcyIFBVlAk7qDAuHkUNQ1nMzWumWs+kwSvtd9eZGzHoucGJpTUEeLZAw==} + engines: {node: '>=18'} metro-resolver@0.80.8: - resolution: - { - integrity: sha512-JdtoJkP27GGoZ2HJlEsxs+zO7jnDUCRrmwXJozTlIuzLHMRrxgIRRby9fTCbMhaxq+iA9c+wzm3iFb4NhPmLbQ==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-JdtoJkP27GGoZ2HJlEsxs+zO7jnDUCRrmwXJozTlIuzLHMRrxgIRRby9fTCbMhaxq+iA9c+wzm3iFb4NhPmLbQ==} + engines: {node: '>=18'} metro-runtime@0.80.12: - resolution: - { - integrity: sha512-LIx7+92p5rpI0i6iB4S4GBvvLxStNt6fF0oPMaUd1Weku7jZdfkCZzmrtDD9CSQ6EPb0T9NUZoyXIxlBa3wOCw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-LIx7+92p5rpI0i6iB4S4GBvvLxStNt6fF0oPMaUd1Weku7jZdfkCZzmrtDD9CSQ6EPb0T9NUZoyXIxlBa3wOCw==} + engines: {node: '>=18'} metro-runtime@0.80.8: - resolution: - { - integrity: sha512-2oScjfv6Yb79PelU1+p8SVrCMW9ZjgEiipxq7jMRn8mbbtWzyv3g8Mkwr+KwOoDFI/61hYPUbY8cUnu278+x1g==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-2oScjfv6Yb79PelU1+p8SVrCMW9ZjgEiipxq7jMRn8mbbtWzyv3g8Mkwr+KwOoDFI/61hYPUbY8cUnu278+x1g==} + engines: {node: '>=18'} metro-source-map@0.80.12: - resolution: - { - integrity: sha512-o+AXmE7hpvM8r8MKsx7TI21/eerYYy2DCDkWfoBkv+jNkl61khvDHlQn0cXZa6lrcNZiZkl9oHSMcwLLIrFmpw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-o+AXmE7hpvM8r8MKsx7TI21/eerYYy2DCDkWfoBkv+jNkl61khvDHlQn0cXZa6lrcNZiZkl9oHSMcwLLIrFmpw==} + engines: {node: '>=18'} metro-source-map@0.80.8: - resolution: - { - integrity: sha512-+OVISBkPNxjD4eEKhblRpBf463nTMk3KMEeYS8Z4xM/z3qujGJGSsWUGRtH27+c6zElaSGtZFiDMshEb8mMKQg==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-+OVISBkPNxjD4eEKhblRpBf463nTMk3KMEeYS8Z4xM/z3qujGJGSsWUGRtH27+c6zElaSGtZFiDMshEb8mMKQg==} + engines: {node: '>=18'} metro-symbolicate@0.80.12: - resolution: - { - integrity: sha512-/dIpNdHksXkGHZXARZpL7doUzHqSNxgQ8+kQGxwpJuHnDhGkENxB5PS2QBaTDdEcmyTMjS53CN1rl9n1gR6fmw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-/dIpNdHksXkGHZXARZpL7doUzHqSNxgQ8+kQGxwpJuHnDhGkENxB5PS2QBaTDdEcmyTMjS53CN1rl9n1gR6fmw==} + engines: {node: '>=18'} hasBin: true metro-symbolicate@0.80.8: - resolution: - { - integrity: sha512-nwhYySk79jQhwjL9QmOUo4wS+/0Au9joEryDWw7uj4kz2yvw1uBjwmlql3BprQCBzRdB3fcqOP8kO8Es+vE31g==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-nwhYySk79jQhwjL9QmOUo4wS+/0Au9joEryDWw7uj4kz2yvw1uBjwmlql3BprQCBzRdB3fcqOP8kO8Es+vE31g==} + engines: {node: '>=18'} hasBin: true metro-transform-plugins@0.80.12: - resolution: - { - integrity: sha512-WQWp00AcZvXuQdbjQbx1LzFR31IInlkCDYJNRs6gtEtAyhwpMMlL2KcHmdY+wjDO9RPcliZ+Xl1riOuBecVlPA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-WQWp00AcZvXuQdbjQbx1LzFR31IInlkCDYJNRs6gtEtAyhwpMMlL2KcHmdY+wjDO9RPcliZ+Xl1riOuBecVlPA==} + engines: {node: '>=18'} metro-transform-plugins@0.80.8: - resolution: - { - integrity: sha512-sSu8VPL9Od7w98MftCOkQ1UDeySWbsIAS5I54rW22BVpPnI3fQ42srvqMLaJUQPjLehUanq8St6OMBCBgH/UWw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-sSu8VPL9Od7w98MftCOkQ1UDeySWbsIAS5I54rW22BVpPnI3fQ42srvqMLaJUQPjLehUanq8St6OMBCBgH/UWw==} + engines: {node: '>=18'} metro-transform-worker@0.80.12: - resolution: - { - integrity: sha512-KAPFN1y3eVqEbKLx1I8WOarHPqDMUa8WelWxaJCNKO/yHCP26zELeqTJvhsQup+8uwB6EYi/sp0b6TGoh6lOEA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-KAPFN1y3eVqEbKLx1I8WOarHPqDMUa8WelWxaJCNKO/yHCP26zELeqTJvhsQup+8uwB6EYi/sp0b6TGoh6lOEA==} + engines: {node: '>=18'} metro-transform-worker@0.80.8: - resolution: - { - integrity: sha512-+4FG3TQk3BTbNqGkFb2uCaxYTfsbuFOCKMMURbwu0ehCP8ZJuTUramkaNZoATS49NSAkRgUltgmBa4YaKZ5mqw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-+4FG3TQk3BTbNqGkFb2uCaxYTfsbuFOCKMMURbwu0ehCP8ZJuTUramkaNZoATS49NSAkRgUltgmBa4YaKZ5mqw==} + engines: {node: '>=18'} metro@0.80.12: - resolution: - { - integrity: sha512-1UsH5FzJd9quUsD1qY+zUG4JY3jo3YEMxbMYH9jT6NK3j4iORhlwTK8fYTfAUBhDKjgLfKjAh7aoazNE23oIRA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-1UsH5FzJd9quUsD1qY+zUG4JY3jo3YEMxbMYH9jT6NK3j4iORhlwTK8fYTfAUBhDKjgLfKjAh7aoazNE23oIRA==} + engines: {node: '>=18'} hasBin: true metro@0.80.8: - resolution: - { - integrity: sha512-in7S0W11mg+RNmcXw+2d9S3zBGmCARDxIwoXJAmLUQOQoYsRP3cpGzyJtc7WOw8+FXfpgXvceD0u+PZIHXEL7g==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-in7S0W11mg+RNmcXw+2d9S3zBGmCARDxIwoXJAmLUQOQoYsRP3cpGzyJtc7WOw8+FXfpgXvceD0u+PZIHXEL7g==} + engines: {node: '>=18'} hasBin: true micromark-core-commonmark@1.1.0: - resolution: - { - integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==, - } + resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==} micromark-core-commonmark@2.0.0: - resolution: - { - integrity: sha512-jThOz/pVmAYUtkroV3D5c1osFXAMv9e0ypGDOIZuCeAe91/sD6BoE2Sjzt30yuXtwOYUmySOhMas/PVyh02itA==, - } + resolution: {integrity: sha512-jThOz/pVmAYUtkroV3D5c1osFXAMv9e0ypGDOIZuCeAe91/sD6BoE2Sjzt30yuXtwOYUmySOhMas/PVyh02itA==} micromark-extension-gfm-autolink-literal@1.0.5: - resolution: - { - integrity: sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==, - } + resolution: {integrity: sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==} micromark-extension-gfm-footnote@1.1.2: - resolution: - { - integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==, - } + resolution: {integrity: sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==} micromark-extension-gfm-strikethrough@1.0.7: - resolution: - { - integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==, - } + resolution: {integrity: sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==} micromark-extension-gfm-table@1.0.7: - resolution: - { - integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==, - } + resolution: {integrity: sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==} micromark-extension-gfm-tagfilter@1.0.2: - resolution: - { - integrity: sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==, - } + resolution: {integrity: sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==} micromark-extension-gfm-task-list-item@1.0.5: - resolution: - { - integrity: sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==, - } + resolution: {integrity: sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==} micromark-extension-gfm@2.0.3: - resolution: - { - integrity: sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==, - } + resolution: {integrity: sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==} micromark-extension-math@2.1.2: - resolution: - { - integrity: sha512-es0CcOV89VNS9wFmyn+wyFTKweXGW4CEvdaAca6SWRWPyYCbBisnjaHLjWO4Nszuiud84jCpkHsqAJoa768Pvg==, - } + resolution: {integrity: sha512-es0CcOV89VNS9wFmyn+wyFTKweXGW4CEvdaAca6SWRWPyYCbBisnjaHLjWO4Nszuiud84jCpkHsqAJoa768Pvg==} micromark-extension-mdx-expression@1.0.8: - resolution: - { - integrity: sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==, - } + resolution: {integrity: sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==} micromark-extension-mdx-jsx@1.0.5: - resolution: - { - integrity: sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==, - } + resolution: {integrity: sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==} micromark-extension-mdx-md@1.0.1: - resolution: - { - integrity: sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==, - } + resolution: {integrity: sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==} micromark-extension-mdxjs-esm@1.0.5: - resolution: - { - integrity: sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==, - } + resolution: {integrity: sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==} micromark-extension-mdxjs@1.0.1: - resolution: - { - integrity: sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==, - } + resolution: {integrity: sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==} micromark-factory-destination@1.1.0: - resolution: - { - integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==, - } + resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==} micromark-factory-destination@2.0.0: - resolution: - { - integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==, - } + resolution: {integrity: sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==} micromark-factory-label@1.1.0: - resolution: - { - integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==, - } + resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==} micromark-factory-label@2.0.0: - resolution: - { - integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==, - } + resolution: {integrity: sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==} micromark-factory-mdx-expression@1.0.9: - resolution: - { - integrity: sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==, - } + resolution: {integrity: sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==} micromark-factory-space@1.1.0: - resolution: - { - integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==, - } + resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==} micromark-factory-space@2.0.0: - resolution: - { - integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==, - } + resolution: {integrity: sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==} micromark-factory-title@1.1.0: - resolution: - { - integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==, - } + resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==} micromark-factory-title@2.0.0: - resolution: - { - integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==, - } + resolution: {integrity: sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==} micromark-factory-whitespace@1.1.0: - resolution: - { - integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==, - } + resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==} micromark-factory-whitespace@2.0.0: - resolution: - { - integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==, - } + resolution: {integrity: sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==} micromark-util-character@1.2.0: - resolution: - { - integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==, - } + resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==} micromark-util-character@2.1.0: - resolution: - { - integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==, - } + resolution: {integrity: sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==} micromark-util-chunked@1.1.0: - resolution: - { - integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==, - } + resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==} micromark-util-chunked@2.0.0: - resolution: - { - integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==, - } + resolution: {integrity: sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==} micromark-util-classify-character@1.1.0: - resolution: - { - integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==, - } + resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==} micromark-util-classify-character@2.0.0: - resolution: - { - integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==, - } + resolution: {integrity: sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==} micromark-util-combine-extensions@1.1.0: - resolution: - { - integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==, - } + resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==} micromark-util-combine-extensions@2.0.0: - resolution: - { - integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==, - } + resolution: {integrity: sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==} micromark-util-decode-numeric-character-reference@1.1.0: - resolution: - { - integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==, - } + resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==} micromark-util-decode-numeric-character-reference@2.0.1: - resolution: - { - integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==, - } + resolution: {integrity: sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==} micromark-util-decode-string@1.1.0: - resolution: - { - integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==, - } + resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==} micromark-util-encode@1.1.0: - resolution: - { - integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==, - } + resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==} micromark-util-encode@2.0.0: - resolution: - { - integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==, - } + resolution: {integrity: sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==} micromark-util-events-to-acorn@1.2.3: - resolution: - { - integrity: sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==, - } + resolution: {integrity: sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==} micromark-util-html-tag-name@1.2.0: - resolution: - { - integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==, - } + resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==} micromark-util-html-tag-name@2.0.0: - resolution: - { - integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==, - } + resolution: {integrity: sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==} micromark-util-normalize-identifier@1.1.0: - resolution: - { - integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==, - } + resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==} micromark-util-normalize-identifier@2.0.0: - resolution: - { - integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==, - } + resolution: {integrity: sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==} micromark-util-resolve-all@1.1.0: - resolution: - { - integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==, - } + resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==} micromark-util-resolve-all@2.0.0: - resolution: - { - integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==, - } + resolution: {integrity: sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==} micromark-util-sanitize-uri@1.2.0: - resolution: - { - integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==, - } + resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==} micromark-util-sanitize-uri@2.0.0: - resolution: - { - integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==, - } + resolution: {integrity: sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==} micromark-util-subtokenize@1.1.0: - resolution: - { - integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==, - } + resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==} micromark-util-subtokenize@2.0.0: - resolution: - { - integrity: sha512-vc93L1t+gpR3p8jxeVdaYlbV2jTYteDje19rNSS/H5dlhxUYll5Fy6vJ2cDwP8RnsXi818yGty1ayP55y3W6fg==, - } + resolution: {integrity: sha512-vc93L1t+gpR3p8jxeVdaYlbV2jTYteDje19rNSS/H5dlhxUYll5Fy6vJ2cDwP8RnsXi818yGty1ayP55y3W6fg==} micromark-util-symbol@1.1.0: - resolution: - { - integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==, - } + resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==} micromark-util-symbol@2.0.0: - resolution: - { - integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==, - } + resolution: {integrity: sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==} micromark-util-types@1.1.0: - resolution: - { - integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==, - } + resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==} micromark-util-types@2.0.0: - resolution: - { - integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==, - } + resolution: {integrity: sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==} micromark@3.2.0: - resolution: - { - integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==, - } + resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} micromark@4.0.0: - resolution: - { - integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==, - } + resolution: {integrity: sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==} micromatch@4.0.5: - resolution: - { - integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, - } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} micromatch@4.0.7: - resolution: - { - integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==, - } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==} + engines: {node: '>=8.6'} miller-rabin@4.0.1: - resolution: - { - integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==, - } + resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==} hasBin: true mime-db@1.33.0: - resolution: - { - integrity: sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==} + engines: {node: '>= 0.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-types@2.1.18: - resolution: - { - integrity: sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==} + 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 mime@2.6.0: - resolution: - { - integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==, - } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} + engines: {node: '>=4.0.0'} hasBin: true mimic-fn@1.2.0: - resolution: - { - integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==} + engines: {node: '>=4'} mimic-fn@2.1.0: - resolution: - { - integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} mimic-fn@3.1.0: - resolution: - { - integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} + engines: {node: '>=8'} mimic-fn@4.0.0: - resolution: - { - integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} mimic-response@1.0.1: - resolution: - { - integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} + engines: {node: '>=4'} mimic-response@3.1.0: - resolution: - { - integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + engines: {node: '>=10'} min-document@2.19.0: - resolution: - { - integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==, - } + resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==} 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'} mini-css-extract-plugin@2.8.1: - resolution: - { - integrity: sha512-/1HDlyFRxWIZPI1ZpgqlZ8jMw/1Dp/dl3P0L1jtZ+zVcHqwPhGwaJwKL00WVgfnBy6PWCde9W65or7IIETImuA==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-/1HDlyFRxWIZPI1ZpgqlZ8jMw/1Dp/dl3P0L1jtZ+zVcHqwPhGwaJwKL00WVgfnBy6PWCde9W65or7IIETImuA==} + engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 minimalistic-assert@1.0.1: - resolution: - { - integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==, - } + resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} minimalistic-crypto-utils@1.0.1: - resolution: - { - integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==, - } + resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} 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@8.0.4: - resolution: - { - integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==, - } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==} + engines: {node: '>=16 || 14 >=14.17'} minimatch@9.0.3: - resolution: - { - integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==, - } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} + engines: {node: '>=16 || 14 >=14.17'} minimatch@9.0.4: - resolution: - { - integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==, - } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==} + engines: {node: '>=16 || 14 >=14.17'} minimist-options@4.1.0: - resolution: - { - integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} + engines: {node: '>= 6'} minimist@1.2.8: - resolution: - { - integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, - } + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} minipass-collect@1.0.2: - resolution: - { - integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} + engines: {node: '>= 8'} minipass-collect@2.0.1: - resolution: - { - integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==, - } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==} + engines: {node: '>=16 || 14 >=14.17'} minipass-flush@1.0.5: - resolution: - { - integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==} + engines: {node: '>= 8'} minipass-pipeline@1.2.4: - resolution: - { - integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==} + engines: {node: '>=8'} minipass@2.9.0: - resolution: - { - integrity: sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==, - } + resolution: {integrity: sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==} minipass@3.1.6: - resolution: - { - integrity: sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ==} + engines: {node: '>=8'} minipass@3.3.6: - resolution: - { - integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} minipass@4.2.8: - resolution: - { - integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==} + engines: {node: '>=8'} minipass@5.0.0: - resolution: - { - integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} + engines: {node: '>=8'} minipass@7.0.4: - resolution: - { - integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==, - } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} + engines: {node: '>=16 || 14 >=14.17'} minizlib@1.3.3: - resolution: - { - integrity: sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==, - } + resolution: {integrity: sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==} minizlib@2.1.2: - resolution: - { - integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} miscreant@0.3.2: - resolution: - { - integrity: sha512-fL9KxsQz9BJB2KGPMHFrReioywkiomBiuaLk6EuChijK0BsJsIKJXdVomR+/bPj5mvbFD6wM0CM3bZio9g7OHA==, - } + resolution: {integrity: sha512-fL9KxsQz9BJB2KGPMHFrReioywkiomBiuaLk6EuChijK0BsJsIKJXdVomR+/bPj5mvbFD6wM0CM3bZio9g7OHA==} mixin-object@2.0.1: - resolution: - { - integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==} + engines: {node: '>=0.10.0'} mkdirp-classic@0.5.3: - resolution: - { - integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==, - } + resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} mkdirp-promise@5.0.1: - resolution: - { - integrity: sha512-Hepn5kb1lJPtVW84RFT40YG1OddBNTOVUZR2bzQUHc+Z03en8/3uX0+060JDhcEzyO08HmipsN9DcnFMxhIL9w==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-Hepn5kb1lJPtVW84RFT40YG1OddBNTOVUZR2bzQUHc+Z03en8/3uX0+060JDhcEzyO08HmipsN9DcnFMxhIL9w==} + engines: {node: '>=4'} deprecated: This package is broken and no longer maintained. 'mkdirp' itself supports promises now, please switch to that. mkdirp@0.5.6: - resolution: - { - integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==, - } + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} hasBin: true mkdirp@1.0.4: - resolution: - { - integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} hasBin: true mock-fs@4.14.0: - resolution: - { - integrity: sha512-qYvlv/exQ4+svI3UOvPUpLDF0OMX5euvUH0Ny4N5QyRyhNdgAgUrVH3iUINSzEPLvx0kbo/Bp28GJKIqvE7URw==, - } + resolution: {integrity: sha512-qYvlv/exQ4+svI3UOvPUpLDF0OMX5euvUH0Ny4N5QyRyhNdgAgUrVH3iUINSzEPLvx0kbo/Bp28GJKIqvE7URw==} mock-socket@9.3.1: - resolution: - { - integrity: sha512-qxBgB7Qa2sEQgHFjj0dSigq7fX4k6Saisd5Nelwp2q8mlbAFh5dHV9JTTlF8viYJLSSWgMCZFUom8PJcMNBoJw==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-qxBgB7Qa2sEQgHFjj0dSigq7fX4k6Saisd5Nelwp2q8mlbAFh5dHV9JTTlF8viYJLSSWgMCZFUom8PJcMNBoJw==} + engines: {node: '>= 8'} modify-filename@1.1.0: - resolution: - { - integrity: sha512-EickqnKq3kVVaZisYuCxhtKbZjInCuwgwZWyAmRIp1NTMhri7r3380/uqwrUHfaDiPzLVTuoNy4whX66bxPVog==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-EickqnKq3kVVaZisYuCxhtKbZjInCuwgwZWyAmRIp1NTMhri7r3380/uqwrUHfaDiPzLVTuoNy4whX66bxPVog==} + engines: {node: '>=0.10.0'} module-alias@2.2.3: - resolution: - { - integrity: sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q==, - } + resolution: {integrity: sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q==} module-details-from-path@1.0.3: - resolution: - { - integrity: sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==, - } + resolution: {integrity: sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==} moment@2.29.1: - resolution: - { - integrity: sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==, - } + resolution: {integrity: sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ==} moment@2.30.1: - resolution: - { - integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==, - } + resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==} moo-color@1.0.3: - resolution: - { - integrity: sha512-i/+ZKXMDf6aqYtBhuOcej71YSlbjT3wCO/4H1j8rPvxDJEifdwgg5MaFyu6iYAT8GBZJg2z0dkgK4YMzvURALQ==, - } + resolution: {integrity: sha512-i/+ZKXMDf6aqYtBhuOcej71YSlbjT3wCO/4H1j8rPvxDJEifdwgg5MaFyu6iYAT8GBZJg2z0dkgK4YMzvURALQ==} morgan@1.10.0: - resolution: - { - integrity: sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==} + engines: {node: '>= 0.8.0'} mri@1.1.4: - resolution: - { - integrity: sha512-6y7IjGPm8AzlvoUrwAaw1tLnUBudaS3752vcd8JtrpGGQn+rXIe63LFVHm/YMwtqAuh+LJPCFdlLYPWM1nYn6w==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-6y7IjGPm8AzlvoUrwAaw1tLnUBudaS3752vcd8JtrpGGQn+rXIe63LFVHm/YMwtqAuh+LJPCFdlLYPWM1nYn6w==} + engines: {node: '>=4'} mri@1.2.0: - resolution: - { - integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} 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.2: - resolution: - { - integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, - } + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} ms@2.1.3: - resolution: - { - integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, - } + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} msw@2.2.12: - resolution: - { - integrity: sha512-thmjEipUvr+XGawcNOh4T8+T2TN3qKWPfF0Ewx6ub1HIATXBsjOhnjV6Wx2BmmFThKEtYYC+RygrvkpG4DzoZw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-thmjEipUvr+XGawcNOh4T8+T2TN3qKWPfF0Ewx6ub1HIATXBsjOhnjV6Wx2BmmFThKEtYYC+RygrvkpG4DzoZw==} + engines: {node: '>=18'} hasBin: true peerDependencies: - typescript: ">= 4.7.x" + typescript: '>= 4.7.x' peerDependenciesMeta: typescript: optional: true msw@2.2.13: - resolution: - { - integrity: sha512-ljFf1xZsU0b4zv1l7xzEmC6OZA6yD06hcx0H+dc8V0VypaP3HGYJa1rMLjQbBWl32ptGhcfwcPCWDB1wjmsftw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-ljFf1xZsU0b4zv1l7xzEmC6OZA6yD06hcx0H+dc8V0VypaP3HGYJa1rMLjQbBWl32ptGhcfwcPCWDB1wjmsftw==} + engines: {node: '>=18'} hasBin: true peerDependencies: - typescript: ">= 4.7.x" + typescript: '>= 4.7.x' peerDependenciesMeta: typescript: optional: true msw@2.3.4: - resolution: - { - integrity: sha512-sHMlwrajgmZSA2l1o7qRSe+azm/I+x9lvVVcOxAzi4vCtH8uVPJk1K5BQYDkzGl+tt0RvM9huEXXdeGrgcc79g==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-sHMlwrajgmZSA2l1o7qRSe+azm/I+x9lvVVcOxAzi4vCtH8uVPJk1K5BQYDkzGl+tt0RvM9huEXXdeGrgcc79g==} + engines: {node: '>=18'} hasBin: true peerDependencies: - typescript: ">= 4.7.x" + typescript: '>= 4.7.x' peerDependenciesMeta: typescript: optional: true multi-sort-stream@1.0.4: - resolution: - { - integrity: sha512-hAZ8JOEQFbgdLe8HWZbb7gdZg0/yAIHF00Qfo3kd0rXFv96nXe+/bPTrKHZ2QMHugGX4FiAyET1Lt+jiB+7Qlg==, - } + resolution: {integrity: sha512-hAZ8JOEQFbgdLe8HWZbb7gdZg0/yAIHF00Qfo3kd0rXFv96nXe+/bPTrKHZ2QMHugGX4FiAyET1Lt+jiB+7Qlg==} multibase@0.6.1: - resolution: - { - integrity: sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw==, - } + resolution: {integrity: sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw==} deprecated: This module has been superseded by the multiformats module multibase@0.7.0: - resolution: - { - integrity: sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==, - } + resolution: {integrity: sha512-TW8q03O0f6PNFTQDvh3xxH03c8CjGaaYrjkl9UQPG6rz53TQzzxJVCIWVjzcbN/Q5Y53Zd0IBQBMVktVgNx4Fg==} deprecated: This module has been superseded by the multiformats module multicast-dns@7.2.5: - resolution: - { - integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==, - } + resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} hasBin: true multicodec@0.5.7: - resolution: - { - integrity: sha512-PscoRxm3f+88fAtELwUnZxGDkduE2HD9Q6GHUOywQLjOGT/HAdhjLDYNZ1e7VR0s0TP0EwZ16LNUTFpoBGivOA==, - } + resolution: {integrity: sha512-PscoRxm3f+88fAtELwUnZxGDkduE2HD9Q6GHUOywQLjOGT/HAdhjLDYNZ1e7VR0s0TP0EwZ16LNUTFpoBGivOA==} deprecated: This module has been superseded by the multiformats module multicodec@1.0.4: - resolution: - { - integrity: sha512-NDd7FeS3QamVtbgfvu5h7fd1IlbaC4EQ0/pgU4zqE2vdHCmBGsUa0TiM8/TdSeG6BMPC92OOCf8F1ocE/Wkrrg==, - } + resolution: {integrity: sha512-NDd7FeS3QamVtbgfvu5h7fd1IlbaC4EQ0/pgU4zqE2vdHCmBGsUa0TiM8/TdSeG6BMPC92OOCf8F1ocE/Wkrrg==} deprecated: This module has been superseded by the multiformats module multiformats@13.1.0: - resolution: - { - integrity: sha512-HzdtdBwxsIkzpeXzhQ5mAhhuxcHbjEHH+JQoxt7hG/2HGFjjwyolLo7hbaexcnhoEuV4e0TNJ8kkpMjiEYY4VQ==, - } + resolution: {integrity: sha512-HzdtdBwxsIkzpeXzhQ5mAhhuxcHbjEHH+JQoxt7hG/2HGFjjwyolLo7hbaexcnhoEuV4e0TNJ8kkpMjiEYY4VQ==} multiformats@9.9.0: - resolution: - { - integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==, - } + resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==} multihashes@0.4.21: - resolution: - { - integrity: sha512-uVSvmeCWf36pU2nB4/1kzYZjsXD9vofZKpgudqkceYY5g2aZZXJ5r9lxuzoRLl1OAp28XljXsEJ/X/85ZsKmKw==, - } + resolution: {integrity: sha512-uVSvmeCWf36pU2nB4/1kzYZjsXD9vofZKpgudqkceYY5g2aZZXJ5r9lxuzoRLl1OAp28XljXsEJ/X/85ZsKmKw==} multipipe@4.0.0: - resolution: - { - integrity: sha512-jzcEAzFXoWwWwUbvHCNPwBlTz3WCWe/jPcXSmTfbo/VjRwRTfvLZ/bdvtiTdqCe8d4otCSsPCbhGYcX+eggpKQ==, - } + resolution: {integrity: sha512-jzcEAzFXoWwWwUbvHCNPwBlTz3WCWe/jPcXSmTfbo/VjRwRTfvLZ/bdvtiTdqCe8d4otCSsPCbhGYcX+eggpKQ==} mustache@4.0.0: - resolution: - { - integrity: sha512-FJgjyX/IVkbXBXYUwH+OYwQKqWpFPLaLVESd70yHjSDunwzV2hZOoTBvPf4KLoxesUzzyfTH6F784Uqd7Wm5yA==, - } - engines: { npm: ">=1.4.0" } + resolution: {integrity: sha512-FJgjyX/IVkbXBXYUwH+OYwQKqWpFPLaLVESd70yHjSDunwzV2hZOoTBvPf4KLoxesUzzyfTH6F784Uqd7Wm5yA==} + engines: {npm: '>=1.4.0'} hasBin: true mute-stream@0.0.7: - resolution: - { - integrity: sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==, - } + resolution: {integrity: sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==} mute-stream@1.0.0: - resolution: - { - integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} mv@2.1.1: - resolution: - { - integrity: sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==, - } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==} + engines: {node: '>=0.8.0'} mz@2.7.0: - resolution: - { - integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==, - } + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} nan@2.19.0: - resolution: - { - integrity: sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw==, - } + resolution: {integrity: sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw==} nan@2.20.0: - resolution: - { - integrity: sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==, - } + resolution: {integrity: sha512-bk3gXBZDGILuuo/6sKtr0DQmSThYHLtNCdSdXk9YkxD/jK6X2vmCyyXBBxyqZ4XcnzTyYEAThfX3DCEnLf6igw==} nano-json-stream-parser@0.1.2: - resolution: - { - integrity: sha512-9MqxMH/BSJC7dnLsEMPyfN5Dvoo49IsPFYMcHw3Bcfc2kN0lpHRBSzlMSVx4HGyJ7s9B31CyBTVehWJoQ8Ctew==, - } + resolution: {integrity: sha512-9MqxMH/BSJC7dnLsEMPyfN5Dvoo49IsPFYMcHw3Bcfc2kN0lpHRBSzlMSVx4HGyJ7s9B31CyBTVehWJoQ8Ctew==} nanoassert@1.1.0: - resolution: - { - integrity: sha512-C40jQ3NzfkP53NsO8kEOFd79p4b9kDXQMwgiY1z8ZwrDZgUyom0AHwGegF4Dm99L+YoYhuaB0ceerUcXmqr1rQ==, - } + resolution: {integrity: sha512-C40jQ3NzfkP53NsO8kEOFd79p4b9kDXQMwgiY1z8ZwrDZgUyom0AHwGegF4Dm99L+YoYhuaB0ceerUcXmqr1rQ==} nanoassert@2.0.0: - resolution: - { - integrity: sha512-7vO7n28+aYO4J+8w96AzhmU8G+Y/xpPDJz/se19ICsqj/momRbb9mh9ZUtkoJ5X3nTnPdhEJyc0qnM6yAsHBaA==, - } + resolution: {integrity: sha512-7vO7n28+aYO4J+8w96AzhmU8G+Y/xpPDJz/se19ICsqj/momRbb9mh9ZUtkoJ5X3nTnPdhEJyc0qnM6yAsHBaA==} nanoid@3.3.7: - resolution: - { - integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==, - } - engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true napi-build-utils@1.0.2: - resolution: - { - integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==, - } + resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} natural-compare-lite@1.4.0: - resolution: - { - integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==, - } + resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} natural-compare@1.4.0: - resolution: - { - integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, - } + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} ncp@2.0.0: - resolution: - { - integrity: sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==, - } + resolution: {integrity: sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==} hasBin: true near-abi@0.1.1: - resolution: - { - integrity: sha512-RVDI8O+KVxRpC3KycJ1bpfVj9Zv+xvq9PlW1yIFl46GhrnLw83/72HqHGjGDjQ8DtltkcpSjY9X3YIGZ+1QyzQ==, - } + resolution: {integrity: sha512-RVDI8O+KVxRpC3KycJ1bpfVj9Zv+xvq9PlW1yIFl46GhrnLw83/72HqHGjGDjQ8DtltkcpSjY9X3YIGZ+1QyzQ==} near-api-js@3.0.2: - resolution: - { - integrity: sha512-o8rgHH5ZV+V9grZTu4GSILupq41JyU3Mt/G6rZ2pBybHA2ozkfp9oIXKRqC4mCkbUtYLy//YoXuLRGLsRDlB2w==, - } + resolution: {integrity: sha512-o8rgHH5ZV+V9grZTu4GSILupq41JyU3Mt/G6rZ2pBybHA2ozkfp9oIXKRqC4mCkbUtYLy//YoXuLRGLsRDlB2w==} negotiator@0.6.3: - resolution: - { - integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} + engines: {node: '>= 0.6'} neo-async@2.6.2: - resolution: - { - integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==, - } + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} nested-error-stacks@2.0.1: - resolution: - { - integrity: sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==, - } + resolution: {integrity: sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==} next-mdx-remote@4.4.1: - resolution: - { - integrity: sha512-1BvyXaIou6xy3XoNF4yaMZUCb6vD2GTAa5ciOa6WoO+gAUTYsb1K4rI/HSC2ogAWLrb/7VSV52skz07vOzmqIQ==, - } - engines: { node: ">=14", npm: ">=7" } + resolution: {integrity: sha512-1BvyXaIou6xy3XoNF4yaMZUCb6vD2GTAa5ciOa6WoO+gAUTYsb1K4rI/HSC2ogAWLrb/7VSV52skz07vOzmqIQ==} + engines: {node: '>=14', npm: '>=7'} peerDependencies: - react: ">=16.x <=18.x" - react-dom: ">=16.x <=18.x" + react: '>=16.x <=18.x' + react-dom: '>=16.x <=18.x' next-seo@6.5.0: - resolution: - { - integrity: sha512-MfzUeWTN/x/rsKp/1n0213eojO97lIl0unxqbeCY+6pAucViHDA8GSLRRcXpgjsSmBxfCFdfpu7LXbt4ANQoNQ==, - } + resolution: {integrity: sha512-MfzUeWTN/x/rsKp/1n0213eojO97lIl0unxqbeCY+6pAucViHDA8GSLRRcXpgjsSmBxfCFdfpu7LXbt4ANQoNQ==} peerDependencies: next: ^8.1.1-canary.54 || >=9.0.0 - react: ">=16.0.0" - react-dom: ">=16.0.0" + react: '>=16.0.0' + react-dom: '>=16.0.0' next-themes@0.2.1: - resolution: - { - integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==, - } + resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==} peerDependencies: - next: "*" - react: "*" - react-dom: "*" + next: '*' + react: '*' + react-dom: '*' next-tick@1.1.0: - resolution: - { - integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==, - } + resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} next@13.2.4: - resolution: - { - integrity: sha512-g1I30317cThkEpvzfXujf0O4wtaQHtDCLhlivwlTJ885Ld+eOgcz7r3TGQzeU+cSRoNHtD8tsJgzxVdYojFssw==, - } - engines: { node: ">=14.6.0" } + resolution: {integrity: sha512-g1I30317cThkEpvzfXujf0O4wtaQHtDCLhlivwlTJ885Ld+eOgcz7r3TGQzeU+cSRoNHtD8tsJgzxVdYojFssw==} + engines: {node: '>=14.6.0'} hasBin: true peerDependencies: - "@opentelemetry/api": ^1.4.0 - fibers: ">= 3.1.0" + '@opentelemetry/api': ^1.4.0 + fibers: '>= 3.1.0' node-sass: ^6.0.0 || ^7.0.0 react: ^18.2.0 react-dom: ^18.2.0 sass: ^1.3.0 peerDependenciesMeta: - "@opentelemetry/api": + '@opentelemetry/api': optional: true fibers: optional: true @@ -36407,150 +24494,93 @@ packages: optional: true next@14.2.12: - resolution: - { - integrity: sha512-cDOtUSIeoOvt1skKNihdExWMTybx3exnvbFbb9ecZDIxlvIbREQzt9A5Km3Zn3PfU+IFjyYGsHS+lN9VInAGKA==, - } - engines: { node: ">=18.17.0" } + resolution: {integrity: sha512-cDOtUSIeoOvt1skKNihdExWMTybx3exnvbFbb9ecZDIxlvIbREQzt9A5Km3Zn3PfU+IFjyYGsHS+lN9VInAGKA==} + engines: {node: '>=18.17.0'} hasBin: true peerDependencies: - "@opentelemetry/api": ^1.1.0 - "@playwright/test": ^1.41.2 + '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.41.2 react: ^18.2.0 react-dom: ^18.2.0 sass: ^1.3.0 peerDependenciesMeta: - "@opentelemetry/api": + '@opentelemetry/api': optional: true - "@playwright/test": + '@playwright/test': optional: true sass: optional: true nextra-theme-docs@2.13.4: - resolution: - { - integrity: sha512-2XOoMfwBCTYBt8ds4ZHftt9Wyf2XsykiNo02eir/XEYB+sGeUoE77kzqfidjEOKCSzOHYbK9BDMcg2+B/2vYRw==, - } + resolution: {integrity: sha512-2XOoMfwBCTYBt8ds4ZHftt9Wyf2XsykiNo02eir/XEYB+sGeUoE77kzqfidjEOKCSzOHYbK9BDMcg2+B/2vYRw==} peerDependencies: - next: ">=9.5.3" + next: '>=9.5.3' nextra: 2.13.4 - react: ">=16.13.1" - react-dom: ">=16.13.1" + react: '>=16.13.1' + react-dom: '>=16.13.1' nextra@2.13.4: - resolution: - { - integrity: sha512-7of2rSBxuUa3+lbMmZwG9cqgftcoNOVQLTT6Rxf3EhBR9t1EI7b43dted8YoqSNaigdE3j1CoyNkX8N/ZzlEpw==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-7of2rSBxuUa3+lbMmZwG9cqgftcoNOVQLTT6Rxf3EhBR9t1EI7b43dted8YoqSNaigdE3j1CoyNkX8N/ZzlEpw==} + engines: {node: '>=16'} peerDependencies: - next: ">=9.5.3" - react: ">=16.13.1" - react-dom: ">=16.13.1" + next: '>=9.5.3' + react: '>=16.13.1' + react-dom: '>=16.13.1' nice-try@1.0.5: - resolution: - { - integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==, - } + resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} no-case@3.0.4: - resolution: - { - integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==, - } + resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} nocache@2.1.0: - resolution: - { - integrity: sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==, - } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q==} + engines: {node: '>=4.0.0'} nocache@3.0.4: - resolution: - { - integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==} + engines: {node: '>=12.0.0'} nock@13.5.4: - resolution: - { - integrity: sha512-yAyTfdeNJGGBFxWdzSKCBYxs5FxLbCg5X5Q4ets974hcQzG1+qCxvIyOo4j2Ry6MUlhWVMX4OoYDefAIIwupjw==, - } - engines: { node: ">= 10.13" } + resolution: {integrity: sha512-yAyTfdeNJGGBFxWdzSKCBYxs5FxLbCg5X5Q4ets974hcQzG1+qCxvIyOo4j2Ry6MUlhWVMX4OoYDefAIIwupjw==} + engines: {node: '>= 10.13'} node-abi@3.56.0: - resolution: - { - integrity: sha512-fZjdhDOeRcaS+rcpve7XuwHBmktS1nS1gzgghwKUQQ8nTy2FdSDr6ZT8k6YhvlJeHmmQMYiT/IH9hfco5zeW2Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-fZjdhDOeRcaS+rcpve7XuwHBmktS1nS1gzgghwKUQQ8nTy2FdSDr6ZT8k6YhvlJeHmmQMYiT/IH9hfco5zeW2Q==} + engines: {node: '>=10'} node-abort-controller@3.1.1: - resolution: - { - integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==, - } + resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==} node-addon-api@1.7.2: - resolution: - { - integrity: sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==, - } + resolution: {integrity: sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==} node-addon-api@2.0.2: - resolution: - { - integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==, - } + resolution: {integrity: sha512-Ntyt4AIXyaLIuMHF6IOoTakB3K+RWxwtsHNRxllEoA6vPwP9o4866g6YWDLUdnucilZhmkxiHwHr11gAENw+QA==} node-addon-api@3.2.1: - resolution: - { - integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==, - } + resolution: {integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==} node-addon-api@5.1.0: - resolution: - { - integrity: sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==, - } + resolution: {integrity: sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==} node-addon-api@6.1.0: - resolution: - { - integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==, - } + resolution: {integrity: sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==} node-dir@0.1.17: - resolution: - { - integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==, - } - engines: { node: ">= 0.10.5" } + resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} + engines: {node: '>= 0.10.5'} node-domexception@1.0.0: - resolution: - { - integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==, - } - engines: { node: ">=10.5.0" } + resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==} + engines: {node: '>=10.5.0'} node-fetch-native@1.6.4: - resolution: - { - integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==, - } + resolution: {integrity: sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==} node-fetch@2.6.13: - resolution: - { - integrity: sha512-StxNAxh15zr77QvvkmveSQ8uCQ4+v5FkvNTj0OESmiHu+VRi/gXArXtkWMElOsOUNLtUEvI4yS+rdtOHZTwlQA==, - } - engines: { node: 4.x || >=6.0.0 } + resolution: {integrity: sha512-StxNAxh15zr77QvvkmveSQ8uCQ4+v5FkvNTj0OESmiHu+VRi/gXArXtkWMElOsOUNLtUEvI4yS+rdtOHZTwlQA==} + engines: {node: 4.x || >=6.0.0} peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: @@ -36558,11 +24588,8 @@ packages: optional: true node-fetch@2.6.7: - resolution: - { - integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==, - } - engines: { node: 4.x || >=6.0.0 } + resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} + engines: {node: 4.x || >=6.0.0} peerDependencies: encoding: ^0.1.0 peerDependenciesMeta: @@ -36570,11 +24597,8 @@ packages: optional: true 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: @@ -36582,1610 +24606,923 @@ packages: optional: true node-fetch@3.3.1: - resolution: - { - integrity: sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-cRVc/kyto/7E5shrWca1Wsea4y6tL9iYJE5FBCius3JQfb/4P4I295PfhgbJQBLTx6lATE4z+wK0rPM4VS2uow==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} node-fetch@3.3.2: - resolution: - { - integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} node-forge@1.3.1: - resolution: - { - integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==, - } - engines: { node: ">= 6.13.0" } + resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==} + engines: {node: '>= 6.13.0'} node-gyp-build@4.8.0: - resolution: - { - integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==, - } + resolution: {integrity: sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==} hasBin: true node-hid@2.1.2: - resolution: - { - integrity: sha512-qhCyQqrPpP93F/6Wc/xUR7L8mAJW0Z6R7HMQV8jCHHksAxNDe/4z4Un/H9CpLOT+5K39OPyt9tIQlavxWES3lg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-qhCyQqrPpP93F/6Wc/xUR7L8mAJW0Z6R7HMQV8jCHHksAxNDe/4z4Un/H9CpLOT+5K39OPyt9tIQlavxWES3lg==} + engines: {node: '>=10'} hasBin: true node-html-parser@5.4.2: - resolution: - { - integrity: sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==, - } + resolution: {integrity: sha512-RaBPP3+51hPne/OolXxcz89iYvQvKOydaqoePpOgXcrOKZhjVIzmpKZz+Hd/RBO2/zN2q6CNJhQzucVz+u3Jyw==} node-int64@0.4.0: - resolution: - { - integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==, - } + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} node-ipc@9.2.1: - resolution: - { - integrity: sha512-mJzaM6O3xHf9VT8BULvJSbdVbmHUKRNOH7zDDkCrA1/T+CVjq2WVIDfLt0azZRXpgArJtl3rtmEozrbXPZ9GaQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-mJzaM6O3xHf9VT8BULvJSbdVbmHUKRNOH7zDDkCrA1/T+CVjq2WVIDfLt0azZRXpgArJtl3rtmEozrbXPZ9GaQ==} + engines: {node: '>=8.0.0'} node-libs-react-native@1.2.1: - resolution: - { - integrity: sha512-2LkPntNVa5MInMxtP7fW9F/uGo7KZCURI5/YoNn9/qOGIQpxEqnsndQWAPipsw8+ZVrIxPGkKEgJ2sSdvz0NKQ==, - } + resolution: {integrity: sha512-2LkPntNVa5MInMxtP7fW9F/uGo7KZCURI5/YoNn9/qOGIQpxEqnsndQWAPipsw8+ZVrIxPGkKEgJ2sSdvz0NKQ==} node-modules-regexp@1.0.0: - resolution: - { - integrity: sha512-JMaRS9L4wSRIR+6PTVEikTrq/lMGEZR43a48ETeilY0Q0iMwVnccMFrUM1k+tNzmYuIU0Vh710bCUqHX+/+ctQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-JMaRS9L4wSRIR+6PTVEikTrq/lMGEZR43a48ETeilY0Q0iMwVnccMFrUM1k+tNzmYuIU0Vh710bCUqHX+/+ctQ==} + engines: {node: '>=0.10.0'} node-preload@0.2.1: - resolution: - { - integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==} + engines: {node: '>=8'} node-releases@2.0.14: - resolution: - { - integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==, - } + resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} node-stream-zip@1.15.0: - resolution: - { - integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==, - } - engines: { node: ">=0.12.0" } + resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==} + engines: {node: '>=0.12.0'} node-version-matches@2.0.1: - resolution: - { - integrity: sha512-oqk6+05FC0dNVY5NuXuhPEMq+m1b9ZjS9SIhVE9EjwCHZspnmjSO8npbKAEieinR8GeEgbecoQcYIvI/Kwcf6Q==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-oqk6+05FC0dNVY5NuXuhPEMq+m1b9ZjS9SIhVE9EjwCHZspnmjSO8npbKAEieinR8GeEgbecoQcYIvI/Kwcf6Q==} + engines: {node: '>=8'} node-version@1.2.0: - resolution: - { - integrity: sha512-ma6oU4Sk0qOoKEAymVoTvk8EdXEobdS7m/mAGhDJ8Rouugho48crHBORAmy5BoOcv8wraPM6xumapQp5hl4iIQ==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-ma6oU4Sk0qOoKEAymVoTvk8EdXEobdS7m/mAGhDJ8Rouugho48crHBORAmy5BoOcv8wraPM6xumapQp5hl4iIQ==} + engines: {node: '>=6.0.0'} nodemon@3.1.0: - resolution: - { - integrity: sha512-xqlktYlDMCepBJd43ZQhjWwMw2obW/JRvkrLxq5RCNcuDDX1DbcPT+qT1IlIIdf+DhnWs90JpTMe+Y5KxOchvA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-xqlktYlDMCepBJd43ZQhjWwMw2obW/JRvkrLxq5RCNcuDDX1DbcPT+qT1IlIIdf+DhnWs90JpTMe+Y5KxOchvA==} + engines: {node: '>=10'} hasBin: true nofilter@3.1.0: - resolution: - { - integrity: sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==, - } - engines: { node: ">=12.19" } + resolution: {integrity: sha512-l2NNj07e9afPnhAhvgVrCD/oy2Ai1yfLpuo3EpiO1jFTsB4sFz6oIfAfSZyQzVpkZQ9xS8ZS5g1jCBgq4Hwo0g==} + engines: {node: '>=12.19'} non-layered-tidy-tree-layout@2.0.2: - resolution: - { - integrity: sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==, - } + resolution: {integrity: sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==} nopt@1.0.10: - resolution: - { - integrity: sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==, - } + resolution: {integrity: sha512-NWmpvLSqUrgrAC9HCuxEvb+PSloHpqVu+FqcO4eeF2h5qYRhA7ev6KvelyQAKtegUbC6RypJnlEOhd8vloNKYg==} hasBin: true normalize-package-data@2.5.0: - resolution: - { - integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==, - } + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} normalize-package-data@3.0.3: - resolution: - { - integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==} + engines: {node: '>=10'} 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'} normalize-url@4.5.1: - resolution: - { - integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} + engines: {node: '>=8'} normalize-url@6.1.0: - resolution: - { - integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==} + engines: {node: '>=10'} normalize-wheel@1.0.1: - resolution: - { - integrity: sha512-1OnlAPZ3zgrk8B91HyRj+eVv+kS5u+Z0SCsak6Xil/kmgEia50ga7zfkumayonZrImffAxPU/5WcyGhzetHNPA==, - } + resolution: {integrity: sha512-1OnlAPZ3zgrk8B91HyRj+eVv+kS5u+Z0SCsak6Xil/kmgEia50ga7zfkumayonZrImffAxPU/5WcyGhzetHNPA==} npm-package-arg@7.0.0: - resolution: - { - integrity: sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==, - } + resolution: {integrity: sha512-xXxr8y5U0kl8dVkz2oK7yZjPBvqM2fwaO5l3Yg13p03v8+E3qQcD0JNhHzjL1vyGgxcKkD0cco+NLR72iuPk3g==} npm-run-path@2.0.2: - resolution: - { - integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} + engines: {node: '>=4'} 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} npm-to-yarn@2.2.1: - resolution: - { - integrity: sha512-O/j/ROyX0KGLG7O6Ieut/seQ0oiTpHF2tXAcFbpdTLQFiaNtkyTXXocM1fwpaa60dg1qpWj0nHlbNhx6qwuENQ==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-O/j/ROyX0KGLG7O6Ieut/seQ0oiTpHF2tXAcFbpdTLQFiaNtkyTXXocM1fwpaa60dg1qpWj0nHlbNhx6qwuENQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} nth-check@1.0.2: - resolution: - { - integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==, - } + resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} 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==} number-is-nan@1.0.1: - resolution: - { - integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==} + engines: {node: '>=0.10.0'} number-to-bn@1.7.0: - resolution: - { - integrity: sha512-wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==, - } - engines: { node: ">=6.5.0", npm: ">=3" } + resolution: {integrity: sha512-wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==} + engines: {node: '>=6.5.0', npm: '>=3'} numeral@2.0.6: - resolution: - { - integrity: sha512-qaKRmtYPZ5qdw4jWJD6bxEf1FJEqllJrwxCLIm0sQU/A7v2/czigzOb+C2uSiFsa9lBUzeH7M1oK+Q+OLxL3kA==, - } + resolution: {integrity: sha512-qaKRmtYPZ5qdw4jWJD6bxEf1FJEqllJrwxCLIm0sQU/A7v2/czigzOb+C2uSiFsa9lBUzeH7M1oK+Q+OLxL3kA==} nwsapi@2.2.7: - resolution: - { - integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==, - } + resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==} nyc@15.1.0: - resolution: - { - integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==, - } - engines: { node: ">=8.9" } + resolution: {integrity: sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==} + engines: {node: '>=8.9'} hasBin: true nypm@0.3.8: - resolution: - { - integrity: sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==, - } - engines: { node: ^14.16.0 || >=16.10.0 } + resolution: {integrity: sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==} + engines: {node: ^14.16.0 || >=16.10.0} hasBin: true oauth-sign@0.9.0: - resolution: - { - integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==, - } + resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} ob1@0.80.12: - resolution: - { - integrity: sha512-VMArClVT6LkhUGpnuEoBuyjG9rzUyEzg4PDkav6wK1cLhOK02gPCYFxoiB4mqVnrMhDpIzJcrGNAMVi9P+hXrw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-VMArClVT6LkhUGpnuEoBuyjG9rzUyEzg4PDkav6wK1cLhOK02gPCYFxoiB4mqVnrMhDpIzJcrGNAMVi9P+hXrw==} + engines: {node: '>=18'} ob1@0.80.8: - resolution: - { - integrity: sha512-QHJQk/lXMmAW8I7AIM3in1MSlwe1umR72Chhi8B7Xnq6mzjhBKkA6Fy/zAhQnGkA4S912EPCEvTij5yh+EQTAA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-QHJQk/lXMmAW8I7AIM3in1MSlwe1umR72Chhi8B7Xnq6mzjhBKkA6Fy/zAhQnGkA4S912EPCEvTij5yh+EQTAA==} + engines: {node: '>=18'} 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@2.2.0: - resolution: - { - integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==} + engines: {node: '>= 6'} 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.1: - resolution: - { - integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==, - } + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} object-is@1.1.6: - resolution: - { - integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} + engines: {node: '>= 0.4'} object-keys@0.2.0: - resolution: - { - integrity: sha512-XODjdR2pBh/1qrjPcbSeSgEtKbYo7LqYNq64/TPuCf7j9SfDD3i21yatKoIy39yIWNvVM59iutfQQpCv1RfFzA==, - } + resolution: {integrity: sha512-XODjdR2pBh/1qrjPcbSeSgEtKbYo7LqYNq64/TPuCf7j9SfDD3i21yatKoIy39yIWNvVM59iutfQQpCv1RfFzA==} deprecated: Please update to the latest object-keys 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.5: - resolution: - { - integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} + engines: {node: '>= 0.4'} object.entries@1.1.8: - resolution: - { - integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} + 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.getownpropertydescriptors@2.1.8: - resolution: - { - integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==} + engines: {node: '>= 0.8'} object.groupby@1.0.3: - resolution: - { - integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} + engines: {node: '>= 0.4'} object.hasown@1.1.4: - resolution: - { - integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} + engines: {node: '>= 0.4'} object.values@1.2.0: - resolution: - { - integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} + engines: {node: '>= 0.4'} objectorarray@1.0.5: - resolution: - { - integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==, - } + resolution: {integrity: sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==} oboe@2.1.5: - resolution: - { - integrity: sha512-zRFWiF+FoicxEs3jNI/WYUrVEgA7DeET/InK0XQuudGHRg8iIob3cNPrJTKaz4004uaA9Pbe+Dwa8iluhjLZWA==, - } + resolution: {integrity: sha512-zRFWiF+FoicxEs3jNI/WYUrVEgA7DeET/InK0XQuudGHRg8iIob3cNPrJTKaz4004uaA9Pbe+Dwa8iluhjLZWA==} obuf@1.1.2: - resolution: - { - integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==, - } + resolution: {integrity: sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==} octal@1.0.0: - resolution: - { - integrity: sha512-nnda7W8d+A3vEIY+UrDQzzboPf1vhs4JYVhff5CDkq9QNoZY7Xrxeo/htox37j9dZf7yNHevZzqtejWgy1vCqQ==, - } + resolution: {integrity: sha512-nnda7W8d+A3vEIY+UrDQzzboPf1vhs4JYVhff5CDkq9QNoZY7Xrxeo/htox37j9dZf7yNHevZzqtejWgy1vCqQ==} octokit-auth-probot@2.0.0: - resolution: - { - integrity: sha512-bxidVIyxYJ+hWkG24pchPrN6mJdQrklZ2Acu+oGmZlh9aRONsIrw0KNW5W7QC2VlkxsFQwb9lnV+vH0BcEhnLQ==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-bxidVIyxYJ+hWkG24pchPrN6mJdQrklZ2Acu+oGmZlh9aRONsIrw0KNW5W7QC2VlkxsFQwb9lnV+vH0BcEhnLQ==} + engines: {node: '>=18'} peerDependencies: - "@octokit/core": ">=5" + '@octokit/core': '>=5' ohash@1.1.3: - resolution: - { - integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==, - } + resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} on-exit-leak-free@2.1.2: - resolution: - { - integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==, - } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==} + engines: {node: '>=14.0.0'} on-finished@2.3.0: - resolution: - { - integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} + engines: {node: '>= 0.8'} 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==} one-time@1.0.0: - resolution: - { - integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==, - } + resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==} onetime@2.0.1: - resolution: - { - integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==} + engines: {node: '>=4'} 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'} only@0.0.2: - resolution: - { - integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==, - } + resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==} open@6.4.0: - resolution: - { - integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==} + engines: {node: '>=8'} open@7.4.2: - resolution: - { - integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==} + engines: {node: '>=8'} 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'} opencollective-postinstall@2.0.3: - resolution: - { - integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==, - } + resolution: {integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==} hasBin: true opener@1.5.2: - resolution: - { - integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==, - } + resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} hasBin: true opentelemetry-instrumentation-fetch-node@1.2.0: - resolution: - { - integrity: sha512-aiSt/4ubOTyb1N5C2ZbGrBvaJOXIZhZvpRPYuUVxQJe27wJZqf/o65iPrqgLcgfeOLaQ8cS2Q+762jrYvniTrA==, - } - engines: { node: ">18.0.0" } + resolution: {integrity: sha512-aiSt/4ubOTyb1N5C2ZbGrBvaJOXIZhZvpRPYuUVxQJe27wJZqf/o65iPrqgLcgfeOLaQ8cS2Q+762jrYvniTrA==} + engines: {node: '>18.0.0'} optionator@0.8.3: - resolution: - { - integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==} + engines: {node: '>= 0.8.0'} optionator@0.9.3: - resolution: - { - integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} + engines: {node: '>= 0.8.0'} ora@3.4.0: - resolution: - { - integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==} + engines: {node: '>=6'} 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'} os-browserify@0.3.0: - resolution: - { - integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==, - } + resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==} os-homedir@1.0.2: - resolution: - { - integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} + engines: {node: '>=0.10.0'} 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'} osenv@0.1.5: - resolution: - { - integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==, - } + resolution: {integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==} deprecated: This package is no longer supported. outdent@0.5.0: - resolution: - { - integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==, - } + resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==} outvariant@1.4.2: - resolution: - { - integrity: sha512-Ou3dJ6bA/UJ5GVHxah4LnqDwZRwAmWxrG3wtrHrbGnP4RnLCtA64A4F+ae7Y8ww660JaddSoArUR5HjipWSHAQ==, - } + resolution: {integrity: sha512-Ou3dJ6bA/UJ5GVHxah4LnqDwZRwAmWxrG3wtrHrbGnP4RnLCtA64A4F+ae7Y8ww660JaddSoArUR5HjipWSHAQ==} ow@0.17.0: - resolution: - { - integrity: sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA==} + engines: {node: '>=10'} p-cancelable@1.1.0: - resolution: - { - integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} + engines: {node: '>=6'} p-cancelable@2.1.1: - resolution: - { - integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==} + engines: {node: '>=8'} p-filter@2.1.0: - resolution: - { - integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==} + engines: {node: '>=8'} p-finally@1.0.0: - resolution: - { - integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} + engines: {node: '>=4'} 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@4.0.0: - resolution: - { - integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} p-locate@3.0.0: - resolution: - { - integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} + engines: {node: '>=6'} 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-locate@6.0.0: - resolution: - { - integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} p-map@2.1.0: - resolution: - { - integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==} + engines: {node: '>=6'} p-map@3.0.0: - resolution: - { - integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} + engines: {node: '>=8'} 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-retry@4.6.2: - resolution: - { - integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==} + engines: {node: '>=8'} p-retry@6.2.0: - resolution: - { - integrity: sha512-JA6nkq6hKyWLLasXQXUrO4z8BUZGUt/LjlJxx8Gb2+2ntodU/SS63YZ8b0LUTbQ8ZB9iwOfhEPhg4ykKnn2KsA==, - } - engines: { node: ">=16.17" } + resolution: {integrity: sha512-JA6nkq6hKyWLLasXQXUrO4z8BUZGUt/LjlJxx8Gb2+2ntodU/SS63YZ8b0LUTbQ8ZB9iwOfhEPhg4ykKnn2KsA==} + engines: {node: '>=16.17'} 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-hash@4.0.0: - resolution: - { - integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==} + engines: {node: '>=8'} pako@0.2.9: - resolution: - { - integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==, - } + resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} pako@1.0.11: - resolution: - { - integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==, - } + resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} 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-asn1@5.1.7: - resolution: - { - integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==, - } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==} + engines: {node: '>= 0.10'} parse-entities@1.2.2: - resolution: - { - integrity: sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==, - } + resolution: {integrity: sha512-NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg==} parse-entities@4.0.1: - resolution: - { - integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==, - } + resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} 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-headers@2.0.5: - resolution: - { - integrity: sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==, - } + resolution: {integrity: sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==} parse-json@4.0.0: - resolution: - { - integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==} + engines: {node: '>=4'} 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'} parse-numeric-range@1.3.0: - resolution: - { - integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==, - } + resolution: {integrity: sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==} parse-path@7.0.0: - resolution: - { - integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==, - } + resolution: {integrity: sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==} parse-png@2.1.0: - resolution: - { - integrity: sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-Nt/a5SfCLiTnQAjx3fHlqp8hRgTL3z7kTQZzvIMS9uCAepnCyjpdEc6M/sz69WqMBdaDBw9sF1F1UaHROYzGkQ==} + engines: {node: '>=10'} parse-url@8.1.0: - resolution: - { - integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==, - } + resolution: {integrity: sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==} parse5-htmlparser2-tree-adapter@6.0.1: - resolution: - { - integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==, - } + resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==} parse5@5.1.1: - resolution: - { - integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==, - } + resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==} parse5@6.0.1: - resolution: - { - integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==, - } + resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==} parse5@7.1.2: - resolution: - { - integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==, - } + resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} 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==} password-prompt@1.1.3: - resolution: - { - integrity: sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==, - } + resolution: {integrity: sha512-HkrjG2aJlvF0t2BMH0e2LB/EHf3Lcq3fNMzy4GYHcQblAvOl+QQji1Lx7WRBMqpVK8p+KR7bCg7oqAMXtdgqyw==} path-browserify@0.0.0: - resolution: - { - integrity: sha512-WA3pxi1olUQcsl82W576vkqhUSGp0uBtr/381pxx5WXLp3NC+AB99hUG3aGW7H0Kg9PFr1D8wv1iJeICe+9Mhw==, - } + resolution: {integrity: sha512-WA3pxi1olUQcsl82W576vkqhUSGp0uBtr/381pxx5WXLp3NC+AB99hUG3aGW7H0Kg9PFr1D8wv1iJeICe+9Mhw==} path-browserify@1.0.1: - resolution: - { - integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==, - } + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} path-exists@3.0.0: - resolution: - { - integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} + engines: {node: '>=4'} 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-exists@5.0.0: - resolution: - { - integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 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-is-inside@1.0.2: - resolution: - { - integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==, - } + resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==} path-key@2.0.1: - resolution: - { - integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} + engines: {node: '>=4'} 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.10.2: - resolution: - { - integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==, - } - engines: { node: ">=16 || 14 >=14.17" } + resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==} + engines: {node: '>=16 || 14 >=14.17'} path-to-regexp@0.1.7: - resolution: - { - integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==, - } + resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} path-to-regexp@1.8.0: - resolution: - { - integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==, - } + resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==} path-to-regexp@2.2.1: - resolution: - { - integrity: sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==, - } + resolution: {integrity: sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==} path-to-regexp@6.2.1: - resolution: - { - integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==, - } + resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==} path-type@4.0.0: - resolution: - { - integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} path@0.12.7: - resolution: - { - integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==, - } + resolution: {integrity: sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==} 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==} pause-stream@0.0.11: - resolution: - { - integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==, - } + resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==} pbkdf2@3.0.8: - resolution: - { - integrity: sha512-Bf7yBd61ChnMqPqf+PxHm34Iiq9M9Bkd/+JqzosPOqwG6FiTixtkpCs4PNd38+6/VYRvAxGe/GgPb4Q4GktFzg==, - } - engines: { node: ">=0.12" } + resolution: {integrity: sha512-Bf7yBd61ChnMqPqf+PxHm34Iiq9M9Bkd/+JqzosPOqwG6FiTixtkpCs4PNd38+6/VYRvAxGe/GgPb4Q4GktFzg==} + engines: {node: '>=0.12'} pbkdf2@3.1.2: - resolution: - { - integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==, - } - engines: { node: ">=0.12" } + resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==} + engines: {node: '>=0.12'} peek-stream@1.1.3: - resolution: - { - integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==, - } + resolution: {integrity: sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==} pend@1.2.0: - resolution: - { - integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==, - } + resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} performance-now@0.2.0: - resolution: - { - integrity: sha512-YHk5ez1hmMR5LOkb9iJkLKqoBlL7WD5M8ljC75ZfzXriuBIVNuecaXuU7e+hOwyqf24Wxhh7Vxgt7Hnw9288Tg==, - } + resolution: {integrity: sha512-YHk5ez1hmMR5LOkb9iJkLKqoBlL7WD5M8ljC75ZfzXriuBIVNuecaXuU7e+hOwyqf24Wxhh7Vxgt7Hnw9288Tg==} performance-now@2.1.0: - resolution: - { - integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==, - } + resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} periscopic@3.1.0: - resolution: - { - integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==, - } + resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} pg-int8@1.0.1: - resolution: - { - integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==, - } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw==} + engines: {node: '>=4.0.0'} pg-protocol@1.6.1: - resolution: - { - integrity: sha512-jPIlvgoD63hrEuihvIg+tJhoGjUsLPn6poJY9N5CnlPd91c2T18T/9zBtLxZSb1EhYxBRoZJtzScCaWlYLtktg==, - } + resolution: {integrity: sha512-jPIlvgoD63hrEuihvIg+tJhoGjUsLPn6poJY9N5CnlPd91c2T18T/9zBtLxZSb1EhYxBRoZJtzScCaWlYLtktg==} pg-types@2.2.0: - resolution: - { - integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-qTAAlrEsl8s4OiEQY69wDvcMIdQN6wdz5ojQiOy6YRMuynxenON0O5oCpJI6lshc6scgAY8qvJ2On/p+CXY0GA==} + engines: {node: '>=4'} picocolors@0.2.1: - resolution: - { - integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==, - } + resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==} picocolors@1.0.0: - resolution: - { - integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, - } + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} picomatch@2.3.1: - resolution: - { - integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, - } - engines: { node: ">=8.6" } + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} picomatch@3.0.1: - resolution: - { - integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==} + engines: {node: '>=10'} picomatch@4.0.2: - resolution: - { - integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} pidtree@0.6.0: - resolution: - { - integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} + engines: {node: '>=0.10'} hasBin: true 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'} pify@4.0.1: - resolution: - { - integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} + engines: {node: '>=6'} pify@6.1.0: - resolution: - { - integrity: sha512-KocF8ve28eFjjuBKKGvzOBGzG8ew2OqOOSxTTZhirkzH7h3BI1vyzqlR0qbfcDBve1Yzo3FVlWUAtCRrbVN8Fw==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-KocF8ve28eFjjuBKKGvzOBGzG8ew2OqOOSxTTZhirkzH7h3BI1vyzqlR0qbfcDBve1Yzo3FVlWUAtCRrbVN8Fw==} + engines: {node: '>=14.16'} pinkie-promise@2.0.1: - resolution: - { - integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} + engines: {node: '>=0.10.0'} pinkie@2.0.4: - resolution: - { - integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} + engines: {node: '>=0.10.0'} pino-abstract-transport@1.2.0: - resolution: - { - integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==, - } + resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==} pino-http@10.1.0: - resolution: - { - integrity: sha512-rQgRaVfmZnDcOZXvZUUkiG3wDYVTSyYWAhxkGUgw3py3Y1nFXucRSLYPB5HKgG64oy9gLiDARiQxxWXnI1u3zA==, - } + resolution: {integrity: sha512-rQgRaVfmZnDcOZXvZUUkiG3wDYVTSyYWAhxkGUgw3py3Y1nFXucRSLYPB5HKgG64oy9gLiDARiQxxWXnI1u3zA==} pino-pretty@6.0.0: - resolution: - { - integrity: sha512-jyeR2fXXWc68st1DTTM5NhkHlx8p+1fKZMfm84Jwq+jSw08IwAjNaZBZR6ts69hhPOfOjg/NiE1HYW7vBRPL3A==, - } + resolution: {integrity: sha512-jyeR2fXXWc68st1DTTM5NhkHlx8p+1fKZMfm84Jwq+jSw08IwAjNaZBZR6ts69hhPOfOjg/NiE1HYW7vBRPL3A==} hasBin: true pino-std-serializers@7.0.0: - resolution: - { - integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==, - } + resolution: {integrity: sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==} pino@9.1.0: - resolution: - { - integrity: sha512-qUcgfrlyOtjwhNLdbhoL7NR4NkHjzykAPw0V2QLFbvu/zss29h4NkRnibyFzBrNCbzCOY3WZ9hhKSwfOkNggYA==, - } + resolution: {integrity: sha512-qUcgfrlyOtjwhNLdbhoL7NR4NkHjzykAPw0V2QLFbvu/zss29h4NkRnibyFzBrNCbzCOY3WZ9hhKSwfOkNggYA==} hasBin: true pirates@3.0.2: - resolution: - { - integrity: sha512-c5CgUJq6H2k6MJz72Ak1F5sN9n9wlSlJyEnwvpm9/y3WB4E3pHBDT2c6PEiS1vyJvq2bUxUAIu0EGf8Cx4Ic7Q==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-c5CgUJq6H2k6MJz72Ak1F5sN9n9wlSlJyEnwvpm9/y3WB4E3pHBDT2c6PEiS1vyJvq2bUxUAIu0EGf8Cx4Ic7Q==} + engines: {node: '>= 4'} 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-conf@3.1.0: - resolution: - { - integrity: sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-m0OTbR/5VPNPqO1ph6Fqbj7Hv6QU7gR/tQW40ZqrL1rjgCU85W6C1bJn0BItuJqnR98PWzw7Z8hHeChD1WrgdQ==} + engines: {node: '>=6'} pkg-dir@3.0.0: - resolution: - { - integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} + engines: {node: '>=6'} pkg-dir@4.2.0: - resolution: - { - integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} + engines: {node: '>=8'} pkg-dir@5.0.0: - resolution: - { - integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} + engines: {node: '>=10'} pkg-dir@7.0.0: - resolution: - { - integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==} + engines: {node: '>=14.16'} pkg-up@3.1.0: - resolution: - { - integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} + engines: {node: '>=8'} platform@1.3.6: - resolution: - { - integrity: sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==, - } + resolution: {integrity: sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==} playwright-core@1.40.1: - resolution: - { - integrity: sha512-+hkOycxPiV534c4HhpfX6yrlawqVUzITRKwHAmYfmsVreltEl6fAZJ3DPfLMOODw0H3s1Itd6MDCWmP1fl/QvQ==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-+hkOycxPiV534c4HhpfX6yrlawqVUzITRKwHAmYfmsVreltEl6fAZJ3DPfLMOODw0H3s1Itd6MDCWmP1fl/QvQ==} + engines: {node: '>=16'} hasBin: true playwright-core@1.45.0: - resolution: - { - integrity: sha512-lZmHlFQ0VYSpAs43dRq1/nJ9G/6SiTI7VPqidld9TDefL9tX87bTKExWZZUF5PeRyqtXqd8fQi2qmfIedkwsNQ==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-lZmHlFQ0VYSpAs43dRq1/nJ9G/6SiTI7VPqidld9TDefL9tX87bTKExWZZUF5PeRyqtXqd8fQi2qmfIedkwsNQ==} + engines: {node: '>=18'} hasBin: true playwright@1.40.1: - resolution: - { - integrity: sha512-2eHI7IioIpQ0bS1Ovg/HszsN/XKNwEG1kbzSDDmADpclKc7CyqkHw7Mg2JCz/bbCxg25QUPcjksoMW7JcIFQmw==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-2eHI7IioIpQ0bS1Ovg/HszsN/XKNwEG1kbzSDDmADpclKc7CyqkHw7Mg2JCz/bbCxg25QUPcjksoMW7JcIFQmw==} + engines: {node: '>=16'} hasBin: true playwright@1.45.0: - resolution: - { - integrity: sha512-4z3ac3plDfYzGB6r0Q3LF8POPR20Z8D0aXcxbJvmfMgSSq1hkcgvFRXJk9rUq5H/MJ0Ktal869hhOdI/zUTeLA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-4z3ac3plDfYzGB6r0Q3LF8POPR20Z8D0aXcxbJvmfMgSSq1hkcgvFRXJk9rUq5H/MJ0Ktal869hhOdI/zUTeLA==} + engines: {node: '>=18'} hasBin: true plist@3.1.0: - resolution: - { - integrity: sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==, - } - engines: { node: ">=10.4.0" } + resolution: {integrity: sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==} + engines: {node: '>=10.4.0'} pngjs@3.4.0: - resolution: - { - integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==, - } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==} + engines: {node: '>=4.0.0'} pngjs@5.0.0: - resolution: - { - integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==} + engines: {node: '>=10.13.0'} 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'} portfinder@1.0.32: - resolution: - { - integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==, - } - engines: { node: ">= 0.12.0" } + resolution: {integrity: sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==} + engines: {node: '>= 0.12.0'} 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-attribute-case-insensitive@5.0.2: - resolution: - { - integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-browser-comments@4.0.0: - resolution: - { - integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-X9X9/WN3KIvY9+hNERUqX9gncsgBA25XaeR+jshHz2j8+sYyHktHw1JdKuMjeLpGktXidqDhA7b/qm1mrBDmgg==} + engines: {node: '>=8'} peerDependencies: - browserslist: ">=4" - postcss: ">=8" + browserslist: '>=4' + postcss: '>=8' postcss-calc@8.2.4: - resolution: - { - integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==, - } + resolution: {integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==} peerDependencies: postcss: ^8.2.2 postcss-clamp@4.1.0: - resolution: - { - integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==, - } - engines: { node: ">=7.6.0" } + resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} + engines: {node: '>=7.6.0'} peerDependencies: postcss: ^8.4.6 postcss-color-functional-notation@4.2.4: - resolution: - { - integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-color-hex-alpha@8.0.4: - resolution: - { - integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 postcss-color-rebeccapurple@7.1.1: - resolution: - { - integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-colormin@5.3.1: - resolution: - { - integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-convert-values@5.1.3: - resolution: - { - integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-custom-media@8.0.2: - resolution: - { - integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 postcss-custom-properties@12.1.11: - resolution: - { - integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-custom-selectors@6.0.3: - resolution: - { - integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 postcss-dir-pseudo-class@6.0.5: - resolution: - { - integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-discard-comments@5.1.2: - resolution: - { - integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-discard-duplicates@5.1.0: - resolution: - { - integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-discard-empty@5.1.1: - resolution: - { - integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-discard-overridden@5.1.0: - resolution: - { - integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-double-position-gradients@3.1.2: - resolution: - { - integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-env-function@4.0.6: - resolution: - { - integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 postcss-flexbugs-fixes@5.0.2: - resolution: - { - integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==, - } + resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==} peerDependencies: postcss: ^8.1.4 postcss-focus-visible@6.0.4: - resolution: - { - integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 postcss-focus-within@5.0.4: - resolution: - { - integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 postcss-font-variant@5.0.0: - resolution: - { - integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==, - } + resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} peerDependencies: postcss: ^8.1.0 postcss-gap-properties@3.0.5: - resolution: - { - integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-image-set-function@4.0.7: - resolution: - { - integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 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-initial@4.0.1: - resolution: - { - integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==, - } + resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==} 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-lab-function@4.2.1: - resolution: - { - integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 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 @@ -38193,1208 +25530,728 @@ packages: optional: true postcss-loader@6.2.1: - resolution: - { - integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==} + engines: {node: '>= 12.13.0'} peerDependencies: postcss: ^7.0.0 || ^8.0.1 webpack: ^5.0.0 postcss-logical@5.0.4: - resolution: - { - integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 postcss-media-minmax@5.0.0: - resolution: - { - integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==} + engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.1.0 postcss-media-query-parser@0.2.3: - resolution: - { - integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==, - } + resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} postcss-merge-longhand@5.1.7: - resolution: - { - integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-merge-rules@5.1.4: - resolution: - { - integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-minify-font-values@5.1.0: - resolution: - { - integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-minify-gradients@5.1.1: - resolution: - { - integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-minify-params@5.1.4: - resolution: - { - integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-minify-selectors@5.2.1: - resolution: - { - integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-modules-extract-imports@3.0.0: - resolution: - { - integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==, - } - engines: { node: ^10 || ^12 || >= 14 } + resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} + engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 postcss-modules-local-by-default@4.0.4: - resolution: - { - integrity: sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==, - } - engines: { node: ^10 || ^12 || >= 14 } + resolution: {integrity: sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==} + engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 postcss-modules-scope@3.1.1: - resolution: - { - integrity: sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==, - } - engines: { node: ^10 || ^12 || >= 14 } + resolution: {integrity: sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==} + engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 postcss-modules-values@4.0.0: - resolution: - { - integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==, - } - engines: { node: ^10 || ^12 || >= 14 } + resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} + engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 postcss-nested@6.0.1: - resolution: - { - integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==, - } - engines: { node: ">=12.0" } + resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} + engines: {node: '>=12.0'} peerDependencies: postcss: ^8.2.14 postcss-nesting@10.2.0: - resolution: - { - integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-normalize-charset@5.1.0: - resolution: - { - integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize-display-values@5.1.0: - resolution: - { - integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize-positions@5.1.1: - resolution: - { - integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize-repeat-style@5.1.1: - resolution: - { - integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize-string@5.1.0: - resolution: - { - integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize-timing-functions@5.1.0: - resolution: - { - integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize-unicode@5.1.1: - resolution: - { - integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize-url@5.1.0: - resolution: - { - integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize-whitespace@5.1.1: - resolution: - { - integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-normalize@10.0.1: - resolution: - { - integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==, - } - engines: { node: ">= 12" } + resolution: {integrity: sha512-+5w18/rDev5mqERcG3W5GZNMJa1eoYYNGo8gB7tEwaos0ajk3ZXAI4mHGcNT47NE+ZnZD1pEpUOFLvltIwmeJA==} + engines: {node: '>= 12'} peerDependencies: - browserslist: ">= 4" - postcss: ">= 8" + browserslist: '>= 4' + postcss: '>= 8' postcss-opacity-percentage@1.1.3: - resolution: - { - integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-ordered-values@5.1.3: - resolution: - { - integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-overflow-shorthand@3.0.4: - resolution: - { - integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-page-break@3.0.4: - resolution: - { - integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==, - } + resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} peerDependencies: postcss: ^8 postcss-place@7.0.5: - resolution: - { - integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-preset-env@7.8.3: - resolution: - { - integrity: sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-T1LgRm5uEVFSEF83vHZJV2z19lHg4yJuZ6gXZZkqVsqv63nlr6zabMH3l4Pc01FQCyfWVrh2GaUeCVy9Po+Aag==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-pseudo-class-any-link@7.1.6: - resolution: - { - integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-reduce-initial@5.1.2: - resolution: - { - integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-reduce-transforms@5.1.0: - resolution: - { - integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-replace-overflow-wrap@4.0.0: - resolution: - { - integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==, - } + resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} peerDependencies: postcss: ^8.0.3 postcss-resolve-nested-selector@0.1.1: - resolution: - { - integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==, - } + resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==} postcss-safe-parser@6.0.0: - resolution: - { - integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==, - } - engines: { node: ">=12.0" } + resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} + engines: {node: '>=12.0'} peerDependencies: postcss: ^8.3.3 postcss-selector-not@6.0.1: - resolution: - { - integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==, - } - engines: { node: ^12 || ^14 || >=16 } + resolution: {integrity: sha512-1i9affjAe9xu/y9uqWH+tD4r6/hDaXJruk8xn2x1vzxC2U3J3LKO3zJW4CyxlNhA56pADJ/djpEwpH1RClI2rQ==} + engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-selector-parser@6.0.16: - resolution: - { - integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==} + engines: {node: '>=4'} postcss-svgo@5.1.0: - resolution: - { - integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-unique-selectors@5.1.1: - resolution: - { - integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 postcss-value-parser@4.2.0: - resolution: - { - integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==, - } + resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} postcss@7.0.39: - resolution: - { - integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==} + engines: {node: '>=6.0.0'} postcss@8.4.14: - resolution: - { - integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==, - } - engines: { node: ^10 || ^12 || >=14 } + resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} + engines: {node: ^10 || ^12 || >=14} postcss@8.4.31: - resolution: - { - integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==, - } - engines: { node: ^10 || ^12 || >=14 } + resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} + engines: {node: ^10 || ^12 || >=14} postcss@8.4.32: - resolution: - { - integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==, - } - engines: { node: ^10 || ^12 || >=14 } + resolution: {integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==} + engines: {node: ^10 || ^12 || >=14} postcss@8.4.38: - resolution: - { - integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==, - } - engines: { node: ^10 || ^12 || >=14 } + resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==} + engines: {node: ^10 || ^12 || >=14} postgres-array@2.0.0: - resolution: - { - integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-VpZrUqU5A69eQyW2c5CA1jtLecCsN2U/bD6VilrFDWq5+5UIEVO7nazS3TEcHf1zuPYO/sqGvUvW62g86RXZuA==} + engines: {node: '>=4'} postgres-bytea@1.0.0: - resolution: - { - integrity: sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-xy3pmLuQqRBZBXDULy7KbaitYqLcmxigw14Q5sj8QBVLqEwXfeybIKVWiqAXTlcvdvb0+xkOtDbfQMOf4lST1w==} + engines: {node: '>=0.10.0'} postgres-date@1.0.7: - resolution: - { - integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-suDmjLVQg78nMK2UZ454hAG+OAW+HQPZ6n++TNDUX+L0+uUlLywnoxJKDou51Zm+zTCjrCl0Nq6J9C5hP9vK/Q==} + engines: {node: '>=0.10.0'} postgres-interval@1.2.0: - resolution: - { - integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==} + engines: {node: '>=0.10.0'} prando@5.1.2: - resolution: - { - integrity: sha512-PaJxPMw8UugKUeUq27oZ8dqW2CgysXf2MjmlyCcRq+Es8Bcxgac7+nO6/tRGKmLOnUG1GPbAATNAZmzwD1hbIA==, - } + resolution: {integrity: sha512-PaJxPMw8UugKUeUq27oZ8dqW2CgysXf2MjmlyCcRq+Es8Bcxgac7+nO6/tRGKmLOnUG1GPbAATNAZmzwD1hbIA==} prando@6.0.1: - resolution: - { - integrity: sha512-ghUWxQ1T9IJmPu6eshc3VU0OwveUtXQ33ZLXYUcz1Oc5ppKLDXKp0TBDj6b0epwhEctzcQSNGR2iHyvQSn4W5A==, - } + resolution: {integrity: sha512-ghUWxQ1T9IJmPu6eshc3VU0OwveUtXQ33ZLXYUcz1Oc5ppKLDXKp0TBDj6b0epwhEctzcQSNGR2iHyvQSn4W5A==} prebuild-install@7.1.2: - resolution: - { - integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-UnNke3IQb6sgarcZIDU3gbMeTp/9SSU1DAIkil7PrqG1vZlBtY5msYccSKSHDqa3hNg436IXK+SNImReuA1wEQ==} + engines: {node: '>=10'} hasBin: true preferred-pm@3.1.4: - resolution: - { - integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-lEHd+yEm22jXdCphDrkvIJQU66EuLojPPtvZkpKIkiD+l0DMThF/niqZKJSoU8Vl7iuvtmzyMhir9LdVy5WMnA==} + engines: {node: '>=10'} prelude-ls@1.1.2: - resolution: - { - integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} + engines: {node: '>= 0.8.0'} 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'} prepend-http@2.0.0: - resolution: - { - integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} + engines: {node: '>=4'} prettier-linter-helpers@1.0.0: - resolution: - { - integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} + engines: {node: '>=6.0.0'} prettier@2.8.8: - resolution: - { - integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} + engines: {node: '>=10.13.0'} hasBin: true prettier@3.2.5: - resolution: - { - integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==} + 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-error@4.0.0: - resolution: - { - integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==, - } + resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} pretty-format@24.9.0: - resolution: - { - integrity: sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-00ZMZUiHaJrNfk33guavqgvfJS30sLYf0f8+Srklv0AMPodGGHcoHgksZ3OThYnIvOd+8yMCn0YiEOogjlgsnA==} + engines: {node: '>= 6'} pretty-format@26.6.2: - resolution: - { - integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==} + engines: {node: '>= 10'} 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@28.1.3: - resolution: - { - integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.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} pretty-hrtime@1.0.3: - resolution: - { - integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} + engines: {node: '>= 0.8'} probot@13.2.2: - resolution: - { - integrity: sha512-wx8VoNb0ujn2k3nq0MSIUd4r7/RUn2Di3ZY07F6O5IYm3z3HNGDDX2XEreJnaZDOFjQaZ6XJbYGmiaD4SovAVQ==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-wx8VoNb0ujn2k3nq0MSIUd4r7/RUn2Di3ZY07F6O5IYm3z3HNGDDX2XEreJnaZDOFjQaZ6XJbYGmiaD4SovAVQ==} + engines: {node: '>=18'} hasBin: true process-nextick-args@2.0.1: - resolution: - { - integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, - } + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} process-on-spawn@1.0.0: - resolution: - { - integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==} + engines: {node: '>=8'} process-warning@3.0.0: - resolution: - { - integrity: sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==, - } + resolution: {integrity: sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==} 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'} progress-webpack-plugin@1.0.16: - resolution: - { - integrity: sha512-sdiHuuKOzELcBANHfrupYo+r99iPRyOnw15qX+rNlVUqXGfjXdH4IgxriKwG1kNJwVswKQHMdj1hYZMcb9jFaA==, - } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-sdiHuuKOzELcBANHfrupYo+r99iPRyOnw15qX+rNlVUqXGfjXdH4IgxriKwG1kNJwVswKQHMdj1hYZMcb9jFaA==} + engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 progress@2.0.3: - resolution: - { - integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} promise-inflight@1.0.1: - resolution: - { - integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==, - } + resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} peerDependencies: - bluebird: "*" + bluebird: '*' peerDependenciesMeta: bluebird: optional: true promise-polyfill@6.1.0: - resolution: - { - integrity: sha512-g0LWaH0gFsxovsU7R5LrrhHhWAWiHRnh1GPrhXnPgYsDkIqjRYUYSZEsej/wtleDrz5xVSIDbeKfidztp2XHFQ==, - } + resolution: {integrity: sha512-g0LWaH0gFsxovsU7R5LrrhHhWAWiHRnh1GPrhXnPgYsDkIqjRYUYSZEsej/wtleDrz5xVSIDbeKfidztp2XHFQ==} promise-retry@2.0.1: - resolution: - { - integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==} + engines: {node: '>=10'} promise.allsettled@1.0.7: - resolution: - { - integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==} + engines: {node: '>= 0.4'} promise.prototype.finally@3.1.8: - resolution: - { - integrity: sha512-aVDtsXOml9iuMJzUco9J1je/UrIT3oMYfWkCTiUhkt+AvZw72q4dUZnR/R/eB3h5GeAagQVXvM1ApoYniJiwoA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-aVDtsXOml9iuMJzUco9J1je/UrIT3oMYfWkCTiUhkt+AvZw72q4dUZnR/R/eB3h5GeAagQVXvM1ApoYniJiwoA==} + engines: {node: '>= 0.4'} promise@7.3.1: - resolution: - { - integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==, - } + resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} promise@8.3.0: - resolution: - { - integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==, - } + resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} prompts@2.4.2: - resolution: - { - integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} prop-types@15.8.1: - resolution: - { - integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==, - } + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} propagate@2.0.1: - resolution: - { - integrity: sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-vGrhOavPSTz4QVNuBNdcNXePNdNMaO1xj9yBeH1ScQPjk/rhg9sSlCXPhMkFuaNNW/syTvYqsnbIJxMBfRbbag==} + engines: {node: '>= 8'} proper-lockfile@3.2.0: - resolution: - { - integrity: sha512-iMghHHXv2bsxl6NchhEaFck8tvX3F9cknEEh1SUpguUOBjN7PAAW9BLzmbc1g/mCD1gY3EE2EABBHPJfFdHFmA==, - } + resolution: {integrity: sha512-iMghHHXv2bsxl6NchhEaFck8tvX3F9cknEEh1SUpguUOBjN7PAAW9BLzmbc1g/mCD1gY3EE2EABBHPJfFdHFmA==} properties@1.2.1: - resolution: - { - integrity: sha512-qYNxyMj1JeW54i/EWEFsM1cVwxJbtgPp8+0Wg9XjNaK6VE/c4oRi6PNu5p7w1mNXEIQIjV5Wwn8v8Gz82/QzdQ==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-qYNxyMj1JeW54i/EWEFsM1cVwxJbtgPp8+0Wg9XjNaK6VE/c4oRi6PNu5p7w1mNXEIQIjV5Wwn8v8Gz82/QzdQ==} + engines: {node: '>=0.10'} property-information@6.4.1: - resolution: - { - integrity: sha512-OHYtXfu5aI2sS2LWFSN5rgJjrQ4pCy8i1jubJLe2QvMF8JJ++HXTUIVWFLfXJoaOfvYYjk2SN8J2wFUWIGXT4w==, - } + resolution: {integrity: sha512-OHYtXfu5aI2sS2LWFSN5rgJjrQ4pCy8i1jubJLe2QvMF8JJ++HXTUIVWFLfXJoaOfvYYjk2SN8J2wFUWIGXT4w==} protobufjs-cli@1.1.2: - resolution: - { - integrity: sha512-8ivXWxT39gZN4mm4ArQyJrRgnIwZqffBWoLDsE21TmMcKI3XwJMV4lEF2WU02C4JAtgYYc2SfJIltelD8to35g==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-8ivXWxT39gZN4mm4ArQyJrRgnIwZqffBWoLDsE21TmMcKI3XwJMV4lEF2WU02C4JAtgYYc2SfJIltelD8to35g==} + engines: {node: '>=12.0.0'} hasBin: true peerDependencies: protobufjs: ^7.0.0 protobufjs@6.10.3: - resolution: - { - integrity: sha512-yvAslS0hNdBhlSKckI4R1l7wunVilX66uvrjzE4MimiAt7/qw1nLpMhZrn/ObuUTM/c3Xnfl01LYMdcSJe6dwg==, - } + resolution: {integrity: sha512-yvAslS0hNdBhlSKckI4R1l7wunVilX66uvrjzE4MimiAt7/qw1nLpMhZrn/ObuUTM/c3Xnfl01LYMdcSJe6dwg==} hasBin: true protobufjs@6.11.3: - resolution: - { - integrity: sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==, - } + resolution: {integrity: sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==} hasBin: true protobufjs@6.11.4: - resolution: - { - integrity: sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw==, - } + resolution: {integrity: sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw==} hasBin: true protobufjs@7.2.5: - resolution: - { - integrity: sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==} + engines: {node: '>=12.0.0'} protobufjs@7.3.2: - resolution: - { - integrity: sha512-RXyHaACeqXeqAKGLDl68rQKbmObRsTIn4TYVUUug1KfS47YWCo5MacGITEryugIgZqORCvJWEk4l449POg5Txg==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-RXyHaACeqXeqAKGLDl68rQKbmObRsTIn4TYVUUug1KfS47YWCo5MacGITEryugIgZqORCvJWEk4l449POg5Txg==} + engines: {node: '>=12.0.0'} protocols@2.0.1: - resolution: - { - integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==, - } + resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==} proxy-addr@2.0.7: - resolution: - { - integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==, - } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} + engines: {node: '>= 0.10'} proxy-from-env@1.1.0: - resolution: - { - integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==, - } + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} prr@0.0.0: - resolution: - { - integrity: sha512-LmUECmrW7RVj6mDWKjTXfKug7TFGdiz9P18HMcO4RHL+RW7MCOGNvpj5j47Rnp6ne6r4fZ2VzyUWEpKbg+tsjQ==, - } + resolution: {integrity: sha512-LmUECmrW7RVj6mDWKjTXfKug7TFGdiz9P18HMcO4RHL+RW7MCOGNvpj5j47Rnp6ne6r4fZ2VzyUWEpKbg+tsjQ==} prr@1.0.1: - resolution: - { - integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==, - } + resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} ps-tree@1.2.0: - resolution: - { - integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==, - } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==} + engines: {node: '>= 0.10'} hasBin: true pseudomap@1.0.2: - resolution: - { - integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==, - } + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} psl@1.9.0: - resolution: - { - integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==, - } + resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} pstree.remy@1.1.8: - resolution: - { - integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==, - } + resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==} public-encrypt@4.0.3: - resolution: - { - integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==, - } + resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==} pump@2.0.1: - resolution: - { - integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==, - } + resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} pump@3.0.0: - resolution: - { - integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==, - } + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} pumpify@1.5.1: - resolution: - { - integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==, - } + resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} 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@1.4.1: - resolution: - { - integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==, - } + resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} punycode@2.1.0: - resolution: - { - integrity: sha512-Yxz2kRwT90aPiWEMHVYnEf4+rhwF1tBmmZ4KepCP+Wkium9JxtWnUm1nqGwpiAHr/tnTSeHqr3wb++jgSkXjhA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-Yxz2kRwT90aPiWEMHVYnEf4+rhwF1tBmmZ4KepCP+Wkium9JxtWnUm1nqGwpiAHr/tnTSeHqr3wb++jgSkXjhA==} + 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'} pupa@2.1.1: - resolution: - { - integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} + engines: {node: '>=8'} puppeteer-core@2.1.1: - resolution: - { - integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==, - } - engines: { node: ">=8.16.0" } + resolution: {integrity: sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==} + engines: {node: '>=8.16.0'} pure-rand@6.1.0: - resolution: - { - integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==, - } + resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==} pushdata-bitcoin@1.0.1: - resolution: - { - integrity: sha512-hw7rcYTJRAl4olM8Owe8x0fBuJJ+WGbMhQuLWOXEMN3PxPCKQHRkhfL+XG0+iXUmSHjkMmb3Ba55Mt21cZc9kQ==, - } + resolution: {integrity: sha512-hw7rcYTJRAl4olM8Owe8x0fBuJJ+WGbMhQuLWOXEMN3PxPCKQHRkhfL+XG0+iXUmSHjkMmb3Ba55Mt21cZc9kQ==} q@1.5.1: - resolution: - { - integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==, - } - engines: { node: ">=0.6.0", teleport: ">=0.2.0" } + resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} + engines: {node: '>=0.6.0', teleport: '>=0.2.0'} deprecated: |- You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) qrcode-terminal@0.11.0: - resolution: - { - integrity: sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==, - } + resolution: {integrity: sha512-Uu7ii+FQy4Qf82G4xu7ShHhjhGahEpCWc3x8UavY3CTcWV+ufmmCtwkr7ZKsX42jdL0kr1B5FKUeqJvAn51jzQ==} hasBin: true qrcode-terminal@0.12.0: - resolution: - { - integrity: sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==, - } + resolution: {integrity: sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==} hasBin: true qrcode@1.5.3: - resolution: - { - integrity: sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==} + engines: {node: '>=10.13.0'} hasBin: true qrloop@1.4.1: - resolution: - { - integrity: sha512-LXkwCl1Qd8imTHb+KqjMn+cHmuncyFT81AXoooWJvbG3+g9q61l9udSRPgY4cgl+5goQHuAK4teEdUF6UErYXw==, - } + resolution: {integrity: sha512-LXkwCl1Qd8imTHb+KqjMn+cHmuncyFT81AXoooWJvbG3+g9q61l9udSRPgY4cgl+5goQHuAK4teEdUF6UErYXw==} qs@6.11.0: - resolution: - { - integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==, - } - engines: { node: ">=0.6" } + resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==} + engines: {node: '>=0.6'} qs@6.12.0: - resolution: - { - integrity: sha512-trVZiI6RMOkO476zLGaBIzszOdFPnCCXHPG9kn0yuS1uz6xdVxPfZdB3vUig9pxPFDM9BRAgz/YUIVQ1/vuiUg==, - } - engines: { node: ">=0.6" } + resolution: {integrity: sha512-trVZiI6RMOkO476zLGaBIzszOdFPnCCXHPG9kn0yuS1uz6xdVxPfZdB3vUig9pxPFDM9BRAgz/YUIVQ1/vuiUg==} + engines: {node: '>=0.6'} qs@6.5.3: - resolution: - { - integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==, - } - engines: { node: ">=0.6" } + resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==} + engines: {node: '>=0.6'} query-string@5.1.1: - resolution: - { - integrity: sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==} + engines: {node: '>=0.10.0'} 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'} querystring-es3@0.2.1: - resolution: - { - integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==, - } - engines: { node: ">=0.4.x" } + resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==} + engines: {node: '>=0.4.x'} querystring@0.2.1: - resolution: - { - integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==, - } - engines: { node: ">=0.4.x" } + resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} + engines: {node: '>=0.4.x'} deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. querystringify@2.2.0: - resolution: - { - integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==, - } + resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} queue-microtask@1.2.3: - resolution: - { - integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, - } + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} queue-tick@1.0.1: - resolution: - { - integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==, - } + resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==} queue@6.0.2: - resolution: - { - integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==, - } + resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==} quick-format-unescaped@4.0.4: - resolution: - { - integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==, - } + resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} quick-lru@4.0.1: - resolution: - { - integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==} + engines: {node: '>=8'} quick-lru@5.1.1: - resolution: - { - integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} + engines: {node: '>=10'} raf@3.4.1: - resolution: - { - integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==, - } + resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} ramda@0.29.0: - resolution: - { - integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==, - } + resolution: {integrity: sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==} randombytes@2.1.0: - resolution: - { - integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==, - } + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} randomfill@1.0.4: - resolution: - { - integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==, - } + resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==} range-parser@1.2.0: - resolution: - { - integrity: sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==} + engines: {node: '>= 0.6'} 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'} raw-body@2.5.2: - resolution: - { - integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} + engines: {node: '>= 0.8'} rc@1.2.8: - resolution: - { - integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==, - } + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} hasBin: true re-resizable@6.9.11: - resolution: - { - integrity: sha512-a3hiLWck/NkmyLvGWUuvkAmN1VhwAz4yOhS6FdMTaxCUVN9joIWkT11wsO68coG/iEYuwn+p/7qAmfQzRhiPLQ==, - } + resolution: {integrity: sha512-a3hiLWck/NkmyLvGWUuvkAmN1VhwAz4yOhS6FdMTaxCUVN9joIWkT11wsO68coG/iEYuwn+p/7qAmfQzRhiPLQ==} peerDependencies: react: ^16.13.1 || ^17.0.0 || ^18.0.0 react-dom: ^16.13.1 || ^17.0.0 || ^18.0.0 react-app-polyfill@3.0.0: - resolution: - { - integrity: sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-sZ41cxiU5llIB003yxxQBYrARBqe0repqPTTYBTmMqTz9szeBbE37BehCE891NZsmdZqqP+xWKdT3eo3vOzN8w==} + engines: {node: '>=14'} 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-dev-utils@12.0.1: - resolution: - { - integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==, - } - engines: { node: ">=14" } - peerDependencies: - typescript: ">=2.7" - webpack: ">=4" + resolution: {integrity: sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=2.7' + webpack: '>=4' peerDependenciesMeta: typescript: optional: true react-devtools-core@5.3.1: - resolution: - { - integrity: sha512-7FSb9meX0btdBQLwdFOwt6bGqvRPabmVMMslv8fgoSPqXyuGpgQe36kx8gR86XPw7aV1yVouTp6fyZ0EH+NfUw==, - } + resolution: {integrity: sha512-7FSb9meX0btdBQLwdFOwt6bGqvRPabmVMMslv8fgoSPqXyuGpgQe36kx8gR86XPw7aV1yVouTp6fyZ0EH+NfUw==} react-docgen-typescript@1.22.0: - resolution: - { - integrity: sha512-MPLbF8vzRwAG3GcjdL+OHQlhgtWsLTXs+7uJiHfEeT3Ur7IsZaNYqRTLQ9sj2nB6M6jylcPCeCmH7qbszJmecg==, - } + resolution: {integrity: sha512-MPLbF8vzRwAG3GcjdL+OHQlhgtWsLTXs+7uJiHfEeT3Ur7IsZaNYqRTLQ9sj2nB6M6jylcPCeCmH7qbszJmecg==} peerDependencies: - typescript: ">= 3.x" + typescript: '>= 3.x' 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.0.3: - resolution: - { - integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==, - } - engines: { node: ">=16.14.0" } + resolution: {integrity: sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==} + engines: {node: '>=16.14.0'} react-dom@18.2.0: - resolution: - { - integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==, - } + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} peerDependencies: react: ^18.2.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-dropzone@14.2.3: - resolution: - { - integrity: sha512-O3om8I+PkFKbxCukfIR3QAGftYXDZfOE2N1mr/7qebQJHs7U+/RSL/9xomJNpRg9kM5h9soQSdf0Gc7OHF5Fug==, - } - engines: { node: ">= 10.13" } + resolution: {integrity: sha512-O3om8I+PkFKbxCukfIR3QAGftYXDZfOE2N1mr/7qebQJHs7U+/RSL/9xomJNpRg9kM5h9soQSdf0Gc7OHF5Fug==} + engines: {node: '>= 10.13'} peerDependencies: - react: ">= 16.8 || 18.0.0" + react: '>= 16.8 || 18.0.0' react-easy-crop@4.7.5: - resolution: - { - integrity: sha512-qKfI4PuhaH1jOLC3DQfQB0cE0z+3N7bfyPkPejQmylXNb8nstfPMH+oHj3gKgpBHLFUiQp/C1rY7sVCVgtjn3Q==, - } + resolution: {integrity: sha512-qKfI4PuhaH1jOLC3DQfQB0cE0z+3N7bfyPkPejQmylXNb8nstfPMH+oHj3gKgpBHLFUiQp/C1rY7sVCVgtjn3Q==} peerDependencies: - react: ">=16.4.0" - react-dom: ">=16.4.0" + react: '>=16.4.0' + react-dom: '>=16.4.0' react-element-to-jsx-string@15.0.0: - resolution: - { - integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==, - } + resolution: {integrity: sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==} peerDependencies: react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0 react-error-overlay@6.0.11: - resolution: - { - integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==, - } + resolution: {integrity: sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==} react-freeze@1.0.4: - resolution: - { - integrity: sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-r4F0Sec0BLxWicc7HEyo2x3/2icUTrRmDjaaRyzzn+7aDyFZliszMDOgLVwSnQnYENOlL1o569Ze2HZefk8clA==} + engines: {node: '>=10'} peerDependencies: - react: ">=17.0.0" + react: '>=17.0.0' react-i18next@11.18.6: - resolution: - { - integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==, - } - peerDependencies: - i18next: ">= 19.0.0" - react: ">= 16.8.0" - react-dom: "*" - react-native: "*" + resolution: {integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==} + peerDependencies: + i18next: '>= 19.0.0' + react: '>= 16.8.0' + react-dom: '*' + react-native: '*' peerDependenciesMeta: react-dom: optional: true @@ -39402,15 +26259,12 @@ packages: optional: true react-i18next@13.5.0: - resolution: - { - integrity: sha512-CFJ5NDGJ2MUyBohEHxljOq/39NQ972rh1ajnadG9BjTk+UXbHLq4z5DKEbEQBDoIhUmmbuS/fIMJKo6VOax1HA==, - } - peerDependencies: - i18next: ">= 23.2.3" - react: ">= 16.8.0" - react-dom: "*" - react-native: "*" + resolution: {integrity: sha512-CFJ5NDGJ2MUyBohEHxljOq/39NQ972rh1ajnadG9BjTk+UXbHLq4z5DKEbEQBDoIhUmmbuS/fIMJKo6VOax1HA==} + peerDependencies: + i18next: '>= 23.2.3' + react: '>= 16.8.0' + react-dom: '*' + react-native: '*' peerDependenciesMeta: react-dom: optional: true @@ -39418,118 +26272,73 @@ packages: optional: true react-input-autosize@3.0.0: - resolution: - { - integrity: sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==, - } + resolution: {integrity: sha512-nL9uS7jEs/zu8sqwFE5MAPx6pPkNAriACQ2rGLlqmKr2sPGtN7TXTyDdQt4lbNXVx7Uzadb40x8qotIuru6Rhg==} peerDependencies: react: ^16.3.0 || ^17.0.0 react-inspector@4.0.1: - resolution: - { - integrity: sha512-xSiM6CE79JBqSj8Fzd9dWBHv57tLTH7OM57GP3VrE5crzVF3D5Khce9w1Xcw75OAbvrA0Mi2vBneR1OajKmXFg==, - } + resolution: {integrity: sha512-xSiM6CE79JBqSj8Fzd9dWBHv57tLTH7OM57GP3VrE5crzVF3D5Khce9w1Xcw75OAbvrA0Mi2vBneR1OajKmXFg==} peerDependencies: react: ^16.8.4 react-intersection-observer@8.34.0: - resolution: - { - integrity: sha512-TYKh52Zc0Uptp5/b4N91XydfSGKubEhgZRtcg1rhTKABXijc4Sdr1uTp5lJ8TN27jwUsdXxjHXtHa0kPj704sw==, - } + resolution: {integrity: sha512-TYKh52Zc0Uptp5/b4N91XydfSGKubEhgZRtcg1rhTKABXijc4Sdr1uTp5lJ8TN27jwUsdXxjHXtHa0kPj704sw==} peerDependencies: react: ^15.0.0 || ^16.0.0 || ^17.0.0|| ^18.0.0 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.1.0: - resolution: - { - integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==, - } + resolution: {integrity: sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==} react-is@18.2.0: - resolution: - { - integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==, - } + resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} react-key-handler@1.2.0-beta.3: - resolution: - { - integrity: sha512-Isd5O3JKDbPNCERVThPyJ0tTUDkeuTrGHE4+7lNT+6isXlLykroOaGuJ8A22hq6SpbSUKaPmGhxGAFtkag7Bgg==, - } + resolution: {integrity: sha512-Isd5O3JKDbPNCERVThPyJ0tTUDkeuTrGHE4+7lNT+6isXlLykroOaGuJ8A22hq6SpbSUKaPmGhxGAFtkag7Bgg==} peerDependencies: react: ^16.2.0-0 react-lifecycles-compat@3.0.4: - resolution: - { - integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==, - } + resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} react-lottie@1.2.4: - resolution: - { - integrity: sha512-kBGxI+MIZGBf4wZhNCWwHkMcVP+kbpmrLWH/SkO0qCKc7D7eSPcxQbfpsmsCo8v2KCBYjuGSou+xTqK44D/jMg==, - } - engines: { npm: ^3.0.0 } - peerDependencies: - prop-types: ^15.6.1 - react: ">=15.0.0" + resolution: {integrity: sha512-kBGxI+MIZGBf4wZhNCWwHkMcVP+kbpmrLWH/SkO0qCKc7D7eSPcxQbfpsmsCo8v2KCBYjuGSou+xTqK44D/jMg==} + engines: {npm: ^3.0.0} + peerDependencies: + prop-types: '*' + react: '>=15.0.0' peerDependenciesMeta: prop-types: optional: true react-markdown@4.3.1: - resolution: - { - integrity: sha512-HQlWFTbDxTtNY6bjgp3C3uv1h2xcjCSi1zAEzfBW9OwJJvENSYiLXWNXN5hHLsoqai7RnZiiHzcnWdXk2Splzw==, - } + resolution: {integrity: sha512-HQlWFTbDxTtNY6bjgp3C3uv1h2xcjCSi1zAEzfBW9OwJJvENSYiLXWNXN5hHLsoqai7RnZiiHzcnWdXk2Splzw==} peerDependencies: react: ^15.0.0 || ^16.0.0 react-motion@0.5.2: - resolution: - { - integrity: sha512-9q3YAvHoUiWlP3cK0v+w1N5Z23HXMj4IF4YuvjvWegWqNPfLXsOBE/V7UvQGpXxHFKRQQcNcVQE31g9SB/6qgQ==, - } + resolution: {integrity: sha512-9q3YAvHoUiWlP3cK0v+w1N5Z23HXMj4IF4YuvjvWegWqNPfLXsOBE/V7UvQGpXxHFKRQQcNcVQE31g9SB/6qgQ==} peerDependencies: react: ^0.14.9 || ^15.3.0 || ^16.0.0 react-native-adjust@4.38.0: - resolution: - { - integrity: sha512-kNobWxemV4h+/iPCWd5fzE4cuT3rhqSaZQvPpKvLMzqxhpuCdEzaVm30T7SCs0a/StyFzlPk2D++0ktVZjt2SA==, - } + resolution: {integrity: sha512-kNobWxemV4h+/iPCWd5fzE4cuT3rhqSaZQvPpKvLMzqxhpuCdEzaVm30T7SCs0a/StyFzlPk2D++0ktVZjt2SA==} react-native-android-location-services-dialog-box@2.8.2: - resolution: - { - integrity: sha512-zBTi0xJQoF6GdImRhXOCXezYuALlPgbctqG3eOrZu63hdrlvTBhqATkb6DB5JM9kpcMbX1skMIOI3m71zKGsPA==, - } + resolution: {integrity: sha512-zBTi0xJQoF6GdImRhXOCXezYuALlPgbctqG3eOrZu63hdrlvTBhqATkb6DB5JM9kpcMbX1skMIOI3m71zKGsPA==} peerDependencies: - react-native: ">= 0.56.0" + react-native: '>= 0.56.0' react-native-animatable@1.3.3: - resolution: - { - integrity: sha512-2ckIxZQAsvWn25Ho+DK3d1mXIgj7tITkrS4pYDvx96WyOttSvzzFeQnM2od0+FUMzILbdHDsDEqZvnz1DYNQ1w==, - } + resolution: {integrity: sha512-2ckIxZQAsvWn25Ho+DK3d1mXIgj7tITkrS4pYDvx96WyOttSvzzFeQnM2od0+FUMzILbdHDsDEqZvnz1DYNQ1w==} peerDependencies: - react: "*" - react-native: "*" + react: '*' + react-native: '*' peerDependenciesMeta: react: optional: true @@ -39537,13 +26346,10 @@ packages: optional: true react-native-animatable@1.4.0: - resolution: - { - integrity: sha512-DZwaDVWm2NBvBxf7I0wXKXLKb/TxDnkV53sWhCvei1pRyTX3MVFpkvdYBknNBqPrxYuAIlPxEp7gJOidIauUkw==, - } + resolution: {integrity: sha512-DZwaDVWm2NBvBxf7I0wXKXLKb/TxDnkV53sWhCvei1pRyTX3MVFpkvdYBknNBqPrxYuAIlPxEp7gJOidIauUkw==} peerDependencies: - react: "*" - react-native: "*" + react: '*' + react-native: '*' peerDependenciesMeta: react: optional: true @@ -39551,38 +26357,26 @@ packages: optional: true react-native-biometrics@3.0.1: - resolution: - { - integrity: sha512-Ru80gXRa9KG04sl5AB9HyjLjVbduhqZVjA+AiOSGqr+fNqCDmCu9y5WEksnjbnniNLmq1yGcw+qcLXmR1ddLDQ==, - } + resolution: {integrity: sha512-Ru80gXRa9KG04sl5AB9HyjLjVbduhqZVjA+AiOSGqr+fNqCDmCu9y5WEksnjbnniNLmq1yGcw+qcLXmR1ddLDQ==} peerDependencies: - react-native: ">=0.60.0" + react-native: '>=0.60.0' react-native-ble-plx@3.1.2: - resolution: - { - integrity: sha512-QgukxgjrZYMUxyZ9w4XEiR9QdbdKLibhggE+sPRxp6q11rZG9upU5aricnVB2CiSbn164nlYx3j+GNlJKSlaLg==, - } - engines: { node: ">= 16.0.0" } + resolution: {integrity: sha512-QgukxgjrZYMUxyZ9w4XEiR9QdbdKLibhggE+sPRxp6q11rZG9upU5aricnVB2CiSbn164nlYx3j+GNlJKSlaLg==} + engines: {node: '>= 16.0.0'} peerDependencies: - react: "*" - react-native: "*" + react: '*' + react-native: '*' react-native-bundle-visualizer@3.1.3: - resolution: - { - integrity: sha512-FPnrQS3t/WM67S3fBdaQ0pvkpk/ZJOC4nZpiQCHTpjNZTUmbO5vQ4QbAlOpSayHp5n3nu1Ml/KIJaC6R5cwVng==, - } + resolution: {integrity: sha512-FPnrQS3t/WM67S3fBdaQ0pvkpk/ZJOC4nZpiQCHTpjNZTUmbO5vQ4QbAlOpSayHp5n3nu1Ml/KIJaC6R5cwVng==} hasBin: true react-native-config@1.5.3: - resolution: - { - integrity: sha512-3D05Abgk5DfDw9w258EzXvX5AkU7eqj3u9H0H0L4gUga4nYg/zuupcrpGbpF4QeXBcJ84jjs6g8JaEP6VBT7Pg==, - } + resolution: {integrity: sha512-3D05Abgk5DfDw9w258EzXvX5AkU7eqj3u9H0H0L4gUga4nYg/zuupcrpGbpF4QeXBcJ84jjs6g8JaEP6VBT7Pg==} peerDependencies: - react-native: "*" - react-native-windows: ">=0.61" + react-native: '*' + react-native-windows: '>=0.61' peerDependenciesMeta: react-native: optional: true @@ -39590,172 +26384,112 @@ packages: optional: true react-native-crypto@2.2.0: - resolution: - { - integrity: sha512-eZu9Y8pa8BN9FU2pIex7MLRAi+Cd1Y6bsxfiufKh7sfraAACJvjQTeW7/zcQAT93WMfM+D0OVk+bubvkrbrUkw==, - } + resolution: {integrity: sha512-eZu9Y8pa8BN9FU2pIex7MLRAi+Cd1Y6bsxfiufKh7sfraAACJvjQTeW7/zcQAT93WMfM+D0OVk+bubvkrbrUkw==} peerDependencies: - react-native-randombytes: ">=2.0.0 <4.0.0" + react-native-randombytes: '>=2.0.0 <4.0.0' react-native-debugger-open@0.4.3: - resolution: - { - integrity: sha512-gYdVWBhQ0a/PbXgCi3T+FU4LS0ucq8QyUhDqtRd3JRr1AOyKSn1RHj+jxtda+LhfyodrIPbZXHRXL0MvZ5FLSA==, - } + resolution: {integrity: sha512-gYdVWBhQ0a/PbXgCi3T+FU4LS0ucq8QyUhDqtRd3JRr1AOyKSn1RHj+jxtda+LhfyodrIPbZXHRXL0MvZ5FLSA==} hasBin: true react-native-device-info@11.1.0: - resolution: - { - integrity: sha512-hzXJSObJdezEz0hF7MAJ3tGeoesuQWenXXt9mrQR9Mjb8kXpZ09rqSsZ/quNpJdZpQ3rYiFa3/0GFG5KNn9PBg==, - } + resolution: {integrity: sha512-hzXJSObJdezEz0hF7MAJ3tGeoesuQWenXXt9mrQR9Mjb8kXpZ09rqSsZ/quNpJdZpQ3rYiFa3/0GFG5KNn9PBg==} peerDependencies: - react-native: "*" + react-native: '*' react-native-easy-markdown@2.0.0: - resolution: - { - integrity: sha512-vGK41pZj/4lM9q8/Bqox/2qqfJVrSxLugBWDBNLuOqvxpBw/b3q4aUxCpP8nyBWv5BifrD8+OcdhC27bRvEFIw==, - } + resolution: {integrity: sha512-vGK41pZj/4lM9q8/Bqox/2qqfJVrSxLugBWDBNLuOqvxpBw/b3q4aUxCpP8nyBWv5BifrD8+OcdhC27bRvEFIw==} peerDependencies: - prop-types: "*" - react-native: "*" + prop-types: '*' + react-native: '*' peerDependenciesMeta: prop-types: optional: true react-native-extra-dimensions-android@1.2.5: - resolution: - { - integrity: sha512-eorFo9X1vEqAWUkgcZ300yKBG1wtgNeE7tdWAH2CE+P50FGTniJg5Sr6l1iPWG8ZskQOuF+KeiSTFlDa4vLfMw==, - } + resolution: {integrity: sha512-eorFo9X1vEqAWUkgcZ300yKBG1wtgNeE7tdWAH2CE+P50FGTniJg5Sr6l1iPWG8ZskQOuF+KeiSTFlDa4vLfMw==} react-native-fast-crypto@2.2.0: - resolution: - { - integrity: sha512-JXQmnXGH3HpJYZrBsR7sL6cO/W3k1pHqTYbwnwTsJ8VUYXIsIEf1T0nMk6Z+XkQNI8RIQOeWJ9AuZLai4onHZg==, - } + resolution: {integrity: sha512-JXQmnXGH3HpJYZrBsR7sL6cO/W3k1pHqTYbwnwTsJ8VUYXIsIEf1T0nMk6Z+XkQNI8RIQOeWJ9AuZLai4onHZg==} peerDependencies: - react-native: ">=0.47.0 <1.0.0" + react-native: '>=0.47.0 <1.0.0' react-native-fast-image@8.6.3: - resolution: - { - integrity: sha512-Sdw4ESidXCXOmQ9EcYguNY2swyoWmx53kym2zRsvi+VeFCHEdkO+WG1DK+6W81juot40bbfLNhkc63QnWtesNg==, - } + resolution: {integrity: sha512-Sdw4ESidXCXOmQ9EcYguNY2swyoWmx53kym2zRsvi+VeFCHEdkO+WG1DK+6W81juot40bbfLNhkc63QnWtesNg==} peerDependencies: react: ^17 || ^18 - react-native: ">=0.60.0" + react-native: '>=0.60.0' react-native-fast-pbkdf2@0.3.1: - resolution: - { - integrity: sha512-G+1EdQs+w7RhgZKXbodbGPy6zKxX3qdSe1YSh9B7x6qZLTd3dDI15R33faWoiQjrESepbfvX3M64UevBT6SDDA==, - } + resolution: {integrity: sha512-G+1EdQs+w7RhgZKXbodbGPy6zKxX3qdSe1YSh9B7x6qZLTd3dDI15R33faWoiQjrESepbfvX3M64UevBT6SDDA==} peerDependencies: - react: "*" - react-native: "*" + react: '*' + react-native: '*' react-native-gesture-handler@2.16.0: - resolution: - { - integrity: sha512-1hFkx7RIfeJSyTQQ0Nkv4icFVZ5+XjQkd47OgZMBFzoB7ecL+nFSz8KLi3OCWOhq+nbHpSPlSG5VF3CQNCJpWA==, - } + resolution: {integrity: sha512-1hFkx7RIfeJSyTQQ0Nkv4icFVZ5+XjQkd47OgZMBFzoB7ecL+nFSz8KLi3OCWOhq+nbHpSPlSG5VF3CQNCJpWA==} peerDependencies: - react: "*" - react-native: "*" + react: '*' + react-native: '*' react-native-get-random-values@1.11.0: - resolution: - { - integrity: sha512-4BTbDbRmS7iPdhYLRcz3PGFIpFJBwNZg9g42iwa2P6FOv9vZj/xJc678RZXnLNZzd0qd7Q3CCF6Yd+CU2eoXKQ==, - } + resolution: {integrity: sha512-4BTbDbRmS7iPdhYLRcz3PGFIpFJBwNZg9g42iwa2P6FOv9vZj/xJc678RZXnLNZzd0qd7Q3CCF6Yd+CU2eoXKQ==} peerDependencies: - react-native: ">=0.56" + react-native: '>=0.56' react-native-haptic-feedback@2.2.0: - resolution: - { - integrity: sha512-3tqJOjCguWhIrX0nkURn4yw6kXdsSDjjrvZCRjKXYGlL28hdQmoW2okAHduDTD9FWj9lA+lHgwFWgGs4aFNN7A==, - } + resolution: {integrity: sha512-3tqJOjCguWhIrX0nkURn4yw6kXdsSDjjrvZCRjKXYGlL28hdQmoW2okAHduDTD9FWj9lA+lHgwFWgGs4aFNN7A==} peerDependencies: - react-native: ">=0.60.0" + react-native: '>=0.60.0' react-native-image-crop-tools@1.6.4: - resolution: - { - integrity: sha512-GhI76SlKAI7vfUfg/UnG/MrPTe7ffwjsOowBnYYAB2npJ2ij/iAG4LRXOPlQygoY+yiCy158sYo4wmKDc0RfLQ==, - } + resolution: {integrity: sha512-GhI76SlKAI7vfUfg/UnG/MrPTe7ffwjsOowBnYYAB2npJ2ij/iAG4LRXOPlQygoY+yiCy158sYo4wmKDc0RfLQ==} peerDependencies: - react: ">=16.0.0" - react-native: ">=0.59.0-rc.0 <1.0.x" + react: '>=16.0.0' + react-native: '>=0.59.0-rc.0 <1.0.x' react-native-image-picker@5.7.0: - resolution: - { - integrity: sha512-LGBrFQzKEAt/u4z+IcY7COZA7N6lCeLQ2dMu1PubK10+d9YBRS8n/ABNj48CJhEpUhcRPt7H3iWbwIuOlcZrDA==, - } + resolution: {integrity: sha512-LGBrFQzKEAt/u4z+IcY7COZA7N6lCeLQ2dMu1PubK10+d9YBRS8n/ABNj48CJhEpUhcRPt7H3iWbwIuOlcZrDA==} peerDependencies: - react: "*" - react-native: "*" + react: '*' + react-native: '*' react-native-inappbrowser-reborn@3.7.0: - resolution: - { - integrity: sha512-Ia53jYNtFcbNaX5W3QfOmN25I7bcvuDiQmSY5zABXjy4+WI20bPc9ua09li55F8yDCjv3C99jX6vKms68mBV7g==, - } + resolution: {integrity: sha512-Ia53jYNtFcbNaX5W3QfOmN25I7bcvuDiQmSY5zABXjy4+WI20bPc9ua09li55F8yDCjv3C99jX6vKms68mBV7g==} peerDependencies: - react-native: ">=0.56" + react-native: '>=0.56' react-native-iphone-x-helper@1.3.1: - resolution: - { - integrity: sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg==, - } + resolution: {integrity: sha512-HOf0jzRnq2/aFUcdCJ9w9JGzN3gdEg0zFE4FyYlp4jtidqU03D5X7ZegGKfT1EWteR0gPBGp9ye5T5FvSWi9Yg==} peerDependencies: - react-native: ">=0.42.0" + react-native: '>=0.42.0' react-native-keyboard-aware-scroll-view@0.9.5: - resolution: - { - integrity: sha512-XwfRn+T/qBH9WjTWIBiJD2hPWg0yJvtaEw6RtPCa5/PYHabzBaWxYBOl0usXN/368BL1XktnZPh8C2lmTpOREA==, - } + resolution: {integrity: sha512-XwfRn+T/qBH9WjTWIBiJD2hPWg0yJvtaEw6RtPCa5/PYHabzBaWxYBOl0usXN/368BL1XktnZPh8C2lmTpOREA==} peerDependencies: - react-native: ">=0.48.4" + react-native: '>=0.48.4' react-native-keychain@7.0.0: - resolution: - { - integrity: sha512-tH26sgW4OxB/llXmhO+DajFISEUoF1Ip2+WSDMIgCt8SP1xRE81m2qFzgIOc/7StYsUERxHhDPkxvq2H0/Goig==, - } + resolution: {integrity: sha512-tH26sgW4OxB/llXmhO+DajFISEUoF1Ip2+WSDMIgCt8SP1xRE81m2qFzgIOc/7StYsUERxHhDPkxvq2H0/Goig==} react-native-launch-arguments@4.0.2: - resolution: - { - integrity: sha512-OaXXOG9jVrmb66cTV8wPdhKxaSVivOBKuYr8wgKCM5uAHkY5B6SkvydgJ3B/x8uGoWqtr87scSYYDm4MMU4rSg==, - } + resolution: {integrity: sha512-OaXXOG9jVrmb66cTV8wPdhKxaSVivOBKuYr8wgKCM5uAHkY5B6SkvydgJ3B/x8uGoWqtr87scSYYDm4MMU4rSg==} peerDependencies: - react: ">=16.8.1" - react-native: ">=0.60.0-rc.0 <1.0.x" + react: '>=16.8.1' + react-native: '>=0.60.0-rc.0 <1.0.x' react-native-level-fs@3.0.1: - resolution: - { - integrity: sha512-ffihv0Obh2zGFcpHHDlq7bQHfGPwgtmZ4No1tx9jAJF69vkQS6TI93AE2FK2qP7tsDg0DNSnn+KuJoriYilJNA==, - } + resolution: {integrity: sha512-ffihv0Obh2zGFcpHHDlq7bQHfGPwgtmZ4No1tx9jAJF69vkQS6TI93AE2FK2qP7tsDg0DNSnn+KuJoriYilJNA==} peerDependencies: - asyncstorage-down: ">=3.0.0 <5.0.0" + asyncstorage-down: '>=3.0.0 <5.0.0' react-native-localize@2.2.6: - resolution: - { - integrity: sha512-EZETlC1ZlW/4g6xfsNCwAkAw5BDL2A6zk/08JjFR/GRGxYuKRD7iP1hHn1+h6DEu+xROjPpoNeXfMER2vkTVIQ==, - } - peerDependencies: - react: ">=16.8.6" - react-native: ">=0.60.0" - react-native-macos: ">=0.64.0" - react-native-windows: ">=0.62.0" + resolution: {integrity: sha512-EZETlC1ZlW/4g6xfsNCwAkAw5BDL2A6zk/08JjFR/GRGxYuKRD7iP1hHn1+h6DEu+xROjPpoNeXfMER2vkTVIQ==} + peerDependencies: + react: '>=16.8.6' + react-native: '>=0.60.0' + react-native-macos: '>=0.64.0' + react-native-windows: '>=0.62.0' peerDependenciesMeta: react-native-macos: optional: true @@ -39763,1122 +26497,669 @@ packages: optional: true react-native-modal-datetime-picker@14.0.1: - resolution: - { - integrity: sha512-wQt4Pjxt2jiTsVhLMG0E7WrRTYBEQx2d/nUrFVCbRqJ7lrXocXaT5UZsyMpV93TnKcyut62OprbO88wYq/vh0g==, - } + resolution: {integrity: sha512-wQt4Pjxt2jiTsVhLMG0E7WrRTYBEQx2d/nUrFVCbRqJ7lrXocXaT5UZsyMpV93TnKcyut62OprbO88wYq/vh0g==} peerDependencies: - "@react-native-community/datetimepicker": ">=3.0.0" - react-native: ">=0.65.0" + '@react-native-community/datetimepicker': '>=3.0.0' + react-native: '>=0.65.0' react-native-modal-selector@2.1.2: - resolution: - { - integrity: sha512-+Cvoz/yNUFmfIkJ7xkmlLR2nhJOUhx00S6BPqp2Ruy8LkmaiNr7WMZ4BzsgzylyEgZ84Q+42HQ0v0QzJYobviA==, - } + resolution: {integrity: sha512-+Cvoz/yNUFmfIkJ7xkmlLR2nhJOUhx00S6BPqp2Ruy8LkmaiNr7WMZ4BzsgzylyEgZ84Q+42HQ0v0QzJYobviA==} react-native-modal@13.0.1: - resolution: - { - integrity: sha512-UB+mjmUtf+miaG/sDhOikRfBOv0gJdBU2ZE1HtFWp6UixW9jCk/bhGdHUgmZljbPpp0RaO/6YiMmQSSK3kkMaw==, - } + resolution: {integrity: sha512-UB+mjmUtf+miaG/sDhOikRfBOv0gJdBU2ZE1HtFWp6UixW9jCk/bhGdHUgmZljbPpp0RaO/6YiMmQSSK3kkMaw==} peerDependencies: - react: "*" - react-native: ">=0.65.0" + react: '*' + react-native: '>=0.65.0' react-native-navigation-bar-color@2.0.2: - resolution: - { - integrity: sha512-ZmpLWRocyme1au11e5ZuecMS/UCi57nlzgnioi03Q6ERMbeUOqqbWgNBaNB7SsCeqBV6fZPjo3+A64zEIpzw4w==, - } + resolution: {integrity: sha512-ZmpLWRocyme1au11e5ZuecMS/UCi57nlzgnioi03Q6ERMbeUOqqbWgNBaNB7SsCeqBV6fZPjo3+A64zEIpzw4w==} react-native-pager-view@6.3.0: - resolution: - { - integrity: sha512-ufJOoVa9pFL1J/yb4hpsCqp8n1qTlcF5VvwqvCacHX//D7hSeRscsiIXg1u1pXNWwllvACb+mqxec/3Uj2mxrA==, - } + resolution: {integrity: sha512-ufJOoVa9pFL1J/yb4hpsCqp8n1qTlcF5VvwqvCacHX//D7hSeRscsiIXg1u1pXNWwllvACb+mqxec/3Uj2mxrA==} peerDependencies: - react: "*" - react-native: "*" + react: '*' + react-native: '*' react-native-performance@3.1.2: - resolution: - { - integrity: sha512-N4MtFuTW9NLszPTCWyxM33XuTg+Ubr9OKWhvCwzpaKeKFyN5zkBs8RmJOle7Nl69NgaQtO8CuxsyANUSFC7Czw==, - } + resolution: {integrity: sha512-N4MtFuTW9NLszPTCWyxM33XuTg+Ubr9OKWhvCwzpaKeKFyN5zkBs8RmJOle7Nl69NgaQtO8CuxsyANUSFC7Czw==} peerDependencies: - react-native: "*" + react-native: '*' react-native-qrcode-svg@6.1.1: - resolution: - { - integrity: sha512-98cc8fkl61g2V5cesmxjlMr1WaJZcB6dyeN8T9d/shIWtJxU8KRCinNCZNBlIvO9fxbIpo5SgK+pqSItK0+vow==, - } + resolution: {integrity: sha512-98cc8fkl61g2V5cesmxjlMr1WaJZcB6dyeN8T9d/shIWtJxU8KRCinNCZNBlIvO9fxbIpo5SgK+pqSItK0+vow==} peerDependencies: - react: "*" - react-native: ">=0.63.4" + react: '*' + react-native: '>=0.63.4' react-native-svg: ^12.1.0 react-native-randombytes@3.6.1: - resolution: - { - integrity: sha512-qxkwMbOZ0Hff1V7VqpaWrR6ItkA+oF6bnI79Qp9F3Tk8WBsdKDi6m1mi3dEdFWePoRLrhJ2L03rU0yabst1tVw==, - } + resolution: {integrity: sha512-qxkwMbOZ0Hff1V7VqpaWrR6ItkA+oF6bnI79Qp9F3Tk8WBsdKDi6m1mi3dEdFWePoRLrhJ2L03rU0yabst1tVw==} react-native-reanimated@3.8.1: - resolution: - { - integrity: sha512-EdM0vr3JEaNtqvstqESaPfOBy0gjYBkr1iEolWJ82Ax7io8y9OVUIphgsLKTB36CtR1XtmBw0RZVj7KArc7ZVA==, - } + resolution: {integrity: sha512-EdM0vr3JEaNtqvstqESaPfOBy0gjYBkr1iEolWJ82Ax7io8y9OVUIphgsLKTB36CtR1XtmBw0RZVj7KArc7ZVA==} peerDependencies: - "@babel/core": ^7.0.0-0 - react: "*" - react-native: "*" + '@babel/core': ^7.0.0-0 + react: '*' + react-native: '*' react-native-reanimated@3.9.0: - resolution: - { - integrity: sha512-OMZV2BVmxZvm8UhlXBrESO0y/ODGTRpQRQUO7U9QXysOF9RaR8FbO6KS0x99MH19zfFTV8cLGN/vYW1dFia9Rw==, - } + resolution: {integrity: sha512-OMZV2BVmxZvm8UhlXBrESO0y/ODGTRpQRQUO7U9QXysOF9RaR8FbO6KS0x99MH19zfFTV8cLGN/vYW1dFia9Rw==} peerDependencies: - "@babel/core": ^7.0.0-0 - react: "*" - react-native: "*" + '@babel/core': ^7.0.0-0 + react: '*' + react-native: '*' react-native-restart@0.0.24: - resolution: - { - integrity: sha512-pvJNU3NwQk6bCG2gOWcQpZ4IxhtELB0K9gzmtixfsaTFbW1UXXHkJNjk1kHazcbH5hrD7QbUkR63fsAVh8X4VQ==, - } + resolution: {integrity: sha512-pvJNU3NwQk6bCG2gOWcQpZ4IxhtELB0K9gzmtixfsaTFbW1UXXHkJNjk1kHazcbH5hrD7QbUkR63fsAVh8X4VQ==} peerDependencies: - react: "*" - react-native: "*" + react: '*' + react-native: '*' react-native-safe-area-context@4.10.5: - resolution: - { - integrity: sha512-Wyb0Nqw2XJ6oZxW/cK8k5q7/UAhg/wbEG6UVf89rQqecDZTDA5ic//P9J6VvJRVZerzGmxWQpVuM7f+PRYUM4g==, - } + resolution: {integrity: sha512-Wyb0Nqw2XJ6oZxW/cK8k5q7/UAhg/wbEG6UVf89rQqecDZTDA5ic//P9J6VvJRVZerzGmxWQpVuM7f+PRYUM4g==} peerDependencies: - react: "*" - react-native: "*" + react: '*' + react-native: '*' react-native-safe-area-context@4.10.9: - resolution: - { - integrity: sha512-wz/JXV1kARWyP5q93PFNKQP03StVBimOK7rRYEJjM+blZdXbM6H7EP3XhQUb6OK620+0M1AzpcGgyTHvgSJNAw==, - } + resolution: {integrity: sha512-wz/JXV1kARWyP5q93PFNKQP03StVBimOK7rRYEJjM+blZdXbM6H7EP3XhQUb6OK620+0M1AzpcGgyTHvgSJNAw==} peerDependencies: - react: "*" - react-native: "*" + react: '*' + react-native: '*' react-native-screens@3.31.1: - resolution: - { - integrity: sha512-8fRW362pfZ9y4rS8KY5P3DFScrmwo/vu1RrRMMx0PNHbeC9TLq0Kw1ubD83591yz64gLNHFLTVkTJmWeWCXKtQ==, - } + resolution: {integrity: sha512-8fRW362pfZ9y4rS8KY5P3DFScrmwo/vu1RrRMMx0PNHbeC9TLq0Kw1ubD83591yz64gLNHFLTVkTJmWeWCXKtQ==} peerDependencies: - react: "*" - react-native: "*" + react: '*' + react-native: '*' react-native-share@10.1.0: - resolution: - { - integrity: sha512-fKKvwaZe5s3HW0tcRKyR5AWvAfXvkk0FgTw1nYWYjI4gNqntXbMjRqWZed8Hmd1MvIJS17K/ELPges0tsxbp3g==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-fKKvwaZe5s3HW0tcRKyR5AWvAfXvkk0FgTw1nYWYjI4gNqntXbMjRqWZed8Hmd1MvIJS17K/ELPges0tsxbp3g==} + engines: {node: '>=16'} react-native-splash-screen@3.2.0: - resolution: - { - integrity: sha512-Ls9qiNZzW/OLFoI25wfjjAcrf2DZ975hn2vr6U9gyuxi2nooVbzQeFoQS5vQcbCt9QX5NY8ASEEAtlLdIa6KVg==, - } + resolution: {integrity: sha512-Ls9qiNZzW/OLFoI25wfjjAcrf2DZ975hn2vr6U9gyuxi2nooVbzQeFoQS5vQcbCt9QX5NY8ASEEAtlLdIa6KVg==} peerDependencies: - react-native: ">=0.57.0" + react-native: '>=0.57.0' react-native-startup-time@2.1.0: - resolution: - { - integrity: sha512-cm014/ig/ddHEEiAKoxfTDxUwrs5gaoxKpAOnpMIuhW5yozLxhouDtkozD26TLQ2UcIgftowgaScPMeZnI1YYg==, - } + resolution: {integrity: sha512-cm014/ig/ddHEEiAKoxfTDxUwrs5gaoxKpAOnpMIuhW5yozLxhouDtkozD26TLQ2UcIgftowgaScPMeZnI1YYg==} peerDependencies: react: ^16.8.3 - react-native: ">=0.59.0" + react-native: '>=0.59.0' react-native-svg@13.14.0: - resolution: - { - integrity: sha512-27ZnxUkHgWICimhuj6MuqBkISN53lVvgWJB7pIypjXysAyM+nqgQBPh4vXg+7MbqLBoYvR4PiBgKfwwGAqVxHg==, - } + resolution: {integrity: sha512-27ZnxUkHgWICimhuj6MuqBkISN53lVvgWJB7pIypjXysAyM+nqgQBPh4vXg+7MbqLBoYvR4PiBgKfwwGAqVxHg==} peerDependencies: - react: "*" - react-native: "*" + react: '*' + react-native: '*' react-native-swipe-gestures@1.0.5: - resolution: - { - integrity: sha512-Ns7Bn9H/Tyw278+5SQx9oAblDZ7JixyzeOczcBK8dipQk2pD7Djkcfnf1nB/8RErAmMLL9iXgW0QHqiII8AhKw==, - } + resolution: {integrity: sha512-Ns7Bn9H/Tyw278+5SQx9oAblDZ7JixyzeOczcBK8dipQk2pD7Djkcfnf1nB/8RErAmMLL9iXgW0QHqiII8AhKw==} react-native-tab-view@3.5.2: - resolution: - { - integrity: sha512-nE5WqjbeEPsWQx4mtz81QGVvgHRhujTNIIZiMCx3Bj6CBFDafbk7XZp9ocmtzXUQaZ4bhtVS43R4FIiR4LboJw==, - } + resolution: {integrity: sha512-nE5WqjbeEPsWQx4mtz81QGVvgHRhujTNIIZiMCx3Bj6CBFDafbk7XZp9ocmtzXUQaZ4bhtVS43R4FIiR4LboJw==} peerDependencies: - react: "*" - react-native: "*" - react-native-pager-view: "*" + react: '*' + react-native: '*' + react-native-pager-view: '*' react-native-tcp-socket@6.0.6: - resolution: - { - integrity: sha512-FIFSP+3S5OnJRjl7ddD7G9NfVbVEiQ4WROEmOBei1cKE0pDz2R/Kcm4XkFlnMd5sdoG6Wbv830Yd/ZsmOjkEKw==, - } + resolution: {integrity: sha512-FIFSP+3S5OnJRjl7ddD7G9NfVbVEiQ4WROEmOBei1cKE0pDz2R/Kcm4XkFlnMd5sdoG6Wbv830Yd/ZsmOjkEKw==} peerDependencies: - react-native: ">=0.60.0" + react-native: '>=0.60.0' react-native-udp@4.1.7: - resolution: - { - integrity: sha512-NUE3zewu61NCdSsLlj+l0ad6qojcVEZPT4hVG/x6DU9U4iCzwtfZSASh9vm7teAcVzLkdD+cO3411LHshAi/wA==, - } + resolution: {integrity: sha512-NUE3zewu61NCdSsLlj+l0ad6qojcVEZPT4hVG/x6DU9U4iCzwtfZSASh9vm7teAcVzLkdD+cO3411LHshAi/wA==} react-native-url-polyfill@1.3.0: - resolution: - { - integrity: sha512-w9JfSkvpqqlix9UjDvJjm1EjSt652zVQ6iwCIj1cVVkwXf4jQhQgTNXY6EVTwuAmUjg6BC6k9RHCBynoLFo3IQ==, - } + resolution: {integrity: sha512-w9JfSkvpqqlix9UjDvJjm1EjSt652zVQ6iwCIj1cVVkwXf4jQhQgTNXY6EVTwuAmUjg6BC6k9RHCBynoLFo3IQ==} peerDependencies: - react-native: "*" + react-native: '*' react-native-vector-icons@10.2.0: - resolution: - { - integrity: sha512-n5HGcxUuVaTf9QJPs/W22xQpC2Z9u0nb0KgLPnVltP8vdUvOp6+R26gF55kilP/fV4eL4vsAHUqUjewppJMBOQ==, - } + resolution: {integrity: sha512-n5HGcxUuVaTf9QJPs/W22xQpC2Z9u0nb0KgLPnVltP8vdUvOp6+R26gF55kilP/fV4eL4vsAHUqUjewppJMBOQ==} hasBin: true react-native-version-number@0.3.6: - resolution: - { - integrity: sha512-TdyXiK90NiwmSbmAUlUBOV6WI1QGoqtvZZzI5zQY4fKl67B3ZrZn/h+Wy/OYIKKFMfePSiyfeIs8LtHGOZ/NgA==, - } + resolution: {integrity: sha512-TdyXiK90NiwmSbmAUlUBOV6WI1QGoqtvZZzI5zQY4fKl67B3ZrZn/h+Wy/OYIKKFMfePSiyfeIs8LtHGOZ/NgA==} react-native-video@5.2.1: - resolution: - { - integrity: sha512-aJlr9MeTuQ0LpZ4n+EC9RvhoKeiPbLtI2Rxy8u7zo/wzGevbRpWHSBj9xZ5YDBXnAVXzuqyNIkGhdw7bfdIBZw==, - } + resolution: {integrity: sha512-aJlr9MeTuQ0LpZ4n+EC9RvhoKeiPbLtI2Rxy8u7zo/wzGevbRpWHSBj9xZ5YDBXnAVXzuqyNIkGhdw7bfdIBZw==} react-native-web@0.19.10: - resolution: - { - integrity: sha512-IQoHiTQq8egBCVVwmTrYcFLgEFyb4LMZYEktHn4k22JMk9+QTCEz5WTfvr+jdNoeqj/7rtE81xgowKbfGO74qg==, - } + resolution: {integrity: sha512-IQoHiTQq8egBCVVwmTrYcFLgEFyb4LMZYEktHn4k22JMk9+QTCEz5WTfvr+jdNoeqj/7rtE81xgowKbfGO74qg==} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 react-native-webview@13.10.3: - resolution: - { - integrity: sha512-Gs8TvwvKvf8C6eVa3znyDn1MeYnC6tyPyBZz2D+pxys+tMn5bFUnDVdv7UpACEyoXIifsKRG7zJZu0D8OUsd2w==, - } + resolution: {integrity: sha512-Gs8TvwvKvf8C6eVa3znyDn1MeYnC6tyPyBZz2D+pxys+tMn5bFUnDVdv7UpACEyoXIifsKRG7zJZu0D8OUsd2w==} peerDependencies: - react: "*" - react-native: "*" + react: '*' + react-native: '*' react-native@0.74.5: - resolution: - { - integrity: sha512-Bgg2WvxaGODukJMTZFTZBNMKVaROHLwSb8VAGEdrlvKwfb1hHg/3aXTUICYk7dwgAnb+INbGMwnF8yeAgIUmqw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-Bgg2WvxaGODukJMTZFTZBNMKVaROHLwSb8VAGEdrlvKwfb1hHg/3aXTUICYk7dwgAnb+INbGMwnF8yeAgIUmqw==} + engines: {node: '>=18'} hasBin: true peerDependencies: - "@types/react": ^18.2.6 + '@types/react': ^18.2.6 react: 18.2.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true react-native@0.74.6: - resolution: - { - integrity: sha512-TZ8uLf+dH+nO5nFwjhMd4PqtraeNT5cXQ0ySAhq7qqbTBgalxO3UklsLFW3cTSedC+eLw6J3P3H62e3/MjpWNw==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-TZ8uLf+dH+nO5nFwjhMd4PqtraeNT5cXQ0ySAhq7qqbTBgalxO3UklsLFW3cTSedC+eLw6J3P3H62e3/MjpWNw==} + engines: {node: '>=18'} hasBin: true peerDependencies: - "@types/react": ^18.2.6 + '@types/react': ^18.2.6 react: 18.2.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true react-prismazoom@3.3.5: - resolution: - { - integrity: sha512-bpXY6Te325Ot11PzWAPrwrxi06CcJeKx9WOQvjdt+msmPOdgJgmvC70Khu+UG9Hur161TeNKNfepwvg0BT/USQ==, - } + resolution: {integrity: sha512-bpXY6Te325Ot11PzWAPrwrxi06CcJeKx9WOQvjdt+msmPOdgJgmvC70Khu+UG9Hur161TeNKNfepwvg0BT/USQ==} peerDependencies: - react: ">=16.8.0" - react-dom: ">=16.8.0" + react: '>=16.8.0' + react-dom: '>=16.8.0' react-redux@7.2.9: - resolution: - { - integrity: sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==, - } + resolution: {integrity: sha512-Gx4L3uM182jEEayZfRbI/G11ZpYdNAnBs70lFVMNdHJI76XYtR+7m0MN+eAs7UHBPhWXcnFPaS+9owSCJQHNpQ==} peerDependencies: react: ^16.8.3 || ^17 || ^18 - react-dom: "*" + react-dom: '*' peerDependenciesMeta: react-dom: optional: true react-refresh@0.10.0: - resolution: - { - integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==} + engines: {node: '>=0.10.0'} react-refresh@0.11.0: - resolution: - { - integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==} + engines: {node: '>=0.10.0'} react-refresh@0.14.0: - resolution: - { - integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==} + engines: {node: '>=0.10.0'} 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-refresh@0.4.3: - resolution: - { - integrity: sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Hwln1VNuGl/6bVwnd0Xdn1e84gT/8T9aYNL+HAKDArLCS7LWjwr7StE30IEYbIkx0Vi3vs+coQxe+SQDbGbbpA==} + engines: {node: '>=0.10.0'} react-remove-scroll-bar@2.3.6: - resolution: - { - integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==} + 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.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-router-dom@5.3.4: - resolution: - { - integrity: sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==, - } + resolution: {integrity: sha512-m4EqFMHv/Ih4kpcBCONHbkT68KoAeHN4p3lAGoNryfHi0dMy0kCzEZakiKRsvg5wHZ/JLrLW8o8KomWiz/qbYQ==} peerDependencies: - react: ">=15" + react: '>=15' react-router@5.3.4: - resolution: - { - integrity: sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==, - } + resolution: {integrity: sha512-Ys9K+ppnJah3QuaRiLxk+jDWOR1MekYQrlytiXxC1RyfbdsZkS5pvKAzCCr031xHixZwpnsYNT5xysdFHQaYsA==} peerDependencies: - react: ">=15" + react: '>=15' react-scripts@5.0.1: - resolution: - { - integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==, - } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-8VAmEm/ZAwQzJ+GOMLbBsTdDKOpuZh7RPs0UymvBR2vRk4iZWCskjbFnxqjrzoIvlNNRZ3QJFx6/qDSi6zSnaQ==} + engines: {node: '>=14.0.0'} hasBin: true peerDependencies: - react: ">= 16" + react: '>= 16' typescript: ^3.2.1 || ^4 peerDependenciesMeta: typescript: optional: true react-select@3.2.0: - resolution: - { - integrity: sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==, - } + resolution: {integrity: sha512-B/q3TnCZXEKItO0fFN/I0tWOX3WJvi/X2wtdffmwSQVRwg5BpValScTO1vdic9AxlUgmeSzib2hAZAwIUQUZGQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 react-dom: ^16.8.0 || ^17.0.0 react-select@5.8.0: - resolution: - { - integrity: sha512-TfjLDo58XrhP6VG5M/Mi56Us0Yt8X7xD6cDybC7yoRMUNm7BGO7qk8J0TLQOua/prb8vUOtsfnXZwfm30HGsAA==, - } + resolution: {integrity: sha512-TfjLDo58XrhP6VG5M/Mi56Us0Yt8X7xD6cDybC7yoRMUNm7BGO7qk8J0TLQOua/prb8vUOtsfnXZwfm30HGsAA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 react-shallow-renderer@16.15.0: - resolution: - { - integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==, - } + resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} peerDependencies: react: ^16.0.0 || ^17.0.0 || ^18.0.0 react-spring@8.0.27: - resolution: - { - integrity: sha512-nDpWBe3ZVezukNRandTeLSPcwwTMjNVu1IDq9qA/AMiUqHuRN4BeSWvKr3eIxxg1vtiYiOLy4FqdfCP5IoP77g==, - } + resolution: {integrity: sha512-nDpWBe3ZVezukNRandTeLSPcwwTMjNVu1IDq9qA/AMiUqHuRN4BeSWvKr3eIxxg1vtiYiOLy4FqdfCP5IoP77g==} peerDependencies: - react: ">= 16.8.0" - react-dom: ">= 16.8.0" + react: '>= 16.8.0' + react-dom: '>= 16.8.0' react-style-singleton@2.2.1: - resolution: - { - integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} + 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-table@6.11.5: - resolution: - { - integrity: sha512-LM+AS9v//7Y7lAlgTWW/cW6Sn5VOb3EsSkKQfQTzOW8FngB1FUskLLNEVkAYsTX9LjOWR3QlGjykJqCE6eXT/g==, - } + resolution: {integrity: sha512-LM+AS9v//7Y7lAlgTWW/cW6Sn5VOb3EsSkKQfQTzOW8FngB1FUskLLNEVkAYsTX9LjOWR3QlGjykJqCE6eXT/g==} peerDependencies: prop-types: ^15.7.0 react: ^16.x.x react-dom: ^16.x.x react-test-renderer@18.2.0: - resolution: - { - integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==, - } + resolution: {integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==} peerDependencies: react: ^18.2.0 react-tooltip@5.27.0: - resolution: - { - integrity: sha512-JXROcdfCEbCqkAkh8LyTSP3guQ0dG53iY2E2o4fw3D8clKzziMpE6QG6CclDaHELEKTzpMSeAOsdtg0ahoQosw==, - } + resolution: {integrity: sha512-JXROcdfCEbCqkAkh8LyTSP3guQ0dG53iY2E2o4fw3D8clKzziMpE6QG6CclDaHELEKTzpMSeAOsdtg0ahoQosw==} peerDependencies: - react: ">=16.14.0" - react-dom: ">=16.14.0" + react: '>=16.14.0' + react-dom: '>=16.14.0' react-transition-group@4.4.5: - resolution: - { - integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==, - } + resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} peerDependencies: - react: ">=16.6.0" - react-dom: ">=16.6.0" + react: '>=16.6.0' + react-dom: '>=16.6.0' react-virtualized-auto-sizer@1.0.24: - resolution: - { - integrity: sha512-3kCn7N9NEb3FlvJrSHWGQ4iVl+ydQObq2fHMn12i5wbtm74zHOPhz/i64OL3c1S1vi9i2GXtZqNqUJTQ+BnNfg==, - } + resolution: {integrity: sha512-3kCn7N9NEb3FlvJrSHWGQ4iVl+ydQObq2fHMn12i5wbtm74zHOPhz/i64OL3c1S1vi9i2GXtZqNqUJTQ+BnNfg==} peerDependencies: react: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0 react-dom: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0 react-window-infinite-loader@1.0.9: - resolution: - { - integrity: sha512-5Hg89IdU4Vrp0RT8kZYKeTIxWZYhNkVXeI1HbKo01Vm/Z7qztDvXljwx16sMzsa9yapRJQW3ODZfMUw38SOWHw==, - } - engines: { node: ">8.0.0" } + resolution: {integrity: sha512-5Hg89IdU4Vrp0RT8kZYKeTIxWZYhNkVXeI1HbKo01Vm/Z7qztDvXljwx16sMzsa9yapRJQW3ODZfMUw38SOWHw==} + engines: {node: '>8.0.0'} peerDependencies: react: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0 react-dom: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0 react-window@1.8.10: - resolution: - { - integrity: sha512-Y0Cx+dnU6NLa5/EvoHukUD0BklJ8qITCtVEPY1C/nL8wwoZ0b5aEw8Ff1dOVHw7fCzMt55XfJDd8S8W8LCaUCg==, - } - engines: { node: ">8.0.0" } + resolution: {integrity: sha512-Y0Cx+dnU6NLa5/EvoHukUD0BklJ8qITCtVEPY1C/nL8wwoZ0b5aEw8Ff1dOVHw7fCzMt55XfJDd8S8W8LCaUCg==} + engines: {node: '>8.0.0'} peerDependencies: react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 react@18.2.0: - resolution: - { - integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} + engines: {node: '>=0.10.0'} 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==} read-config-file@6.3.2: - resolution: - { - integrity: sha512-M80lpCjnE6Wt6zb98DoW8WHR09nzMSpu8XHtPkiTHrJ5Az9CybfeQhTJ8D7saeBHpGhLPIVyA8lcL6ZmdKwY6Q==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-M80lpCjnE6Wt6zb98DoW8WHR09nzMSpu8XHtPkiTHrJ5Az9CybfeQhTJ8D7saeBHpGhLPIVyA8lcL6ZmdKwY6Q==} + engines: {node: '>=12.0.0'} read-pkg-up@7.0.1: - resolution: - { - integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} read-pkg-up@9.1.0: - resolution: - { - integrity: sha512-vaMRR1AC1nrd5CQM0PhlRsO5oc2AAigqr7cCrZ/MW/Rsaflz4RlgzkpL4qoU/z1F6wrbd85iFv1OQj/y5RdGvg==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-vaMRR1AC1nrd5CQM0PhlRsO5oc2AAigqr7cCrZ/MW/Rsaflz4RlgzkpL4qoU/z1F6wrbd85iFv1OQj/y5RdGvg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} read-pkg@5.2.0: - resolution: - { - integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} read-pkg@7.1.0: - resolution: - { - integrity: sha512-5iOehe+WF75IccPc30bWTbpdDQLOCc3Uu8bi3Dte3Eueij81yx1Mrufk8qBx/YAbR4uL1FdUr+7BKXDwEtisXg==, - } - engines: { node: ">=12.20" } + resolution: {integrity: sha512-5iOehe+WF75IccPc30bWTbpdDQLOCc3Uu8bi3Dte3Eueij81yx1Mrufk8qBx/YAbR4uL1FdUr+7BKXDwEtisXg==} + engines: {node: '>=12.20'} read-yaml-file@1.1.0: - resolution: - { - integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==} + engines: {node: '>=6'} readable-stream@1.0.34: - resolution: - { - integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==, - } + resolution: {integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==} readable-stream@1.1.14: - resolution: - { - integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==, - } + resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==} readable-stream@2.3.8: - resolution: - { - integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==, - } + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} readable-stream@3.6.2: - resolution: - { - integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} readable-stream@4.5.2: - resolution: - { - integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} readdir-glob@1.1.3: - resolution: - { - integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==, - } + resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==} readdirp@3.6.0: - resolution: - { - integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, - } - engines: { node: ">=8.10.0" } + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} reading-time@1.5.0: - resolution: - { - integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==, - } + resolution: {integrity: sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==} readline@1.3.0: - resolution: - { - integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==, - } + resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==} readonly-date@1.0.0: - resolution: - { - integrity: sha512-tMKIV7hlk0h4mO3JTmmVuIlJVXjKk3Sep9Bf5OH0O+758ruuVkUy2J9SttDLm91IEX/WHlXPSpxMGjPj4beMIQ==, - } + resolution: {integrity: sha512-tMKIV7hlk0h4mO3JTmmVuIlJVXjKk3Sep9Bf5OH0O+758ruuVkUy2J9SttDLm91IEX/WHlXPSpxMGjPj4beMIQ==} real-require@0.2.0: - resolution: - { - integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} + engines: {node: '>= 12.13.0'} recast@0.21.5: - resolution: - { - integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==} + engines: {node: '>= 4'} recast@0.23.6: - resolution: - { - integrity: sha512-9FHoNjX1yjuesMwuthAmPKabxYQdOgihFYmT5ebXfYGBcnqXZf3WOVz+5foEZ8Y83P4ZY6yQD5GMmtV+pgCCAQ==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-9FHoNjX1yjuesMwuthAmPKabxYQdOgihFYmT5ebXfYGBcnqXZf3WOVz+5foEZ8Y83P4ZY6yQD5GMmtV+pgCCAQ==} + engines: {node: '>= 4'} rechoir@0.7.1: - resolution: - { - integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==, - } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==} + engines: {node: '>= 0.10'} recursive-readdir@2.2.3: - resolution: - { - integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-8HrF5ZsXk5FAH9dgsx3BlUer73nIhuj+9OrQwEbLTPOBzGkL1lsFCR01am+v+0m2Cmbs1nP12hLDl5FA7EszKA==} + engines: {node: '>=6.0.0'} recyclerlistview@4.2.0: - resolution: - { - integrity: sha512-uuBCi0c+ggqHKwrzPX4Z/mJOzsBbjZEAwGGmlwpD/sD7raXixdAbdJ6BTcAmuWG50Cg4ru9p12M94Njwhr/27A==, - } + resolution: {integrity: sha512-uuBCi0c+ggqHKwrzPX4Z/mJOzsBbjZEAwGGmlwpD/sD7raXixdAbdJ6BTcAmuWG50Cg4ru9p12M94Njwhr/27A==} peerDependencies: - react: ">= 15.2.1" - react-native: ">= 0.30.0" + react: '>= 15.2.1' + react-native: '>= 0.30.0' redent@3.0.0: - resolution: - { - integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} + engines: {node: '>=8'} redis-errors@1.2.0: - resolution: - { - integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==} + engines: {node: '>=4'} redis-parser@3.0.0: - resolution: - { - integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==} + engines: {node: '>=4'} reduce-flatten@2.0.0: - resolution: - { - integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==} + engines: {node: '>=6'} reduce-flatten@3.0.1: - resolution: - { - integrity: sha512-bYo+97BmUUOzg09XwfkwALt4PQH1M5L0wzKerBt6WLm3Fhdd43mMS89HiT1B9pJIqko/6lWx3OnV4J9f2Kqp5Q==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-bYo+97BmUUOzg09XwfkwALt4PQH1M5L0wzKerBt6WLm3Fhdd43mMS89HiT1B9pJIqko/6lWx3OnV4J9f2Kqp5Q==} + engines: {node: '>=8'} reduce-reducers@0.4.3: - resolution: - { - integrity: sha512-+CNMnI8QhgVMtAt54uQs3kUxC3Sybpa7Y63HR14uGLgI9/QR5ggHvpxwhGGe3wmx5V91YwqQIblN9k5lspAmGw==, - } + resolution: {integrity: sha512-+CNMnI8QhgVMtAt54uQs3kUxC3Sybpa7Y63HR14uGLgI9/QR5ggHvpxwhGGe3wmx5V91YwqQIblN9k5lspAmGw==} redux-actions@2.6.5: - resolution: - { - integrity: sha512-pFhEcWFTYNk7DhQgxMGnbsB1H2glqhQJRQrtPb96kD3hWiZRzXHwwmFPswg6V2MjraXRXWNmuP9P84tvdLAJmw==, - } + resolution: {integrity: sha512-pFhEcWFTYNk7DhQgxMGnbsB1H2glqhQJRQrtPb96kD3hWiZRzXHwwmFPswg6V2MjraXRXWNmuP9P84tvdLAJmw==} redux-thunk@2.4.2: - resolution: - { - integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==, - } + resolution: {integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==} peerDependencies: redux: ^4 redux-thunk@3.1.0: - resolution: - { - integrity: sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==, - } + resolution: {integrity: sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==} peerDependencies: redux: ^5.0.0 redux@4.2.1: - resolution: - { - integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==, - } + resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} redux@5.0.0: - resolution: - { - integrity: sha512-blLIYmYetpZMET6Q6uCY7Jtl/Im5OBldy+vNPauA8vvsdqyt66oep4EUpAMWNHauTC6xa9JuRPhRB72rY82QGA==, - } + resolution: {integrity: sha512-blLIYmYetpZMET6Q6uCY7Jtl/Im5OBldy+vNPauA8vvsdqyt66oep4EUpAMWNHauTC6xa9JuRPhRB72rY82QGA==} reflect-metadata@0.1.14: - resolution: - { - integrity: sha512-ZhYeb6nRaXCfhnndflDK8qI6ZQ/YcWZCISRAWICW9XYqMUwjZM9Z0DveWX/ABN01oxSHwVxKQmxeYZSsm0jh5A==, - } + resolution: {integrity: sha512-ZhYeb6nRaXCfhnndflDK8qI6ZQ/YcWZCISRAWICW9XYqMUwjZM9Z0DveWX/ABN01oxSHwVxKQmxeYZSsm0jh5A==} reflect.getprototypeof@1.0.6: - resolution: - { - integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} + engines: {node: '>= 0.4'} regenerate-unicode-properties@10.1.1: - resolution: - { - integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} + 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.11.1: - resolution: - { - integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==, - } + resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} regenerator-runtime@0.13.11: - resolution: - { - integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==, - } + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} 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-parser@2.3.0: - resolution: - { - integrity: sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==, - } + resolution: {integrity: sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==} regexp.prototype.flags@1.5.2: - resolution: - { - integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} + engines: {node: '>= 0.4'} regexpu-core@5.3.2: - resolution: - { - integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} + engines: {node: '>=4'} registry-auth-token@3.3.2: - resolution: - { - integrity: sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==, - } + resolution: {integrity: sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==} registry-url@3.1.0: - resolution: - { - integrity: sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==} + engines: {node: '>=0.10.0'} regjsparser@0.9.1: - resolution: - { - integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==, - } + resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} hasBin: true rehype-katex@7.0.0: - resolution: - { - integrity: sha512-h8FPkGE00r2XKU+/acgqwWUlyzve1IiOKwsEkg4pDL3k48PiE0Pt+/uLtVHDVkN1yA4iurZN6UES8ivHVEQV6Q==, - } + resolution: {integrity: sha512-h8FPkGE00r2XKU+/acgqwWUlyzve1IiOKwsEkg4pDL3k48PiE0Pt+/uLtVHDVkN1yA4iurZN6UES8ivHVEQV6Q==} rehype-pretty-code@0.9.11: - resolution: - { - integrity: sha512-Eq90eCYXQJISktfRZ8PPtwc5SUyH6fJcxS8XOMnHPUQZBtC6RYo67gGlley9X2nR8vlniPj0/7oCDEYHKQa/oA==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-Eq90eCYXQJISktfRZ8PPtwc5SUyH6fJcxS8XOMnHPUQZBtC6RYo67gGlley9X2nR8vlniPj0/7oCDEYHKQa/oA==} + engines: {node: '>=16'} peerDependencies: - shiki: "*" + shiki: '*' rehype-raw@7.0.0: - resolution: - { - integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==, - } + resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} relateurl@0.2.7: - resolution: - { - integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==, - } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} + engines: {node: '>= 0.10'} release-zalgo@1.0.0: - resolution: - { - integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} + engines: {node: '>=4'} remark-external-links@8.0.0: - resolution: - { - integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==, - } + resolution: {integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==} remark-gfm@3.0.1: - resolution: - { - integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==, - } + resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==} remark-html@15.0.2: - resolution: - { - integrity: sha512-/CIOI7wzHJzsh48AiuIyIe1clxVkUtreul73zcCXLub0FmnevQE0UMFDQm7NUx8/3rl/4zCshlMfqBdWScQthw==, - } + resolution: {integrity: sha512-/CIOI7wzHJzsh48AiuIyIe1clxVkUtreul73zcCXLub0FmnevQE0UMFDQm7NUx8/3rl/4zCshlMfqBdWScQthw==} remark-math@5.1.1: - resolution: - { - integrity: sha512-cE5T2R/xLVtfFI4cCePtiRn+e6jKMtFDR3P8V3qpv8wpKjwvHoBA4eJzvX+nVrnlNy0911bdGmuspCSwetfYHw==, - } + resolution: {integrity: sha512-cE5T2R/xLVtfFI4cCePtiRn+e6jKMtFDR3P8V3qpv8wpKjwvHoBA4eJzvX+nVrnlNy0911bdGmuspCSwetfYHw==} remark-mdx@2.3.0: - resolution: - { - integrity: sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==, - } + resolution: {integrity: sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==} remark-parse@10.0.2: - resolution: - { - integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==, - } + resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==} remark-parse@5.0.0: - resolution: - { - integrity: sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==, - } + resolution: {integrity: sha512-b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA==} remark-reading-time@2.0.1: - resolution: - { - integrity: sha512-fy4BKy9SRhtYbEHvp6AItbRTnrhiDGbqLQTSYVbQPGuRCncU1ubSsh9p/W5QZSxtYcUXv8KGL0xBgPLyNJA1xw==, - } + resolution: {integrity: sha512-fy4BKy9SRhtYbEHvp6AItbRTnrhiDGbqLQTSYVbQPGuRCncU1ubSsh9p/W5QZSxtYcUXv8KGL0xBgPLyNJA1xw==} remark-reference-links@6.0.1: - resolution: - { - integrity: sha512-34wY2C6HXSuKVTRtyJJwefkUD8zBOZOSHFZ4aSTnU2F656gr9WeuQ2dL6IJDK3NPd2F6xKF2t4XXcQY9MygAXg==, - } + resolution: {integrity: sha512-34wY2C6HXSuKVTRtyJJwefkUD8zBOZOSHFZ4aSTnU2F656gr9WeuQ2dL6IJDK3NPd2F6xKF2t4XXcQY9MygAXg==} remark-rehype@10.1.0: - resolution: - { - integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==, - } + resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==} remark-slug@6.1.0: - resolution: - { - integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==, - } + resolution: {integrity: sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==} remark-stringify@10.0.3: - resolution: - { - integrity: sha512-koyOzCMYoUHudypbj4XpnAKFbkddRMYZHwghnxd7ue5210WzGw6kOBwauJTRUMq16jsovXx8dYNvSSWP89kZ3A==, - } + resolution: {integrity: sha512-koyOzCMYoUHudypbj4XpnAKFbkddRMYZHwghnxd7ue5210WzGw6kOBwauJTRUMq16jsovXx8dYNvSSWP89kZ3A==} remark-toc@8.0.1: - resolution: - { - integrity: sha512-7he2VOm/cy13zilnOTZcyAoyoolV26ULlon6XyCFU+vG54Z/LWJnwphj/xKIDLOt66QmJUgTyUvLVHi2aAElyg==, - } + resolution: {integrity: sha512-7he2VOm/cy13zilnOTZcyAoyoolV26ULlon6XyCFU+vG54Z/LWJnwphj/xKIDLOt66QmJUgTyUvLVHi2aAElyg==} remark@14.0.3: - resolution: - { - integrity: sha512-bfmJW1dmR2LvaMJuAnE88pZP9DktIFYXazkTfOIKZzi3Knk9lT0roItIA24ydOucI3bV/g/tXBA6hzqq3FV9Ew==, - } + resolution: {integrity: sha512-bfmJW1dmR2LvaMJuAnE88pZP9DktIFYXazkTfOIKZzi3Knk9lT0roItIA24ydOucI3bV/g/tXBA6hzqq3FV9Ew==} remove-accents@0.5.0: - resolution: - { - integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==, - } + resolution: {integrity: sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==} remove-trailing-slash@0.1.1: - resolution: - { - integrity: sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==, - } + resolution: {integrity: sha512-o4S4Qh6L2jpnCy83ysZDau+VORNvnFw07CKSAymkd6ICNVEPisMyzlc00KlvvicsxKck94SEwhDnMNdICzO+tA==} renderkid@3.0.0: - resolution: - { - integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==, - } + resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} repeat-string@1.6.1: - resolution: - { - integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} replace-ext@1.0.0: - resolution: - { - integrity: sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA==, - } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-vuNYXC7gG7IeVNBC1xUllqCcZKRbJoSPOBhnTEcAIiKCsbuef6zO3F0Rve3isPMMoNoQRWjQwbAgAjHUHniyEA==} + engines: {node: '>= 0.10'} request@2.88.2: - resolution: - { - integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==} + engines: {node: '>= 6'} deprecated: request has been deprecated, see https://github.com/request/request/issues/3142 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-in-the-middle@7.3.0: - resolution: - { - integrity: sha512-nQFEv9gRw6SJAwWD2LrL0NmQvAcO7FBwJbwmr2ttPAacfy0xuiOjE5zt+zM4xDyuyvUaxBi/9gb2SoCyNEVJcw==, - } - engines: { node: ">=8.6.0" } + resolution: {integrity: sha512-nQFEv9gRw6SJAwWD2LrL0NmQvAcO7FBwJbwmr2ttPAacfy0xuiOjE5zt+zM4xDyuyvUaxBi/9gb2SoCyNEVJcw==} + engines: {node: '>=8.6.0'} require-main-filename@2.0.0: - resolution: - { - integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==, - } + resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} requireg@0.2.2: - resolution: - { - integrity: sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==, - } - engines: { node: ">= 4.0.0" } + resolution: {integrity: sha512-nYzyjnFcPNGR3lx9lwPPPnuQxv6JWEZd2Ci0u9opN7N5zUEPIhY/GbL3vMGOr2UXwEg9WwSyV9X9Y/kLFgPsOg==} + engines: {node: '>= 4.0.0'} requireindex@1.1.0: - resolution: - { - integrity: sha512-LBnkqsDE7BZKvqylbmn7lTIVdpx4K/QCduRATpO5R+wtPmky/a8pN1bO2D6wXppn1497AJF9mNjqAXr6bdl9jg==, - } - engines: { node: ">=0.10.5" } + resolution: {integrity: sha512-LBnkqsDE7BZKvqylbmn7lTIVdpx4K/QCduRATpO5R+wtPmky/a8pN1bO2D6wXppn1497AJF9mNjqAXr6bdl9jg==} + engines: {node: '>=0.10.5'} requireindex@1.2.0: - resolution: - { - integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==, - } - engines: { node: ">=0.10.5" } + resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==} + engines: {node: '>=0.10.5'} requires-port@1.0.0: - resolution: - { - integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==, - } + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} requizzle@0.2.4: - resolution: - { - integrity: sha512-JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw==, - } + resolution: {integrity: sha512-JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw==} reselect@4.0.0: - resolution: - { - integrity: sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA==, - } + resolution: {integrity: sha512-qUgANli03jjAyGlnbYVAV5vvnOmJnODyABz51RdBN7M4WaVu8mecZWgyQNkG8Yqe3KRGRt0l4K4B3XVEULC4CA==} reselect@4.1.8: - resolution: - { - integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==, - } + resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==} reselect@5.0.1: - resolution: - { - integrity: sha512-D72j2ubjgHpvuCiORWkOUxndHJrxDaSolheiz5CO+roz8ka97/4msh2E8F5qay4GawR5vzBt5MkbDHT+Rdy/Wg==, - } + resolution: {integrity: sha512-D72j2ubjgHpvuCiORWkOUxndHJrxDaSolheiz5CO+roz8ka97/4msh2E8F5qay4GawR5vzBt5MkbDHT+Rdy/Wg==} resolve-alpn@1.2.1: - resolution: - { - integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==, - } + resolution: {integrity: sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==} resolve-cwd@3.0.0: - resolution: - { - integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} + engines: {node: '>=8'} resolve-from@3.0.0: - resolution: - { - integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==} + engines: {node: '>=4'} 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-global@1.0.0: - resolution: - { - integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==} + engines: {node: '>=8'} resolve-path@1.4.0: - resolution: - { - integrity: sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==} + engines: {node: '>= 0.8'} resolve-pathname@3.0.0: - resolution: - { - integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==, - } + resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==} resolve-pkg-maps@1.0.0: - resolution: - { - integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==, - } + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} resolve-url-loader@4.0.0: - resolution: - { - integrity: sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==, - } - engines: { node: ">=8.9" } + resolution: {integrity: sha512-05VEMczVREcbtT7Bz+C+96eUO5HDNvdthIiMB34t7FcF8ehcu4wC0sSgPUubs3XW2Q3CNLJk/BJrCU9wVRymiA==} + engines: {node: '>=8.9'} peerDependencies: rework: 1.0.1 rework-visit: 1.0.0 @@ -40889,215 +27170,125 @@ packages: optional: true resolve.exports@1.1.1: - resolution: - { - integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==} + engines: {node: '>=10'} resolve.exports@2.0.2: - resolution: - { - integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==} + engines: {node: '>=10'} resolve@1.22.8: - resolution: - { - integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==, - } + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true resolve@1.7.1: - resolution: - { - integrity: sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==, - } + resolution: {integrity: sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==} resolve@2.0.0-next.5: - resolution: - { - integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==, - } + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} hasBin: true responselike@1.0.2: - resolution: - { - integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==, - } + resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} responselike@2.0.1: - resolution: - { - integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==, - } + resolution: {integrity: sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==} restore-cursor@2.0.0: - resolution: - { - integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==} + engines: {node: '>=4'} 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} retry@0.12.0: - resolution: - { - integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} + engines: {node: '>= 4'} retry@0.13.1: - resolution: - { - integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==} + engines: {node: '>= 4'} 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'} rfc4648@1.5.3: - resolution: - { - integrity: sha512-MjOWxM065+WswwnmNONOT+bD1nXzY9Km6u3kzvnx8F8/HXGZdz3T6e6vZJ8Q/RIMUSp/nxqjH3GwvJDy8ijeQQ==, - } + resolution: {integrity: sha512-MjOWxM065+WswwnmNONOT+bD1nXzY9Km6u3kzvnx8F8/HXGZdz3T6e6vZJ8Q/RIMUSp/nxqjH3GwvJDy8ijeQQ==} rfdc@1.3.1: - resolution: - { - integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==, - } + resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==} rimraf@2.4.5: - resolution: - { - integrity: sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==, - } + resolution: {integrity: sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==} deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@2.6.3: - resolution: - { - integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==, - } + resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@2.7.1: - resolution: - { - integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==, - } + resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@3.0.2: - resolution: - { - integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, - } + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@4.4.1: - resolution: - { - integrity: sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og==} + engines: {node: '>=14'} hasBin: true ripemd160-min@0.0.6: - resolution: - { - integrity: sha512-+GcJgQivhs6S9qvLogusiTcS9kQUfgR75whKuy5jIhuiOfQuJ8fjqxV6EGD5duH1Y/FawFUMtMhyeq3Fbnib8A==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-+GcJgQivhs6S9qvLogusiTcS9kQUfgR75whKuy5jIhuiOfQuJ8fjqxV6EGD5duH1Y/FawFUMtMhyeq3Fbnib8A==} + engines: {node: '>=8'} ripemd160@2.0.2: - resolution: - { - integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==, - } + resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} ripple-address-codec@4.3.1: - resolution: - { - integrity: sha512-Qa3+9wKVvpL/xYtT6+wANsn0A1QcC5CT6IMZbRJZ/1lGt7gmwIfsrCuz1X0+LCEO7zgb+3UT1I1dc0k/5dwKQQ==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-Qa3+9wKVvpL/xYtT6+wANsn0A1QcC5CT6IMZbRJZ/1lGt7gmwIfsrCuz1X0+LCEO7zgb+3UT1I1dc0k/5dwKQQ==} + engines: {node: '>= 10'} ripple-address-codec@5.0.0: - resolution: - { - integrity: sha512-de7osLRH/pt5HX2xw2TRJtbdLLWHu0RXirpQaEeCnWKY5DYHykh3ETSkofvm0aX0LJiV7kwkegJxQkmbO94gWw==, - } - engines: { node: ">= 16" } + resolution: {integrity: sha512-de7osLRH/pt5HX2xw2TRJtbdLLWHu0RXirpQaEeCnWKY5DYHykh3ETSkofvm0aX0LJiV7kwkegJxQkmbO94gWw==} + engines: {node: '>= 16'} ripple-binary-codec@1.11.0: - resolution: - { - integrity: sha512-g7+gs3T+NfoeW6vIq5dcN0CkIT4t/zwRzFxz8X2RzfbrWRnewPUKqQbmBgs05tXLX5NuWPaneiaAVpFpYBcdfw==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-g7+gs3T+NfoeW6vIq5dcN0CkIT4t/zwRzFxz8X2RzfbrWRnewPUKqQbmBgs05tXLX5NuWPaneiaAVpFpYBcdfw==} + engines: {node: '>= 10'} ripple-keypairs@2.0.0: - resolution: - { - integrity: sha512-b5rfL2EZiffmklqZk1W+dvSy97v3V/C7936WxCCgDynaGPp7GE6R2XO7EU9O2LlM/z95rj870IylYnOQs+1Rag==, - } - engines: { node: ">= 16" } + resolution: {integrity: sha512-b5rfL2EZiffmklqZk1W+dvSy97v3V/C7936WxCCgDynaGPp7GE6R2XO7EU9O2LlM/z95rj870IylYnOQs+1Rag==} + engines: {node: '>= 16'} rlp@2.2.7: - resolution: - { - integrity: sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==, - } + resolution: {integrity: sha512-d5gdPmgQ0Z+AklL2NVXr/IoSjNZFfTVvQWzL/AM2AOcSzYP2xjlb0AC8YyCLc41MSNf6P6QVtjgPdmVtzb+4lQ==} hasBin: true rlp@3.0.0: - resolution: - { - integrity: sha512-PD6U2PGk6Vq2spfgiWZdomLvRGDreBLxi5jv5M8EpRo3pU6VEm31KO+HFxE18Q3vgqfDrQ9pZA3FP95rkijNKw==, - } + resolution: {integrity: sha512-PD6U2PGk6Vq2spfgiWZdomLvRGDreBLxi5jv5M8EpRo3pU6VEm31KO+HFxE18Q3vgqfDrQ9pZA3FP95rkijNKw==} hasBin: true rn-fetch-blob@0.12.0: - resolution: - { - integrity: sha512-+QnR7AsJ14zqpVVUbzbtAjq0iI8c9tCg49tIoKO2ezjzRunN7YL6zFSFSWZm6d+mE/l9r+OeDM3jmb2tBb2WbA==, - } + resolution: {integrity: sha512-+QnR7AsJ14zqpVVUbzbtAjq0iI8c9tCg49tIoKO2ezjzRunN7YL6zFSFSWZm6d+mE/l9r+OeDM3jmb2tBb2WbA==} rn-range-slider@2.1.1: - resolution: - { - integrity: sha512-tDfH8G4e/k+waGMMd+HaYTlpOqyh1dd3aWdDmqKo0WGh1BfHB+NXy0X2REyr1ZJDvsrq7WEeFZ+PBTdD6cisbw==, - } - peerDependencies: - prop-types: "*" - react: "*" - react-native: "*" + resolution: {integrity: sha512-tDfH8G4e/k+waGMMd+HaYTlpOqyh1dd3aWdDmqKo0WGh1BfHB+NXy0X2REyr1ZJDvsrq7WEeFZ+PBTdD6cisbw==} + peerDependencies: + prop-types: '*' + react: '*' + react-native: '*' peerDependenciesMeta: prop-types: optional: true @@ -41107,184 +27298,109 @@ packages: optional: true roarr@2.15.4: - resolution: - { - integrity: sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==, - } - engines: { node: ">=8.0" } + resolution: {integrity: sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==} + engines: {node: '>=8.0'} robust-predicates@3.0.2: - resolution: - { - integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==, - } + resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==} rollup-plugin-dts@6.1.0: - resolution: - { - integrity: sha512-ijSCPICkRMDKDLBK9torss07+8dl9UpY9z1N/zTeA1cIqdzMlpkV3MOOC7zukyvQfDyxa1s3Dl2+DeiP/G6DOw==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-ijSCPICkRMDKDLBK9torss07+8dl9UpY9z1N/zTeA1cIqdzMlpkV3MOOC7zukyvQfDyxa1s3Dl2+DeiP/G6DOw==} + engines: {node: '>=16'} peerDependencies: rollup: ^3.29.4 || ^4 typescript: ^4.5 || ^5.0 rollup-plugin-esbuild@6.1.1: - resolution: - { - integrity: sha512-CehMY9FAqJD5OUaE/Mi1r5z0kNeYxItmRO2zG4Qnv2qWKF09J2lTy5GUzjJR354ZPrLkCj4fiBN41lo8PzBUhw==, - } - engines: { node: ">=14.18.0" } + resolution: {integrity: sha512-CehMY9FAqJD5OUaE/Mi1r5z0kNeYxItmRO2zG4Qnv2qWKF09J2lTy5GUzjJR354ZPrLkCj4fiBN41lo8PzBUhw==} + engines: {node: '>=14.18.0'} peerDependencies: - esbuild: ">=0.18.0" + esbuild: '>=0.18.0' rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 rollup-plugin-terser@7.0.2: - resolution: - { - integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==, - } + resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser peerDependencies: rollup: ^2.0.0 rollup@2.79.1: - resolution: - { - integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} + engines: {node: '>=10.0.0'} hasBin: true rollup@3.29.4: - resolution: - { - integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==, - } - engines: { node: ">=14.18.0", npm: ">=8.0.0" } + resolution: {integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true rollup@4.17.2: - resolution: - { - integrity: sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==, - } - engines: { node: ">=18.0.0", npm: ">=8.0.0" } + resolution: {integrity: sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true rpc-websockets@7.9.0: - resolution: - { - integrity: sha512-DwKewQz1IUA5wfLvgM8wDpPRcr+nWSxuFxx5CbrI2z/MyyZ4nXLM86TvIA+cI1ZAdqC8JIBR1mZR55dzaLU+Hw==, - } + resolution: {integrity: sha512-DwKewQz1IUA5wfLvgM8wDpPRcr+nWSxuFxx5CbrI2z/MyyZ4nXLM86TvIA+cI1ZAdqC8JIBR1mZR55dzaLU+Hw==} 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==} rw@1.3.3: - resolution: - { - integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==, - } + resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==} rxjs@6.6.7: - resolution: - { - integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==, - } - engines: { npm: ">=2.0.0" } + resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} + engines: {npm: '>=2.0.0'} rxjs@7.8.1: - resolution: - { - integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==, - } + resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} sade@1.8.1: - resolution: - { - integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} + engines: {node: '>=6'} safe-array-concat@1.1.2: - resolution: - { - integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==, - } - engines: { node: ">=0.4" } + resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} + engines: {node: '>=0.4'} safe-buffer@5.1.2: - resolution: - { - integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==, - } + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} safe-buffer@5.2.1: - resolution: - { - integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, - } + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} safe-json-stringify@1.2.0: - resolution: - { - integrity: sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==, - } + resolution: {integrity: sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==} safe-regex-test@1.0.3: - resolution: - { - integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} + engines: {node: '>= 0.4'} safe-stable-stringify@2.4.3: - resolution: - { - integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==} + engines: {node: '>=10'} safer-buffer@2.1.2: - resolution: - { - integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, - } + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} sanitize-filename@1.6.3: - resolution: - { - integrity: sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==, - } + resolution: {integrity: sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==} sanitize.css@13.0.0: - resolution: - { - integrity: sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==, - } + resolution: {integrity: sha512-ZRwKbh/eQ6w9vmTjkuG0Ioi3HBwPFce0O+v//ve+aOq1oeCy7jMV2qzzAlpsNuqpqCBjjriM1lbtZbF/Q8jVyA==} sass-loader@12.6.0: - resolution: - { - integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==} + engines: {node: '>= 12.13.0'} peerDependencies: - fibers: ">= 3.1.0" + fibers: '>= 3.1.0' node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 sass: ^1.3.0 - sass-embedded: "*" + sass-embedded: '*' webpack: ^5.0.0 peerDependenciesMeta: fibers: @@ -41297,1018 +27413,559 @@ packages: optional: true sax@1.2.4: - resolution: - { - integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==, - } + resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} saxes@5.0.1: - resolution: - { - integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} + engines: {node: '>=10'} saxes@6.0.0: - resolution: - { - integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==, - } - engines: { node: ">=v12.22.7" } + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} scale-ts@1.6.0: - resolution: - { - integrity: sha512-Ja5VCjNZR8TGKhUumy9clVVxcDpM+YFjAnkMuwQy68Hixio3VRRvWdE3g8T/yC+HXA0ZDQl2TGyUmtmbcVl40Q==, - } + resolution: {integrity: sha512-Ja5VCjNZR8TGKhUumy9clVVxcDpM+YFjAnkMuwQy68Hixio3VRRvWdE3g8T/yC+HXA0ZDQl2TGyUmtmbcVl40Q==} scheduler@0.23.0: - resolution: - { - integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==, - } + resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} scheduler@0.23.2: - resolution: - { - integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==, - } + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} scheduler@0.24.0-canary-efb381bbf-20230505: - resolution: - { - integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==, - } + resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==} schema-utils@2.7.0: - resolution: - { - integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==, - } - engines: { node: ">= 8.9.0" } + resolution: {integrity: sha512-0ilKFI6QQF5nxDZLFn2dMjvc4hjg/Wkg7rHd3jK6/A4a1Hl9VFdQWvgB1UMGoU94pad1P/8N7fMcEnLnSiju8A==} + engines: {node: '>= 8.9.0'} schema-utils@2.7.1: - resolution: - { - integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==, - } - engines: { node: ">= 8.9.0" } + resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} + engines: {node: '>= 8.9.0'} schema-utils@3.3.0: - resolution: - { - integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==, - } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} + engines: {node: '>= 10.13.0'} schema-utils@4.2.0: - resolution: - { - integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} + engines: {node: '>= 12.13.0'} scroll-into-view-if-needed@3.1.0: - resolution: - { - integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==, - } + resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==} scrypt-js@2.0.4: - resolution: - { - integrity: sha512-4KsaGcPnuhtCZQCxFxN3GVYIhKFPTdLd8PLC552XwbMndtD0cjRFAhDuuydXQ0h08ZfPgzqe6EKHozpuH74iDw==, - } + resolution: {integrity: sha512-4KsaGcPnuhtCZQCxFxN3GVYIhKFPTdLd8PLC552XwbMndtD0cjRFAhDuuydXQ0h08ZfPgzqe6EKHozpuH74iDw==} scrypt-js@3.0.1: - resolution: - { - integrity: sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==, - } + resolution: {integrity: sha512-cdwTTnqPu0Hyvf5in5asVdZocVDTNRmR7XEcJuIzMjJeSHybHl7vpB66AzwTaIg6CLSbtjcxc8fqcySfnTkccA==} secp256k1@4.0.2: - resolution: - { - integrity: sha512-UDar4sKvWAksIlfX3xIaQReADn+WFnHvbVujpcbr+9Sf/69odMwy2MUsz5CKLQgX9nsIyrjuxL2imVyoNHa3fg==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-UDar4sKvWAksIlfX3xIaQReADn+WFnHvbVujpcbr+9Sf/69odMwy2MUsz5CKLQgX9nsIyrjuxL2imVyoNHa3fg==} + engines: {node: '>=10.0.0'} secp256k1@4.0.3: - resolution: - { - integrity: sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-NLZVf+ROMxwtEj3Xa562qgv2BK5e2WNmXPiOdVIPLgs6lyTzMvBq0aWTYMI5XCP9jZMVKOcqZLw/Wc4vDkuxhA==} + engines: {node: '>=10.0.0'} secp256k1@5.0.0: - resolution: - { - integrity: sha512-TKWX8xvoGHrxVdqbYeZM9w+izTF4b9z3NhSaDkdn81btvuh+ivbIMGT/zQvDtTFWhRlThpoz6LEYTr7n8A5GcA==, - } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-TKWX8xvoGHrxVdqbYeZM9w+izTF4b9z3NhSaDkdn81btvuh+ivbIMGT/zQvDtTFWhRlThpoz6LEYTr7n8A5GcA==} + engines: {node: '>=14.0.0'} secretjs@0.17.8: - resolution: - { - integrity: sha512-PD/GUF52GjysBo8dDVK8KZXRXON1iPXkkyBNWIBVsaap3A1nZPbqynx/VUOjSpFx103KdjvzeA4+O0+EdWWWmw==, - } + resolution: {integrity: sha512-PD/GUF52GjysBo8dDVK8KZXRXON1iPXkkyBNWIBVsaap3A1nZPbqynx/VUOjSpFx103KdjvzeA4+O0+EdWWWmw==} deprecated: deprecated section-matter@1.0.0: - resolution: - { - integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} + engines: {node: '>=4'} secure-compare@3.0.1: - resolution: - { - integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==, - } + resolution: {integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==} secure-random@1.1.2: - resolution: - { - integrity: sha512-H2bdSKERKdBV1SwoqYm6C0y+9EA94v6SUBOWO8kDndc4NoUih7Dv6Tsgma7zO1lv27wIvjlD0ZpMQk7um5dheQ==, - } + resolution: {integrity: sha512-H2bdSKERKdBV1SwoqYm6C0y+9EA94v6SUBOWO8kDndc4NoUih7Dv6Tsgma7zO1lv27wIvjlD0ZpMQk7um5dheQ==} select-hose@2.0.0: - resolution: - { - integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==, - } + resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} selfsigned@2.4.1: - resolution: - { - integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==} + engines: {node: '>=10'} semver-compare@1.0.0: - resolution: - { - integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==, - } + resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==} semver@2.3.2: - resolution: - { - integrity: sha512-abLdIKCosKfpnmhS52NCTjO4RiLspDfsn37prjzGrp9im5DPJOgh82Os92vtwGh6XdQryKI/7SREZnV+aqiXrA==, - } + resolution: {integrity: sha512-abLdIKCosKfpnmhS52NCTjO4RiLspDfsn37prjzGrp9im5DPJOgh82Os92vtwGh6XdQryKI/7SREZnV+aqiXrA==} hasBin: true semver@5.7.2: - resolution: - { - integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==, - } + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} hasBin: true semver@6.3.1: - resolution: - { - integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, - } + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true semver@7.3.2: - resolution: - { - integrity: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==} + engines: {node: '>=10'} hasBin: true semver@7.3.8: - resolution: - { - integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==} + engines: {node: '>=10'} hasBin: true semver@7.5.3: - resolution: - { - integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} + engines: {node: '>=10'} hasBin: true semver@7.5.4: - resolution: - { - integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} + engines: {node: '>=10'} hasBin: true semver@7.6.2: - resolution: - { - integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==} + engines: {node: '>=10'} 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.18.0: - resolution: - { - integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} + engines: {node: '>= 0.8.0'} serialize-error@2.1.0: - resolution: - { - integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==} + engines: {node: '>=0.10.0'} serialize-error@6.0.0: - resolution: - { - integrity: sha512-3vmBkMZLQO+BR4RPHcyRGdE09XCF6cvxzk2N2qn8Er3F91cy8Qt7VvEbZBOpaL53qsBbe2cFOefU6tRY6WDelA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-3vmBkMZLQO+BR4RPHcyRGdE09XCF6cvxzk2N2qn8Er3F91cy8Qt7VvEbZBOpaL53qsBbe2cFOefU6tRY6WDelA==} + engines: {node: '>=10'} serialize-error@7.0.1: - resolution: - { - integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==} + engines: {node: '>=10'} serialize-error@8.1.0: - resolution: - { - integrity: sha512-3NnuWfM6vBYoy5gZFvHiYsVbafvI9vZv/+jlIigFn4oP4zjNPK3LhcY0xSCgeb1a5L8jO71Mit9LlNoi2UfDDQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-3NnuWfM6vBYoy5gZFvHiYsVbafvI9vZv/+jlIigFn4oP4zjNPK3LhcY0xSCgeb1a5L8jO71Mit9LlNoi2UfDDQ==} + engines: {node: '>=10'} serialize-javascript@4.0.0: - resolution: - { - integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==, - } + resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==} serialize-javascript@6.0.2: - resolution: - { - integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==, - } + resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==} serve-handler@6.1.5: - resolution: - { - integrity: sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==, - } + resolution: {integrity: sha512-ijPFle6Hwe8zfmBxJdE+5fta53fdIY0lHISJvuikXB3VYFafRjMRpOffSPvCYsbKyBA7pvy9oYr/BT1O3EArlg==} serve-index-75lb@2.0.1: - resolution: - { - integrity: sha512-/d9r8bqJlFQcwy0a0nb1KnWAA+Mno+V+VaoKocdkbW5aXKRQd/+4bfnRhQRQr6uEoYwTRJ4xgztOyCJvWcpBpQ==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-/d9r8bqJlFQcwy0a0nb1KnWAA+Mno+V+VaoKocdkbW5aXKRQd/+4bfnRhQRQr6uEoYwTRJ4xgztOyCJvWcpBpQ==} + engines: {node: '>= 0.8.0'} serve-index@1.9.1: - resolution: - { - integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} + engines: {node: '>= 0.8.0'} serve-static@1.15.0: - resolution: - { - integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==} + engines: {node: '>= 0.8.0'} servify@0.1.12: - resolution: - { - integrity: sha512-/xE6GvsKKqyo1BAY+KxOWXcLpPsUUyji7Qg3bVD7hh1eRze5bR1uYiuDA/k3Gof1s9BTzQZEJK8sNcNGFIzeWw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-/xE6GvsKKqyo1BAY+KxOWXcLpPsUUyji7Qg3bVD7hh1eRze5bR1uYiuDA/k3Gof1s9BTzQZEJK8sNcNGFIzeWw==} + engines: {node: '>=6'} set-blocking@2.0.0: - resolution: - { - integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==, - } + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} 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'} setimmediate@1.0.4: - resolution: - { - integrity: sha512-/TjEmXQVEzdod/FFskf3o7oOAsGhHf2j1dZqRFbDzq4F3mvvxflIIi4Hd3bLQE9y/CpwqfSQam5JakI/mi3Pog==, - } + resolution: {integrity: sha512-/TjEmXQVEzdod/FFskf3o7oOAsGhHf2j1dZqRFbDzq4F3mvvxflIIi4Hd3bLQE9y/CpwqfSQam5JakI/mi3Pog==} 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.1.0: - resolution: - { - integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==, - } + resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==} setprototypeof@1.1.1: - resolution: - { - integrity: sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==, - } + resolution: {integrity: sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==} setprototypeof@1.2.0: - resolution: - { - integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==, - } + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} sha.js@2.4.11: - resolution: - { - integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==, - } + resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==} hasBin: true sha3@2.1.4: - resolution: - { - integrity: sha512-S8cNxbyb0UGUM2VhRD4Poe5N58gJnJsLJ5vC7FYWGUmGhcsj4++WaIOBFVDxlG0W3To6xBuiRh+i0Qp2oNCOtg==, - } + resolution: {integrity: sha512-S8cNxbyb0UGUM2VhRD4Poe5N58gJnJsLJ5vC7FYWGUmGhcsj4++WaIOBFVDxlG0W3To6xBuiRh+i0Qp2oNCOtg==} shaka-player@2.5.23: - resolution: - { - integrity: sha512-3MC9k0OXJGw8AZ4n/ZNCZS2yDxx+3as5KgH6Tx4Q5TRboTBBCu6dYPI5vp1DxKeyU12MBN1Zcbs7AKzXv2EnCg==, - } + resolution: {integrity: sha512-3MC9k0OXJGw8AZ4n/ZNCZS2yDxx+3as5KgH6Tx4Q5TRboTBBCu6dYPI5vp1DxKeyU12MBN1Zcbs7AKzXv2EnCg==} deprecated: Shaka Player < v4.2 is no longer supported. shallow-clone@1.0.0: - resolution: - { - integrity: sha512-oeXreoKR/SyNJtRJMAKPDSvd28OqEwG4eR/xc856cRGBII7gX9lvAqDxusPm0846z/w/hWYjI1NpKwJ00NHzRA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-oeXreoKR/SyNJtRJMAKPDSvd28OqEwG4eR/xc856cRGBII7gX9lvAqDxusPm0846z/w/hWYjI1NpKwJ00NHzRA==} + engines: {node: '>=0.10.0'} shallow-clone@3.0.1: - resolution: - { - integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==} + engines: {node: '>=8'} shallowequal@1.1.0: - resolution: - { - integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==, - } + resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} shebang-command@1.2.0: - resolution: - { - integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} + engines: {node: '>=0.10.0'} 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@1.0.0: - resolution: - { - integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} + engines: {node: '>=0.10.0'} 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.7.3: - resolution: - { - integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==, - } + resolution: {integrity: sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw==} shell-quote@1.8.1: - resolution: - { - integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==, - } + resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} shiki@0.14.7: - resolution: - { - integrity: sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==, - } + resolution: {integrity: sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==} shimmer@1.2.1: - resolution: - { - integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==, - } + resolution: {integrity: sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==} side-channel@1.0.6: - resolution: - { - integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} + engines: {node: '>= 0.4'} 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'} simple-cbor@0.4.1: - resolution: - { - integrity: sha512-rijcxtwx2b4Bje3sqeIqw5EeW7UlOIC4YfOdwqIKacpvRQ/D78bWg/4/0m5e0U91oKvlGh7LlJuZCu07ISCC7w==, - } + resolution: {integrity: sha512-rijcxtwx2b4Bje3sqeIqw5EeW7UlOIC4YfOdwqIKacpvRQ/D78bWg/4/0m5e0U91oKvlGh7LlJuZCu07ISCC7w==} simple-concat@1.0.1: - resolution: - { - integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==, - } + resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} simple-get@2.8.2: - resolution: - { - integrity: sha512-Ijd/rV5o+mSBBs4F/x9oDPtTx9Zb6X9brmnXvMW4J7IR15ngi9q5xxqWBKU744jTZiaXtxaPL7uHG6vtN8kUkw==, - } + resolution: {integrity: sha512-Ijd/rV5o+mSBBs4F/x9oDPtTx9Zb6X9brmnXvMW4J7IR15ngi9q5xxqWBKU744jTZiaXtxaPL7uHG6vtN8kUkw==} simple-get@4.0.1: - resolution: - { - integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==, - } + resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} simple-git@3.24.0: - resolution: - { - integrity: sha512-QqAKee9Twv+3k8IFOFfPB2hnk6as6Y6ACUpwCtQvRYBAes23Wv3SZlHVobAzqcE8gfsisCvPw3HGW3HYM+VYYw==, - } + resolution: {integrity: sha512-QqAKee9Twv+3k8IFOFfPB2hnk6as6Y6ACUpwCtQvRYBAes23Wv3SZlHVobAzqcE8gfsisCvPw3HGW3HYM+VYYw==} simple-markdown@0.4.4: - resolution: - { - integrity: sha512-ZmlNUGR1KI12sPHeQ7dQY1qM5KfOgFqClNNVO8zQ9Pg6u7gHLCPFGD+VC7MCwpGDMd1uw3Bb2TfFfR8d6bB34A==, - } + resolution: {integrity: sha512-ZmlNUGR1KI12sPHeQ7dQY1qM5KfOgFqClNNVO8zQ9Pg6u7gHLCPFGD+VC7MCwpGDMd1uw3Bb2TfFfR8d6bB34A==} simple-markdown@0.7.3: - resolution: - { - integrity: sha512-uGXIc13NGpqfPeFJIt/7SHHxd6HekEJYtsdoCM06mEBPL9fQH/pSD7LRM6PZ7CKchpSvxKL4tvwMamqAaNDAyg==, - } + resolution: {integrity: sha512-uGXIc13NGpqfPeFJIt/7SHHxd6HekEJYtsdoCM06mEBPL9fQH/pSD7LRM6PZ7CKchpSvxKL4tvwMamqAaNDAyg==} peerDependencies: - "@types/react": "*" + '@types/react': '*' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true simple-plist@1.3.1: - resolution: - { - integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==, - } + resolution: {integrity: sha512-iMSw5i0XseMnrhtIzRb7XpQEXepa9xhWxGUojHBL43SIpQuDQkh3Wpy67ZbDzZVr6EKxvwVChnVpdl8hEVLDiw==} simple-swizzle@0.2.2: - resolution: - { - integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==, - } + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} simple-update-notifier@2.0.0: - resolution: - { - integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==} + engines: {node: '>=10'} sirv@2.0.4: - resolution: - { - integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==, - } - engines: { node: ">= 10" } + resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} + engines: {node: '>= 10'} sisteransi@1.0.5: - resolution: - { - integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, - } + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} sjcl@1.0.8: - resolution: - { - integrity: sha512-LzIjEQ0S0DpIgnxMEayM1rq9aGwGRG4OnZhCdjx7glTaJtf4zRfpg87ImfjSJjoW9vKpagd82McDOwbRT5kQKQ==, - } + resolution: {integrity: sha512-LzIjEQ0S0DpIgnxMEayM1rq9aGwGRG4OnZhCdjx7glTaJtf4zRfpg87ImfjSJjoW9vKpagd82McDOwbRT5kQKQ==} 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@0.0.4: - resolution: - { - integrity: sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw==} + engines: {node: '>=0.10.0'} slice-ansi@2.1.0: - resolution: - { - integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==} + engines: {node: '>=6'} 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'} slice-ansi@5.0.0: - resolution: - { - integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} + engines: {node: '>=12'} sliced@1.0.1: - resolution: - { - integrity: sha512-VZBmZP8WU3sMOZm1bdgTadsQbcscK0UM8oKxKVBs4XAhUo2Xxzm/OFMGBkPusxw9xL3Uy8LrzEqGqJhclsr0yA==, - } + resolution: {integrity: sha512-VZBmZP8WU3sMOZm1bdgTadsQbcscK0UM8oKxKVBs4XAhUo2Xxzm/OFMGBkPusxw9xL3Uy8LrzEqGqJhclsr0yA==} slugify@1.6.6: - resolution: - { - integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==} + engines: {node: '>=8.0.0'} smart-buffer@4.2.0: - resolution: - { - integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==, - } - engines: { node: ">= 6.0.0", npm: ">= 3.0.0" } + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} smee-client@1.2.5: - resolution: - { - integrity: sha512-Tv3AVvZD9sjEwBvsm1jc8to96FwmZMOYt5UL7qu3vAuA/3F/hqKe9gdRSlkvpRO4ttUAUrDKRpjM0vUnXZQhqA==, - } + resolution: {integrity: sha512-Tv3AVvZD9sjEwBvsm1jc8to96FwmZMOYt5UL7qu3vAuA/3F/hqKe9gdRSlkvpRO4ttUAUrDKRpjM0vUnXZQhqA==} hasBin: true smoldot@2.0.22: - resolution: - { - integrity: sha512-B50vRgTY6v3baYH6uCgL15tfaag5tcS2o/P5q1OiXcKGv1axZDfz2dzzMuIkVpyMR2ug11F6EAtQlmYBQd292g==, - } + resolution: {integrity: sha512-B50vRgTY6v3baYH6uCgL15tfaag5tcS2o/P5q1OiXcKGv1axZDfz2dzzMuIkVpyMR2ug11F6EAtQlmYBQd292g==} snakecase-keys@3.2.1: - resolution: - { - integrity: sha512-CjU5pyRfwOtaOITYv5C8DzpZ8XA/ieRsDpr93HI2r6e3YInC6moZpSQbmUtg8cTk58tq2x3jcG2gv+p1IZGmMA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-CjU5pyRfwOtaOITYv5C8DzpZ8XA/ieRsDpr93HI2r6e3YInC6moZpSQbmUtg8cTk58tq2x3jcG2gv+p1IZGmMA==} + engines: {node: '>=8'} sockjs@0.3.24: - resolution: - { - integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==, - } + resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} sodium-native@4.1.1: - resolution: - { - integrity: sha512-LXkAfRd4FHtkQS4X6g+nRcVaN7mWVNepV06phIsC6+IZFvGh1voW5TNQiQp2twVaMf05gZqQjuS+uWLM6gHhNQ==, - } + resolution: {integrity: sha512-LXkAfRd4FHtkQS4X6g+nRcVaN7mWVNepV06phIsC6+IZFvGh1voW5TNQiQp2twVaMf05gZqQjuS+uWLM6gHhNQ==} sonic-boom@4.0.1: - resolution: - { - integrity: sha512-hTSD/6JMLyT4r9zeof6UtuBDpjJ9sO08/nmS5djaA9eozT9oOlNdpXSnzcgj4FTqpk3nkLrs61l4gip9r1HCrQ==, - } + resolution: {integrity: sha512-hTSD/6JMLyT4r9zeof6UtuBDpjJ9sO08/nmS5djaA9eozT9oOlNdpXSnzcgj4FTqpk3nkLrs61l4gip9r1HCrQ==} sort-keys-length@1.0.1: - resolution: - { - integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==} + engines: {node: '>=0.10.0'} sort-keys@1.1.2: - resolution: - { - integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==} + engines: {node: '>=0.10.0'} sort-keys@5.0.0: - resolution: - { - integrity: sha512-Pdz01AvCAottHTPQGzndktFNdbRA75BgOfeT1hH+AMnJFv8lynkPi42rfeEhpx1saTEI3YNMWxfqu0sFD1G8pw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-Pdz01AvCAottHTPQGzndktFNdbRA75BgOfeT1hH+AMnJFv8lynkPi42rfeEhpx1saTEI3YNMWxfqu0sFD1G8pw==} + engines: {node: '>=12'} source-list-map@2.0.1: - resolution: - { - integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==, - } + resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==} source-map-explorer@2.5.3: - resolution: - { - integrity: sha512-qfUGs7UHsOBE5p/lGfQdaAj/5U/GWYBw2imEpD6UQNkqElYonkow8t+HBL1qqIl3CuGZx7n8/CQo4x1HwSHhsg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-qfUGs7UHsOBE5p/lGfQdaAj/5U/GWYBw2imEpD6UQNkqElYonkow8t+HBL1qqIl3CuGZx7n8/CQo4x1HwSHhsg==} + engines: {node: '>=12'} hasBin: true source-map-js@1.2.0: - resolution: - { - integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} + engines: {node: '>=0.10.0'} source-map-loader@3.0.2: - resolution: - { - integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} + engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 source-map-support@0.5.13: - resolution: - { - integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==, - } + resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} source-map-support@0.5.21: - resolution: - { - integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, - } + resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} source-map@0.5.6: - resolution: - { - integrity: sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==} + engines: {node: '>=0.10.0'} source-map@0.5.7: - resolution: - { - integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} + engines: {node: '>=0.10.0'} 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@1.1.5: - resolution: - { - integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==, - } + resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==} space-separated-tokens@2.0.2: - resolution: - { - integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==, - } + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} spawn-command@0.0.2: - resolution: - { - integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==, - } + resolution: {integrity: sha512-zC8zGoGkmc8J9ndvml8Xksr1Amk9qBujgbF0JAIWO7kXr43w0h/0GJNM/Vustixu+YE8N/MTrQ7N31FvHUACxQ==} spawn-wrap@2.0.0: - resolution: - { - integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==} + engines: {node: '>=8'} spawndamnit@2.0.0: - resolution: - { - integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==, - } + resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} spdx-correct@3.2.0: - resolution: - { - integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==, - } + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} spdx-exceptions@2.5.0: - resolution: - { - integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==, - } + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} spdx-expression-parse@3.0.1: - resolution: - { - integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==, - } + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} spdx-license-ids@3.0.17: - resolution: - { - integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==, - } + resolution: {integrity: sha512-sh8PWc/ftMqAAdFiBu6Fy6JUOYjqDJBJvIhpfDMyHrr0Rbp5liZqd4TjtQ/RgfLjKFZb+LMx5hpml5qOWy0qvg==} spdy-transport@3.0.0: - resolution: - { - integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==, - } + resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} spdy@4.0.2: - resolution: - { - integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==} + engines: {node: '>=6.0.0'} split-on-first@1.1.0: - resolution: - { - integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} + engines: {node: '>=6'} split2@3.2.2: - resolution: - { - integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==, - } + resolution: {integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==} split2@4.2.0: - resolution: - { - integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==, - } - engines: { node: ">= 10.x" } + resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} + engines: {node: '>= 10.x'} split@0.3.3: - resolution: - { - integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==, - } + resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==} split@1.0.1: - resolution: - { - integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==, - } + resolution: {integrity: sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==} sprintf-js@1.0.3: - resolution: - { - integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, - } + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} sprintf-js@1.1.3: - resolution: - { - integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==, - } + resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} sshpk@1.18.0: - resolution: - { - integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} + engines: {node: '>=0.10.0'} hasBin: true ssr-window@4.0.2: - resolution: - { - integrity: sha512-ISv/Ch+ig7SOtw7G2+qkwfVASzazUnvlDTwypdLoPoySv+6MqlOV10VwPSE6EWkGjhW50lUmghPmpYZXMu/+AQ==, - } + resolution: {integrity: sha512-ISv/Ch+ig7SOtw7G2+qkwfVASzazUnvlDTwypdLoPoySv+6MqlOV10VwPSE6EWkGjhW50lUmghPmpYZXMu/+AQ==} ssri@10.0.6: - resolution: - { - integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} ssri@8.0.1: - resolution: - { - integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} + engines: {node: '>= 8'} stable@0.1.8: - resolution: - { - integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==, - } - deprecated: "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" + resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} + deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' stack-generator@2.0.10: - resolution: - { - integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==, - } + resolution: {integrity: sha512-mwnua/hkqM6pF4k8SnmZ2zfETsRUpWXREfA/goT8SLCV4iOFa4bzOX2nDipWAZFPTjLvQB82f5yaodMVhK0yJQ==} stack-trace@0.0.10: - resolution: - { - integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==, - } + resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} stack-utils@2.0.6: - resolution: - { - integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==} + engines: {node: '>=10'} stackframe@1.3.4: - resolution: - { - integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==, - } + resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} stacktrace-gps@3.1.2: - resolution: - { - integrity: sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==, - } + resolution: {integrity: sha512-GcUgbO4Jsqqg6RxfyTHFiPxdPqF+3LFmQhm7MgCuYQOYuWyqxo5pwRPz5d/u6/WYJdEnWfK4r+jGbyD8TSggXQ==} stacktrace-js@2.0.2: - resolution: - { - integrity: sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==, - } + resolution: {integrity: sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==} stacktrace-parser@0.1.10: - resolution: - { - integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==} + engines: {node: '>=6'} standard-as-callback@2.1.0: - resolution: - { - integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==, - } + resolution: {integrity: sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==} stat-mode@1.0.0: - resolution: - { - integrity: sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg==} + engines: {node: '>= 6'} state-toggle@1.0.3: - resolution: - { - integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==, - } + resolution: {integrity: sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ==} static-eval@2.0.2: - resolution: - { - integrity: sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==, - } + resolution: {integrity: sha512-N/D219Hcr2bPjLxPiV+TQE++Tsmrady7TqAJugLy7Xk1EumfDWS/f5dtBbkRCGE7wKKXuYockQoj8Rm2/pVKyg==} statuses@1.5.0: - resolution: - { - integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} + engines: {node: '>= 0.6'} 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'} stop-iteration-iterator@1.0.0: - resolution: - { - integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} + engines: {node: '>= 0.4'} store2@2.14.3: - resolution: - { - integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==, - } + resolution: {integrity: sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==} storybook-dark-mode@3.0.3: - resolution: - { - integrity: sha512-ZLBLVpkuKTdtUv3DTuOjeP/bE7DHhOxVpDROKc0NtEYq9JHLUu6z05LLZinE3v6QPXQZ9TMQPm3Xe/0BcLEZlw==, - } + resolution: {integrity: sha512-ZLBLVpkuKTdtUv3DTuOjeP/bE7DHhOxVpDROKc0NtEYq9JHLUu6z05LLZinE3v6QPXQZ9TMQPm3Xe/0BcLEZlw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -42319,968 +27976,554 @@ packages: optional: true storybook@7.6.17: - resolution: - { - integrity: sha512-8+EIo91bwmeFWPg1eysrxXlhIYv3OsXrznTr4+4Eq0NikqAoq6oBhtlN5K2RGS2lBVF537eN+9jTCNbR+WrzDA==, - } + resolution: {integrity: sha512-8+EIo91bwmeFWPg1eysrxXlhIYv3OsXrznTr4+4Eq0NikqAoq6oBhtlN5K2RGS2lBVF537eN+9jTCNbR+WrzDA==} hasBin: true storybook@7.6.20: - resolution: - { - integrity: sha512-Wt04pPTO71pwmRmsgkyZhNo4Bvdb/1pBAMsIFb9nQLykEdzzpXjvingxFFvdOG4nIowzwgxD+CLlyRqVJqnATw==, - } + resolution: {integrity: sha512-Wt04pPTO71pwmRmsgkyZhNo4Bvdb/1pBAMsIFb9nQLykEdzzpXjvingxFFvdOG4nIowzwgxD+CLlyRqVJqnATw==} hasBin: true storyly-react-native@3.6.2: - resolution: - { - integrity: sha512-gtn9MjrtNoziqNpI4y8QVO5hLMr8kGTflGV4feLQ3p6Bj5XzM+auB6EKH2OSN+PscF+k3iMCPMzHASekJ3Z3kA==, - } + resolution: {integrity: sha512-gtn9MjrtNoziqNpI4y8QVO5hLMr8kGTflGV4feLQ3p6Bj5XzM+auB6EKH2OSN+PscF+k3iMCPMzHASekJ3Z3kA==} peerDependencies: - prop-types: "*" + prop-types: '*' react: ^18.0.0 - react-native: ">=0.64.2 <1.0.x" + react-native: '>=0.64.2 <1.0.x' peerDependenciesMeta: prop-types: optional: true storyly-web@3.6.7: - resolution: - { - integrity: sha512-2i7yOUF4xENFynQwDGZmGWLKHcXeTjhxJwtD8g4Vj163GI9Zw8WfLwsYgSZWgP1mMC+vq3iP+l8TgHuBd/r2rg==, - } + resolution: {integrity: sha512-2i7yOUF4xENFynQwDGZmGWLKHcXeTjhxJwtD8g4Vj163GI9Zw8WfLwsYgSZWgP1mMC+vq3iP+l8TgHuBd/r2rg==} stream-browserify@3.0.0: - resolution: - { - integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==, - } + resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} stream-buffers@2.2.0: - resolution: - { - integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==, - } - engines: { node: ">= 0.10.0" } + resolution: {integrity: sha512-uyQK/mx5QjHun80FLJTfaWE7JtwfRMKBLkMne6udYOmvH0CawotVa7TfgYHzAnpphn4+TweIx1QKMnRIbipmUg==} + engines: {node: '>= 0.10.0'} stream-chain@2.2.5: - resolution: - { - integrity: sha512-1TJmBx6aSWqZ4tx7aTpBDXK0/e2hhcNSTV8+CbFJtDjbb+I1mZ8lHit0Grw9GRT+6JbIrrDd8esncgBi8aBXGA==, - } + resolution: {integrity: sha512-1TJmBx6aSWqZ4tx7aTpBDXK0/e2hhcNSTV8+CbFJtDjbb+I1mZ8lHit0Grw9GRT+6JbIrrDd8esncgBi8aBXGA==} stream-combiner@0.0.4: - resolution: - { - integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==, - } + resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==} stream-http@2.8.3: - resolution: - { - integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==, - } + resolution: {integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==} stream-json@1.8.0: - resolution: - { - integrity: sha512-HZfXngYHUAr1exT4fxlbc1IOce1RYxp2ldeaf97LYCOPSoOqY/1Psp7iGvpb+6JIOgkra9zDYnPX01hGAHzEPw==, - } + resolution: {integrity: sha512-HZfXngYHUAr1exT4fxlbc1IOce1RYxp2ldeaf97LYCOPSoOqY/1Psp7iGvpb+6JIOgkra9zDYnPX01hGAHzEPw==} stream-log-stats@3.0.2: - resolution: - { - integrity: sha512-393j7aeF9iRdHvyANqEQU82UQmpw2CTxgsT83caefh+lOxavVLbVrw8Mr4zjXeZLh2+xeHZMKfVx4T0rJ/EchA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-393j7aeF9iRdHvyANqEQU82UQmpw2CTxgsT83caefh+lOxavVLbVrw8Mr4zjXeZLh2+xeHZMKfVx4T0rJ/EchA==} + engines: {node: '>=8.0.0'} hasBin: true stream-shift@1.0.3: - resolution: - { - integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==, - } + resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==} stream-slice@0.1.2: - resolution: - { - integrity: sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA==, - } + resolution: {integrity: sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA==} stream-via@1.0.4: - resolution: - { - integrity: sha512-DBp0lSvX5G9KGRDTkR/R+a29H+Wk2xItOF+MpZLLNDWbEV9tGPnqLPxHEYjmiz8xGtJHRIqmI+hCjmNzqoA4nQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-DBp0lSvX5G9KGRDTkR/R+a29H+Wk2xItOF+MpZLLNDWbEV9tGPnqLPxHEYjmiz8xGtJHRIqmI+hCjmNzqoA4nQ==} + engines: {node: '>=0.10.0'} streaming-json-stringify@3.1.0: - resolution: - { - integrity: sha512-axtfs3BDxAsrZ9swD163FBrXZ8dhJJp6kUI6C97TvUZG9RHKfbg9nFbXqEheFNOb3IYMEt2ag9F62sWLFUZ4ug==, - } + resolution: {integrity: sha512-axtfs3BDxAsrZ9swD163FBrXZ8dhJJp6kUI6C97TvUZG9RHKfbg9nFbXqEheFNOb3IYMEt2ag9F62sWLFUZ4ug==} 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'} streamx@2.18.0: - resolution: - { - integrity: sha512-LLUC1TWdjVdn1weXGcSxyTR3T4+acB6tVGXT95y0nGbca4t4o/ng1wKAGTljm9VicuCVLvRlqFYXYy5GwgM7sQ==, - } + resolution: {integrity: sha512-LLUC1TWdjVdn1weXGcSxyTR3T4+acB6tVGXT95y0nGbca4t4o/ng1wKAGTljm9VicuCVLvRlqFYXYy5GwgM7sQ==} strict-event-emitter-types@2.0.0: - resolution: - { - integrity: sha512-Nk/brWYpD85WlOgzw5h173aci0Teyv8YdIAEtV+N88nDB0dLlazZyJMIsN6eo1/AR61l+p6CJTG1JIyFaoNEEA==, - } + resolution: {integrity: sha512-Nk/brWYpD85WlOgzw5h173aci0Teyv8YdIAEtV+N88nDB0dLlazZyJMIsN6eo1/AR61l+p6CJTG1JIyFaoNEEA==} strict-event-emitter@0.5.1: - resolution: - { - integrity: sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==, - } + resolution: {integrity: sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==} strict-uri-encode@1.1.0: - resolution: - { - integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==} + engines: {node: '>=0.10.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-argv@0.3.2: - resolution: - { - integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==, - } - engines: { node: ">=0.6.19" } + resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} + engines: {node: '>=0.6.19'} string-length@4.0.2: - resolution: - { - integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==} + engines: {node: '>=10'} string-length@5.0.1: - resolution: - { - integrity: sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==, - } - engines: { node: ">=12.20" } + resolution: {integrity: sha512-9Ep08KAMUn0OadnVaBuRdE2l615CQ508kr0XMadjClfYpdCyvrbFp6Taebo8yyxokQ4viUd/xPPUA4FGgUa0ow==} + engines: {node: '>=12.20'} string-natural-compare@3.0.1: - resolution: - { - integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==, - } + resolution: {integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==} string-range@1.2.2: - resolution: - { - integrity: sha512-tYft6IFi8SjplJpxCUxyqisD3b+R2CSkomrtJYCkvuf1KuCAWgz7YXt4O0jip7efpfCemwHEzTEAO8EuOYgh3w==, - } + resolution: {integrity: sha512-tYft6IFi8SjplJpxCUxyqisD3b+R2CSkomrtJYCkvuf1KuCAWgz7YXt4O0jip7efpfCemwHEzTEAO8EuOYgh3w==} string-width@1.0.2: - resolution: - { - integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==} + engines: {node: '>=0.10.0'} string-width@2.1.1: - resolution: - { - integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==} + engines: {node: '>=4'} 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.prototype.matchall@4.0.11: - resolution: - { - integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} + engines: {node: '>= 0.4'} string.prototype.padend@3.1.6: - resolution: - { - integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==} + engines: {node: '>= 0.4'} string.prototype.padstart@3.1.6: - resolution: - { - integrity: sha512-1y15lz7otgfRTAVK5qbp3eHIga+w8j7+jIH+7HpUrOfnLVl6n0hbspi4EXf4tR+PNOpBjPstltemkx0SvViOCg==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-1y15lz7otgfRTAVK5qbp3eHIga+w8j7+jIH+7HpUrOfnLVl6n0hbspi4EXf4tR+PNOpBjPstltemkx0SvViOCg==} + engines: {node: '>= 0.4'} string.prototype.trim@1.2.9: - resolution: - { - integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} + engines: {node: '>= 0.4'} string.prototype.trimend@1.0.8: - resolution: - { - integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==, - } + resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} 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@0.10.31: - resolution: - { - integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==, - } + resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} string_decoder@1.1.1: - resolution: - { - integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==, - } + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} 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.3: - resolution: - { - integrity: sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==, - } + resolution: {integrity: sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==} 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@3.0.1: - resolution: - { - integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} + engines: {node: '>=0.10.0'} strip-ansi@4.0.0: - resolution: - { - integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==} + engines: {node: '>=4'} strip-ansi@5.2.0: - resolution: - { - integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==} + engines: {node: '>=6'} 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-string@1.0.0: - resolution: - { - integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} + engines: {node: '>=0.10.0'} 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-bom@4.0.0: - resolution: - { - integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==} + engines: {node: '>=8'} 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-eof@1.0.0: - resolution: - { - integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} + engines: {node: '>=0.10.0'} 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-hex-prefix@1.0.0: - resolution: - { - integrity: sha512-q8d4ue7JGEiVcypji1bALTos+0pWtyGlivAWyPuTkHzuTCJqrK9sWxYQZUq6Nq3cuyv3bm734IhHvHtGGURU6A==, - } - engines: { node: ">=6.5.0", npm: ">=3" } + resolution: {integrity: sha512-q8d4ue7JGEiVcypji1bALTos+0pWtyGlivAWyPuTkHzuTCJqrK9sWxYQZUq6Nq3cuyv3bm734IhHvHtGGURU6A==} + engines: {node: '>=6.5.0', npm: '>=3'} 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@2.0.1: - resolution: - { - integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + engines: {node: '>=0.10.0'} 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-json-comments@5.0.1: - resolution: - { - integrity: sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-0fk9zBqO67Nq5M/m45qHCJxylV/DhBlIOVExqgOMiCCrzrhU6tCibRXNqE3jwJLftzE9SNuZtYbpzcO+i9FiKw==} + engines: {node: '>=14.16'} strip-outer@1.0.1: - resolution: - { - integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==} + engines: {node: '>=0.10.0'} strnum@1.0.5: - resolution: - { - integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==, - } + resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==} structured-headers@0.4.1: - resolution: - { - integrity: sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==, - } + resolution: {integrity: sha512-0MP/Cxx5SzeeZ10p/bZI0S6MpgD+yxAhi1BOQ34jgnMXsCq3j1t6tQnZu+KdlL7dvJTLT3g9xN8tl10TqgFMcg==} stubborn-fs@1.2.5: - resolution: - { - integrity: sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g==, - } + resolution: {integrity: sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g==} style-loader@3.3.4: - resolution: - { - integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} + engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 style-mod@4.1.2: - resolution: - { - integrity: sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==, - } + resolution: {integrity: sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==} style-search@0.1.0: - resolution: - { - integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==, - } + resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==} style-to-object@0.4.4: - resolution: - { - integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==, - } + resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==} styled-components@5.3.11: - resolution: - { - integrity: sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==} + engines: {node: '>=10'} peerDependencies: - react: ">= 16.8.0" - react-dom: ">= 16.8.0" - react-is: ">= 16.8.0" + react: '>= 16.8.0' + react-dom: '>= 16.8.0' + react-is: '>= 16.8.0' styled-components@6.1.8: - resolution: - { - integrity: sha512-PQ6Dn+QxlWyEGCKDS71NGsXoVLKfE1c3vApkvDYS5KAK+V8fNWGhbSUEo9Gg2iaID2tjLXegEW3bZDUGpofRWw==, - } - engines: { node: ">= 16" } + resolution: {integrity: sha512-PQ6Dn+QxlWyEGCKDS71NGsXoVLKfE1c3vApkvDYS5KAK+V8fNWGhbSUEo9Gg2iaID2tjLXegEW3bZDUGpofRWw==} + engines: {node: '>= 16'} peerDependencies: - react: ">= 16.8.0" - react-dom: ">= 16.8.0" + react: '>= 16.8.0' + react-dom: '>= 16.8.0' styled-jsx@5.1.1: - resolution: - { - integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, - } - engines: { node: ">= 12.0.0" } - peerDependencies: - "@babel/core": "*" - babel-plugin-macros: "*" - react: ">= 16.8.0 || 17.x.x || ^18.0.0-0" + resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} + engines: {node: '>= 12.0.0'} + peerDependencies: + '@babel/core': '*' + babel-plugin-macros: '*' + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true babel-plugin-macros: optional: true styled-system@5.1.5: - resolution: - { - integrity: sha512-7VoD0o2R3RKzOzPK0jYrVnS8iJdfkKsQJNiLRDjikOpQVqQHns/DXWaPZOH4tIKkhAT7I6wIsy9FWTWh2X3q+A==, - } + resolution: {integrity: sha512-7VoD0o2R3RKzOzPK0jYrVnS8iJdfkKsQJNiLRDjikOpQVqQHns/DXWaPZOH4tIKkhAT7I6wIsy9FWTWh2X3q+A==} stylehacks@5.1.1: - resolution: - { - integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==, - } - engines: { node: ^10 || ^12 || >=14.0 } + resolution: {integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==} + engines: {node: ^10 || ^12 || >=14.0} peerDependencies: postcss: ^8.2.15 stylelint-config-recommended@13.0.0: - resolution: - { - integrity: sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ==, - } - engines: { node: ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-EH+yRj6h3GAe/fRiyaoO2F9l9Tgg50AOFhaszyfov9v6ayXJ1IkSHwTxd7lB48FmOeSGDPLjatjO11fJpmarkQ==} + engines: {node: ^14.13.1 || >=16.0.0} peerDependencies: stylelint: ^15.10.0 stylelint-config-styled-components@0.1.1: - resolution: - { - integrity: sha512-z5Xz/9GmvxO6e/DLzBMwkB85zHxEEjN6K7Cj80Bi+o/9vR9eS3GX3E9VuMnX9WLFYulqbqLtTapGGY28JBiy9Q==, - } + resolution: {integrity: sha512-z5Xz/9GmvxO6e/DLzBMwkB85zHxEEjN6K7Cj80Bi+o/9vR9eS3GX3E9VuMnX9WLFYulqbqLtTapGGY28JBiy9Q==} stylelint-processor-styled-components@1.10.0: - resolution: - { - integrity: sha512-g4HpN9rm0JD0LoHuIOcd/FIjTZCJ0ErQ+dC3VTxp+dSvnkV+MklKCCmCQEdz5K5WxF4vPuzfVgdbSDuPYGZhoA==, - } + resolution: {integrity: sha512-g4HpN9rm0JD0LoHuIOcd/FIjTZCJ0ErQ+dC3VTxp+dSvnkV+MklKCCmCQEdz5K5WxF4vPuzfVgdbSDuPYGZhoA==} stylelint@14.16.1: - resolution: - { - integrity: sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==, - } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + resolution: {integrity: sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasBin: true styleq@0.1.3: - resolution: - { - integrity: sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==, - } + resolution: {integrity: sha512-3ZUifmCDCQanjeej1f6kyl/BeP/Vae5EYkQ9iJfUm/QwZvlgnZzyflqAsAWYURdtea8Vkvswu2GrC57h3qffcA==} stylis@4.2.0: - resolution: - { - integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==, - } + resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} stylis@4.3.1: - resolution: - { - integrity: sha512-EQepAV+wMsIaGVGX1RECzgrcqRRU/0sYOHkeLsZ3fzHaHXZy4DaOOX0vOlGQdlsjkh3mFHAIlVimpwAs4dslyQ==, - } + resolution: {integrity: sha512-EQepAV+wMsIaGVGX1RECzgrcqRRU/0sYOHkeLsZ3fzHaHXZy4DaOOX0vOlGQdlsjkh3mFHAIlVimpwAs4dslyQ==} sucrase@3.34.0: - resolution: - { - integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==} + engines: {node: '>=8'} hasBin: true 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 sudo-prompt@8.2.5: - resolution: - { - integrity: sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==, - } + resolution: {integrity: sha512-rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw==} sudo-prompt@9.1.1: - resolution: - { - integrity: sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA==, - } + resolution: {integrity: sha512-es33J1g2HjMpyAhz8lOR+ICmXXAqTuKbuXuUWLhOLew20oN9oUCgCJx615U/v7aioZg7IX5lIh9x34vwneu4pA==} sudo-prompt@9.2.1: - resolution: - { - integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==, - } + resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==} sumchecker@3.0.1: - resolution: - { - integrity: sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==, - } - engines: { node: ">= 8.0" } + resolution: {integrity: sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==} + engines: {node: '>= 8.0'} superagent@6.1.0: - resolution: - { - integrity: sha512-OUDHEssirmplo3F+1HWKUrUjvnQuA+nZI6i/JJBdXb5eq9IyEQwPyPpqND+SSsxf6TygpBEkUjISVRN4/VOpeg==, - } - engines: { node: ">= 7.0.0" } + resolution: {integrity: sha512-OUDHEssirmplo3F+1HWKUrUjvnQuA+nZI6i/JJBdXb5eq9IyEQwPyPpqND+SSsxf6TygpBEkUjISVRN4/VOpeg==} + engines: {node: '>= 7.0.0'} deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net superagent@8.1.2: - resolution: - { - integrity: sha512-6WTxW1EB6yCxV5VFOIPQruWGHqc3yI7hEmZK6h+pyk69Lk/Ut7rLUY6W/ONF2MjBuGjvmMiIpsrVJ2vjrHlslA==, - } - engines: { node: ">=6.4.0 <13 || >=14" } + resolution: {integrity: sha512-6WTxW1EB6yCxV5VFOIPQruWGHqc3yI7hEmZK6h+pyk69Lk/Ut7rLUY6W/ONF2MjBuGjvmMiIpsrVJ2vjrHlslA==} + engines: {node: '>=6.4.0 <13 || >=14'} deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net superstruct@0.14.2: - resolution: - { - integrity: sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ==, - } + resolution: {integrity: sha512-nPewA6m9mR3d6k7WkZ8N8zpTWfenFH3q9pA2PkuiZxINr9DKB2+40wEQf0ixn8VaGuJ78AB6iWOtStI+/4FKZQ==} superstruct@0.6.2: - resolution: - { - integrity: sha512-lvA97MFAJng3rfjcafT/zGTSWm6Tbpk++DP6It4Qg7oNaeM+2tdJMuVgGje21/bIpBEs6iQql1PJH6dKTjl4Ig==, - } + resolution: {integrity: sha512-lvA97MFAJng3rfjcafT/zGTSWm6Tbpk++DP6It4Qg7oNaeM+2tdJMuVgGje21/bIpBEs6iQql1PJH6dKTjl4Ig==} supports-color@2.0.0: - resolution: - { - integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==, - } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} + engines: {node: '>=0.8.0'} supports-color@4.5.0: - resolution: - { - integrity: sha512-ycQR/UbvI9xIlEdQT1TQqwoXtEldExbCEAJgRo5YXlmSKjv6ThHnP9/vwGa1gr19Gfw+LkFd7KqYMhzrRC5JYw==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-ycQR/UbvI9xIlEdQT1TQqwoXtEldExbCEAJgRo5YXlmSKjv6ThHnP9/vwGa1gr19Gfw+LkFd7KqYMhzrRC5JYw==} + engines: {node: '>=4'} supports-color@5.5.0: - resolution: - { - integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} 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-color@8.1.1: - resolution: - { - integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} + engines: {node: '>=10'} supports-color@9.4.0: - resolution: - { - integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==} + engines: {node: '>=12'} supports-hyperlinks@2.3.0: - resolution: - { - integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==} + 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==} svg-tags@1.0.0: - resolution: - { - integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==, - } + resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} svgo@1.3.2: - resolution: - { - integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==, - } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} + engines: {node: '>=4.0.0'} deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. hasBin: true svgo@2.8.0: - resolution: - { - integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==} + engines: {node: '>=10.13.0'} hasBin: true swarm-js@0.1.42: - resolution: - { - integrity: sha512-BV7c/dVlA3R6ya1lMlSSNPLYrntt0LUq4YMgy3iwpCIc6rZnS5W2wUoctarZ5pXlpKtxDDf9hNziEkcfrxdhqQ==, - } + resolution: {integrity: sha512-BV7c/dVlA3R6ya1lMlSSNPLYrntt0LUq4YMgy3iwpCIc6rZnS5W2wUoctarZ5pXlpKtxDDf9hNziEkcfrxdhqQ==} swc-loader@0.2.6: - resolution: - { - integrity: sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg==, - } + resolution: {integrity: sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg==} peerDependencies: - "@swc/core": ^1.2.147 - webpack: ">=2" + '@swc/core': ^1.2.147 + webpack: '>=2' swiper@7.4.1: - resolution: - { - integrity: sha512-dhbL4tpYFvHug1J7GnKElfTi6EYhlZy/vNZRhHkWFyUsWZ1Vovipxj3la5gqllMogygXJMe3zvVv+f6eppvWiA==, - } - engines: { node: ">= 4.7.0" } + resolution: {integrity: sha512-dhbL4tpYFvHug1J7GnKElfTi6EYhlZy/vNZRhHkWFyUsWZ1Vovipxj3la5gqllMogygXJMe3zvVv+f6eppvWiA==} + engines: {node: '>= 4.7.0'} symbol-observable@1.2.0: - resolution: - { - integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==} + engines: {node: '>=0.10.0'} symbol-observable@2.0.3: - resolution: - { - integrity: sha512-sQV7phh2WCYAn81oAkakC5qjq2Ml0g8ozqz03wOGnx9dDlG1de6yrF+0RAzSJD8fPUow3PTSMf2SAbOGxb93BA==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-sQV7phh2WCYAn81oAkakC5qjq2Ml0g8ozqz03wOGnx9dDlG1de6yrF+0RAzSJD8fPUow3PTSMf2SAbOGxb93BA==} + engines: {node: '>=0.10'} symbol-tree@3.2.4: - resolution: - { - integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==, - } + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} symbol.inspect@1.0.1: - resolution: - { - integrity: sha512-YQSL4duoHmLhsTD1Pw8RW6TZ5MaTX5rXJnqacJottr2P2LZBF/Yvrc3ku4NUpMOm8aM0KOCqM+UAkMA5HWQCzQ==, - } + resolution: {integrity: sha512-YQSL4duoHmLhsTD1Pw8RW6TZ5MaTX5rXJnqacJottr2P2LZBF/Yvrc3ku4NUpMOm8aM0KOCqM+UAkMA5HWQCzQ==} symbol.prototype.description@1.0.6: - resolution: - { - integrity: sha512-VgVgtEabORsQtmuindtO7v8fF+bsKxUkvEMFj+ecBK6bomrwv5JUSWdMoC3ypa9+Jaqp/wOzkWk4f6I+p5GzyA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-VgVgtEabORsQtmuindtO7v8fF+bsKxUkvEMFj+ecBK6bomrwv5JUSWdMoC3ypa9+Jaqp/wOzkWk4f6I+p5GzyA==} + engines: {node: '>= 0.4'} synchronous-promise@2.0.17: - resolution: - { - integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==, - } + resolution: {integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==} synckit@0.8.8: - resolution: - { - integrity: sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==, - } - engines: { node: ^14.18.0 || >=16.0.0 } + resolution: {integrity: sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==} + engines: {node: ^14.18.0 || >=16.0.0} tabbable@5.3.3: - resolution: - { - integrity: sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==, - } + resolution: {integrity: sha512-QD9qKY3StfbZqWOPLp0++pOrAVb/HbUi5xCc8cUo4XjP19808oaMiDzn0leBY5mCespIBM0CIZePzZjgzR83kA==} table-layout@1.0.2: - resolution: - { - integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-qd/R7n5rQTRFi+Zf2sk5XVVd9UQl6ZkduPFC3S7WEGJAmetDTjY3qPN50eSKzwuzEyQKy5TN2TiZdkIjos2L6A==} + engines: {node: '>=8.0.0'} table@6.8.2: - resolution: - { - integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==} + engines: {node: '>=10.0.0'} tailwindcss@3.4.3: - resolution: - { - integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==, - } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==} + engines: {node: '>=14.0.0'} hasBin: true tapable@1.1.3: - resolution: - { - integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} + engines: {node: '>=6'} tapable@2.2.1: - resolution: - { - integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} tar-fs@2.1.1: - resolution: - { - integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==, - } + resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} tar-stream@2.2.0: - resolution: - { - integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + engines: {node: '>=6'} tar-stream@3.1.7: - resolution: - { - integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==, - } + resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} tar@4.4.19: - resolution: - { - integrity: sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==, - } - engines: { node: ">=4.5" } + resolution: {integrity: sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==} + engines: {node: '>=4.5'} tar@6.2.1: - resolution: - { - integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} + engines: {node: '>=10'} telejson@6.0.8: - resolution: - { - integrity: sha512-nerNXi+j8NK1QEfBHtZUN/aLdDcyupA//9kAboYLrtzZlPLpUfqbVGWb9zz91f/mIjRbAYhbgtnJHY8I1b5MBg==, - } + resolution: {integrity: sha512-nerNXi+j8NK1QEfBHtZUN/aLdDcyupA//9kAboYLrtzZlPLpUfqbVGWb9zz91f/mIjRbAYhbgtnJHY8I1b5MBg==} telejson@7.2.0: - resolution: - { - integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==, - } + resolution: {integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==} telnet-client@1.2.8: - resolution: - { - integrity: sha512-W+w4k3QAmULVNhBVT2Fei369kGZCh/TH25M7caJAXW+hLxwoQRuw0di3cX4l0S9fgH3Mvq7u+IFMoBDpEw/eIg==, - } + resolution: {integrity: sha512-W+w4k3QAmULVNhBVT2Fei369kGZCh/TH25M7caJAXW+hLxwoQRuw0di3cX4l0S9fgH3Mvq7u+IFMoBDpEw/eIg==} temp-dir@1.0.0: - resolution: - { - integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==} + engines: {node: '>=4'} 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'} temp-file@3.4.0: - resolution: - { - integrity: sha512-C5tjlC/HCtVUOi3KWVokd4vHVViOmGjtLwIh4MuzPo/nMYTV/p1urt3RnMz2IWXDdKEGJH3k5+KPxtqRsUYGtg==, - } + resolution: {integrity: sha512-C5tjlC/HCtVUOi3KWVokd4vHVViOmGjtLwIh4MuzPo/nMYTV/p1urt3RnMz2IWXDdKEGJH3k5+KPxtqRsUYGtg==} temp@0.8.4: - resolution: - { - integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-s0ZZzd0BzYv5tLSptZooSjK8oj6C+c19p7Vqta9+6NPOf7r+fxq0cJe6/oN4LTC79sy5NY8ucOJNgwsKCSbfqg==} + engines: {node: '>=6.0.0'} temp@0.9.4: - resolution: - { - integrity: sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==} + engines: {node: '>=6.0.0'} tempfile@2.0.0: - resolution: - { - integrity: sha512-ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA==} + engines: {node: '>=4'} tempy@0.3.0: - resolution: - { - integrity: sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==} + 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'} tempy@0.7.1: - resolution: - { - integrity: sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-vXPxwOyaNVi9nyczO16mxmHGpl6ASC5/TVhRRHpqeYHvKQm58EaWNvZXxAhR0lYYnBOQFjXjhzeLsaXdjxLjRg==} + engines: {node: '>=10'} tempy@1.0.1: - resolution: - { - integrity: sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-biM9brNqxSc04Ee71hzFbryD11nX7VPhQQY32AdDmjFvodsRFz/3ufeoTZ6uYkRFfGo188tENcASNs3vTdsM0w==} + engines: {node: '>=10'} term-size@2.2.1: - resolution: - { - integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==} + engines: {node: '>=8'} terminal-link@2.1.1: - resolution: - { - integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} + engines: {node: '>=8'} terser-webpack-plugin@5.3.10: - resolution: - { - integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==, - } - engines: { node: ">= 10.13.0" } - peerDependencies: - "@swc/core": "*" - esbuild: "*" - uglify-js: "*" + resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==} + engines: {node: '>= 10.13.0'} + peerDependencies: + '@swc/core': '*' + esbuild: '*' + uglify-js: '*' webpack: ^5.1.0 peerDependenciesMeta: - "@swc/core": + '@swc/core': optional: true esbuild: optional: true @@ -43288,530 +28531,293 @@ packages: optional: true terser@5.30.0: - resolution: - { - integrity: sha512-Y/SblUl5kEyEFzhMAQdsxVHh+utAxd4IuRNJzKywY/4uzSogh3G219jqbDDxYu4MXO9CzY3tSEqmZvW6AoEDJw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-Y/SblUl5kEyEFzhMAQdsxVHh+utAxd4IuRNJzKywY/4uzSogh3G219jqbDDxYu4MXO9CzY3tSEqmZvW6AoEDJw==} + engines: {node: '>=10'} hasBin: true teslabot@1.5.0: - resolution: - { - integrity: sha512-e2MmELhCgrgZEGo7PQu/6bmYG36IDH+YrBI1iGm6jovXkeDIGa3pZ2WSqRjzkuw2vt1EqfkZoV5GpXgqL8QJVg==, - } + resolution: {integrity: sha512-e2MmELhCgrgZEGo7PQu/6bmYG36IDH+YrBI1iGm6jovXkeDIGa3pZ2WSqRjzkuw2vt1EqfkZoV5GpXgqL8QJVg==} test-exclude@6.0.0: - resolution: - { - integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==} + engines: {node: '>=8'} text-decoder@1.1.0: - resolution: - { - integrity: sha512-TmLJNj6UgX8xcUZo4UDStGQtDiTzF7BzWlzn9g7UWrjkpHr5uJTK1ld16wZ3LXb2vb6jH8qU89dW5whuMdXYdw==, - } + resolution: {integrity: sha512-TmLJNj6UgX8xcUZo4UDStGQtDiTzF7BzWlzn9g7UWrjkpHr5uJTK1ld16wZ3LXb2vb6jH8qU89dW5whuMdXYdw==} text-encoding-polyfill@0.6.7: - resolution: - { - integrity: sha512-/DZ1XJqhbqRkCop6s9ZFu8JrFRwmVuHg4quIRm+ziFkR3N3ec6ck6yBvJ1GYeEQZhLVwRW0rZE+C3SSJpy0RTg==, - } + resolution: {integrity: sha512-/DZ1XJqhbqRkCop6s9ZFu8JrFRwmVuHg4quIRm+ziFkR3N3ec6ck6yBvJ1GYeEQZhLVwRW0rZE+C3SSJpy0RTg==} text-encoding-utf-8@1.0.2: - resolution: - { - integrity: sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==, - } + resolution: {integrity: sha512-8bw4MY9WjdsD2aMtO0OzOCY3pXGYNx2d2FfHRVUKkiCPDWjKuOlhLVASS+pD7VkLTVjW268LYJHwsnPFlBpbAg==} text-extensions@1.9.0: - resolution: - { - integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==, - } - engines: { node: ">=0.10" } + resolution: {integrity: sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==} + engines: {node: '>=0.10'} text-hex@1.0.0: - resolution: - { - integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==, - } + resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==} text-table@0.2.0: - resolution: - { - integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==, - } + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 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==} thor-devkit@2.0.9: - resolution: - { - integrity: sha512-qCbkjAFhlLq4Tb7YIQokEryPb9pCCGUX0gRIBGJr+sBNlyOFO8TGJFZ8d7+VXWpdDhcWerpFdekB55lD43GiGQ==, - } + resolution: {integrity: sha512-qCbkjAFhlLq4Tb7YIQokEryPb9pCCGUX0gRIBGJr+sBNlyOFO8TGJFZ8d7+VXWpdDhcWerpFdekB55lD43GiGQ==} thread-loader@3.0.4: - resolution: - { - integrity: sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA==, - } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA==} + engines: {node: '>= 10.13.0'} peerDependencies: webpack: ^4.27.0 || ^5.0.0 thread-stream@3.0.0: - resolution: - { - integrity: sha512-oUIFjxaUT6knhPtWgDMc29zF1FcSl0yXpapkyrQrCGEfYA2HUZXCilUtKyYIv6HkCyqSPAMkY+EG0GbyIrNDQg==, - } + resolution: {integrity: sha512-oUIFjxaUT6knhPtWgDMc29zF1FcSl0yXpapkyrQrCGEfYA2HUZXCilUtKyYIv6HkCyqSPAMkY+EG0GbyIrNDQg==} throat@5.0.0: - resolution: - { - integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==, - } + resolution: {integrity: sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==} throat@6.0.2: - resolution: - { - integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==, - } + resolution: {integrity: sha512-WKexMoJj3vEuK0yFEapj8y64V0A6xcuPuK9Gt1d0R+dzCSJc0lHqQytAbSB4cDAK0dWh4T0E2ETkoLE2WZ41OQ==} through2@2.0.5: - resolution: - { - integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==, - } + resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} through2@4.0.2: - resolution: - { - integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==, - } + resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==} through@2.3.8: - resolution: - { - integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, - } + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} thunky@1.1.0: - resolution: - { - integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==, - } + resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} timed-out@4.0.1: - resolution: - { - integrity: sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==} + engines: {node: '>=0.10.0'} timemachine@0.3.2: - resolution: - { - integrity: sha512-JNKeKZXQJc8UC19JcIq0XziBud+fNNJfatZ57lwk+o1O9mpW2FmzWvRw7FTTOKuN6M0zsjGIlNi0O0QrF5WVRA==, - } + resolution: {integrity: sha512-JNKeKZXQJc8UC19JcIq0XziBud+fNNJfatZ57lwk+o1O9mpW2FmzWvRw7FTTOKuN6M0zsjGIlNi0O0QrF5WVRA==} timers-browserify@2.0.12: - resolution: - { - integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==, - } - engines: { node: ">=0.6.0" } + resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==} + engines: {node: '>=0.6.0'} tiny-glob@0.2.9: - resolution: - { - integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==, - } + resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} tiny-hashes@1.0.1: - resolution: - { - integrity: sha512-knIN5zj4fl7kW4EBU5sLP20DWUvi/rVouvJezV0UAym2DkQaqm365Nyc8F3QEiOvunNDMxR8UhcXd1d5g+Wg1g==, - } + resolution: {integrity: sha512-knIN5zj4fl7kW4EBU5sLP20DWUvi/rVouvJezV0UAym2DkQaqm365Nyc8F3QEiOvunNDMxR8UhcXd1d5g+Wg1g==} tiny-invariant@1.3.3: - resolution: - { - integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==, - } + resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} tiny-queue@0.2.0: - resolution: - { - integrity: sha512-ucfrvjzfbtc+xqmn95DEUtGcDHJHQgZ9IR0mizPOZBkY45reZDCJjafUGVJOGJassjn0MavTyWOCQcG+agpLxw==, - } + resolution: {integrity: sha512-ucfrvjzfbtc+xqmn95DEUtGcDHJHQgZ9IR0mizPOZBkY45reZDCJjafUGVJOGJassjn0MavTyWOCQcG+agpLxw==} tiny-secp256k1@1.1.6: - resolution: - { - integrity: sha512-FmqJZGduTyvsr2cF3375fqGHUovSwDi/QytexX1Se4BPuPZpTE5Ftp5fg+EFSuEf3lhZqgCRjEG3ydUQ/aNiwA==, - } - engines: { node: ">=6.0.0" } + resolution: {integrity: sha512-FmqJZGduTyvsr2cF3375fqGHUovSwDi/QytexX1Se4BPuPZpTE5Ftp5fg+EFSuEf3lhZqgCRjEG3ydUQ/aNiwA==} + engines: {node: '>=6.0.0'} tiny-typed-emitter@2.1.0: - resolution: - { - integrity: sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA==, - } + resolution: {integrity: sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA==} tiny-warning@1.0.3: - resolution: - { - integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==, - } + resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} tinycolor2@1.6.0: - resolution: - { - integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==, - } + resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} tippy.js@6.3.7: - resolution: - { - integrity: sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==, - } + resolution: {integrity: sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==} title@3.5.3: - resolution: - { - integrity: sha512-20JyowYglSEeCvZv3EZ0nZ046vLarO37prvV0mbtQV7C8DJPGgN967r8SJkqd3XK3K3lD3/Iyfp3avjfil8Q2Q==, - } + resolution: {integrity: sha512-20JyowYglSEeCvZv3EZ0nZ046vLarO37prvV0mbtQV7C8DJPGgN967r8SJkqd3XK3K3lD3/Iyfp3avjfil8Q2Q==} hasBin: true titleize@1.0.0: - resolution: - { - integrity: sha512-TARUb7z1pGvlLxgPk++7wJ6aycXF3GJ0sNSBTAsTuJrQG5QuZlkUQP+zl+nbjAh4gMX9yDw9ZYklMd7vAfJKEw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-TARUb7z1pGvlLxgPk++7wJ6aycXF3GJ0sNSBTAsTuJrQG5QuZlkUQP+zl+nbjAh4gMX9yDw9ZYklMd7vAfJKEw==} + engines: {node: '>=0.10.0'} tmp-promise@3.0.3: - resolution: - { - integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==, - } + resolution: {integrity: sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==} tmp@0.0.33: - resolution: - { - integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==, - } - engines: { node: ">=0.6.0" } + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} + engines: {node: '>=0.6.0'} tmp@0.2.3: - resolution: - { - integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==, - } - engines: { node: ">=14.14" } + resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} + engines: {node: '>=14.14'} tmpl@1.0.5: - resolution: - { - integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==, - } + resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==} to-arraybuffer@1.0.1: - resolution: - { - integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==, - } + resolution: {integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==} to-camel-case@1.0.0: - resolution: - { - integrity: sha512-nD8pQi5H34kyu1QDMFjzEIYqk0xa9Alt6ZfrdEMuHCFOfTLhDG5pgTu/aAM9Wt9lXILwlXmWP43b8sav0GNE8Q==, - } + resolution: {integrity: sha512-nD8pQi5H34kyu1QDMFjzEIYqk0xa9Alt6ZfrdEMuHCFOfTLhDG5pgTu/aAM9Wt9lXILwlXmWP43b8sav0GNE8Q==} to-fast-properties@2.0.0: - resolution: - { - integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} to-no-case@1.0.2: - resolution: - { - integrity: sha512-Z3g735FxuZY8rodxV4gH7LxClE4H0hTIyHNIHdk+vpQxjLm0cwnKXq/OFVZ76SOQmto7txVcwSCwkU5kqp+FKg==, - } + resolution: {integrity: sha512-Z3g735FxuZY8rodxV4gH7LxClE4H0hTIyHNIHdk+vpQxjLm0cwnKXq/OFVZ76SOQmto7txVcwSCwkU5kqp+FKg==} to-readable-stream@1.0.0: - resolution: - { - integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} + engines: {node: '>=6'} 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'} to-snake-case@1.0.0: - resolution: - { - integrity: sha512-joRpzBAk1Bhi2eGEYBjukEWHOe/IvclOkiJl3DtA91jV6NwQ3MwXA4FHYeqk8BNp/D8bmi9tcNbRu/SozP0jbQ==, - } + resolution: {integrity: sha512-joRpzBAk1Bhi2eGEYBjukEWHOe/IvclOkiJl3DtA91jV6NwQ3MwXA4FHYeqk8BNp/D8bmi9tcNbRu/SozP0jbQ==} to-space-case@1.0.0: - resolution: - { - integrity: sha512-rLdvwXZ39VOn1IxGL3V6ZstoTbwLRckQmn/U8ZDLuWwIXNpuZDhQ3AiRUlhTbOXFVE9C+dR51wM0CBDhk31VcA==, - } + resolution: {integrity: sha512-rLdvwXZ39VOn1IxGL3V6ZstoTbwLRckQmn/U8ZDLuWwIXNpuZDhQ3AiRUlhTbOXFVE9C+dR51wM0CBDhk31VcA==} tocbot@4.25.0: - resolution: - { - integrity: sha512-kE5wyCQJ40hqUaRVkyQ4z5+4juzYsv/eK+aqD97N62YH0TxFhzJvo22RUQQZdO3YnXAk42ZOfOpjVdy+Z0YokA==, - } + resolution: {integrity: sha512-kE5wyCQJ40hqUaRVkyQ4z5+4juzYsv/eK+aqD97N62YH0TxFhzJvo22RUQQZdO3YnXAk42ZOfOpjVdy+Z0YokA==} toidentifier@1.0.0: - resolution: - { - integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==, - } - engines: { node: ">=0.6" } + resolution: {integrity: sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==} + engines: {node: '>=0.6'} 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'} touch@3.1.0: - resolution: - { - integrity: sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==, - } + resolution: {integrity: sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==} hasBin: true tough-cookie@2.5.0: - resolution: - { - integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==, - } - engines: { node: ">=0.8" } + resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==} + engines: {node: '>=0.8'} tough-cookie@4.1.3: - resolution: - { - integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} + engines: {node: '>=6'} tough-cookie@4.1.4: - resolution: - { - integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} + engines: {node: '>=6'} 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==} tr46@2.1.0: - resolution: - { - integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} + engines: {node: '>=8'} tr46@3.0.0: - resolution: - { - integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} + engines: {node: '>=12'} trace-event-lib@1.4.1: - resolution: - { - integrity: sha512-TOgFolKG8JFY+9d5EohGWMvwvteRafcyfPWWNIqcuD1W/FUvxWcy2MSCZ/beYHM63oYPHYHCd3tkbgCctHVP7w==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-TOgFolKG8JFY+9d5EohGWMvwvteRafcyfPWWNIqcuD1W/FUvxWcy2MSCZ/beYHM63oYPHYHCd3tkbgCctHVP7w==} + engines: {node: '>=12.0.0'} traverse@0.3.9: - resolution: - { - integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==, - } + resolution: {integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==} traverse@0.6.8: - resolution: - { - integrity: sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA==} + engines: {node: '>= 0.4'} 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==} trim-newlines@3.0.1: - resolution: - { - integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} + engines: {node: '>=8'} trim-repeated@1.0.0: - resolution: - { - integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==} + engines: {node: '>=0.10.0'} trim-right@1.0.1: - resolution: - { - integrity: sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==} + engines: {node: '>=0.10.0'} trim-trailing-lines@1.1.4: - resolution: - { - integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==, - } + resolution: {integrity: sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ==} trim@0.0.1: - resolution: - { - integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==, - } + resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==} deprecated: Use String.prototype.trim() instead triple-beam@1.4.1: - resolution: - { - integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==, - } - engines: { node: ">= 14.0.0" } + resolution: {integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==} + engines: {node: '>= 14.0.0'} tronweb@5.3.2: - resolution: - { - integrity: sha512-iPcIjMCxb6H7FXMntAj47F3L+7jSideyQ7ZOvRj9MeZBh46SHevMrDDR57HzakUa/tT8VvlPFHtqFK4hzTLkXw==, - } + resolution: {integrity: sha512-iPcIjMCxb6H7FXMntAj47F3L+7jSideyQ7ZOvRj9MeZBh46SHevMrDDR57HzakUa/tT8VvlPFHtqFK4hzTLkXw==} trough@1.0.5: - resolution: - { - integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==, - } + resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} trough@2.2.0: - resolution: - { - integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==, - } + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} truncate-utf8-bytes@1.0.2: - resolution: - { - integrity: sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==, - } + resolution: {integrity: sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==} tryer@1.0.1: - resolution: - { - integrity: sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==, - } + resolution: {integrity: sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==} ts-api-utils@1.3.0: - resolution: - { - integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} + engines: {node: '>=16'} peerDependencies: - typescript: ">=4.2.0" + typescript: '>=4.2.0' 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-jest@28.0.8: - resolution: - { - integrity: sha512-5FaG0lXmRPzApix8oFG8RKjAz4ehtm8yMKOTy5HX3fY6W8kmvOrmcY0hKDElW52FJov+clhUbrKAqofnj4mXTg==, - } - engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + resolution: {integrity: sha512-5FaG0lXmRPzApix8oFG8RKjAz4ehtm8yMKOTy5HX3fY6W8kmvOrmcY0hKDElW52FJov+clhUbrKAqofnj4mXTg==} + engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} hasBin: true peerDependencies: - "@babel/core": ">=7.0.0-beta.0 <8" - "@jest/types": ^28.0.0 + '@babel/core': '>=7.0.0-beta.0 <8' + '@jest/types': ^28.0.0 babel-jest: ^28.0.0 - esbuild: "*" + esbuild: '*' jest: ^28.0.0 - typescript: ">=4.3" + typescript: '>=4.3' peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true - "@jest/types": + '@jest/types': optional: true babel-jest: optional: true @@ -43819,23 +28825,20 @@ packages: optional: true ts-jest@29.1.2: - resolution: - { - integrity: sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==, - } - engines: { node: ^16.10.0 || ^18.0.0 || >=20.0.0 } + resolution: {integrity: sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g==} + engines: {node: ^16.10.0 || ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: - "@babel/core": ">=7.0.0-beta.0 <8" - "@jest/types": ^29.0.0 + '@babel/core': '>=7.0.0-beta.0 <8' + '@jest/types': ^29.0.0 babel-jest: ^29.0.0 - esbuild: "*" + esbuild: '*' jest: ^29.0.0 - typescript: ">=4.3 <6" + typescript: '>=4.3 <6' peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true - "@jest/types": + '@jest/types': optional: true babel-jest: optional: true @@ -43843,26 +28846,23 @@ packages: optional: true ts-jest@29.1.4: - resolution: - { - integrity: sha512-YiHwDhSvCiItoAgsKtoLFCuakDzDsJ1DLDnSouTaTmdOcOwIkSzbLXduaQ6M5DRVhuZC/NYaaZ/mtHbWMv/S6Q==, - } - engines: { node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0 } + resolution: {integrity: sha512-YiHwDhSvCiItoAgsKtoLFCuakDzDsJ1DLDnSouTaTmdOcOwIkSzbLXduaQ6M5DRVhuZC/NYaaZ/mtHbWMv/S6Q==} + engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: - "@babel/core": ">=7.0.0-beta.0 <8" - "@jest/transform": ^29.0.0 - "@jest/types": ^29.0.0 + '@babel/core': '>=7.0.0-beta.0 <8' + '@jest/transform': ^29.0.0 + '@jest/types': ^29.0.0 babel-jest: ^29.0.0 - esbuild: "*" + esbuild: '*' jest: ^29.0.0 - typescript: ">=4.3 <6" + typescript: '>=4.3 <6' peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true - "@jest/transform": + '@jest/transform': optional: true - "@jest/types": + '@jest/types': optional: true babel-jest: optional: true @@ -43870,26 +28870,23 @@ packages: optional: true ts-jest@29.1.5: - resolution: - { - integrity: sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg==, - } - engines: { node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0 } + resolution: {integrity: sha512-UuClSYxM7byvvYfyWdFI+/2UxMmwNyJb0NPkZPQE2hew3RurV7l7zURgOHAd/1I1ZdPpe3GUsXNXAcN8TFKSIg==} + engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: - "@babel/core": ">=7.0.0-beta.0 <8" - "@jest/transform": ^29.0.0 - "@jest/types": ^29.0.0 + '@babel/core': '>=7.0.0-beta.0 <8' + '@jest/transform': ^29.0.0 + '@jest/types': ^29.0.0 babel-jest: ^29.0.0 - esbuild: "*" + esbuild: '*' jest: ^29.0.0 - typescript: ">=4.3 <6" + typescript: '>=4.3 <6' peerDependenciesMeta: - "@babel/core": + '@babel/core': optional: true - "@jest/transform": + '@jest/transform': optional: true - "@jest/types": + '@jest/types': optional: true babel-jest: optional: true @@ -43897,71 +28894,50 @@ packages: optional: true ts-loader@9.5.1: - resolution: - { - integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==, - } - engines: { node: ">=12.0.0" } + resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==} + engines: {node: '>=12.0.0'} peerDependencies: - typescript: "*" + typescript: '*' webpack: ^5.0.0 ts-node@10.9.2: - resolution: - { - integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==, - } + resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} hasBin: true peerDependencies: - "@swc/core": ">=1.2.50" - "@swc/wasm": ">=1.2.50" - "@types/node": "*" - typescript: ">=2.7" + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' peerDependenciesMeta: - "@swc/core": + '@swc/core': optional: true - "@swc/wasm": + '@swc/wasm': optional: true ts-object-utils@0.0.5: - resolution: - { - integrity: sha512-iV0GvHqOmilbIKJsfyfJY9/dNHCs969z3so90dQWsO1eMMozvTpnB1MEaUbb3FYtZTGjv5sIy/xmslEz0Rg2TA==, - } + resolution: {integrity: sha512-iV0GvHqOmilbIKJsfyfJY9/dNHCs969z3so90dQWsO1eMMozvTpnB1MEaUbb3FYtZTGjv5sIy/xmslEz0Rg2TA==} tsconfig-paths@3.15.0: - resolution: - { - integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==, - } + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} tslib@2.6.2: - resolution: - { - integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==, - } + resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} tsscmp@1.0.6: - resolution: - { - integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==, - } - engines: { node: ">=0.6.x" } + resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==} + engines: {node: '>=0.6.x'} tsup@7.3.0: - resolution: - { - integrity: sha512-Ja1eaSRrE+QarmATlNO5fse2aOACYMBX+IZRKy1T+gpyH+jXgRrl5l4nHIQJQ1DoDgEjHDTw8cpE085UdBZuWQ==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-Ja1eaSRrE+QarmATlNO5fse2aOACYMBX+IZRKy1T+gpyH+jXgRrl5l4nHIQJQ1DoDgEjHDTw8cpE085UdBZuWQ==} + engines: {node: '>=18'} deprecated: Breaking node 16 hasBin: true peerDependencies: - "@swc/core": ^1 + '@swc/core': ^1 postcss: ^8.4.12 - typescript: ">=4.5.0" + typescript: '>=4.5.0' peerDependenciesMeta: - "@swc/core": + '@swc/core': optional: true postcss: optional: true @@ -43969,1378 +28945,775 @@ packages: optional: true tsutils@3.21.0: - resolution: - { - integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} + engines: {node: '>= 6'} peerDependencies: - typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' tsx@4.10.3: - resolution: - { - integrity: sha512-f0g60aFSVRVkzcQkEflh8fPLRfmt+HJHgWi/plG5UgvVaV+9TcpOwJ0sZJSACXmwmjMPg9yQR0BhTLbhkfV2uA==, - } - engines: { node: ">=18.0.0" } + resolution: {integrity: sha512-f0g60aFSVRVkzcQkEflh8fPLRfmt+HJHgWi/plG5UgvVaV+9TcpOwJ0sZJSACXmwmjMPg9yQR0BhTLbhkfV2uA==} + engines: {node: '>=18.0.0'} hasBin: true tty-browserify@0.0.0: - resolution: - { - integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==, - } + resolution: {integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==} tunnel-agent@0.6.0: - resolution: - { - integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==, - } + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} tunnel@0.0.6: - resolution: - { - integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==, - } - engines: { node: ">=0.6.11 <=0.7.0 || >=0.7.3" } + resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==} + engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'} turbo-darwin-64@2.1.2: - resolution: - { - integrity: sha512-3TEBxHWh99h2yIzkuIigMEOXt/ItYQp0aPiJjPd1xN4oDcsKK5AxiFKPH9pdtfIBzYsY59kQhZiFj0ELnSP7Bw==, - } + resolution: {integrity: sha512-3TEBxHWh99h2yIzkuIigMEOXt/ItYQp0aPiJjPd1xN4oDcsKK5AxiFKPH9pdtfIBzYsY59kQhZiFj0ELnSP7Bw==} cpu: [x64] os: [darwin] turbo-darwin-arm64@2.1.2: - resolution: - { - integrity: sha512-he0miWNq2WxJzsH82jS2Z4MXpnkzn9SH8a79iPXiJkq25QREImucscM4RPasXm8wARp91pyysJMq6aasD45CeA==, - } + resolution: {integrity: sha512-he0miWNq2WxJzsH82jS2Z4MXpnkzn9SH8a79iPXiJkq25QREImucscM4RPasXm8wARp91pyysJMq6aasD45CeA==} cpu: [arm64] os: [darwin] turbo-linux-64@2.1.2: - resolution: - { - integrity: sha512-fKUBcc0rK8Vdqv5a/E3CSpMBLG1bzwv+Q0Q83F8fG2ZfNCNKGbcEYABdonNZkkx141Rj03cZQFCgxu3MVEGU+A==, - } + resolution: {integrity: sha512-fKUBcc0rK8Vdqv5a/E3CSpMBLG1bzwv+Q0Q83F8fG2ZfNCNKGbcEYABdonNZkkx141Rj03cZQFCgxu3MVEGU+A==} cpu: [x64] os: [linux] turbo-linux-arm64@2.1.2: - resolution: - { - integrity: sha512-sV8Bpmm0WiuxgbhxymcC7wSsuxfBBieI98GegSwbr/bs1ANAgzCg93urIrdKdQ3/b31zZxQwcaP4FBF1wx1Qdg==, - } + resolution: {integrity: sha512-sV8Bpmm0WiuxgbhxymcC7wSsuxfBBieI98GegSwbr/bs1ANAgzCg93urIrdKdQ3/b31zZxQwcaP4FBF1wx1Qdg==} cpu: [arm64] os: [linux] turbo-windows-64@2.1.2: - resolution: - { - integrity: sha512-wcmIJZI9ORT9ykHGliFE6kWRQrlH930QGSjSgWC8uFChFFuOyUlvC7ttcxuSvU9VqC7NF4C+GVAcFJQ8lTjN7g==, - } + resolution: {integrity: sha512-wcmIJZI9ORT9ykHGliFE6kWRQrlH930QGSjSgWC8uFChFFuOyUlvC7ttcxuSvU9VqC7NF4C+GVAcFJQ8lTjN7g==} cpu: [x64] os: [win32] turbo-windows-arm64@2.1.2: - resolution: - { - integrity: sha512-zdnXjrhk7YO6CP+Q5wPueEvOCLH4lDa6C4rrwiakcWcPgcQGbVozJlo4uaQ6awo8HLWQEvOwu84RkWTdLAc/Hw==, - } + resolution: {integrity: sha512-zdnXjrhk7YO6CP+Q5wPueEvOCLH4lDa6C4rrwiakcWcPgcQGbVozJlo4uaQ6awo8HLWQEvOwu84RkWTdLAc/Hw==} cpu: [arm64] os: [win32] turbo@2.1.2: - resolution: - { - integrity: sha512-Jb0rbU4iHEVQ18An/YfakdIv9rKnd3zUfSE117EngrfWXFHo3RndVH96US3GsT8VHpwTncPePDBT2t06PaFLrw==, - } + resolution: {integrity: sha512-Jb0rbU4iHEVQ18An/YfakdIv9rKnd3zUfSE117EngrfWXFHo3RndVH96US3GsT8VHpwTncPePDBT2t06PaFLrw==} hasBin: true tweetnacl@0.14.5: - resolution: - { - integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==, - } + resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} tweetnacl@1.0.3: - resolution: - { - integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==, - } + resolution: {integrity: sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==} type-check@0.3.2: - resolution: - { - integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==} + engines: {node: '>= 0.8.0'} 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.0.8: - resolution: - { - integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} type-fest@0.11.0: - resolution: - { - integrity: sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==} + engines: {node: '>=8'} type-fest@0.12.0: - resolution: - { - integrity: sha512-53RyidyjvkGpnWPMF9bQgFtWp+Sl8O2Rp13VavmJgfAP9WWG6q6TkrKU8iyJdnwnfgHI6k2hTlgqH4aSdjoTbg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-53RyidyjvkGpnWPMF9bQgFtWp+Sl8O2Rp13VavmJgfAP9WWG6q6TkrKU8iyJdnwnfgHI6k2hTlgqH4aSdjoTbg==} + engines: {node: '>=10'} type-fest@0.13.1: - resolution: - { - integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==} + engines: {node: '>=10'} 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.18.1: - resolution: - { - integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==} + engines: {node: '>=10'} type-fest@0.20.2: - resolution: - { - integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + 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@0.3.1: - resolution: - { - integrity: sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==} + engines: {node: '>=6'} type-fest@0.6.0: - resolution: - { - integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} type-fest@0.7.1: - resolution: - { - integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==} + engines: {node: '>=8'} type-fest@0.8.1: - resolution: - { - integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} type-fest@1.4.0: - resolution: - { - integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} + 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'} type-fest@3.13.1: - resolution: - { - integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==, - } - engines: { node: ">=14.16" } + resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} + engines: {node: '>=14.16'} type-fest@4.14.0: - resolution: - { - integrity: sha512-on5/Cw89wwqGZQu+yWO0gGMGu8VNxsaW9SB2HE8yJjllEk7IDTwnSN1dUVldYILhYPN5HzD7WAaw2cc/jBfn0Q==, - } - engines: { node: ">=16" } + resolution: {integrity: sha512-on5/Cw89wwqGZQu+yWO0gGMGu8VNxsaW9SB2HE8yJjllEk7IDTwnSN1dUVldYILhYPN5HzD7WAaw2cc/jBfn0Q==} + engines: {node: '>=16'} type-is@1.6.18: - resolution: - { - integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==, - } - engines: { node: ">= 0.6" } + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} + engines: {node: '>= 0.6'} type-tagger@1.0.0: - resolution: - { - integrity: sha512-FIPqqpmDgdaulCnRoKv1/d3U4xVBUrYn42QXWNP3XYmgfPUDuBUsgFOb9ntT0aIe0UsUP+lknpQ5d9Kn36RssA==, - } + resolution: {integrity: sha512-FIPqqpmDgdaulCnRoKv1/d3U4xVBUrYn42QXWNP3XYmgfPUDuBUsgFOb9ntT0aIe0UsUP+lknpQ5d9Kn36RssA==} type@2.7.2: - resolution: - { - integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==, - } + resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==} typed-array-buffer@1.0.2: - resolution: - { - integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} + engines: {node: '>= 0.4'} typed-array-byte-length@1.0.1: - resolution: - { - integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} + engines: {node: '>= 0.4'} typed-array-byte-offset@1.0.2: - resolution: - { - integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} + engines: {node: '>= 0.4'} typed-array-length@1.0.6: - resolution: - { - integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} + engines: {node: '>= 0.4'} typed-emitter@2.1.0: - resolution: - { - integrity: sha512-g/KzbYKbH5C2vPkaXGu8DJlHrGKHLsM25Zg9WuC9pMGfuvT+X25tZQWo5fK1BjBm8+UrVE9LDCvaY0CQk+fXDA==, - } + resolution: {integrity: sha512-g/KzbYKbH5C2vPkaXGu8DJlHrGKHLsM25Zg9WuC9pMGfuvT+X25tZQWo5fK1BjBm8+UrVE9LDCvaY0CQk+fXDA==} typedarray-to-buffer@3.1.5: - resolution: - { - integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==, - } + resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} typedarray-to-buffer@4.0.0: - resolution: - { - integrity: sha512-6dOYeZfS3O9RtRD1caom0sMxgK59b27+IwoNy8RDPsmslSGOyU+mpTamlaIW7aNKi90ZQZ9DFaZL3YRoiSCULQ==, - } + resolution: {integrity: sha512-6dOYeZfS3O9RtRD1caom0sMxgK59b27+IwoNy8RDPsmslSGOyU+mpTamlaIW7aNKi90ZQZ9DFaZL3YRoiSCULQ==} typedarray@0.0.6: - resolution: - { - integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==, - } + resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} typedjson@1.8.0: - resolution: - { - integrity: sha512-taVJVGebQDagEmVc3Cu6vVVLkWLnxqPcTrkVgbpAsI02ZDDrnHy5zvt1JVqXv4/yztBgZAX1oR07+bkiusGJLQ==, - } + resolution: {integrity: sha512-taVJVGebQDagEmVc3Cu6vVVLkWLnxqPcTrkVgbpAsI02ZDDrnHy5zvt1JVqXv4/yztBgZAX1oR07+bkiusGJLQ==} typeforce@1.18.0: - resolution: - { - integrity: sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==, - } + resolution: {integrity: sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g==} typescript@4.9.5: - resolution: - { - integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==, - } - engines: { node: ">=4.2.0" } + resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} + engines: {node: '>=4.2.0'} hasBin: true typescript@5.1.3: - resolution: - { - integrity: sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==, - } - engines: { node: ">=14.17" } + resolution: {integrity: sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==} + engines: {node: '>=14.17'} hasBin: true typescript@5.2.2: - resolution: - { - integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==, - } - engines: { node: ">=14.17" } + resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} + engines: {node: '>=14.17'} hasBin: true typescript@5.4.3: - resolution: - { - integrity: sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==, - } - engines: { node: ">=14.17" } + resolution: {integrity: sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==} + engines: {node: '>=14.17'} hasBin: true typescript@5.4.5: - resolution: - { - integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==, - } - engines: { node: ">=14.17" } + resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} + engines: {node: '>=14.17'} hasBin: true typescript@5.6.2: - resolution: - { - integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==, - } - engines: { node: ">=14.17" } + resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==} + engines: {node: '>=14.17'} hasBin: true typical@4.0.0: - resolution: - { - integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==} + engines: {node: '>=8'} typical@5.2.0: - resolution: - { - integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==} + engines: {node: '>=8'} typical@6.0.1: - resolution: - { - integrity: sha512-+g3NEp7fJLe9DPa1TArHm9QAA7YciZmWnfAqEaFrBihQ7epOv9i99rjtgb6Iz0wh3WuQDjsCTDfgRoGnmHN81A==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-+g3NEp7fJLe9DPa1TArHm9QAA7YciZmWnfAqEaFrBihQ7epOv9i99rjtgb6Iz0wh3WuQDjsCTDfgRoGnmHN81A==} + engines: {node: '>=10'} u2f-api@0.2.7: - resolution: - { - integrity: sha512-fqLNg8vpvLOD5J/z4B6wpPg4Lvowz1nJ9xdHcCzdUPKcFE/qNCceV2gNZxSJd5vhAZemHr/K/hbzVA0zxB5mkg==, - } + resolution: {integrity: sha512-fqLNg8vpvLOD5J/z4B6wpPg4Lvowz1nJ9xdHcCzdUPKcFE/qNCceV2gNZxSJd5vhAZemHr/K/hbzVA0zxB5mkg==} ua-parser-js@1.0.37: - resolution: - { - integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==, - } + resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==} uc.micro@2.1.0: - resolution: - { - integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==, - } + resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} ufo@1.5.3: - resolution: - { - integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==, - } + resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==} uglify-es@3.3.9: - resolution: - { - integrity: sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==, - } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ==} + engines: {node: '>=0.8.0'} deprecated: support for ECMAScript is superseded by `uglify-js` as of v3.13.0 hasBin: true uglify-js@3.17.4: - resolution: - { - integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==, - } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} + engines: {node: '>=0.8.0'} hasBin: true uglify-js@3.19.3: - resolution: - { - integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==, - } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==} + engines: {node: '>=0.8.0'} hasBin: true uint8array-extras@0.3.0: - resolution: - { - integrity: sha512-erJsJwQ0tKdwuqI0359U8ijkFmfiTcq25JvvzRVc1VP+2son1NJRXhxcAKJmAW3ajM8JSGAfsAXye8g4s+znxA==, - } - engines: { node: ">=18" } + resolution: {integrity: sha512-erJsJwQ0tKdwuqI0359U8ijkFmfiTcq25JvvzRVc1VP+2son1NJRXhxcAKJmAW3ajM8JSGAfsAXye8g4s+znxA==} + engines: {node: '>=18'} ultron@1.1.1: - resolution: - { - integrity: sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==, - } + resolution: {integrity: sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og==} unbox-primitive@1.0.2: - resolution: - { - integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, - } + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} unc-path-regex@0.1.2: - resolution: - { - integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} + engines: {node: '>=0.10.0'} uncontrollable@7.2.1: - resolution: - { - integrity: sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==, - } + resolution: {integrity: sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==} peerDependencies: - "@types/react": "*" - react: ">=15.0.0" + '@types/react': '*' + react: '>=15.0.0' peerDependenciesMeta: - "@types/react": + '@types/react': optional: true undefsafe@2.0.5: - resolution: - { - integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==, - } + resolution: {integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==} underscore@1.12.1: - resolution: - { - integrity: sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==, - } + resolution: {integrity: sha512-hEQt0+ZLDVUMhebKxL4x1BTtDY7bavVofhZ9KZ4aI26X9SRaE+Y3m83XUL1UP2jn8ynjndwCCpEHdUG+9pP1Tw==} underscore@1.13.6: - resolution: - { - integrity: sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==, - } + resolution: {integrity: sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==} undici-types@5.26.5: - resolution: - { - integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==, - } + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} undici@5.28.3: - resolution: - { - integrity: sha512-3ItfzbrhDlINjaP0duwnNsKpDQk3acHI3gVJ1z4fmwMK31k5G9OVIAMLSIaP6w4FaGkaAkN6zaQO9LUvZ1t7VA==, - } - engines: { node: ">=14.0" } + resolution: {integrity: sha512-3ItfzbrhDlINjaP0duwnNsKpDQk3acHI3gVJ1z4fmwMK31k5G9OVIAMLSIaP6w4FaGkaAkN6zaQO9LUvZ1t7VA==} + engines: {node: '>=14.0'} undici@6.10.2: - resolution: - { - integrity: sha512-HcVuBy7ACaDejIMdwCzAvO22OsiE6ir6ziTIr9kAE0vB+PheVe29ZvRN8p7FXCO2uZHTjEoUs5bPiFpuc/hwwQ==, - } - engines: { node: ">=18.0" } + resolution: {integrity: sha512-HcVuBy7ACaDejIMdwCzAvO22OsiE6ir6ziTIr9kAE0vB+PheVe29ZvRN8p7FXCO2uZHTjEoUs5bPiFpuc/hwwQ==} + engines: {node: '>=18.0'} undici@6.19.2: - resolution: - { - integrity: sha512-JfjKqIauur3Q6biAtHJ564e3bWa8VvT+7cSiOJHFbX4Erv6CLGDpg8z+Fmg/1OI/47RA+GI2QZaF48SSaLvyBA==, - } - engines: { node: ">=18.17" } + resolution: {integrity: sha512-JfjKqIauur3Q6biAtHJ564e3bWa8VvT+7cSiOJHFbX4Erv6CLGDpg8z+Fmg/1OI/47RA+GI2QZaF48SSaLvyBA==} + engines: {node: '>=18.17'} unfetch@4.2.0: - resolution: - { - integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==, - } + resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==} unherit@1.1.3: - resolution: - { - integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==, - } + resolution: {integrity: sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ==} unicode-canonical-property-names-ecmascript@2.0.0: - resolution: - { - integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==} + 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.1.0: - resolution: - { - integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==} + 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@6.2.0: - resolution: - { - integrity: sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==, - } + resolution: {integrity: sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==} unimported@1.30.0: - resolution: - { - integrity: sha512-4/NKy/a8kEFu6tDbY/CTiaqtIBR1LeI5RWDzfLlKX2ipMfNMbTyEVjxiGCWq8EByI8rvH+Y2+IEaPU8n7U141g==, - } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-4/NKy/a8kEFu6tDbY/CTiaqtIBR1LeI5RWDzfLlKX2ipMfNMbTyEVjxiGCWq8EByI8rvH+Y2+IEaPU8n7U141g==} + engines: {node: '>=14.0.0'} hasBin: true union@0.5.0: - resolution: - { - integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==, - } - engines: { node: ">= 0.8.0" } + resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==} + engines: {node: '>= 0.8.0'} unique-filename@1.1.1: - resolution: - { - integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==, - } + resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} unique-filename@3.0.0: - resolution: - { - integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} unique-slug@2.0.2: - resolution: - { - integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==, - } + resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} unique-slug@4.0.0: - resolution: - { - integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} unique-string@1.0.0: - resolution: - { - integrity: sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-ODgiYu03y5g76A1I9Gt0/chLCzQjvzDy7DsZGsLOE/1MrF6wriEskSncj1+/C58Xk/kPZDppSctDybCwOSaGAg==} + engines: {node: '>=4'} unique-string@2.0.0: - resolution: - { - integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} + engines: {node: '>=8'} unist-builder@3.0.1: - resolution: - { - integrity: sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ==, - } + resolution: {integrity: sha512-gnpOw7DIpCA0vpr6NqdPvTWnlPTApCTRzr+38E6hCWx3rz/cjo83SsKIlS1Z+L5ttScQ2AwutNnb8+tAvpb6qQ==} unist-util-find-after@5.0.0: - resolution: - { - integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==, - } + resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} unist-util-generated@2.0.1: - resolution: - { - integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==, - } + resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==} unist-util-is@3.0.0: - resolution: - { - integrity: sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==, - } + resolution: {integrity: sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==} unist-util-is@4.1.0: - resolution: - { - integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==, - } + resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==} unist-util-is@5.2.1: - resolution: - { - integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==, - } + resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} 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@1.1.2: - resolution: - { - integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==, - } + resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==} unist-util-position@4.0.4: - resolution: - { - integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==, - } + resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==} unist-util-position@5.0.0: - resolution: - { - integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==, - } + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} unist-util-remove-position@1.1.4: - resolution: - { - integrity: sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==, - } + resolution: {integrity: sha512-tLqd653ArxJIPnKII6LMZwH+mb5q+n/GtXQZo6S6csPRs5zB0u79Yw8ouR3wTw8wxvdJFhpP6Y7jorWdCgLO0A==} unist-util-remove-position@4.0.2: - resolution: - { - integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==, - } + resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==} unist-util-remove-position@5.0.0: - resolution: - { - integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==, - } + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} unist-util-remove@4.0.0: - resolution: - { - integrity: sha512-b4gokeGId57UVRX/eVKej5gXqGlc9+trkORhFJpu9raqZkZhU0zm8Doi05+HaiBsMEIJowL+2WtQ5ItjsngPXg==, - } + resolution: {integrity: sha512-b4gokeGId57UVRX/eVKej5gXqGlc9+trkORhFJpu9raqZkZhU0zm8Doi05+HaiBsMEIJowL+2WtQ5ItjsngPXg==} unist-util-stringify-position@1.1.2: - resolution: - { - integrity: sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==, - } + resolution: {integrity: sha512-pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ==} 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@1.1.2: - resolution: - { - integrity: sha512-yvo+MMLjEwdc3RhhPYSximset7rwjMrdt9E41Smmvg25UQIenzrN83cRnF1JMzoMi9zZOQeYXHSDf7p+IQkW3Q==, - } + resolution: {integrity: sha512-yvo+MMLjEwdc3RhhPYSximset7rwjMrdt9E41Smmvg25UQIenzrN83cRnF1JMzoMi9zZOQeYXHSDf7p+IQkW3Q==} unist-util-visit-parents@2.1.2: - resolution: - { - integrity: sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==, - } + resolution: {integrity: sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==} unist-util-visit-parents@3.1.1: - resolution: - { - integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==, - } + resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} unist-util-visit-parents@4.1.1: - resolution: - { - integrity: sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==, - } + resolution: {integrity: sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==} unist-util-visit-parents@5.1.3: - resolution: - { - integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==, - } + resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} unist-util-visit-parents@6.0.1: - resolution: - { - integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==, - } + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} unist-util-visit@1.4.1: - resolution: - { - integrity: sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==, - } + resolution: {integrity: sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==} unist-util-visit@2.0.3: - resolution: - { - integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==, - } + resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} unist-util-visit@3.1.0: - resolution: - { - integrity: sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==, - } + resolution: {integrity: sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==} unist-util-visit@4.1.2: - resolution: - { - integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==, - } + resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} 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-github-app-jwt@1.1.2: - resolution: - { - integrity: sha512-t1iB2FmLFE+yyJY9+3wMx0ejB+MQpEVkH0gQv7dR6FZyltyq+ZZO0uDpbopxhrZ3SLEO4dCEkIujOMldEQ2iOA==, - } + resolution: {integrity: sha512-t1iB2FmLFE+yyJY9+3wMx0ejB+MQpEVkH0gQv7dR6FZyltyq+ZZO0uDpbopxhrZ3SLEO4dCEkIujOMldEQ2iOA==} universal-user-agent@6.0.1: - resolution: - { - integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==, - } + resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==} universalify@0.1.2: - resolution: - { - integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==, - } - engines: { node: ">= 4.0.0" } + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} universalify@0.2.0: - resolution: - { - integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==, - } - engines: { node: ">= 4.0.0" } + resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} + engines: {node: '>= 4.0.0'} universalify@1.0.0: - resolution: - { - integrity: sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==, - } - engines: { node: ">= 10.0.0" } + resolution: {integrity: sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==} + engines: {node: '>= 10.0.0'} universalify@2.0.0: - resolution: - { - integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==, - } - engines: { node: ">= 10.0.0" } + resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} + engines: {node: '>= 10.0.0'} 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'} unorm@1.6.0: - resolution: - { - integrity: sha512-b2/KCUlYZUeA7JFUuRJZPUtr4gZvBh7tavtv4fvk4+KV9pfGiR6CQAQAWl49ZpR3ts2dk4FYkP7EIgDJoiOLDA==, - } - engines: { node: ">= 0.4.0" } + resolution: {integrity: sha512-b2/KCUlYZUeA7JFUuRJZPUtr4gZvBh7tavtv4fvk4+KV9pfGiR6CQAQAWl49ZpR3ts2dk4FYkP7EIgDJoiOLDA==} + engines: {node: '>= 0.4.0'} unpipe@1.0.0: - resolution: - { - integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==, - } - engines: { node: ">= 0.8" } + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} + engines: {node: '>= 0.8'} unplugin@1.10.0: - resolution: - { - integrity: sha512-CuZtvvO8ua2Wl+9q2jEaqH6m3DoQ38N7pvBYQbbaeNlWGvK2l6GHiKi29aIHDPoSxdUzQ7Unevf1/ugil5X6Pg==, - } - engines: { node: ">=14.0.0" } + resolution: {integrity: sha512-CuZtvvO8ua2Wl+9q2jEaqH6m3DoQ38N7pvBYQbbaeNlWGvK2l6GHiKi29aIHDPoSxdUzQ7Unevf1/ugil5X6Pg==} + engines: {node: '>=14.0.0'} unquote@1.1.1: - resolution: - { - integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==, - } + resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} untildify@4.0.0: - resolution: - { - integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} + engines: {node: '>=8'} unused-filename@2.1.0: - resolution: - { - integrity: sha512-BMiNwJbuWmqCpAM1FqxCTD7lXF97AvfQC8Kr/DIeA6VtvhJaMDupZ82+inbjl5yVP44PcxOuCSxye1QMS0wZyg==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-BMiNwJbuWmqCpAM1FqxCTD7lXF97AvfQC8Kr/DIeA6VtvhJaMDupZ82+inbjl5yVP44PcxOuCSxye1QMS0wZyg==} + engines: {node: '>=8'} unzip-crx-3@0.2.0: - resolution: - { - integrity: sha512-0+JiUq/z7faJ6oifVB5nSwt589v1KCduqIJupNVDoWSXZtWDmjDGO3RAEOvwJ07w90aoXoP4enKsR7ecMrJtWQ==, - } + resolution: {integrity: sha512-0+JiUq/z7faJ6oifVB5nSwt589v1KCduqIJupNVDoWSXZtWDmjDGO3RAEOvwJ07w90aoXoP4enKsR7ecMrJtWQ==} unzipper@0.10.14: - resolution: - { - integrity: sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==, - } + resolution: {integrity: sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==} 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.0.13: - resolution: - { - integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==, - } + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} hasBin: true peerDependencies: - browserslist: ">= 4.21.0" + browserslist: '>= 4.21.0' update-check@1.5.3: - resolution: - { - integrity: sha512-6KLU4/dd0Tg/l0xwL+f9V7kEIPSL1vOIbnNnhSLiRDlj4AVG6Ks9Zoc9Jgt9kIgWFPZ/wp2AHgmG7xNf15TJOA==, - } + resolution: {integrity: sha512-6KLU4/dd0Tg/l0xwL+f9V7kEIPSL1vOIbnNnhSLiRDlj4AVG6Ks9Zoc9Jgt9kIgWFPZ/wp2AHgmG7xNf15TJOA==} update-dotenv@1.1.1: - resolution: - { - integrity: sha512-3cIC18In/t0X/yH793c00qqxcKD8jVCgNOPif/fGQkFpYMGecM9YAc+kaAKXuZsM2dE9I9wFI7KvAuNX22SGMQ==, - } + resolution: {integrity: sha512-3cIC18In/t0X/yH793c00qqxcKD8jVCgNOPif/fGQkFpYMGecM9YAc+kaAKXuZsM2dE9I9wFI7KvAuNX22SGMQ==} peerDependencies: - dotenv: "*" + dotenv: '*' uri-js@4.4.1: - resolution: - { - integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, - } + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} urijs@1.19.11: - resolution: - { - integrity: sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ==, - } + resolution: {integrity: sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ==} url-join@4.0.0: - resolution: - { - integrity: sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==, - } + resolution: {integrity: sha512-EGXjXJZhIHiQMK2pQukuFcL303nskqIRzWvPvV5O8miOfwoUb9G+a/Cld60kUyeaybEI94wvVClT10DtfeAExA==} url-join@4.0.1: - resolution: - { - integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==, - } + resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} url-parse-lax@3.0.0: - resolution: - { - integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} + engines: {node: '>=4'} url-parse@1.5.10: - resolution: - { - integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==, - } + resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} url-set-query@1.0.0: - resolution: - { - integrity: sha512-3AChu4NiXquPfeckE5R5cGdiHCMWJx1dwCWOmWIL4KHAziJNOFIYJlpGFeKDvwLPHovZRCxK3cYlwzqI9Vp+Gg==, - } + resolution: {integrity: sha512-3AChu4NiXquPfeckE5R5cGdiHCMWJx1dwCWOmWIL4KHAziJNOFIYJlpGFeKDvwLPHovZRCxK3cYlwzqI9Vp+Gg==} url@0.11.3: - resolution: - { - integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==, - } + resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} usb@2.9.0: - resolution: - { - integrity: sha512-G0I/fPgfHUzWH8xo2KkDxTTFruUWfppgSFJ+bQxz/kVY2x15EQ/XDB7dqD1G432G4gBG4jYQuF3U7j/orSs5nw==, - } - engines: { node: ">=10.20.0 <11.x || >=12.17.0 <13.0 || >=14.0.0" } + resolution: {integrity: sha512-G0I/fPgfHUzWH8xo2KkDxTTFruUWfppgSFJ+bQxz/kVY2x15EQ/XDB7dqD1G432G4gBG4jYQuF3U7j/orSs5nw==} + engines: {node: '>=10.20.0 <11.x || >=12.17.0 <13.0 || >=14.0.0'} use-callback-ref@1.3.2: - resolution: - { - integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==} + 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 use-isomorphic-layout-effect@1.1.2: - resolution: - { - integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==, - } + resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} peerDependencies: - "@types/react": "*" + '@types/react': '*' react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true use-latest-callback@0.1.9: - resolution: - { - integrity: sha512-CL/29uS74AwreI/f2oz2hLTW7ZqVeV5+gxFeGudzQrgkCytrHw33G4KbnQOrRlAEzzAFXi7dDLMC9zhWcVpzmw==, - } + resolution: {integrity: sha512-CL/29uS74AwreI/f2oz2hLTW7ZqVeV5+gxFeGudzQrgkCytrHw33G4KbnQOrRlAEzzAFXi7dDLMC9zhWcVpzmw==} peerDependencies: - react: ">=16.8" + react: '>=16.8' use-resize-observer@9.1.0: - resolution: - { - integrity: sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==, - } + resolution: {integrity: sha512-R25VqO9Wb3asSD4eqtcxk8sJalvIOYBqS8MNZlpDSQ4l4xMQxC/J7Id9HoTqPq8FwULIn0PVW+OAqF2dyYbjow==} peerDependencies: react: 16.8.0 - 18 react-dom: 16.8.0 - 18 use-sidecar@1.1.2: - resolution: - { - integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} + engines: {node: '>=10'} peerDependencies: - "@types/react": ^16.9.0 || ^17.0.0 || ^18.0.0 + '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 peerDependenciesMeta: - "@types/react": + '@types/react': optional: true use-subscription@1.8.0: - resolution: - { - integrity: sha512-LISuG0/TmmoDoCRmV5XAqYkd3UCBNM0ML3gGBndze65WITcsExCD3DTvXXTLyNcOC0heFQZzluW88bN/oC1DQQ==, - } + resolution: {integrity: sha512-LISuG0/TmmoDoCRmV5XAqYkd3UCBNM0ML3gGBndze65WITcsExCD3DTvXXTLyNcOC0heFQZzluW88bN/oC1DQQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 use-sync-external-store@1.2.0: - resolution: - { - integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==, - } + resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 usehooks-ts@2.16.0: - resolution: - { - integrity: sha512-bez95WqYujxp6hFdM/CpRDiVPirZPxlMzOH2QB8yopoKQMXpscyZoxOjpEdaxvV+CAWUDSM62cWnqHE0E/MZ7w==, - } - engines: { node: ">=16.15.0" } + resolution: {integrity: sha512-bez95WqYujxp6hFdM/CpRDiVPirZPxlMzOH2QB8yopoKQMXpscyZoxOjpEdaxvV+CAWUDSM62cWnqHE0E/MZ7w==} + engines: {node: '>=16.15.0'} peerDependencies: react: ^16.8.0 || ^17 || ^18 utf-8-validate@5.0.10: - resolution: - { - integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==, - } - engines: { node: ">=6.14.2" } + resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==} + engines: {node: '>=6.14.2'} utf-8-validate@6.0.3: - resolution: - { - integrity: sha512-uIuGf9TWQ/y+0Lp+KGZCMuJWc3N9BHA+l/UmHd/oUHwJJDeysyTRxNQVkbzsIWfGFbRe3OcgML/i0mvVRPOyDA==, - } - engines: { node: ">=6.14.2" } + resolution: {integrity: sha512-uIuGf9TWQ/y+0Lp+KGZCMuJWc3N9BHA+l/UmHd/oUHwJJDeysyTRxNQVkbzsIWfGFbRe3OcgML/i0mvVRPOyDA==} + engines: {node: '>=6.14.2'} utf8-byte-length@1.0.5: - resolution: - { - integrity: sha512-Xn0w3MtiQ6zoz2vFyUVruaCL53O/DwUvkEeOvj+uulMm0BkUGYWmBYVyElqZaSLhY6ZD0ulfU3aBra2aVT4xfA==, - } + resolution: {integrity: sha512-Xn0w3MtiQ6zoz2vFyUVruaCL53O/DwUvkEeOvj+uulMm0BkUGYWmBYVyElqZaSLhY6ZD0ulfU3aBra2aVT4xfA==} utf8@3.0.0: - resolution: - { - integrity: sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==, - } + resolution: {integrity: sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==} util-deprecate@1.0.2: - resolution: - { - integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, - } + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} util.promisify@1.0.1: - resolution: - { - integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==, - } + resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} util@0.10.4: - resolution: - { - integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==, - } + resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} util@0.12.5: - resolution: - { - integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==, - } + resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} utila@0.4.0: - resolution: - { - integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==, - } + resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} utility-types@3.11.0: - resolution: - { - integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==, - } - engines: { node: ">= 4" } + resolution: {integrity: sha512-6Z7Ma2aVEWisaL6TvBCy7P8rm2LQoPv6dJ7ecIaIixHcwfbJ0x7mWdbcwlIM5IGQxPZSFYeqRCqlOOeKoJYMkw==} + engines: {node: '>= 4'} utils-merge@1.0.1: - resolution: - { - integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==, - } - engines: { node: ">= 0.4.0" } + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + engines: {node: '>= 0.4.0'} uuid@2.0.1: - resolution: - { - integrity: sha512-nWg9+Oa3qD2CQzHIP4qKUqwNfzKn8P0LtFhotaCTFchsV7ZfDhAybeip/HZVeMIpZi9JgY1E3nUlwaCmZT1sEg==, - } + resolution: {integrity: sha512-nWg9+Oa3qD2CQzHIP4qKUqwNfzKn8P0LtFhotaCTFchsV7ZfDhAybeip/HZVeMIpZi9JgY1E3nUlwaCmZT1sEg==} deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. uuid@3.3.2: - resolution: - { - integrity: sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==, - } + resolution: {integrity: sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==} deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. hasBin: true uuid@3.4.0: - resolution: - { - integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==, - } + resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. hasBin: true uuid@7.0.3: - resolution: - { - integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==, - } + resolution: {integrity: sha512-DPSke0pXhTZgoF/d+WSt2QaKMCFSfx7QegxEWT+JOuHF5aWrKEn0G+ztjuJg/gG8/ItK+rbPCD/yNv8yyih6Cg==} hasBin: true uuid@8.3.2: - resolution: - { - integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==, - } + resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} hasBin: true uuid@9.0.1: - resolution: - { - integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==, - } + resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==} hasBin: true uvu@0.5.6: - resolution: - { - integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==} + engines: {node: '>=8'} hasBin: true v8-compile-cache-lib@3.0.1: - resolution: - { - integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==, - } + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} v8-compile-cache@2.4.0: - resolution: - { - integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==, - } + resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} v8-to-istanbul@8.1.1: - resolution: - { - integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==, - } - engines: { node: ">=10.12.0" } + resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==} + engines: {node: '>=10.12.0'} v8-to-istanbul@9.2.0: - resolution: - { - integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==, - } - engines: { node: ">=10.12.0" } + resolution: {integrity: sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==} + engines: {node: '>=10.12.0'} valid-url@1.0.9: - resolution: - { - integrity: sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==, - } + resolution: {integrity: sha512-QQDsV8OnSf5Uc30CKSwG9lnhMPe6exHtTXLRYX8uMwKENy640pU+2BgBL0LRbDh/eYRahNCS7aewCx0wf3NYVA==} validate-npm-package-license@3.0.4: - resolution: - { - integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==, - } + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} validate-npm-package-name@3.0.0: - resolution: - { - integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==, - } + resolution: {integrity: sha512-M6w37eVCMMouJ9V/sdPGnC5H4uDr73/+xdq0FBLO3TFFX1+7wiUY6Es328NN+y43tmY+doUdN9g9J21vqB7iLw==} validator@13.11.0: - resolution: - { - integrity: sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==, - } - engines: { node: ">= 0.10" } + resolution: {integrity: sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==} + engines: {node: '>= 0.10'} value-equal@1.0.1: - resolution: - { - integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==, - } + resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==} varint@5.0.2: - resolution: - { - integrity: sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow==, - } + resolution: {integrity: sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow==} varuint-bitcoin@1.1.2: - resolution: - { - integrity: sha512-4EVb+w4rx+YfVM32HQX42AbbT7/1f5zwAYhIujKXKk8NQK+JfRVl3pqT3hjNn/L+RstigmGGKVwHA/P0wgITZw==, - } + resolution: {integrity: sha512-4EVb+w4rx+YfVM32HQX42AbbT7/1f5zwAYhIujKXKk8NQK+JfRVl3pqT3hjNn/L+RstigmGGKVwHA/P0wgITZw==} 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'} verror@1.10.0: - resolution: - { - integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==, - } - engines: { "0": node >=0.6.0 } + resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} + engines: {'0': node >=0.6.0} verror@1.10.1: - resolution: - { - integrity: sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg==, - } - engines: { node: ">=0.6.0" } + resolution: {integrity: sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg==} + engines: {node: '>=0.6.0'} vfile-location@2.0.6: - resolution: - { - integrity: sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==, - } + resolution: {integrity: sha512-sSFdyCP3G6Ka0CEmN83A2YCMKIieHx0EDaj5IDP4g1pa5ZJ4FJDvpO0WODLxo4LUX4oe52gmSCK7Jw4SBghqxA==} vfile-location@4.1.0: - resolution: - { - integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==, - } + resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==} vfile-location@5.0.2: - resolution: - { - integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==, - } + resolution: {integrity: sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==} vfile-matter@3.0.1: - resolution: - { - integrity: sha512-CAAIDwnh6ZdtrqAuxdElUqQRQDQgbbIrYtDYI8gCjXS1qQ+1XdLoK8FIZWxJwn0/I+BkSSZpar3SOgjemQz4fg==, - } + resolution: {integrity: sha512-CAAIDwnh6ZdtrqAuxdElUqQRQDQgbbIrYtDYI8gCjXS1qQ+1XdLoK8FIZWxJwn0/I+BkSSZpar3SOgjemQz4fg==} vfile-message@1.1.1: - resolution: - { - integrity: sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==, - } + resolution: {integrity: sha512-1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA==} 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-reporter@7.0.5: - resolution: - { - integrity: sha512-NdWWXkv6gcd7AZMvDomlQbK3MqFWL1RlGzMn++/O2TI+68+nqxCPTvLugdOtfSzXmjh+xUyhp07HhlrbJjT+mw==, - } + resolution: {integrity: sha512-NdWWXkv6gcd7AZMvDomlQbK3MqFWL1RlGzMn++/O2TI+68+nqxCPTvLugdOtfSzXmjh+xUyhp07HhlrbJjT+mw==} vfile-sort@3.0.1: - resolution: - { - integrity: sha512-1os1733XY6y0D5x0ugqSeaVJm9lYgj0j5qdcZQFyxlZOSy1jYarL77lLyb5gK4Wqr1d5OxmuyflSO3zKyFnTFw==, - } + resolution: {integrity: sha512-1os1733XY6y0D5x0ugqSeaVJm9lYgj0j5qdcZQFyxlZOSy1jYarL77lLyb5gK4Wqr1d5OxmuyflSO3zKyFnTFw==} vfile-statistics@2.0.1: - resolution: - { - integrity: sha512-W6dkECZmP32EG/l+dp2jCLdYzmnDBIw6jwiLZSER81oR5AHRcVqL+k3Z+pfH1R73le6ayDkJRMk0sutj1bMVeg==, - } + resolution: {integrity: sha512-W6dkECZmP32EG/l+dp2jCLdYzmnDBIw6jwiLZSER81oR5AHRcVqL+k3Z+pfH1R73le6ayDkJRMk0sutj1bMVeg==} vfile@2.3.0: - resolution: - { - integrity: sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==, - } + resolution: {integrity: sha512-ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w==} vfile@5.3.7: - resolution: - { - integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==, - } + resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} vfile@6.0.1: - resolution: - { - integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==, - } + resolution: {integrity: sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==} vite-plugin-electron@0.4.9: - resolution: - { - integrity: sha512-LYKBd2/hncUqe99AG7D4PDzdU7qP0R7W1ijvO4IHTKwARhlWii2tsPa2dr+6Yi/+NBazlKK2OBSzc8lRNl+ctQ==, - } + resolution: {integrity: sha512-LYKBd2/hncUqe99AG7D4PDzdU7qP0R7W1ijvO4IHTKwARhlWii2tsPa2dr+6Yi/+NBazlKK2OBSzc8lRNl+ctQ==} vite-plugin-optimizer@1.4.3: - resolution: - { - integrity: sha512-m1AFakemDxSNIwxsTYykBFuQxkKJLI8207RNAg33N5km2aE29cP+Jt41xbfdrALOU2VKYWGFlBz64GMbIser4A==, - } + resolution: {integrity: sha512-m1AFakemDxSNIwxsTYykBFuQxkKJLI8207RNAg33N5km2aE29cP+Jt41xbfdrALOU2VKYWGFlBz64GMbIser4A==} vite@4.5.3: - resolution: - { - integrity: sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==, - } - engines: { node: ^14.18.0 || >=16.0.0 } + resolution: {integrity: sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==} + engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: - "@types/node": ">= 14" - less: "*" + '@types/node': '>= 14' + less: '*' lightningcss: ^1.21.0 - sass: "*" - stylus: "*" - sugarss: "*" + sass: '*' + stylus: '*' + sugarss: '*' terser: ^5.4.0 peerDependenciesMeta: - "@types/node": + '@types/node': optional: true less: optional: true @@ -45356,86 +29729,50 @@ packages: optional: true vlq@0.2.3: - resolution: - { - integrity: sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow==, - } + resolution: {integrity: sha512-DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow==} vlq@1.0.1: - resolution: - { - integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==, - } + resolution: {integrity: sha512-gQpnTgkubC6hQgdIcRdYGDSDc+SaujOdyesZQMv6JlfQee/9Mp0Qhnys6WxDWvQnL5WZdT7o2Ul187aSt0Rq+w==} void-elements@3.1.0: - resolution: - { - integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} + engines: {node: '>=0.10.0'} vscode-json-languageservice@4.2.1: - resolution: - { - integrity: sha512-xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA==, - } + resolution: {integrity: sha512-xGmv9QIWs2H8obGbWg+sIPI/3/pFgj/5OWBhNzs00BkYQ9UaB2F6JJaGB/2/YOZJ3BvLXQTC4Q7muqU25QgAhA==} vscode-languageserver-textdocument@1.0.11: - resolution: - { - integrity: sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==, - } + resolution: {integrity: sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==} vscode-languageserver-types@3.17.5: - resolution: - { - integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==, - } + resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==} vscode-nls@5.2.0: - resolution: - { - integrity: sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==, - } + resolution: {integrity: sha512-RAaHx7B14ZU04EU31pT+rKz2/zSl7xMsfIZuo8pd+KZO6PXtQmpevpq3vxvWNcrGbdmhM/rr5Uw5Mz+NBfhVng==} vscode-oniguruma@1.7.0: - resolution: - { - integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==, - } + resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==} vscode-textmate@8.0.0: - resolution: - { - integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==, - } + resolution: {integrity: sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==} vscode-uri@3.0.8: - resolution: - { - integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==, - } + resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} vue-hot-reload-api@2.3.4: - resolution: - { - integrity: sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==, - } + resolution: {integrity: sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==} vue-loader@15.11.1: - resolution: - { - integrity: sha512-0iw4VchYLePqJfJu9s62ACWUXeSqM30SQqlIftbYWM3C+jpPcEHKSPUZBLjSF9au4HTHQ/naF6OGnO3Q/qGR3Q==, - } - peerDependencies: - "@vue/compiler-sfc": ^3.0.8 - cache-loader: "*" - css-loader: "*" - prettier: "*" - vue-template-compiler: "*" + resolution: {integrity: sha512-0iw4VchYLePqJfJu9s62ACWUXeSqM30SQqlIftbYWM3C+jpPcEHKSPUZBLjSF9au4HTHQ/naF6OGnO3Q/qGR3Q==} + peerDependencies: + '@vue/compiler-sfc': ^3.0.8 + cache-loader: '*' + css-loader: '*' + prettier: '*' + vue-template-compiler: '*' webpack: ^3.0.0 || ^4.1.0 || ^5.0.0-0 peerDependenciesMeta: - "@vue/compiler-sfc": + '@vue/compiler-sfc': optional: true cache-loader: optional: true @@ -45445,496 +29782,289 @@ packages: optional: true vue-loader@17.4.2: - resolution: - { - integrity: sha512-yTKOA4R/VN4jqjw4y5HrynFL8AK0Z3/Jt7eOJXEitsm0GMRHDBjCfCiuTiLP7OESvsZYo2pATCWhDqxC5ZrM6w==, - } + resolution: {integrity: sha512-yTKOA4R/VN4jqjw4y5HrynFL8AK0Z3/Jt7eOJXEitsm0GMRHDBjCfCiuTiLP7OESvsZYo2pATCWhDqxC5ZrM6w==} peerDependencies: - "@vue/compiler-sfc": "*" - vue: "*" + '@vue/compiler-sfc': '*' + vue: '*' webpack: ^4.1.0 || ^5.0.0-0 peerDependenciesMeta: - "@vue/compiler-sfc": + '@vue/compiler-sfc': optional: true vue: optional: true vue-style-loader@4.1.3: - resolution: - { - integrity: sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==, - } + resolution: {integrity: sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==} vue-template-compiler@2.7.16: - resolution: - { - integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==, - } + resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==} vue-template-es2015-compiler@1.9.1: - resolution: - { - integrity: sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==, - } + resolution: {integrity: sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==} vue@2.7.16: - resolution: - { - integrity: sha512-4gCtFXaAA3zYZdTp5s4Hl2sozuySsgz4jy1EnpBHNfpMa9dK1ZCG7viqBPCwXtmgc8nHqUsAu3G4gtmXkkY3Sw==, - } + resolution: {integrity: sha512-4gCtFXaAA3zYZdTp5s4Hl2sozuySsgz4jy1EnpBHNfpMa9dK1ZCG7viqBPCwXtmgc8nHqUsAu3G4gtmXkkY3Sw==} deprecated: Vue 2 has reached EOL and is no longer actively maintained. See https://v2.vuejs.org/eol/ for more details. w3c-hr-time@1.0.2: - resolution: - { - integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==, - } + resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} deprecated: Use your platform's native performance.now() and performance.timeOrigin. w3c-keyname@2.2.8: - resolution: - { - integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==, - } + resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==} w3c-xmlserializer@2.0.0: - resolution: - { - integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} + engines: {node: '>=10'} w3c-xmlserializer@3.0.0: - resolution: - { - integrity: sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==} + engines: {node: '>=12'} w3c-xmlserializer@4.0.0: - resolution: - { - integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==, - } - engines: { node: ">=14" } + resolution: {integrity: sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==} + engines: {node: '>=14'} walk-back@4.0.0: - resolution: - { - integrity: sha512-kudCA8PXVQfrqv2mFTG72vDBRi8BKWxGgFLwPpzHcpZnSwZk93WMwUDVcLHWNsnm+Y0AC4Vb6MUNRgaHfyV2DQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-kudCA8PXVQfrqv2mFTG72vDBRi8BKWxGgFLwPpzHcpZnSwZk93WMwUDVcLHWNsnm+Y0AC4Vb6MUNRgaHfyV2DQ==} + engines: {node: '>=8.0.0'} walker@1.0.8: - resolution: - { - integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==, - } + resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==} warn-once@0.1.1: - resolution: - { - integrity: sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==, - } + resolution: {integrity: sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==} watchpack@2.4.1: - resolution: - { - integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==} + engines: {node: '>=10.13.0'} wbuf@1.7.3: - resolution: - { - integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==, - } + resolution: {integrity: sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==} wcwidth@1.0.1: - resolution: - { - integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==, - } + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} web-namespaces@2.0.1: - resolution: - { - integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==, - } + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} web-streams-polyfill@3.3.3: - resolution: - { - integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==} + engines: {node: '>= 8'} web-worker@1.3.0: - resolution: - { - integrity: sha512-BSR9wyRsy/KOValMgd5kMyr3JzpdeoR9KVId8u5GVlTTAtNChlsE4yTxeY7zMdNSyOmoKBv8NH2qeRY9Tg+IaA==, - } + resolution: {integrity: sha512-BSR9wyRsy/KOValMgd5kMyr3JzpdeoR9KVId8u5GVlTTAtNChlsE4yTxeY7zMdNSyOmoKBv8NH2qeRY9Tg+IaA==} web3-bzz@1.3.6: - resolution: - { - integrity: sha512-ibHdx1wkseujFejrtY7ZyC0QxQ4ATXjzcNUpaLrvM6AEae8prUiyT/OloG9FWDgFD2CPLwzKwfSQezYQlANNlw==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-ibHdx1wkseujFejrtY7ZyC0QxQ4ATXjzcNUpaLrvM6AEae8prUiyT/OloG9FWDgFD2CPLwzKwfSQezYQlANNlw==} + engines: {node: '>=8.0.0'} web3-bzz@1.5.2: - resolution: - { - integrity: sha512-W/sPCdA+XQ9duUYKHAwf/g69cbbV8gTCRsa1MpZwU7spXECiyJ2EvD/QzAZ+UpJk3GELXFF/fUByeZ3VRQKF2g==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-W/sPCdA+XQ9duUYKHAwf/g69cbbV8gTCRsa1MpZwU7spXECiyJ2EvD/QzAZ+UpJk3GELXFF/fUByeZ3VRQKF2g==} + engines: {node: '>=8.0.0'} web3-core-helpers@1.3.6: - resolution: - { - integrity: sha512-nhtjA2ZbkppjlxTSwG0Ttu6FcPkVu1rCN5IFAOVpF/L0SEt+jy+O5l90+cjDq0jAYvlBwUwnbh2mR9hwDEJCNA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-nhtjA2ZbkppjlxTSwG0Ttu6FcPkVu1rCN5IFAOVpF/L0SEt+jy+O5l90+cjDq0jAYvlBwUwnbh2mR9hwDEJCNA==} + engines: {node: '>=8.0.0'} web3-core-helpers@1.5.2: - resolution: - { - integrity: sha512-U7LJoeUdQ3aY9t5gU7t/1XpcApsWm+4AcW5qKl/44ZxD44w0Dmsq1c5zJm3GuLr/a9MwQfXK4lpmvxVQWHHQRg==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-U7LJoeUdQ3aY9t5gU7t/1XpcApsWm+4AcW5qKl/44ZxD44w0Dmsq1c5zJm3GuLr/a9MwQfXK4lpmvxVQWHHQRg==} + engines: {node: '>=8.0.0'} web3-core-method@1.3.6: - resolution: - { - integrity: sha512-RyegqVGxn0cyYW5yzAwkPlsSEynkdPiegd7RxgB4ak1eKk2Cv1q2x4C7D2sZjeeCEF+q6fOkVmo2OZNqS2iQxg==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-RyegqVGxn0cyYW5yzAwkPlsSEynkdPiegd7RxgB4ak1eKk2Cv1q2x4C7D2sZjeeCEF+q6fOkVmo2OZNqS2iQxg==} + engines: {node: '>=8.0.0'} web3-core-method@1.5.2: - resolution: - { - integrity: sha512-/mC5t9UjjJoQmJJqO5nWK41YHo+tMzFaT7Tp7jDCQsBkinE68KsUJkt0jzygpheW84Zra0DVp6q19gf96+cugg==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-/mC5t9UjjJoQmJJqO5nWK41YHo+tMzFaT7Tp7jDCQsBkinE68KsUJkt0jzygpheW84Zra0DVp6q19gf96+cugg==} + engines: {node: '>=8.0.0'} web3-core-promievent@1.3.6: - resolution: - { - integrity: sha512-Z+QzfyYDTXD5wJmZO5wwnRO8bAAHEItT1XNSPVb4J1CToV/I/SbF7CuF8Uzh2jns0Cm1109o666H7StFFvzVKw==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-Z+QzfyYDTXD5wJmZO5wwnRO8bAAHEItT1XNSPVb4J1CToV/I/SbF7CuF8Uzh2jns0Cm1109o666H7StFFvzVKw==} + engines: {node: '>=8.0.0'} web3-core-promievent@1.5.2: - resolution: - { - integrity: sha512-5DacbJXe98ozSor7JlkTNCy6G8945VunRRkPxMk98rUrg60ECVEM/vuefk1atACzjQsKx6tmLZuHxbJQ64TQeQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-5DacbJXe98ozSor7JlkTNCy6G8945VunRRkPxMk98rUrg60ECVEM/vuefk1atACzjQsKx6tmLZuHxbJQ64TQeQ==} + engines: {node: '>=8.0.0'} web3-core-requestmanager@1.3.6: - resolution: - { - integrity: sha512-2rIaeuqeo7QN1Eex7aXP0ZqeteJEPWXYFS/M3r3LXMiV8R4STQBKE+//dnHJXoo2ctzEB5cgd+7NaJM8S3gPyA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-2rIaeuqeo7QN1Eex7aXP0ZqeteJEPWXYFS/M3r3LXMiV8R4STQBKE+//dnHJXoo2ctzEB5cgd+7NaJM8S3gPyA==} + engines: {node: '>=8.0.0'} web3-core-requestmanager@1.5.2: - resolution: - { - integrity: sha512-oRVW9OrAsXN2JIZt68OEg1Mb1A9a/L3JAGMv15zLEFEnJEGw0KQsGK1ET2kvZBzvpFd5G0EVkYCnx7WDe4HSNw==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-oRVW9OrAsXN2JIZt68OEg1Mb1A9a/L3JAGMv15zLEFEnJEGw0KQsGK1ET2kvZBzvpFd5G0EVkYCnx7WDe4HSNw==} + engines: {node: '>=8.0.0'} web3-core-subscriptions@1.3.6: - resolution: - { - integrity: sha512-wi9Z9X5X75OKvxAg42GGIf81ttbNR2TxzkAsp1g+nnp5K8mBwgZvXrIsDuj7Z7gx72Y45mWJADCWjk/2vqNu8g==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-wi9Z9X5X75OKvxAg42GGIf81ttbNR2TxzkAsp1g+nnp5K8mBwgZvXrIsDuj7Z7gx72Y45mWJADCWjk/2vqNu8g==} + engines: {node: '>=8.0.0'} web3-core-subscriptions@1.5.2: - resolution: - { - integrity: sha512-hapI4rKFk22yurtIv0BYvkraHsM7epA4iI8Np+HuH6P9DD0zj/llaps6TXLM9HyacLBRwmOLZmr+pHBsPopUnQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-hapI4rKFk22yurtIv0BYvkraHsM7epA4iI8Np+HuH6P9DD0zj/llaps6TXLM9HyacLBRwmOLZmr+pHBsPopUnQ==} + engines: {node: '>=8.0.0'} web3-core@1.3.6: - resolution: - { - integrity: sha512-gkLDM4T1Sc0T+HZIwxrNrwPg0IfWI0oABSglP2X5ZbBAYVUeEATA0o92LWV8BeF+okvKXLK1Fek/p6axwM/h3Q==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-gkLDM4T1Sc0T+HZIwxrNrwPg0IfWI0oABSglP2X5ZbBAYVUeEATA0o92LWV8BeF+okvKXLK1Fek/p6axwM/h3Q==} + engines: {node: '>=8.0.0'} web3-core@1.5.2: - resolution: - { - integrity: sha512-sebMpQbg3kbh3vHUbHrlKGKOxDWqjgt8KatmTBsTAWj/HwWYVDzeX+2Q84+swNYsm2DrTBVFlqTErFUwPBvyaA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-sebMpQbg3kbh3vHUbHrlKGKOxDWqjgt8KatmTBsTAWj/HwWYVDzeX+2Q84+swNYsm2DrTBVFlqTErFUwPBvyaA==} + engines: {node: '>=8.0.0'} web3-eth-abi@1.3.6: - resolution: - { - integrity: sha512-Or5cRnZu6WzgScpmbkvC6bfNxR26hqiKK4i8sMPFeTUABQcb/FU3pBj7huBLYbp9dH+P5W79D2MqwbWwjj9DoQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-Or5cRnZu6WzgScpmbkvC6bfNxR26hqiKK4i8sMPFeTUABQcb/FU3pBj7huBLYbp9dH+P5W79D2MqwbWwjj9DoQ==} + engines: {node: '>=8.0.0'} web3-eth-abi@1.5.2: - resolution: - { - integrity: sha512-P3bJbDR5wib4kWGfVeBKBVi27T+AiHy4EJxYM6SMNbpm3DboLDdisu9YBd6INMs8rzxgnprBbGmmyn4jKIDKAA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-P3bJbDR5wib4kWGfVeBKBVi27T+AiHy4EJxYM6SMNbpm3DboLDdisu9YBd6INMs8rzxgnprBbGmmyn4jKIDKAA==} + engines: {node: '>=8.0.0'} web3-eth-accounts@1.3.6: - resolution: - { - integrity: sha512-Ilr0hG6ONbCdSlVKffasCmNwftD5HsNpwyQASevocIQwHdTlvlwO0tb3oGYuajbKOaDzNTwXfz25bttAEoFCGA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-Ilr0hG6ONbCdSlVKffasCmNwftD5HsNpwyQASevocIQwHdTlvlwO0tb3oGYuajbKOaDzNTwXfz25bttAEoFCGA==} + engines: {node: '>=8.0.0'} web3-eth-accounts@1.5.2: - resolution: - { - integrity: sha512-F8mtzxgEhxfLc66vPi0Gqd6mpscvvk7Ua575bsJ1p9J2X/VtuKgDgpWcU4e4LKeROQ+ouCpAG9//0j9jQuij3A==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-F8mtzxgEhxfLc66vPi0Gqd6mpscvvk7Ua575bsJ1p9J2X/VtuKgDgpWcU4e4LKeROQ+ouCpAG9//0j9jQuij3A==} + engines: {node: '>=8.0.0'} web3-eth-contract@1.3.6: - resolution: - { - integrity: sha512-8gDaRrLF2HCg+YEZN1ov0zN35vmtPnGf3h1DxmJQK5Wm2lRMLomz9rsWsuvig3UJMHqZAQKD7tOl3ocJocQsmA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-8gDaRrLF2HCg+YEZN1ov0zN35vmtPnGf3h1DxmJQK5Wm2lRMLomz9rsWsuvig3UJMHqZAQKD7tOl3ocJocQsmA==} + engines: {node: '>=8.0.0'} web3-eth-contract@1.5.2: - resolution: - { - integrity: sha512-4B8X/IPFxZCTmtENpdWXtyw5fskf2muyc3Jm5brBQRb4H3lVh1/ZyQy7vOIkdphyaXu4m8hBLHzeyKkd37mOUg==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-4B8X/IPFxZCTmtENpdWXtyw5fskf2muyc3Jm5brBQRb4H3lVh1/ZyQy7vOIkdphyaXu4m8hBLHzeyKkd37mOUg==} + engines: {node: '>=8.0.0'} web3-eth-ens@1.3.6: - resolution: - { - integrity: sha512-n27HNj7lpSkRxTgSx+Zo7cmKAgyg2ElFilaFlUu/X2CNH23lXfcPm2bWssivH9z0ndhg0OyR4AYFZqPaqDHkJA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-n27HNj7lpSkRxTgSx+Zo7cmKAgyg2ElFilaFlUu/X2CNH23lXfcPm2bWssivH9z0ndhg0OyR4AYFZqPaqDHkJA==} + engines: {node: '>=8.0.0'} web3-eth-ens@1.5.2: - resolution: - { - integrity: sha512-/UrLL42ZOCYge+BpFBdzG8ICugaRS4f6X7PxJKO+zAt+TwNgBpjuWfW/ZYNcuqJun/ZyfcTuj03TXqA1RlNhZQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-/UrLL42ZOCYge+BpFBdzG8ICugaRS4f6X7PxJKO+zAt+TwNgBpjuWfW/ZYNcuqJun/ZyfcTuj03TXqA1RlNhZQ==} + engines: {node: '>=8.0.0'} web3-eth-iban@1.3.6: - resolution: - { - integrity: sha512-nfMQaaLA/zsg5W4Oy/EJQbs8rSs1vBAX6b/35xzjYoutXlpHMQadujDx2RerTKhSHqFXSJeQAfE+2f6mdhYkRQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-nfMQaaLA/zsg5W4Oy/EJQbs8rSs1vBAX6b/35xzjYoutXlpHMQadujDx2RerTKhSHqFXSJeQAfE+2f6mdhYkRQ==} + engines: {node: '>=8.0.0'} web3-eth-iban@1.5.2: - resolution: - { - integrity: sha512-C04YDXuSG/aDwOHSX+HySBGb0KraiAVt+/l1Mw7y/fCUrKC/K0yYzMYqY/uYOcvLtepBPsC4ZfUYWUBZ2PO8Vg==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-C04YDXuSG/aDwOHSX+HySBGb0KraiAVt+/l1Mw7y/fCUrKC/K0yYzMYqY/uYOcvLtepBPsC4ZfUYWUBZ2PO8Vg==} + engines: {node: '>=8.0.0'} web3-eth-personal@1.3.6: - resolution: - { - integrity: sha512-pOHU0+/h1RFRYoh1ehYBehRbcKWP4OSzd4F7mDljhHngv6W8ewMHrAN8O1ol9uysN2MuCdRE19qkRg5eNgvzFQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-pOHU0+/h1RFRYoh1ehYBehRbcKWP4OSzd4F7mDljhHngv6W8ewMHrAN8O1ol9uysN2MuCdRE19qkRg5eNgvzFQ==} + engines: {node: '>=8.0.0'} web3-eth-personal@1.5.2: - resolution: - { - integrity: sha512-nH5N2GiVC0C5XeMEKU16PeFP3Hb3hkPvlR6Tf9WQ+pE+jw1c8eaXBO1CJQLr15ikhUF3s94ICyHcfjzkDsmRbA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-nH5N2GiVC0C5XeMEKU16PeFP3Hb3hkPvlR6Tf9WQ+pE+jw1c8eaXBO1CJQLr15ikhUF3s94ICyHcfjzkDsmRbA==} + engines: {node: '>=8.0.0'} web3-eth@1.3.6: - resolution: - { - integrity: sha512-9+rnywRRpyX3C4hfsAQXPQh6vHh9XzQkgLxo3gyeXfbhbShUoq2gFVuy42vsRs//6JlsKdyZS7Z3hHPHz2wreA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-9+rnywRRpyX3C4hfsAQXPQh6vHh9XzQkgLxo3gyeXfbhbShUoq2gFVuy42vsRs//6JlsKdyZS7Z3hHPHz2wreA==} + engines: {node: '>=8.0.0'} web3-eth@1.5.2: - resolution: - { - integrity: sha512-DwWQ6TCOUqvYyo7T20S7HpQDPveNHNqOn2Q2F3E8ZFyEjmqT4XsGiwvm08kB/VgQ4e/ANyq/i8PPFSYMT8JKHg==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-DwWQ6TCOUqvYyo7T20S7HpQDPveNHNqOn2Q2F3E8ZFyEjmqT4XsGiwvm08kB/VgQ4e/ANyq/i8PPFSYMT8JKHg==} + engines: {node: '>=8.0.0'} web3-net@1.3.6: - resolution: - { - integrity: sha512-KhzU3wMQY/YYjyMiQzbaLPt2kut88Ncx2iqjy3nw28vRux3gVX0WOCk9EL/KVJBiAA/fK7VklTXvgy9dZnnipw==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-KhzU3wMQY/YYjyMiQzbaLPt2kut88Ncx2iqjy3nw28vRux3gVX0WOCk9EL/KVJBiAA/fK7VklTXvgy9dZnnipw==} + engines: {node: '>=8.0.0'} web3-net@1.5.2: - resolution: - { - integrity: sha512-VEc9c+jfoERhbJIxnx0VPlQDot8Lm4JW/tOWFU+ekHgIiu2zFKj5YxhURIth7RAbsaRsqCb79aE+M0eI8maxVQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-VEc9c+jfoERhbJIxnx0VPlQDot8Lm4JW/tOWFU+ekHgIiu2zFKj5YxhURIth7RAbsaRsqCb79aE+M0eI8maxVQ==} + engines: {node: '>=8.0.0'} web3-providers-http@1.3.6: - resolution: - { - integrity: sha512-OQkT32O1A06dISIdazpGLveZcOXhEo5cEX6QyiSQkiPk/cjzDrXMw4SKZOGQbbS1+0Vjizm1Hrp7O8Vp2D1M5Q==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-OQkT32O1A06dISIdazpGLveZcOXhEo5cEX6QyiSQkiPk/cjzDrXMw4SKZOGQbbS1+0Vjizm1Hrp7O8Vp2D1M5Q==} + engines: {node: '>=8.0.0'} web3-providers-http@1.5.2: - resolution: - { - integrity: sha512-dUNFJc9IMYDLZnkoQX3H4ZjvHjGO6VRVCqrBrdh84wPX/0da9dOA7DwIWnG0Gv3n9ybWwu5JHQxK4MNQ444lyA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-dUNFJc9IMYDLZnkoQX3H4ZjvHjGO6VRVCqrBrdh84wPX/0da9dOA7DwIWnG0Gv3n9ybWwu5JHQxK4MNQ444lyA==} + engines: {node: '>=8.0.0'} web3-providers-ipc@1.3.6: - resolution: - { - integrity: sha512-+TVsSd2sSVvVgHG4s6FXwwYPPT91boKKcRuEFXqEfAbUC5t52XOgmyc2LNiD9LzPhed65FbV4LqICpeYGUvSwA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-+TVsSd2sSVvVgHG4s6FXwwYPPT91boKKcRuEFXqEfAbUC5t52XOgmyc2LNiD9LzPhed65FbV4LqICpeYGUvSwA==} + engines: {node: '>=8.0.0'} web3-providers-ipc@1.5.2: - resolution: - { - integrity: sha512-SJC4Sivt4g9LHKlRy7cs1jkJgp7bjrQeUndE6BKs0zNALKguxu6QYnzbmuHCTFW85GfMDjhvi24jyyZHMnBNXQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-SJC4Sivt4g9LHKlRy7cs1jkJgp7bjrQeUndE6BKs0zNALKguxu6QYnzbmuHCTFW85GfMDjhvi24jyyZHMnBNXQ==} + engines: {node: '>=8.0.0'} web3-providers-ws@1.3.6: - resolution: - { - integrity: sha512-bk7MnJf5or0Re2zKyhR3L3CjGululLCHXx4vlbc/drnaTARUVvi559OI5uLytc/1k5HKUUyENAxLvetz2G1dnQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-bk7MnJf5or0Re2zKyhR3L3CjGululLCHXx4vlbc/drnaTARUVvi559OI5uLytc/1k5HKUUyENAxLvetz2G1dnQ==} + engines: {node: '>=8.0.0'} web3-providers-ws@1.5.2: - resolution: - { - integrity: sha512-xy9RGlyO8MbJDuKv2vAMDkg+en+OvXG0CGTCM2BTl6l1vIdHpCa+6A/9KV2rK8aU9OBZ7/Pf+Y19517kHVl9RA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-xy9RGlyO8MbJDuKv2vAMDkg+en+OvXG0CGTCM2BTl6l1vIdHpCa+6A/9KV2rK8aU9OBZ7/Pf+Y19517kHVl9RA==} + engines: {node: '>=8.0.0'} web3-shh@1.3.6: - resolution: - { - integrity: sha512-9zRo415O0iBslxBnmu9OzYjNErzLnzOsy+IOvSpIreLYbbAw0XkDWxv3SfcpKnTIWIACBR4AYMIxmmyi5iB3jw==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-9zRo415O0iBslxBnmu9OzYjNErzLnzOsy+IOvSpIreLYbbAw0XkDWxv3SfcpKnTIWIACBR4AYMIxmmyi5iB3jw==} + engines: {node: '>=8.0.0'} web3-shh@1.5.2: - resolution: - { - integrity: sha512-wOxOcYt4Sa0AHAI8gG7RulCwVuVjSRS/M/AbFsea3XfJdN6sU13/syY7OdZNjNYuKjYTzxKYrd3dU/K2iqffVw==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-wOxOcYt4Sa0AHAI8gG7RulCwVuVjSRS/M/AbFsea3XfJdN6sU13/syY7OdZNjNYuKjYTzxKYrd3dU/K2iqffVw==} + engines: {node: '>=8.0.0'} web3-utils@1.3.6: - resolution: - { - integrity: sha512-hHatFaQpkQgjGVER17gNx8u1qMyaXFZtM0y0XLGH1bzsjMPlkMPLRcYOrZ00rOPfTEuYFOdrpGOqZXVmGrMZRg==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-hHatFaQpkQgjGVER17gNx8u1qMyaXFZtM0y0XLGH1bzsjMPlkMPLRcYOrZ00rOPfTEuYFOdrpGOqZXVmGrMZRg==} + engines: {node: '>=8.0.0'} web3-utils@1.5.2: - resolution: - { - integrity: sha512-quTtTeQJHYSxAwIBOCGEcQtqdVcFWX6mCFNoqnp+mRbq+Hxbs8CGgO/6oqfBx4OvxIOfCpgJWYVHswRXnbEu9Q==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-quTtTeQJHYSxAwIBOCGEcQtqdVcFWX6mCFNoqnp+mRbq+Hxbs8CGgO/6oqfBx4OvxIOfCpgJWYVHswRXnbEu9Q==} + engines: {node: '>=8.0.0'} web3@1.3.6: - resolution: - { - integrity: sha512-jEpPhnL6GDteifdVh7ulzlPrtVQeA30V9vnki9liYlUvLV82ZM7BNOQJiuzlDePuE+jZETZSP/0G/JlUVt6pOA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-jEpPhnL6GDteifdVh7ulzlPrtVQeA30V9vnki9liYlUvLV82ZM7BNOQJiuzlDePuE+jZETZSP/0G/JlUVt6pOA==} + engines: {node: '>=8.0.0'} web3@1.5.2: - resolution: - { - integrity: sha512-aapKLdO8t7Cos6tZLeeQUtCJvTiPMlLcHsHHDLSBZ/VaJEucSTxzun32M8sp3BmF4waDEmhY+iyUM1BKvtAcVQ==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-aapKLdO8t7Cos6tZLeeQUtCJvTiPMlLcHsHHDLSBZ/VaJEucSTxzun32M8sp3BmF4waDEmhY+iyUM1BKvtAcVQ==} + engines: {node: '>=8.0.0'} 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==} webidl-conversions@5.0.0: - resolution: - { - integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} + engines: {node: '>=8'} webidl-conversions@6.1.0: - resolution: - { - integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==, - } - engines: { node: ">=10.4" } + resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} + engines: {node: '>=10.4'} webidl-conversions@7.0.0: - resolution: - { - integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} webpack-bundle-analyzer@4.10.2: - resolution: - { - integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==, - } - engines: { node: ">= 10.13.0" } + resolution: {integrity: sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==} + engines: {node: '>= 10.13.0'} hasBin: true webpack-chain@6.5.1: - resolution: - { - integrity: sha512-7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA==, - } - engines: { node: ">=8" } + resolution: {integrity: sha512-7doO/SRtLu8q5WM0s7vPKPWX580qhi0/yBHkOxNkv50f6qB76Zy9o2wRTrrPULqYTvQlVHuvbA8v+G5ayuUDsA==} + engines: {node: '>=8'} deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. webpack-cli@4.10.0: - resolution: - { - integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==} + engines: {node: '>=10.13.0'} hasBin: true peerDependencies: - "@webpack-cli/generators": "*" - "@webpack-cli/migrate": "*" + '@webpack-cli/generators': '*' + '@webpack-cli/migrate': '*' webpack: 4.x.x || 5.x.x - webpack-bundle-analyzer: "*" - webpack-dev-server: "*" + webpack-bundle-analyzer: '*' + webpack-dev-server: '*' peerDependenciesMeta: - "@webpack-cli/generators": + '@webpack-cli/generators': optional: true - "@webpack-cli/migrate": + '@webpack-cli/migrate': optional: true webpack-bundle-analyzer: optional: true @@ -45942,20 +30072,14 @@ packages: optional: true webpack-dev-middleware@5.3.4: - resolution: - { - integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} + engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 webpack-dev-middleware@6.1.2: - resolution: - { - integrity: sha512-Wu+EHmX326YPYUpQLKmKbTyZZJIB8/n6R09pTmB03kJmnMsVPTo9COzHZFr01txwaCAuZvfBJE4ZCHRcKs5JaQ==, - } - engines: { node: ">= 14.15.0" } + resolution: {integrity: sha512-Wu+EHmX326YPYUpQLKmKbTyZZJIB8/n6R09pTmB03kJmnMsVPTo9COzHZFr01txwaCAuZvfBJE4ZCHRcKs5JaQ==} + engines: {node: '>= 14.15.0'} peerDependencies: webpack: ^5.0.0 peerDependenciesMeta: @@ -45963,15 +30087,12 @@ packages: optional: true webpack-dev-server@4.15.2: - resolution: - { - integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==, - } - engines: { node: ">= 12.13.0" } + resolution: {integrity: sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==} + engines: {node: '>= 12.13.0'} hasBin: true peerDependencies: webpack: ^4.37.0 || ^5.0.0 - webpack-cli: "*" + webpack-cli: '*' peerDependenciesMeta: webpack: optional: true @@ -45979,492 +30100,276 @@ packages: optional: true webpack-hot-middleware@2.26.1: - resolution: - { - integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==, - } + resolution: {integrity: sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==} webpack-manifest-plugin@4.1.1: - resolution: - { - integrity: sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==, - } - engines: { node: ">=12.22.0" } + resolution: {integrity: sha512-YXUAwxtfKIJIKkhg03MKuiFAD72PlrqCiwdwO4VEXdRO5V0ORCNwaOwAZawPZalCbmH9kBDmXnNeQOw+BIEiow==} + engines: {node: '>=12.22.0'} peerDependencies: webpack: ^4.44.2 || ^5.47.0 webpack-merge@5.10.0: - resolution: - { - integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} + engines: {node: '>=10.0.0'} webpack-sources@1.4.3: - resolution: - { - integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==, - } + resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==} webpack-sources@2.3.1: - resolution: - { - integrity: sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-y9EI9AO42JjEcrTJFOYmVywVZdKVUfOvDUPsJea5GIr1JOEGFVqwlY2K098fFoIjOkDzHn2AjRvM8dsBZu+gCA==} + engines: {node: '>=10.13.0'} webpack-sources@3.2.3: - resolution: - { - integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} + engines: {node: '>=10.13.0'} webpack-virtual-modules@0.4.6: - resolution: - { - integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==, - } + resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==} webpack-virtual-modules@0.5.0: - resolution: - { - integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==, - } + resolution: {integrity: sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==} webpack-virtual-modules@0.6.1: - resolution: - { - integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==, - } + resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==} webpack@5.91.0: - resolution: - { - integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==} + engines: {node: '>=10.13.0'} hasBin: true peerDependencies: - webpack-cli: "*" + webpack-cli: '*' peerDependenciesMeta: webpack-cli: optional: true webpack@5.94.0: - resolution: - { - integrity: sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==, - } - engines: { node: ">=10.13.0" } + resolution: {integrity: sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==} + engines: {node: '>=10.13.0'} hasBin: true peerDependencies: - webpack-cli: "*" + webpack-cli: '*' peerDependenciesMeta: webpack-cli: optional: true webpod@0.0.2: - resolution: - { - integrity: sha512-cSwwQIeg8v4i3p4ajHhwgR7N6VyxAf+KYSSsY6Pd3aETE+xEU4vbitz7qQkB0I321xnhDdgtxuiSfk5r/FVtjg==, - } + resolution: {integrity: sha512-cSwwQIeg8v4i3p4ajHhwgR7N6VyxAf+KYSSsY6Pd3aETE+xEU4vbitz7qQkB0I321xnhDdgtxuiSfk5r/FVtjg==} hasBin: true websocket-driver@0.7.4: - resolution: - { - integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==, - } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==} + engines: {node: '>=0.8.0'} websocket-extensions@0.1.4: - resolution: - { - integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==, - } - engines: { node: ">=0.8.0" } + resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==} + engines: {node: '>=0.8.0'} websocket@1.0.34: - resolution: - { - integrity: sha512-PRDso2sGwF6kM75QykIesBijKSVceR6jL2G8NGYyq2XrItNC2P5/qL5XeR056GhA+Ly7JMFvJb9I312mJfmqnQ==, - } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-PRDso2sGwF6kM75QykIesBijKSVceR6jL2G8NGYyq2XrItNC2P5/qL5XeR056GhA+Ly7JMFvJb9I312mJfmqnQ==} + engines: {node: '>=4.0.0'} whatwg-encoding@1.0.5: - resolution: - { - integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==, - } + resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} whatwg-encoding@2.0.0: - resolution: - { - integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} whatwg-fetch@3.6.20: - resolution: - { - integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==, - } + resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} whatwg-mimetype@2.3.0: - resolution: - { - integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==, - } + resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} whatwg-mimetype@3.0.0: - resolution: - { - integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} + engines: {node: '>=12'} whatwg-url-without-unicode@8.0.0-3: - resolution: - { - integrity: sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-HoKuzZrUlgpz35YO27XgD28uh/WJH4B0+3ttFqRo//lmq+9T/mIOJ6kqmINI9HpUpz1imRC/nR/lxKpJiv0uig==} + engines: {node: '>=10'} whatwg-url@10.0.0: - resolution: - { - integrity: sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-CLxxCmdUby142H5FZzn4D8ikO1cmypvXVQktsgosNy4a4BHrDHeciBBGZhb0bNoR5/MltoCatso+vFjjGx8t0w==} + engines: {node: '>=12'} whatwg-url@11.0.0: - resolution: - { - integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} + engines: {node: '>=12'} 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==} whatwg-url@8.7.0: - resolution: - { - integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} + engines: {node: '>=10'} whatwg-url@9.1.0: - resolution: - { - integrity: sha512-CQ0UcrPHyomtlOCot1TL77WyMIm/bCwrJ2D6AOKGwEczU9EpyoqAokfqrf/MioU9kHcMsmJZcg1egXix2KYEsA==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-CQ0UcrPHyomtlOCot1TL77WyMIm/bCwrJ2D6AOKGwEczU9EpyoqAokfqrf/MioU9kHcMsmJZcg1egXix2KYEsA==} + engines: {node: '>=12'} when-exit@2.1.2: - resolution: - { - integrity: sha512-u9J+toaf3CCxCAzM/484qNAxQE75rFdVgiFEEV8Xps2gzYhf0tx73s1WXDQhkwV17E3MxRMz40m7Ekd2/121Lg==, - } + resolution: {integrity: sha512-u9J+toaf3CCxCAzM/484qNAxQE75rFdVgiFEEV8Xps2gzYhf0tx73s1WXDQhkwV17E3MxRMz40m7Ekd2/121Lg==} which-boxed-primitive@1.0.2: - resolution: - { - integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, - } + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} which-builtin-type@1.1.3: - resolution: - { - integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} + 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-pm@2.2.0: - resolution: - { - integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==, - } - engines: { node: ">=8.15" } + resolution: {integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==} + engines: {node: '>=8.15'} which-typed-array@1.1.15: - resolution: - { - integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==, - } - engines: { node: ">= 0.4" } + resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} + engines: {node: '>= 0.4'} which@1.3.1: - resolution: - { - integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==, - } + resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} hasBin: true which@2.0.2: - resolution: - { - integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, - } - engines: { node: ">= 8" } + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} hasBin: true which@3.0.1: - resolution: - { - integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} hasBin: true wif@2.0.6: - resolution: - { - integrity: sha512-HIanZn1zmduSF+BQhkE+YXIbEiH0xPr1012QbFEGB0xsKqJii0/SqJjyn8dFv6y36kOznMgMB+LGcbZTJ1xACQ==, - } + resolution: {integrity: sha512-HIanZn1zmduSF+BQhkE+YXIbEiH0xPr1012QbFEGB0xsKqJii0/SqJjyn8dFv6y36kOznMgMB+LGcbZTJ1xACQ==} wildcard@2.0.1: - resolution: - { - integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==, - } + resolution: {integrity: sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==} winston-transport@4.7.0: - resolution: - { - integrity: sha512-ajBj65K5I7denzer2IYW6+2bNIVqLGDHqDw3Ow8Ohh+vdW+rv4MZ6eiDvHoKhfJFZ2auyN8byXieDDJ96ViONg==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-ajBj65K5I7denzer2IYW6+2bNIVqLGDHqDw3Ow8Ohh+vdW+rv4MZ6eiDvHoKhfJFZ2auyN8byXieDDJ96ViONg==} + engines: {node: '>= 12.0.0'} winston@3.13.0: - resolution: - { - integrity: sha512-rwidmA1w3SE4j0E5MuIufFhyJPBDG7Nu71RkZor1p2+qHvJSZ9GYDA81AyleQcZbh/+V6HjeBdfnTZJm9rSeQQ==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-rwidmA1w3SE4j0E5MuIufFhyJPBDG7Nu71RkZor1p2+qHvJSZ9GYDA81AyleQcZbh/+V6HjeBdfnTZJm9rSeQQ==} + engines: {node: '>= 12.0.0'} wonka@4.0.15: - resolution: - { - integrity: sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==, - } + resolution: {integrity: sha512-U0IUQHKXXn6PFo9nqsHphVCE5m3IntqZNB9Jjn7EB1lrR7YTDY3YWgFvEvwniTzXSvOH/XMzAZaIfJF/LvHYXg==} word-wrap@1.2.5: - resolution: - { - integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==, - } - engines: { node: ">=0.10.0" } + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} wordwrap@1.0.0: - resolution: - { - integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==, - } + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} wordwrapjs@4.0.1: - resolution: - { - integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==, - } - engines: { node: ">=8.0.0" } + resolution: {integrity: sha512-kKlNACbvHrkpIw6oPeYDSmdCTu2hdMHoyXLTcUKala++lx5Y+wjJ/e474Jqv5abnVmwxw08DiTuHmw69lJGksA==} + engines: {node: '>=8.0.0'} workbox-background-sync@6.6.0: - resolution: - { - integrity: sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==, - } + resolution: {integrity: sha512-jkf4ZdgOJxC9u2vztxLuPT/UjlH7m/nWRQ/MgGL0v8BJHoZdVGJd18Kck+a0e55wGXdqyHO+4IQTk0685g4MUw==} workbox-broadcast-update@6.6.0: - resolution: - { - integrity: sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==, - } + resolution: {integrity: sha512-nm+v6QmrIFaB/yokJmQ/93qIJ7n72NICxIwQwe5xsZiV2aI93MGGyEyzOzDPVz5THEr5rC3FJSsO3346cId64Q==} workbox-build@6.6.0: - resolution: - { - integrity: sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-Tjf+gBwOTuGyZwMz2Nk/B13Fuyeo0Q84W++bebbVsfr9iLkDSo6j6PST8tET9HYA58mlRXwlMGpyWO8ETJiXdQ==} + engines: {node: '>=10.0.0'} workbox-cacheable-response@6.6.0: - resolution: - { - integrity: sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==, - } + resolution: {integrity: sha512-JfhJUSQDwsF1Xv3EV1vWzSsCOZn4mQ38bWEBR3LdvOxSPgB65gAM6cS2CX8rkkKHRgiLrN7Wxoyu+TuH67kHrw==} deprecated: workbox-background-sync@6.6.0 workbox-core@6.6.0: - resolution: - { - integrity: sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==, - } + resolution: {integrity: sha512-GDtFRF7Yg3DD859PMbPAYPeJyg5gJYXuBQAC+wyrWuuXgpfoOrIQIvFRZnQ7+czTIQjIr1DhLEGFzZanAT/3bQ==} workbox-expiration@6.6.0: - resolution: - { - integrity: sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==, - } + resolution: {integrity: sha512-baplYXcDHbe8vAo7GYvyAmlS4f6998Jff513L4XvlzAOxcl8F620O91guoJ5EOf5qeXG4cGdNZHkkVAPouFCpw==} workbox-google-analytics@6.6.0: - resolution: - { - integrity: sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==, - } + resolution: {integrity: sha512-p4DJa6OldXWd6M9zRl0H6vB9lkrmqYFkRQ2xEiNdBFp9U0LhsGO7hsBscVEyH9H2/3eZZt8c97NB2FD9U2NJ+Q==} deprecated: It is not compatible with newer versions of GA starting with v4, as long as you are using GAv3 it should be ok, but the package is not longer being maintained workbox-navigation-preload@6.6.0: - resolution: - { - integrity: sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==, - } + resolution: {integrity: sha512-utNEWG+uOfXdaZmvhshrh7KzhDu/1iMHyQOV6Aqup8Mm78D286ugu5k9MFD9SzBT5TcwgwSORVvInaXWbvKz9Q==} workbox-precaching@6.6.0: - resolution: - { - integrity: sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==, - } + resolution: {integrity: sha512-eYu/7MqtRZN1IDttl/UQcSZFkHP7dnvr/X3Vn6Iw6OsPMruQHiVjjomDFCNtd8k2RdjLs0xiz9nq+t3YVBcWPw==} workbox-range-requests@6.6.0: - resolution: - { - integrity: sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==, - } + resolution: {integrity: sha512-V3aICz5fLGq5DpSYEU8LxeXvsT//mRWzKrfBOIxzIdQnV/Wj7R+LyJVTczi4CQ4NwKhAaBVaSujI1cEjXW+hTw==} workbox-recipes@6.6.0: - resolution: - { - integrity: sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==, - } + resolution: {integrity: sha512-TFi3kTgYw73t5tg73yPVqQC8QQjxJSeqjXRO4ouE/CeypmP2O/xqmB/ZFBBQazLTPxILUQ0b8aeh0IuxVn9a6A==} workbox-routing@6.6.0: - resolution: - { - integrity: sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==, - } + resolution: {integrity: sha512-x8gdN7VDBiLC03izAZRfU+WKUXJnbqt6PG9Uh0XuPRzJPpZGLKce/FkOX95dWHRpOHWLEq8RXzjW0O+POSkKvw==} workbox-strategies@6.6.0: - resolution: - { - integrity: sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==, - } + resolution: {integrity: sha512-eC07XGuINAKUWDnZeIPdRdVja4JQtTuc35TZ8SwMb1ztjp7Ddq2CJ4yqLvWzFWGlYI7CG/YGqaETntTxBGdKgQ==} workbox-streams@6.6.0: - resolution: - { - integrity: sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==, - } + resolution: {integrity: sha512-rfMJLVvwuED09CnH1RnIep7L9+mj4ufkTyDPVaXPKlhi9+0czCu+SJggWCIFbPpJaAZmp2iyVGLqS3RUmY3fxg==} workbox-sw@6.6.0: - resolution: - { - integrity: sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==, - } + resolution: {integrity: sha512-R2IkwDokbtHUE4Kus8pKO5+VkPHD2oqTgl+XJwh4zbF1HyjAbgNmK/FneZHVU7p03XUt9ICfuGDYISWG9qV/CQ==} workbox-webpack-plugin@6.6.0: - resolution: - { - integrity: sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-xNZIZHalboZU66Wa7x1YkjIqEy1gTR+zPM+kjrYJzqN7iurYZBctBLISyScjhkJKYuRrZUP0iqViZTh8rS0+3A==} + engines: {node: '>=10.0.0'} peerDependencies: webpack: ^4.4.0 || ^5.9.0 workbox-window@6.6.0: - resolution: - { - integrity: sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==, - } + resolution: {integrity: sha512-L4N9+vka17d16geaJXXRjENLFldvkWy7JyGxElRD0JvBxvFEd8LOhr+uXCcar/NzAmIBRv9EZ+M+Qr4mOoBITw==} wrap-ansi@3.0.1: - resolution: - { - integrity: sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==, - } - engines: { node: ">=4" } + resolution: {integrity: sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ==} + engines: {node: '>=4'} 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==} write-file-atomic@2.4.3: - resolution: - { - integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==, - } + resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==} write-file-atomic@3.0.3: - resolution: - { - integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==, - } + resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} write-file-atomic@4.0.2: - resolution: - { - integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==, - } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==} + engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} write-file-atomic@5.0.1: - resolution: - { - integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==, - } - engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } + resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} ws@3.3.3: - resolution: - { - integrity: sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==, - } + resolution: {integrity: sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA==} peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 @@ -46475,10 +30380,7 @@ packages: optional: true ws@6.2.3: - resolution: - { - integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==, - } + resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==} peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 @@ -46489,11 +30391,8 @@ packages: optional: true ws@7.5.10: - resolution: - { - integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==, - } - engines: { node: ">=8.3.0" } + resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==} + engines: {node: '>=8.3.0'} peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 @@ -46504,14 +30403,11 @@ packages: optional: true ws@8.17.1: - resolution: - { - integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==} + 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 @@ -46519,14 +30415,11 @@ 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 @@ -46534,11 +30427,8 @@ packages: optional: true ws@8.5.0: - resolution: - { - integrity: sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==} + engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ^5.0.2 @@ -46549,1463 +30439,1308 @@ packages: optional: true x-is-string@0.1.0: - resolution: - { - integrity: sha512-GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w==, - } + resolution: {integrity: sha512-GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w==} xcode@3.0.1: - resolution: - { - integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==, - } - engines: { node: ">=10.0.0" } + resolution: {integrity: sha512-kCz5k7J7XbJtjABOvkc5lJmkiDh8VhjVCGNiqdKCscmVpdVUpEAyXv1xmCLkQJ5dsHqx3IPO4XW+NTDhU/fatA==} + engines: {node: '>=10.0.0'} xhr-request-promise@0.1.3: - resolution: - { - integrity: sha512-YUBytBsuwgitWtdRzXDDkWAXzhdGB8bYm0sSzMPZT7Z2MBjMSTHFsyCT1yCRATY+XC69DUrQraRAEgcoCRaIPg==, - } + resolution: {integrity: sha512-YUBytBsuwgitWtdRzXDDkWAXzhdGB8bYm0sSzMPZT7Z2MBjMSTHFsyCT1yCRATY+XC69DUrQraRAEgcoCRaIPg==} xhr-request@1.1.0: - resolution: - { - integrity: sha512-Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA==, - } + resolution: {integrity: sha512-Y7qzEaR3FDtL3fP30k9wO/e+FBnBByZeybKOhASsGP30NIkRAAkKD/sCnLvgEfAIEC1rcmK7YG8f4oEnIrrWzA==} xhr2-cookies@1.1.0: - resolution: - { - integrity: sha512-hjXUA6q+jl/bd8ADHcVfFsSPIf+tyLIjuO9TwJC9WI6JP2zKcS7C+p56I9kCLLsaCiNT035iYvEUUzdEFj/8+g==, - } + resolution: {integrity: sha512-hjXUA6q+jl/bd8ADHcVfFsSPIf+tyLIjuO9TwJC9WI6JP2zKcS7C+p56I9kCLLsaCiNT035iYvEUUzdEFj/8+g==} xhr@2.6.0: - resolution: - { - integrity: sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==, - } + resolution: {integrity: sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==} xml-name-validator@3.0.0: - resolution: - { - integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==, - } + resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} xml-name-validator@4.0.0: - resolution: - { - integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} xml2js@0.4.23: - resolution: - { - integrity: sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==, - } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==} + engines: {node: '>=4.0.0'} xml2js@0.5.0: - resolution: - { - integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==, - } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==} + engines: {node: '>=4.0.0'} xml2js@0.6.0: - resolution: - { - integrity: sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==, - } - engines: { node: ">=4.0.0" } + resolution: {integrity: sha512-eLTh0kA8uHceqesPqSE+VvO1CDDJWMwlQfB6LuN6T8w6MaDJ8Txm8P7s5cHD0miF0V+GGTZrDQfxPZQVsur33w==} + engines: {node: '>=4.0.0'} xmlbuilder@11.0.1: - resolution: - { - integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==, - } - engines: { node: ">=4.0" } + resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==} + engines: {node: '>=4.0'} xmlbuilder@14.0.0: - resolution: - { - integrity: sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg==, - } - engines: { node: ">=8.0" } + resolution: {integrity: sha512-ts+B2rSe4fIckR6iquDjsKbQFK2NlUk6iG5nf14mDEyldgoc2nEKZ3jZWMPTxGQwVgToSjt6VGIho1H8/fNFTg==} + engines: {node: '>=8.0'} xmlbuilder@15.1.1: - resolution: - { - integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==, - } - engines: { node: ">=8.0" } + resolution: {integrity: sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==} + engines: {node: '>=8.0'} xmlchars@2.2.0: - resolution: - { - integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==, - } + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} xmlcreate@2.0.4: - resolution: - { - integrity: sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==, - } + resolution: {integrity: sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==} xmlhttprequest@1.8.0: - resolution: - { - integrity: sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==, - } - engines: { node: ">=0.4.0" } + resolution: {integrity: sha512-58Im/U0mlVBLM38NdZjHyhuMtCqa61469k2YP/AaPbvCoV9aQGUpbJBj1QRm2ytRiVQBD/fsw7L2bJGDVQswBA==} + engines: {node: '>=0.4.0'} xstate@4.38.3: - resolution: - { - integrity: sha512-SH7nAaaPQx57dx6qvfcIgqKRXIh4L0A1iYEqim4s1u7c9VoCgzZc+63FY90AKU4ZzOC2cfJzTnpO4zK7fCUzzw==, - } + resolution: {integrity: sha512-SH7nAaaPQx57dx6qvfcIgqKRXIh4L0A1iYEqim4s1u7c9VoCgzZc+63FY90AKU4ZzOC2cfJzTnpO4zK7fCUzzw==} xstream@11.14.0: - resolution: - { - integrity: sha512-1bLb+kKKtKPbgTK6i/BaoAn03g47PpFstlbe1BA+y3pNS/LfvcaghS5BFf9+EE1J+KwSQsEpfJvFN5GqFtiNmw==, - } + resolution: {integrity: sha512-1bLb+kKKtKPbgTK6i/BaoAn03g47PpFstlbe1BA+y3pNS/LfvcaghS5BFf9+EE1J+KwSQsEpfJvFN5GqFtiNmw==} xtend@2.0.6: - resolution: - { - integrity: sha512-fOZg4ECOlrMl+A6Msr7EIFcON1L26mb4NY5rurSkOex/TWhazOrg6eXD/B0XkuiYcYhQDWLXzQxLMVJ7LXwokg==, - } - engines: { node: ">=0.4" } + resolution: {integrity: sha512-fOZg4ECOlrMl+A6Msr7EIFcON1L26mb4NY5rurSkOex/TWhazOrg6eXD/B0XkuiYcYhQDWLXzQxLMVJ7LXwokg==} + engines: {node: '>=0.4'} xtend@2.2.0: - resolution: - { - integrity: sha512-SLt5uylT+4aoXxXuwtQp5ZnMMzhDb1Xkg4pEqc00WUJCQifPfV9Ub1VrNhp9kXkrjZD2I2Hl8WnjP37jzZLPZw==, - } - engines: { node: ">=0.4" } + resolution: {integrity: sha512-SLt5uylT+4aoXxXuwtQp5ZnMMzhDb1Xkg4pEqc00WUJCQifPfV9Ub1VrNhp9kXkrjZD2I2Hl8WnjP37jzZLPZw==} + engines: {node: '>=0.4'} xtend@3.0.0: - resolution: - { - integrity: sha512-sp/sT9OALMjRW1fKDlPeuSZlDQpkqReA0pyJukniWbTGoEKefHxhGJynE3PNhUMlcM8qWIjPwecwCw4LArS5Eg==, - } - engines: { node: ">=0.4" } + resolution: {integrity: sha512-sp/sT9OALMjRW1fKDlPeuSZlDQpkqReA0pyJukniWbTGoEKefHxhGJynE3PNhUMlcM8qWIjPwecwCw4LArS5Eg==} + engines: {node: '>=0.4'} xtend@4.0.2: - resolution: - { - integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==, - } - engines: { node: ">=0.4" } + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} + engines: {node: '>=0.4'} 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'} yaeti@0.0.6: - resolution: - { - integrity: sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==, - } - engines: { node: ">=0.10.32" } + resolution: {integrity: sha512-MvQa//+KcZCUkBTIC9blM+CU9J2GzuTytsOUwf2lidtvkx/6gnEp1QvJv34t9vdjhFmha/mUiNDbN0D0mJWdug==} + engines: {node: '>=0.10.32'} yaku@0.16.7: - resolution: - { - integrity: sha512-Syu3IB3rZvKvYk7yTiyl1bo/jiEFaaStrgv1V2TIJTqYPStSMQVO8EQjg/z+DRzLq/4LIIharNT3iH1hylEIRw==, - } + resolution: {integrity: sha512-Syu3IB3rZvKvYk7yTiyl1bo/jiEFaaStrgv1V2TIJTqYPStSMQVO8EQjg/z+DRzLq/4LIIharNT3iH1hylEIRw==} yallist@2.1.2: - resolution: - { - integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==, - } + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} yallist@3.1.1: - resolution: - { - integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, - } + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} yallist@4.0.0: - resolution: - { - integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, - } + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} yaml@1.10.2: - resolution: - { - integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==, - } - engines: { node: ">= 6" } + resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} + engines: {node: '>= 6'} yaml@2.3.1: - resolution: - { - integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==, - } - engines: { node: ">= 14" } + resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==} + engines: {node: '>= 14'} yaml@2.4.1: - resolution: - { - integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==, - } - engines: { node: ">= 14" } + resolution: {integrity: sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==} + 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@20.2.9: - resolution: - { - integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==} + engines: {node: '>=10'} 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-unparser@2.0.0: - resolution: - { - integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==} + engines: {node: '>=10'} 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@16.2.0: - resolution: - { - integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==, - } - engines: { node: ">=10" } + resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==} + engines: {node: '>=10'} yargs@17.7.2: - resolution: - { - integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==, - } - engines: { node: ">=12" } + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} yarn-add-no-save@1.0.3: - resolution: - { - integrity: sha512-ngmmxwYOogvYPjFDXGjoj35r/DteDzfiyoq5BI+kKSCCXW/I2gJA3KAgbm/7yFmcDE9CGSaORpNbYfglGYuxtA==, - } + resolution: {integrity: sha512-ngmmxwYOogvYPjFDXGjoj35r/DteDzfiyoq5BI+kKSCCXW/I2gJA3KAgbm/7yFmcDE9CGSaORpNbYfglGYuxtA==} hasBin: true yauzl@2.10.0: - resolution: - { - integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==, - } + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} ylru@1.4.0: - resolution: - { - integrity: sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==, - } - engines: { node: ">= 4.0.0" } + resolution: {integrity: sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==} + engines: {node: '>= 4.0.0'} yn@3.1.1: - resolution: - { - integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==, - } - engines: { node: ">=6" } + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} 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.0.0: - resolution: - { - integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==, - } - engines: { node: ">=12.20" } + resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==} + engines: {node: '>=12.20'} zip-stream@5.0.2: - resolution: - { - integrity: sha512-LfOdrUvPB8ZoXtvOBz6DlNClfvi//b5d56mSWyJi7XbH/HfhOHfUhOqxhT/rUiR7yiktlunqRo+jY6y/cWC/5g==, - } - engines: { node: ">= 12.0.0" } + resolution: {integrity: sha512-LfOdrUvPB8ZoXtvOBz6DlNClfvi//b5d56mSWyJi7XbH/HfhOHfUhOqxhT/rUiR7yiktlunqRo+jY6y/cWC/5g==} + engines: {node: '>= 12.0.0'} zod-validation-error@2.1.0: - resolution: - { - integrity: sha512-VJh93e2wb4c3tWtGgTa0OF/dTt/zoPCPzXq4V11ZjxmEAFaPi/Zss1xIZdEB5RD8GD00U0/iVXgqkF77RV7pdQ==, - } - engines: { node: ">=18.0.0" } + resolution: {integrity: sha512-VJh93e2wb4c3tWtGgTa0OF/dTt/zoPCPzXq4V11ZjxmEAFaPi/Zss1xIZdEB5RD8GD00U0/iVXgqkF77RV7pdQ==} + engines: {node: '>=18.0.0'} peerDependencies: zod: ^3.18.0 zod@3.22.4: - resolution: - { - integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==, - } + resolution: {integrity: sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==} zod@3.23.8: - resolution: - { - integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==, - } + resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} zwitch@2.0.4: - resolution: - { - integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==, - } + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} zx@7.2.3: - resolution: - { - integrity: sha512-QODu38nLlYXg/B/Gw7ZKiZrvPkEsjPN3LQ5JFXM7h0JvwhEdPNNl+4Ao1y4+o3CLNiDUNcwzQYZ4/Ko7kKzCMA==, - } - engines: { node: ">= 16.0.0" } + resolution: {integrity: sha512-QODu38nLlYXg/B/Gw7ZKiZrvPkEsjPN3LQ5JFXM7h0JvwhEdPNNl+4Ao1y4+o3CLNiDUNcwzQYZ4/Ko7kKzCMA==} + engines: {node: '>= 16.0.0'} hasBin: true snapshots: + 7zip-bin@5.2.0: {} - "@aashutoshrathi/word-wrap@1.2.6": {} + '@aashutoshrathi/word-wrap@1.2.6': {} - "@achrinza/node-ipc@9.2.9": + '@achrinza/node-ipc@9.2.9': dependencies: - "@node-ipc/js-queue": 2.0.3 + '@node-ipc/js-queue': 2.0.3 event-pubsub: 4.3.0 js-message: 1.0.7 - "@actions/cache@3.2.4": + '@actions/cache@3.2.4': dependencies: - "@actions/core": 1.10.1 - "@actions/exec": 1.1.1 - "@actions/glob": 0.1.2 - "@actions/http-client": 2.2.1 - "@actions/io": 1.1.3 - "@azure/abort-controller": 1.1.0 - "@azure/ms-rest-js": 2.7.0 - "@azure/storage-blob": 12.17.0 + '@actions/core': 1.10.1 + '@actions/exec': 1.1.1 + '@actions/glob': 0.1.2 + '@actions/http-client': 2.2.1 + '@actions/io': 1.1.3 + '@azure/abort-controller': 1.1.0 + '@azure/ms-rest-js': 2.7.0 + '@azure/storage-blob': 12.17.0 semver: 6.3.1 uuid: 3.4.0 transitivePeerDependencies: - encoding - "@actions/core@1.10.1": + '@actions/core@1.10.1': dependencies: - "@actions/http-client": 2.2.1 + '@actions/http-client': 2.2.1 uuid: 8.3.2 - "@actions/exec@1.1.1": + '@actions/exec@1.1.1': dependencies: - "@actions/io": 1.1.3 + '@actions/io': 1.1.3 - "@actions/github@6.0.0": + '@actions/github@6.0.0': dependencies: - "@actions/http-client": 2.2.1 - "@octokit/core": 5.1.0 - "@octokit/plugin-paginate-rest": 9.2.1(@octokit/core@5.1.0) - "@octokit/plugin-rest-endpoint-methods": 10.4.1(@octokit/core@5.1.0) + '@actions/http-client': 2.2.1 + '@octokit/core': 5.1.0 + '@octokit/plugin-paginate-rest': 9.2.1(@octokit/core@5.1.0) + '@octokit/plugin-rest-endpoint-methods': 10.4.1(@octokit/core@5.1.0) undici: 6.10.2 - "@actions/glob@0.1.2": + '@actions/glob@0.1.2': dependencies: - "@actions/core": 1.10.1 + '@actions/core': 1.10.1 minimatch: 3.1.2 - "@actions/http-client@2.2.1": + '@actions/http-client@2.2.1': dependencies: tunnel: 0.0.6 undici: 5.28.3 - "@actions/io@1.1.3": {} + '@actions/io@1.1.3': {} - "@adobe/css-tools@4.3.3": {} + '@adobe/css-tools@4.3.3': {} - "@adraffy/ens-normalize@1.10.1": {} + '@adraffy/ens-normalize@1.10.1': {} - "@agrozyme/types-tronweb@5.3.2": {} + '@agrozyme/types-tronweb@5.3.2': {} - "@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.5 - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 - "@apideck/better-ajv-errors@0.3.6(ajv@8.16.0)": + '@apideck/better-ajv-errors@0.3.6(ajv@8.16.0)': dependencies: ajv: 8.16.0 json-schema: 0.4.0 jsonpointer: 5.0.1 leven: 3.1.0 - "@aw-web-design/x-default-browser@1.4.126": + '@aw-web-design/x-default-browser@1.4.126': dependencies: default-browser-id: 3.0.0 - "@aws-crypto/crc32@3.0.0": + '@aws-crypto/crc32@3.0.0': dependencies: - "@aws-crypto/util": 3.0.0 - "@aws-sdk/types": 3.535.0 + '@aws-crypto/util': 3.0.0 + '@aws-sdk/types': 3.535.0 tslib: 2.6.2 - "@aws-crypto/crc32@5.2.0": + '@aws-crypto/crc32@5.2.0': dependencies: - "@aws-crypto/util": 5.2.0 - "@aws-sdk/types": 3.649.0 + '@aws-crypto/util': 5.2.0 + '@aws-sdk/types': 3.649.0 tslib: 2.6.2 - "@aws-crypto/crc32c@3.0.0": + '@aws-crypto/crc32c@3.0.0': dependencies: - "@aws-crypto/util": 3.0.0 - "@aws-sdk/types": 3.535.0 + '@aws-crypto/util': 3.0.0 + '@aws-sdk/types': 3.535.0 tslib: 2.6.2 - "@aws-crypto/crc32c@5.2.0": + '@aws-crypto/crc32c@5.2.0': dependencies: - "@aws-crypto/util": 5.2.0 - "@aws-sdk/types": 3.649.0 + '@aws-crypto/util': 5.2.0 + '@aws-sdk/types': 3.649.0 tslib: 2.6.2 - "@aws-crypto/ie11-detection@3.0.0": + '@aws-crypto/ie11-detection@3.0.0': dependencies: tslib: 2.6.2 - "@aws-crypto/sha1-browser@3.0.0": + '@aws-crypto/sha1-browser@3.0.0': dependencies: - "@aws-crypto/ie11-detection": 3.0.0 - "@aws-crypto/supports-web-crypto": 3.0.0 - "@aws-crypto/util": 3.0.0 - "@aws-sdk/types": 3.535.0 - "@aws-sdk/util-locate-window": 3.535.0 - "@aws-sdk/util-utf8-browser": 3.259.0 + '@aws-crypto/ie11-detection': 3.0.0 + '@aws-crypto/supports-web-crypto': 3.0.0 + '@aws-crypto/util': 3.0.0 + '@aws-sdk/types': 3.535.0 + '@aws-sdk/util-locate-window': 3.535.0 + '@aws-sdk/util-utf8-browser': 3.259.0 tslib: 2.6.2 - "@aws-crypto/sha1-browser@5.2.0": + '@aws-crypto/sha1-browser@5.2.0': dependencies: - "@aws-crypto/supports-web-crypto": 5.2.0 - "@aws-crypto/util": 5.2.0 - "@aws-sdk/types": 3.649.0 - "@aws-sdk/util-locate-window": 3.535.0 - "@smithy/util-utf8": 2.3.0 + '@aws-crypto/supports-web-crypto': 5.2.0 + '@aws-crypto/util': 5.2.0 + '@aws-sdk/types': 3.649.0 + '@aws-sdk/util-locate-window': 3.535.0 + '@smithy/util-utf8': 2.3.0 tslib: 2.6.2 - "@aws-crypto/sha256-browser@3.0.0": + '@aws-crypto/sha256-browser@3.0.0': dependencies: - "@aws-crypto/ie11-detection": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-crypto/supports-web-crypto": 3.0.0 - "@aws-crypto/util": 3.0.0 - "@aws-sdk/types": 3.535.0 - "@aws-sdk/util-locate-window": 3.535.0 - "@aws-sdk/util-utf8-browser": 3.259.0 + '@aws-crypto/ie11-detection': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-crypto/supports-web-crypto': 3.0.0 + '@aws-crypto/util': 3.0.0 + '@aws-sdk/types': 3.535.0 + '@aws-sdk/util-locate-window': 3.535.0 + '@aws-sdk/util-utf8-browser': 3.259.0 tslib: 2.6.2 - "@aws-crypto/sha256-browser@5.2.0": + '@aws-crypto/sha256-browser@5.2.0': dependencies: - "@aws-crypto/sha256-js": 5.2.0 - "@aws-crypto/supports-web-crypto": 5.2.0 - "@aws-crypto/util": 5.2.0 - "@aws-sdk/types": 3.649.0 - "@aws-sdk/util-locate-window": 3.535.0 - "@smithy/util-utf8": 2.3.0 + '@aws-crypto/sha256-js': 5.2.0 + '@aws-crypto/supports-web-crypto': 5.2.0 + '@aws-crypto/util': 5.2.0 + '@aws-sdk/types': 3.649.0 + '@aws-sdk/util-locate-window': 3.535.0 + '@smithy/util-utf8': 2.3.0 tslib: 2.6.2 - "@aws-crypto/sha256-js@3.0.0": + '@aws-crypto/sha256-js@3.0.0': dependencies: - "@aws-crypto/util": 3.0.0 - "@aws-sdk/types": 3.535.0 + '@aws-crypto/util': 3.0.0 + '@aws-sdk/types': 3.535.0 tslib: 2.6.2 - "@aws-crypto/sha256-js@5.2.0": + '@aws-crypto/sha256-js@5.2.0': dependencies: - "@aws-crypto/util": 5.2.0 - "@aws-sdk/types": 3.649.0 + '@aws-crypto/util': 5.2.0 + '@aws-sdk/types': 3.649.0 tslib: 2.6.2 - "@aws-crypto/supports-web-crypto@3.0.0": + '@aws-crypto/supports-web-crypto@3.0.0': dependencies: tslib: 2.6.2 - "@aws-crypto/supports-web-crypto@5.2.0": + '@aws-crypto/supports-web-crypto@5.2.0': dependencies: tslib: 2.6.2 - "@aws-crypto/util@3.0.0": + '@aws-crypto/util@3.0.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@aws-sdk/util-utf8-browser": 3.259.0 + '@aws-sdk/types': 3.535.0 + '@aws-sdk/util-utf8-browser': 3.259.0 tslib: 2.6.2 - "@aws-crypto/util@5.2.0": + '@aws-crypto/util@5.2.0': dependencies: - "@aws-sdk/types": 3.649.0 - "@smithy/util-utf8": 2.3.0 + '@aws-sdk/types': 3.649.0 + '@smithy/util-utf8': 2.3.0 tslib: 2.6.2 - "@aws-sdk/client-s3@3.540.0": - dependencies: - "@aws-crypto/sha1-browser": 3.0.0 - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - "@aws-sdk/core": 3.535.0 - "@aws-sdk/credential-provider-node": 3.540.0 - "@aws-sdk/middleware-bucket-endpoint": 3.535.0 - "@aws-sdk/middleware-expect-continue": 3.535.0 - "@aws-sdk/middleware-flexible-checksums": 3.535.0 - "@aws-sdk/middleware-host-header": 3.535.0 - "@aws-sdk/middleware-location-constraint": 3.535.0 - "@aws-sdk/middleware-logger": 3.535.0 - "@aws-sdk/middleware-recursion-detection": 3.535.0 - "@aws-sdk/middleware-sdk-s3": 3.535.0 - "@aws-sdk/middleware-signing": 3.535.0 - "@aws-sdk/middleware-ssec": 3.537.0 - "@aws-sdk/middleware-user-agent": 3.540.0 - "@aws-sdk/region-config-resolver": 3.535.0 - "@aws-sdk/signature-v4-multi-region": 3.535.0 - "@aws-sdk/types": 3.535.0 - "@aws-sdk/util-endpoints": 3.540.0 - "@aws-sdk/util-user-agent-browser": 3.535.0 - "@aws-sdk/util-user-agent-node": 3.535.0 - "@aws-sdk/xml-builder": 3.535.0 - "@smithy/config-resolver": 2.2.0 - "@smithy/core": 1.4.0 - "@smithy/eventstream-serde-browser": 2.2.0 - "@smithy/eventstream-serde-config-resolver": 2.2.0 - "@smithy/eventstream-serde-node": 2.2.0 - "@smithy/fetch-http-handler": 2.5.0 - "@smithy/hash-blob-browser": 2.2.0 - "@smithy/hash-node": 2.2.0 - "@smithy/hash-stream-node": 2.2.0 - "@smithy/invalid-dependency": 2.2.0 - "@smithy/md5-js": 2.2.0 - "@smithy/middleware-content-length": 2.2.0 - "@smithy/middleware-endpoint": 2.5.0 - "@smithy/middleware-retry": 2.2.0 - "@smithy/middleware-serde": 2.3.0 - "@smithy/middleware-stack": 2.2.0 - "@smithy/node-config-provider": 2.3.0 - "@smithy/node-http-handler": 2.5.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/smithy-client": 2.5.0 - "@smithy/types": 2.12.0 - "@smithy/url-parser": 2.2.0 - "@smithy/util-base64": 2.3.0 - "@smithy/util-body-length-browser": 2.2.0 - "@smithy/util-body-length-node": 2.3.0 - "@smithy/util-defaults-mode-browser": 2.2.0 - "@smithy/util-defaults-mode-node": 2.3.0 - "@smithy/util-endpoints": 1.2.0 - "@smithy/util-retry": 2.2.0 - "@smithy/util-stream": 2.2.0 - "@smithy/util-utf8": 2.3.0 - "@smithy/util-waiter": 2.2.0 + '@aws-sdk/client-s3@3.540.0': + dependencies: + '@aws-crypto/sha1-browser': 3.0.0 + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/client-sts': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + '@aws-sdk/core': 3.535.0 + '@aws-sdk/credential-provider-node': 3.540.0 + '@aws-sdk/middleware-bucket-endpoint': 3.535.0 + '@aws-sdk/middleware-expect-continue': 3.535.0 + '@aws-sdk/middleware-flexible-checksums': 3.535.0 + '@aws-sdk/middleware-host-header': 3.535.0 + '@aws-sdk/middleware-location-constraint': 3.535.0 + '@aws-sdk/middleware-logger': 3.535.0 + '@aws-sdk/middleware-recursion-detection': 3.535.0 + '@aws-sdk/middleware-sdk-s3': 3.535.0 + '@aws-sdk/middleware-signing': 3.535.0 + '@aws-sdk/middleware-ssec': 3.537.0 + '@aws-sdk/middleware-user-agent': 3.540.0 + '@aws-sdk/region-config-resolver': 3.535.0 + '@aws-sdk/signature-v4-multi-region': 3.535.0 + '@aws-sdk/types': 3.535.0 + '@aws-sdk/util-endpoints': 3.540.0 + '@aws-sdk/util-user-agent-browser': 3.535.0 + '@aws-sdk/util-user-agent-node': 3.535.0 + '@aws-sdk/xml-builder': 3.535.0 + '@smithy/config-resolver': 2.2.0 + '@smithy/core': 1.4.0 + '@smithy/eventstream-serde-browser': 2.2.0 + '@smithy/eventstream-serde-config-resolver': 2.2.0 + '@smithy/eventstream-serde-node': 2.2.0 + '@smithy/fetch-http-handler': 2.5.0 + '@smithy/hash-blob-browser': 2.2.0 + '@smithy/hash-node': 2.2.0 + '@smithy/hash-stream-node': 2.2.0 + '@smithy/invalid-dependency': 2.2.0 + '@smithy/md5-js': 2.2.0 + '@smithy/middleware-content-length': 2.2.0 + '@smithy/middleware-endpoint': 2.5.0 + '@smithy/middleware-retry': 2.2.0 + '@smithy/middleware-serde': 2.3.0 + '@smithy/middleware-stack': 2.2.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/node-http-handler': 2.5.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/smithy-client': 2.5.0 + '@smithy/types': 2.12.0 + '@smithy/url-parser': 2.2.0 + '@smithy/util-base64': 2.3.0 + '@smithy/util-body-length-browser': 2.2.0 + '@smithy/util-body-length-node': 2.3.0 + '@smithy/util-defaults-mode-browser': 2.2.0 + '@smithy/util-defaults-mode-node': 2.3.0 + '@smithy/util-endpoints': 1.2.0 + '@smithy/util-retry': 2.2.0 + '@smithy/util-stream': 2.2.0 + '@smithy/util-utf8': 2.3.0 + '@smithy/util-waiter': 2.2.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt - "@aws-sdk/client-s3@3.651.0": - dependencies: - "@aws-crypto/sha1-browser": 5.2.0 - "@aws-crypto/sha256-browser": 5.2.0 - "@aws-crypto/sha256-js": 5.2.0 - "@aws-sdk/client-sso-oidc": 3.650.0(@aws-sdk/client-sts@3.650.0) - "@aws-sdk/client-sts": 3.650.0 - "@aws-sdk/core": 3.649.0 - "@aws-sdk/credential-provider-node": 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) - "@aws-sdk/middleware-bucket-endpoint": 3.649.0 - "@aws-sdk/middleware-expect-continue": 3.649.0 - "@aws-sdk/middleware-flexible-checksums": 3.651.0 - "@aws-sdk/middleware-host-header": 3.649.0 - "@aws-sdk/middleware-location-constraint": 3.649.0 - "@aws-sdk/middleware-logger": 3.649.0 - "@aws-sdk/middleware-recursion-detection": 3.649.0 - "@aws-sdk/middleware-sdk-s3": 3.649.0 - "@aws-sdk/middleware-ssec": 3.649.0 - "@aws-sdk/middleware-user-agent": 3.649.0 - "@aws-sdk/region-config-resolver": 3.649.0 - "@aws-sdk/signature-v4-multi-region": 3.649.0 - "@aws-sdk/types": 3.649.0 - "@aws-sdk/util-endpoints": 3.649.0 - "@aws-sdk/util-user-agent-browser": 3.649.0 - "@aws-sdk/util-user-agent-node": 3.649.0 - "@aws-sdk/xml-builder": 3.649.0 - "@smithy/config-resolver": 3.0.6 - "@smithy/core": 2.4.1 - "@smithy/eventstream-serde-browser": 3.0.7 - "@smithy/eventstream-serde-config-resolver": 3.0.4 - "@smithy/eventstream-serde-node": 3.0.6 - "@smithy/fetch-http-handler": 3.2.5 - "@smithy/hash-blob-browser": 3.1.3 - "@smithy/hash-node": 3.0.4 - "@smithy/hash-stream-node": 3.1.3 - "@smithy/invalid-dependency": 3.0.4 - "@smithy/md5-js": 3.0.4 - "@smithy/middleware-content-length": 3.0.6 - "@smithy/middleware-endpoint": 3.1.1 - "@smithy/middleware-retry": 3.0.16 - "@smithy/middleware-serde": 3.0.4 - "@smithy/middleware-stack": 3.0.4 - "@smithy/node-config-provider": 3.1.5 - "@smithy/node-http-handler": 3.2.0 - "@smithy/protocol-http": 4.1.1 - "@smithy/smithy-client": 3.3.0 - "@smithy/types": 3.4.0 - "@smithy/url-parser": 3.0.4 - "@smithy/util-base64": 3.0.0 - "@smithy/util-body-length-browser": 3.0.0 - "@smithy/util-body-length-node": 3.0.0 - "@smithy/util-defaults-mode-browser": 3.0.16 - "@smithy/util-defaults-mode-node": 3.0.16 - "@smithy/util-endpoints": 2.1.0 - "@smithy/util-middleware": 3.0.4 - "@smithy/util-retry": 3.0.4 - "@smithy/util-stream": 3.1.4 - "@smithy/util-utf8": 3.0.0 - "@smithy/util-waiter": 3.1.3 + '@aws-sdk/client-s3@3.651.0': + dependencies: + '@aws-crypto/sha1-browser': 5.2.0 + '@aws-crypto/sha256-browser': 5.2.0 + '@aws-crypto/sha256-js': 5.2.0 + '@aws-sdk/client-sso-oidc': 3.650.0(@aws-sdk/client-sts@3.650.0) + '@aws-sdk/client-sts': 3.650.0 + '@aws-sdk/core': 3.649.0 + '@aws-sdk/credential-provider-node': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) + '@aws-sdk/middleware-bucket-endpoint': 3.649.0 + '@aws-sdk/middleware-expect-continue': 3.649.0 + '@aws-sdk/middleware-flexible-checksums': 3.651.0 + '@aws-sdk/middleware-host-header': 3.649.0 + '@aws-sdk/middleware-location-constraint': 3.649.0 + '@aws-sdk/middleware-logger': 3.649.0 + '@aws-sdk/middleware-recursion-detection': 3.649.0 + '@aws-sdk/middleware-sdk-s3': 3.649.0 + '@aws-sdk/middleware-ssec': 3.649.0 + '@aws-sdk/middleware-user-agent': 3.649.0 + '@aws-sdk/region-config-resolver': 3.649.0 + '@aws-sdk/signature-v4-multi-region': 3.649.0 + '@aws-sdk/types': 3.649.0 + '@aws-sdk/util-endpoints': 3.649.0 + '@aws-sdk/util-user-agent-browser': 3.649.0 + '@aws-sdk/util-user-agent-node': 3.649.0 + '@aws-sdk/xml-builder': 3.649.0 + '@smithy/config-resolver': 3.0.6 + '@smithy/core': 2.4.1 + '@smithy/eventstream-serde-browser': 3.0.7 + '@smithy/eventstream-serde-config-resolver': 3.0.4 + '@smithy/eventstream-serde-node': 3.0.6 + '@smithy/fetch-http-handler': 3.2.5 + '@smithy/hash-blob-browser': 3.1.3 + '@smithy/hash-node': 3.0.4 + '@smithy/hash-stream-node': 3.1.3 + '@smithy/invalid-dependency': 3.0.4 + '@smithy/md5-js': 3.0.4 + '@smithy/middleware-content-length': 3.0.6 + '@smithy/middleware-endpoint': 3.1.1 + '@smithy/middleware-retry': 3.0.16 + '@smithy/middleware-serde': 3.0.4 + '@smithy/middleware-stack': 3.0.4 + '@smithy/node-config-provider': 3.1.5 + '@smithy/node-http-handler': 3.2.0 + '@smithy/protocol-http': 4.1.1 + '@smithy/smithy-client': 3.3.0 + '@smithy/types': 3.4.0 + '@smithy/url-parser': 3.0.4 + '@smithy/util-base64': 3.0.0 + '@smithy/util-body-length-browser': 3.0.0 + '@smithy/util-body-length-node': 3.0.0 + '@smithy/util-defaults-mode-browser': 3.0.16 + '@smithy/util-defaults-mode-node': 3.0.16 + '@smithy/util-endpoints': 2.1.0 + '@smithy/util-middleware': 3.0.4 + '@smithy/util-retry': 3.0.4 + '@smithy/util-stream': 3.1.4 + '@smithy/util-utf8': 3.0.0 + '@smithy/util-waiter': 3.1.3 tslib: 2.6.2 transitivePeerDependencies: - aws-crt - "@aws-sdk/client-sso-oidc@3.540.0(@aws-sdk/credential-provider-node@3.540.0)": - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/client-sts": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - "@aws-sdk/core": 3.535.0 - "@aws-sdk/credential-provider-node": 3.540.0 - "@aws-sdk/middleware-host-header": 3.535.0 - "@aws-sdk/middleware-logger": 3.535.0 - "@aws-sdk/middleware-recursion-detection": 3.535.0 - "@aws-sdk/middleware-user-agent": 3.540.0 - "@aws-sdk/region-config-resolver": 3.535.0 - "@aws-sdk/types": 3.535.0 - "@aws-sdk/util-endpoints": 3.540.0 - "@aws-sdk/util-user-agent-browser": 3.535.0 - "@aws-sdk/util-user-agent-node": 3.535.0 - "@smithy/config-resolver": 2.2.0 - "@smithy/core": 1.4.0 - "@smithy/fetch-http-handler": 2.5.0 - "@smithy/hash-node": 2.2.0 - "@smithy/invalid-dependency": 2.2.0 - "@smithy/middleware-content-length": 2.2.0 - "@smithy/middleware-endpoint": 2.5.0 - "@smithy/middleware-retry": 2.2.0 - "@smithy/middleware-serde": 2.3.0 - "@smithy/middleware-stack": 2.2.0 - "@smithy/node-config-provider": 2.3.0 - "@smithy/node-http-handler": 2.5.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/smithy-client": 2.5.0 - "@smithy/types": 2.12.0 - "@smithy/url-parser": 2.2.0 - "@smithy/util-base64": 2.3.0 - "@smithy/util-body-length-browser": 2.2.0 - "@smithy/util-body-length-node": 2.3.0 - "@smithy/util-defaults-mode-browser": 2.2.0 - "@smithy/util-defaults-mode-node": 2.3.0 - "@smithy/util-endpoints": 1.2.0 - "@smithy/util-middleware": 2.2.0 - "@smithy/util-retry": 2.2.0 - "@smithy/util-utf8": 2.3.0 + '@aws-sdk/client-sso-oidc@3.540.0(@aws-sdk/credential-provider-node@3.540.0)': + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/client-sts': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + '@aws-sdk/core': 3.535.0 + '@aws-sdk/credential-provider-node': 3.540.0 + '@aws-sdk/middleware-host-header': 3.535.0 + '@aws-sdk/middleware-logger': 3.535.0 + '@aws-sdk/middleware-recursion-detection': 3.535.0 + '@aws-sdk/middleware-user-agent': 3.540.0 + '@aws-sdk/region-config-resolver': 3.535.0 + '@aws-sdk/types': 3.535.0 + '@aws-sdk/util-endpoints': 3.540.0 + '@aws-sdk/util-user-agent-browser': 3.535.0 + '@aws-sdk/util-user-agent-node': 3.535.0 + '@smithy/config-resolver': 2.2.0 + '@smithy/core': 1.4.0 + '@smithy/fetch-http-handler': 2.5.0 + '@smithy/hash-node': 2.2.0 + '@smithy/invalid-dependency': 2.2.0 + '@smithy/middleware-content-length': 2.2.0 + '@smithy/middleware-endpoint': 2.5.0 + '@smithy/middleware-retry': 2.2.0 + '@smithy/middleware-serde': 2.3.0 + '@smithy/middleware-stack': 2.2.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/node-http-handler': 2.5.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/smithy-client': 2.5.0 + '@smithy/types': 2.12.0 + '@smithy/url-parser': 2.2.0 + '@smithy/util-base64': 2.3.0 + '@smithy/util-body-length-browser': 2.2.0 + '@smithy/util-body-length-node': 2.3.0 + '@smithy/util-defaults-mode-browser': 2.2.0 + '@smithy/util-defaults-mode-node': 2.3.0 + '@smithy/util-endpoints': 1.2.0 + '@smithy/util-middleware': 2.2.0 + '@smithy/util-retry': 2.2.0 + '@smithy/util-utf8': 2.3.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt - "@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)": - dependencies: - "@aws-crypto/sha256-browser": 5.2.0 - "@aws-crypto/sha256-js": 5.2.0 - "@aws-sdk/client-sts": 3.650.0 - "@aws-sdk/core": 3.649.0 - "@aws-sdk/credential-provider-node": 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) - "@aws-sdk/middleware-host-header": 3.649.0 - "@aws-sdk/middleware-logger": 3.649.0 - "@aws-sdk/middleware-recursion-detection": 3.649.0 - "@aws-sdk/middleware-user-agent": 3.649.0 - "@aws-sdk/region-config-resolver": 3.649.0 - "@aws-sdk/types": 3.649.0 - "@aws-sdk/util-endpoints": 3.649.0 - "@aws-sdk/util-user-agent-browser": 3.649.0 - "@aws-sdk/util-user-agent-node": 3.649.0 - "@smithy/config-resolver": 3.0.6 - "@smithy/core": 2.4.1 - "@smithy/fetch-http-handler": 3.2.5 - "@smithy/hash-node": 3.0.4 - "@smithy/invalid-dependency": 3.0.4 - "@smithy/middleware-content-length": 3.0.6 - "@smithy/middleware-endpoint": 3.1.1 - "@smithy/middleware-retry": 3.0.16 - "@smithy/middleware-serde": 3.0.4 - "@smithy/middleware-stack": 3.0.4 - "@smithy/node-config-provider": 3.1.5 - "@smithy/node-http-handler": 3.2.0 - "@smithy/protocol-http": 4.1.1 - "@smithy/smithy-client": 3.3.0 - "@smithy/types": 3.4.0 - "@smithy/url-parser": 3.0.4 - "@smithy/util-base64": 3.0.0 - "@smithy/util-body-length-browser": 3.0.0 - "@smithy/util-body-length-node": 3.0.0 - "@smithy/util-defaults-mode-browser": 3.0.16 - "@smithy/util-defaults-mode-node": 3.0.16 - "@smithy/util-endpoints": 2.1.0 - "@smithy/util-middleware": 3.0.4 - "@smithy/util-retry": 3.0.4 - "@smithy/util-utf8": 3.0.0 + '@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)': + dependencies: + '@aws-crypto/sha256-browser': 5.2.0 + '@aws-crypto/sha256-js': 5.2.0 + '@aws-sdk/client-sts': 3.650.0 + '@aws-sdk/core': 3.649.0 + '@aws-sdk/credential-provider-node': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) + '@aws-sdk/middleware-host-header': 3.649.0 + '@aws-sdk/middleware-logger': 3.649.0 + '@aws-sdk/middleware-recursion-detection': 3.649.0 + '@aws-sdk/middleware-user-agent': 3.649.0 + '@aws-sdk/region-config-resolver': 3.649.0 + '@aws-sdk/types': 3.649.0 + '@aws-sdk/util-endpoints': 3.649.0 + '@aws-sdk/util-user-agent-browser': 3.649.0 + '@aws-sdk/util-user-agent-node': 3.649.0 + '@smithy/config-resolver': 3.0.6 + '@smithy/core': 2.4.1 + '@smithy/fetch-http-handler': 3.2.5 + '@smithy/hash-node': 3.0.4 + '@smithy/invalid-dependency': 3.0.4 + '@smithy/middleware-content-length': 3.0.6 + '@smithy/middleware-endpoint': 3.1.1 + '@smithy/middleware-retry': 3.0.16 + '@smithy/middleware-serde': 3.0.4 + '@smithy/middleware-stack': 3.0.4 + '@smithy/node-config-provider': 3.1.5 + '@smithy/node-http-handler': 3.2.0 + '@smithy/protocol-http': 4.1.1 + '@smithy/smithy-client': 3.3.0 + '@smithy/types': 3.4.0 + '@smithy/url-parser': 3.0.4 + '@smithy/util-base64': 3.0.0 + '@smithy/util-body-length-browser': 3.0.0 + '@smithy/util-body-length-node': 3.0.0 + '@smithy/util-defaults-mode-browser': 3.0.16 + '@smithy/util-defaults-mode-node': 3.0.16 + '@smithy/util-endpoints': 2.1.0 + '@smithy/util-middleware': 3.0.4 + '@smithy/util-retry': 3.0.4 + '@smithy/util-utf8': 3.0.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt - "@aws-sdk/client-sso@3.540.0": - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/core": 3.535.0 - "@aws-sdk/middleware-host-header": 3.535.0 - "@aws-sdk/middleware-logger": 3.535.0 - "@aws-sdk/middleware-recursion-detection": 3.535.0 - "@aws-sdk/middleware-user-agent": 3.540.0 - "@aws-sdk/region-config-resolver": 3.535.0 - "@aws-sdk/types": 3.535.0 - "@aws-sdk/util-endpoints": 3.540.0 - "@aws-sdk/util-user-agent-browser": 3.535.0 - "@aws-sdk/util-user-agent-node": 3.535.0 - "@smithy/config-resolver": 2.2.0 - "@smithy/core": 1.4.0 - "@smithy/fetch-http-handler": 2.5.0 - "@smithy/hash-node": 2.2.0 - "@smithy/invalid-dependency": 2.2.0 - "@smithy/middleware-content-length": 2.2.0 - "@smithy/middleware-endpoint": 2.5.0 - "@smithy/middleware-retry": 2.2.0 - "@smithy/middleware-serde": 2.3.0 - "@smithy/middleware-stack": 2.2.0 - "@smithy/node-config-provider": 2.3.0 - "@smithy/node-http-handler": 2.5.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/smithy-client": 2.5.0 - "@smithy/types": 2.12.0 - "@smithy/url-parser": 2.2.0 - "@smithy/util-base64": 2.3.0 - "@smithy/util-body-length-browser": 2.2.0 - "@smithy/util-body-length-node": 2.3.0 - "@smithy/util-defaults-mode-browser": 2.2.0 - "@smithy/util-defaults-mode-node": 2.3.0 - "@smithy/util-endpoints": 1.2.0 - "@smithy/util-middleware": 2.2.0 - "@smithy/util-retry": 2.2.0 - "@smithy/util-utf8": 2.3.0 + '@aws-sdk/client-sso@3.540.0': + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/core': 3.535.0 + '@aws-sdk/middleware-host-header': 3.535.0 + '@aws-sdk/middleware-logger': 3.535.0 + '@aws-sdk/middleware-recursion-detection': 3.535.0 + '@aws-sdk/middleware-user-agent': 3.540.0 + '@aws-sdk/region-config-resolver': 3.535.0 + '@aws-sdk/types': 3.535.0 + '@aws-sdk/util-endpoints': 3.540.0 + '@aws-sdk/util-user-agent-browser': 3.535.0 + '@aws-sdk/util-user-agent-node': 3.535.0 + '@smithy/config-resolver': 2.2.0 + '@smithy/core': 1.4.0 + '@smithy/fetch-http-handler': 2.5.0 + '@smithy/hash-node': 2.2.0 + '@smithy/invalid-dependency': 2.2.0 + '@smithy/middleware-content-length': 2.2.0 + '@smithy/middleware-endpoint': 2.5.0 + '@smithy/middleware-retry': 2.2.0 + '@smithy/middleware-serde': 2.3.0 + '@smithy/middleware-stack': 2.2.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/node-http-handler': 2.5.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/smithy-client': 2.5.0 + '@smithy/types': 2.12.0 + '@smithy/url-parser': 2.2.0 + '@smithy/util-base64': 2.3.0 + '@smithy/util-body-length-browser': 2.2.0 + '@smithy/util-body-length-node': 2.3.0 + '@smithy/util-defaults-mode-browser': 2.2.0 + '@smithy/util-defaults-mode-node': 2.3.0 + '@smithy/util-endpoints': 1.2.0 + '@smithy/util-middleware': 2.2.0 + '@smithy/util-retry': 2.2.0 + '@smithy/util-utf8': 2.3.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt - "@aws-sdk/client-sso@3.650.0": - dependencies: - "@aws-crypto/sha256-browser": 5.2.0 - "@aws-crypto/sha256-js": 5.2.0 - "@aws-sdk/core": 3.649.0 - "@aws-sdk/middleware-host-header": 3.649.0 - "@aws-sdk/middleware-logger": 3.649.0 - "@aws-sdk/middleware-recursion-detection": 3.649.0 - "@aws-sdk/middleware-user-agent": 3.649.0 - "@aws-sdk/region-config-resolver": 3.649.0 - "@aws-sdk/types": 3.649.0 - "@aws-sdk/util-endpoints": 3.649.0 - "@aws-sdk/util-user-agent-browser": 3.649.0 - "@aws-sdk/util-user-agent-node": 3.649.0 - "@smithy/config-resolver": 3.0.6 - "@smithy/core": 2.4.1 - "@smithy/fetch-http-handler": 3.2.5 - "@smithy/hash-node": 3.0.4 - "@smithy/invalid-dependency": 3.0.4 - "@smithy/middleware-content-length": 3.0.6 - "@smithy/middleware-endpoint": 3.1.1 - "@smithy/middleware-retry": 3.0.16 - "@smithy/middleware-serde": 3.0.4 - "@smithy/middleware-stack": 3.0.4 - "@smithy/node-config-provider": 3.1.5 - "@smithy/node-http-handler": 3.2.0 - "@smithy/protocol-http": 4.1.1 - "@smithy/smithy-client": 3.3.0 - "@smithy/types": 3.4.0 - "@smithy/url-parser": 3.0.4 - "@smithy/util-base64": 3.0.0 - "@smithy/util-body-length-browser": 3.0.0 - "@smithy/util-body-length-node": 3.0.0 - "@smithy/util-defaults-mode-browser": 3.0.16 - "@smithy/util-defaults-mode-node": 3.0.16 - "@smithy/util-endpoints": 2.1.0 - "@smithy/util-middleware": 3.0.4 - "@smithy/util-retry": 3.0.4 - "@smithy/util-utf8": 3.0.0 + '@aws-sdk/client-sso@3.650.0': + dependencies: + '@aws-crypto/sha256-browser': 5.2.0 + '@aws-crypto/sha256-js': 5.2.0 + '@aws-sdk/core': 3.649.0 + '@aws-sdk/middleware-host-header': 3.649.0 + '@aws-sdk/middleware-logger': 3.649.0 + '@aws-sdk/middleware-recursion-detection': 3.649.0 + '@aws-sdk/middleware-user-agent': 3.649.0 + '@aws-sdk/region-config-resolver': 3.649.0 + '@aws-sdk/types': 3.649.0 + '@aws-sdk/util-endpoints': 3.649.0 + '@aws-sdk/util-user-agent-browser': 3.649.0 + '@aws-sdk/util-user-agent-node': 3.649.0 + '@smithy/config-resolver': 3.0.6 + '@smithy/core': 2.4.1 + '@smithy/fetch-http-handler': 3.2.5 + '@smithy/hash-node': 3.0.4 + '@smithy/invalid-dependency': 3.0.4 + '@smithy/middleware-content-length': 3.0.6 + '@smithy/middleware-endpoint': 3.1.1 + '@smithy/middleware-retry': 3.0.16 + '@smithy/middleware-serde': 3.0.4 + '@smithy/middleware-stack': 3.0.4 + '@smithy/node-config-provider': 3.1.5 + '@smithy/node-http-handler': 3.2.0 + '@smithy/protocol-http': 4.1.1 + '@smithy/smithy-client': 3.3.0 + '@smithy/types': 3.4.0 + '@smithy/url-parser': 3.0.4 + '@smithy/util-base64': 3.0.0 + '@smithy/util-body-length-browser': 3.0.0 + '@smithy/util-body-length-node': 3.0.0 + '@smithy/util-defaults-mode-browser': 3.0.16 + '@smithy/util-defaults-mode-node': 3.0.16 + '@smithy/util-endpoints': 2.1.0 + '@smithy/util-middleware': 3.0.4 + '@smithy/util-retry': 3.0.4 + '@smithy/util-utf8': 3.0.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt - "@aws-sdk/client-sts@3.540.0(@aws-sdk/credential-provider-node@3.540.0)": - dependencies: - "@aws-crypto/sha256-browser": 3.0.0 - "@aws-crypto/sha256-js": 3.0.0 - "@aws-sdk/core": 3.535.0 - "@aws-sdk/credential-provider-node": 3.540.0 - "@aws-sdk/middleware-host-header": 3.535.0 - "@aws-sdk/middleware-logger": 3.535.0 - "@aws-sdk/middleware-recursion-detection": 3.535.0 - "@aws-sdk/middleware-user-agent": 3.540.0 - "@aws-sdk/region-config-resolver": 3.535.0 - "@aws-sdk/types": 3.535.0 - "@aws-sdk/util-endpoints": 3.540.0 - "@aws-sdk/util-user-agent-browser": 3.535.0 - "@aws-sdk/util-user-agent-node": 3.535.0 - "@smithy/config-resolver": 2.2.0 - "@smithy/core": 1.4.0 - "@smithy/fetch-http-handler": 2.5.0 - "@smithy/hash-node": 2.2.0 - "@smithy/invalid-dependency": 2.2.0 - "@smithy/middleware-content-length": 2.2.0 - "@smithy/middleware-endpoint": 2.5.0 - "@smithy/middleware-retry": 2.2.0 - "@smithy/middleware-serde": 2.3.0 - "@smithy/middleware-stack": 2.2.0 - "@smithy/node-config-provider": 2.3.0 - "@smithy/node-http-handler": 2.5.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/smithy-client": 2.5.0 - "@smithy/types": 2.12.0 - "@smithy/url-parser": 2.2.0 - "@smithy/util-base64": 2.3.0 - "@smithy/util-body-length-browser": 2.2.0 - "@smithy/util-body-length-node": 2.3.0 - "@smithy/util-defaults-mode-browser": 2.2.0 - "@smithy/util-defaults-mode-node": 2.3.0 - "@smithy/util-endpoints": 1.2.0 - "@smithy/util-middleware": 2.2.0 - "@smithy/util-retry": 2.2.0 - "@smithy/util-utf8": 2.3.0 + '@aws-sdk/client-sts@3.540.0(@aws-sdk/credential-provider-node@3.540.0)': + dependencies: + '@aws-crypto/sha256-browser': 3.0.0 + '@aws-crypto/sha256-js': 3.0.0 + '@aws-sdk/core': 3.535.0 + '@aws-sdk/credential-provider-node': 3.540.0 + '@aws-sdk/middleware-host-header': 3.535.0 + '@aws-sdk/middleware-logger': 3.535.0 + '@aws-sdk/middleware-recursion-detection': 3.535.0 + '@aws-sdk/middleware-user-agent': 3.540.0 + '@aws-sdk/region-config-resolver': 3.535.0 + '@aws-sdk/types': 3.535.0 + '@aws-sdk/util-endpoints': 3.540.0 + '@aws-sdk/util-user-agent-browser': 3.535.0 + '@aws-sdk/util-user-agent-node': 3.535.0 + '@smithy/config-resolver': 2.2.0 + '@smithy/core': 1.4.0 + '@smithy/fetch-http-handler': 2.5.0 + '@smithy/hash-node': 2.2.0 + '@smithy/invalid-dependency': 2.2.0 + '@smithy/middleware-content-length': 2.2.0 + '@smithy/middleware-endpoint': 2.5.0 + '@smithy/middleware-retry': 2.2.0 + '@smithy/middleware-serde': 2.3.0 + '@smithy/middleware-stack': 2.2.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/node-http-handler': 2.5.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/smithy-client': 2.5.0 + '@smithy/types': 2.12.0 + '@smithy/url-parser': 2.2.0 + '@smithy/util-base64': 2.3.0 + '@smithy/util-body-length-browser': 2.2.0 + '@smithy/util-body-length-node': 2.3.0 + '@smithy/util-defaults-mode-browser': 2.2.0 + '@smithy/util-defaults-mode-node': 2.3.0 + '@smithy/util-endpoints': 1.2.0 + '@smithy/util-middleware': 2.2.0 + '@smithy/util-retry': 2.2.0 + '@smithy/util-utf8': 2.3.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt - "@aws-sdk/client-sts@3.650.0": - dependencies: - "@aws-crypto/sha256-browser": 5.2.0 - "@aws-crypto/sha256-js": 5.2.0 - "@aws-sdk/client-sso-oidc": 3.650.0(@aws-sdk/client-sts@3.650.0) - "@aws-sdk/core": 3.649.0 - "@aws-sdk/credential-provider-node": 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) - "@aws-sdk/middleware-host-header": 3.649.0 - "@aws-sdk/middleware-logger": 3.649.0 - "@aws-sdk/middleware-recursion-detection": 3.649.0 - "@aws-sdk/middleware-user-agent": 3.649.0 - "@aws-sdk/region-config-resolver": 3.649.0 - "@aws-sdk/types": 3.649.0 - "@aws-sdk/util-endpoints": 3.649.0 - "@aws-sdk/util-user-agent-browser": 3.649.0 - "@aws-sdk/util-user-agent-node": 3.649.0 - "@smithy/config-resolver": 3.0.6 - "@smithy/core": 2.4.1 - "@smithy/fetch-http-handler": 3.2.5 - "@smithy/hash-node": 3.0.4 - "@smithy/invalid-dependency": 3.0.4 - "@smithy/middleware-content-length": 3.0.6 - "@smithy/middleware-endpoint": 3.1.1 - "@smithy/middleware-retry": 3.0.16 - "@smithy/middleware-serde": 3.0.4 - "@smithy/middleware-stack": 3.0.4 - "@smithy/node-config-provider": 3.1.5 - "@smithy/node-http-handler": 3.2.0 - "@smithy/protocol-http": 4.1.1 - "@smithy/smithy-client": 3.3.0 - "@smithy/types": 3.4.0 - "@smithy/url-parser": 3.0.4 - "@smithy/util-base64": 3.0.0 - "@smithy/util-body-length-browser": 3.0.0 - "@smithy/util-body-length-node": 3.0.0 - "@smithy/util-defaults-mode-browser": 3.0.16 - "@smithy/util-defaults-mode-node": 3.0.16 - "@smithy/util-endpoints": 2.1.0 - "@smithy/util-middleware": 3.0.4 - "@smithy/util-retry": 3.0.4 - "@smithy/util-utf8": 3.0.0 + '@aws-sdk/client-sts@3.650.0': + dependencies: + '@aws-crypto/sha256-browser': 5.2.0 + '@aws-crypto/sha256-js': 5.2.0 + '@aws-sdk/client-sso-oidc': 3.650.0(@aws-sdk/client-sts@3.650.0) + '@aws-sdk/core': 3.649.0 + '@aws-sdk/credential-provider-node': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) + '@aws-sdk/middleware-host-header': 3.649.0 + '@aws-sdk/middleware-logger': 3.649.0 + '@aws-sdk/middleware-recursion-detection': 3.649.0 + '@aws-sdk/middleware-user-agent': 3.649.0 + '@aws-sdk/region-config-resolver': 3.649.0 + '@aws-sdk/types': 3.649.0 + '@aws-sdk/util-endpoints': 3.649.0 + '@aws-sdk/util-user-agent-browser': 3.649.0 + '@aws-sdk/util-user-agent-node': 3.649.0 + '@smithy/config-resolver': 3.0.6 + '@smithy/core': 2.4.1 + '@smithy/fetch-http-handler': 3.2.5 + '@smithy/hash-node': 3.0.4 + '@smithy/invalid-dependency': 3.0.4 + '@smithy/middleware-content-length': 3.0.6 + '@smithy/middleware-endpoint': 3.1.1 + '@smithy/middleware-retry': 3.0.16 + '@smithy/middleware-serde': 3.0.4 + '@smithy/middleware-stack': 3.0.4 + '@smithy/node-config-provider': 3.1.5 + '@smithy/node-http-handler': 3.2.0 + '@smithy/protocol-http': 4.1.1 + '@smithy/smithy-client': 3.3.0 + '@smithy/types': 3.4.0 + '@smithy/url-parser': 3.0.4 + '@smithy/util-base64': 3.0.0 + '@smithy/util-body-length-browser': 3.0.0 + '@smithy/util-body-length-node': 3.0.0 + '@smithy/util-defaults-mode-browser': 3.0.16 + '@smithy/util-defaults-mode-node': 3.0.16 + '@smithy/util-endpoints': 2.1.0 + '@smithy/util-middleware': 3.0.4 + '@smithy/util-retry': 3.0.4 + '@smithy/util-utf8': 3.0.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt - "@aws-sdk/core@3.535.0": + '@aws-sdk/core@3.535.0': dependencies: - "@smithy/core": 1.4.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/signature-v4": 2.2.0 - "@smithy/smithy-client": 2.5.0 - "@smithy/types": 2.12.0 + '@smithy/core': 1.4.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/signature-v4': 2.2.0 + '@smithy/smithy-client': 2.5.0 + '@smithy/types': 2.12.0 fast-xml-parser: 4.2.5 tslib: 2.6.2 - "@aws-sdk/core@3.649.0": + '@aws-sdk/core@3.649.0': dependencies: - "@smithy/core": 2.4.1 - "@smithy/node-config-provider": 3.1.5 - "@smithy/property-provider": 3.1.4 - "@smithy/protocol-http": 4.1.1 - "@smithy/signature-v4": 4.1.1 - "@smithy/smithy-client": 3.3.0 - "@smithy/types": 3.4.0 - "@smithy/util-middleware": 3.0.4 + '@smithy/core': 2.4.1 + '@smithy/node-config-provider': 3.1.5 + '@smithy/property-provider': 3.1.4 + '@smithy/protocol-http': 4.1.1 + '@smithy/signature-v4': 4.1.1 + '@smithy/smithy-client': 3.3.0 + '@smithy/types': 3.4.0 + '@smithy/util-middleware': 3.0.4 fast-xml-parser: 4.4.1 tslib: 2.6.2 - "@aws-sdk/credential-provider-env@3.535.0": + '@aws-sdk/credential-provider-env@3.535.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@smithy/property-provider": 2.2.0 - "@smithy/types": 2.12.0 + '@aws-sdk/types': 3.535.0 + '@smithy/property-provider': 2.2.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@aws-sdk/credential-provider-env@3.649.0": + '@aws-sdk/credential-provider-env@3.649.0': dependencies: - "@aws-sdk/types": 3.649.0 - "@smithy/property-provider": 3.1.4 - "@smithy/types": 3.4.0 + '@aws-sdk/types': 3.649.0 + '@smithy/property-provider': 3.1.4 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@aws-sdk/credential-provider-http@3.535.0": + '@aws-sdk/credential-provider-http@3.535.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@smithy/fetch-http-handler": 2.5.0 - "@smithy/node-http-handler": 2.5.0 - "@smithy/property-provider": 2.2.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/smithy-client": 2.5.0 - "@smithy/types": 2.12.0 - "@smithy/util-stream": 2.2.0 + '@aws-sdk/types': 3.535.0 + '@smithy/fetch-http-handler': 2.5.0 + '@smithy/node-http-handler': 2.5.0 + '@smithy/property-provider': 2.2.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/smithy-client': 2.5.0 + '@smithy/types': 2.12.0 + '@smithy/util-stream': 2.2.0 tslib: 2.6.2 - "@aws-sdk/credential-provider-http@3.649.0": + '@aws-sdk/credential-provider-http@3.649.0': dependencies: - "@aws-sdk/types": 3.649.0 - "@smithy/fetch-http-handler": 3.2.5 - "@smithy/node-http-handler": 3.2.0 - "@smithy/property-provider": 3.1.4 - "@smithy/protocol-http": 4.1.1 - "@smithy/smithy-client": 3.3.0 - "@smithy/types": 3.4.0 - "@smithy/util-stream": 3.1.4 + '@aws-sdk/types': 3.649.0 + '@smithy/fetch-http-handler': 3.2.5 + '@smithy/node-http-handler': 3.2.0 + '@smithy/property-provider': 3.1.4 + '@smithy/protocol-http': 4.1.1 + '@smithy/smithy-client': 3.3.0 + '@smithy/types': 3.4.0 + '@smithy/util-stream': 3.1.4 tslib: 2.6.2 - "@aws-sdk/credential-provider-ini@3.540.0(@aws-sdk/credential-provider-node@3.540.0)": - dependencies: - "@aws-sdk/client-sts": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - "@aws-sdk/credential-provider-env": 3.535.0 - "@aws-sdk/credential-provider-process": 3.535.0 - "@aws-sdk/credential-provider-sso": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - "@aws-sdk/credential-provider-web-identity": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - "@aws-sdk/types": 3.535.0 - "@smithy/credential-provider-imds": 2.3.0 - "@smithy/property-provider": 2.2.0 - "@smithy/shared-ini-file-loader": 2.4.0 - "@smithy/types": 2.12.0 + '@aws-sdk/credential-provider-ini@3.540.0(@aws-sdk/credential-provider-node@3.540.0)': + dependencies: + '@aws-sdk/client-sts': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + '@aws-sdk/credential-provider-env': 3.535.0 + '@aws-sdk/credential-provider-process': 3.535.0 + '@aws-sdk/credential-provider-sso': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + '@aws-sdk/credential-provider-web-identity': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + '@aws-sdk/types': 3.535.0 + '@smithy/credential-provider-imds': 2.3.0 + '@smithy/property-provider': 2.2.0 + '@smithy/shared-ini-file-loader': 2.4.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 transitivePeerDependencies: - - "@aws-sdk/credential-provider-node" + - '@aws-sdk/credential-provider-node' - aws-crt - "@aws-sdk/credential-provider-ini@3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0)": - dependencies: - "@aws-sdk/client-sts": 3.650.0 - "@aws-sdk/credential-provider-env": 3.649.0 - "@aws-sdk/credential-provider-http": 3.649.0 - "@aws-sdk/credential-provider-process": 3.649.0 - "@aws-sdk/credential-provider-sso": 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)) - "@aws-sdk/credential-provider-web-identity": 3.649.0(@aws-sdk/client-sts@3.650.0) - "@aws-sdk/types": 3.649.0 - "@smithy/credential-provider-imds": 3.2.1 - "@smithy/property-provider": 3.1.4 - "@smithy/shared-ini-file-loader": 3.1.5 - "@smithy/types": 3.4.0 + '@aws-sdk/credential-provider-ini@3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0)': + dependencies: + '@aws-sdk/client-sts': 3.650.0 + '@aws-sdk/credential-provider-env': 3.649.0 + '@aws-sdk/credential-provider-http': 3.649.0 + '@aws-sdk/credential-provider-process': 3.649.0 + '@aws-sdk/credential-provider-sso': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)) + '@aws-sdk/credential-provider-web-identity': 3.649.0(@aws-sdk/client-sts@3.650.0) + '@aws-sdk/types': 3.649.0 + '@smithy/credential-provider-imds': 3.2.1 + '@smithy/property-provider': 3.1.4 + '@smithy/shared-ini-file-loader': 3.1.5 + '@smithy/types': 3.4.0 tslib: 2.6.2 transitivePeerDependencies: - - "@aws-sdk/client-sso-oidc" + - '@aws-sdk/client-sso-oidc' - aws-crt - "@aws-sdk/credential-provider-node@3.540.0": - dependencies: - "@aws-sdk/credential-provider-env": 3.535.0 - "@aws-sdk/credential-provider-http": 3.535.0 - "@aws-sdk/credential-provider-ini": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - "@aws-sdk/credential-provider-process": 3.535.0 - "@aws-sdk/credential-provider-sso": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - "@aws-sdk/credential-provider-web-identity": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - "@aws-sdk/types": 3.535.0 - "@smithy/credential-provider-imds": 2.3.0 - "@smithy/property-provider": 2.2.0 - "@smithy/shared-ini-file-loader": 2.4.0 - "@smithy/types": 2.12.0 + '@aws-sdk/credential-provider-node@3.540.0': + dependencies: + '@aws-sdk/credential-provider-env': 3.535.0 + '@aws-sdk/credential-provider-http': 3.535.0 + '@aws-sdk/credential-provider-ini': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + '@aws-sdk/credential-provider-process': 3.535.0 + '@aws-sdk/credential-provider-sso': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + '@aws-sdk/credential-provider-web-identity': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + '@aws-sdk/types': 3.535.0 + '@smithy/credential-provider-imds': 2.3.0 + '@smithy/property-provider': 2.2.0 + '@smithy/shared-ini-file-loader': 2.4.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 transitivePeerDependencies: - aws-crt - "@aws-sdk/credential-provider-node@3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0)": - dependencies: - "@aws-sdk/credential-provider-env": 3.649.0 - "@aws-sdk/credential-provider-http": 3.649.0 - "@aws-sdk/credential-provider-ini": 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) - "@aws-sdk/credential-provider-process": 3.649.0 - "@aws-sdk/credential-provider-sso": 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)) - "@aws-sdk/credential-provider-web-identity": 3.649.0(@aws-sdk/client-sts@3.650.0) - "@aws-sdk/types": 3.649.0 - "@smithy/credential-provider-imds": 3.2.1 - "@smithy/property-provider": 3.1.4 - "@smithy/shared-ini-file-loader": 3.1.5 - "@smithy/types": 3.4.0 + '@aws-sdk/credential-provider-node@3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0)': + dependencies: + '@aws-sdk/credential-provider-env': 3.649.0 + '@aws-sdk/credential-provider-http': 3.649.0 + '@aws-sdk/credential-provider-ini': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))(@aws-sdk/client-sts@3.650.0) + '@aws-sdk/credential-provider-process': 3.649.0 + '@aws-sdk/credential-provider-sso': 3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)) + '@aws-sdk/credential-provider-web-identity': 3.649.0(@aws-sdk/client-sts@3.650.0) + '@aws-sdk/types': 3.649.0 + '@smithy/credential-provider-imds': 3.2.1 + '@smithy/property-provider': 3.1.4 + '@smithy/shared-ini-file-loader': 3.1.5 + '@smithy/types': 3.4.0 tslib: 2.6.2 transitivePeerDependencies: - - "@aws-sdk/client-sso-oidc" - - "@aws-sdk/client-sts" + - '@aws-sdk/client-sso-oidc' + - '@aws-sdk/client-sts' - aws-crt - "@aws-sdk/credential-provider-process@3.535.0": + '@aws-sdk/credential-provider-process@3.535.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@smithy/property-provider": 2.2.0 - "@smithy/shared-ini-file-loader": 2.4.0 - "@smithy/types": 2.12.0 + '@aws-sdk/types': 3.535.0 + '@smithy/property-provider': 2.2.0 + '@smithy/shared-ini-file-loader': 2.4.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@aws-sdk/credential-provider-process@3.649.0": + '@aws-sdk/credential-provider-process@3.649.0': dependencies: - "@aws-sdk/types": 3.649.0 - "@smithy/property-provider": 3.1.4 - "@smithy/shared-ini-file-loader": 3.1.5 - "@smithy/types": 3.4.0 + '@aws-sdk/types': 3.649.0 + '@smithy/property-provider': 3.1.4 + '@smithy/shared-ini-file-loader': 3.1.5 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@aws-sdk/credential-provider-sso@3.540.0(@aws-sdk/credential-provider-node@3.540.0)": + '@aws-sdk/credential-provider-sso@3.540.0(@aws-sdk/credential-provider-node@3.540.0)': dependencies: - "@aws-sdk/client-sso": 3.540.0 - "@aws-sdk/token-providers": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - "@aws-sdk/types": 3.535.0 - "@smithy/property-provider": 2.2.0 - "@smithy/shared-ini-file-loader": 2.4.0 - "@smithy/types": 2.12.0 + '@aws-sdk/client-sso': 3.540.0 + '@aws-sdk/token-providers': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + '@aws-sdk/types': 3.535.0 + '@smithy/property-provider': 2.2.0 + '@smithy/shared-ini-file-loader': 2.4.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 transitivePeerDependencies: - - "@aws-sdk/credential-provider-node" + - '@aws-sdk/credential-provider-node' - aws-crt - "@aws-sdk/credential-provider-sso@3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))": + '@aws-sdk/credential-provider-sso@3.650.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))': dependencies: - "@aws-sdk/client-sso": 3.650.0 - "@aws-sdk/token-providers": 3.649.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)) - "@aws-sdk/types": 3.649.0 - "@smithy/property-provider": 3.1.4 - "@smithy/shared-ini-file-loader": 3.1.5 - "@smithy/types": 3.4.0 + '@aws-sdk/client-sso': 3.650.0 + '@aws-sdk/token-providers': 3.649.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0)) + '@aws-sdk/types': 3.649.0 + '@smithy/property-provider': 3.1.4 + '@smithy/shared-ini-file-loader': 3.1.5 + '@smithy/types': 3.4.0 tslib: 2.6.2 transitivePeerDependencies: - - "@aws-sdk/client-sso-oidc" + - '@aws-sdk/client-sso-oidc' - aws-crt - "@aws-sdk/credential-provider-web-identity@3.540.0(@aws-sdk/credential-provider-node@3.540.0)": + '@aws-sdk/credential-provider-web-identity@3.540.0(@aws-sdk/credential-provider-node@3.540.0)': dependencies: - "@aws-sdk/client-sts": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - "@aws-sdk/types": 3.535.0 - "@smithy/property-provider": 2.2.0 - "@smithy/types": 2.12.0 + '@aws-sdk/client-sts': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + '@aws-sdk/types': 3.535.0 + '@smithy/property-provider': 2.2.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 transitivePeerDependencies: - - "@aws-sdk/credential-provider-node" + - '@aws-sdk/credential-provider-node' - aws-crt - "@aws-sdk/credential-provider-web-identity@3.649.0(@aws-sdk/client-sts@3.650.0)": + '@aws-sdk/credential-provider-web-identity@3.649.0(@aws-sdk/client-sts@3.650.0)': dependencies: - "@aws-sdk/client-sts": 3.650.0 - "@aws-sdk/types": 3.649.0 - "@smithy/property-provider": 3.1.4 - "@smithy/types": 3.4.0 + '@aws-sdk/client-sts': 3.650.0 + '@aws-sdk/types': 3.649.0 + '@smithy/property-provider': 3.1.4 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@aws-sdk/lib-storage@3.651.0(@aws-sdk/client-s3@3.651.0)": + '@aws-sdk/lib-storage@3.651.0(@aws-sdk/client-s3@3.651.0)': dependencies: - "@aws-sdk/client-s3": 3.651.0 - "@smithy/abort-controller": 3.1.2 - "@smithy/middleware-endpoint": 3.1.1 - "@smithy/smithy-client": 3.3.0 + '@aws-sdk/client-s3': 3.651.0 + '@smithy/abort-controller': 3.1.2 + '@smithy/middleware-endpoint': 3.1.1 + '@smithy/smithy-client': 3.3.0 buffer: 5.6.0 events: 3.3.0 stream-browserify: 3.0.0 tslib: 2.6.2 - "@aws-sdk/middleware-bucket-endpoint@3.535.0": + '@aws-sdk/middleware-bucket-endpoint@3.535.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@aws-sdk/util-arn-parser": 3.535.0 - "@smithy/node-config-provider": 2.3.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/types": 2.12.0 - "@smithy/util-config-provider": 2.3.0 + '@aws-sdk/types': 3.535.0 + '@aws-sdk/util-arn-parser': 3.535.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/types': 2.12.0 + '@smithy/util-config-provider': 2.3.0 tslib: 2.6.2 - "@aws-sdk/middleware-bucket-endpoint@3.649.0": + '@aws-sdk/middleware-bucket-endpoint@3.649.0': dependencies: - "@aws-sdk/types": 3.649.0 - "@aws-sdk/util-arn-parser": 3.568.0 - "@smithy/node-config-provider": 3.1.5 - "@smithy/protocol-http": 4.1.1 - "@smithy/types": 3.4.0 - "@smithy/util-config-provider": 3.0.0 + '@aws-sdk/types': 3.649.0 + '@aws-sdk/util-arn-parser': 3.568.0 + '@smithy/node-config-provider': 3.1.5 + '@smithy/protocol-http': 4.1.1 + '@smithy/types': 3.4.0 + '@smithy/util-config-provider': 3.0.0 tslib: 2.6.2 - "@aws-sdk/middleware-expect-continue@3.535.0": + '@aws-sdk/middleware-expect-continue@3.535.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/types": 2.12.0 + '@aws-sdk/types': 3.535.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@aws-sdk/middleware-expect-continue@3.649.0": + '@aws-sdk/middleware-expect-continue@3.649.0': dependencies: - "@aws-sdk/types": 3.649.0 - "@smithy/protocol-http": 4.1.1 - "@smithy/types": 3.4.0 + '@aws-sdk/types': 3.649.0 + '@smithy/protocol-http': 4.1.1 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@aws-sdk/middleware-flexible-checksums@3.535.0": + '@aws-sdk/middleware-flexible-checksums@3.535.0': dependencies: - "@aws-crypto/crc32": 3.0.0 - "@aws-crypto/crc32c": 3.0.0 - "@aws-sdk/types": 3.535.0 - "@smithy/is-array-buffer": 2.2.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/types": 2.12.0 - "@smithy/util-utf8": 2.3.0 + '@aws-crypto/crc32': 3.0.0 + '@aws-crypto/crc32c': 3.0.0 + '@aws-sdk/types': 3.535.0 + '@smithy/is-array-buffer': 2.2.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/types': 2.12.0 + '@smithy/util-utf8': 2.3.0 tslib: 2.6.2 - "@aws-sdk/middleware-flexible-checksums@3.651.0": + '@aws-sdk/middleware-flexible-checksums@3.651.0': dependencies: - "@aws-crypto/crc32": 5.2.0 - "@aws-crypto/crc32c": 5.2.0 - "@aws-sdk/types": 3.649.0 - "@smithy/is-array-buffer": 3.0.0 - "@smithy/node-config-provider": 3.1.5 - "@smithy/protocol-http": 4.1.1 - "@smithy/types": 3.4.0 - "@smithy/util-utf8": 3.0.0 + '@aws-crypto/crc32': 5.2.0 + '@aws-crypto/crc32c': 5.2.0 + '@aws-sdk/types': 3.649.0 + '@smithy/is-array-buffer': 3.0.0 + '@smithy/node-config-provider': 3.1.5 + '@smithy/protocol-http': 4.1.1 + '@smithy/types': 3.4.0 + '@smithy/util-utf8': 3.0.0 tslib: 2.6.2 - "@aws-sdk/middleware-host-header@3.535.0": + '@aws-sdk/middleware-host-header@3.535.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/types": 2.12.0 + '@aws-sdk/types': 3.535.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@aws-sdk/middleware-host-header@3.649.0": + '@aws-sdk/middleware-host-header@3.649.0': dependencies: - "@aws-sdk/types": 3.649.0 - "@smithy/protocol-http": 4.1.1 - "@smithy/types": 3.4.0 + '@aws-sdk/types': 3.649.0 + '@smithy/protocol-http': 4.1.1 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@aws-sdk/middleware-location-constraint@3.535.0": + '@aws-sdk/middleware-location-constraint@3.535.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@smithy/types": 2.12.0 + '@aws-sdk/types': 3.535.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@aws-sdk/middleware-location-constraint@3.649.0": + '@aws-sdk/middleware-location-constraint@3.649.0': dependencies: - "@aws-sdk/types": 3.649.0 - "@smithy/types": 3.4.0 + '@aws-sdk/types': 3.649.0 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@aws-sdk/middleware-logger@3.535.0": + '@aws-sdk/middleware-logger@3.535.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@smithy/types": 2.12.0 + '@aws-sdk/types': 3.535.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@aws-sdk/middleware-logger@3.649.0": + '@aws-sdk/middleware-logger@3.649.0': dependencies: - "@aws-sdk/types": 3.649.0 - "@smithy/types": 3.4.0 + '@aws-sdk/types': 3.649.0 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@aws-sdk/middleware-recursion-detection@3.535.0": + '@aws-sdk/middleware-recursion-detection@3.535.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/types": 2.12.0 + '@aws-sdk/types': 3.535.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@aws-sdk/middleware-recursion-detection@3.649.0": + '@aws-sdk/middleware-recursion-detection@3.649.0': dependencies: - "@aws-sdk/types": 3.649.0 - "@smithy/protocol-http": 4.1.1 - "@smithy/types": 3.4.0 + '@aws-sdk/types': 3.649.0 + '@smithy/protocol-http': 4.1.1 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@aws-sdk/middleware-sdk-s3@3.535.0": + '@aws-sdk/middleware-sdk-s3@3.535.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@aws-sdk/util-arn-parser": 3.535.0 - "@smithy/node-config-provider": 2.3.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/signature-v4": 2.2.0 - "@smithy/smithy-client": 2.5.0 - "@smithy/types": 2.12.0 - "@smithy/util-config-provider": 2.3.0 + '@aws-sdk/types': 3.535.0 + '@aws-sdk/util-arn-parser': 3.535.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/signature-v4': 2.2.0 + '@smithy/smithy-client': 2.5.0 + '@smithy/types': 2.12.0 + '@smithy/util-config-provider': 2.3.0 tslib: 2.6.2 - "@aws-sdk/middleware-sdk-s3@3.649.0": - dependencies: - "@aws-sdk/core": 3.649.0 - "@aws-sdk/types": 3.649.0 - "@aws-sdk/util-arn-parser": 3.568.0 - "@smithy/core": 2.4.1 - "@smithy/node-config-provider": 3.1.5 - "@smithy/protocol-http": 4.1.1 - "@smithy/signature-v4": 4.1.1 - "@smithy/smithy-client": 3.3.0 - "@smithy/types": 3.4.0 - "@smithy/util-config-provider": 3.0.0 - "@smithy/util-middleware": 3.0.4 - "@smithy/util-stream": 3.1.4 - "@smithy/util-utf8": 3.0.0 + '@aws-sdk/middleware-sdk-s3@3.649.0': + dependencies: + '@aws-sdk/core': 3.649.0 + '@aws-sdk/types': 3.649.0 + '@aws-sdk/util-arn-parser': 3.568.0 + '@smithy/core': 2.4.1 + '@smithy/node-config-provider': 3.1.5 + '@smithy/protocol-http': 4.1.1 + '@smithy/signature-v4': 4.1.1 + '@smithy/smithy-client': 3.3.0 + '@smithy/types': 3.4.0 + '@smithy/util-config-provider': 3.0.0 + '@smithy/util-middleware': 3.0.4 + '@smithy/util-stream': 3.1.4 + '@smithy/util-utf8': 3.0.0 tslib: 2.6.2 - "@aws-sdk/middleware-signing@3.535.0": + '@aws-sdk/middleware-signing@3.535.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@smithy/property-provider": 2.2.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/signature-v4": 2.2.0 - "@smithy/types": 2.12.0 - "@smithy/util-middleware": 2.2.0 + '@aws-sdk/types': 3.535.0 + '@smithy/property-provider': 2.2.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/signature-v4': 2.2.0 + '@smithy/types': 2.12.0 + '@smithy/util-middleware': 2.2.0 tslib: 2.6.2 - "@aws-sdk/middleware-ssec@3.537.0": + '@aws-sdk/middleware-ssec@3.537.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@smithy/types": 2.12.0 + '@aws-sdk/types': 3.535.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@aws-sdk/middleware-ssec@3.649.0": + '@aws-sdk/middleware-ssec@3.649.0': dependencies: - "@aws-sdk/types": 3.649.0 - "@smithy/types": 3.4.0 + '@aws-sdk/types': 3.649.0 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@aws-sdk/middleware-user-agent@3.540.0": + '@aws-sdk/middleware-user-agent@3.540.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@aws-sdk/util-endpoints": 3.540.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/types": 2.12.0 + '@aws-sdk/types': 3.535.0 + '@aws-sdk/util-endpoints': 3.540.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@aws-sdk/middleware-user-agent@3.649.0": + '@aws-sdk/middleware-user-agent@3.649.0': dependencies: - "@aws-sdk/types": 3.649.0 - "@aws-sdk/util-endpoints": 3.649.0 - "@smithy/protocol-http": 4.1.1 - "@smithy/types": 3.4.0 + '@aws-sdk/types': 3.649.0 + '@aws-sdk/util-endpoints': 3.649.0 + '@smithy/protocol-http': 4.1.1 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@aws-sdk/region-config-resolver@3.535.0": + '@aws-sdk/region-config-resolver@3.535.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@smithy/node-config-provider": 2.3.0 - "@smithy/types": 2.12.0 - "@smithy/util-config-provider": 2.3.0 - "@smithy/util-middleware": 2.2.0 + '@aws-sdk/types': 3.535.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/types': 2.12.0 + '@smithy/util-config-provider': 2.3.0 + '@smithy/util-middleware': 2.2.0 tslib: 2.6.2 - "@aws-sdk/region-config-resolver@3.649.0": + '@aws-sdk/region-config-resolver@3.649.0': dependencies: - "@aws-sdk/types": 3.649.0 - "@smithy/node-config-provider": 3.1.5 - "@smithy/types": 3.4.0 - "@smithy/util-config-provider": 3.0.0 - "@smithy/util-middleware": 3.0.4 + '@aws-sdk/types': 3.649.0 + '@smithy/node-config-provider': 3.1.5 + '@smithy/types': 3.4.0 + '@smithy/util-config-provider': 3.0.0 + '@smithy/util-middleware': 3.0.4 tslib: 2.6.2 - "@aws-sdk/signature-v4-multi-region@3.535.0": + '@aws-sdk/signature-v4-multi-region@3.535.0': dependencies: - "@aws-sdk/middleware-sdk-s3": 3.535.0 - "@aws-sdk/types": 3.535.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/signature-v4": 2.2.0 - "@smithy/types": 2.12.0 + '@aws-sdk/middleware-sdk-s3': 3.535.0 + '@aws-sdk/types': 3.535.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/signature-v4': 2.2.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@aws-sdk/signature-v4-multi-region@3.649.0": + '@aws-sdk/signature-v4-multi-region@3.649.0': dependencies: - "@aws-sdk/middleware-sdk-s3": 3.649.0 - "@aws-sdk/types": 3.649.0 - "@smithy/protocol-http": 4.1.1 - "@smithy/signature-v4": 4.1.1 - "@smithy/types": 3.4.0 + '@aws-sdk/middleware-sdk-s3': 3.649.0 + '@aws-sdk/types': 3.649.0 + '@smithy/protocol-http': 4.1.1 + '@smithy/signature-v4': 4.1.1 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@aws-sdk/token-providers@3.540.0(@aws-sdk/credential-provider-node@3.540.0)": + '@aws-sdk/token-providers@3.540.0(@aws-sdk/credential-provider-node@3.540.0)': dependencies: - "@aws-sdk/client-sso-oidc": 3.540.0(@aws-sdk/credential-provider-node@3.540.0) - "@aws-sdk/types": 3.535.0 - "@smithy/property-provider": 2.2.0 - "@smithy/shared-ini-file-loader": 2.4.0 - "@smithy/types": 2.12.0 + '@aws-sdk/client-sso-oidc': 3.540.0(@aws-sdk/credential-provider-node@3.540.0) + '@aws-sdk/types': 3.535.0 + '@smithy/property-provider': 2.2.0 + '@smithy/shared-ini-file-loader': 2.4.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 transitivePeerDependencies: - - "@aws-sdk/credential-provider-node" + - '@aws-sdk/credential-provider-node' - aws-crt - "@aws-sdk/token-providers@3.649.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))": + '@aws-sdk/token-providers@3.649.0(@aws-sdk/client-sso-oidc@3.650.0(@aws-sdk/client-sts@3.650.0))': dependencies: - "@aws-sdk/client-sso-oidc": 3.650.0(@aws-sdk/client-sts@3.650.0) - "@aws-sdk/types": 3.649.0 - "@smithy/property-provider": 3.1.4 - "@smithy/shared-ini-file-loader": 3.1.5 - "@smithy/types": 3.4.0 + '@aws-sdk/client-sso-oidc': 3.650.0(@aws-sdk/client-sts@3.650.0) + '@aws-sdk/types': 3.649.0 + '@smithy/property-provider': 3.1.4 + '@smithy/shared-ini-file-loader': 3.1.5 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@aws-sdk/types@3.535.0": + '@aws-sdk/types@3.535.0': dependencies: - "@smithy/types": 2.12.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@aws-sdk/types@3.649.0": + '@aws-sdk/types@3.649.0': dependencies: - "@smithy/types": 3.4.0 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@aws-sdk/util-arn-parser@3.535.0": + '@aws-sdk/util-arn-parser@3.535.0': dependencies: tslib: 2.6.2 - "@aws-sdk/util-arn-parser@3.568.0": + '@aws-sdk/util-arn-parser@3.568.0': dependencies: tslib: 2.6.2 - "@aws-sdk/util-endpoints@3.540.0": + '@aws-sdk/util-endpoints@3.540.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@smithy/types": 2.12.0 - "@smithy/util-endpoints": 1.2.0 + '@aws-sdk/types': 3.535.0 + '@smithy/types': 2.12.0 + '@smithy/util-endpoints': 1.2.0 tslib: 2.6.2 - "@aws-sdk/util-endpoints@3.649.0": + '@aws-sdk/util-endpoints@3.649.0': dependencies: - "@aws-sdk/types": 3.649.0 - "@smithy/types": 3.4.0 - "@smithy/util-endpoints": 2.1.0 + '@aws-sdk/types': 3.649.0 + '@smithy/types': 3.4.0 + '@smithy/util-endpoints': 2.1.0 tslib: 2.6.2 - "@aws-sdk/util-locate-window@3.535.0": + '@aws-sdk/util-locate-window@3.535.0': dependencies: tslib: 2.6.2 - "@aws-sdk/util-user-agent-browser@3.535.0": + '@aws-sdk/util-user-agent-browser@3.535.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@smithy/types": 2.12.0 + '@aws-sdk/types': 3.535.0 + '@smithy/types': 2.12.0 bowser: 2.11.0 tslib: 2.6.2 - "@aws-sdk/util-user-agent-browser@3.649.0": + '@aws-sdk/util-user-agent-browser@3.649.0': dependencies: - "@aws-sdk/types": 3.649.0 - "@smithy/types": 3.4.0 + '@aws-sdk/types': 3.649.0 + '@smithy/types': 3.4.0 bowser: 2.11.0 tslib: 2.6.2 - "@aws-sdk/util-user-agent-node@3.535.0": + '@aws-sdk/util-user-agent-node@3.535.0': dependencies: - "@aws-sdk/types": 3.535.0 - "@smithy/node-config-provider": 2.3.0 - "@smithy/types": 2.12.0 + '@aws-sdk/types': 3.535.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@aws-sdk/util-user-agent-node@3.649.0": + '@aws-sdk/util-user-agent-node@3.649.0': dependencies: - "@aws-sdk/types": 3.649.0 - "@smithy/node-config-provider": 3.1.5 - "@smithy/types": 3.4.0 + '@aws-sdk/types': 3.649.0 + '@smithy/node-config-provider': 3.1.5 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@aws-sdk/util-utf8-browser@3.259.0": + '@aws-sdk/util-utf8-browser@3.259.0': dependencies: tslib: 2.6.2 - "@aws-sdk/xml-builder@3.535.0": + '@aws-sdk/xml-builder@3.535.0': dependencies: - "@smithy/types": 2.12.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@aws-sdk/xml-builder@3.649.0": + '@aws-sdk/xml-builder@3.649.0': dependencies: - "@smithy/types": 3.4.0 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@azure/abort-controller@1.1.0": + '@azure/abort-controller@1.1.0': dependencies: tslib: 2.6.2 - "@azure/abort-controller@2.1.1": + '@azure/abort-controller@2.1.1': dependencies: tslib: 2.6.2 - "@azure/core-asynciterator-polyfill@1.0.2": {} + '@azure/core-asynciterator-polyfill@1.0.2': {} - "@azure/core-auth@1.7.1": + '@azure/core-auth@1.7.1': dependencies: - "@azure/abort-controller": 2.1.1 - "@azure/core-util": 1.8.1 + '@azure/abort-controller': 2.1.1 + '@azure/core-util': 1.8.1 tslib: 2.6.2 - "@azure/core-http@3.0.4": + '@azure/core-http@3.0.4': dependencies: - "@azure/abort-controller": 1.1.0 - "@azure/core-auth": 1.7.1 - "@azure/core-tracing": 1.0.0-preview.13 - "@azure/core-util": 1.8.1 - "@azure/logger": 1.1.1 - "@types/node-fetch": 2.6.11 - "@types/tunnel": 0.0.3 + '@azure/abort-controller': 1.1.0 + '@azure/core-auth': 1.7.1 + '@azure/core-tracing': 1.0.0-preview.13 + '@azure/core-util': 1.8.1 + '@azure/logger': 1.1.1 + '@types/node-fetch': 2.6.11 + '@types/tunnel': 0.0.3 form-data: 4.0.0 node-fetch: 2.7.0 process: 0.11.10 @@ -48016,34 +31751,34 @@ snapshots: transitivePeerDependencies: - encoding - "@azure/core-lro@2.7.1": + '@azure/core-lro@2.7.1': dependencies: - "@azure/abort-controller": 2.1.1 - "@azure/core-util": 1.8.1 - "@azure/logger": 1.1.1 + '@azure/abort-controller': 2.1.1 + '@azure/core-util': 1.8.1 + '@azure/logger': 1.1.1 tslib: 2.6.2 - "@azure/core-paging@1.6.1": + '@azure/core-paging@1.6.1': dependencies: tslib: 2.6.2 - "@azure/core-tracing@1.0.0-preview.13": + '@azure/core-tracing@1.0.0-preview.13': dependencies: - "@opentelemetry/api": 1.8.0 + '@opentelemetry/api': 1.8.0 tslib: 2.6.2 - "@azure/core-util@1.8.1": + '@azure/core-util@1.8.1': dependencies: - "@azure/abort-controller": 2.1.1 + '@azure/abort-controller': 2.1.1 tslib: 2.6.2 - "@azure/logger@1.1.1": + '@azure/logger@1.1.1': dependencies: tslib: 2.6.2 - "@azure/ms-rest-js@2.7.0": + '@azure/ms-rest-js@2.7.0': dependencies: - "@azure/core-auth": 1.7.1 + '@azure/core-auth': 1.7.1 abort-controller: 3.0.0 form-data: 2.5.1 node-fetch: 2.7.0 @@ -48054,47 +31789,47 @@ snapshots: transitivePeerDependencies: - encoding - "@azure/storage-blob@12.17.0": + '@azure/storage-blob@12.17.0': dependencies: - "@azure/abort-controller": 1.1.0 - "@azure/core-http": 3.0.4 - "@azure/core-lro": 2.7.1 - "@azure/core-paging": 1.6.1 - "@azure/core-tracing": 1.0.0-preview.13 - "@azure/logger": 1.1.1 + '@azure/abort-controller': 1.1.0 + '@azure/core-http': 3.0.4 + '@azure/core-lro': 2.7.1 + '@azure/core-paging': 1.6.1 + '@azure/core-tracing': 1.0.0-preview.13 + '@azure/logger': 1.1.1 events: 3.3.0 tslib: 2.6.2 transitivePeerDependencies: - encoding - "@babel/code-frame@7.10.4": + '@babel/code-frame@7.10.4': dependencies: - "@babel/highlight": 7.24.6 + '@babel/highlight': 7.24.6 - "@babel/code-frame@7.24.2": + '@babel/code-frame@7.24.2': dependencies: - "@babel/highlight": 7.24.2 + '@babel/highlight': 7.24.2 picocolors: 1.0.0 - "@babel/code-frame@7.24.6": + '@babel/code-frame@7.24.6': dependencies: - "@babel/highlight": 7.24.6 + '@babel/highlight': 7.24.6 picocolors: 1.0.0 - "@babel/compat-data@7.24.1": {} + '@babel/compat-data@7.24.1': {} - "@babel/core@7.24.3": + '@babel/core@7.24.3': dependencies: - "@ampproject/remapping": 2.3.0 - "@babel/code-frame": 7.24.6 - "@babel/generator": 7.24.1 - "@babel/helper-compilation-targets": 7.23.6 - "@babel/helper-module-transforms": 7.23.3(@babel/core@7.24.3) - "@babel/helpers": 7.24.1 - "@babel/parser": 7.24.1 - "@babel/template": 7.24.0 - "@babel/traverse": 7.24.1 - "@babel/types": 7.24.0 + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.24.6 + '@babel/generator': 7.24.1 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) + '@babel/helpers': 7.24.1 + '@babel/parser': 7.24.1 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.1 + '@babel/types': 7.24.0 convert-source-map: 2.0.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -48103,711 +31838,701 @@ snapshots: transitivePeerDependencies: - supports-color - "@babel/eslint-parser@7.24.1(@babel/core@7.24.3)(eslint@8.57.0)": + '@babel/eslint-parser@7.24.1(@babel/core@7.24.3)(eslint@8.57.0)': dependencies: - "@babel/core": 7.24.3 - "@nicolo-ribaudo/eslint-scope-5-internals": 5.1.1-v1 + '@babel/core': 7.24.3 + '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 eslint: 8.57.0 eslint-visitor-keys: 2.1.0 semver: 6.3.1 - "@babel/generator@7.2.0": + '@babel/generator@7.2.0': dependencies: - "@babel/types": 7.24.0 + '@babel/types': 7.24.0 jsesc: 2.5.2 lodash: 4.17.21 source-map: 0.5.7 trim-right: 1.0.1 - "@babel/generator@7.24.1": + '@babel/generator@7.24.1': dependencies: - "@babel/types": 7.24.0 - "@jridgewell/gen-mapping": 0.3.5 - "@jridgewell/trace-mapping": 0.3.25 + '@babel/types': 7.24.0 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 jsesc: 2.5.2 - "@babel/helper-annotate-as-pure@7.22.5": + '@babel/helper-annotate-as-pure@7.22.5': dependencies: - "@babel/types": 7.24.0 + '@babel/types': 7.24.0 - "@babel/helper-builder-binary-assignment-operator-visitor@7.22.15": + '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': dependencies: - "@babel/types": 7.24.0 + '@babel/types': 7.24.0 - "@babel/helper-compilation-targets@7.23.6": + '@babel/helper-compilation-targets@7.23.6': dependencies: - "@babel/compat-data": 7.24.1 - "@babel/helper-validator-option": 7.23.5 + '@babel/compat-data': 7.24.1 + '@babel/helper-validator-option': 7.23.5 browserslist: 4.23.0 lru-cache: 5.1.1 semver: 6.3.1 - "@babel/helper-create-class-features-plugin@7.24.1(@babel/core@7.24.3)": - dependencies: - "@babel/core": 7.24.3 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-function-name": 7.23.0 - "@babel/helper-member-expression-to-functions": 7.23.0 - "@babel/helper-optimise-call-expression": 7.22.5 - "@babel/helper-replace-supers": 7.24.1(@babel/core@7.24.3) - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - "@babel/helper-split-export-declaration": 7.22.6 + '@babel/helper-create-class-features-plugin@7.24.1(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 - "@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.3)": + '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-annotate-as-pure": 7.22.5 + '@babel/core': 7.24.3 + '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 - "@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.3)": + '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-compilation-targets": 7.23.6 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.24.0 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: - supports-color - "@babel/helper-environment-visitor@7.22.20": {} + '@babel/helper-environment-visitor@7.22.20': {} - "@babel/helper-function-name@7.23.0": + '@babel/helper-function-name@7.23.0': dependencies: - "@babel/template": 7.24.0 - "@babel/types": 7.24.0 + '@babel/template': 7.24.0 + '@babel/types': 7.24.0 - "@babel/helper-hoist-variables@7.22.5": + '@babel/helper-hoist-variables@7.22.5': dependencies: - "@babel/types": 7.24.0 + '@babel/types': 7.24.0 - "@babel/helper-member-expression-to-functions@7.23.0": + '@babel/helper-member-expression-to-functions@7.23.0': dependencies: - "@babel/types": 7.24.0 + '@babel/types': 7.24.0 - "@babel/helper-module-imports@7.24.3": + '@babel/helper-module-imports@7.24.3': dependencies: - "@babel/types": 7.24.0 + '@babel/types': 7.24.0 - "@babel/helper-module-transforms@7.23.3": + '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.3)': dependencies: - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-module-imports": 7.24.3 - "@babel/helper-simple-access": 7.22.5 - "@babel/helper-split-export-declaration": 7.22.6 - "@babel/helper-validator-identifier": 7.24.7 + '@babel/core': 7.24.3 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/helper-validator-identifier': 7.24.7 - "@babel/helper-module-transforms@7.23.3(@babel/core@7.24.3)": + '@babel/helper-optimise-call-expression@7.22.5': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-module-imports": 7.24.3 - "@babel/helper-simple-access": 7.22.5 - "@babel/helper-split-export-declaration": 7.22.6 - "@babel/helper-validator-identifier": 7.24.7 + '@babel/types': 7.24.0 - "@babel/helper-optimise-call-expression@7.22.5": - dependencies: - "@babel/types": 7.24.0 + '@babel/helper-plugin-utils@7.24.0': {} - "@babel/helper-plugin-utils@7.24.0": {} - - "@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.3)": + '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-wrap-function": 7.22.20 + '@babel/core': 7.24.3 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-wrap-function': 7.22.20 - "@babel/helper-replace-supers@7.24.1(@babel/core@7.24.3)": + '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-member-expression-to-functions": 7.23.0 - "@babel/helper-optimise-call-expression": 7.22.5 + '@babel/core': 7.24.3 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 - "@babel/helper-simple-access@7.22.5": + '@babel/helper-simple-access@7.22.5': dependencies: - "@babel/types": 7.24.0 + '@babel/types': 7.24.0 - "@babel/helper-skip-transparent-expression-wrappers@7.22.5": + '@babel/helper-skip-transparent-expression-wrappers@7.22.5': dependencies: - "@babel/types": 7.24.0 + '@babel/types': 7.24.0 - "@babel/helper-split-export-declaration@7.22.6": + '@babel/helper-split-export-declaration@7.22.6': dependencies: - "@babel/types": 7.24.0 - - "@babel/helper-string-parser@7.24.1": {} + '@babel/types': 7.24.0 - "@babel/helper-validator-identifier@7.22.20": {} + '@babel/helper-string-parser@7.24.1': {} - "@babel/helper-validator-identifier@7.24.7": {} + '@babel/helper-validator-identifier@7.24.7': {} - "@babel/helper-validator-option@7.23.5": {} + '@babel/helper-validator-option@7.23.5': {} - "@babel/helper-wrap-function@7.22.20": + '@babel/helper-wrap-function@7.22.20': dependencies: - "@babel/helper-function-name": 7.23.0 - "@babel/template": 7.24.0 - "@babel/types": 7.24.0 + '@babel/helper-function-name': 7.23.0 + '@babel/template': 7.24.0 + '@babel/types': 7.24.0 - "@babel/helpers@7.24.1": + '@babel/helpers@7.24.1': dependencies: - "@babel/template": 7.24.0 - "@babel/traverse": 7.24.1 - "@babel/types": 7.24.0 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.1 + '@babel/types': 7.24.0 transitivePeerDependencies: - supports-color - "@babel/highlight@7.24.2": + '@babel/highlight@7.24.2': dependencies: - "@babel/helper-validator-identifier": 7.24.7 + '@babel/helper-validator-identifier': 7.24.7 chalk: 2.4.2 js-tokens: 4.0.0 picocolors: 1.0.0 - "@babel/highlight@7.24.6": + '@babel/highlight@7.24.6': dependencies: - "@babel/helper-validator-identifier": 7.24.7 + '@babel/helper-validator-identifier': 7.24.7 chalk: 2.4.2 js-tokens: 4.0.0 picocolors: 1.0.0 - "@babel/parser@7.24.1": + '@babel/parser@7.24.1': dependencies: - "@babel/types": 7.24.0 + '@babel/types': 7.24.0 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - "@babel/plugin-transform-optional-chaining": 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3) - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.3)": + '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.24.3) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) - "@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.3)": + '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-decorators": 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.24.3) - "@babel/plugin-proposal-export-default-from@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-proposal-export-default-from@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-export-default-from": 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.3) - "@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.24.3)": + '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3) - "@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.3)": + '@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) - "@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.3)": + '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) - "@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.3)": + '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) - "@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.3)": + '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.3)': dependencies: - "@babel/compat-data": 7.24.1 - "@babel/core": 7.24.3 - "@babel/helper-compilation-targets": 7.23.6 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) + '@babel/compat-data': 7.24.1 + '@babel/core': 7.24.3 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) - "@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.3)": + '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) - "@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.3)": + '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) - "@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.24.3)": + '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3)": + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 - "@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.24.3)": + '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3) - "@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.3)": + '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.3)": + '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.3)": + '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.3)": + '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.3)": + '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-export-default-from@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-syntax-export-default-from@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.3)": + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.3)": + '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.3)": + '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-jsx@7.24.1": + '@babel/plugin-syntax-jsx@7.24.1': dependencies: - "@babel/helper-plugin-utils": 7.24.0 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.3)": + '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.3)": + '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.3)": + '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.3)": + '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.3)": + '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.3)": + '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.3)": + '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.3)": + '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.3)": + '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.3)": + '@babel/plugin-transform-async-generator-functions@7.24.3(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.24.3) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) - "@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-module-imports": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.3) - "@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-block-scoping@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-block-scoping@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-class-properties@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-class-static-block@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-class-static-block@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.3) - "@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-compilation-targets": 7.23.6 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-function-name": 7.23.0 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/helper-replace-supers": 7.24.1(@babel/core@7.24.3) - "@babel/helper-split-export-declaration": 7.22.6 + '@babel/core': 7.24.3 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3) + '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 - "@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/template": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/template': 7.24.0 - "@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-dotall-regex@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) - "@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-exponentiation-operator@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-builder-binary-assignment-operator-visitor": 7.22.15 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3) - "@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-flow": 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - "@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-compilation-targets": 7.23.6 - "@babel/helper-function-name": 7.23.0 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3) - "@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) - "@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-module-transforms": 7.23.3(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-module-transforms": 7.23.3(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 - "@babel/helper-simple-access": 7.22.5 + '@babel/core': 7.24.3 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-simple-access': 7.22.5 - "@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-modules-systemjs@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-hoist-variables": 7.22.5 - "@babel/helper-module-transforms": 7.23.3(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 - "@babel/helper-validator-identifier": 7.24.7 + '@babel/core': 7.24.3 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-validator-identifier': 7.24.7 - "@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-module-transforms": 7.23.3(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.3)": + '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) - "@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) - "@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-object-rest-spread@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-compilation-targets": 7.23.6 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/helper-replace-supers": 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) - "@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-optional-chaining@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) - "@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-private-methods@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-private-property-in-object@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3) - "@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-react-constant-elements@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-react-constant-elements@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.3)": + '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx-self@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-react-jsx-self@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-react-jsx-source@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-react-jsx-source@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.3)": + '@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-module-imports": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-jsx": 7.24.1(@babel/core@7.24.3) - "@babel/types": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) + '@babel/types': 7.24.0 - "@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-react-pure-annotations@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 regenerator-transform: 0.15.2 - "@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.3)": + '@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 - "@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.3)": + '@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-module-imports": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-module-imports': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.3) babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.3) babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.3) @@ -48815,141 +32540,141 @@ snapshots: transitivePeerDependencies: - supports-color - "@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.3)": - dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - - "@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.3)": - dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - - "@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.3)": - dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - - "@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.3)": - dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - - "@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.24.3)": - dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - - "@babel/plugin-transform-typescript@7.24.1(@babel/core@7.24.3)": - dependencies: - "@babel/core": 7.24.3 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-create-class-features-plugin": 7.24.1(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 - "@babel/plugin-syntax-typescript": 7.24.1(@babel/core@7.24.3) - - "@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.3)": - dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - - "@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.3)": - dependencies: - "@babel/core": 7.24.3 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 - - "@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.3)": - dependencies: - "@babel/core": 7.24.3 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 - - "@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.3)": - dependencies: - "@babel/core": 7.24.3 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.24.3) - "@babel/helper-plugin-utils": 7.24.0 - - "@babel/preset-env@7.24.3(@babel/core@7.24.3)": - dependencies: - "@babel/compat-data": 7.24.1 - "@babel/core": 7.24.3 - "@babel/helper-compilation-targets": 7.23.6 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/helper-validator-option": 7.23.5 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.24.3) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.24.3) - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.24.3) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-import-assertions": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-syntax-import-attributes": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.24.3) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.24.3) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.24.3) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.24.3) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.24.3) - "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-async-generator-functions": 7.24.3(@babel/core@7.24.3) - "@babel/plugin-transform-async-to-generator": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-block-scoped-functions": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-block-scoping": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-class-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-class-static-block": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-classes": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-computed-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-destructuring": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-dotall-regex": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-duplicate-keys": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-dynamic-import": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-exponentiation-operator": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-export-namespace-from": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-for-of": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-function-name": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-json-strings": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-literals": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-logical-assignment-operators": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-member-expression-literals": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-modules-amd": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-modules-systemjs": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-modules-umd": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.24.3) - "@babel/plugin-transform-new-target": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-nullish-coalescing-operator": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-numeric-separator": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-object-rest-spread": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-object-super": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-optional-catch-binding": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-optional-chaining": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-private-methods": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-private-property-in-object": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-property-literals": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-regenerator": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-reserved-words": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-spread": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-sticky-regex": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-template-literals": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-typeof-symbol": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-unicode-escapes": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-unicode-property-regex": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-unicode-regex": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-unicode-sets-regex": 7.24.1(@babel/core@7.24.3) - "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.24.3) + '@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + + '@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + + '@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + + '@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + + '@babel/plugin-transform-typeof-symbol@7.24.1(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + + '@babel/plugin-transform-typescript@7.24.1(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-create-class-features-plugin': 7.24.1(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3) + + '@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + + '@babel/plugin-transform-unicode-property-regex@7.24.1(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 + + '@babel/plugin-transform-unicode-regex@7.24.1(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 + + '@babel/plugin-transform-unicode-sets-regex@7.24.1(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.3) + '@babel/helper-plugin-utils': 7.24.0 + + '@babel/preset-env@7.24.3(@babel/core@7.24.3)': + dependencies: + '@babel/compat-data': 7.24.1 + '@babel/core': 7.24.3 + '@babel/helper-compilation-targets': 7.23.6 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.3) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.3) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.3) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-import-assertions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.3) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.3) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.3) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-async-generator-functions': 7.24.3(@babel/core@7.24.3) + '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-class-static-block': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-dotall-regex': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-duplicate-keys': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-dynamic-import': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-exponentiation-operator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-json-strings': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-logical-assignment-operators': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-modules-amd': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-modules-systemjs': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-modules-umd': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-new-target': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-numeric-separator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-optional-catch-binding': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-regenerator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-reserved-words': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-typeof-symbol': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-escapes': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-property-regex': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-sets-regex': 7.24.1(@babel/core@7.24.3) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.3) babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.24.3) babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.3) babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.24.3) @@ -48958,113 +32683,113 @@ snapshots: transitivePeerDependencies: - supports-color - "@babel/preset-flow@7.24.1(@babel/core@7.24.3)": + '@babel/preset-flow@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/helper-validator-option": 7.23.5 - "@babel/plugin-transform-flow-strip-types": 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) - "@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.3)": + '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/types": 7.24.0 + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/types': 7.24.0 esutils: 2.0.3 - "@babel/preset-react@7.24.1(@babel/core@7.24.3)": + '@babel/preset-react@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/helper-validator-option": 7.23.5 - "@babel/plugin-transform-react-display-name": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx-development": 7.22.5(@babel/core@7.24.3) - "@babel/plugin-transform-react-pure-annotations": 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-react-pure-annotations': 7.24.1(@babel/core@7.24.3) - "@babel/preset-typescript@7.24.1(@babel/core@7.24.3)": + '@babel/preset-typescript@7.24.1(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-plugin-utils": 7.24.0 - "@babel/helper-validator-option": 7.23.5 - "@babel/plugin-syntax-jsx": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-typescript": 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-validator-option': 7.23.5 + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) - "@babel/register@7.23.7(@babel/core@7.24.3)": + '@babel/register@7.23.7(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 pirates: 4.0.6 source-map-support: 0.5.21 - "@babel/regjsgen@0.8.0": {} + '@babel/regjsgen@0.8.0': {} - "@babel/runtime-corejs3@7.24.8": + '@babel/runtime-corejs3@7.24.8': dependencies: core-js-pure: 3.36.1 regenerator-runtime: 0.14.1 - "@babel/runtime@7.24.1": + '@babel/runtime@7.24.1': dependencies: regenerator-runtime: 0.14.1 - "@babel/runtime@7.25.0": + '@babel/runtime@7.25.0': dependencies: regenerator-runtime: 0.14.1 - "@babel/template@7.24.0": + '@babel/template@7.24.0': dependencies: - "@babel/code-frame": 7.24.6 - "@babel/parser": 7.24.1 - "@babel/types": 7.24.0 + '@babel/code-frame': 7.24.6 + '@babel/parser': 7.24.1 + '@babel/types': 7.24.0 - "@babel/traverse@7.24.1": + '@babel/traverse@7.24.1': dependencies: - "@babel/code-frame": 7.24.6 - "@babel/generator": 7.24.1 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-function-name": 7.23.0 - "@babel/helper-hoist-variables": 7.22.5 - "@babel/helper-split-export-declaration": 7.22.6 - "@babel/parser": 7.24.1 - "@babel/types": 7.24.0 + '@babel/code-frame': 7.24.6 + '@babel/generator': 7.24.1 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.24.1 + '@babel/types': 7.24.0 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color - "@babel/traverse@7.24.1(supports-color@5.5.0)": + '@babel/traverse@7.24.1(supports-color@5.5.0)': dependencies: - "@babel/code-frame": 7.24.6 - "@babel/generator": 7.24.1 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-function-name": 7.23.0 - "@babel/helper-hoist-variables": 7.22.5 - "@babel/helper-split-export-declaration": 7.22.6 - "@babel/parser": 7.24.1 - "@babel/types": 7.24.0 + '@babel/code-frame': 7.24.6 + '@babel/generator': 7.24.1 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + '@babel/parser': 7.24.1 + '@babel/types': 7.24.0 debug: 4.3.4(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: - supports-color - "@babel/types@7.24.0": + '@babel/types@7.24.0': dependencies: - "@babel/helper-string-parser": 7.24.1 - "@babel/helper-validator-identifier": 7.24.7 + '@babel/helper-string-parser': 7.24.1 + '@babel/helper-validator-identifier': 7.24.7 to-fast-properties: 2.0.0 - "@base2/pretty-print-object@1.0.1": {} + '@base2/pretty-print-object@1.0.1': {} - "@bcoe/v8-coverage@0.2.3": {} + '@bcoe/v8-coverage@0.2.3': {} - "@blooo/hw-app-acre@1.0.1": + '@blooo/hw-app-acre@1.0.1': dependencies: - "@ledgerhq/hw-transport": 6.31.3 - "@ledgerhq/logs": 6.12.0 + '@ledgerhq/hw-transport': 6.31.3 + '@ledgerhq/logs': 6.12.0 bip32-path: 0.4.2 bitcoinjs-lib: 5.2.0 bs58: 4.0.1 @@ -49077,44 +32802,44 @@ snapshots: typescript: 5.6.2 varuint-bitcoin: 1.1.2 - "@braintree/sanitize-url@6.0.4": {} + '@braintree/sanitize-url@6.0.4': {} - "@braze/react-native-sdk@8.4.0": {} + '@braze/react-native-sdk@8.4.0': {} - "@braze/web-sdk@4.10.2": {} + '@braze/web-sdk@4.10.2': {} - "@bundled-es-modules/cookie@2.0.0": + '@bundled-es-modules/cookie@2.0.0': dependencies: cookie: 0.5.0 - "@bundled-es-modules/statuses@1.0.1": + '@bundled-es-modules/statuses@1.0.1': dependencies: statuses: 2.0.1 - "@bundled-es-modules/tough-cookie@0.1.6": + '@bundled-es-modules/tough-cookie@0.1.6': dependencies: - "@types/tough-cookie": 4.0.5 + '@types/tough-cookie': 4.0.5 tough-cookie: 4.1.4 - "@cardano-foundation/ledgerjs-hw-app-cardano@7.1.2": + '@cardano-foundation/ledgerjs-hw-app-cardano@7.1.2': dependencies: - "@ledgerhq/hw-transport": 6.30.6 + '@ledgerhq/hw-transport': 6.30.6 base-x: 3.0.9 bech32: 1.1.4 int64-buffer: 1.0.1 - "@casperlabs/ts-results@3.3.5": + '@casperlabs/ts-results@3.3.5': dependencies: tslib: 2.6.2 - "@celo/base@3.2.0": {} + '@celo/base@3.2.0': {} - "@celo/connect@3.2.0": + '@celo/connect@3.2.0': dependencies: - "@celo/base": 3.2.0 - "@celo/utils": 3.2.0 - "@types/debug": 4.1.12 - "@types/utf8": 2.1.6 + '@celo/base': 3.2.0 + '@celo/utils': 3.2.0 + '@types/debug': 4.1.12 + '@types/utf8': 2.1.6 bignumber.js: 9.1.2 debug: 4.3.4 utf8: 3.0.0 @@ -49122,12 +32847,12 @@ snapshots: transitivePeerDependencies: - supports-color - "@celo/connect@3.2.0(web3@1.3.6)": + '@celo/connect@3.2.0(web3@1.3.6)': dependencies: - "@celo/base": 3.2.0 - "@celo/utils": 3.2.0 - "@types/debug": 4.1.12 - "@types/utf8": 2.1.6 + '@celo/base': 3.2.0 + '@celo/utils': 3.2.0 + '@types/debug': 4.1.12 + '@types/utf8': 2.1.6 bignumber.js: 9.1.2 debug: 4.3.4 utf8: 3.0.0 @@ -49136,14 +32861,14 @@ snapshots: transitivePeerDependencies: - supports-color - "@celo/contractkit@3.2.0": + '@celo/contractkit@3.2.0': dependencies: - "@celo/base": 3.2.0 - "@celo/connect": 3.2.0(web3@1.3.6) - "@celo/utils": 3.2.0 - "@celo/wallet-local": 3.2.0(web3@1.3.6) - "@types/bn.js": 5.1.5 - "@types/debug": 4.1.12 + '@celo/base': 3.2.0 + '@celo/connect': 3.2.0(web3@1.3.6) + '@celo/utils': 3.2.0 + '@celo/wallet-local': 3.2.0(web3@1.3.6) + '@types/bn.js': 5.1.5 + '@types/debug': 4.1.12 bignumber.js: 9.1.2 cross-fetch: 3.1.8 debug: 4.3.4 @@ -49158,13 +32883,13 @@ snapshots: - supports-color - utf-8-validate - "@celo/utils@3.2.0": + '@celo/utils@3.2.0': dependencies: - "@celo/base": 3.2.0 - "@types/bn.js": 5.1.5 - "@types/elliptic": 6.4.18 - "@types/ethereumjs-util": 5.2.0 - "@types/node": 10.17.60 + '@celo/base': 3.2.0 + '@types/bn.js': 5.1.5 + '@types/elliptic': 6.4.18 + '@types/ethereumjs-util': 5.2.0 + '@types/node': 10.17.60 bignumber.js: 9.1.2 elliptic: 6.5.5 ethereumjs-util: 5.2.1 @@ -49174,13 +32899,13 @@ snapshots: web3-eth-abi: 1.3.6 web3-utils: 1.3.6 - "@celo/wallet-base@3.2.0": + '@celo/wallet-base@3.2.0': dependencies: - "@celo/base": 3.2.0 - "@celo/connect": 3.2.0 - "@celo/utils": 3.2.0 - "@types/debug": 4.1.12 - "@types/ethereumjs-util": 5.2.0 + '@celo/base': 3.2.0 + '@celo/connect': 3.2.0 + '@celo/utils': 3.2.0 + '@types/debug': 4.1.12 + '@types/ethereumjs-util': 5.2.0 bignumber.js: 9.1.2 debug: 4.3.4 eth-lib: 0.2.8 @@ -49189,13 +32914,13 @@ snapshots: - supports-color - web3 - "@celo/wallet-base@3.2.0(web3@1.3.6)": + '@celo/wallet-base@3.2.0(web3@1.3.6)': dependencies: - "@celo/base": 3.2.0 - "@celo/connect": 3.2.0(web3@1.3.6) - "@celo/utils": 3.2.0 - "@types/debug": 4.1.12 - "@types/ethereumjs-util": 5.2.0 + '@celo/base': 3.2.0 + '@celo/connect': 3.2.0(web3@1.3.6) + '@celo/utils': 3.2.0 + '@types/debug': 4.1.12 + '@types/ethereumjs-util': 5.2.0 bignumber.js: 9.1.2 debug: 4.3.4 eth-lib: 0.2.8 @@ -49204,16 +32929,16 @@ snapshots: - supports-color - web3 - "@celo/wallet-ledger@3.2.0": + '@celo/wallet-ledger@3.2.0': dependencies: - "@celo/base": 3.2.0 - "@celo/connect": 3.2.0 - "@celo/utils": 3.2.0 - "@celo/wallet-base": 3.2.0 - "@celo/wallet-remote": 3.2.0 - "@ledgerhq/hw-app-eth": 5.11.0 - "@ledgerhq/hw-transport": 5.11.0 - "@types/ethereumjs-util": 5.2.0 + '@celo/base': 3.2.0 + '@celo/connect': 3.2.0 + '@celo/utils': 3.2.0 + '@celo/wallet-base': 3.2.0 + '@celo/wallet-remote': 3.2.0 + '@ledgerhq/hw-app-eth': 5.11.0 + '@ledgerhq/hw-transport': 5.11.0 + '@types/ethereumjs-util': 5.2.0 debug: 4.3.4 eth-lib: 0.2.8 ethereumjs-util: 5.2.1 @@ -49221,42 +32946,42 @@ snapshots: - supports-color - web3 - "@celo/wallet-local@3.2.0(web3@1.3.6)": + '@celo/wallet-local@3.2.0(web3@1.3.6)': dependencies: - "@celo/base": 3.2.0 - "@celo/connect": 3.2.0(web3@1.3.6) - "@celo/utils": 3.2.0 - "@celo/wallet-base": 3.2.0(web3@1.3.6) - "@types/ethereumjs-util": 5.2.0 + '@celo/base': 3.2.0 + '@celo/connect': 3.2.0(web3@1.3.6) + '@celo/utils': 3.2.0 + '@celo/wallet-base': 3.2.0(web3@1.3.6) + '@types/ethereumjs-util': 5.2.0 eth-lib: 0.2.8 ethereumjs-util: 5.2.1 transitivePeerDependencies: - supports-color - web3 - "@celo/wallet-remote@3.2.0": + '@celo/wallet-remote@3.2.0': dependencies: - "@celo/base": 3.2.0 - "@celo/connect": 3.2.0 - "@celo/utils": 3.2.0 - "@celo/wallet-base": 3.2.0 - "@types/debug": 4.1.12 - "@types/ethereumjs-util": 5.2.0 + '@celo/base': 3.2.0 + '@celo/connect': 3.2.0 + '@celo/utils': 3.2.0 + '@celo/wallet-base': 3.2.0 + '@types/debug': 4.1.12 + '@types/ethereumjs-util': 5.2.0 eth-lib: 0.2.8 ethereumjs-util: 5.2.1 transitivePeerDependencies: - supports-color - web3 - "@changesets/apply-release-plan@7.0.4": + '@changesets/apply-release-plan@7.0.4': dependencies: - "@babel/runtime": 7.25.0 - "@changesets/config": 3.0.2 - "@changesets/get-version-range-type": 0.4.0 - "@changesets/git": 3.0.0 - "@changesets/should-skip-package": 0.1.0 - "@changesets/types": 6.0.0 - "@manypkg/get-packages": 1.1.3 + '@babel/runtime': 7.25.0 + '@changesets/config': 3.0.2 + '@changesets/get-version-range-type': 0.4.0 + '@changesets/git': 3.0.0 + '@changesets/should-skip-package': 0.1.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 detect-indent: 6.1.0 fs-extra: 7.0.1 lodash.startcase: 4.4.0 @@ -49265,47 +32990,47 @@ snapshots: resolve-from: 5.0.0 semver: 7.6.3 - "@changesets/assemble-release-plan@6.0.3": + '@changesets/assemble-release-plan@6.0.3': dependencies: - "@babel/runtime": 7.25.0 - "@changesets/errors": 0.2.0 - "@changesets/get-dependents-graph": 2.1.1 - "@changesets/should-skip-package": 0.1.0 - "@changesets/types": 6.0.0 - "@manypkg/get-packages": 1.1.3 + '@babel/runtime': 7.25.0 + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.1.1 + '@changesets/should-skip-package': 0.1.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 semver: 7.6.3 - "@changesets/changelog-git@0.2.0": + '@changesets/changelog-git@0.2.0': dependencies: - "@changesets/types": 6.0.0 + '@changesets/types': 6.0.0 - "@changesets/changelog-github@0.5.0": + '@changesets/changelog-github@0.5.0': dependencies: - "@changesets/get-github-info": 0.6.0(patch_hash=7jzpsqogb5i6art53pk3h33ix4) - "@changesets/types": 6.0.0 + '@changesets/get-github-info': 0.6.0(patch_hash=7jzpsqogb5i6art53pk3h33ix4) + '@changesets/types': 6.0.0 dotenv: 8.6.0 transitivePeerDependencies: - encoding - "@changesets/cli@2.27.7": - dependencies: - "@babel/runtime": 7.25.0 - "@changesets/apply-release-plan": 7.0.4 - "@changesets/assemble-release-plan": 6.0.3 - "@changesets/changelog-git": 0.2.0 - "@changesets/config": 3.0.2 - "@changesets/errors": 0.2.0 - "@changesets/get-dependents-graph": 2.1.1 - "@changesets/get-release-plan": 4.0.3 - "@changesets/git": 3.0.0 - "@changesets/logger": 0.1.0 - "@changesets/pre": 2.0.0 - "@changesets/read": 0.6.0 - "@changesets/should-skip-package": 0.1.0 - "@changesets/types": 6.0.0 - "@changesets/write": 0.3.1 - "@manypkg/get-packages": 1.1.3 - "@types/semver": 7.5.8 + '@changesets/cli@2.27.7': + dependencies: + '@babel/runtime': 7.25.0 + '@changesets/apply-release-plan': 7.0.4 + '@changesets/assemble-release-plan': 6.0.3 + '@changesets/changelog-git': 0.2.0 + '@changesets/config': 3.0.2 + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.1.1 + '@changesets/get-release-plan': 4.0.3 + '@changesets/git': 3.0.0 + '@changesets/logger': 0.1.0 + '@changesets/pre': 2.0.0 + '@changesets/read': 0.6.0 + '@changesets/should-skip-package': 0.1.0 + '@changesets/types': 6.0.0 + '@changesets/write': 0.3.1 + '@manypkg/get-packages': 1.1.3 + '@types/semver': 7.5.8 ansi-colors: 4.1.3 chalk: 2.4.2 ci-info: 3.9.0 @@ -49322,224 +33047,224 @@ snapshots: spawndamnit: 2.0.0 term-size: 2.2.1 - "@changesets/config@3.0.2": + '@changesets/config@3.0.2': dependencies: - "@changesets/errors": 0.2.0 - "@changesets/get-dependents-graph": 2.1.1 - "@changesets/logger": 0.1.0 - "@changesets/types": 6.0.0 - "@manypkg/get-packages": 1.1.3 + '@changesets/errors': 0.2.0 + '@changesets/get-dependents-graph': 2.1.1 + '@changesets/logger': 0.1.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 micromatch: 4.0.7 - "@changesets/errors@0.2.0": + '@changesets/errors@0.2.0': dependencies: extendable-error: 0.1.7 - "@changesets/get-dependents-graph@2.1.1": + '@changesets/get-dependents-graph@2.1.1': dependencies: - "@changesets/types": 6.0.0 - "@manypkg/get-packages": 1.1.3 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 chalk: 2.4.2 fs-extra: 7.0.1 semver: 7.6.3 - "@changesets/get-github-info@0.6.0(patch_hash=7jzpsqogb5i6art53pk3h33ix4)": + '@changesets/get-github-info@0.6.0(patch_hash=7jzpsqogb5i6art53pk3h33ix4)': dependencies: dataloader: 1.4.0 node-fetch: 2.7.0 transitivePeerDependencies: - encoding - "@changesets/get-release-plan@4.0.3": + '@changesets/get-release-plan@4.0.3': dependencies: - "@babel/runtime": 7.25.0 - "@changesets/assemble-release-plan": 6.0.3 - "@changesets/config": 3.0.2 - "@changesets/pre": 2.0.0 - "@changesets/read": 0.6.0 - "@changesets/types": 6.0.0 - "@manypkg/get-packages": 1.1.3 + '@babel/runtime': 7.25.0 + '@changesets/assemble-release-plan': 6.0.3 + '@changesets/config': 3.0.2 + '@changesets/pre': 2.0.0 + '@changesets/read': 0.6.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 - "@changesets/get-version-range-type@0.4.0": {} + '@changesets/get-version-range-type@0.4.0': {} - "@changesets/git@3.0.0": + '@changesets/git@3.0.0': dependencies: - "@babel/runtime": 7.25.0 - "@changesets/errors": 0.2.0 - "@changesets/types": 6.0.0 - "@manypkg/get-packages": 1.1.3 + '@babel/runtime': 7.25.0 + '@changesets/errors': 0.2.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 is-subdir: 1.2.0 micromatch: 4.0.7 spawndamnit: 2.0.0 - "@changesets/logger@0.1.0": + '@changesets/logger@0.1.0': dependencies: chalk: 2.4.2 - "@changesets/parse@0.4.0": + '@changesets/parse@0.4.0': dependencies: - "@changesets/types": 6.0.0 + '@changesets/types': 6.0.0 js-yaml: 3.14.1 - "@changesets/pre@2.0.0": + '@changesets/pre@2.0.0': dependencies: - "@babel/runtime": 7.25.0 - "@changesets/errors": 0.2.0 - "@changesets/types": 6.0.0 - "@manypkg/get-packages": 1.1.3 + '@babel/runtime': 7.25.0 + '@changesets/errors': 0.2.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 fs-extra: 7.0.1 - "@changesets/read@0.6.0": + '@changesets/read@0.6.0': dependencies: - "@babel/runtime": 7.25.0 - "@changesets/git": 3.0.0 - "@changesets/logger": 0.1.0 - "@changesets/parse": 0.4.0 - "@changesets/types": 6.0.0 + '@babel/runtime': 7.25.0 + '@changesets/git': 3.0.0 + '@changesets/logger': 0.1.0 + '@changesets/parse': 0.4.0 + '@changesets/types': 6.0.0 chalk: 2.4.2 fs-extra: 7.0.1 p-filter: 2.1.0 - "@changesets/should-skip-package@0.1.0": + '@changesets/should-skip-package@0.1.0': dependencies: - "@babel/runtime": 7.25.0 - "@changesets/types": 6.0.0 - "@manypkg/get-packages": 1.1.3 + '@babel/runtime': 7.25.0 + '@changesets/types': 6.0.0 + '@manypkg/get-packages': 1.1.3 - "@changesets/types@4.1.0": {} + '@changesets/types@4.1.0': {} - "@changesets/types@6.0.0": {} + '@changesets/types@6.0.0': {} - "@changesets/write@0.3.1": + '@changesets/write@0.3.1': dependencies: - "@babel/runtime": 7.25.0 - "@changesets/types": 6.0.0 + '@babel/runtime': 7.25.0 + '@changesets/types': 6.0.0 fs-extra: 7.0.1 human-id: 1.0.2 prettier: 2.8.8 - "@codemirror/autocomplete@6.16.3(@codemirror/state@6.4.1)(@codemirror/view@6.28.2)": + '@codemirror/autocomplete@6.16.3(@codemirror/state@6.4.1)(@codemirror/view@6.28.2)': dependencies: - "@codemirror/language": 6.10.2 - "@codemirror/state": 6.4.1 - "@codemirror/view": 6.28.2 - "@lezer/common": 1.2.1 + '@codemirror/language': 6.10.2 + '@codemirror/state': 6.4.1 + '@codemirror/view': 6.28.2 + '@lezer/common': 1.2.1 - "@codemirror/commands@6.6.0": + '@codemirror/commands@6.6.0': dependencies: - "@codemirror/language": 6.10.2 - "@codemirror/state": 6.4.1 - "@codemirror/view": 6.28.2 - "@lezer/common": 1.2.1 + '@codemirror/language': 6.10.2 + '@codemirror/state': 6.4.1 + '@codemirror/view': 6.28.2 + '@lezer/common': 1.2.1 - "@codemirror/lang-json@6.0.1": + '@codemirror/lang-json@6.0.1': dependencies: - "@codemirror/language": 6.10.2 - "@lezer/json": 1.0.2 + '@codemirror/language': 6.10.2 + '@lezer/json': 1.0.2 - "@codemirror/language@6.10.2": + '@codemirror/language@6.10.2': dependencies: - "@codemirror/state": 6.4.1 - "@codemirror/view": 6.28.2 - "@lezer/common": 1.2.1 - "@lezer/highlight": 1.2.0 - "@lezer/lr": 1.4.1 + '@codemirror/state': 6.4.1 + '@codemirror/view': 6.28.2 + '@lezer/common': 1.2.1 + '@lezer/highlight': 1.2.0 + '@lezer/lr': 1.4.1 style-mod: 4.1.2 - "@codemirror/lint@6.8.1": + '@codemirror/lint@6.8.1': dependencies: - "@codemirror/state": 6.4.1 - "@codemirror/view": 6.28.2 + '@codemirror/state': 6.4.1 + '@codemirror/view': 6.28.2 crelt: 1.0.6 - "@codemirror/search@6.5.6": + '@codemirror/search@6.5.6': dependencies: - "@codemirror/state": 6.4.1 - "@codemirror/view": 6.28.2 + '@codemirror/state': 6.4.1 + '@codemirror/view': 6.28.2 crelt: 1.0.6 - "@codemirror/state@6.4.1": {} + '@codemirror/state@6.4.1': {} - "@codemirror/theme-one-dark@6.1.2": + '@codemirror/theme-one-dark@6.1.2': dependencies: - "@codemirror/language": 6.10.2 - "@codemirror/state": 6.4.1 - "@codemirror/view": 6.28.2 - "@lezer/highlight": 1.2.0 + '@codemirror/language': 6.10.2 + '@codemirror/state': 6.4.1 + '@codemirror/view': 6.28.2 + '@lezer/highlight': 1.2.0 - "@codemirror/view@6.28.2": + '@codemirror/view@6.28.2': dependencies: - "@codemirror/state": 6.4.1 + '@codemirror/state': 6.4.1 style-mod: 4.1.2 w3c-keyname: 2.2.8 - "@colors/colors@1.5.0": + '@colors/colors@1.5.0': optional: true - "@colors/colors@1.6.0": {} + '@colors/colors@1.6.0': {} - "@commitlint/cli@17.8.1": + '@commitlint/cli@17.8.1': dependencies: - "@commitlint/format": 17.8.1 - "@commitlint/lint": 17.8.1 - "@commitlint/load": 17.8.1 - "@commitlint/read": 17.8.1 - "@commitlint/types": 17.8.1 + '@commitlint/format': 17.8.1 + '@commitlint/lint': 17.8.1 + '@commitlint/load': 17.8.1 + '@commitlint/read': 17.8.1 + '@commitlint/types': 17.8.1 execa: 5.1.1 lodash.isfunction: 3.0.9 resolve-from: 5.0.0 resolve-global: 1.0.0 yargs: 17.7.2 transitivePeerDependencies: - - "@swc/core" - - "@swc/wasm" + - '@swc/core' + - '@swc/wasm' - source-map-support - "@commitlint/config-conventional@17.8.1": + '@commitlint/config-conventional@17.8.1': dependencies: conventional-changelog-conventionalcommits: 6.1.0 - "@commitlint/config-validator@17.8.1": + '@commitlint/config-validator@17.8.1': dependencies: - "@commitlint/types": 17.8.1 + '@commitlint/types': 17.8.1 ajv: 8.17.1 - "@commitlint/ensure@17.8.1": + '@commitlint/ensure@17.8.1': dependencies: - "@commitlint/types": 17.8.1 + '@commitlint/types': 17.8.1 lodash.camelcase: 4.3.0 lodash.kebabcase: 4.1.1 lodash.snakecase: 4.1.1 lodash.startcase: 4.4.0 lodash.upperfirst: 4.3.1 - "@commitlint/execute-rule@17.8.1": {} + '@commitlint/execute-rule@17.8.1': {} - "@commitlint/format@17.8.1": + '@commitlint/format@17.8.1': dependencies: - "@commitlint/types": 17.8.1 + '@commitlint/types': 17.8.1 chalk: 4.1.2 - "@commitlint/is-ignored@17.8.1": + '@commitlint/is-ignored@17.8.1': dependencies: - "@commitlint/types": 17.8.1 + '@commitlint/types': 17.8.1 semver: 7.5.4 - "@commitlint/lint@17.8.1": + '@commitlint/lint@17.8.1': dependencies: - "@commitlint/is-ignored": 17.8.1 - "@commitlint/parse": 17.8.1 - "@commitlint/rules": 17.8.1 - "@commitlint/types": 17.8.1 + '@commitlint/is-ignored': 17.8.1 + '@commitlint/parse': 17.8.1 + '@commitlint/rules': 17.8.1 + '@commitlint/types': 17.8.1 - "@commitlint/load@17.8.1": + '@commitlint/load@17.8.1': dependencies: - "@commitlint/config-validator": 17.8.1 - "@commitlint/execute-rule": 17.8.1 - "@commitlint/resolve-extends": 17.8.1 - "@commitlint/types": 17.8.1 - "@types/node": 20.5.1 + '@commitlint/config-validator': 17.8.1 + '@commitlint/execute-rule': 17.8.1 + '@commitlint/resolve-extends': 17.8.1 + '@commitlint/types': 17.8.1 + '@types/node': 20.5.1 chalk: 4.1.2 cosmiconfig: 8.3.6(typescript@5.4.5) cosmiconfig-typescript-loader: 4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6(typescript@5.4.5))(ts-node@10.9.2(@types/node@20.5.1)(typescript@5.4.5))(typescript@5.4.5) @@ -49550,113 +33275,113 @@ snapshots: ts-node: 10.9.2(@types/node@20.5.1)(typescript@5.4.5) typescript: 5.4.5 transitivePeerDependencies: - - "@swc/core" - - "@swc/wasm" + - '@swc/core' + - '@swc/wasm' - source-map-support - "@commitlint/message@17.8.1": {} + '@commitlint/message@17.8.1': {} - "@commitlint/parse@17.8.1": + '@commitlint/parse@17.8.1': dependencies: - "@commitlint/types": 17.8.1 + '@commitlint/types': 17.8.1 conventional-changelog-angular: 6.0.0 conventional-commits-parser: 4.0.0 - "@commitlint/prompt-cli@17.8.1": + '@commitlint/prompt-cli@17.8.1': dependencies: - "@commitlint/prompt": 17.8.1 + '@commitlint/prompt': 17.8.1 execa: 5.1.1 inquirer: 6.5.2 transitivePeerDependencies: - - "@swc/core" - - "@swc/wasm" + - '@swc/core' + - '@swc/wasm' - source-map-support - "@commitlint/prompt@17.8.1": + '@commitlint/prompt@17.8.1': dependencies: - "@commitlint/ensure": 17.8.1 - "@commitlint/load": 17.8.1 - "@commitlint/types": 17.8.1 + '@commitlint/ensure': 17.8.1 + '@commitlint/load': 17.8.1 + '@commitlint/types': 17.8.1 chalk: 4.1.2 inquirer: 6.5.2 transitivePeerDependencies: - - "@swc/core" - - "@swc/wasm" + - '@swc/core' + - '@swc/wasm' - source-map-support - "@commitlint/read@17.8.1": + '@commitlint/read@17.8.1': dependencies: - "@commitlint/top-level": 17.8.1 - "@commitlint/types": 17.8.1 + '@commitlint/top-level': 17.8.1 + '@commitlint/types': 17.8.1 fs-extra: 11.2.0 git-raw-commits: 2.0.11 minimist: 1.2.8 - "@commitlint/resolve-extends@17.8.1": + '@commitlint/resolve-extends@17.8.1': dependencies: - "@commitlint/config-validator": 17.8.1 - "@commitlint/types": 17.8.1 + '@commitlint/config-validator': 17.8.1 + '@commitlint/types': 17.8.1 import-fresh: 3.3.0 lodash.mergewith: 4.6.2 resolve-from: 5.0.0 resolve-global: 1.0.0 - "@commitlint/rules@17.8.1": + '@commitlint/rules@17.8.1': dependencies: - "@commitlint/ensure": 17.8.1 - "@commitlint/message": 17.8.1 - "@commitlint/to-lines": 17.8.1 - "@commitlint/types": 17.8.1 + '@commitlint/ensure': 17.8.1 + '@commitlint/message': 17.8.1 + '@commitlint/to-lines': 17.8.1 + '@commitlint/types': 17.8.1 execa: 5.1.1 - "@commitlint/to-lines@17.8.1": {} + '@commitlint/to-lines@17.8.1': {} - "@commitlint/top-level@17.8.1": + '@commitlint/top-level@17.8.1': dependencies: find-up: 5.0.0 - "@commitlint/types@17.8.1": + '@commitlint/types@17.8.1': dependencies: chalk: 4.1.2 - "@confio/ics23@0.6.8": + '@confio/ics23@0.6.8': dependencies: - "@noble/hashes": 1.4.0 + '@noble/hashes': 1.4.0 protobufjs: 6.11.4 - "@cosmjs/amino@0.25.0-alpha.2": + '@cosmjs/amino@0.25.0-alpha.2': dependencies: - "@cosmjs/crypto": 0.25.6 - "@cosmjs/encoding": 0.25.6 - "@cosmjs/math": 0.25.6 - "@cosmjs/utils": 0.25.6 + '@cosmjs/crypto': 0.25.6 + '@cosmjs/encoding': 0.25.6 + '@cosmjs/math': 0.25.6 + '@cosmjs/utils': 0.25.6 - "@cosmjs/amino@0.25.6": + '@cosmjs/amino@0.25.6': dependencies: - "@cosmjs/crypto": 0.25.6 - "@cosmjs/encoding": 0.25.6 - "@cosmjs/math": 0.25.6 - "@cosmjs/utils": 0.25.6 + '@cosmjs/crypto': 0.25.6 + '@cosmjs/encoding': 0.25.6 + '@cosmjs/math': 0.25.6 + '@cosmjs/utils': 0.25.6 - "@cosmjs/amino@0.26.8": + '@cosmjs/amino@0.26.8': dependencies: - "@cosmjs/crypto": 0.26.8 - "@cosmjs/encoding": 0.26.8 - "@cosmjs/math": 0.26.8 - "@cosmjs/utils": 0.26.8 + '@cosmjs/crypto': 0.26.8 + '@cosmjs/encoding': 0.26.8 + '@cosmjs/math': 0.26.8 + '@cosmjs/utils': 0.26.8 - "@cosmjs/amino@0.31.3": + '@cosmjs/amino@0.31.3': dependencies: - "@cosmjs/crypto": 0.31.3 - "@cosmjs/encoding": 0.31.3 - "@cosmjs/math": 0.31.3 - "@cosmjs/utils": 0.31.3 + '@cosmjs/crypto': 0.31.3 + '@cosmjs/encoding': 0.31.3 + '@cosmjs/math': 0.31.3 + '@cosmjs/utils': 0.31.3 - "@cosmjs/crypto@0.24.1": + '@cosmjs/crypto@0.24.1': dependencies: - "@cosmjs/encoding": 0.24.1 - "@cosmjs/math": 0.24.1 - "@cosmjs/utils": 0.24.1 + '@cosmjs/encoding': 0.24.1 + '@cosmjs/math': 0.24.1 + '@cosmjs/utils': 0.24.1 bip39: 3.1.0 bn.js: 4.12.0 elliptic: 6.5.5 @@ -49667,11 +33392,11 @@ snapshots: sha.js: 2.4.11 unorm: 1.6.0 - "@cosmjs/crypto@0.25.6": + '@cosmjs/crypto@0.25.6': dependencies: - "@cosmjs/encoding": 0.25.6 - "@cosmjs/math": 0.25.6 - "@cosmjs/utils": 0.25.6 + '@cosmjs/encoding': 0.25.6 + '@cosmjs/math': 0.25.6 + '@cosmjs/utils': 0.25.6 bip39: 3.1.0 bn.js: 4.12.0 elliptic: 6.5.5 @@ -49680,128 +33405,128 @@ snapshots: ripemd160: 2.0.2 sha.js: 2.4.11 - "@cosmjs/crypto@0.26.8": + '@cosmjs/crypto@0.26.8': dependencies: - "@cosmjs/encoding": 0.26.8 - "@cosmjs/math": 0.26.8 - "@cosmjs/utils": 0.26.8 - "@noble/hashes": 1.4.0 + '@cosmjs/encoding': 0.26.8 + '@cosmjs/math': 0.26.8 + '@cosmjs/utils': 0.26.8 + '@noble/hashes': 1.4.0 bn.js: 5.2.1 elliptic: 6.5.5 libsodium-wrappers: 0.7.13 - "@cosmjs/crypto@0.31.3": + '@cosmjs/crypto@0.31.3': dependencies: - "@cosmjs/encoding": 0.31.3 - "@cosmjs/math": 0.31.3 - "@cosmjs/utils": 0.31.3 - "@noble/hashes": 1.4.0 + '@cosmjs/encoding': 0.31.3 + '@cosmjs/math': 0.31.3 + '@cosmjs/utils': 0.31.3 + '@noble/hashes': 1.4.0 bn.js: 5.2.1 elliptic: 6.5.5 libsodium-wrappers-sumo: 0.7.13 - "@cosmjs/encoding@0.23.1": + '@cosmjs/encoding@0.23.1': dependencies: base64-js: 1.5.1 bech32: 1.1.4 readonly-date: 1.0.0 - "@cosmjs/encoding@0.24.1": + '@cosmjs/encoding@0.24.1': dependencies: base64-js: 1.5.1 bech32: 1.1.4 readonly-date: 1.0.0 - "@cosmjs/encoding@0.25.6": + '@cosmjs/encoding@0.25.6': dependencies: base64-js: 1.5.1 bech32: 1.1.4 readonly-date: 1.0.0 - "@cosmjs/encoding@0.26.8": + '@cosmjs/encoding@0.26.8': dependencies: base64-js: 1.5.1 bech32: 1.1.4 readonly-date: 1.0.0 - "@cosmjs/encoding@0.31.3": + '@cosmjs/encoding@0.31.3': dependencies: base64-js: 1.5.1 bech32: 1.1.4 readonly-date: 1.0.0 - "@cosmjs/json-rpc@0.25.6": + '@cosmjs/json-rpc@0.25.6': dependencies: - "@cosmjs/stream": 0.25.6 + '@cosmjs/stream': 0.25.6 xstream: 11.14.0 - "@cosmjs/json-rpc@0.26.8": + '@cosmjs/json-rpc@0.26.8': dependencies: - "@cosmjs/stream": 0.26.8 + '@cosmjs/stream': 0.26.8 xstream: 11.14.0 - "@cosmjs/launchpad@0.24.1": + '@cosmjs/launchpad@0.24.1': dependencies: - "@cosmjs/crypto": 0.24.1 - "@cosmjs/encoding": 0.24.1 - "@cosmjs/math": 0.24.1 - "@cosmjs/utils": 0.24.1 + '@cosmjs/crypto': 0.24.1 + '@cosmjs/encoding': 0.24.1 + '@cosmjs/math': 0.24.1 + '@cosmjs/utils': 0.24.1 axios: 0.21.4 fast-deep-equal: 3.1.3 - "@cosmjs/math@0.23.1": + '@cosmjs/math@0.23.1': dependencies: bn.js: 4.12.0 - "@cosmjs/math@0.24.1": + '@cosmjs/math@0.24.1': dependencies: bn.js: 4.12.0 - "@cosmjs/math@0.25.6": + '@cosmjs/math@0.25.6': dependencies: bn.js: 4.12.0 - "@cosmjs/math@0.26.8": + '@cosmjs/math@0.26.8': dependencies: bn.js: 5.2.1 - "@cosmjs/math@0.31.3": + '@cosmjs/math@0.31.3': dependencies: bn.js: 5.2.1 - "@cosmjs/proto-signing@0.24.1": + '@cosmjs/proto-signing@0.24.1': dependencies: - "@cosmjs/crypto": 0.24.1 - "@cosmjs/encoding": 0.24.1 - "@cosmjs/launchpad": 0.24.1 - "@cosmjs/math": 0.24.1 - "@cosmjs/utils": 0.24.1 + '@cosmjs/crypto': 0.24.1 + '@cosmjs/encoding': 0.24.1 + '@cosmjs/launchpad': 0.24.1 + '@cosmjs/math': 0.24.1 + '@cosmjs/utils': 0.24.1 long: 4.0.0 protobufjs: 6.10.3 - "@cosmjs/proto-signing@0.25.6": + '@cosmjs/proto-signing@0.25.6': dependencies: - "@cosmjs/amino": 0.25.6 - "@cosmjs/crypto": 0.25.6 - "@cosmjs/encoding": 0.25.6 - "@cosmjs/math": 0.25.6 - "@cosmjs/utils": 0.25.6 + '@cosmjs/amino': 0.25.6 + '@cosmjs/crypto': 0.25.6 + '@cosmjs/encoding': 0.25.6 + '@cosmjs/math': 0.25.6 + '@cosmjs/utils': 0.25.6 long: 4.0.0 protobufjs: 6.10.3 - "@cosmjs/proto-signing@0.26.8": + '@cosmjs/proto-signing@0.26.8': dependencies: - "@cosmjs/amino": 0.26.8 - "@cosmjs/crypto": 0.26.8 - "@cosmjs/encoding": 0.26.8 - "@cosmjs/math": 0.26.8 - "@cosmjs/utils": 0.26.8 + '@cosmjs/amino': 0.26.8 + '@cosmjs/crypto': 0.26.8 + '@cosmjs/encoding': 0.26.8 + '@cosmjs/math': 0.26.8 + '@cosmjs/utils': 0.26.8 cosmjs-types: 0.4.1 long: 4.0.0 - "@cosmjs/socket@0.25.6": + '@cosmjs/socket@0.25.6': dependencies: - "@cosmjs/stream": 0.25.6 + '@cosmjs/stream': 0.25.6 isomorphic-ws: 4.0.1(ws@7.5.10) ws: 7.5.10 xstream: 11.14.0 @@ -49809,9 +33534,9 @@ snapshots: - bufferutil - utf-8-validate - "@cosmjs/socket@0.26.8": + '@cosmjs/socket@0.26.8': dependencies: - "@cosmjs/stream": 0.26.8 + '@cosmjs/stream': 0.26.8 isomorphic-ws: 4.0.1(ws@7.5.10) ws: 7.5.10 xstream: 11.14.0 @@ -49819,32 +33544,32 @@ snapshots: - bufferutil - utf-8-validate - "@cosmjs/stargate@0.25.0-alpha.2": + '@cosmjs/stargate@0.25.0-alpha.2': dependencies: - "@confio/ics23": 0.6.8 - "@cosmjs/amino": 0.25.6 - "@cosmjs/encoding": 0.25.6 - "@cosmjs/math": 0.25.6 - "@cosmjs/proto-signing": 0.25.6 - "@cosmjs/stream": 0.25.6 - "@cosmjs/tendermint-rpc": 0.25.0-alpha.2 - "@cosmjs/utils": 0.25.6 + '@confio/ics23': 0.6.8 + '@cosmjs/amino': 0.25.6 + '@cosmjs/encoding': 0.25.6 + '@cosmjs/math': 0.25.6 + '@cosmjs/proto-signing': 0.25.6 + '@cosmjs/stream': 0.25.6 + '@cosmjs/tendermint-rpc': 0.25.0-alpha.2 + '@cosmjs/utils': 0.25.6 long: 4.0.0 protobufjs: 6.10.3 transitivePeerDependencies: - bufferutil - utf-8-validate - "@cosmjs/stargate@0.26.8": + '@cosmjs/stargate@0.26.8': dependencies: - "@confio/ics23": 0.6.8 - "@cosmjs/amino": 0.26.8 - "@cosmjs/encoding": 0.26.8 - "@cosmjs/math": 0.26.8 - "@cosmjs/proto-signing": 0.26.8 - "@cosmjs/stream": 0.26.8 - "@cosmjs/tendermint-rpc": 0.26.8 - "@cosmjs/utils": 0.26.8 + '@confio/ics23': 0.6.8 + '@cosmjs/amino': 0.26.8 + '@cosmjs/encoding': 0.26.8 + '@cosmjs/math': 0.26.8 + '@cosmjs/proto-signing': 0.26.8 + '@cosmjs/stream': 0.26.8 + '@cosmjs/tendermint-rpc': 0.26.8 + '@cosmjs/utils': 0.26.8 cosmjs-types: 0.4.1 long: 4.0.0 protobufjs: 6.11.4 @@ -49853,23 +33578,23 @@ snapshots: - bufferutil - utf-8-validate - "@cosmjs/stream@0.25.6": + '@cosmjs/stream@0.25.6': dependencies: xstream: 11.14.0 - "@cosmjs/stream@0.26.8": + '@cosmjs/stream@0.26.8': dependencies: xstream: 11.14.0 - "@cosmjs/tendermint-rpc@0.25.0-alpha.2": + '@cosmjs/tendermint-rpc@0.25.0-alpha.2': dependencies: - "@cosmjs/crypto": 0.25.6 - "@cosmjs/encoding": 0.25.6 - "@cosmjs/json-rpc": 0.25.6 - "@cosmjs/math": 0.25.6 - "@cosmjs/socket": 0.25.6 - "@cosmjs/stream": 0.25.6 - "@cosmjs/utils": 0.25.0-alpha.2 + '@cosmjs/crypto': 0.25.6 + '@cosmjs/encoding': 0.25.6 + '@cosmjs/json-rpc': 0.25.6 + '@cosmjs/math': 0.25.6 + '@cosmjs/socket': 0.25.6 + '@cosmjs/stream': 0.25.6 + '@cosmjs/utils': 0.25.0-alpha.2 axios: 0.21.4 readonly-date: 1.0.0 xstream: 11.14.0 @@ -49877,15 +33602,15 @@ snapshots: - bufferutil - utf-8-validate - "@cosmjs/tendermint-rpc@0.26.8": + '@cosmjs/tendermint-rpc@0.26.8': dependencies: - "@cosmjs/crypto": 0.26.8 - "@cosmjs/encoding": 0.26.8 - "@cosmjs/json-rpc": 0.26.8 - "@cosmjs/math": 0.26.8 - "@cosmjs/socket": 0.26.8 - "@cosmjs/stream": 0.26.8 - "@cosmjs/utils": 0.26.8 + '@cosmjs/crypto': 0.26.8 + '@cosmjs/encoding': 0.26.8 + '@cosmjs/json-rpc': 0.26.8 + '@cosmjs/math': 0.26.8 + '@cosmjs/socket': 0.26.8 + '@cosmjs/stream': 0.26.8 + '@cosmjs/utils': 0.26.8 axios: 0.21.4 readonly-date: 1.0.0 xstream: 11.14.0 @@ -49893,17 +33618,17 @@ snapshots: - bufferutil - utf-8-validate - "@cosmjs/utils@0.24.1": {} + '@cosmjs/utils@0.24.1': {} - "@cosmjs/utils@0.25.0-alpha.2": {} + '@cosmjs/utils@0.25.0-alpha.2': {} - "@cosmjs/utils@0.25.6": {} + '@cosmjs/utils@0.25.6': {} - "@cosmjs/utils@0.26.8": {} + '@cosmjs/utils@0.26.8': {} - "@cosmjs/utils@0.31.3": {} + '@cosmjs/utils@0.31.3': {} - "@craftamap/esbuild-plugin-html@0.6.1(esbuild@0.19.12)": + '@craftamap/esbuild-plugin-html@0.6.1(esbuild@0.19.12)': dependencies: esbuild: 0.19.12 jsdom: 17.0.0 @@ -49914,14 +33639,14 @@ snapshots: - supports-color - utf-8-validate - "@crypto-org-chain/chain-jslib@1.1.2": + '@crypto-org-chain/chain-jslib@1.1.2': dependencies: - "@cosmjs/amino": 0.25.0-alpha.2 - "@cosmjs/encoding": 0.23.1 - "@cosmjs/math": 0.23.1 - "@cosmjs/proto-signing": 0.24.1 - "@cosmjs/stargate": 0.25.0-alpha.2 - "@cosmjs/tendermint-rpc": 0.25.0-alpha.2 + '@cosmjs/amino': 0.25.0-alpha.2 + '@cosmjs/encoding': 0.23.1 + '@cosmjs/math': 0.23.1 + '@cosmjs/proto-signing': 0.24.1 + '@cosmjs/stargate': 0.25.0-alpha.2 + '@cosmjs/tendermint-rpc': 0.25.0-alpha.2 axios: 0.21.2 bech32: 1.1.4 big.js: 6.0.0 @@ -49944,220 +33669,220 @@ snapshots: - supports-color - utf-8-validate - "@cspotcode/source-map-support@0.8.1": + '@cspotcode/source-map-support@0.8.1': dependencies: - "@jridgewell/trace-mapping": 0.3.9 + '@jridgewell/trace-mapping': 0.3.9 - "@cspotcode/source-map-support@0.8.1(source-map-support@0.5.21)": + '@cspotcode/source-map-support@0.8.1(source-map-support@0.5.21)': dependencies: - "@jridgewell/trace-mapping": 0.3.9 + '@jridgewell/trace-mapping': 0.3.9 optionalDependencies: source-map-support: 0.5.21 - "@csstools/normalize.css@12.1.1": {} + '@csstools/normalize.css@12.1.1': {} - "@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.32)": + '@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.32)': dependencies: - "@csstools/selector-specificity": 2.2.0(postcss-selector-parser@6.0.16) + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.16) postcss: 8.4.32 postcss-selector-parser: 6.0.16 - "@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.38)": + '@csstools/postcss-cascade-layers@1.1.1(postcss@8.4.38)': dependencies: - "@csstools/selector-specificity": 2.2.0(postcss-selector-parser@6.0.16) + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.16) postcss: 8.4.38 postcss-selector-parser: 6.0.16 - "@csstools/postcss-color-function@1.1.1(postcss@8.4.32)": + '@csstools/postcss-color-function@1.1.1(postcss@8.4.32)': dependencies: - "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.32) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32) postcss: 8.4.32 postcss-value-parser: 4.2.0 - "@csstools/postcss-color-function@1.1.1(postcss@8.4.38)": + '@csstools/postcss-color-function@1.1.1(postcss@8.4.38)': dependencies: - "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.38) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.38) postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.32)": + '@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.32)': dependencies: postcss: 8.4.32 postcss-value-parser: 4.2.0 - "@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.38)": + '@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.38)': dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-hwb-function@1.0.2(postcss@8.4.32)": + '@csstools/postcss-hwb-function@1.0.2(postcss@8.4.32)': dependencies: postcss: 8.4.32 postcss-value-parser: 4.2.0 - "@csstools/postcss-hwb-function@1.0.2(postcss@8.4.38)": + '@csstools/postcss-hwb-function@1.0.2(postcss@8.4.38)': dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-ic-unit@1.0.1(postcss@8.4.32)": + '@csstools/postcss-ic-unit@1.0.1(postcss@8.4.32)': dependencies: - "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.32) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32) postcss: 8.4.32 postcss-value-parser: 4.2.0 - "@csstools/postcss-ic-unit@1.0.1(postcss@8.4.38)": + '@csstools/postcss-ic-unit@1.0.1(postcss@8.4.38)': dependencies: - "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.38) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.38) postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.32)": + '@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.32)': dependencies: - "@csstools/selector-specificity": 2.2.0(postcss-selector-parser@6.0.16) + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.16) postcss: 8.4.32 postcss-selector-parser: 6.0.16 - "@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.38)": + '@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.38)': dependencies: - "@csstools/selector-specificity": 2.2.0(postcss-selector-parser@6.0.16) + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.16) postcss: 8.4.38 postcss-selector-parser: 6.0.16 - "@csstools/postcss-nested-calc@1.0.0(postcss@8.4.32)": + '@csstools/postcss-nested-calc@1.0.0(postcss@8.4.32)': dependencies: postcss: 8.4.32 postcss-value-parser: 4.2.0 - "@csstools/postcss-nested-calc@1.0.0(postcss@8.4.38)": + '@csstools/postcss-nested-calc@1.0.0(postcss@8.4.38)': dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.32)": + '@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.32)': dependencies: postcss: 8.4.32 postcss-value-parser: 4.2.0 - "@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.38)": + '@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.38)': dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-oklab-function@1.1.1(postcss@8.4.32)": + '@csstools/postcss-oklab-function@1.1.1(postcss@8.4.32)': dependencies: - "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.32) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32) postcss: 8.4.32 postcss-value-parser: 4.2.0 - "@csstools/postcss-oklab-function@1.1.1(postcss@8.4.38)": + '@csstools/postcss-oklab-function@1.1.1(postcss@8.4.38)': dependencies: - "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.38) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.38) postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.32)": + '@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.32)': dependencies: postcss: 8.4.32 postcss-value-parser: 4.2.0 - "@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.38)": + '@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.38)': dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.32)": + '@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.32)': dependencies: postcss: 8.4.32 postcss-value-parser: 4.2.0 - "@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.38)": + '@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.38)': dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.32)": + '@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.32)': dependencies: postcss: 8.4.32 postcss-value-parser: 4.2.0 - "@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.38)": + '@csstools/postcss-text-decoration-shorthand@1.0.0(postcss@8.4.38)': dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.32)": + '@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.32)': dependencies: postcss: 8.4.32 postcss-value-parser: 4.2.0 - "@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.38)": + '@csstools/postcss-trigonometric-functions@1.0.2(postcss@8.4.38)': dependencies: postcss: 8.4.38 postcss-value-parser: 4.2.0 - "@csstools/postcss-unset-value@1.0.2(postcss@8.4.32)": + '@csstools/postcss-unset-value@1.0.2(postcss@8.4.32)': dependencies: postcss: 8.4.32 - "@csstools/postcss-unset-value@1.0.2(postcss@8.4.38)": + '@csstools/postcss-unset-value@1.0.2(postcss@8.4.38)': dependencies: postcss: 8.4.38 - "@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.16)": + '@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.16)': dependencies: postcss-selector-parser: 6.0.16 - "@dabh/diagnostics@2.0.3": + '@dabh/diagnostics@2.0.3': dependencies: colorspace: 1.1.4 enabled: 2.0.0 kuler: 2.0.0 - "@develar/schema-utils@2.6.5": + '@develar/schema-utils@2.6.5': dependencies: ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) - "@dfinity/agent@0.21.4(@dfinity/candid@0.21.4(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)))(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3))": + '@dfinity/agent@0.21.4(@dfinity/candid@0.21.4(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)))(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3))': dependencies: - "@dfinity/candid": 0.21.4(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)) - "@dfinity/principal": 0.15.7(@types/node@20.12.12)(typescript@5.1.3) - "@noble/curves": 1.4.0 - "@noble/hashes": 1.4.0 + '@dfinity/candid': 0.21.4(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)) + '@dfinity/principal': 0.15.7(@types/node@20.12.12)(typescript@5.1.3) + '@noble/curves': 1.4.0 + '@noble/hashes': 1.4.0 base64-arraybuffer: 0.2.0 borc: 2.1.2 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) simple-cbor: 0.4.1 - "@dfinity/candid@0.21.4(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3))": + '@dfinity/candid@0.21.4(@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3))': dependencies: - "@dfinity/principal": 0.15.7(@types/node@20.12.12)(typescript@5.1.3) + '@dfinity/principal': 0.15.7(@types/node@20.12.12)(typescript@5.1.3) - "@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)": + '@dfinity/principal@0.15.7(@types/node@20.12.12)(typescript@5.1.3)': dependencies: js-sha256: 0.9.0 ts-node: 10.9.2(@types/node@20.12.12)(typescript@5.1.3) transitivePeerDependencies: - - "@swc/core" - - "@swc/wasm" - - "@types/node" + - '@swc/core' + - '@swc/wasm' + - '@types/node' - source-map-support - typescript - "@discoveryjs/json-ext@0.5.7": {} + '@discoveryjs/json-ext@0.5.7': {} - "@egjs/hammerjs@2.0.17": + '@egjs/hammerjs@2.0.17': dependencies: - "@types/hammerjs": 2.0.45 + '@types/hammerjs': 2.0.45 - "@electron/asar@3.2.9": + '@electron/asar@3.2.9': dependencies: commander: 5.1.0 glob: 7.2.3 minimatch: 3.1.2 - "@electron/get@2.0.3": + '@electron/get@2.0.3': dependencies: debug: 4.3.4 env-paths: 2.2.1 @@ -50171,7 +33896,7 @@ snapshots: transitivePeerDependencies: - supports-color - "@electron/notarize@2.2.1": + '@electron/notarize@2.2.1': dependencies: debug: 4.3.4 fs-extra: 9.1.0 @@ -50179,7 +33904,7 @@ snapshots: transitivePeerDependencies: - supports-color - "@electron/notarize@2.3.2": + '@electron/notarize@2.3.2': dependencies: debug: 4.3.4 fs-extra: 9.1.0 @@ -50187,7 +33912,7 @@ snapshots: transitivePeerDependencies: - supports-color - "@electron/osx-sign@1.0.5": + '@electron/osx-sign@1.0.5': dependencies: compare-version: 0.1.2 debug: 4.3.4 @@ -50198,10 +33923,10 @@ snapshots: transitivePeerDependencies: - supports-color - "@electron/universal@1.5.1": + '@electron/universal@1.5.1': dependencies: - "@electron/asar": 3.2.9 - "@malept/cross-spawn-promise": 1.1.1 + '@electron/asar': 3.2.9 + '@malept/cross-spawn-promise': 1.1.1 debug: 4.3.4 dir-compare: 3.3.0 fs-extra: 9.1.0 @@ -50210,7 +33935,7 @@ snapshots: transitivePeerDependencies: - supports-color - "@elrondnetwork/erdjs-network-providers@1.2.0": + '@elrondnetwork/erdjs-network-providers@1.2.0': dependencies: axios: 0.24.0 bech32: 1.1.4 @@ -50218,9 +33943,9 @@ snapshots: buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) json-bigint: 1.0.0 - "@elrondnetwork/erdjs@11.0.0": + '@elrondnetwork/erdjs@11.0.0': dependencies: - "@elrondnetwork/transaction-decoder": 1.0.0 + '@elrondnetwork/transaction-decoder': 1.0.0 bech32: 1.1.4 bignumber.js: 9.0.1 blake2b: 2.1.3 @@ -50229,17 +33954,17 @@ snapshots: keccak: 3.0.2 protobufjs: 6.11.3 - "@elrondnetwork/transaction-decoder@1.0.0": + '@elrondnetwork/transaction-decoder@1.0.0': dependencies: bech32: 2.0.0 - "@emotion/babel-plugin@11.11.0": + '@emotion/babel-plugin@11.11.0': dependencies: - "@babel/helper-module-imports": 7.24.3 - "@babel/runtime": 7.25.0 - "@emotion/hash": 0.9.1 - "@emotion/memoize": 0.8.1 - "@emotion/serialize": 1.1.3 + '@babel/helper-module-imports': 7.24.3 + '@babel/runtime': 7.25.0 + '@emotion/hash': 0.9.1 + '@emotion/memoize': 0.8.1 + '@emotion/serialize': 1.1.3 babel-plugin-macros: 3.1.0 convert-source-map: 1.9.0 escape-string-regexp: 4.0.0 @@ -50247,352 +33972,352 @@ snapshots: source-map: 0.5.7 stylis: 4.2.0 - "@emotion/cache@10.0.29": + '@emotion/cache@10.0.29': dependencies: - "@emotion/sheet": 0.9.4 - "@emotion/stylis": 0.8.5 - "@emotion/utils": 0.11.3 - "@emotion/weak-memoize": 0.2.5 + '@emotion/sheet': 0.9.4 + '@emotion/stylis': 0.8.5 + '@emotion/utils': 0.11.3 + '@emotion/weak-memoize': 0.2.5 - "@emotion/cache@11.11.0": + '@emotion/cache@11.11.0': dependencies: - "@emotion/memoize": 0.8.1 - "@emotion/sheet": 1.2.2 - "@emotion/utils": 1.2.1 - "@emotion/weak-memoize": 0.3.1 + '@emotion/memoize': 0.8.1 + '@emotion/sheet': 1.2.2 + '@emotion/utils': 1.2.1 + '@emotion/weak-memoize': 0.3.1 stylis: 4.2.0 - "@emotion/core@10.3.1(react@18.2.0)": + '@emotion/core@10.3.1(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@emotion/cache": 10.0.29 - "@emotion/css": 10.0.27 - "@emotion/serialize": 0.11.16 - "@emotion/sheet": 0.9.4 - "@emotion/utils": 0.11.3 + '@babel/runtime': 7.25.0 + '@emotion/cache': 10.0.29 + '@emotion/css': 10.0.27 + '@emotion/serialize': 0.11.16 + '@emotion/sheet': 0.9.4 + '@emotion/utils': 0.11.3 react: 18.2.0 - "@emotion/core@11.0.0": {} + '@emotion/core@11.0.0': {} - "@emotion/css@10.0.27": + '@emotion/css@10.0.27': dependencies: - "@emotion/serialize": 0.11.16 - "@emotion/utils": 0.11.3 + '@emotion/serialize': 0.11.16 + '@emotion/utils': 0.11.3 babel-plugin-emotion: 10.2.2 - "@emotion/hash@0.8.0": {} + '@emotion/hash@0.8.0': {} - "@emotion/hash@0.9.1": {} + '@emotion/hash@0.9.1': {} - "@emotion/is-prop-valid@1.2.1": + '@emotion/is-prop-valid@1.2.1': dependencies: - "@emotion/memoize": 0.8.1 + '@emotion/memoize': 0.8.1 - "@emotion/is-prop-valid@1.2.2": + '@emotion/is-prop-valid@1.2.2': dependencies: - "@emotion/memoize": 0.8.1 + '@emotion/memoize': 0.8.1 - "@emotion/memoize@0.7.4": {} + '@emotion/memoize@0.7.4': {} - "@emotion/memoize@0.8.1": {} + '@emotion/memoize@0.8.1': {} - "@emotion/native@11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)": + '@emotion/native@11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)': dependencies: - "@emotion/primitives-core": 11.11.0(react@18.2.0) + '@emotion/primitives-core': 11.11.0(react@18.2.0) react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) transitivePeerDependencies: - - "@emotion/react" + - '@emotion/react' - react - "@emotion/primitives-core@11.11.0(react@18.2.0)": + '@emotion/primitives-core@11.11.0(react@18.2.0)': dependencies: css-to-react-native: 3.2.0 react: 18.2.0 - "@emotion/react@11.11.4(@types/react@18.2.73)(react@18.2.0)": + '@emotion/react@11.11.4(@types/react@18.2.73)(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@emotion/babel-plugin": 11.11.0 - "@emotion/cache": 11.11.0 - "@emotion/serialize": 1.1.3 - "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) - "@emotion/utils": 1.2.1 - "@emotion/weak-memoize": 0.3.1 + '@babel/runtime': 7.25.0 + '@emotion/babel-plugin': 11.11.0 + '@emotion/cache': 11.11.0 + '@emotion/serialize': 1.1.3 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) + '@emotion/utils': 1.2.1 + '@emotion/weak-memoize': 0.3.1 hoist-non-react-statics: 3.3.2 react: 18.2.0 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@emotion/react@11.11.4(@types/react@18.3.5)(react@18.3.1)": + '@emotion/react@11.11.4(@types/react@18.3.5)(react@18.3.1)': dependencies: - "@babel/runtime": 7.25.0 - "@emotion/babel-plugin": 11.11.0 - "@emotion/cache": 11.11.0 - "@emotion/serialize": 1.1.3 - "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.3.1) - "@emotion/utils": 1.2.1 - "@emotion/weak-memoize": 0.3.1 + '@babel/runtime': 7.25.0 + '@emotion/babel-plugin': 11.11.0 + '@emotion/cache': 11.11.0 + '@emotion/serialize': 1.1.3 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.3.1) + '@emotion/utils': 1.2.1 + '@emotion/weak-memoize': 0.3.1 hoist-non-react-statics: 3.3.2 react: 18.3.1 optionalDependencies: - "@types/react": 18.3.5 + '@types/react': 18.3.5 - "@emotion/serialize@0.11.16": + '@emotion/serialize@0.11.16': dependencies: - "@emotion/hash": 0.8.0 - "@emotion/memoize": 0.7.4 - "@emotion/unitless": 0.7.5 - "@emotion/utils": 0.11.3 + '@emotion/hash': 0.8.0 + '@emotion/memoize': 0.7.4 + '@emotion/unitless': 0.7.5 + '@emotion/utils': 0.11.3 csstype: 2.6.21 - "@emotion/serialize@1.1.3": + '@emotion/serialize@1.1.3': dependencies: - "@emotion/hash": 0.9.1 - "@emotion/memoize": 0.8.1 - "@emotion/unitless": 0.8.1 - "@emotion/utils": 1.2.1 + '@emotion/hash': 0.9.1 + '@emotion/memoize': 0.8.1 + '@emotion/unitless': 0.8.1 + '@emotion/utils': 1.2.1 csstype: 3.1.3 - "@emotion/sheet@0.9.4": {} + '@emotion/sheet@0.9.4': {} - "@emotion/sheet@1.2.2": {} + '@emotion/sheet@1.2.2': {} - "@emotion/stylis@0.8.5": {} + '@emotion/stylis@0.8.5': {} - "@emotion/unitless@0.7.5": {} + '@emotion/unitless@0.7.5': {} - "@emotion/unitless@0.8.0": {} + '@emotion/unitless@0.8.0': {} - "@emotion/unitless@0.8.1": {} + '@emotion/unitless@0.8.1': {} - "@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0)": + '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0)': dependencies: react: 18.2.0 - "@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1)": + '@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1)': dependencies: react: 18.3.1 - "@emotion/utils@0.11.3": {} + '@emotion/utils@0.11.3': {} - "@emotion/utils@1.2.1": {} + '@emotion/utils@1.2.1': {} - "@emotion/weak-memoize@0.2.5": {} + '@emotion/weak-memoize@0.2.5': {} - "@emotion/weak-memoize@0.3.1": {} + '@emotion/weak-memoize@0.3.1': {} - "@esbuild/aix-ppc64@0.19.12": + '@esbuild/aix-ppc64@0.19.12': optional: true - "@esbuild/aix-ppc64@0.20.2": + '@esbuild/aix-ppc64@0.20.2': optional: true - "@esbuild/android-arm64@0.18.20": + '@esbuild/android-arm64@0.18.20': optional: true - "@esbuild/android-arm64@0.19.12": + '@esbuild/android-arm64@0.19.12': optional: true - "@esbuild/android-arm64@0.20.2": + '@esbuild/android-arm64@0.20.2': optional: true - "@esbuild/android-arm@0.18.20": + '@esbuild/android-arm@0.18.20': optional: true - "@esbuild/android-arm@0.19.12": + '@esbuild/android-arm@0.19.12': optional: true - "@esbuild/android-arm@0.20.2": + '@esbuild/android-arm@0.20.2': optional: true - "@esbuild/android-x64@0.18.20": + '@esbuild/android-x64@0.18.20': optional: true - "@esbuild/android-x64@0.19.12": + '@esbuild/android-x64@0.19.12': optional: true - "@esbuild/android-x64@0.20.2": + '@esbuild/android-x64@0.20.2': optional: true - "@esbuild/darwin-arm64@0.18.20": + '@esbuild/darwin-arm64@0.18.20': optional: true - "@esbuild/darwin-arm64@0.19.12": + '@esbuild/darwin-arm64@0.19.12': optional: true - "@esbuild/darwin-arm64@0.20.2": + '@esbuild/darwin-arm64@0.20.2': optional: true - "@esbuild/darwin-x64@0.18.20": + '@esbuild/darwin-x64@0.18.20': optional: true - "@esbuild/darwin-x64@0.19.12": + '@esbuild/darwin-x64@0.19.12': optional: true - "@esbuild/darwin-x64@0.20.2": + '@esbuild/darwin-x64@0.20.2': optional: true - "@esbuild/freebsd-arm64@0.18.20": + '@esbuild/freebsd-arm64@0.18.20': optional: true - "@esbuild/freebsd-arm64@0.19.12": + '@esbuild/freebsd-arm64@0.19.12': optional: true - "@esbuild/freebsd-arm64@0.20.2": + '@esbuild/freebsd-arm64@0.20.2': optional: true - "@esbuild/freebsd-x64@0.18.20": + '@esbuild/freebsd-x64@0.18.20': optional: true - "@esbuild/freebsd-x64@0.19.12": + '@esbuild/freebsd-x64@0.19.12': optional: true - "@esbuild/freebsd-x64@0.20.2": + '@esbuild/freebsd-x64@0.20.2': optional: true - "@esbuild/linux-arm64@0.18.20": + '@esbuild/linux-arm64@0.18.20': optional: true - "@esbuild/linux-arm64@0.19.12": + '@esbuild/linux-arm64@0.19.12': optional: true - "@esbuild/linux-arm64@0.20.2": + '@esbuild/linux-arm64@0.20.2': optional: true - "@esbuild/linux-arm@0.18.20": + '@esbuild/linux-arm@0.18.20': optional: true - "@esbuild/linux-arm@0.19.12": + '@esbuild/linux-arm@0.19.12': optional: true - "@esbuild/linux-arm@0.20.2": + '@esbuild/linux-arm@0.20.2': optional: true - "@esbuild/linux-ia32@0.18.20": + '@esbuild/linux-ia32@0.18.20': optional: true - "@esbuild/linux-ia32@0.19.12": + '@esbuild/linux-ia32@0.19.12': optional: true - "@esbuild/linux-ia32@0.20.2": + '@esbuild/linux-ia32@0.20.2': optional: true - "@esbuild/linux-loong64@0.18.20": + '@esbuild/linux-loong64@0.18.20': optional: true - "@esbuild/linux-loong64@0.19.12": + '@esbuild/linux-loong64@0.19.12': optional: true - "@esbuild/linux-loong64@0.20.2": + '@esbuild/linux-loong64@0.20.2': optional: true - "@esbuild/linux-mips64el@0.18.20": + '@esbuild/linux-mips64el@0.18.20': optional: true - "@esbuild/linux-mips64el@0.19.12": + '@esbuild/linux-mips64el@0.19.12': optional: true - "@esbuild/linux-mips64el@0.20.2": + '@esbuild/linux-mips64el@0.20.2': optional: true - "@esbuild/linux-ppc64@0.18.20": + '@esbuild/linux-ppc64@0.18.20': optional: true - "@esbuild/linux-ppc64@0.19.12": + '@esbuild/linux-ppc64@0.19.12': optional: true - "@esbuild/linux-ppc64@0.20.2": + '@esbuild/linux-ppc64@0.20.2': optional: true - "@esbuild/linux-riscv64@0.18.20": + '@esbuild/linux-riscv64@0.18.20': optional: true - "@esbuild/linux-riscv64@0.19.12": + '@esbuild/linux-riscv64@0.19.12': optional: true - "@esbuild/linux-riscv64@0.20.2": + '@esbuild/linux-riscv64@0.20.2': optional: true - "@esbuild/linux-s390x@0.18.20": + '@esbuild/linux-s390x@0.18.20': optional: true - "@esbuild/linux-s390x@0.19.12": + '@esbuild/linux-s390x@0.19.12': optional: true - "@esbuild/linux-s390x@0.20.2": + '@esbuild/linux-s390x@0.20.2': optional: true - "@esbuild/linux-x64@0.18.20": + '@esbuild/linux-x64@0.18.20': optional: true - "@esbuild/linux-x64@0.19.12": + '@esbuild/linux-x64@0.19.12': optional: true - "@esbuild/linux-x64@0.20.2": + '@esbuild/linux-x64@0.20.2': optional: true - "@esbuild/netbsd-x64@0.18.20": + '@esbuild/netbsd-x64@0.18.20': optional: true - "@esbuild/netbsd-x64@0.19.12": + '@esbuild/netbsd-x64@0.19.12': optional: true - "@esbuild/netbsd-x64@0.20.2": + '@esbuild/netbsd-x64@0.20.2': optional: true - "@esbuild/openbsd-x64@0.18.20": + '@esbuild/openbsd-x64@0.18.20': optional: true - "@esbuild/openbsd-x64@0.19.12": + '@esbuild/openbsd-x64@0.19.12': optional: true - "@esbuild/openbsd-x64@0.20.2": + '@esbuild/openbsd-x64@0.20.2': optional: true - "@esbuild/sunos-x64@0.18.20": + '@esbuild/sunos-x64@0.18.20': optional: true - "@esbuild/sunos-x64@0.19.12": + '@esbuild/sunos-x64@0.19.12': optional: true - "@esbuild/sunos-x64@0.20.2": + '@esbuild/sunos-x64@0.20.2': optional: true - "@esbuild/win32-arm64@0.18.20": + '@esbuild/win32-arm64@0.18.20': optional: true - "@esbuild/win32-arm64@0.19.12": + '@esbuild/win32-arm64@0.19.12': optional: true - "@esbuild/win32-arm64@0.20.2": + '@esbuild/win32-arm64@0.20.2': optional: true - "@esbuild/win32-ia32@0.18.20": + '@esbuild/win32-ia32@0.18.20': optional: true - "@esbuild/win32-ia32@0.19.12": + '@esbuild/win32-ia32@0.19.12': optional: true - "@esbuild/win32-ia32@0.20.2": + '@esbuild/win32-ia32@0.20.2': optional: true - "@esbuild/win32-x64@0.18.20": + '@esbuild/win32-x64@0.18.20': optional: true - "@esbuild/win32-x64@0.19.12": + '@esbuild/win32-x64@0.19.12': optional: true - "@esbuild/win32-x64@0.20.2": + '@esbuild/win32-x64@0.20.2': optional: true - "@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)": + '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)': dependencies: eslint: 8.57.0 eslint-visitor-keys: 3.4.3 - "@eslint-community/regexpp@4.10.0": {} + '@eslint-community/regexpp@4.10.0': {} - "@eslint/eslintrc@2.1.4": + '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 debug: 4.3.4 @@ -50606,313 +34331,313 @@ snapshots: transitivePeerDependencies: - supports-color - "@eslint/js@8.57.0": {} + '@eslint/js@8.57.0': {} - "@ethereumjs/common@2.6.5": + '@ethereumjs/common@2.6.5': dependencies: crc-32: 1.2.2 ethereumjs-util: 7.1.5 - "@ethereumjs/tx@3.5.2": + '@ethereumjs/tx@3.5.2': dependencies: - "@ethereumjs/common": 2.6.5 + '@ethereumjs/common': 2.6.5 ethereumjs-util: 7.1.5 - "@ethersproject/abi@5.0.7": + '@ethersproject/abi@5.0.7': dependencies: - "@ethersproject/address": 5.7.0 - "@ethersproject/bignumber": 5.7.0 - "@ethersproject/bytes": 5.7.0 - "@ethersproject/constants": 5.7.0 - "@ethersproject/hash": 5.7.0 - "@ethersproject/keccak256": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/properties": 5.7.0 - "@ethersproject/strings": 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/hash': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/strings': 5.7.0 - "@ethersproject/abi@5.7.0": + '@ethersproject/abi@5.7.0': dependencies: - "@ethersproject/address": 5.7.0 - "@ethersproject/bignumber": 5.7.0 - "@ethersproject/bytes": 5.7.0 - "@ethersproject/constants": 5.7.0 - "@ethersproject/hash": 5.7.0 - "@ethersproject/keccak256": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/properties": 5.7.0 - "@ethersproject/strings": 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/hash': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/strings': 5.7.0 - "@ethersproject/abstract-provider@5.7.0": + '@ethersproject/abstract-provider@5.7.0': dependencies: - "@ethersproject/bignumber": 5.7.0 - "@ethersproject/bytes": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/networks": 5.7.1 - "@ethersproject/properties": 5.7.0 - "@ethersproject/transactions": 5.7.0 - "@ethersproject/web": 5.7.1 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/networks': 5.7.1 + '@ethersproject/properties': 5.7.0 + '@ethersproject/transactions': 5.7.0 + '@ethersproject/web': 5.7.1 - "@ethersproject/abstract-signer@5.7.0": + '@ethersproject/abstract-signer@5.7.0': dependencies: - "@ethersproject/abstract-provider": 5.7.0 - "@ethersproject/bignumber": 5.7.0 - "@ethersproject/bytes": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/properties": 5.7.0 + '@ethersproject/abstract-provider': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 - "@ethersproject/address@5.7.0": + '@ethersproject/address@5.7.0': dependencies: - "@ethersproject/bignumber": 5.7.0 - "@ethersproject/bytes": 5.7.0 - "@ethersproject/keccak256": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/rlp": 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/rlp': 5.7.0 - "@ethersproject/base64@5.7.0": + '@ethersproject/base64@5.7.0': dependencies: - "@ethersproject/bytes": 5.7.0 + '@ethersproject/bytes': 5.7.0 - "@ethersproject/basex@5.7.0": + '@ethersproject/basex@5.7.0': dependencies: - "@ethersproject/bytes": 5.7.0 - "@ethersproject/properties": 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/properties': 5.7.0 - "@ethersproject/bignumber@5.7.0": + '@ethersproject/bignumber@5.7.0': dependencies: - "@ethersproject/bytes": 5.7.0 - "@ethersproject/logger": 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 bn.js: 5.2.1 - "@ethersproject/bytes@5.7.0": - dependencies: - "@ethersproject/logger": 5.7.0 - - "@ethersproject/constants@5.7.0": - dependencies: - "@ethersproject/bignumber": 5.7.0 - - "@ethersproject/contracts@5.7.0": - dependencies: - "@ethersproject/abi": 5.7.0 - "@ethersproject/abstract-provider": 5.7.0 - "@ethersproject/abstract-signer": 5.7.0 - "@ethersproject/address": 5.7.0 - "@ethersproject/bignumber": 5.7.0 - "@ethersproject/bytes": 5.7.0 - "@ethersproject/constants": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/properties": 5.7.0 - "@ethersproject/transactions": 5.7.0 - - "@ethersproject/hash@5.7.0": - dependencies: - "@ethersproject/abstract-signer": 5.7.0 - "@ethersproject/address": 5.7.0 - "@ethersproject/base64": 5.7.0 - "@ethersproject/bignumber": 5.7.0 - "@ethersproject/bytes": 5.7.0 - "@ethersproject/keccak256": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/properties": 5.7.0 - "@ethersproject/strings": 5.7.0 - - "@ethersproject/hdnode@5.7.0": - dependencies: - "@ethersproject/abstract-signer": 5.7.0 - "@ethersproject/basex": 5.7.0 - "@ethersproject/bignumber": 5.7.0 - "@ethersproject/bytes": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/pbkdf2": 5.7.0 - "@ethersproject/properties": 5.7.0 - "@ethersproject/sha2": 5.7.0 - "@ethersproject/signing-key": 5.7.0 - "@ethersproject/strings": 5.7.0 - "@ethersproject/transactions": 5.7.0 - "@ethersproject/wordlists": 5.7.0 - - "@ethersproject/json-wallets@5.7.0": - dependencies: - "@ethersproject/abstract-signer": 5.7.0 - "@ethersproject/address": 5.7.0 - "@ethersproject/bytes": 5.7.0 - "@ethersproject/hdnode": 5.7.0 - "@ethersproject/keccak256": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/pbkdf2": 5.7.0 - "@ethersproject/properties": 5.7.0 - "@ethersproject/random": 5.7.0 - "@ethersproject/strings": 5.7.0 - "@ethersproject/transactions": 5.7.0 + '@ethersproject/bytes@5.7.0': + dependencies: + '@ethersproject/logger': 5.7.0 + + '@ethersproject/constants@5.7.0': + dependencies: + '@ethersproject/bignumber': 5.7.0 + + '@ethersproject/contracts@5.7.0': + dependencies: + '@ethersproject/abi': 5.7.0 + '@ethersproject/abstract-provider': 5.7.0 + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/transactions': 5.7.0 + + '@ethersproject/hash@5.7.0': + dependencies: + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/base64': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/strings': 5.7.0 + + '@ethersproject/hdnode@5.7.0': + dependencies: + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/basex': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/pbkdf2': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/sha2': 5.7.0 + '@ethersproject/signing-key': 5.7.0 + '@ethersproject/strings': 5.7.0 + '@ethersproject/transactions': 5.7.0 + '@ethersproject/wordlists': 5.7.0 + + '@ethersproject/json-wallets@5.7.0': + dependencies: + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/hdnode': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/pbkdf2': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/random': 5.7.0 + '@ethersproject/strings': 5.7.0 + '@ethersproject/transactions': 5.7.0 aes-js: 3.0.0 scrypt-js: 3.0.1 - "@ethersproject/keccak256@5.7.0": + '@ethersproject/keccak256@5.7.0': dependencies: - "@ethersproject/bytes": 5.7.0 + '@ethersproject/bytes': 5.7.0 js-sha3: 0.8.0 - "@ethersproject/logger@5.7.0": {} + '@ethersproject/logger@5.7.0': {} - "@ethersproject/networks@5.7.1": + '@ethersproject/networks@5.7.1': dependencies: - "@ethersproject/logger": 5.7.0 + '@ethersproject/logger': 5.7.0 - "@ethersproject/pbkdf2@5.7.0": + '@ethersproject/pbkdf2@5.7.0': dependencies: - "@ethersproject/bytes": 5.7.0 - "@ethersproject/sha2": 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/sha2': 5.7.0 - "@ethersproject/properties@5.7.0": + '@ethersproject/properties@5.7.0': dependencies: - "@ethersproject/logger": 5.7.0 + '@ethersproject/logger': 5.7.0 - "@ethersproject/providers@5.7.2": + '@ethersproject/providers@5.7.2': dependencies: - "@ethersproject/abstract-provider": 5.7.0 - "@ethersproject/abstract-signer": 5.7.0 - "@ethersproject/address": 5.7.0 - "@ethersproject/base64": 5.7.0 - "@ethersproject/basex": 5.7.0 - "@ethersproject/bignumber": 5.7.0 - "@ethersproject/bytes": 5.7.0 - "@ethersproject/constants": 5.7.0 - "@ethersproject/hash": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/networks": 5.7.1 - "@ethersproject/properties": 5.7.0 - "@ethersproject/random": 5.7.0 - "@ethersproject/rlp": 5.7.0 - "@ethersproject/sha2": 5.7.0 - "@ethersproject/strings": 5.7.0 - "@ethersproject/transactions": 5.7.0 - "@ethersproject/web": 5.7.1 + '@ethersproject/abstract-provider': 5.7.0 + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/base64': 5.7.0 + '@ethersproject/basex': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/hash': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/networks': 5.7.1 + '@ethersproject/properties': 5.7.0 + '@ethersproject/random': 5.7.0 + '@ethersproject/rlp': 5.7.0 + '@ethersproject/sha2': 5.7.0 + '@ethersproject/strings': 5.7.0 + '@ethersproject/transactions': 5.7.0 + '@ethersproject/web': 5.7.1 bech32: 1.1.4 ws: 7.5.10 transitivePeerDependencies: - bufferutil - utf-8-validate - "@ethersproject/random@5.7.0": + '@ethersproject/random@5.7.0': dependencies: - "@ethersproject/bytes": 5.7.0 - "@ethersproject/logger": 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 - "@ethersproject/rlp@5.7.0": + '@ethersproject/rlp@5.7.0': dependencies: - "@ethersproject/bytes": 5.7.0 - "@ethersproject/logger": 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 - "@ethersproject/sha2@5.7.0": + '@ethersproject/sha2@5.7.0': dependencies: - "@ethersproject/bytes": 5.7.0 - "@ethersproject/logger": 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 hash.js: 1.1.7 - "@ethersproject/shims@5.7.0": {} + '@ethersproject/shims@5.7.0': {} - "@ethersproject/signing-key@5.7.0": + '@ethersproject/signing-key@5.7.0': dependencies: - "@ethersproject/bytes": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/properties": 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 bn.js: 5.2.1 elliptic: 6.5.4 hash.js: 1.1.7 - "@ethersproject/solidity@5.7.0": - dependencies: - "@ethersproject/bignumber": 5.7.0 - "@ethersproject/bytes": 5.7.0 - "@ethersproject/keccak256": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/sha2": 5.7.0 - "@ethersproject/strings": 5.7.0 - - "@ethersproject/strings@5.7.0": - dependencies: - "@ethersproject/bytes": 5.7.0 - "@ethersproject/constants": 5.7.0 - "@ethersproject/logger": 5.7.0 - - "@ethersproject/transactions@5.7.0": - dependencies: - "@ethersproject/address": 5.7.0 - "@ethersproject/bignumber": 5.7.0 - "@ethersproject/bytes": 5.7.0 - "@ethersproject/constants": 5.7.0 - "@ethersproject/keccak256": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/properties": 5.7.0 - "@ethersproject/rlp": 5.7.0 - "@ethersproject/signing-key": 5.7.0 - - "@ethersproject/units@5.7.0": - dependencies: - "@ethersproject/bignumber": 5.7.0 - "@ethersproject/constants": 5.7.0 - "@ethersproject/logger": 5.7.0 - - "@ethersproject/wallet@5.7.0": - dependencies: - "@ethersproject/abstract-provider": 5.7.0 - "@ethersproject/abstract-signer": 5.7.0 - "@ethersproject/address": 5.7.0 - "@ethersproject/bignumber": 5.7.0 - "@ethersproject/bytes": 5.7.0 - "@ethersproject/hash": 5.7.0 - "@ethersproject/hdnode": 5.7.0 - "@ethersproject/json-wallets": 5.7.0 - "@ethersproject/keccak256": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/properties": 5.7.0 - "@ethersproject/random": 5.7.0 - "@ethersproject/signing-key": 5.7.0 - "@ethersproject/transactions": 5.7.0 - "@ethersproject/wordlists": 5.7.0 - - "@ethersproject/web@5.7.1": - dependencies: - "@ethersproject/base64": 5.7.0 - "@ethersproject/bytes": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/properties": 5.7.0 - "@ethersproject/strings": 5.7.0 - - "@ethersproject/wordlists@5.7.0": - dependencies: - "@ethersproject/bytes": 5.7.0 - "@ethersproject/hash": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/properties": 5.7.0 - "@ethersproject/strings": 5.7.0 - - "@expo/bunyan@4.0.0": + '@ethersproject/solidity@5.7.0': + dependencies: + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/sha2': 5.7.0 + '@ethersproject/strings': 5.7.0 + + '@ethersproject/strings@5.7.0': + dependencies: + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/logger': 5.7.0 + + '@ethersproject/transactions@5.7.0': + dependencies: + '@ethersproject/address': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/rlp': 5.7.0 + '@ethersproject/signing-key': 5.7.0 + + '@ethersproject/units@5.7.0': + dependencies: + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/logger': 5.7.0 + + '@ethersproject/wallet@5.7.0': + dependencies: + '@ethersproject/abstract-provider': 5.7.0 + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/hash': 5.7.0 + '@ethersproject/hdnode': 5.7.0 + '@ethersproject/json-wallets': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/random': 5.7.0 + '@ethersproject/signing-key': 5.7.0 + '@ethersproject/transactions': 5.7.0 + '@ethersproject/wordlists': 5.7.0 + + '@ethersproject/web@5.7.1': + dependencies: + '@ethersproject/base64': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/strings': 5.7.0 + + '@ethersproject/wordlists@5.7.0': + dependencies: + '@ethersproject/bytes': 5.7.0 + '@ethersproject/hash': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/strings': 5.7.0 + + '@expo/bunyan@4.0.0': dependencies: uuid: 8.3.2 optionalDependencies: mv: 2.1.1 safe-json-stringify: 1.2.0 - "@expo/cli@0.10.17(@expo/metro-config@0.10.7)(expo-modules-autolinking@1.5.1(epzs5mtkmt3672rwgv2fv7s7qa))(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)": - dependencies: - "@babel/runtime": 7.25.0 - "@expo/code-signing-certificates": 0.0.5 - "@expo/config": 8.1.2 - "@expo/config-plugins": 7.2.5 - "@expo/dev-server": 0.5.5 - "@expo/devcert": 1.1.0 - "@expo/env": 0.0.5 - "@expo/json-file": 8.3.0 - "@expo/osascript": 2.1.0 - "@expo/package-manager": 1.1.2 - "@expo/plist": 0.0.20 - "@expo/prebuild-config": 6.2.6(expo-modules-autolinking@1.5.1(epzs5mtkmt3672rwgv2fv7s7qa)) - "@expo/rudder-sdk-node": 1.1.1 - "@expo/spawn-async": 1.5.0 - "@expo/xcpretty": 4.3.1 - "@urql/core": 2.3.6(graphql@15.8.0) - "@urql/exchange-retry": 0.3.0(graphql@15.8.0) + '@expo/cli@0.10.17(@expo/metro-config@0.10.7)(expo-modules-autolinking@1.5.1(epzs5mtkmt3672rwgv2fv7s7qa))(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)': + dependencies: + '@babel/runtime': 7.25.0 + '@expo/code-signing-certificates': 0.0.5 + '@expo/config': 8.1.2 + '@expo/config-plugins': 7.2.5 + '@expo/dev-server': 0.5.5 + '@expo/devcert': 1.1.0 + '@expo/env': 0.0.5 + '@expo/json-file': 8.3.0 + '@expo/osascript': 2.1.0 + '@expo/package-manager': 1.1.2 + '@expo/plist': 0.0.20 + '@expo/prebuild-config': 6.2.6(expo-modules-autolinking@1.5.1(epzs5mtkmt3672rwgv2fv7s7qa)) + '@expo/rudder-sdk-node': 1.1.1 + '@expo/spawn-async': 1.5.0 + '@expo/xcpretty': 4.3.1 + '@urql/core': 2.3.6(graphql@15.8.0) + '@urql/exchange-retry': 0.3.0(graphql@15.8.0) accepts: 1.3.8 arg: 4.1.0 better-opn: 3.0.2 @@ -50959,7 +34684,7 @@ snapshots: wrap-ansi: 7.0.0 ws: 8.18.0 optionalDependencies: - "@expo/metro-config": 0.10.7 + '@expo/metro-config': 0.10.7 glob: 7.2.3 metro: 0.80.12 metro-core: 0.80.12 @@ -50972,27 +34697,27 @@ snapshots: - supports-color - utf-8-validate - "@expo/cli@0.18.30(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))": - dependencies: - "@babel/runtime": 7.25.0 - "@expo/code-signing-certificates": 0.0.5 - "@expo/config": 9.0.4 - "@expo/config-plugins": 8.0.10 - "@expo/devcert": 1.1.0 - "@expo/env": 0.3.0 - "@expo/image-utils": 0.5.1 - "@expo/json-file": 8.3.0 - "@expo/metro-config": 0.18.11 - "@expo/osascript": 2.1.0 - "@expo/package-manager": 1.5.2 - "@expo/plist": 0.1.0 - "@expo/prebuild-config": 7.0.9(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)) - "@expo/rudder-sdk-node": 1.1.1 - "@expo/spawn-async": 1.7.2 - "@expo/xcpretty": 4.3.1 - "@react-native/dev-middleware": 0.74.85 - "@urql/core": 2.3.6(graphql@15.8.0) - "@urql/exchange-retry": 0.3.0(graphql@15.8.0) + '@expo/cli@0.18.30(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))': + dependencies: + '@babel/runtime': 7.25.0 + '@expo/code-signing-certificates': 0.0.5 + '@expo/config': 9.0.4 + '@expo/config-plugins': 8.0.10 + '@expo/devcert': 1.1.0 + '@expo/env': 0.3.0 + '@expo/image-utils': 0.5.1 + '@expo/json-file': 8.3.0 + '@expo/metro-config': 0.18.11 + '@expo/osascript': 2.1.0 + '@expo/package-manager': 1.5.2 + '@expo/plist': 0.1.0 + '@expo/prebuild-config': 7.0.9(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)) + '@expo/rudder-sdk-node': 1.1.1 + '@expo/spawn-async': 1.7.2 + '@expo/xcpretty': 4.3.1 + '@react-native/dev-middleware': 0.74.85 + '@urql/core': 2.3.6(graphql@15.8.0) + '@urql/exchange-retry': 0.3.0(graphql@15.8.0) accepts: 1.3.8 arg: 5.0.2 better-opn: 3.0.2 @@ -51058,18 +34783,18 @@ snapshots: - supports-color - utf-8-validate - "@expo/code-signing-certificates@0.0.5": + '@expo/code-signing-certificates@0.0.5': dependencies: node-forge: 1.3.1 nullthrows: 1.1.1 - "@expo/config-plugins@4.1.5": + '@expo/config-plugins@4.1.5': dependencies: - "@expo/config-types": 45.0.0 - "@expo/json-file": 8.2.36 - "@expo/plist": 0.0.18 - "@expo/sdk-runtime-versions": 1.0.0 - "@react-native/normalize-color": 2.1.0 + '@expo/config-types': 45.0.0 + '@expo/json-file': 8.2.36 + '@expo/plist': 0.0.18 + '@expo/sdk-runtime-versions': 1.0.0 + '@react-native/normalize-color': 2.1.0 chalk: 4.1.2 debug: 4.3.4 find-up: 5.0.0 @@ -51083,13 +34808,13 @@ snapshots: transitivePeerDependencies: - supports-color - "@expo/config-plugins@7.2.5": + '@expo/config-plugins@7.2.5': dependencies: - "@expo/config-types": 49.0.0 - "@expo/json-file": 8.2.37 - "@expo/plist": 0.0.20 - "@expo/sdk-runtime-versions": 1.0.0 - "@react-native/normalize-color": 2.1.0 + '@expo/config-types': 49.0.0 + '@expo/json-file': 8.2.37 + '@expo/plist': 0.0.20 + '@expo/sdk-runtime-versions': 1.0.0 + '@react-native/normalize-color': 2.1.0 chalk: 4.1.2 debug: 4.3.4 find-up: 5.0.0 @@ -51103,13 +34828,13 @@ snapshots: transitivePeerDependencies: - supports-color - "@expo/config-plugins@7.3.1": + '@expo/config-plugins@7.3.1': dependencies: - "@expo/config-types": 49.0.0 - "@expo/json-file": 8.2.37 - "@expo/plist": 0.0.20 - "@expo/sdk-runtime-versions": 1.0.0 - "@react-native/normalize-color": 2.1.0 + '@expo/config-types': 49.0.0 + '@expo/json-file': 8.2.37 + '@expo/plist': 0.0.20 + '@expo/sdk-runtime-versions': 1.0.0 + '@react-native/normalize-color': 2.1.0 chalk: 4.1.2 debug: 4.3.4 find-up: 5.0.0 @@ -51123,14 +34848,14 @@ snapshots: transitivePeerDependencies: - supports-color - "@expo/config-plugins@7.8.4": + '@expo/config-plugins@7.8.4': dependencies: - "@expo/config-types": 50.0.0 - "@expo/fingerprint": 0.6.0 - "@expo/json-file": 8.3.0 - "@expo/plist": 0.1.0 - "@expo/sdk-runtime-versions": 1.0.0 - "@react-native/normalize-color": 2.1.0 + '@expo/config-types': 50.0.0 + '@expo/fingerprint': 0.6.0 + '@expo/json-file': 8.3.0 + '@expo/plist': 0.1.0 + '@expo/sdk-runtime-versions': 1.0.0 + '@react-native/normalize-color': 2.1.0 chalk: 4.1.2 debug: 4.3.4 find-up: 5.0.0 @@ -51145,12 +34870,12 @@ snapshots: transitivePeerDependencies: - supports-color - "@expo/config-plugins@8.0.10": + '@expo/config-plugins@8.0.10': dependencies: - "@expo/config-types": 51.0.3 - "@expo/json-file": 8.3.0 - "@expo/plist": 0.1.0 - "@expo/sdk-runtime-versions": 1.0.0 + '@expo/config-types': 51.0.3 + '@expo/json-file': 8.3.0 + '@expo/plist': 0.1.0 + '@expo/sdk-runtime-versions': 1.0.0 chalk: 4.1.2 debug: 4.3.4 find-up: 5.0.0 @@ -51165,12 +34890,12 @@ snapshots: transitivePeerDependencies: - supports-color - "@expo/config-plugins@8.0.4": + '@expo/config-plugins@8.0.4': dependencies: - "@expo/config-types": 51.0.3 - "@expo/json-file": 8.3.0 - "@expo/plist": 0.1.0 - "@expo/sdk-runtime-versions": 1.0.0 + '@expo/config-types': 51.0.3 + '@expo/json-file': 8.3.0 + '@expo/plist': 0.1.0 + '@expo/sdk-runtime-versions': 1.0.0 chalk: 4.1.2 debug: 4.3.4 find-up: 5.0.0 @@ -51185,20 +34910,20 @@ snapshots: transitivePeerDependencies: - supports-color - "@expo/config-types@45.0.0": {} + '@expo/config-types@45.0.0': {} - "@expo/config-types@49.0.0": {} + '@expo/config-types@49.0.0': {} - "@expo/config-types@50.0.0": {} + '@expo/config-types@50.0.0': {} - "@expo/config-types@51.0.3": {} + '@expo/config-types@51.0.3': {} - "@expo/config@8.1.2": + '@expo/config@8.1.2': dependencies: - "@babel/code-frame": 7.10.4 - "@expo/config-plugins": 7.2.5 - "@expo/config-types": 49.0.0 - "@expo/json-file": 8.3.0 + '@babel/code-frame': 7.10.4 + '@expo/config-plugins': 7.2.5 + '@expo/config-types': 49.0.0 + '@expo/json-file': 8.3.0 getenv: 1.0.0 glob: 7.1.6 require-from-string: 2.0.2 @@ -51209,12 +34934,12 @@ snapshots: transitivePeerDependencies: - supports-color - "@expo/config@8.2.1": + '@expo/config@8.2.1': dependencies: - "@babel/code-frame": 7.10.4 - "@expo/config-plugins": 7.3.1 - "@expo/config-types": 49.0.0 - "@expo/json-file": 8.3.0 + '@babel/code-frame': 7.10.4 + '@expo/config-plugins': 7.3.1 + '@expo/config-types': 49.0.0 + '@expo/json-file': 8.3.0 getenv: 1.0.0 glob: 7.1.6 require-from-string: 2.0.2 @@ -51225,12 +34950,12 @@ snapshots: transitivePeerDependencies: - supports-color - "@expo/config@9.0.1": + '@expo/config@9.0.1': dependencies: - "@babel/code-frame": 7.10.4 - "@expo/config-plugins": 8.0.4 - "@expo/config-types": 51.0.3 - "@expo/json-file": 8.3.0 + '@babel/code-frame': 7.10.4 + '@expo/config-plugins': 8.0.4 + '@expo/config-types': 51.0.3 + '@expo/json-file': 8.3.0 getenv: 1.0.0 glob: 7.1.6 require-from-string: 2.0.2 @@ -51241,12 +34966,12 @@ snapshots: transitivePeerDependencies: - supports-color - "@expo/config@9.0.4": + '@expo/config@9.0.4': dependencies: - "@babel/code-frame": 7.10.4 - "@expo/config-plugins": 8.0.10 - "@expo/config-types": 51.0.3 - "@expo/json-file": 8.3.0 + '@babel/code-frame': 7.10.4 + '@expo/config-plugins': 8.0.10 + '@expo/config-types': 51.0.3 + '@expo/json-file': 8.3.0 getenv: 1.0.0 glob: 7.1.6 require-from-string: 2.0.2 @@ -51257,13 +34982,13 @@ snapshots: transitivePeerDependencies: - supports-color - "@expo/dev-server@0.5.5": + '@expo/dev-server@0.5.5': dependencies: - "@expo/bunyan": 4.0.0 - "@expo/config": 9.0.1 - "@expo/metro-config": 0.10.7 - "@expo/osascript": 2.0.33 - "@expo/spawn-async": 1.7.2 + '@expo/bunyan': 4.0.0 + '@expo/config': 9.0.1 + '@expo/metro-config': 0.10.7 + '@expo/osascript': 2.0.33 + '@expo/spawn-async': 1.7.2 body-parser: 1.20.2 chalk: 4.1.2 connect: 3.7.0 @@ -51280,7 +35005,7 @@ snapshots: - encoding - supports-color - "@expo/devcert@1.1.0": + '@expo/devcert@1.1.0': dependencies: application-config-path: 0.1.1 command-exists: 1.2.9 @@ -51298,7 +35023,7 @@ snapshots: transitivePeerDependencies: - supports-color - "@expo/env@0.0.5": + '@expo/env@0.0.5': dependencies: chalk: 4.1.2 debug: 4.3.4 @@ -51308,7 +35033,7 @@ snapshots: transitivePeerDependencies: - supports-color - "@expo/env@0.3.0": + '@expo/env@0.3.0': dependencies: chalk: 4.1.2 debug: 4.3.4 @@ -51318,9 +35043,9 @@ snapshots: transitivePeerDependencies: - supports-color - "@expo/fingerprint@0.6.0": + '@expo/fingerprint@0.6.0': dependencies: - "@expo/spawn-async": 1.7.2 + '@expo/spawn-async': 1.7.2 chalk: 4.1.2 debug: 4.3.4 find-up: 5.0.0 @@ -51330,9 +35055,9 @@ snapshots: transitivePeerDependencies: - supports-color - "@expo/image-utils@0.3.22": + '@expo/image-utils@0.3.22': dependencies: - "@expo/spawn-async": 1.5.0 + '@expo/spawn-async': 1.5.0 chalk: 4.1.2 fs-extra: 9.0.0 getenv: 1.0.0 @@ -51346,9 +35071,9 @@ snapshots: transitivePeerDependencies: - encoding - "@expo/image-utils@0.3.23": + '@expo/image-utils@0.3.23': dependencies: - "@expo/spawn-async": 1.5.0 + '@expo/spawn-async': 1.5.0 chalk: 4.1.2 fs-extra: 9.0.0 getenv: 1.0.0 @@ -51362,9 +35087,9 @@ snapshots: transitivePeerDependencies: - encoding - "@expo/image-utils@0.5.1": + '@expo/image-utils@0.5.1': dependencies: - "@expo/spawn-async": 1.7.2 + '@expo/spawn-async': 1.7.2 chalk: 4.1.2 fs-extra: 9.0.0 getenv: 1.0.0 @@ -51377,29 +35102,29 @@ snapshots: transitivePeerDependencies: - encoding - "@expo/json-file@8.2.36": + '@expo/json-file@8.2.36': dependencies: - "@babel/code-frame": 7.10.4 + '@babel/code-frame': 7.10.4 json5: 1.0.2 write-file-atomic: 2.4.3 - "@expo/json-file@8.2.37": + '@expo/json-file@8.2.37': dependencies: - "@babel/code-frame": 7.10.4 + '@babel/code-frame': 7.10.4 json5: 2.2.3 write-file-atomic: 2.4.3 - "@expo/json-file@8.3.0": + '@expo/json-file@8.3.0': dependencies: - "@babel/code-frame": 7.10.4 + '@babel/code-frame': 7.10.4 json5: 2.2.3 write-file-atomic: 2.4.3 - "@expo/metro-config@0.10.7": + '@expo/metro-config@0.10.7': dependencies: - "@expo/config": 8.1.2 - "@expo/env": 0.0.5 - "@expo/json-file": 8.2.37 + '@expo/config': 8.1.2 + '@expo/env': 0.0.5 + '@expo/json-file': 8.2.37 chalk: 4.1.2 debug: 4.3.4 find-yarn-workspace-root: 2.0.0 @@ -51413,16 +35138,16 @@ snapshots: transitivePeerDependencies: - supports-color - "@expo/metro-config@0.18.11": + '@expo/metro-config@0.18.11': dependencies: - "@babel/core": 7.24.3 - "@babel/generator": 7.24.1 - "@babel/parser": 7.24.1 - "@babel/types": 7.24.0 - "@expo/config": 9.0.4 - "@expo/env": 0.3.0 - "@expo/json-file": 8.3.0 - "@expo/spawn-async": 1.7.2 + '@babel/core': 7.24.3 + '@babel/generator': 7.24.1 + '@babel/parser': 7.24.1 + '@babel/types': 7.24.0 + '@expo/config': 9.0.4 + '@expo/env': 0.3.0 + '@expo/json-file': 8.3.0 + '@expo/spawn-async': 1.7.2 chalk: 4.1.2 debug: 4.3.4 find-yarn-workspace-root: 2.0.0 @@ -51436,20 +35161,20 @@ snapshots: transitivePeerDependencies: - supports-color - "@expo/osascript@2.0.33": + '@expo/osascript@2.0.33': dependencies: - "@expo/spawn-async": 1.7.2 + '@expo/spawn-async': 1.7.2 exec-async: 2.2.0 - "@expo/osascript@2.1.0": + '@expo/osascript@2.1.0': dependencies: - "@expo/spawn-async": 1.7.2 + '@expo/spawn-async': 1.7.2 exec-async: 2.2.0 - "@expo/package-manager@1.1.2": + '@expo/package-manager@1.1.2': dependencies: - "@expo/json-file": 8.3.0 - "@expo/spawn-async": 1.7.2 + '@expo/json-file': 8.3.0 + '@expo/spawn-async': 1.7.2 ansi-regex: 5.0.1 chalk: 4.1.2 find-up: 5.0.0 @@ -51460,10 +35185,10 @@ snapshots: split: 1.0.1 sudo-prompt: 9.1.1 - "@expo/package-manager@1.5.2": + '@expo/package-manager@1.5.2': dependencies: - "@expo/json-file": 8.3.0 - "@expo/spawn-async": 1.7.2 + '@expo/json-file': 8.3.0 + '@expo/spawn-async': 1.7.2 ansi-regex: 5.0.1 chalk: 4.1.2 find-up: 5.0.0 @@ -51475,31 +35200,31 @@ snapshots: split: 1.0.1 sudo-prompt: 9.1.1 - "@expo/plist@0.0.18": + '@expo/plist@0.0.18': dependencies: - "@xmldom/xmldom": 0.7.13 + '@xmldom/xmldom': 0.7.13 base64-js: 1.5.1 xmlbuilder: 14.0.0 - "@expo/plist@0.0.20": + '@expo/plist@0.0.20': dependencies: - "@xmldom/xmldom": 0.7.13 + '@xmldom/xmldom': 0.7.13 base64-js: 1.5.1 xmlbuilder: 14.0.0 - "@expo/plist@0.1.0": + '@expo/plist@0.1.0': dependencies: - "@xmldom/xmldom": 0.7.13 + '@xmldom/xmldom': 0.7.13 base64-js: 1.5.1 xmlbuilder: 14.0.0 - "@expo/prebuild-config@6.2.6(expo-modules-autolinking@1.5.1(epzs5mtkmt3672rwgv2fv7s7qa))": + '@expo/prebuild-config@6.2.6(expo-modules-autolinking@1.5.1(epzs5mtkmt3672rwgv2fv7s7qa))': dependencies: - "@expo/config": 8.1.2 - "@expo/config-plugins": 7.2.5 - "@expo/config-types": 49.0.0 - "@expo/image-utils": 0.3.22 - "@expo/json-file": 8.3.0 + '@expo/config': 8.1.2 + '@expo/config-plugins': 7.2.5 + '@expo/config-types': 49.0.0 + '@expo/image-utils': 0.3.22 + '@expo/json-file': 8.3.0 debug: 4.3.4 expo-modules-autolinking: 1.5.1(epzs5mtkmt3672rwgv2fv7s7qa) fs-extra: 9.1.0 @@ -51510,14 +35235,14 @@ snapshots: - encoding - supports-color - "@expo/prebuild-config@7.0.9(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))": + '@expo/prebuild-config@7.0.9(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))': dependencies: - "@expo/config": 9.0.4 - "@expo/config-plugins": 8.0.10 - "@expo/config-types": 51.0.3 - "@expo/image-utils": 0.5.1 - "@expo/json-file": 8.3.0 - "@react-native/normalize-colors": 0.74.85 + '@expo/config': 9.0.4 + '@expo/config-plugins': 8.0.10 + '@expo/config-types': 51.0.3 + '@expo/image-utils': 0.5.1 + '@expo/json-file': 8.3.0 + '@react-native/normalize-colors': 0.74.85 debug: 4.3.4 expo-modules-autolinking: 1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) fs-extra: 9.1.0 @@ -51528,10 +35253,10 @@ snapshots: - encoding - supports-color - "@expo/rudder-sdk-node@1.1.1": + '@expo/rudder-sdk-node@1.1.1': dependencies: - "@expo/bunyan": 4.0.0 - "@segment/loosely-validate-event": 2.0.0 + '@expo/bunyan': 4.0.0 + '@segment/loosely-validate-event': 2.0.0 fetch-retry: 4.1.1 md5: 2.3.0 node-fetch: 2.7.0 @@ -51540,25 +35265,25 @@ snapshots: transitivePeerDependencies: - encoding - "@expo/sdk-runtime-versions@1.0.0": {} + '@expo/sdk-runtime-versions@1.0.0': {} - "@expo/spawn-async@1.5.0": + '@expo/spawn-async@1.5.0': dependencies: cross-spawn: 6.0.5 - "@expo/spawn-async@1.7.2": + '@expo/spawn-async@1.7.2': dependencies: cross-spawn: 7.0.3 - "@expo/vector-icons@13.0.0": {} + '@expo/vector-icons@13.0.0': {} - "@expo/vector-icons@14.0.4": + '@expo/vector-icons@14.0.4': dependencies: prop-types: 15.8.1 - "@expo/webpack-config@18.1.4(ivfio2rwlkznsvzgftnclyrame)": + '@expo/webpack-config@18.1.4(ivfio2rwlkznsvzgftnclyrame)': dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 babel-loader: 8.3.0(@babel/core@7.24.3)(webpack@5.91.0(metro@0.80.12)) chalk: 4.1.2 clean-webpack-plugin: 4.0.0(webpack@5.91.0(metro@0.80.12)) @@ -51586,9 +35311,9 @@ snapshots: webpack-dev-server: 4.15.2(webpack@5.91.0(metro@0.80.12)) webpack-manifest-plugin: 4.1.1(webpack@5.91.0(metro@0.80.12)) transitivePeerDependencies: - - "@parcel/css" - - "@rspack/core" - - "@swc/core" + - '@parcel/css' + - '@rspack/core' + - '@swc/core' - bufferutil - clean-css - csso @@ -51604,442 +35329,442 @@ snapshots: - utf-8-validate - webpack-cli - "@expo/xcpretty@4.3.1": + '@expo/xcpretty@4.3.1': dependencies: - "@babel/code-frame": 7.10.4 + '@babel/code-frame': 7.10.4 chalk: 4.1.2 find-up: 5.0.0 js-yaml: 4.1.0 - "@faker-js/faker@8.4.1": {} + '@faker-js/faker@8.4.1': {} - "@fal-works/esbuild-plugin-global-externals@2.1.2": {} + '@fal-works/esbuild-plugin-global-externals@2.1.2': {} - "@fastify/busboy@2.1.1": {} + '@fastify/busboy@2.1.1': {} - "@firebase/analytics-compat@0.2.6(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)": + '@firebase/analytics-compat@0.2.6(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)': dependencies: - "@firebase/analytics": 0.10.0(@firebase/app@0.9.13) - "@firebase/analytics-types": 0.8.0 - "@firebase/app-compat": 0.2.13 - "@firebase/component": 0.6.4 - "@firebase/util": 1.9.3 + '@firebase/analytics': 0.10.0(@firebase/app@0.9.13) + '@firebase/analytics-types': 0.8.0 + '@firebase/app-compat': 0.2.13 + '@firebase/component': 0.6.4 + '@firebase/util': 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - "@firebase/app" + - '@firebase/app' - "@firebase/analytics-types@0.8.0": {} + '@firebase/analytics-types@0.8.0': {} - "@firebase/analytics@0.10.0(@firebase/app@0.9.13)": + '@firebase/analytics@0.10.0(@firebase/app@0.9.13)': dependencies: - "@firebase/app": 0.9.13 - "@firebase/component": 0.6.4 - "@firebase/installations": 0.6.4(@firebase/app@0.9.13) - "@firebase/logger": 0.4.0 - "@firebase/util": 1.9.3 + '@firebase/app': 0.9.13 + '@firebase/component': 0.6.4 + '@firebase/installations': 0.6.4(@firebase/app@0.9.13) + '@firebase/logger': 0.4.0 + '@firebase/util': 1.9.3 tslib: 2.6.2 - "@firebase/app-check-compat@0.3.7(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)": + '@firebase/app-check-compat@0.3.7(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)': dependencies: - "@firebase/app-check": 0.8.0(@firebase/app@0.9.13) - "@firebase/app-check-types": 0.5.0 - "@firebase/app-compat": 0.2.13 - "@firebase/component": 0.6.4 - "@firebase/logger": 0.4.0 - "@firebase/util": 1.9.3 + '@firebase/app-check': 0.8.0(@firebase/app@0.9.13) + '@firebase/app-check-types': 0.5.0 + '@firebase/app-compat': 0.2.13 + '@firebase/component': 0.6.4 + '@firebase/logger': 0.4.0 + '@firebase/util': 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - "@firebase/app" + - '@firebase/app' - "@firebase/app-check-interop-types@0.3.0": {} + '@firebase/app-check-interop-types@0.3.0': {} - "@firebase/app-check-types@0.5.0": {} + '@firebase/app-check-types@0.5.0': {} - "@firebase/app-check@0.8.0(@firebase/app@0.9.13)": + '@firebase/app-check@0.8.0(@firebase/app@0.9.13)': dependencies: - "@firebase/app": 0.9.13 - "@firebase/component": 0.6.4 - "@firebase/logger": 0.4.0 - "@firebase/util": 1.9.3 + '@firebase/app': 0.9.13 + '@firebase/component': 0.6.4 + '@firebase/logger': 0.4.0 + '@firebase/util': 1.9.3 tslib: 2.6.2 - "@firebase/app-compat@0.2.13": + '@firebase/app-compat@0.2.13': dependencies: - "@firebase/app": 0.9.13 - "@firebase/component": 0.6.4 - "@firebase/logger": 0.4.0 - "@firebase/util": 1.9.3 + '@firebase/app': 0.9.13 + '@firebase/component': 0.6.4 + '@firebase/logger': 0.4.0 + '@firebase/util': 1.9.3 tslib: 2.6.2 - "@firebase/app-types@0.9.0": {} + '@firebase/app-types@0.9.0': {} - "@firebase/app@0.9.13": + '@firebase/app@0.9.13': dependencies: - "@firebase/component": 0.6.4 - "@firebase/logger": 0.4.0 - "@firebase/util": 1.9.3 + '@firebase/component': 0.6.4 + '@firebase/logger': 0.4.0 + '@firebase/util': 1.9.3 idb: 7.1.1 tslib: 2.6.2 - "@firebase/auth-compat@0.4.2(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13)": + '@firebase/auth-compat@0.4.2(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13)': dependencies: - "@firebase/app-compat": 0.2.13 - "@firebase/auth": 0.23.2(@firebase/app@0.9.13) - "@firebase/auth-types": 0.12.0(@firebase/app-types@0.9.0)(@firebase/util@1.9.3) - "@firebase/component": 0.6.4 - "@firebase/util": 1.9.3 + '@firebase/app-compat': 0.2.13 + '@firebase/auth': 0.23.2(@firebase/app@0.9.13) + '@firebase/auth-types': 0.12.0(@firebase/app-types@0.9.0)(@firebase/util@1.9.3) + '@firebase/component': 0.6.4 + '@firebase/util': 1.9.3 node-fetch: 2.6.7 tslib: 2.6.2 transitivePeerDependencies: - - "@firebase/app" - - "@firebase/app-types" + - '@firebase/app' + - '@firebase/app-types' - encoding - "@firebase/auth-interop-types@0.2.1": {} + '@firebase/auth-interop-types@0.2.1': {} - "@firebase/auth-types@0.12.0(@firebase/app-types@0.9.0)(@firebase/util@1.9.3)": + '@firebase/auth-types@0.12.0(@firebase/app-types@0.9.0)(@firebase/util@1.9.3)': dependencies: - "@firebase/app-types": 0.9.0 - "@firebase/util": 1.9.3 + '@firebase/app-types': 0.9.0 + '@firebase/util': 1.9.3 - "@firebase/auth@0.23.2(@firebase/app@0.9.13)": + '@firebase/auth@0.23.2(@firebase/app@0.9.13)': dependencies: - "@firebase/app": 0.9.13 - "@firebase/component": 0.6.4 - "@firebase/logger": 0.4.0 - "@firebase/util": 1.9.3 + '@firebase/app': 0.9.13 + '@firebase/component': 0.6.4 + '@firebase/logger': 0.4.0 + '@firebase/util': 1.9.3 node-fetch: 2.6.7 tslib: 2.6.2 transitivePeerDependencies: - encoding - "@firebase/component@0.6.4": + '@firebase/component@0.6.4': dependencies: - "@firebase/util": 1.9.3 + '@firebase/util': 1.9.3 tslib: 2.6.2 - "@firebase/database-compat@0.3.4": + '@firebase/database-compat@0.3.4': dependencies: - "@firebase/component": 0.6.4 - "@firebase/database": 0.14.4 - "@firebase/database-types": 0.10.4 - "@firebase/logger": 0.4.0 - "@firebase/util": 1.9.3 + '@firebase/component': 0.6.4 + '@firebase/database': 0.14.4 + '@firebase/database-types': 0.10.4 + '@firebase/logger': 0.4.0 + '@firebase/util': 1.9.3 tslib: 2.6.2 - "@firebase/database-types@0.10.4": + '@firebase/database-types@0.10.4': dependencies: - "@firebase/app-types": 0.9.0 - "@firebase/util": 1.9.3 + '@firebase/app-types': 0.9.0 + '@firebase/util': 1.9.3 - "@firebase/database@0.14.4": + '@firebase/database@0.14.4': dependencies: - "@firebase/auth-interop-types": 0.2.1 - "@firebase/component": 0.6.4 - "@firebase/logger": 0.4.0 - "@firebase/util": 1.9.3 + '@firebase/auth-interop-types': 0.2.1 + '@firebase/component': 0.6.4 + '@firebase/logger': 0.4.0 + '@firebase/util': 1.9.3 faye-websocket: 0.11.4 tslib: 2.6.2 - "@firebase/firestore-compat@0.3.12(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13)": + '@firebase/firestore-compat@0.3.12(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13)': dependencies: - "@firebase/app-compat": 0.2.13 - "@firebase/component": 0.6.4 - "@firebase/firestore": 3.13.0(@firebase/app@0.9.13) - "@firebase/firestore-types": 2.5.1(@firebase/app-types@0.9.0)(@firebase/util@1.9.3) - "@firebase/util": 1.9.3 + '@firebase/app-compat': 0.2.13 + '@firebase/component': 0.6.4 + '@firebase/firestore': 3.13.0(@firebase/app@0.9.13) + '@firebase/firestore-types': 2.5.1(@firebase/app-types@0.9.0)(@firebase/util@1.9.3) + '@firebase/util': 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - "@firebase/app" - - "@firebase/app-types" + - '@firebase/app' + - '@firebase/app-types' - encoding - "@firebase/firestore-types@2.5.1(@firebase/app-types@0.9.0)(@firebase/util@1.9.3)": + '@firebase/firestore-types@2.5.1(@firebase/app-types@0.9.0)(@firebase/util@1.9.3)': dependencies: - "@firebase/app-types": 0.9.0 - "@firebase/util": 1.9.3 + '@firebase/app-types': 0.9.0 + '@firebase/util': 1.9.3 - "@firebase/firestore@3.13.0(@firebase/app@0.9.13)": + '@firebase/firestore@3.13.0(@firebase/app@0.9.13)': dependencies: - "@firebase/app": 0.9.13 - "@firebase/component": 0.6.4 - "@firebase/logger": 0.4.0 - "@firebase/util": 1.9.3 - "@firebase/webchannel-wrapper": 0.10.1 - "@grpc/grpc-js": 1.7.3 - "@grpc/proto-loader": 0.6.13 + '@firebase/app': 0.9.13 + '@firebase/component': 0.6.4 + '@firebase/logger': 0.4.0 + '@firebase/util': 1.9.3 + '@firebase/webchannel-wrapper': 0.10.1 + '@grpc/grpc-js': 1.7.3 + '@grpc/proto-loader': 0.6.13 node-fetch: 2.6.7 tslib: 2.6.2 transitivePeerDependencies: - encoding - "@firebase/functions-compat@0.3.5(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)": + '@firebase/functions-compat@0.3.5(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)': dependencies: - "@firebase/app-compat": 0.2.13 - "@firebase/component": 0.6.4 - "@firebase/functions": 0.10.0(@firebase/app@0.9.13) - "@firebase/functions-types": 0.6.0 - "@firebase/util": 1.9.3 + '@firebase/app-compat': 0.2.13 + '@firebase/component': 0.6.4 + '@firebase/functions': 0.10.0(@firebase/app@0.9.13) + '@firebase/functions-types': 0.6.0 + '@firebase/util': 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - "@firebase/app" + - '@firebase/app' - encoding - "@firebase/functions-types@0.6.0": {} + '@firebase/functions-types@0.6.0': {} - "@firebase/functions@0.10.0(@firebase/app@0.9.13)": + '@firebase/functions@0.10.0(@firebase/app@0.9.13)': dependencies: - "@firebase/app": 0.9.13 - "@firebase/app-check-interop-types": 0.3.0 - "@firebase/auth-interop-types": 0.2.1 - "@firebase/component": 0.6.4 - "@firebase/messaging-interop-types": 0.2.0 - "@firebase/util": 1.9.3 + '@firebase/app': 0.9.13 + '@firebase/app-check-interop-types': 0.3.0 + '@firebase/auth-interop-types': 0.2.1 + '@firebase/component': 0.6.4 + '@firebase/messaging-interop-types': 0.2.0 + '@firebase/util': 1.9.3 node-fetch: 2.6.7 tslib: 2.6.2 transitivePeerDependencies: - encoding - "@firebase/installations-compat@0.2.4(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13)": + '@firebase/installations-compat@0.2.4(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13)': dependencies: - "@firebase/app-compat": 0.2.13 - "@firebase/component": 0.6.4 - "@firebase/installations": 0.6.4(@firebase/app@0.9.13) - "@firebase/installations-types": 0.5.0(@firebase/app-types@0.9.0) - "@firebase/util": 1.9.3 + '@firebase/app-compat': 0.2.13 + '@firebase/component': 0.6.4 + '@firebase/installations': 0.6.4(@firebase/app@0.9.13) + '@firebase/installations-types': 0.5.0(@firebase/app-types@0.9.0) + '@firebase/util': 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - "@firebase/app" - - "@firebase/app-types" + - '@firebase/app' + - '@firebase/app-types' - "@firebase/installations-types@0.5.0(@firebase/app-types@0.9.0)": + '@firebase/installations-types@0.5.0(@firebase/app-types@0.9.0)': dependencies: - "@firebase/app-types": 0.9.0 + '@firebase/app-types': 0.9.0 - "@firebase/installations@0.6.4(@firebase/app@0.9.13)": + '@firebase/installations@0.6.4(@firebase/app@0.9.13)': dependencies: - "@firebase/app": 0.9.13 - "@firebase/component": 0.6.4 - "@firebase/util": 1.9.3 + '@firebase/app': 0.9.13 + '@firebase/component': 0.6.4 + '@firebase/util': 1.9.3 idb: 7.0.1 tslib: 2.6.2 - "@firebase/logger@0.4.0": + '@firebase/logger@0.4.0': dependencies: tslib: 2.6.2 - "@firebase/messaging-compat@0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)": + '@firebase/messaging-compat@0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)': dependencies: - "@firebase/app-compat": 0.2.13 - "@firebase/component": 0.6.4 - "@firebase/messaging": 0.12.4(@firebase/app@0.9.13) - "@firebase/util": 1.9.3 + '@firebase/app-compat': 0.2.13 + '@firebase/component': 0.6.4 + '@firebase/messaging': 0.12.4(@firebase/app@0.9.13) + '@firebase/util': 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - "@firebase/app" + - '@firebase/app' - "@firebase/messaging-interop-types@0.2.0": {} + '@firebase/messaging-interop-types@0.2.0': {} - "@firebase/messaging@0.12.4(@firebase/app@0.9.13)": + '@firebase/messaging@0.12.4(@firebase/app@0.9.13)': dependencies: - "@firebase/app": 0.9.13 - "@firebase/component": 0.6.4 - "@firebase/installations": 0.6.4(@firebase/app@0.9.13) - "@firebase/messaging-interop-types": 0.2.0 - "@firebase/util": 1.9.3 + '@firebase/app': 0.9.13 + '@firebase/component': 0.6.4 + '@firebase/installations': 0.6.4(@firebase/app@0.9.13) + '@firebase/messaging-interop-types': 0.2.0 + '@firebase/util': 1.9.3 idb: 7.0.1 tslib: 2.6.2 - "@firebase/performance-compat@0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)": + '@firebase/performance-compat@0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)': dependencies: - "@firebase/app-compat": 0.2.13 - "@firebase/component": 0.6.4 - "@firebase/logger": 0.4.0 - "@firebase/performance": 0.6.4(@firebase/app@0.9.13) - "@firebase/performance-types": 0.2.0 - "@firebase/util": 1.9.3 + '@firebase/app-compat': 0.2.13 + '@firebase/component': 0.6.4 + '@firebase/logger': 0.4.0 + '@firebase/performance': 0.6.4(@firebase/app@0.9.13) + '@firebase/performance-types': 0.2.0 + '@firebase/util': 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - "@firebase/app" + - '@firebase/app' - "@firebase/performance-types@0.2.0": {} + '@firebase/performance-types@0.2.0': {} - "@firebase/performance@0.6.4(@firebase/app@0.9.13)": + '@firebase/performance@0.6.4(@firebase/app@0.9.13)': dependencies: - "@firebase/app": 0.9.13 - "@firebase/component": 0.6.4 - "@firebase/installations": 0.6.4(@firebase/app@0.9.13) - "@firebase/logger": 0.4.0 - "@firebase/util": 1.9.3 + '@firebase/app': 0.9.13 + '@firebase/component': 0.6.4 + '@firebase/installations': 0.6.4(@firebase/app@0.9.13) + '@firebase/logger': 0.4.0 + '@firebase/util': 1.9.3 tslib: 2.6.2 - "@firebase/remote-config-compat@0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)": + '@firebase/remote-config-compat@0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13)': dependencies: - "@firebase/app-compat": 0.2.13 - "@firebase/component": 0.6.4 - "@firebase/logger": 0.4.0 - "@firebase/remote-config": 0.4.4(@firebase/app@0.9.13) - "@firebase/remote-config-types": 0.3.0 - "@firebase/util": 1.9.3 + '@firebase/app-compat': 0.2.13 + '@firebase/component': 0.6.4 + '@firebase/logger': 0.4.0 + '@firebase/remote-config': 0.4.4(@firebase/app@0.9.13) + '@firebase/remote-config-types': 0.3.0 + '@firebase/util': 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - "@firebase/app" + - '@firebase/app' - "@firebase/remote-config-types@0.3.0": {} + '@firebase/remote-config-types@0.3.0': {} - "@firebase/remote-config@0.4.4(@firebase/app@0.9.13)": + '@firebase/remote-config@0.4.4(@firebase/app@0.9.13)': dependencies: - "@firebase/app": 0.9.13 - "@firebase/component": 0.6.4 - "@firebase/installations": 0.6.4(@firebase/app@0.9.13) - "@firebase/logger": 0.4.0 - "@firebase/util": 1.9.3 + '@firebase/app': 0.9.13 + '@firebase/component': 0.6.4 + '@firebase/installations': 0.6.4(@firebase/app@0.9.13) + '@firebase/logger': 0.4.0 + '@firebase/util': 1.9.3 tslib: 2.6.2 - "@firebase/storage-compat@0.3.2(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13)": + '@firebase/storage-compat@0.3.2(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13)': dependencies: - "@firebase/app-compat": 0.2.13 - "@firebase/component": 0.6.4 - "@firebase/storage": 0.11.2(@firebase/app@0.9.13) - "@firebase/storage-types": 0.8.0(@firebase/app-types@0.9.0)(@firebase/util@1.9.3) - "@firebase/util": 1.9.3 + '@firebase/app-compat': 0.2.13 + '@firebase/component': 0.6.4 + '@firebase/storage': 0.11.2(@firebase/app@0.9.13) + '@firebase/storage-types': 0.8.0(@firebase/app-types@0.9.0)(@firebase/util@1.9.3) + '@firebase/util': 1.9.3 tslib: 2.6.2 transitivePeerDependencies: - - "@firebase/app" - - "@firebase/app-types" + - '@firebase/app' + - '@firebase/app-types' - encoding - "@firebase/storage-types@0.8.0(@firebase/app-types@0.9.0)(@firebase/util@1.9.3)": + '@firebase/storage-types@0.8.0(@firebase/app-types@0.9.0)(@firebase/util@1.9.3)': dependencies: - "@firebase/app-types": 0.9.0 - "@firebase/util": 1.9.3 + '@firebase/app-types': 0.9.0 + '@firebase/util': 1.9.3 - "@firebase/storage@0.11.2(@firebase/app@0.9.13)": + '@firebase/storage@0.11.2(@firebase/app@0.9.13)': dependencies: - "@firebase/app": 0.9.13 - "@firebase/component": 0.6.4 - "@firebase/util": 1.9.3 + '@firebase/app': 0.9.13 + '@firebase/component': 0.6.4 + '@firebase/util': 1.9.3 node-fetch: 2.6.7 tslib: 2.6.2 transitivePeerDependencies: - encoding - "@firebase/util@1.9.3": + '@firebase/util@1.9.3': dependencies: tslib: 2.6.2 - "@firebase/webchannel-wrapper@0.10.1": {} + '@firebase/webchannel-wrapper@0.10.1': {} - "@flatten-js/interval-tree@1.1.3": {} + '@flatten-js/interval-tree@1.1.3': {} - "@floating-ui/core@0.3.1": {} + '@floating-ui/core@0.3.1': {} - "@floating-ui/core@1.6.0": + '@floating-ui/core@1.6.0': dependencies: - "@floating-ui/utils": 0.2.1 + '@floating-ui/utils': 0.2.1 - "@floating-ui/dom@0.1.10": + '@floating-ui/dom@0.1.10': dependencies: - "@floating-ui/core": 0.3.1 + '@floating-ui/core': 0.3.1 - "@floating-ui/dom@1.6.3": + '@floating-ui/dom@1.6.3': dependencies: - "@floating-ui/core": 1.6.0 - "@floating-ui/utils": 0.2.1 + '@floating-ui/core': 1.6.0 + '@floating-ui/utils': 0.2.1 - "@floating-ui/react-dom@0.4.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@floating-ui/react-dom@0.4.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@floating-ui/dom": 0.1.10 + '@floating-ui/dom': 0.1.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.73)(react@18.2.0) transitivePeerDependencies: - - "@types/react" + - '@types/react' - "@floating-ui/react-dom@2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@floating-ui/react-dom@2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@floating-ui/dom": 1.6.3 + '@floating-ui/dom': 1.6.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - "@floating-ui/utils@0.2.1": {} + '@floating-ui/utils@0.2.1': {} - "@formatjs/ecma402-abstract@1.18.2": + '@formatjs/ecma402-abstract@1.18.2': dependencies: - "@formatjs/intl-localematcher": 0.5.4 + '@formatjs/intl-localematcher': 0.5.4 tslib: 2.6.2 - "@formatjs/intl-enumerator@1.4.5": + '@formatjs/intl-enumerator@1.4.5': dependencies: tslib: 2.6.2 - "@formatjs/intl-getcanonicallocales@2.3.0": + '@formatjs/intl-getcanonicallocales@2.3.0': dependencies: tslib: 2.6.2 - "@formatjs/intl-locale@3.4.5": + '@formatjs/intl-locale@3.4.5': dependencies: - "@formatjs/ecma402-abstract": 1.18.2 - "@formatjs/intl-enumerator": 1.4.5 - "@formatjs/intl-getcanonicallocales": 2.3.0 + '@formatjs/ecma402-abstract': 1.18.2 + '@formatjs/intl-enumerator': 1.4.5 + '@formatjs/intl-getcanonicallocales': 2.3.0 tslib: 2.6.2 - "@formatjs/intl-localematcher@0.5.4": + '@formatjs/intl-localematcher@0.5.4': dependencies: tslib: 2.6.2 - "@formatjs/intl-pluralrules@5.2.12": + '@formatjs/intl-pluralrules@5.2.12': dependencies: - "@formatjs/ecma402-abstract": 1.18.2 - "@formatjs/intl-localematcher": 0.5.4 + '@formatjs/ecma402-abstract': 1.18.2 + '@formatjs/intl-localematcher': 0.5.4 tslib: 2.6.2 - "@formatjs/intl-relativetimeformat@11.2.12": + '@formatjs/intl-relativetimeformat@11.2.12': dependencies: - "@formatjs/ecma402-abstract": 1.18.2 - "@formatjs/intl-localematcher": 0.5.4 + '@formatjs/ecma402-abstract': 1.18.2 + '@formatjs/intl-localematcher': 0.5.4 tslib: 2.6.2 - "@gar/promisify@1.1.3": {} + '@gar/promisify@1.1.3': {} - "@graphql-typed-document-node/core@3.2.0(graphql@15.8.0)": + '@graphql-typed-document-node/core@3.2.0(graphql@15.8.0)': dependencies: graphql: 15.8.0 - "@grpc/grpc-js@1.6.7": + '@grpc/grpc-js@1.6.7': dependencies: - "@grpc/proto-loader": 0.6.13 - "@types/node": 20.12.12 + '@grpc/proto-loader': 0.6.13 + '@types/node': 20.12.12 - "@grpc/grpc-js@1.7.3": + '@grpc/grpc-js@1.7.3': dependencies: - "@grpc/proto-loader": 0.7.12 - "@types/node": 20.12.12 + '@grpc/proto-loader': 0.7.12 + '@types/node': 20.12.12 - "@grpc/proto-loader@0.6.13": + '@grpc/proto-loader@0.6.13': dependencies: - "@types/long": 4.0.2 + '@types/long': 4.0.2 lodash.camelcase: 4.3.0 long: 4.0.0 protobufjs: 6.11.4 yargs: 16.2.0 - "@grpc/proto-loader@0.7.12": + '@grpc/proto-loader@0.7.12': dependencies: lodash.camelcase: 4.3.0 long: 5.2.3 protobufjs: 7.3.2 yargs: 17.7.2 - "@hapi/bourne@2.1.0": {} + '@hapi/bourne@2.1.0': {} - "@hapi/hoek@9.3.0": {} + '@hapi/hoek@9.3.0': {} - "@hapi/topo@5.1.0": + '@hapi/topo@5.1.0': dependencies: - "@hapi/hoek": 9.3.0 + '@hapi/hoek': 9.3.0 - "@hashgraph/cryptography@1.1.2(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@hashgraph/cryptography@1.1.2(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: bignumber.js: 9.1.2 crypto-js: 4.2.0 @@ -52055,16 +35780,16 @@ snapshots: - react - react-native - "@hashgraph/proto@2.4.1": + '@hashgraph/proto@2.4.1': dependencies: long: 4.0.0 protobufjs: 6.11.4 - "@hashgraph/sdk@2.14.2(patch_hash=ftpe7kgiykw2quxzn7vgiqumd4)(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@hashgraph/sdk@2.14.2(patch_hash=ftpe7kgiykw2quxzn7vgiqumd4)(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: - "@grpc/grpc-js": 1.6.7 - "@hashgraph/cryptography": 1.1.2(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@hashgraph/proto": 2.4.1 + '@grpc/grpc-js': 1.6.7 + '@hashgraph/cryptography': 1.1.2(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + '@hashgraph/proto': 2.4.1 bignumber.js: 9.1.2 crypto-js: 4.2.0 js-base64: 3.7.7 @@ -52078,55 +35803,55 @@ snapshots: - react - react-native - "@headlessui/react@1.7.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@headlessui/react@1.7.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@tanstack/react-virtual": 3.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@tanstack/react-virtual': 3.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) client-only: 0.0.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - "@helium/address@4.11.1": + '@helium/address@4.11.1': dependencies: bs58: 5.0.0 js-sha256: 0.9.0 multiformats: 9.9.0 - "@helium/proto@1.6.0": + '@helium/proto@1.6.0': dependencies: protobufjs: 6.11.4 - "@helium/transactions@4.11.1": + '@helium/transactions@4.11.1': dependencies: - "@helium/address": 4.11.1 - "@helium/proto": 1.6.0 - "@types/libsodium-wrappers": 0.7.13 + '@helium/address': 4.11.1 + '@helium/proto': 1.6.0 + '@types/libsodium-wrappers': 0.7.13 long: 4.0.0 path: 0.12.7 - "@humanwhocodes/config-array@0.11.14": + '@humanwhocodes/config-array@0.11.14': dependencies: - "@humanwhocodes/object-schema": 2.0.2 + '@humanwhocodes/object-schema': 2.0.2 debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: - supports-color - "@humanwhocodes/module-importer@1.0.1": {} + '@humanwhocodes/module-importer@1.0.1': {} - "@humanwhocodes/object-schema@2.0.2": {} + '@humanwhocodes/object-schema@2.0.2': {} - "@inquirer/confirm@3.1.7": + '@inquirer/confirm@3.1.7': dependencies: - "@inquirer/core": 8.2.0 - "@inquirer/type": 1.3.1 + '@inquirer/core': 8.2.0 + '@inquirer/type': 1.3.1 - "@inquirer/core@8.2.0": + '@inquirer/core@8.2.0': dependencies: - "@inquirer/figures": 1.0.1 - "@inquirer/type": 1.3.1 - "@types/mute-stream": 0.0.4 - "@types/node": 20.12.12 - "@types/wrap-ansi": 3.0.0 + '@inquirer/figures': 1.0.1 + '@inquirer/type': 1.3.1 + '@types/mute-stream': 0.0.4 + '@types/node': 20.12.12 + '@types/wrap-ansi': 3.0.0 ansi-escapes: 4.3.2 chalk: 4.1.2 cli-spinners: 2.9.2 @@ -52136,15 +35861,15 @@ snapshots: strip-ansi: 6.0.1 wrap-ansi: 6.2.0 - "@inquirer/figures@1.0.1": {} + '@inquirer/figures@1.0.1': {} - "@inquirer/type@1.3.1": {} + '@inquirer/type@1.3.1': {} - "@ioredis/commands@1.2.0": {} + '@ioredis/commands@1.2.0': {} - "@iov/crypto@2.1.0": + '@iov/crypto@2.1.0': dependencies: - "@iov/encoding": 2.1.0 + '@iov/encoding': 2.1.0 bip39: 3.1.0 bn.js: 4.12.0 elliptic: 6.5.5 @@ -52156,21 +35881,21 @@ snapshots: type-tagger: 1.0.0 unorm: 1.6.0 - "@iov/encoding@2.1.0": + '@iov/encoding@2.1.0': dependencies: base64-js: 1.5.1 bech32: 1.1.4 bn.js: 4.12.0 readonly-date: 1.0.0 - "@iov/utils@2.0.2": {} + '@iov/utils@2.0.2': {} - "@ipld/dag-cbor@9.2.1": + '@ipld/dag-cbor@9.2.1': dependencies: cborg: 4.1.4 multiformats: 13.1.0 - "@isaacs/cliui@8.0.2": + '@isaacs/cliui@8.0.2': dependencies: string-width: 5.1.2 string-width-cjs: string-width@4.2.3 @@ -52179,9 +35904,9 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 - "@isaacs/ttlcache@1.4.1": {} + '@isaacs/ttlcache@1.4.1': {} - "@istanbuljs/load-nyc-config@1.1.0": + '@istanbuljs/load-nyc-config@1.1.0': dependencies: camelcase: 5.3.1 find-up: 4.1.0 @@ -52189,43 +35914,43 @@ snapshots: js-yaml: 3.14.1 resolve-from: 5.0.0 - "@istanbuljs/schema@0.1.3": {} + '@istanbuljs/schema@0.1.3': {} - "@jest/console@27.5.1": + '@jest/console@27.5.1': dependencies: - "@jest/types": 27.5.1 - "@types/node": 20.12.12 + '@jest/types': 27.5.1 + '@types/node': 20.12.12 chalk: 4.1.2 jest-message-util: 27.5.1 jest-util: 27.5.1 slash: 3.0.0 - "@jest/console@28.1.3": + '@jest/console@28.1.3': dependencies: - "@jest/types": 28.1.3 - "@types/node": 20.12.12 + '@jest/types': 28.1.3 + '@types/node': 20.12.12 chalk: 4.1.2 jest-message-util: 28.1.3 jest-util: 28.1.3 slash: 3.0.0 - "@jest/console@29.7.0": + '@jest/console@29.7.0': dependencies: - "@jest/types": 29.6.3 - "@types/node": 20.12.12 + '@jest/types': 29.6.3 + '@types/node': 20.12.12 chalk: 4.1.2 jest-message-util: 29.7.0 jest-util: 29.7.0 slash: 3.0.0 - "@jest/core@27.5.1": + '@jest/core@27.5.1': dependencies: - "@jest/console": 27.5.1 - "@jest/reporters": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/transform": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 20.12.12 + '@jest/console': 27.5.1 + '@jest/reporters': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.8.1 @@ -52256,14 +35981,14 @@ snapshots: - ts-node - utf-8-validate - "@jest/core@28.1.3": + '@jest/core@28.1.3': dependencies: - "@jest/console": 28.1.3 - "@jest/reporters": 28.1.3 - "@jest/test-result": 28.1.3 - "@jest/transform": 28.1.3 - "@jest/types": 28.1.3 - "@types/node": 20.12.12 + '@jest/console': 28.1.3 + '@jest/reporters': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -52292,14 +36017,14 @@ snapshots: - supports-color - ts-node - "@jest/core@29.7.0": + '@jest/core@29.7.0': dependencies: - "@jest/console": 29.7.0 - "@jest/reporters": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 20.12.12 + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -52328,14 +36053,14 @@ snapshots: - supports-color - ts-node - "@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3))": + '@jest/core@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3))': dependencies: - "@jest/console": 29.7.0 - "@jest/reporters": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 20.12.12 + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -52364,14 +36089,14 @@ snapshots: - supports-color - ts-node - "@jest/core@29.7.0(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5))": + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5))': dependencies: - "@jest/console": 29.7.0 - "@jest/reporters": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 20.12.12 + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -52400,14 +36125,14 @@ snapshots: - supports-color - ts-node - "@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3))": + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3))': dependencies: - "@jest/console": 29.7.0 - "@jest/reporters": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 20.12.12 + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -52436,14 +36161,14 @@ snapshots: - supports-color - ts-node - "@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3))": + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3))': dependencies: - "@jest/console": 29.7.0 - "@jest/reporters": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 20.12.12 + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -52472,14 +36197,14 @@ snapshots: - supports-color - ts-node - "@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3))": + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3))': dependencies: - "@jest/console": 29.7.0 - "@jest/reporters": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 20.12.12 + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -52508,14 +36233,14 @@ snapshots: - supports-color - ts-node - "@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))": + '@jest/core@29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5))': dependencies: - "@jest/console": 29.7.0 - "@jest/reporters": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 20.12.12 + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -52544,14 +36269,14 @@ snapshots: - supports-color - ts-node - "@jest/core@29.7.0(ts-node@10.9.2(typescript@5.4.3))": + '@jest/core@29.7.0(ts-node@10.9.2(typescript@5.4.3))': dependencies: - "@jest/console": 29.7.0 - "@jest/reporters": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 20.12.12 + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 @@ -52580,40 +36305,40 @@ snapshots: - supports-color - ts-node - "@jest/create-cache-key-function@29.7.0": + '@jest/create-cache-key-function@29.7.0': dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 - "@jest/environment@27.5.1": + '@jest/environment@27.5.1': dependencies: - "@jest/fake-timers": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 20.12.12 + '@jest/fake-timers': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 20.12.12 jest-mock: 27.5.1 - "@jest/environment@28.1.3": + '@jest/environment@28.1.3': dependencies: - "@jest/fake-timers": 28.1.3 - "@jest/types": 28.1.3 - "@types/node": 20.12.12 + '@jest/fake-timers': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.12.12 jest-mock: 28.1.3 - "@jest/environment@29.7.0": + '@jest/environment@29.7.0': dependencies: - "@jest/fake-timers": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 20.12.12 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.12 jest-mock: 29.7.0 - "@jest/expect-utils@28.1.3": + '@jest/expect-utils@28.1.3': dependencies: jest-get-type: 28.0.2 - "@jest/expect-utils@29.7.0": + '@jest/expect-utils@29.7.0': dependencies: jest-get-type: 29.6.3 - "@jest/expect@28.1.3": + '@jest/expect@28.1.3': dependencies: expect: 28.1.3 jest-snapshot: 28.1.3 @@ -52621,7 +36346,7 @@ snapshots: - metro - supports-color - "@jest/expect@29.7.0": + '@jest/expect@29.7.0': dependencies: expect: 29.7.0 jest-snapshot: 29.7.0 @@ -52629,66 +36354,66 @@ snapshots: - metro - supports-color - "@jest/fake-timers@27.5.1": + '@jest/fake-timers@27.5.1': dependencies: - "@jest/types": 27.5.1 - "@sinonjs/fake-timers": 8.1.0 - "@types/node": 20.12.12 + '@jest/types': 27.5.1 + '@sinonjs/fake-timers': 8.1.0 + '@types/node': 20.12.12 jest-message-util: 27.5.1 jest-mock: 27.5.1 jest-util: 27.5.1 - "@jest/fake-timers@28.1.3": + '@jest/fake-timers@28.1.3': dependencies: - "@jest/types": 28.1.3 - "@sinonjs/fake-timers": 9.1.2 - "@types/node": 20.12.12 + '@jest/types': 28.1.3 + '@sinonjs/fake-timers': 9.1.2 + '@types/node': 20.12.12 jest-message-util: 28.1.3 jest-mock: 28.1.3 jest-util: 28.1.3 - "@jest/fake-timers@29.7.0": + '@jest/fake-timers@29.7.0': dependencies: - "@jest/types": 29.6.3 - "@sinonjs/fake-timers": 10.3.0 - "@types/node": 20.12.12 + '@jest/types': 29.6.3 + '@sinonjs/fake-timers': 10.3.0 + '@types/node': 20.12.12 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 - "@jest/globals@27.5.1": + '@jest/globals@27.5.1': dependencies: - "@jest/environment": 27.5.1 - "@jest/types": 27.5.1 + '@jest/environment': 27.5.1 + '@jest/types': 27.5.1 expect: 27.5.1 - "@jest/globals@28.1.3": + '@jest/globals@28.1.3': dependencies: - "@jest/environment": 28.1.3 - "@jest/expect": 28.1.3 - "@jest/types": 28.1.3 + '@jest/environment': 28.1.3 + '@jest/expect': 28.1.3 + '@jest/types': 28.1.3 transitivePeerDependencies: - metro - supports-color - "@jest/globals@29.7.0": + '@jest/globals@29.7.0': dependencies: - "@jest/environment": 29.7.0 - "@jest/expect": 29.7.0 - "@jest/types": 29.6.3 + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/types': 29.6.3 jest-mock: 29.7.0 transitivePeerDependencies: - metro - supports-color - "@jest/reporters@27.5.1": + '@jest/reporters@27.5.1': dependencies: - "@bcoe/v8-coverage": 0.2.3 - "@jest/console": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/transform": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 20.12.12 + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 20.12.12 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -52712,15 +36437,15 @@ snapshots: - metro - supports-color - "@jest/reporters@28.1.3": + '@jest/reporters@28.1.3': dependencies: - "@bcoe/v8-coverage": 0.2.3 - "@jest/console": 28.1.3 - "@jest/test-result": 28.1.3 - "@jest/transform": 28.1.3 - "@jest/types": 28.1.3 - "@jridgewell/trace-mapping": 0.3.25 - "@types/node": 20.12.12 + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@jridgewell/trace-mapping': 0.3.25 + '@types/node': 20.12.12 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -52743,15 +36468,15 @@ snapshots: - metro - supports-color - "@jest/reporters@29.7.0": + '@jest/reporters@29.7.0': dependencies: - "@bcoe/v8-coverage": 0.2.3 - "@jest/console": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@jridgewell/trace-mapping": 0.3.25 - "@types/node": 20.12.12 + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.25 + '@types/node': 20.12.12 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -52773,56 +36498,56 @@ snapshots: - metro - supports-color - "@jest/schemas@28.1.3": + '@jest/schemas@28.1.3': dependencies: - "@sinclair/typebox": 0.24.51 + '@sinclair/typebox': 0.24.51 - "@jest/schemas@29.6.3": + '@jest/schemas@29.6.3': dependencies: - "@sinclair/typebox": 0.27.8 + '@sinclair/typebox': 0.27.8 - "@jest/source-map@27.5.1": + '@jest/source-map@27.5.1': dependencies: callsites: 3.1.0 graceful-fs: 4.2.11 source-map: 0.6.1 - "@jest/source-map@28.1.2": + '@jest/source-map@28.1.2': dependencies: - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/trace-mapping': 0.3.25 callsites: 3.1.0 graceful-fs: 4.2.11 - "@jest/source-map@29.6.3": + '@jest/source-map@29.6.3': dependencies: - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/trace-mapping': 0.3.25 callsites: 3.1.0 graceful-fs: 4.2.11 - "@jest/test-result@27.5.1": + '@jest/test-result@27.5.1': dependencies: - "@jest/console": 27.5.1 - "@jest/types": 27.5.1 - "@types/istanbul-lib-coverage": 2.0.6 + '@jest/console': 27.5.1 + '@jest/types': 27.5.1 + '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - "@jest/test-result@28.1.3": + '@jest/test-result@28.1.3': dependencies: - "@jest/console": 28.1.3 - "@jest/types": 28.1.3 - "@types/istanbul-lib-coverage": 2.0.6 + '@jest/console': 28.1.3 + '@jest/types': 28.1.3 + '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - "@jest/test-result@29.7.0": + '@jest/test-result@29.7.0': dependencies: - "@jest/console": 29.7.0 - "@jest/types": 29.6.3 - "@types/istanbul-lib-coverage": 2.0.6 + '@jest/console': 29.7.0 + '@jest/types': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 collect-v8-coverage: 1.0.2 - "@jest/test-sequencer@27.5.1": + '@jest/test-sequencer@27.5.1': dependencies: - "@jest/test-result": 27.5.1 + '@jest/test-result': 27.5.1 graceful-fs: 4.2.11 jest-haste-map: 27.5.1 jest-runtime: 27.5.1 @@ -52830,28 +36555,28 @@ snapshots: - metro - supports-color - "@jest/test-sequencer@28.1.3": + '@jest/test-sequencer@28.1.3': dependencies: - "@jest/test-result": 28.1.3 + '@jest/test-result': 28.1.3 graceful-fs: 4.2.11 jest-haste-map: 28.1.3 slash: 3.0.0 transitivePeerDependencies: - metro - "@jest/test-sequencer@29.7.0": + '@jest/test-sequencer@29.7.0': dependencies: - "@jest/test-result": 29.7.0 + '@jest/test-result': 29.7.0 graceful-fs: 4.2.11 jest-haste-map: 29.7.0 slash: 3.0.0 transitivePeerDependencies: - metro - "@jest/transform@27.5.1": + '@jest/transform@27.5.1': dependencies: - "@babel/core": 7.24.3 - "@jest/types": 27.5.1 + '@babel/core': 7.24.3 + '@jest/types': 27.5.1 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 1.9.0 @@ -52869,11 +36594,11 @@ snapshots: - metro - supports-color - "@jest/transform@28.1.3": + '@jest/transform@28.1.3': dependencies: - "@babel/core": 7.24.3 - "@jest/types": 28.1.3 - "@jridgewell/trace-mapping": 0.3.25 + '@babel/core': 7.24.3 + '@jest/types': 28.1.3 + '@jridgewell/trace-mapping': 0.3.25 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 1.9.0 @@ -52890,11 +36615,11 @@ snapshots: - metro - supports-color - "@jest/transform@29.7.0": + '@jest/transform@29.7.0': dependencies: - "@babel/core": 7.24.3 - "@jest/types": 29.6.3 - "@jridgewell/trace-mapping": 0.3.25 + '@babel/core': 7.24.3 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.25 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 2.0.0 @@ -52911,11 +36636,11 @@ snapshots: - metro - supports-color - "@jest/transform@29.7.0(metro@0.80.12)": + '@jest/transform@29.7.0(metro@0.80.12)': dependencies: - "@babel/core": 7.24.3 - "@jest/types": 29.6.3 - "@jridgewell/trace-mapping": 0.3.25 + '@babel/core': 7.24.3 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.25 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 2.0.0 @@ -52932,92 +36657,92 @@ snapshots: - metro - supports-color - "@jest/types@24.9.0": + '@jest/types@24.9.0': dependencies: - "@types/istanbul-lib-coverage": 2.0.6 - "@types/istanbul-reports": 1.1.2 - "@types/yargs": 13.0.12 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 1.1.2 + '@types/yargs': 13.0.12 - "@jest/types@26.6.2": + '@jest/types@26.6.2': dependencies: - "@types/istanbul-lib-coverage": 2.0.6 - "@types/istanbul-reports": 3.0.4 - "@types/node": 20.12.12 - "@types/yargs": 15.0.19 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.12.12 + '@types/yargs': 15.0.19 chalk: 4.1.2 - "@jest/types@27.5.1": + '@jest/types@27.5.1': dependencies: - "@types/istanbul-lib-coverage": 2.0.6 - "@types/istanbul-reports": 3.0.4 - "@types/node": 20.12.12 - "@types/yargs": 16.0.9 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.12.12 + '@types/yargs': 16.0.9 chalk: 4.1.2 - "@jest/types@28.1.3": + '@jest/types@28.1.3': dependencies: - "@jest/schemas": 28.1.3 - "@types/istanbul-lib-coverage": 2.0.6 - "@types/istanbul-reports": 3.0.4 - "@types/node": 20.12.12 - "@types/yargs": 17.0.32 + '@jest/schemas': 28.1.3 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.12.12 + '@types/yargs': 17.0.32 chalk: 4.1.2 - "@jest/types@29.6.3": + '@jest/types@29.6.3': dependencies: - "@jest/schemas": 29.6.3 - "@types/istanbul-lib-coverage": 2.0.6 - "@types/istanbul-reports": 3.0.4 - "@types/node": 20.12.12 - "@types/yargs": 17.0.32 + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 20.12.12 + '@types/yargs': 17.0.32 chalk: 4.1.2 - "@jridgewell/gen-mapping@0.3.5": + '@jridgewell/gen-mapping@0.3.5': dependencies: - "@jridgewell/set-array": 1.2.1 - "@jridgewell/sourcemap-codec": 1.4.15 - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.4.15 + '@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.5 - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 - "@jridgewell/sourcemap-codec@1.4.15": {} + '@jridgewell/sourcemap-codec@1.4.15': {} - "@jridgewell/trace-mapping@0.3.25": + '@jridgewell/trace-mapping@0.3.25': dependencies: - "@jridgewell/resolve-uri": 3.1.2 - "@jridgewell/sourcemap-codec": 1.4.15 + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 - "@jridgewell/trace-mapping@0.3.9": + '@jridgewell/trace-mapping@0.3.9': dependencies: - "@jridgewell/resolve-uri": 3.1.2 - "@jridgewell/sourcemap-codec": 1.4.15 + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 - "@jsdoc/salty@0.2.8": + '@jsdoc/salty@0.2.8': dependencies: lodash: 4.17.21 - "@juggle/resize-observer@3.4.0": {} + '@juggle/resize-observer@3.4.0': {} - "@keplr-wallet/cosmos@0.9.16": + '@keplr-wallet/cosmos@0.9.16': dependencies: - "@cosmjs/launchpad": 0.24.1 - "@keplr-wallet/crypto": 0.9.10 - "@keplr-wallet/types": 0.9.12 - "@keplr-wallet/unit": 0.9.12 + '@cosmjs/launchpad': 0.24.1 + '@keplr-wallet/crypto': 0.9.10 + '@keplr-wallet/types': 0.9.12 + '@keplr-wallet/unit': 0.9.12 axios: 0.21.4 bech32: 1.1.4 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) long: 4.0.0 protobufjs: 6.11.4 - "@keplr-wallet/crypto@0.9.10": + '@keplr-wallet/crypto@0.9.10': dependencies: bip32: 2.0.6 bip39: 3.1.0 @@ -53026,160 +36751,160 @@ snapshots: elliptic: 6.5.5 sha.js: 2.4.11 - "@keplr-wallet/proto-types@0.12.89": + '@keplr-wallet/proto-types@0.12.89': dependencies: long: 4.0.0 protobufjs: 6.11.4 - "@keplr-wallet/types@0.9.12": + '@keplr-wallet/types@0.9.12': dependencies: - "@cosmjs/launchpad": 0.24.1 - "@cosmjs/proto-signing": 0.24.1 + '@cosmjs/launchpad': 0.24.1 + '@cosmjs/proto-signing': 0.24.1 axios: 0.21.4 long: 4.0.0 secretjs: 0.17.8 - "@keplr-wallet/unit@0.9.12": + '@keplr-wallet/unit@0.9.12': dependencies: - "@keplr-wallet/types": 0.9.12 + '@keplr-wallet/types': 0.9.12 big-integer: 1.6.52 utility-types: 3.11.0 - "@koa/cors@3.4.3": + '@koa/cors@3.4.3': dependencies: vary: 1.1.2 - "@kwsites/file-exists@1.1.1": + '@kwsites/file-exists@1.1.1': dependencies: debug: 4.3.4 transitivePeerDependencies: - supports-color - "@kwsites/promise-deferred@1.1.1": {} + '@kwsites/promise-deferred@1.1.1': {} - "@ledgerhq/compressjs@https://codeload.github.com/LedgerHQ/compressjs/tar.gz/d9e8e4d994923e0ea76a32b97289bcccfe71b82e": + '@ledgerhq/compressjs@https://codeload.github.com/LedgerHQ/compressjs/tar.gz/d9e8e4d994923e0ea76a32b97289bcccfe71b82e': dependencies: commander: 2.20.3 - "@ledgerhq/crypto-icons-ui@file:libs/ui/packages/crypto-icons(@types/react@18.2.73)(react@18.2.0)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0))(styled-system@5.1.5)": + '@ledgerhq/crypto-icons-ui@file:libs/ui/packages/crypto-icons(@types/react@18.2.73)(react@18.2.0)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0))(styled-system@5.1.5)': dependencies: react: 18.2.0 styled-components: 5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0) styled-system: 5.1.5 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@ledgerhq/errors@5.50.0": {} + '@ledgerhq/errors@5.50.0': {} - "@ledgerhq/errors@6.19.1": {} + '@ledgerhq/errors@6.19.1': {} - "@ledgerhq/hw-app-eth@5.11.0": + '@ledgerhq/hw-app-eth@5.11.0': dependencies: - "@ledgerhq/errors": 5.50.0 - "@ledgerhq/hw-transport": 5.11.0 + '@ledgerhq/errors': 5.50.0 + '@ledgerhq/hw-transport': 5.11.0 - "@ledgerhq/hw-transport-u2f@5.36.0-deprecated": + '@ledgerhq/hw-transport-u2f@5.36.0-deprecated': dependencies: - "@ledgerhq/errors": 5.50.0 - "@ledgerhq/hw-transport": 5.51.1 - "@ledgerhq/logs": 5.50.0 + '@ledgerhq/errors': 5.50.0 + '@ledgerhq/hw-transport': 5.51.1 + '@ledgerhq/logs': 5.50.0 u2f-api: 0.2.7 - "@ledgerhq/hw-transport@5.11.0": + '@ledgerhq/hw-transport@5.11.0': dependencies: - "@ledgerhq/devices": link:libs/ledgerjs/packages/devices - "@ledgerhq/errors": 5.50.0 + '@ledgerhq/devices': link:libs/ledgerjs/packages/devices + '@ledgerhq/errors': 5.50.0 events: 3.3.0 - "@ledgerhq/hw-transport@5.51.1": + '@ledgerhq/hw-transport@5.51.1': dependencies: - "@ledgerhq/devices": link:libs/ledgerjs/packages/devices - "@ledgerhq/errors": 5.50.0 + '@ledgerhq/devices': link:libs/ledgerjs/packages/devices + '@ledgerhq/errors': 5.50.0 events: 3.3.0 - "@ledgerhq/hw-transport@6.27.1": + '@ledgerhq/hw-transport@6.27.1': dependencies: - "@ledgerhq/devices": link:libs/ledgerjs/packages/devices - "@ledgerhq/errors": 6.19.1 + '@ledgerhq/devices': link:libs/ledgerjs/packages/devices + '@ledgerhq/errors': 6.19.1 events: 3.3.0 - "@ledgerhq/hw-transport@6.28.1": + '@ledgerhq/hw-transport@6.28.1': dependencies: - "@ledgerhq/devices": link:libs/ledgerjs/packages/devices - "@ledgerhq/errors": 6.19.1 + '@ledgerhq/devices': link:libs/ledgerjs/packages/devices + '@ledgerhq/errors': 6.19.1 events: 3.3.0 - "@ledgerhq/hw-transport@6.30.6": + '@ledgerhq/hw-transport@6.30.6': dependencies: - "@ledgerhq/devices": link:libs/ledgerjs/packages/devices - "@ledgerhq/errors": 6.19.1 - "@ledgerhq/logs": 6.12.0 + '@ledgerhq/devices': link:libs/ledgerjs/packages/devices + '@ledgerhq/errors': 6.19.1 + '@ledgerhq/logs': 6.12.0 events: 3.3.0 - "@ledgerhq/hw-transport@6.31.3": + '@ledgerhq/hw-transport@6.31.3': dependencies: - "@ledgerhq/devices": link:libs/ledgerjs/packages/devices - "@ledgerhq/errors": 6.19.1 - "@ledgerhq/logs": 6.12.0 + '@ledgerhq/devices': link:libs/ledgerjs/packages/devices + '@ledgerhq/errors': 6.19.1 + '@ledgerhq/logs': 6.12.0 events: 3.3.0 - "@ledgerhq/hw-transport@6.31.4": + '@ledgerhq/hw-transport@6.31.4': dependencies: - "@ledgerhq/devices": link:libs/ledgerjs/packages/devices - "@ledgerhq/errors": 6.19.1 - "@ledgerhq/logs": 6.12.0 + '@ledgerhq/devices': link:libs/ledgerjs/packages/devices + '@ledgerhq/errors': 6.19.1 + '@ledgerhq/logs': 6.12.0 events: 3.3.0 - "@ledgerhq/icons-ui@file:libs/ui/packages/icons(@types/react@18.2.73)(react@18.2.0)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0))(styled-system@5.1.5)": + '@ledgerhq/icons-ui@file:libs/ui/packages/icons(@types/react@18.2.73)(react@18.2.0)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0))(styled-system@5.1.5)': dependencies: react: 18.2.0 styled-components: 5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0) styled-system: 5.1.5 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@ledgerhq/live-app-sdk@0.8.2": + '@ledgerhq/live-app-sdk@0.8.2': dependencies: bignumber.js: 9.1.2 json-rpc-2.0: 1.7.0 - "@ledgerhq/logs@5.50.0": {} + '@ledgerhq/logs@5.50.0': {} - "@ledgerhq/logs@6.12.0": {} + '@ledgerhq/logs@6.12.0': {} - "@ledgerhq/wallet-api-client-react@1.3.12(react@18.2.0)": + '@ledgerhq/wallet-api-client-react@1.3.12(react@18.2.0)': dependencies: - "@ledgerhq/wallet-api-client": 1.6.0 + '@ledgerhq/wallet-api-client': 1.6.0 react: 18.2.0 - "@ledgerhq/wallet-api-client@1.6.0": + '@ledgerhq/wallet-api-client@1.6.0': dependencies: - "@ledgerhq/hw-transport": 6.31.4 - "@ledgerhq/wallet-api-core": 1.13.0 + '@ledgerhq/hw-transport': 6.31.4 + '@ledgerhq/wallet-api-core': 1.13.0 bignumber.js: 9.1.2 - "@ledgerhq/wallet-api-core@1.13.0": + '@ledgerhq/wallet-api-core@1.13.0': dependencies: - "@ledgerhq/errors": 6.19.1 + '@ledgerhq/errors': 6.19.1 bignumber.js: 9.1.2 uuid: 9.0.1 zod: 3.23.8 - "@ledgerhq/wallet-api-server@1.6.0(react@18.2.0)(rxjs@7.8.1)": + '@ledgerhq/wallet-api-server@1.6.0(react@18.2.0)(rxjs@7.8.1)': dependencies: - "@ledgerhq/wallet-api-core": 1.13.0 + '@ledgerhq/wallet-api-core': 1.13.0 bignumber.js: 9.1.2 picomatch: 4.0.2 rxjs: 7.8.1 optionalDependencies: react: 18.2.0 - "@ledgerhq/wallet-api-simulator@1.2.0(react@18.2.0)": + '@ledgerhq/wallet-api-simulator@1.2.0(react@18.2.0)': dependencies: - "@ledgerhq/hw-transport": 6.31.4 - "@ledgerhq/wallet-api-client": 1.6.0 - "@ledgerhq/wallet-api-core": 1.13.0 - "@ledgerhq/wallet-api-server": 1.6.0(react@18.2.0)(rxjs@7.8.1) + '@ledgerhq/hw-transport': 6.31.4 + '@ledgerhq/wallet-api-client': 1.6.0 + '@ledgerhq/wallet-api-core': 1.13.0 + '@ledgerhq/wallet-api-server': 1.6.0(react@18.2.0)(rxjs@7.8.1) rxjs: 7.8.1 ws: 8.18.0 transitivePeerDependencies: @@ -53187,36 +36912,36 @@ snapshots: - react - utf-8-validate - "@leichtgewicht/ip-codec@2.0.5": {} + '@leichtgewicht/ip-codec@2.0.5': {} - "@lezer/common@1.2.1": {} + '@lezer/common@1.2.1': {} - "@lezer/highlight@1.2.0": + '@lezer/highlight@1.2.0': dependencies: - "@lezer/common": 1.2.1 + '@lezer/common': 1.2.1 - "@lezer/json@1.0.2": + '@lezer/json@1.0.2': dependencies: - "@lezer/common": 1.2.1 - "@lezer/highlight": 1.2.0 - "@lezer/lr": 1.4.1 + '@lezer/common': 1.2.1 + '@lezer/highlight': 1.2.0 + '@lezer/lr': 1.4.1 - "@lezer/lr@1.4.1": + '@lezer/lr@1.4.1': dependencies: - "@lezer/common": 1.2.1 + '@lezer/common': 1.2.1 - "@likashefqet/react-native-image-zoom@1.3.0(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-reanimated@3.9.0(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@likashefqet/react-native-image-zoom@1.3.0(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-reanimated@3.9.0(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) react-native-gesture-handler: 2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-reanimated: 3.9.0(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@malept/cross-spawn-promise@1.1.1": + '@malept/cross-spawn-promise@1.1.1': dependencies: cross-spawn: 7.0.3 - "@malept/flatpak-bundler@0.4.0": + '@malept/flatpak-bundler@0.4.0': dependencies: debug: 4.3.4 fs-extra: 9.1.0 @@ -53225,26 +36950,26 @@ snapshots: transitivePeerDependencies: - supports-color - "@manypkg/find-root@1.1.0": + '@manypkg/find-root@1.1.0': dependencies: - "@babel/runtime": 7.25.0 - "@types/node": 12.20.55 + '@babel/runtime': 7.25.0 + '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 - "@manypkg/get-packages@1.1.3": + '@manypkg/get-packages@1.1.3': dependencies: - "@babel/runtime": 7.25.0 - "@changesets/types": 4.1.0 - "@manypkg/find-root": 1.1.0 + '@babel/runtime': 7.25.0 + '@changesets/types': 4.1.0 + '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 globby: 11.1.0 read-yaml-file: 1.1.0 - "@mdx-js/mdx@2.3.0": + '@mdx-js/mdx@2.3.0': dependencies: - "@types/estree-jsx": 1.0.5 - "@types/mdx": 2.0.12 + '@types/estree-jsx': 1.0.5 + '@types/mdx': 2.0.12 estree-util-build-jsx: 2.2.2 estree-util-is-identifier-name: 2.1.0 estree-util-to-js: 1.2.0 @@ -53263,41 +36988,41 @@ snapshots: transitivePeerDependencies: - supports-color - "@mdx-js/react@2.3.0(@types/react@18.2.73)(react@18.2.0)": + '@mdx-js/react@2.3.0(@types/react@18.2.73)(react@18.2.0)': dependencies: - "@types/mdx": 2.0.12 + '@types/mdx': 2.0.12 react: 18.2.0 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@mdx-js/react@2.3.0(react@18.2.0)": + '@mdx-js/react@2.3.0(react@18.2.0)': dependencies: - "@types/mdx": 2.0.12 + '@types/mdx': 2.0.12 react: 18.2.0 - "@mswjs/cookies@1.1.0": {} + '@mswjs/cookies@1.1.0': {} - "@mswjs/interceptors@0.26.14": + '@mswjs/interceptors@0.26.14': dependencies: - "@open-draft/deferred-promise": 2.2.0 - "@open-draft/logger": 0.3.0 - "@open-draft/until": 2.1.0 + '@open-draft/deferred-promise': 2.2.0 + '@open-draft/logger': 0.3.0 + '@open-draft/until': 2.1.0 is-node-process: 1.2.0 outvariant: 1.4.2 strict-event-emitter: 0.5.1 - "@mswjs/interceptors@0.29.1": + '@mswjs/interceptors@0.29.1': dependencies: - "@open-draft/deferred-promise": 2.2.0 - "@open-draft/logger": 0.3.0 - "@open-draft/until": 2.1.0 + '@open-draft/deferred-promise': 2.2.0 + '@open-draft/logger': 0.3.0 + '@open-draft/until': 2.1.0 is-node-process: 1.2.0 outvariant: 1.4.2 strict-event-emitter: 0.5.1 - "@multiversx/sdk-core@13.3.0(bignumber.js@9.1.2)(protobufjs@7.3.2)": + '@multiversx/sdk-core@13.3.0(bignumber.js@9.1.2)(protobufjs@7.3.2)': dependencies: - "@multiversx/sdk-transaction-decoder": 1.0.2 + '@multiversx/sdk-transaction-decoder': 1.0.2 bech32: 1.1.4 bignumber.js: 9.1.2 blake2b: 2.1.3 @@ -53306,71 +37031,71 @@ snapshots: keccak: 3.0.2 protobufjs: 7.3.2 - "@multiversx/sdk-transaction-decoder@1.0.2": + '@multiversx/sdk-transaction-decoder@1.0.2': dependencies: bech32: 2.0.0 - "@napi-rs/simple-git-android-arm-eabi@0.1.16": + '@napi-rs/simple-git-android-arm-eabi@0.1.16': optional: true - "@napi-rs/simple-git-android-arm64@0.1.16": + '@napi-rs/simple-git-android-arm64@0.1.16': optional: true - "@napi-rs/simple-git-darwin-arm64@0.1.16": + '@napi-rs/simple-git-darwin-arm64@0.1.16': optional: true - "@napi-rs/simple-git-darwin-x64@0.1.16": + '@napi-rs/simple-git-darwin-x64@0.1.16': optional: true - "@napi-rs/simple-git-linux-arm-gnueabihf@0.1.16": + '@napi-rs/simple-git-linux-arm-gnueabihf@0.1.16': optional: true - "@napi-rs/simple-git-linux-arm64-gnu@0.1.16": + '@napi-rs/simple-git-linux-arm64-gnu@0.1.16': optional: true - "@napi-rs/simple-git-linux-arm64-musl@0.1.16": + '@napi-rs/simple-git-linux-arm64-musl@0.1.16': optional: true - "@napi-rs/simple-git-linux-x64-gnu@0.1.16": + '@napi-rs/simple-git-linux-x64-gnu@0.1.16': optional: true - "@napi-rs/simple-git-linux-x64-musl@0.1.16": + '@napi-rs/simple-git-linux-x64-musl@0.1.16': optional: true - "@napi-rs/simple-git-win32-arm64-msvc@0.1.16": + '@napi-rs/simple-git-win32-arm64-msvc@0.1.16': optional: true - "@napi-rs/simple-git-win32-x64-msvc@0.1.16": + '@napi-rs/simple-git-win32-x64-msvc@0.1.16': optional: true - "@napi-rs/simple-git@0.1.16": + '@napi-rs/simple-git@0.1.16': optionalDependencies: - "@napi-rs/simple-git-android-arm-eabi": 0.1.16 - "@napi-rs/simple-git-android-arm64": 0.1.16 - "@napi-rs/simple-git-darwin-arm64": 0.1.16 - "@napi-rs/simple-git-darwin-x64": 0.1.16 - "@napi-rs/simple-git-linux-arm-gnueabihf": 0.1.16 - "@napi-rs/simple-git-linux-arm64-gnu": 0.1.16 - "@napi-rs/simple-git-linux-arm64-musl": 0.1.16 - "@napi-rs/simple-git-linux-x64-gnu": 0.1.16 - "@napi-rs/simple-git-linux-x64-musl": 0.1.16 - "@napi-rs/simple-git-win32-arm64-msvc": 0.1.16 - "@napi-rs/simple-git-win32-x64-msvc": 0.1.16 - - "@ndelangen/get-tarball@3.0.9": + '@napi-rs/simple-git-android-arm-eabi': 0.1.16 + '@napi-rs/simple-git-android-arm64': 0.1.16 + '@napi-rs/simple-git-darwin-arm64': 0.1.16 + '@napi-rs/simple-git-darwin-x64': 0.1.16 + '@napi-rs/simple-git-linux-arm-gnueabihf': 0.1.16 + '@napi-rs/simple-git-linux-arm64-gnu': 0.1.16 + '@napi-rs/simple-git-linux-arm64-musl': 0.1.16 + '@napi-rs/simple-git-linux-x64-gnu': 0.1.16 + '@napi-rs/simple-git-linux-x64-musl': 0.1.16 + '@napi-rs/simple-git-win32-arm64-msvc': 0.1.16 + '@napi-rs/simple-git-win32-x64-msvc': 0.1.16 + + '@ndelangen/get-tarball@3.0.9': dependencies: gunzip-maybe: 1.4.2 pump: 3.0.0 tar-fs: 2.1.1 - "@near-js/accounts@1.0.2": + '@near-js/accounts@1.0.2': dependencies: - "@near-js/crypto": 1.2.0 - "@near-js/providers": 0.0.10 - "@near-js/signers": 0.1.0 - "@near-js/transactions": 1.1.0 - "@near-js/types": 0.0.4 - "@near-js/utils": 0.0.5 + '@near-js/crypto': 1.2.0 + '@near-js/providers': 0.0.10 + '@near-js/signers': 0.1.0 + '@near-js/transactions': 1.1.0 + '@near-js/types': 0.0.4 + '@near-js/utils': 0.0.5 ajv: 8.11.2 ajv-formats: 2.1.1 bn.js: 5.2.1 @@ -53381,35 +37106,35 @@ snapshots: transitivePeerDependencies: - encoding - "@near-js/crypto@1.2.0": + '@near-js/crypto@1.2.0': dependencies: - "@near-js/types": 0.0.4 - "@near-js/utils": 0.0.5 - "@noble/curves": 1.2.0 + '@near-js/types': 0.0.4 + '@near-js/utils': 0.0.5 + '@noble/curves': 1.2.0 bn.js: 5.2.1 borsh: 1.0.0 randombytes: 2.1.0 - "@near-js/keystores-browser@0.0.8": + '@near-js/keystores-browser@0.0.8': dependencies: - "@near-js/crypto": 1.2.0 - "@near-js/keystores": 0.0.8 + '@near-js/crypto': 1.2.0 + '@near-js/keystores': 0.0.8 - "@near-js/keystores-node@0.0.8": + '@near-js/keystores-node@0.0.8': dependencies: - "@near-js/crypto": 1.2.0 - "@near-js/keystores": 0.0.8 + '@near-js/crypto': 1.2.0 + '@near-js/keystores': 0.0.8 - "@near-js/keystores@0.0.8": + '@near-js/keystores@0.0.8': dependencies: - "@near-js/crypto": 1.2.0 - "@near-js/types": 0.0.4 + '@near-js/crypto': 1.2.0 + '@near-js/types': 0.0.4 - "@near-js/providers@0.0.10": + '@near-js/providers@0.0.10': dependencies: - "@near-js/transactions": 1.1.0 - "@near-js/types": 0.0.4 - "@near-js/utils": 0.0.5 + '@near-js/transactions': 1.1.0 + '@near-js/types': 0.0.4 + '@near-js/utils': 0.0.5 bn.js: 5.2.1 borsh: 1.0.0 http-errors: 1.7.2 @@ -53418,420 +37143,420 @@ snapshots: transitivePeerDependencies: - encoding - "@near-js/signers@0.1.0": + '@near-js/signers@0.1.0': dependencies: - "@near-js/crypto": 1.2.0 - "@near-js/keystores": 0.0.8 - "@noble/hashes": 1.3.3 + '@near-js/crypto': 1.2.0 + '@near-js/keystores': 0.0.8 + '@noble/hashes': 1.3.3 - "@near-js/transactions@1.1.0": + '@near-js/transactions@1.1.0': dependencies: - "@near-js/crypto": 1.2.0 - "@near-js/signers": 0.1.0 - "@near-js/types": 0.0.4 - "@near-js/utils": 0.0.5 - "@noble/hashes": 1.3.3 + '@near-js/crypto': 1.2.0 + '@near-js/signers': 0.1.0 + '@near-js/types': 0.0.4 + '@near-js/utils': 0.0.5 + '@noble/hashes': 1.3.3 bn.js: 5.2.1 borsh: 1.0.0 - "@near-js/types@0.0.4": + '@near-js/types@0.0.4': dependencies: bn.js: 5.2.1 - "@near-js/utils@0.0.5": + '@near-js/utils@0.0.5': dependencies: - "@near-js/types": 0.0.4 + '@near-js/types': 0.0.4 bn.js: 5.2.1 bs58: 4.0.0 depd: 2.0.0 mustache: 4.0.0 - "@near-js/wallet-account@1.0.2": + '@near-js/wallet-account@1.0.2': dependencies: - "@near-js/accounts": 1.0.2 - "@near-js/crypto": 1.2.0 - "@near-js/keystores": 0.0.8 - "@near-js/signers": 0.1.0 - "@near-js/transactions": 1.1.0 - "@near-js/types": 0.0.4 - "@near-js/utils": 0.0.5 + '@near-js/accounts': 1.0.2 + '@near-js/crypto': 1.2.0 + '@near-js/keystores': 0.0.8 + '@near-js/signers': 0.1.0 + '@near-js/transactions': 1.1.0 + '@near-js/types': 0.0.4 + '@near-js/utils': 0.0.5 bn.js: 5.2.1 borsh: 1.0.0 transitivePeerDependencies: - encoding - "@next/env@13.2.4": {} + '@next/env@13.2.4': {} - "@next/env@14.2.12": {} + '@next/env@14.2.12': {} - "@next/eslint-plugin-next@13.5.6": + '@next/eslint-plugin-next@13.5.6': dependencies: glob: 7.1.7 - "@next/swc-android-arm-eabi@13.2.4": + '@next/swc-android-arm-eabi@13.2.4': optional: true - "@next/swc-android-arm64@13.2.4": + '@next/swc-android-arm64@13.2.4': optional: true - "@next/swc-darwin-arm64@13.2.4": + '@next/swc-darwin-arm64@13.2.4': optional: true - "@next/swc-darwin-arm64@14.2.12": + '@next/swc-darwin-arm64@14.2.12': optional: true - "@next/swc-darwin-x64@13.2.4": + '@next/swc-darwin-x64@13.2.4': optional: true - "@next/swc-darwin-x64@14.2.12": + '@next/swc-darwin-x64@14.2.12': optional: true - "@next/swc-freebsd-x64@13.2.4": + '@next/swc-freebsd-x64@13.2.4': optional: true - "@next/swc-linux-arm-gnueabihf@13.2.4": + '@next/swc-linux-arm-gnueabihf@13.2.4': optional: true - "@next/swc-linux-arm64-gnu@13.2.4": + '@next/swc-linux-arm64-gnu@13.2.4': optional: true - "@next/swc-linux-arm64-gnu@14.2.12": + '@next/swc-linux-arm64-gnu@14.2.12': optional: true - "@next/swc-linux-arm64-musl@13.2.4": + '@next/swc-linux-arm64-musl@13.2.4': optional: true - "@next/swc-linux-arm64-musl@14.2.12": + '@next/swc-linux-arm64-musl@14.2.12': optional: true - "@next/swc-linux-x64-gnu@13.2.4": + '@next/swc-linux-x64-gnu@13.2.4': optional: true - "@next/swc-linux-x64-gnu@14.2.12": + '@next/swc-linux-x64-gnu@14.2.12': optional: true - "@next/swc-linux-x64-musl@13.2.4": + '@next/swc-linux-x64-musl@13.2.4': optional: true - "@next/swc-linux-x64-musl@14.2.12": + '@next/swc-linux-x64-musl@14.2.12': optional: true - "@next/swc-win32-arm64-msvc@13.2.4": + '@next/swc-win32-arm64-msvc@13.2.4': optional: true - "@next/swc-win32-arm64-msvc@14.2.12": + '@next/swc-win32-arm64-msvc@14.2.12': optional: true - "@next/swc-win32-ia32-msvc@13.2.4": + '@next/swc-win32-ia32-msvc@13.2.4': optional: true - "@next/swc-win32-ia32-msvc@14.2.12": + '@next/swc-win32-ia32-msvc@14.2.12': optional: true - "@next/swc-win32-x64-msvc@13.2.4": + '@next/swc-win32-x64-msvc@13.2.4': optional: true - "@next/swc-win32-x64-msvc@14.2.12": + '@next/swc-win32-x64-msvc@14.2.12': optional: true - "@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1": + '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': dependencies: eslint-scope: 5.1.1 - "@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.0": + '@noble/curves@1.4.0': dependencies: - "@noble/hashes": 1.4.0 + '@noble/hashes': 1.4.0 - "@noble/ed25519@1.7.3": {} + '@noble/ed25519@1.7.3': {} - "@noble/hashes@1.1.5": {} + '@noble/hashes@1.1.5': {} - "@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/secp256k1@1.7.1": {} + '@noble/secp256k1@1.7.1': {} - "@node-ipc/js-queue@2.0.3": + '@node-ipc/js-queue@2.0.3': dependencies: easy-stack: 1.0.1 - "@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.17.1 - "@npmcli/fs@1.1.1": + '@npmcli/fs@1.1.1': dependencies: - "@gar/promisify": 1.1.3 + '@gar/promisify': 1.1.3 semver: 7.5.4 - "@npmcli/fs@3.1.1": + '@npmcli/fs@3.1.1': dependencies: semver: 7.6.3 - "@npmcli/move-file@1.1.2": + '@npmcli/move-file@1.1.2': dependencies: mkdirp: 1.0.4 rimraf: 3.0.2 - "@octokit/auth-app@6.1.1": + '@octokit/auth-app@6.1.1': dependencies: - "@octokit/auth-oauth-app": 7.1.0 - "@octokit/auth-oauth-user": 4.1.0 - "@octokit/request": 8.4.0 - "@octokit/request-error": 5.1.0 - "@octokit/types": 13.5.0 + '@octokit/auth-oauth-app': 7.1.0 + '@octokit/auth-oauth-user': 4.1.0 + '@octokit/request': 8.4.0 + '@octokit/request-error': 5.1.0 + '@octokit/types': 13.5.0 deprecation: 2.3.1 lru-cache: 10.2.0 universal-github-app-jwt: 1.1.2 universal-user-agent: 6.0.1 - "@octokit/auth-oauth-app@7.1.0": + '@octokit/auth-oauth-app@7.1.0': dependencies: - "@octokit/auth-oauth-device": 6.1.0 - "@octokit/auth-oauth-user": 4.1.0 - "@octokit/request": 8.4.0 - "@octokit/types": 13.5.0 - "@types/btoa-lite": 1.0.2 + '@octokit/auth-oauth-device': 6.1.0 + '@octokit/auth-oauth-user': 4.1.0 + '@octokit/request': 8.4.0 + '@octokit/types': 13.5.0 + '@types/btoa-lite': 1.0.2 btoa-lite: 1.0.0 universal-user-agent: 6.0.1 - "@octokit/auth-oauth-device@6.1.0": + '@octokit/auth-oauth-device@6.1.0': dependencies: - "@octokit/oauth-methods": 4.1.0 - "@octokit/request": 8.4.0 - "@octokit/types": 13.5.0 + '@octokit/oauth-methods': 4.1.0 + '@octokit/request': 8.4.0 + '@octokit/types': 13.5.0 universal-user-agent: 6.0.1 - "@octokit/auth-oauth-user@4.1.0": + '@octokit/auth-oauth-user@4.1.0': dependencies: - "@octokit/auth-oauth-device": 6.1.0 - "@octokit/oauth-methods": 4.1.0 - "@octokit/request": 8.4.0 - "@octokit/types": 13.5.0 + '@octokit/auth-oauth-device': 6.1.0 + '@octokit/oauth-methods': 4.1.0 + '@octokit/request': 8.4.0 + '@octokit/types': 13.5.0 btoa-lite: 1.0.0 universal-user-agent: 6.0.1 - "@octokit/auth-token@2.5.0": + '@octokit/auth-token@2.5.0': dependencies: - "@octokit/types": 6.41.0 + '@octokit/types': 6.41.0 - "@octokit/auth-token@4.0.0": {} + '@octokit/auth-token@4.0.0': {} - "@octokit/auth-unauthenticated@5.0.1": + '@octokit/auth-unauthenticated@5.0.1': dependencies: - "@octokit/request-error": 5.1.0 - "@octokit/types": 12.6.0 + '@octokit/request-error': 5.1.0 + '@octokit/types': 12.6.0 - "@octokit/core@3.6.0": + '@octokit/core@3.6.0': dependencies: - "@octokit/auth-token": 2.5.0 - "@octokit/graphql": 4.8.0 - "@octokit/request": 5.6.3 - "@octokit/request-error": 2.1.0 - "@octokit/types": 6.41.0 + '@octokit/auth-token': 2.5.0 + '@octokit/graphql': 4.8.0 + '@octokit/request': 5.6.3 + '@octokit/request-error': 2.1.0 + '@octokit/types': 6.41.0 before-after-hook: 2.2.3 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding - "@octokit/core@5.1.0": + '@octokit/core@5.1.0': dependencies: - "@octokit/auth-token": 4.0.0 - "@octokit/graphql": 7.0.2 - "@octokit/request": 8.2.0 - "@octokit/request-error": 5.0.1 - "@octokit/types": 12.6.0 + '@octokit/auth-token': 4.0.0 + '@octokit/graphql': 7.0.2 + '@octokit/request': 8.2.0 + '@octokit/request-error': 5.0.1 + '@octokit/types': 12.6.0 before-after-hook: 2.2.3 universal-user-agent: 6.0.1 - "@octokit/endpoint@6.0.12": + '@octokit/endpoint@6.0.12': dependencies: - "@octokit/types": 6.41.0 + '@octokit/types': 6.41.0 is-plain-object: 5.0.0 universal-user-agent: 6.0.1 - "@octokit/endpoint@9.0.4": + '@octokit/endpoint@9.0.4': dependencies: - "@octokit/types": 12.6.0 + '@octokit/types': 12.6.0 universal-user-agent: 6.0.1 - "@octokit/graphql@4.8.0": + '@octokit/graphql@4.8.0': dependencies: - "@octokit/request": 5.6.3 - "@octokit/types": 6.41.0 + '@octokit/request': 5.6.3 + '@octokit/types': 6.41.0 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding - "@octokit/graphql@7.0.2": + '@octokit/graphql@7.0.2': dependencies: - "@octokit/request": 8.2.0 - "@octokit/types": 12.6.0 + '@octokit/request': 8.2.0 + '@octokit/types': 12.6.0 universal-user-agent: 6.0.1 - "@octokit/oauth-authorization-url@6.0.2": {} + '@octokit/oauth-authorization-url@6.0.2': {} - "@octokit/oauth-methods@4.1.0": + '@octokit/oauth-methods@4.1.0': dependencies: - "@octokit/oauth-authorization-url": 6.0.2 - "@octokit/request": 8.4.0 - "@octokit/request-error": 5.1.0 - "@octokit/types": 13.5.0 + '@octokit/oauth-authorization-url': 6.0.2 + '@octokit/request': 8.4.0 + '@octokit/request-error': 5.1.0 + '@octokit/types': 13.5.0 btoa-lite: 1.0.0 - "@octokit/openapi-types@12.11.0": {} + '@octokit/openapi-types@12.11.0': {} - "@octokit/openapi-types@20.0.0": {} + '@octokit/openapi-types@20.0.0': {} - "@octokit/openapi-types@22.2.0": {} + '@octokit/openapi-types@22.2.0': {} - "@octokit/plugin-enterprise-compatibility@4.1.0": + '@octokit/plugin-enterprise-compatibility@4.1.0': dependencies: - "@octokit/request-error": 5.1.0 - "@octokit/types": 12.6.0 + '@octokit/request-error': 5.1.0 + '@octokit/types': 12.6.0 - "@octokit/plugin-paginate-rest@2.21.3(@octokit/core@3.6.0)": + '@octokit/plugin-paginate-rest@2.21.3(@octokit/core@3.6.0)': dependencies: - "@octokit/core": 3.6.0 - "@octokit/types": 6.41.0 + '@octokit/core': 3.6.0 + '@octokit/types': 6.41.0 - "@octokit/plugin-paginate-rest@9.2.1(@octokit/core@5.1.0)": + '@octokit/plugin-paginate-rest@9.2.1(@octokit/core@5.1.0)': dependencies: - "@octokit/core": 5.1.0 - "@octokit/types": 12.6.0 + '@octokit/core': 5.1.0 + '@octokit/types': 12.6.0 - "@octokit/plugin-request-log@1.0.4(@octokit/core@3.6.0)": + '@octokit/plugin-request-log@1.0.4(@octokit/core@3.6.0)': dependencies: - "@octokit/core": 3.6.0 + '@octokit/core': 3.6.0 - "@octokit/plugin-rest-endpoint-methods@10.4.1(@octokit/core@5.1.0)": + '@octokit/plugin-rest-endpoint-methods@10.4.1(@octokit/core@5.1.0)': dependencies: - "@octokit/core": 5.1.0 - "@octokit/types": 12.6.0 + '@octokit/core': 5.1.0 + '@octokit/types': 12.6.0 - "@octokit/plugin-rest-endpoint-methods@5.16.2(@octokit/core@3.6.0)": + '@octokit/plugin-rest-endpoint-methods@5.16.2(@octokit/core@3.6.0)': dependencies: - "@octokit/core": 3.6.0 - "@octokit/types": 6.41.0 + '@octokit/core': 3.6.0 + '@octokit/types': 6.41.0 deprecation: 2.3.1 - "@octokit/plugin-retry@6.0.1(@octokit/core@5.1.0)": + '@octokit/plugin-retry@6.0.1(@octokit/core@5.1.0)': dependencies: - "@octokit/core": 5.1.0 - "@octokit/request-error": 5.1.0 - "@octokit/types": 12.6.0 + '@octokit/core': 5.1.0 + '@octokit/request-error': 5.1.0 + '@octokit/types': 12.6.0 bottleneck: 2.19.5 - "@octokit/plugin-throttling@8.2.0(@octokit/core@5.1.0)": + '@octokit/plugin-throttling@8.2.0(@octokit/core@5.1.0)': dependencies: - "@octokit/core": 5.1.0 - "@octokit/types": 12.6.0 + '@octokit/core': 5.1.0 + '@octokit/types': 12.6.0 bottleneck: 2.19.5 - "@octokit/request-error@2.1.0": + '@octokit/request-error@2.1.0': dependencies: - "@octokit/types": 6.41.0 + '@octokit/types': 6.41.0 deprecation: 2.3.1 once: 1.4.0 - "@octokit/request-error@5.0.1": + '@octokit/request-error@5.0.1': dependencies: - "@octokit/types": 12.6.0 + '@octokit/types': 12.6.0 deprecation: 2.3.1 once: 1.4.0 - "@octokit/request-error@5.1.0": + '@octokit/request-error@5.1.0': dependencies: - "@octokit/types": 13.5.0 + '@octokit/types': 13.5.0 deprecation: 2.3.1 once: 1.4.0 - "@octokit/request@5.6.3": + '@octokit/request@5.6.3': dependencies: - "@octokit/endpoint": 6.0.12 - "@octokit/request-error": 2.1.0 - "@octokit/types": 6.41.0 + '@octokit/endpoint': 6.0.12 + '@octokit/request-error': 2.1.0 + '@octokit/types': 6.41.0 is-plain-object: 5.0.0 node-fetch: 2.7.0 universal-user-agent: 6.0.1 transitivePeerDependencies: - encoding - "@octokit/request@8.2.0": + '@octokit/request@8.2.0': dependencies: - "@octokit/endpoint": 9.0.4 - "@octokit/request-error": 5.0.1 - "@octokit/types": 12.6.0 + '@octokit/endpoint': 9.0.4 + '@octokit/request-error': 5.0.1 + '@octokit/types': 12.6.0 universal-user-agent: 6.0.1 - "@octokit/request@8.4.0": + '@octokit/request@8.4.0': dependencies: - "@octokit/endpoint": 9.0.4 - "@octokit/request-error": 5.1.0 - "@octokit/types": 13.5.0 + '@octokit/endpoint': 9.0.4 + '@octokit/request-error': 5.1.0 + '@octokit/types': 13.5.0 universal-user-agent: 6.0.1 - "@octokit/rest@18.12.0": + '@octokit/rest@18.12.0': dependencies: - "@octokit/core": 3.6.0 - "@octokit/plugin-paginate-rest": 2.21.3(@octokit/core@3.6.0) - "@octokit/plugin-request-log": 1.0.4(@octokit/core@3.6.0) - "@octokit/plugin-rest-endpoint-methods": 5.16.2(@octokit/core@3.6.0) + '@octokit/core': 3.6.0 + '@octokit/plugin-paginate-rest': 2.21.3(@octokit/core@3.6.0) + '@octokit/plugin-request-log': 1.0.4(@octokit/core@3.6.0) + '@octokit/plugin-rest-endpoint-methods': 5.16.2(@octokit/core@3.6.0) transitivePeerDependencies: - encoding - "@octokit/types@12.6.0": + '@octokit/types@12.6.0': dependencies: - "@octokit/openapi-types": 20.0.0 + '@octokit/openapi-types': 20.0.0 - "@octokit/types@13.5.0": + '@octokit/types@13.5.0': dependencies: - "@octokit/openapi-types": 22.2.0 + '@octokit/openapi-types': 22.2.0 - "@octokit/types@6.41.0": + '@octokit/types@6.41.0': dependencies: - "@octokit/openapi-types": 12.11.0 + '@octokit/openapi-types': 12.11.0 - "@octokit/webhooks-methods@4.1.0": {} + '@octokit/webhooks-methods@4.1.0': {} - "@octokit/webhooks-types@7.4.0": {} + '@octokit/webhooks-types@7.4.0': {} - "@octokit/webhooks@12.2.0": + '@octokit/webhooks@12.2.0': dependencies: - "@octokit/request-error": 5.0.1 - "@octokit/webhooks-methods": 4.1.0 - "@octokit/webhooks-types": 7.4.0 + '@octokit/request-error': 5.0.1 + '@octokit/webhooks-methods': 4.1.0 + '@octokit/webhooks-types': 7.4.0 aggregate-error: 3.1.0 - "@open-draft/deferred-promise@2.2.0": {} + '@open-draft/deferred-promise@2.2.0': {} - "@open-draft/logger@0.3.0": + '@open-draft/logger@0.3.0': dependencies: is-node-process: 1.2.0 outvariant: 1.4.2 - "@open-draft/until@2.1.0": {} + '@open-draft/until@2.1.0': {} - "@open-rpc/client-js@1.8.1": + '@open-rpc/client-js@1.8.1': dependencies: isomorphic-fetch: 3.0.0 isomorphic-ws: 5.0.0(ws@7.5.10) @@ -53842,165 +37567,165 @@ snapshots: - encoding - utf-8-validate - "@opentelemetry/api-logs@0.52.1": + '@opentelemetry/api-logs@0.52.1': dependencies: - "@opentelemetry/api": 1.9.0 + '@opentelemetry/api': 1.9.0 - "@opentelemetry/api@1.8.0": {} + '@opentelemetry/api@1.8.0': {} - "@opentelemetry/api@1.9.0": {} + '@opentelemetry/api@1.9.0': {} - "@opentelemetry/context-async-hooks@1.25.1(@opentelemetry/api@1.9.0)": + '@opentelemetry/context-async-hooks@1.25.1(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 + '@opentelemetry/api': 1.9.0 - "@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0)": + '@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/semantic-conventions": 1.25.1 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/semantic-conventions': 1.25.1 - "@opentelemetry/instrumentation-connect@0.37.0(@opentelemetry/api@1.9.0)": + '@opentelemetry/instrumentation-connect@0.37.0(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/semantic-conventions": 1.25.1 - "@types/connect": 3.4.36 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 + '@types/connect': 3.4.36 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-express@0.40.1(@opentelemetry/api@1.9.0)": + '@opentelemetry/instrumentation-express@0.40.1(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/semantic-conventions": 1.25.1 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-fastify@0.37.0(@opentelemetry/api@1.9.0)": + '@opentelemetry/instrumentation-fastify@0.37.0(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/semantic-conventions": 1.25.1 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-graphql@0.41.0(@opentelemetry/api@1.9.0)": + '@opentelemetry/instrumentation-graphql@0.41.0(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-hapi@0.39.0(@opentelemetry/api@1.9.0)": + '@opentelemetry/instrumentation-hapi@0.39.0(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/semantic-conventions": 1.25.1 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-http@0.52.1(@opentelemetry/api@1.9.0)": + '@opentelemetry/instrumentation-http@0.52.1(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/semantic-conventions": 1.25.1 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 semver: 7.6.3 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-ioredis@0.41.0(@opentelemetry/api@1.9.0)": + '@opentelemetry/instrumentation-ioredis@0.41.0(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/redis-common": 0.36.2 - "@opentelemetry/semantic-conventions": 1.25.1 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/redis-common': 0.36.2 + '@opentelemetry/semantic-conventions': 1.25.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-koa@0.41.0(@opentelemetry/api@1.9.0)": + '@opentelemetry/instrumentation-koa@0.41.0(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/semantic-conventions": 1.25.1 - "@types/koa": 2.14.0 - "@types/koa__router": 12.0.3 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 + '@types/koa': 2.14.0 + '@types/koa__router': 12.0.3 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-mongodb@0.45.0(@opentelemetry/api@1.9.0)": + '@opentelemetry/instrumentation-mongodb@0.45.0(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/sdk-metrics": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/semantic-conventions": 1.25.1 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-metrics': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-mongoose@0.39.0(@opentelemetry/api@1.9.0)": + '@opentelemetry/instrumentation-mongoose@0.39.0(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/semantic-conventions": 1.25.1 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-mysql2@0.39.0(@opentelemetry/api@1.9.0)": + '@opentelemetry/instrumentation-mysql2@0.39.0(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/semantic-conventions": 1.25.1 - "@opentelemetry/sql-common": 0.40.1(@opentelemetry/api@1.9.0) + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 + '@opentelemetry/sql-common': 0.40.1(@opentelemetry/api@1.9.0) transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-mysql@0.39.0(@opentelemetry/api@1.9.0)": + '@opentelemetry/instrumentation-mysql@0.39.0(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/semantic-conventions": 1.25.1 - "@types/mysql": 2.15.22 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 + '@types/mysql': 2.15.22 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-nestjs-core@0.38.0(@opentelemetry/api@1.9.0)": + '@opentelemetry/instrumentation-nestjs-core@0.38.0(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/semantic-conventions": 1.25.1 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-pg@0.42.0(@opentelemetry/api@1.9.0)": + '@opentelemetry/instrumentation-pg@0.42.0(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/semantic-conventions": 1.25.1 - "@opentelemetry/sql-common": 0.40.1(@opentelemetry/api@1.9.0) - "@types/pg": 8.6.1 - "@types/pg-pool": 2.0.4 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 + '@opentelemetry/sql-common': 0.40.1(@opentelemetry/api@1.9.0) + '@types/pg': 8.6.1 + '@types/pg-pool': 2.0.4 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation-redis-4@0.40.0(@opentelemetry/api@1.9.0)": + '@opentelemetry/instrumentation-redis-4@0.40.0(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/redis-common": 0.36.2 - "@opentelemetry/semantic-conventions": 1.25.1 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/redis-common': 0.36.2 + '@opentelemetry/semantic-conventions': 1.25.1 transitivePeerDependencies: - supports-color - "@opentelemetry/instrumentation@0.43.0(@opentelemetry/api@1.9.0)": + '@opentelemetry/instrumentation@0.43.0(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@types/shimmer": 1.2.0 + '@opentelemetry/api': 1.9.0 + '@types/shimmer': 1.2.0 import-in-the-middle: 1.4.2 require-in-the-middle: 7.3.0 semver: 7.6.3 @@ -54009,11 +37734,11 @@ snapshots: - supports-color optional: true - "@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0)": + '@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/api-logs": 0.52.1 - "@types/shimmer": 1.2.0 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/api-logs': 0.52.1 + '@types/shimmer': 1.2.0 import-in-the-middle: 1.10.0 require-in-the-middle: 7.3.0 semver: 7.6.3 @@ -54021,49 +37746,49 @@ snapshots: transitivePeerDependencies: - supports-color - "@opentelemetry/redis-common@0.36.2": {} + '@opentelemetry/redis-common@0.36.2': {} - "@opentelemetry/resources@1.25.1(@opentelemetry/api@1.9.0)": + '@opentelemetry/resources@1.25.1(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/semantic-conventions": 1.25.1 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 - "@opentelemetry/sdk-metrics@1.25.1(@opentelemetry/api@1.9.0)": + '@opentelemetry/sdk-metrics@1.25.1(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/resources": 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.25.1(@opentelemetry/api@1.9.0) lodash.merge: 4.6.2 - "@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0)": + '@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/resources": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/semantic-conventions": 1.25.1 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 - "@opentelemetry/semantic-conventions@1.25.1": {} + '@opentelemetry/semantic-conventions@1.25.1': {} - "@opentelemetry/sql-common@0.40.1(@opentelemetry/api@1.9.0)": + '@opentelemetry/sql-common@0.40.1(@opentelemetry/api@1.9.0)': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) - "@pkgjs/parseargs@0.11.0": + '@pkgjs/parseargs@0.11.0': optional: true - "@pkgr/core@0.1.1": {} + '@pkgr/core@0.1.1': {} - "@playwright/test@1.40.1": + '@playwright/test@1.40.1': dependencies: playwright: 1.40.1 - "@playwright/test@1.45.0": + '@playwright/test@1.45.0': dependencies: playwright: 1.45.0 - "@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.10.0)(webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0))(webpack@5.91.0(webpack-cli@4.10.0))": + '@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.10.0)(webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0))(webpack@5.91.0(webpack-cli@4.10.0))': dependencies: ansi-html-community: 0.0.8 common-path-prefix: 3.0.0 @@ -54079,7 +37804,7 @@ snapshots: optionalDependencies: webpack-dev-server: 4.15.2(webpack-cli@4.10.0)(webpack@5.91.0) - "@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.11.0)(webpack-dev-server@4.15.2(webpack@5.94.0))(webpack@5.94.0)": + '@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.11.0)(webpack-dev-server@4.15.2(webpack@5.94.0))(webpack@5.94.0)': dependencies: ansi-html-community: 0.0.8 common-path-prefix: 3.0.0 @@ -54095,7 +37820,7 @@ snapshots: optionalDependencies: webpack-dev-server: 4.15.2(webpack@5.94.0) - "@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.2)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12)))(webpack@5.94.0(metro@0.80.12))": + '@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.2)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12)))(webpack@5.94.0(metro@0.80.12))': dependencies: ansi-html-community: 0.0.8 common-path-prefix: 3.0.0 @@ -54111,7 +37836,7 @@ snapshots: optionalDependencies: webpack-dev-server: 4.15.2(webpack@5.91.0(metro@0.80.12)) - "@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.2)(webpack@5.94.0(esbuild@0.19.12))": + '@pmmmwh/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.2)(webpack@5.94.0(esbuild@0.19.12))': dependencies: ansi-html-community: 0.0.8 common-path-prefix: 3.0.0 @@ -54125,62 +37850,62 @@ snapshots: source-map: 0.7.4 webpack: 5.94.0(esbuild@0.19.12) - "@polka/url@1.0.0-next.25": {} + '@polka/url@1.0.0-next.25': {} - "@polkadot-api/json-rpc-provider-proxy@0.0.1": + '@polkadot-api/json-rpc-provider-proxy@0.0.1': optional: true - "@polkadot-api/json-rpc-provider@0.0.1": + '@polkadot-api/json-rpc-provider@0.0.1': optional: true - "@polkadot-api/metadata-builders@0.0.1": + '@polkadot-api/metadata-builders@0.0.1': dependencies: - "@polkadot-api/substrate-bindings": 0.0.1 - "@polkadot-api/utils": 0.0.1 + '@polkadot-api/substrate-bindings': 0.0.1 + '@polkadot-api/utils': 0.0.1 optional: true - "@polkadot-api/observable-client@0.1.0(rxjs@7.8.1)": + '@polkadot-api/observable-client@0.1.0(rxjs@7.8.1)': dependencies: - "@polkadot-api/metadata-builders": 0.0.1 - "@polkadot-api/substrate-bindings": 0.0.1 - "@polkadot-api/substrate-client": 0.0.1 - "@polkadot-api/utils": 0.0.1 + '@polkadot-api/metadata-builders': 0.0.1 + '@polkadot-api/substrate-bindings': 0.0.1 + '@polkadot-api/substrate-client': 0.0.1 + '@polkadot-api/utils': 0.0.1 rxjs: 7.8.1 optional: true - "@polkadot-api/substrate-bindings@0.0.1": + '@polkadot-api/substrate-bindings@0.0.1': dependencies: - "@noble/hashes": 1.4.0 - "@polkadot-api/utils": 0.0.1 - "@scure/base": 1.1.6 + '@noble/hashes': 1.4.0 + '@polkadot-api/utils': 0.0.1 + '@scure/base': 1.1.6 scale-ts: 1.6.0 optional: true - "@polkadot-api/substrate-client@0.0.1": + '@polkadot-api/substrate-client@0.0.1': optional: true - "@polkadot-api/utils@0.0.1": + '@polkadot-api/utils@0.0.1': optional: true - "@polkadot/api-augment@11.2.1": + '@polkadot/api-augment@11.2.1': dependencies: - "@polkadot/api-base": 11.2.1 - "@polkadot/rpc-augment": 11.2.1 - "@polkadot/types": 11.2.1 - "@polkadot/types-augment": 11.2.1 - "@polkadot/types-codec": 11.2.1 - "@polkadot/util": 12.6.2 + '@polkadot/api-base': 11.2.1 + '@polkadot/rpc-augment': 11.2.1 + '@polkadot/types': 11.2.1 + '@polkadot/types-augment': 11.2.1 + '@polkadot/types-codec': 11.2.1 + '@polkadot/util': 12.6.2 tslib: 2.6.2 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - "@polkadot/api-base@11.2.1": + '@polkadot/api-base@11.2.1': dependencies: - "@polkadot/rpc-core": 11.2.1 - "@polkadot/types": 11.2.1 - "@polkadot/util": 12.6.2 + '@polkadot/rpc-core': 11.2.1 + '@polkadot/types': 11.2.1 + '@polkadot/util': 12.6.2 rxjs: 7.8.1 tslib: 2.6.2 transitivePeerDependencies: @@ -54188,16 +37913,16 @@ snapshots: - supports-color - utf-8-validate - "@polkadot/api-derive@11.2.1": + '@polkadot/api-derive@11.2.1': dependencies: - "@polkadot/api": 11.2.1 - "@polkadot/api-augment": 11.2.1 - "@polkadot/api-base": 11.2.1 - "@polkadot/rpc-core": 11.2.1 - "@polkadot/types": 11.2.1 - "@polkadot/types-codec": 11.2.1 - "@polkadot/util": 12.6.2 - "@polkadot/util-crypto": 12.6.2(@polkadot/util@12.6.2) + '@polkadot/api': 11.2.1 + '@polkadot/api-augment': 11.2.1 + '@polkadot/api-base': 11.2.1 + '@polkadot/rpc-core': 11.2.1 + '@polkadot/types': 11.2.1 + '@polkadot/types-codec': 11.2.1 + '@polkadot/util': 12.6.2 + '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) rxjs: 7.8.1 tslib: 2.6.2 transitivePeerDependencies: @@ -54205,22 +37930,22 @@ snapshots: - supports-color - utf-8-validate - "@polkadot/api@11.2.1": - dependencies: - "@polkadot/api-augment": 11.2.1 - "@polkadot/api-base": 11.2.1 - "@polkadot/api-derive": 11.2.1 - "@polkadot/keyring": 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) - "@polkadot/rpc-augment": 11.2.1 - "@polkadot/rpc-core": 11.2.1 - "@polkadot/rpc-provider": 11.2.1 - "@polkadot/types": 11.2.1 - "@polkadot/types-augment": 11.2.1 - "@polkadot/types-codec": 11.2.1 - "@polkadot/types-create": 11.2.1 - "@polkadot/types-known": 11.2.1 - "@polkadot/util": 12.6.2 - "@polkadot/util-crypto": 12.6.2(@polkadot/util@12.6.2) + '@polkadot/api@11.2.1': + dependencies: + '@polkadot/api-augment': 11.2.1 + '@polkadot/api-base': 11.2.1 + '@polkadot/api-derive': 11.2.1 + '@polkadot/keyring': 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) + '@polkadot/rpc-augment': 11.2.1 + '@polkadot/rpc-core': 11.2.1 + '@polkadot/rpc-provider': 11.2.1 + '@polkadot/types': 11.2.1 + '@polkadot/types-augment': 11.2.1 + '@polkadot/types-codec': 11.2.1 + '@polkadot/types-create': 11.2.1 + '@polkadot/types-known': 11.2.1 + '@polkadot/util': 12.6.2 + '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) eventemitter3: 5.0.1 rxjs: 7.8.1 tslib: 2.6.2 @@ -54229,36 +37954,36 @@ snapshots: - supports-color - utf-8-validate - "@polkadot/keyring@12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2)": + '@polkadot/keyring@12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2)': dependencies: - "@polkadot/util": 12.6.2 - "@polkadot/util-crypto": 12.6.2(@polkadot/util@12.6.2) + '@polkadot/util': 12.6.2 + '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) tslib: 2.6.2 - "@polkadot/networks@12.6.2": + '@polkadot/networks@12.6.2': dependencies: - "@polkadot/util": 12.6.2 - "@substrate/ss58-registry": 1.47.0 + '@polkadot/util': 12.6.2 + '@substrate/ss58-registry': 1.47.0 tslib: 2.6.2 - "@polkadot/rpc-augment@11.2.1": + '@polkadot/rpc-augment@11.2.1': dependencies: - "@polkadot/rpc-core": 11.2.1 - "@polkadot/types": 11.2.1 - "@polkadot/types-codec": 11.2.1 - "@polkadot/util": 12.6.2 + '@polkadot/rpc-core': 11.2.1 + '@polkadot/types': 11.2.1 + '@polkadot/types-codec': 11.2.1 + '@polkadot/util': 12.6.2 tslib: 2.6.2 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - "@polkadot/rpc-core@11.2.1": + '@polkadot/rpc-core@11.2.1': dependencies: - "@polkadot/rpc-augment": 11.2.1 - "@polkadot/rpc-provider": 11.2.1 - "@polkadot/types": 11.2.1 - "@polkadot/util": 12.6.2 + '@polkadot/rpc-augment': 11.2.1 + '@polkadot/rpc-provider': 11.2.1 + '@polkadot/types': 11.2.1 + '@polkadot/util': 12.6.2 rxjs: 7.8.1 tslib: 2.6.2 transitivePeerDependencies: @@ -54266,199 +37991,199 @@ snapshots: - supports-color - utf-8-validate - "@polkadot/rpc-provider@11.2.1": + '@polkadot/rpc-provider@11.2.1': dependencies: - "@polkadot/keyring": 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) - "@polkadot/types": 11.2.1 - "@polkadot/types-support": 11.2.1 - "@polkadot/util": 12.6.2 - "@polkadot/util-crypto": 12.6.2(@polkadot/util@12.6.2) - "@polkadot/x-fetch": 12.6.2 - "@polkadot/x-global": 12.6.2 - "@polkadot/x-ws": 12.6.2 + '@polkadot/keyring': 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) + '@polkadot/types': 11.2.1 + '@polkadot/types-support': 11.2.1 + '@polkadot/util': 12.6.2 + '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) + '@polkadot/x-fetch': 12.6.2 + '@polkadot/x-global': 12.6.2 + '@polkadot/x-ws': 12.6.2 eventemitter3: 5.0.1 mock-socket: 9.3.1 nock: 13.5.4 tslib: 2.6.2 optionalDependencies: - "@substrate/connect": 0.8.10 + '@substrate/connect': 0.8.10 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - "@polkadot/types-augment@11.2.1": + '@polkadot/types-augment@11.2.1': dependencies: - "@polkadot/types": 11.2.1 - "@polkadot/types-codec": 11.2.1 - "@polkadot/util": 12.6.2 + '@polkadot/types': 11.2.1 + '@polkadot/types-codec': 11.2.1 + '@polkadot/util': 12.6.2 tslib: 2.6.2 - "@polkadot/types-codec@11.2.1": + '@polkadot/types-codec@11.2.1': dependencies: - "@polkadot/util": 12.6.2 - "@polkadot/x-bigint": 12.6.2 + '@polkadot/util': 12.6.2 + '@polkadot/x-bigint': 12.6.2 tslib: 2.6.2 - "@polkadot/types-create@11.2.1": + '@polkadot/types-create@11.2.1': dependencies: - "@polkadot/types-codec": 11.2.1 - "@polkadot/util": 12.6.2 + '@polkadot/types-codec': 11.2.1 + '@polkadot/util': 12.6.2 tslib: 2.6.2 - "@polkadot/types-known@11.2.1": + '@polkadot/types-known@11.2.1': dependencies: - "@polkadot/networks": 12.6.2 - "@polkadot/types": 11.2.1 - "@polkadot/types-codec": 11.2.1 - "@polkadot/types-create": 11.2.1 - "@polkadot/util": 12.6.2 + '@polkadot/networks': 12.6.2 + '@polkadot/types': 11.2.1 + '@polkadot/types-codec': 11.2.1 + '@polkadot/types-create': 11.2.1 + '@polkadot/util': 12.6.2 tslib: 2.6.2 - "@polkadot/types-support@11.2.1": + '@polkadot/types-support@11.2.1': dependencies: - "@polkadot/util": 12.6.2 + '@polkadot/util': 12.6.2 tslib: 2.6.2 - "@polkadot/types@11.2.1": + '@polkadot/types@11.2.1': dependencies: - "@polkadot/keyring": 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) - "@polkadot/types-augment": 11.2.1 - "@polkadot/types-codec": 11.2.1 - "@polkadot/types-create": 11.2.1 - "@polkadot/util": 12.6.2 - "@polkadot/util-crypto": 12.6.2(@polkadot/util@12.6.2) + '@polkadot/keyring': 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2) + '@polkadot/types-augment': 11.2.1 + '@polkadot/types-codec': 11.2.1 + '@polkadot/types-create': 11.2.1 + '@polkadot/util': 12.6.2 + '@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2) rxjs: 7.8.1 tslib: 2.6.2 - "@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2)": - dependencies: - "@noble/curves": 1.4.0 - "@noble/hashes": 1.4.0 - "@polkadot/networks": 12.6.2 - "@polkadot/util": 12.6.2 - "@polkadot/wasm-crypto": 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) - "@polkadot/wasm-util": 7.3.2(@polkadot/util@12.6.2) - "@polkadot/x-bigint": 12.6.2 - "@polkadot/x-randomvalues": 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) - "@scure/base": 1.1.6 + '@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2)': + dependencies: + '@noble/curves': 1.4.0 + '@noble/hashes': 1.4.0 + '@polkadot/networks': 12.6.2 + '@polkadot/util': 12.6.2 + '@polkadot/wasm-crypto': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) + '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) + '@polkadot/x-bigint': 12.6.2 + '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) + '@scure/base': 1.1.6 tslib: 2.6.2 - "@polkadot/util@12.6.2": + '@polkadot/util@12.6.2': dependencies: - "@polkadot/x-bigint": 12.6.2 - "@polkadot/x-global": 12.6.2 - "@polkadot/x-textdecoder": 12.6.2 - "@polkadot/x-textencoder": 12.6.2 - "@types/bn.js": 5.1.5 + '@polkadot/x-bigint': 12.6.2 + '@polkadot/x-global': 12.6.2 + '@polkadot/x-textdecoder': 12.6.2 + '@polkadot/x-textencoder': 12.6.2 + '@types/bn.js': 5.1.5 bn.js: 5.2.1 tslib: 2.6.2 - "@polkadot/wasm-bridge@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))": + '@polkadot/wasm-bridge@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))': dependencies: - "@polkadot/util": 12.6.2 - "@polkadot/wasm-util": 7.3.2(@polkadot/util@12.6.2) - "@polkadot/x-randomvalues": 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) + '@polkadot/util': 12.6.2 + '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) + '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) tslib: 2.6.2 - "@polkadot/wasm-crypto-asmjs@7.3.2(@polkadot/util@12.6.2)": + '@polkadot/wasm-crypto-asmjs@7.3.2(@polkadot/util@12.6.2)': dependencies: - "@polkadot/util": 12.6.2 + '@polkadot/util': 12.6.2 tslib: 2.6.2 - "@polkadot/wasm-crypto-init@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))": + '@polkadot/wasm-crypto-init@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))': dependencies: - "@polkadot/util": 12.6.2 - "@polkadot/wasm-bridge": 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) - "@polkadot/wasm-crypto-asmjs": 7.3.2(@polkadot/util@12.6.2) - "@polkadot/wasm-crypto-wasm": 7.3.2(@polkadot/util@12.6.2) - "@polkadot/wasm-util": 7.3.2(@polkadot/util@12.6.2) - "@polkadot/x-randomvalues": 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) + '@polkadot/util': 12.6.2 + '@polkadot/wasm-bridge': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) + '@polkadot/wasm-crypto-asmjs': 7.3.2(@polkadot/util@12.6.2) + '@polkadot/wasm-crypto-wasm': 7.3.2(@polkadot/util@12.6.2) + '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) + '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) tslib: 2.6.2 - "@polkadot/wasm-crypto-wasm@7.3.2(@polkadot/util@12.6.2)": + '@polkadot/wasm-crypto-wasm@7.3.2(@polkadot/util@12.6.2)': dependencies: - "@polkadot/util": 12.6.2 - "@polkadot/wasm-util": 7.3.2(@polkadot/util@12.6.2) + '@polkadot/util': 12.6.2 + '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) tslib: 2.6.2 - "@polkadot/wasm-crypto@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))": + '@polkadot/wasm-crypto@7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)))': dependencies: - "@polkadot/util": 12.6.2 - "@polkadot/wasm-bridge": 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) - "@polkadot/wasm-crypto-asmjs": 7.3.2(@polkadot/util@12.6.2) - "@polkadot/wasm-crypto-init": 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) - "@polkadot/wasm-crypto-wasm": 7.3.2(@polkadot/util@12.6.2) - "@polkadot/wasm-util": 7.3.2(@polkadot/util@12.6.2) - "@polkadot/x-randomvalues": 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) + '@polkadot/util': 12.6.2 + '@polkadot/wasm-bridge': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) + '@polkadot/wasm-crypto-asmjs': 7.3.2(@polkadot/util@12.6.2) + '@polkadot/wasm-crypto-init': 7.3.2(@polkadot/util@12.6.2)(@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))) + '@polkadot/wasm-crypto-wasm': 7.3.2(@polkadot/util@12.6.2) + '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) + '@polkadot/x-randomvalues': 12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)) tslib: 2.6.2 - "@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)": + '@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2)': dependencies: - "@polkadot/util": 12.6.2 + '@polkadot/util': 12.6.2 tslib: 2.6.2 - "@polkadot/x-bigint@12.6.2": + '@polkadot/x-bigint@12.6.2': dependencies: - "@polkadot/x-global": 12.6.2 + '@polkadot/x-global': 12.6.2 tslib: 2.6.2 - "@polkadot/x-fetch@12.6.2": + '@polkadot/x-fetch@12.6.2': dependencies: - "@polkadot/x-global": 12.6.2 + '@polkadot/x-global': 12.6.2 node-fetch: 3.3.2 tslib: 2.6.2 - "@polkadot/x-global@12.6.2": + '@polkadot/x-global@12.6.2': dependencies: tslib: 2.6.2 - "@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))": + '@polkadot/x-randomvalues@12.6.2(@polkadot/util@12.6.2)(@polkadot/wasm-util@7.3.2(@polkadot/util@12.6.2))': dependencies: - "@polkadot/util": 12.6.2 - "@polkadot/wasm-util": 7.3.2(@polkadot/util@12.6.2) - "@polkadot/x-global": 12.6.2 + '@polkadot/util': 12.6.2 + '@polkadot/wasm-util': 7.3.2(@polkadot/util@12.6.2) + '@polkadot/x-global': 12.6.2 tslib: 2.6.2 - "@polkadot/x-textdecoder@12.6.2": + '@polkadot/x-textdecoder@12.6.2': dependencies: - "@polkadot/x-global": 12.6.2 + '@polkadot/x-global': 12.6.2 tslib: 2.6.2 - "@polkadot/x-textencoder@12.6.2": + '@polkadot/x-textencoder@12.6.2': dependencies: - "@polkadot/x-global": 12.6.2 + '@polkadot/x-global': 12.6.2 tslib: 2.6.2 - "@polkadot/x-ws@12.6.2": + '@polkadot/x-ws@12.6.2': dependencies: - "@polkadot/x-global": 12.6.2 + '@polkadot/x-global': 12.6.2 tslib: 2.6.2 ws: 8.18.0 transitivePeerDependencies: - bufferutil - utf-8-validate - "@popperjs/core@2.11.8": {} + '@popperjs/core@2.11.8': {} - "@prisma/instrumentation@5.16.1": + '@prisma/instrumentation@5.16.1': dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/sdk-trace-base": 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-trace-base': 1.25.1(@opentelemetry/api@1.9.0) transitivePeerDependencies: - supports-color - "@probot/get-private-key@1.1.2": {} + '@probot/get-private-key@1.1.2': {} - "@probot/octokit-plugin-config@2.0.1(@octokit/core@5.1.0)": + '@probot/octokit-plugin-config@2.0.1(@octokit/core@5.1.0)': dependencies: - "@octokit/core": 5.1.0 + '@octokit/core': 5.1.0 js-yaml: 4.1.0 - "@probot/pino@2.3.5": + '@probot/pino@2.3.5': dependencies: - "@sentry/node": 6.19.7 + '@sentry/node': 6.19.7 pino-pretty: 6.0.0 pump: 3.0.0 readable-stream: 3.6.2 @@ -54466,560 +38191,560 @@ snapshots: transitivePeerDependencies: - supports-color - "@protobufjs/aspromise@1.1.2": {} + '@protobufjs/aspromise@1.1.2': {} - "@protobufjs/base64@1.1.2": {} + '@protobufjs/base64@1.1.2': {} - "@protobufjs/codegen@2.0.4": {} + '@protobufjs/codegen@2.0.4': {} - "@protobufjs/eventemitter@1.1.0": {} + '@protobufjs/eventemitter@1.1.0': {} - "@protobufjs/fetch@1.1.0": + '@protobufjs/fetch@1.1.0': dependencies: - "@protobufjs/aspromise": 1.1.2 - "@protobufjs/inquire": 1.1.0 + '@protobufjs/aspromise': 1.1.2 + '@protobufjs/inquire': 1.1.0 - "@protobufjs/float@1.0.2": {} + '@protobufjs/float@1.0.2': {} - "@protobufjs/inquire@1.1.0": {} + '@protobufjs/inquire@1.1.0': {} - "@protobufjs/path@1.1.2": {} + '@protobufjs/path@1.1.2': {} - "@protobufjs/pool@1.1.0": {} + '@protobufjs/pool@1.1.0': {} - "@protobufjs/utf8@1.1.0": {} + '@protobufjs/utf8@1.1.0': {} - "@radix-ui/number@1.0.1": + '@radix-ui/number@1.0.1': dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 - "@radix-ui/primitive@1.0.1": + '@radix-ui/primitive@1.0.1': dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 - "@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 - "@types/react-dom": 18.2.23(@types/react@18.2.73) + '@types/react': 18.2.73 + '@types/react-dom': 18.2.23(@types/react@18.2.73) - "@radix-ui/react-arrow@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-arrow@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.73)(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 - "@types/react-dom": 18.2.23(@types/react@18.2.73) + '@types/react': 18.2.73 + '@types/react-dom': 18.2.23(@types/react@18.2.73) - "@radix-ui/react-collection@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-collection@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.73)(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.73)(react@18.2.0)": + '@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.73)(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 react: 18.2.0 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-context@1.0.1(@types/react@18.2.73)(react@18.2.0)": + '@radix-ui/react-context@1.0.1(@types/react@18.2.73)(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 react: 18.2.0 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-direction@1.0.1(@types/react@18.2.73)(react@18.2.0)": + '@radix-ui/react-direction@1.0.1(@types/react@18.2.73)(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 react: 18.2.0 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-dismissable-layer@1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.2.73)(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 - "@types/react-dom": 18.2.23(@types/react@18.2.73) + '@types/react': 18.2.73 + '@types/react-dom': 18.2.23(@types/react@18.2.73) - "@radix-ui/react-dismissable-layer@1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-dismissable-layer@1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-escape-keydown": 1.0.3(@types/react@18.2.73)(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.73)(react@18.2.0)": + '@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.73)(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 react: 18.2.0 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-focus-scope@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 - "@types/react-dom": 18.2.23(@types/react@18.2.73) + '@types/react': 18.2.73 + '@types/react-dom': 18.2.23(@types/react@18.2.73) - "@radix-ui/react-focus-scope@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-focus-scope@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-id@1.0.1(@types/react@18.2.73)(react@18.2.0)": + '@radix-ui/react-id@1.0.1(@types/react@18.2.73)(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 optionalDependencies: - "@types/react": 18.2.73 - - "@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@babel/runtime": 7.25.0 - "@floating-ui/react-dom": 2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-arrow": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-rect": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-size": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/rect": 1.0.1 + '@types/react': 18.2.73 + + '@radix-ui/react-popper@1.1.2(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.25.0 + '@floating-ui/react-dom': 2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/rect': 1.0.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 - "@types/react-dom": 18.2.23(@types/react@18.2.73) - - "@radix-ui/react-popper@1.1.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@babel/runtime": 7.25.0 - "@floating-ui/react-dom": 2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-arrow": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-rect": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-size": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/rect": 1.0.1 + '@types/react': 18.2.73 + '@types/react-dom': 18.2.23(@types/react@18.2.73) + + '@radix-ui/react-popper@1.1.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.25.0 + '@floating-ui/react-dom': 2.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-arrow': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/rect': 1.0.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-portal@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 - "@types/react-dom": 18.2.23(@types/react@18.2.73) + '@types/react': 18.2.73 + '@types/react-dom': 18.2.23(@types/react@18.2.73) - "@radix-ui/react-portal@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-portal@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.73)(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 - "@types/react-dom": 18.2.23(@types/react@18.2.73) + '@types/react': 18.2.73 + '@types/react-dom': 18.2.23(@types/react@18.2.73) - "@radix-ui/react-primitive@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-primitive@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.73)(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 - - "@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@types/react': 18.2.73 + + '@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.25.0 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 - "@types/react-dom": 18.2.23(@types/react@18.2.73) - - "@radix-ui/react-roving-focus@1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-collection": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@types/react': 18.2.73 + '@types/react-dom': 18.2.23(@types/react@18.2.73) + + '@radix-ui/react-roving-focus@1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.25.0 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 - - "@radix-ui/react-select@1.2.2(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/number": 1.0.1 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-collection": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-focus-scope": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-popper": 1.1.2(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-portal": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-previous": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-visually-hidden": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@types/react': 18.2.73 + + '@radix-ui/react-select@1.2.2(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.25.0 + '@radix-ui/number': 1.0.1 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) aria-hidden: 1.2.4 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-remove-scroll: 2.5.5(@types/react@18.2.73)(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 - "@types/react-dom": 18.2.23(@types/react@18.2.73) - - "@radix-ui/react-select@1.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/number": 1.0.1 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-collection": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-dismissable-layer": 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-focus-guards": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-focus-scope": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-id": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-popper": 1.1.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-portal": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-slot": 1.0.2(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-use-previous": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-visually-hidden": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@types/react': 18.2.73 + '@types/react-dom': 18.2.23(@types/react@18.2.73) + + '@radix-ui/react-select@1.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.25.0 + '@radix-ui/number': 1.0.1 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-popper': 1.1.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-portal': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) aria-hidden: 1.2.4 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-remove-scroll: 2.5.5(@types/react@18.2.73)(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 - "@types/react-dom": 18.2.23(@types/react@18.2.73) + '@types/react': 18.2.73 + '@types/react-dom': 18.2.23(@types/react@18.2.73) - "@radix-ui/react-separator@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-separator@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-slot@1.0.2(@types/react@18.2.73)(react@18.2.0)": + '@radix-ui/react-slot@1.0.2(@types/react@18.2.73)(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-compose-refs": 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 optionalDependencies: - "@types/react": 18.2.73 - - "@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-toggle": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@types/react': 18.2.73 + + '@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.25.0 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 - "@types/react-dom": 18.2.23(@types/react@18.2.73) - - "@radix-ui/react-toggle-group@1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-roving-focus": 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-toggle": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@types/react': 18.2.73 + '@types/react-dom': 18.2.23(@types/react@18.2.73) + + '@radix-ui/react-toggle-group@1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.25.0 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-roving-focus': 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-toggle': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 - "@types/react-dom": 18.2.23(@types/react@18.2.73) + '@types/react': 18.2.73 + '@types/react-dom': 18.2.23(@types/react@18.2.73) - "@radix-ui/react-toggle@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-toggle@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-use-controllable-state": 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 - - "@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-roving-focus": 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-separator": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-toggle-group": 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@types/react': 18.2.73 + + '@radix-ui/react-toolbar@1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.25.0 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-separator': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-toggle-group': 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 - "@types/react-dom": 18.2.23(@types/react@18.2.73) - - "@radix-ui/react-toolbar@1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/primitive": 1.0.1 - "@radix-ui/react-context": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-direction": 1.0.1(@types/react@18.2.73)(react@18.2.0) - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-roving-focus": 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-separator": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-toggle-group": 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@types/react': 18.2.73 + '@types/react-dom': 18.2.23(@types/react@18.2.73) + + '@radix-ui/react-toolbar@1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@babel/runtime': 7.25.0 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-roving-focus': 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-separator': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-toggle-group': 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.73)(react@18.2.0)": + '@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.73)(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 react: 18.2.0 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.73)(react@18.2.0)": + '@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.73)(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.73)(react@18.2.0)": + '@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.73)(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-use-callback-ref": 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.73)(react@18.2.0)": + '@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.73)(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 react: 18.2.0 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-use-previous@1.0.1(@types/react@18.2.73)(react@18.2.0)": + '@radix-ui/react-use-previous@1.0.1(@types/react@18.2.73)(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 react: 18.2.0 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-use-rect@1.0.1(@types/react@18.2.73)(react@18.2.0)": + '@radix-ui/react-use-rect@1.0.1(@types/react@18.2.73)(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/rect": 1.0.1 + '@babel/runtime': 7.25.0 + '@radix-ui/rect': 1.0.1 react: 18.2.0 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-use-size@1.0.1(@types/react@18.2.73)(react@18.2.0)": + '@radix-ui/react-use-size@1.0.1(@types/react@18.2.73)(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-use-layout-effect": 1.0.1(@types/react@18.2.73)(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.73)(react@18.2.0) react: 18.2.0 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-primitive": 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 - "@types/react-dom": 18.2.23(@types/react@18.2.73) + '@types/react': 18.2.73 + '@types/react-dom': 18.2.23(@types/react@18.2.73) - "@radix-ui/react-visually-hidden@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@radix-ui/react-visually-hidden@1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.25.0 - "@radix-ui/react-primitive": 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@babel/runtime': 7.25.0 + '@radix-ui/react-primitive': 1.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@radix-ui/rect@1.0.1": + '@radix-ui/rect@1.0.1': dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 - "@react-native-async-storage/async-storage@1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))": + '@react-native-async-storage/async-storage@1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))': dependencies: merge-options: 3.0.4 react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) - "@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))": + '@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))': dependencies: merge-options: 3.0.4 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - "@react-native-clipboard/clipboard@1.13.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@react-native-clipboard/clipboard@1.13.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - "@react-native-community/cli-clean@13.6.1": + '@react-native-community/cli-clean@13.6.1': dependencies: - "@react-native-community/cli-tools": 13.6.1 + '@react-native-community/cli-tools': 13.6.1 chalk: 4.1.2 execa: 5.1.1 fast-glob: 3.3.2 transitivePeerDependencies: - encoding - "@react-native-community/cli-clean@13.6.9": + '@react-native-community/cli-clean@13.6.9': dependencies: - "@react-native-community/cli-tools": 13.6.9 + '@react-native-community/cli-tools': 13.6.9 chalk: 4.1.2 execa: 5.1.1 fast-glob: 3.3.2 transitivePeerDependencies: - encoding - "@react-native-community/cli-config@13.6.1": + '@react-native-community/cli-config@13.6.1': dependencies: - "@react-native-community/cli-tools": 13.6.1 + '@react-native-community/cli-tools': 13.6.1 chalk: 4.1.2 cosmiconfig: 5.2.1 deepmerge: 4.3.1 @@ -55028,9 +38753,9 @@ snapshots: transitivePeerDependencies: - encoding - "@react-native-community/cli-config@13.6.9": + '@react-native-community/cli-config@13.6.9': dependencies: - "@react-native-community/cli-tools": 13.6.9 + '@react-native-community/cli-tools': 13.6.9 chalk: 4.1.2 cosmiconfig: 5.2.1 deepmerge: 4.3.1 @@ -55039,31 +38764,31 @@ snapshots: transitivePeerDependencies: - encoding - "@react-native-community/cli-debugger-ui@13.6.1": + '@react-native-community/cli-debugger-ui@13.6.1': dependencies: serve-static: 1.15.0 transitivePeerDependencies: - supports-color - "@react-native-community/cli-debugger-ui@13.6.9": + '@react-native-community/cli-debugger-ui@13.6.9': dependencies: serve-static: 1.15.0 transitivePeerDependencies: - supports-color - "@react-native-community/cli-debugger-ui@7.0.3": + '@react-native-community/cli-debugger-ui@7.0.3': dependencies: serve-static: 1.15.0 transitivePeerDependencies: - supports-color - "@react-native-community/cli-doctor@13.6.1": + '@react-native-community/cli-doctor@13.6.1': dependencies: - "@react-native-community/cli-config": 13.6.1 - "@react-native-community/cli-platform-android": 13.6.1 - "@react-native-community/cli-platform-apple": 13.6.1 - "@react-native-community/cli-platform-ios": 13.6.1 - "@react-native-community/cli-tools": 13.6.1 + '@react-native-community/cli-config': 13.6.1 + '@react-native-community/cli-platform-android': 13.6.1 + '@react-native-community/cli-platform-apple': 13.6.1 + '@react-native-community/cli-platform-ios': 13.6.1 + '@react-native-community/cli-tools': 13.6.1 chalk: 4.1.2 command-exists: 1.2.9 deepmerge: 4.3.1 @@ -55079,13 +38804,13 @@ snapshots: transitivePeerDependencies: - encoding - "@react-native-community/cli-doctor@13.6.9": + '@react-native-community/cli-doctor@13.6.9': dependencies: - "@react-native-community/cli-config": 13.6.9 - "@react-native-community/cli-platform-android": 13.6.9 - "@react-native-community/cli-platform-apple": 13.6.9 - "@react-native-community/cli-platform-ios": 13.6.9 - "@react-native-community/cli-tools": 13.6.9 + '@react-native-community/cli-config': 13.6.9 + '@react-native-community/cli-platform-android': 13.6.9 + '@react-native-community/cli-platform-apple': 13.6.9 + '@react-native-community/cli-platform-ios': 13.6.9 + '@react-native-community/cli-tools': 13.6.9 chalk: 4.1.2 command-exists: 1.2.9 deepmerge: 4.3.1 @@ -55101,27 +38826,27 @@ snapshots: transitivePeerDependencies: - encoding - "@react-native-community/cli-hermes@13.6.1": + '@react-native-community/cli-hermes@13.6.1': dependencies: - "@react-native-community/cli-platform-android": 13.6.1 - "@react-native-community/cli-tools": 13.6.1 + '@react-native-community/cli-platform-android': 13.6.1 + '@react-native-community/cli-tools': 13.6.1 chalk: 4.1.2 hermes-profile-transformer: 0.0.6 transitivePeerDependencies: - encoding - "@react-native-community/cli-hermes@13.6.9": + '@react-native-community/cli-hermes@13.6.9': dependencies: - "@react-native-community/cli-platform-android": 13.6.9 - "@react-native-community/cli-tools": 13.6.9 + '@react-native-community/cli-platform-android': 13.6.9 + '@react-native-community/cli-tools': 13.6.9 chalk: 4.1.2 hermes-profile-transformer: 0.0.6 transitivePeerDependencies: - encoding - "@react-native-community/cli-platform-android@13.6.1": + '@react-native-community/cli-platform-android@13.6.1': dependencies: - "@react-native-community/cli-tools": 13.6.1 + '@react-native-community/cli-tools': 13.6.1 chalk: 4.1.2 execa: 5.1.1 fast-glob: 3.3.2 @@ -55130,9 +38855,9 @@ snapshots: transitivePeerDependencies: - encoding - "@react-native-community/cli-platform-android@13.6.9": + '@react-native-community/cli-platform-android@13.6.9': dependencies: - "@react-native-community/cli-tools": 13.6.9 + '@react-native-community/cli-tools': 13.6.9 chalk: 4.1.2 execa: 5.1.1 fast-glob: 3.3.2 @@ -55141,9 +38866,9 @@ snapshots: transitivePeerDependencies: - encoding - "@react-native-community/cli-platform-apple@13.6.1": + '@react-native-community/cli-platform-apple@13.6.1': dependencies: - "@react-native-community/cli-tools": 13.6.1 + '@react-native-community/cli-tools': 13.6.1 chalk: 4.1.2 execa: 5.1.1 fast-glob: 3.3.2 @@ -55152,9 +38877,9 @@ snapshots: transitivePeerDependencies: - encoding - "@react-native-community/cli-platform-apple@13.6.9": + '@react-native-community/cli-platform-apple@13.6.9': dependencies: - "@react-native-community/cli-tools": 13.6.9 + '@react-native-community/cli-tools': 13.6.9 chalk: 4.1.2 execa: 5.1.1 fast-glob: 3.3.2 @@ -55163,24 +38888,24 @@ snapshots: transitivePeerDependencies: - encoding - "@react-native-community/cli-platform-ios@13.6.1": + '@react-native-community/cli-platform-ios@13.6.1': dependencies: - "@react-native-community/cli-platform-apple": 13.6.1 + '@react-native-community/cli-platform-apple': 13.6.1 execa: 5.0.0 transitivePeerDependencies: - encoding - "@react-native-community/cli-platform-ios@13.6.9": + '@react-native-community/cli-platform-ios@13.6.9': dependencies: - "@react-native-community/cli-platform-apple": 13.6.9 + '@react-native-community/cli-platform-apple': 13.6.9 execa: 5.0.0 transitivePeerDependencies: - encoding - "@react-native-community/cli-server-api@13.6.1": + '@react-native-community/cli-server-api@13.6.1': dependencies: - "@react-native-community/cli-debugger-ui": 13.6.1 - "@react-native-community/cli-tools": 13.6.1 + '@react-native-community/cli-debugger-ui': 13.6.1 + '@react-native-community/cli-tools': 13.6.1 compression: 1.7.4 connect: 3.7.0 errorhandler: 1.5.1 @@ -55194,10 +38919,10 @@ snapshots: - supports-color - utf-8-validate - "@react-native-community/cli-server-api@13.6.9": + '@react-native-community/cli-server-api@13.6.9': dependencies: - "@react-native-community/cli-debugger-ui": 13.6.9 - "@react-native-community/cli-tools": 13.6.9 + '@react-native-community/cli-debugger-ui': 13.6.9 + '@react-native-community/cli-tools': 13.6.9 compression: 1.7.4 connect: 3.7.0 errorhandler: 1.5.1 @@ -55211,10 +38936,10 @@ snapshots: - supports-color - utf-8-validate - "@react-native-community/cli-server-api@7.0.4": + '@react-native-community/cli-server-api@7.0.4': dependencies: - "@react-native-community/cli-debugger-ui": 7.0.3 - "@react-native-community/cli-tools": 6.2.1 + '@react-native-community/cli-debugger-ui': 7.0.3 + '@react-native-community/cli-tools': 6.2.1 compression: 1.7.4 connect: 3.7.0 errorhandler: 1.5.1 @@ -55229,7 +38954,7 @@ snapshots: - supports-color - utf-8-validate - "@react-native-community/cli-tools@13.6.1": + '@react-native-community/cli-tools@13.6.1': dependencies: appdirsjs: 1.2.7 chalk: 4.1.2 @@ -55245,7 +38970,7 @@ snapshots: transitivePeerDependencies: - encoding - "@react-native-community/cli-tools@13.6.9": + '@react-native-community/cli-tools@13.6.9': dependencies: appdirsjs: 1.2.7 chalk: 4.1.2 @@ -55261,7 +38986,7 @@ snapshots: transitivePeerDependencies: - encoding - "@react-native-community/cli-tools@6.2.1": + '@react-native-community/cli-tools@6.2.1': dependencies: appdirsjs: 1.2.7 chalk: 4.1.2 @@ -55275,24 +39000,24 @@ snapshots: transitivePeerDependencies: - encoding - "@react-native-community/cli-types@13.6.1": + '@react-native-community/cli-types@13.6.1': dependencies: joi: 17.12.2 - "@react-native-community/cli-types@13.6.9": + '@react-native-community/cli-types@13.6.9': dependencies: joi: 17.12.2 - "@react-native-community/cli@13.6.1": + '@react-native-community/cli@13.6.1': dependencies: - "@react-native-community/cli-clean": 13.6.1 - "@react-native-community/cli-config": 13.6.1 - "@react-native-community/cli-debugger-ui": 13.6.1 - "@react-native-community/cli-doctor": 13.6.1 - "@react-native-community/cli-hermes": 13.6.1 - "@react-native-community/cli-server-api": 13.6.1 - "@react-native-community/cli-tools": 13.6.1 - "@react-native-community/cli-types": 13.6.1 + '@react-native-community/cli-clean': 13.6.1 + '@react-native-community/cli-config': 13.6.1 + '@react-native-community/cli-debugger-ui': 13.6.1 + '@react-native-community/cli-doctor': 13.6.1 + '@react-native-community/cli-hermes': 13.6.1 + '@react-native-community/cli-server-api': 13.6.1 + '@react-native-community/cli-tools': 13.6.1 + '@react-native-community/cli-types': 13.6.1 chalk: 4.1.2 commander: 9.5.0 deepmerge: 4.3.1 @@ -55308,16 +39033,16 @@ snapshots: - supports-color - utf-8-validate - "@react-native-community/cli@13.6.9": + '@react-native-community/cli@13.6.9': dependencies: - "@react-native-community/cli-clean": 13.6.9 - "@react-native-community/cli-config": 13.6.9 - "@react-native-community/cli-debugger-ui": 13.6.9 - "@react-native-community/cli-doctor": 13.6.9 - "@react-native-community/cli-hermes": 13.6.9 - "@react-native-community/cli-server-api": 13.6.9 - "@react-native-community/cli-tools": 13.6.9 - "@react-native-community/cli-types": 13.6.9 + '@react-native-community/cli-clean': 13.6.9 + '@react-native-community/cli-config': 13.6.9 + '@react-native-community/cli-debugger-ui': 13.6.9 + '@react-native-community/cli-doctor': 13.6.9 + '@react-native-community/cli-hermes': 13.6.9 + '@react-native-community/cli-server-api': 13.6.9 + '@react-native-community/cli-tools': 13.6.9 + '@react-native-community/cli-types': 13.6.9 chalk: 4.1.2 commander: 9.5.0 deepmerge: 4.3.1 @@ -55333,16 +39058,16 @@ snapshots: - supports-color - utf-8-validate - "@react-native-community/cli@13.6.9(metro-resolver@0.80.12)": + '@react-native-community/cli@13.6.9(metro-resolver@0.80.12)': dependencies: - "@react-native-community/cli-clean": 13.6.9 - "@react-native-community/cli-config": 13.6.9 - "@react-native-community/cli-debugger-ui": 13.6.9 - "@react-native-community/cli-doctor": 13.6.9 - "@react-native-community/cli-hermes": 13.6.9 - "@react-native-community/cli-server-api": 13.6.9 - "@react-native-community/cli-tools": 13.6.9 - "@react-native-community/cli-types": 13.6.9 + '@react-native-community/cli-clean': 13.6.9 + '@react-native-community/cli-config': 13.6.9 + '@react-native-community/cli-debugger-ui': 13.6.9 + '@react-native-community/cli-doctor': 13.6.9 + '@react-native-community/cli-hermes': 13.6.9 + '@react-native-community/cli-server-api': 13.6.9 + '@react-native-community/cli-tools': 13.6.9 + '@react-native-community/cli-types': 13.6.9 chalk: 4.1.2 commander: 9.5.0 deepmerge: 4.3.1 @@ -55360,19 +39085,19 @@ snapshots: - supports-color - utf-8-validate - "@react-native-community/datetimepicker@6.7.5": + '@react-native-community/datetimepicker@6.7.5': dependencies: invariant: 2.2.4 - "@react-native-community/netinfo@9.5.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))": + '@react-native-community/netinfo@9.5.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))': dependencies: react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - "@react-native-community/slider@4.5.0": {} + '@react-native-community/slider@4.5.0': {} - "@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: - "@expo/config-plugins": 4.1.5 + '@expo/config-plugins': 4.1.5 opencollective-postinstall: 2.0.3 react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) @@ -55380,194 +39105,194 @@ snapshots: transitivePeerDependencies: - supports-color - "@react-native-firebase/messaging@14.12.0(@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))": + '@react-native-firebase/messaging@14.12.0(@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))': dependencies: - "@react-native-firebase/app": 14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + '@react-native-firebase/app': 14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@react-native-firebase/remote-config@14.12.0(@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))": + '@react-native-firebase/remote-config@14.12.0(@react-native-firebase/app@14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))': dependencies: - "@react-native-firebase/app": 14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + '@react-native-firebase/app': 14.12.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@react-native-masked-view/masked-view@0.2.9(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@react-native-masked-view/masked-view@0.2.9(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - "@react-native/assets-registry@0.74.87": {} + '@react-native/assets-registry@0.74.87': {} - "@react-native/assets-registry@0.74.88": {} + '@react-native/assets-registry@0.74.88': {} - "@react-native/babel-plugin-codegen@0.74.87": + '@react-native/babel-plugin-codegen@0.74.87': dependencies: - "@react-native/codegen": 0.74.87 + '@react-native/codegen': 0.74.87 transitivePeerDependencies: - - "@babel/preset-env" + - '@babel/preset-env' - supports-color - "@react-native/babel-plugin-codegen@0.74.88": + '@react-native/babel-plugin-codegen@0.74.88': dependencies: - "@react-native/codegen": 0.74.88 + '@react-native/codegen': 0.74.88 transitivePeerDependencies: - - "@babel/preset-env" + - '@babel/preset-env' - supports-color - "@react-native/babel-plugin-codegen@0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3))": + '@react-native/babel-plugin-codegen@0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3))': dependencies: - "@react-native/codegen": 0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + '@react-native/codegen': 0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3)) transitivePeerDependencies: - - "@babel/preset-env" + - '@babel/preset-env' - supports-color - "@react-native/babel-preset@0.74.87(@babel/core@7.24.3)": - dependencies: - "@babel/core": 7.24.3 - "@babel/plugin-proposal-async-generator-functions": 7.20.7(@babel/core@7.24.3) - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-export-default-from": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-proposal-logical-assignment-operators": 7.20.7(@babel/core@7.24.3) - "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-numeric-separator": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.24.3) - "@babel/plugin-proposal-optional-catch-binding": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.24.3) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-export-default-from": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-syntax-flow": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-async-to-generator": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-block-scoping": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-classes": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-computed-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-destructuring": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-flow-strip-types": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-function-name": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-literals": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.24.3) - "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-private-methods": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-private-property-in-object": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-display-name": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx-self": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx-source": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-runtime": 7.24.3(@babel/core@7.24.3) - "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-spread": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-sticky-regex": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-typescript": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-unicode-regex": 7.24.1(@babel/core@7.24.3) - "@babel/template": 7.24.0 - "@react-native/babel-plugin-codegen": 0.74.87 + '@react-native/babel-preset@0.74.87(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.3) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.3) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) + '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) + '@babel/template': 7.24.0 + '@react-native/babel-plugin-codegen': 0.74.87 babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.3) react-refresh: 0.14.2 transitivePeerDependencies: - - "@babel/preset-env" + - '@babel/preset-env' - supports-color - "@react-native/babel-preset@0.74.88(@babel/core@7.24.3)": - dependencies: - "@babel/core": 7.24.3 - "@babel/plugin-proposal-async-generator-functions": 7.20.7(@babel/core@7.24.3) - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-export-default-from": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-proposal-logical-assignment-operators": 7.20.7(@babel/core@7.24.3) - "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-numeric-separator": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.24.3) - "@babel/plugin-proposal-optional-catch-binding": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.24.3) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-export-default-from": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-syntax-flow": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-async-to-generator": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-block-scoping": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-classes": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-computed-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-destructuring": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-flow-strip-types": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-function-name": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-literals": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.24.3) - "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-private-methods": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-private-property-in-object": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-display-name": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx-self": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx-source": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-runtime": 7.24.3(@babel/core@7.24.3) - "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-spread": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-sticky-regex": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-typescript": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-unicode-regex": 7.24.1(@babel/core@7.24.3) - "@babel/template": 7.24.0 - "@react-native/babel-plugin-codegen": 0.74.88 + '@react-native/babel-preset@0.74.88(@babel/core@7.24.3)': + dependencies: + '@babel/core': 7.24.3 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.3) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.3) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) + '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) + '@babel/template': 7.24.0 + '@react-native/babel-plugin-codegen': 0.74.88 babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.3) react-refresh: 0.14.0 transitivePeerDependencies: - - "@babel/preset-env" + - '@babel/preset-env' - supports-color - "@react-native/babel-preset@0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))": - dependencies: - "@babel/core": 7.24.3 - "@babel/plugin-proposal-async-generator-functions": 7.20.7(@babel/core@7.24.3) - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-export-default-from": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-proposal-logical-assignment-operators": 7.20.7(@babel/core@7.24.3) - "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-numeric-separator": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.24.3) - "@babel/plugin-proposal-optional-catch-binding": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.24.3) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-export-default-from": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-syntax-flow": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-async-to-generator": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-block-scoping": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-classes": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-computed-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-destructuring": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-flow-strip-types": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-function-name": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-literals": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.24.3) - "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-private-methods": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-private-property-in-object": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-display-name": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx-self": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx-source": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-runtime": 7.24.3(@babel/core@7.24.3) - "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-spread": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-sticky-regex": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-typescript": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-unicode-regex": 7.24.1(@babel/core@7.24.3) - "@babel/template": 7.24.0 - "@react-native/babel-plugin-codegen": 0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + '@react-native/babel-preset@0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))': + dependencies: + '@babel/core': 7.24.3 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.3) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.3) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-private-property-in-object': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) + '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) + '@babel/template': 7.24.0 + '@react-native/babel-plugin-codegen': 0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3)) babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.3) react-refresh: 0.14.0 transitivePeerDependencies: - - "@babel/preset-env" + - '@babel/preset-env' - supports-color - "@react-native/codegen@0.74.87": + '@react-native/codegen@0.74.87': dependencies: - "@babel/parser": 7.24.1 + '@babel/parser': 7.24.1 glob: 7.2.3 hermes-parser: 0.19.1 invariant: 2.2.4 @@ -55577,9 +39302,9 @@ snapshots: transitivePeerDependencies: - supports-color - "@react-native/codegen@0.74.88": + '@react-native/codegen@0.74.88': dependencies: - "@babel/parser": 7.24.1 + '@babel/parser': 7.24.1 glob: 7.2.3 hermes-parser: 0.19.1 invariant: 2.2.4 @@ -55590,10 +39315,10 @@ snapshots: transitivePeerDependencies: - supports-color - "@react-native/codegen@0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3))": + '@react-native/codegen@0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3))': dependencies: - "@babel/parser": 7.24.1 - "@babel/preset-env": 7.24.3(@babel/core@7.24.3) + '@babel/parser': 7.24.1 + '@babel/preset-env': 7.24.3(@babel/core@7.24.3) glob: 7.2.3 hermes-parser: 0.19.1 invariant: 2.2.4 @@ -55604,12 +39329,12 @@ snapshots: transitivePeerDependencies: - supports-color - "@react-native/community-cli-plugin@0.74.87": + '@react-native/community-cli-plugin@0.74.87': dependencies: - "@react-native-community/cli-server-api": 13.6.9 - "@react-native-community/cli-tools": 13.6.9 - "@react-native/dev-middleware": 0.74.87 - "@react-native/metro-babel-transformer": 0.74.87 + '@react-native-community/cli-server-api': 13.6.9 + '@react-native-community/cli-tools': 13.6.9 + '@react-native/dev-middleware': 0.74.87 + '@react-native/metro-babel-transformer': 0.74.87 chalk: 4.1.2 execa: 5.1.1 metro: 0.80.12 @@ -55619,19 +39344,19 @@ snapshots: querystring: 0.2.1 readline: 1.3.0 transitivePeerDependencies: - - "@babel/preset-env" + - '@babel/preset-env' - bufferutil - encoding - metro-transform-worker - supports-color - utf-8-validate - "@react-native/community-cli-plugin@0.74.88(@babel/core@7.24.3)": + '@react-native/community-cli-plugin@0.74.88(@babel/core@7.24.3)': dependencies: - "@react-native-community/cli-server-api": 13.6.9 - "@react-native-community/cli-tools": 13.6.9 - "@react-native/dev-middleware": 0.74.88 - "@react-native/metro-babel-transformer": 0.74.88(@babel/core@7.24.3) + '@react-native-community/cli-server-api': 13.6.9 + '@react-native-community/cli-tools': 13.6.9 + '@react-native/dev-middleware': 0.74.88 + '@react-native/metro-babel-transformer': 0.74.88(@babel/core@7.24.3) chalk: 4.1.2 execa: 5.1.1 metro: 0.80.12 @@ -55641,20 +39366,20 @@ snapshots: querystring: 0.2.1 readline: 1.3.0 transitivePeerDependencies: - - "@babel/core" - - "@babel/preset-env" + - '@babel/core' + - '@babel/preset-env' - bufferutil - encoding - metro-transform-worker - supports-color - utf-8-validate - "@react-native/community-cli-plugin@0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-transform-worker@0.80.12)": + '@react-native/community-cli-plugin@0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-transform-worker@0.80.12)': dependencies: - "@react-native-community/cli-server-api": 13.6.9 - "@react-native-community/cli-tools": 13.6.9 - "@react-native/dev-middleware": 0.74.88 - "@react-native/metro-babel-transformer": 0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + '@react-native-community/cli-server-api': 13.6.9 + '@react-native-community/cli-tools': 13.6.9 + '@react-native/dev-middleware': 0.74.88 + '@react-native/metro-babel-transformer': 0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3)) chalk: 4.1.2 execa: 5.1.1 metro: 0.80.12 @@ -55664,25 +39389,25 @@ snapshots: querystring: 0.2.1 readline: 1.3.0 transitivePeerDependencies: - - "@babel/core" - - "@babel/preset-env" + - '@babel/core' + - '@babel/preset-env' - bufferutil - encoding - metro-transform-worker - supports-color - utf-8-validate - "@react-native/debugger-frontend@0.74.85": {} + '@react-native/debugger-frontend@0.74.85': {} - "@react-native/debugger-frontend@0.74.87": {} + '@react-native/debugger-frontend@0.74.87': {} - "@react-native/debugger-frontend@0.74.88": {} + '@react-native/debugger-frontend@0.74.88': {} - "@react-native/dev-middleware@0.74.85": + '@react-native/dev-middleware@0.74.85': dependencies: - "@isaacs/ttlcache": 1.4.1 - "@react-native/debugger-frontend": 0.74.85 - "@rnx-kit/chromium-edge-launcher": 1.0.0 + '@isaacs/ttlcache': 1.4.1 + '@react-native/debugger-frontend': 0.74.85 + '@rnx-kit/chromium-edge-launcher': 1.0.0 chrome-launcher: 0.15.2 connect: 3.7.0 debug: 2.6.9 @@ -55699,11 +39424,11 @@ snapshots: - supports-color - utf-8-validate - "@react-native/dev-middleware@0.74.87": + '@react-native/dev-middleware@0.74.87': dependencies: - "@isaacs/ttlcache": 1.4.1 - "@react-native/debugger-frontend": 0.74.87 - "@rnx-kit/chromium-edge-launcher": 1.0.0 + '@isaacs/ttlcache': 1.4.1 + '@react-native/debugger-frontend': 0.74.87 + '@rnx-kit/chromium-edge-launcher': 1.0.0 chrome-launcher: 0.15.2 connect: 3.7.0 debug: 2.6.9 @@ -55720,11 +39445,11 @@ snapshots: - supports-color - utf-8-validate - "@react-native/dev-middleware@0.74.88": + '@react-native/dev-middleware@0.74.88': dependencies: - "@isaacs/ttlcache": 1.4.1 - "@react-native/debugger-frontend": 0.74.88 - "@rnx-kit/chromium-edge-launcher": 1.0.0 + '@isaacs/ttlcache': 1.4.1 + '@react-native/debugger-frontend': 0.74.88 + '@rnx-kit/chromium-edge-launcher': 1.0.0 chrome-launcher: 0.15.2 connect: 3.7.0 debug: 2.6.9 @@ -55741,98 +39466,98 @@ snapshots: - supports-color - utf-8-validate - "@react-native/gradle-plugin@0.74.87": {} + '@react-native/gradle-plugin@0.74.87': {} - "@react-native/gradle-plugin@0.74.88": {} + '@react-native/gradle-plugin@0.74.88': {} - "@react-native/js-polyfills@0.74.87": {} + '@react-native/js-polyfills@0.74.87': {} - "@react-native/js-polyfills@0.74.88": {} + '@react-native/js-polyfills@0.74.88': {} - "@react-native/metro-babel-transformer@0.74.87": + '@react-native/metro-babel-transformer@0.74.87': dependencies: - "@babel/core": 7.24.3 - "@react-native/babel-preset": 0.74.87(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@react-native/babel-preset': 0.74.87(@babel/core@7.24.3) hermes-parser: 0.19.1 nullthrows: 1.1.1 transitivePeerDependencies: - - "@babel/preset-env" + - '@babel/preset-env' - supports-color - "@react-native/metro-babel-transformer@0.74.88(@babel/core@7.24.3)": + '@react-native/metro-babel-transformer@0.74.88(@babel/core@7.24.3)': dependencies: - "@babel/core": 7.24.3 - "@react-native/babel-preset": 0.74.88(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@react-native/babel-preset': 0.74.88(@babel/core@7.24.3) hermes-parser: 0.19.1 nullthrows: 1.1.1 transitivePeerDependencies: - - "@babel/preset-env" + - '@babel/preset-env' - supports-color - "@react-native/metro-babel-transformer@0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))": + '@react-native/metro-babel-transformer@0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))': dependencies: - "@babel/core": 7.24.3 - "@react-native/babel-preset": 0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + '@babel/core': 7.24.3 + '@react-native/babel-preset': 0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3)) hermes-parser: 0.19.1 nullthrows: 1.1.1 transitivePeerDependencies: - - "@babel/preset-env" + - '@babel/preset-env' - supports-color - "@react-native/metro-config@0.74.88(@babel/core@7.24.3)": + '@react-native/metro-config@0.74.88(@babel/core@7.24.3)': dependencies: - "@react-native/js-polyfills": 0.74.88 - "@react-native/metro-babel-transformer": 0.74.88(@babel/core@7.24.3) + '@react-native/js-polyfills': 0.74.88 + '@react-native/metro-babel-transformer': 0.74.88(@babel/core@7.24.3) metro-config: 0.80.8 metro-runtime: 0.80.8 transitivePeerDependencies: - - "@babel/core" - - "@babel/preset-env" + - '@babel/core' + - '@babel/preset-env' - bufferutil - encoding - metro-transform-worker - supports-color - utf-8-validate - "@react-native/normalize-color@2.1.0": {} + '@react-native/normalize-color@2.1.0': {} - "@react-native/normalize-colors@0.74.85": {} + '@react-native/normalize-colors@0.74.85': {} - "@react-native/normalize-colors@0.74.87": {} + '@react-native/normalize-colors@0.74.87': {} - "@react-native/normalize-colors@0.74.88": {} + '@react-native/normalize-colors@0.74.88': {} - "@react-native/virtualized-lists@0.74.87(@types/react@18.2.73)(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@react-native/virtualized-lists@0.74.87(@types/react@18.2.73)(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 react: 18.2.0 react-native: 0.74.5(@types/react@18.2.73)(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@react-native/virtualized-lists@0.74.88(@types/react@18.2.73)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)": + '@react-native/virtualized-lists@0.74.88(@types/react@18.2.73)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@react-native/virtualized-lists@0.74.88(@types/react@18.2.73)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@react-native/virtualized-lists@0.74.88(@types/react@18.2.73)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@react-navigation/bottom-tabs@6.5.20(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@react-navigation/bottom-tabs@6.5.20(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: - "@react-navigation/elements": 1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@react-navigation/native": 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + '@react-navigation/elements': 1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + '@react-navigation/native': 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) color: 4.2.3 react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) @@ -55840,9 +39565,9 @@ snapshots: react-native-screens: 3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) warn-once: 0.1.1 - "@react-navigation/core@6.4.16(react@18.2.0)": + '@react-navigation/core@6.4.16(react@18.2.0)': dependencies: - "@react-navigation/routers": 6.1.9 + '@react-navigation/routers': 6.1.9 escape-string-regexp: 4.0.0 nanoid: 3.3.7 query-string: 7.1.3 @@ -55850,16 +39575,16 @@ snapshots: react-is: 16.13.1 use-latest-callback: 0.1.9(react@18.2.0) - "@react-navigation/elements@1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@react-navigation/elements@1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: - "@react-navigation/native": 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + '@react-navigation/native': 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) react-native-safe-area-context: 4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@react-navigation/material-top-tabs@6.6.13(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-tab-view@3.5.2(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@react-navigation/material-top-tabs@6.6.13(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-tab-view@3.5.2(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: - "@react-navigation/native": 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + '@react-navigation/native': 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) color: 4.2.3 react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) @@ -55867,33 +39592,33 @@ snapshots: react-native-tab-view: 3.5.2(react-native-pager-view@6.3.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) warn-once: 0.1.1 - "@react-navigation/native-stack@6.9.26(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@react-navigation/native-stack@6.9.26(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: - "@react-navigation/elements": 1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@react-navigation/native": 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + '@react-navigation/elements': 1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + '@react-navigation/native': 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) react-native-safe-area-context: 4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) react-native-screens: 3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) warn-once: 0.1.1 - "@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: - "@react-navigation/core": 6.4.16(react@18.2.0) + '@react-navigation/core': 6.4.16(react@18.2.0) escape-string-regexp: 4.0.0 fast-deep-equal: 3.1.3 nanoid: 3.3.7 react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) - "@react-navigation/routers@6.1.9": + '@react-navigation/routers@6.1.9': dependencies: nanoid: 3.3.7 - "@react-navigation/stack@6.3.29(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@react-navigation/stack@6.3.29(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: - "@react-navigation/elements": 1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@react-navigation/native": 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + '@react-navigation/elements': 1.3.30(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + '@react-navigation/native': 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) color: 4.2.3 react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) @@ -55902,7 +39627,7 @@ snapshots: react-native-screens: 3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) warn-once: 0.1.1 - "@reduxjs/toolkit@2.0.1(react-redux@7.2.9(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@reduxjs/toolkit@2.0.1(react-redux@7.2.9(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: immer: 10.0.3 redux: 5.0.0 @@ -55912,9 +39637,9 @@ snapshots: react: 18.2.0 react-redux: 7.2.9(@types/react@18.2.73)(react@18.2.0) - "@rnx-kit/chromium-edge-launcher@1.0.0": + '@rnx-kit/chromium-edge-launcher@1.0.0': dependencies: - "@types/node": 18.19.26 + '@types/node': 18.19.26 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 lighthouse-logger: 1.4.2 @@ -55923,16 +39648,16 @@ snapshots: transitivePeerDependencies: - supports-color - "@rollup/plugin-babel@5.3.1(@babel/core@7.24.3)(rollup@2.79.1)": + '@rollup/plugin-babel@5.3.1(@babel/core@7.24.3)(rollup@2.79.1)': dependencies: - "@babel/core": 7.24.3 - "@babel/helper-module-imports": 7.24.3 - "@rollup/pluginutils": 3.1.0(rollup@2.79.1) + '@babel/core': 7.24.3 + '@babel/helper-module-imports': 7.24.3 + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) rollup: 2.79.1 - "@rollup/plugin-commonjs@25.0.7(rollup@4.17.2)": + '@rollup/plugin-commonjs@25.0.7(rollup@4.17.2)': dependencies: - "@rollup/pluginutils": 5.1.0(rollup@4.17.2) + '@rollup/pluginutils': 5.1.0(rollup@4.17.2) commondir: 1.0.1 estree-walker: 2.0.2 glob: 8.1.0 @@ -55941,20 +39666,20 @@ snapshots: optionalDependencies: rollup: 4.17.2 - "@rollup/plugin-node-resolve@11.2.1(rollup@2.79.1)": + '@rollup/plugin-node-resolve@11.2.1(rollup@2.79.1)': dependencies: - "@rollup/pluginutils": 3.1.0(rollup@2.79.1) - "@types/resolve": 1.17.1 + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) + '@types/resolve': 1.17.1 builtin-modules: 3.3.0 deepmerge: 4.3.1 is-module: 1.0.0 resolve: 1.22.8 rollup: 2.79.1 - "@rollup/plugin-node-resolve@15.2.3(rollup@4.17.2)": + '@rollup/plugin-node-resolve@15.2.3(rollup@4.17.2)': dependencies: - "@rollup/pluginutils": 5.1.0(rollup@4.17.2) - "@types/resolve": 1.20.2 + '@rollup/pluginutils': 5.1.0(rollup@4.17.2) + '@types/resolve': 1.20.2 deepmerge: 4.3.1 is-builtin-module: 3.2.1 is-module: 1.0.0 @@ -55962,78 +39687,78 @@ snapshots: optionalDependencies: rollup: 4.17.2 - "@rollup/plugin-replace@2.4.2(rollup@2.79.1)": + '@rollup/plugin-replace@2.4.2(rollup@2.79.1)': dependencies: - "@rollup/pluginutils": 3.1.0(rollup@2.79.1) + '@rollup/pluginutils': 3.1.0(rollup@2.79.1) magic-string: 0.25.9 rollup: 2.79.1 - "@rollup/pluginutils@3.1.0(rollup@2.79.1)": + '@rollup/pluginutils@3.1.0(rollup@2.79.1)': dependencies: - "@types/estree": 0.0.39 + '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.3.1 rollup: 2.79.1 - "@rollup/pluginutils@5.1.0(rollup@4.17.2)": + '@rollup/pluginutils@5.1.0(rollup@4.17.2)': dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 estree-walker: 2.0.2 picomatch: 2.3.1 optionalDependencies: rollup: 4.17.2 - "@rollup/rollup-android-arm-eabi@4.17.2": + '@rollup/rollup-android-arm-eabi@4.17.2': optional: true - "@rollup/rollup-android-arm64@4.17.2": + '@rollup/rollup-android-arm64@4.17.2': optional: true - "@rollup/rollup-darwin-arm64@4.17.2": + '@rollup/rollup-darwin-arm64@4.17.2': optional: true - "@rollup/rollup-darwin-x64@4.17.2": + '@rollup/rollup-darwin-x64@4.17.2': optional: true - "@rollup/rollup-linux-arm-gnueabihf@4.17.2": + '@rollup/rollup-linux-arm-gnueabihf@4.17.2': optional: true - "@rollup/rollup-linux-arm-musleabihf@4.17.2": + '@rollup/rollup-linux-arm-musleabihf@4.17.2': optional: true - "@rollup/rollup-linux-arm64-gnu@4.17.2": + '@rollup/rollup-linux-arm64-gnu@4.17.2': optional: true - "@rollup/rollup-linux-arm64-musl@4.17.2": + '@rollup/rollup-linux-arm64-musl@4.17.2': optional: true - "@rollup/rollup-linux-powerpc64le-gnu@4.17.2": + '@rollup/rollup-linux-powerpc64le-gnu@4.17.2': optional: true - "@rollup/rollup-linux-riscv64-gnu@4.17.2": + '@rollup/rollup-linux-riscv64-gnu@4.17.2': optional: true - "@rollup/rollup-linux-s390x-gnu@4.17.2": + '@rollup/rollup-linux-s390x-gnu@4.17.2': optional: true - "@rollup/rollup-linux-x64-gnu@4.17.2": + '@rollup/rollup-linux-x64-gnu@4.17.2': optional: true - "@rollup/rollup-linux-x64-musl@4.17.2": + '@rollup/rollup-linux-x64-musl@4.17.2': optional: true - "@rollup/rollup-win32-arm64-msvc@4.17.2": + '@rollup/rollup-win32-arm64-msvc@4.17.2': optional: true - "@rollup/rollup-win32-ia32-msvc@4.17.2": + '@rollup/rollup-win32-ia32-msvc@4.17.2': optional: true - "@rollup/rollup-win32-x64-msvc@4.17.2": + '@rollup/rollup-win32-x64-msvc@4.17.2': optional: true - "@rushstack/eslint-patch@1.10.1": {} + '@rushstack/eslint-patch@1.10.1': {} - "@samverschueren/stream-to-observable@0.3.1(rxjs@6.6.7)": + '@samverschueren/stream-to-observable@0.3.1(rxjs@6.6.7)': dependencies: any-observable: 0.3.0(rxjs@6.6.7) optionalDependencies: @@ -56041,34 +39766,34 @@ snapshots: transitivePeerDependencies: - zenObservable - "@scure/base@1.1.6": {} + '@scure/base@1.1.6': {} - "@scure/bip32@1.3.3": + '@scure/bip32@1.3.3': dependencies: - "@noble/curves": 1.3.0 - "@noble/hashes": 1.3.3 - "@scure/base": 1.1.6 + '@noble/curves': 1.3.0 + '@noble/hashes': 1.3.3 + '@scure/base': 1.1.6 - "@scure/bip32@1.4.0": + '@scure/bip32@1.4.0': dependencies: - "@noble/curves": 1.4.0 - "@noble/hashes": 1.4.0 - "@scure/base": 1.1.6 + '@noble/curves': 1.4.0 + '@noble/hashes': 1.4.0 + '@scure/base': 1.1.6 - "@scure/bip39@1.2.2": + '@scure/bip39@1.2.2': dependencies: - "@noble/hashes": 1.3.3 - "@scure/base": 1.1.6 + '@noble/hashes': 1.3.3 + '@scure/base': 1.1.6 - "@scure/bip39@1.3.0": + '@scure/bip39@1.3.0': dependencies: - "@noble/hashes": 1.4.0 - "@scure/base": 1.1.6 + '@noble/hashes': 1.4.0 + '@scure/base': 1.1.6 - "@segment/analytics-react-native@2.19.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)))(@segment/sovran-react-native@0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-get-random-values@1.11.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@segment/analytics-react-native@2.19.1(@react-native-async-storage/async-storage@1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)))(@segment/sovran-react-native@0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-get-random-values@1.11.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: - "@segment/sovran-react-native": 0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@segment/tsub": 2.0.0 + '@segment/sovran-react-native': 0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + '@segment/tsub': 2.0.0 deepmerge: 4.3.1 js-base64: 3.7.7 react: 18.2.0 @@ -56076,142 +39801,142 @@ snapshots: react-native-get-random-values: 1.11.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) uuid: 9.0.1 optionalDependencies: - "@react-native-async-storage/async-storage": 1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) + '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) transitivePeerDependencies: - supports-color - "@segment/loosely-validate-event@2.0.0": + '@segment/loosely-validate-event@2.0.0': dependencies: component-type: 1.2.2 join-component: 1.1.0 - "@segment/sovran-react-native@0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@segment/sovran-react-native@0.4.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: - "@react-native-async-storage/async-storage": 1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) + '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) ansi-regex: 5.0.1 deepmerge: 4.3.1 react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) shell-quote: 1.7.3 - "@segment/tsub@2.0.0": + '@segment/tsub@2.0.0': dependencies: - "@stdlib/math-base-special-ldexp": 0.0.5 + '@stdlib/math-base-special-ldexp': 0.0.5 dlv: 1.1.3 dset: 3.1.3 tiny-hashes: 1.0.1 transitivePeerDependencies: - supports-color - "@sentry-internal/browser-utils@8.16.0": + '@sentry-internal/browser-utils@8.16.0': dependencies: - "@sentry/core": 8.16.0 - "@sentry/types": 8.16.0 - "@sentry/utils": 8.16.0 + '@sentry/core': 8.16.0 + '@sentry/types': 8.16.0 + '@sentry/utils': 8.16.0 - "@sentry-internal/feedback@7.117.0": + '@sentry-internal/feedback@7.117.0': dependencies: - "@sentry/core": 7.117.0 - "@sentry/types": 7.117.0 - "@sentry/utils": 7.117.0 + '@sentry/core': 7.117.0 + '@sentry/types': 7.117.0 + '@sentry/utils': 7.117.0 - "@sentry-internal/feedback@8.16.0": + '@sentry-internal/feedback@8.16.0': dependencies: - "@sentry/core": 8.16.0 - "@sentry/types": 8.16.0 - "@sentry/utils": 8.16.0 + '@sentry/core': 8.16.0 + '@sentry/types': 8.16.0 + '@sentry/utils': 8.16.0 - "@sentry-internal/replay-canvas@7.117.0": + '@sentry-internal/replay-canvas@7.117.0': dependencies: - "@sentry/core": 7.117.0 - "@sentry/replay": 7.117.0 - "@sentry/types": 7.117.0 - "@sentry/utils": 7.117.0 + '@sentry/core': 7.117.0 + '@sentry/replay': 7.117.0 + '@sentry/types': 7.117.0 + '@sentry/utils': 7.117.0 - "@sentry-internal/replay-canvas@8.16.0": + '@sentry-internal/replay-canvas@8.16.0': dependencies: - "@sentry-internal/replay": 8.16.0 - "@sentry/core": 8.16.0 - "@sentry/types": 8.16.0 - "@sentry/utils": 8.16.0 + '@sentry-internal/replay': 8.16.0 + '@sentry/core': 8.16.0 + '@sentry/types': 8.16.0 + '@sentry/utils': 8.16.0 - "@sentry-internal/replay@8.16.0": + '@sentry-internal/replay@8.16.0': dependencies: - "@sentry-internal/browser-utils": 8.16.0 - "@sentry/core": 8.16.0 - "@sentry/types": 8.16.0 - "@sentry/utils": 8.16.0 + '@sentry-internal/browser-utils': 8.16.0 + '@sentry/core': 8.16.0 + '@sentry/types': 8.16.0 + '@sentry/utils': 8.16.0 - "@sentry-internal/tracing@7.117.0": + '@sentry-internal/tracing@7.117.0': dependencies: - "@sentry/core": 7.117.0 - "@sentry/types": 7.117.0 - "@sentry/utils": 7.117.0 + '@sentry/core': 7.117.0 + '@sentry/types': 7.117.0 + '@sentry/utils': 7.117.0 - "@sentry/browser@7.117.0": + '@sentry/browser@7.117.0': dependencies: - "@sentry-internal/feedback": 7.117.0 - "@sentry-internal/replay-canvas": 7.117.0 - "@sentry-internal/tracing": 7.117.0 - "@sentry/core": 7.117.0 - "@sentry/integrations": 7.117.0 - "@sentry/replay": 7.117.0 - "@sentry/types": 7.117.0 - "@sentry/utils": 7.117.0 + '@sentry-internal/feedback': 7.117.0 + '@sentry-internal/replay-canvas': 7.117.0 + '@sentry-internal/tracing': 7.117.0 + '@sentry/core': 7.117.0 + '@sentry/integrations': 7.117.0 + '@sentry/replay': 7.117.0 + '@sentry/types': 7.117.0 + '@sentry/utils': 7.117.0 - "@sentry/browser@8.16.0": + '@sentry/browser@8.16.0': dependencies: - "@sentry-internal/browser-utils": 8.16.0 - "@sentry-internal/feedback": 8.16.0 - "@sentry-internal/replay": 8.16.0 - "@sentry-internal/replay-canvas": 8.16.0 - "@sentry/core": 8.16.0 - "@sentry/types": 8.16.0 - "@sentry/utils": 8.16.0 + '@sentry-internal/browser-utils': 8.16.0 + '@sentry-internal/feedback': 8.16.0 + '@sentry-internal/replay': 8.16.0 + '@sentry-internal/replay-canvas': 8.16.0 + '@sentry/core': 8.16.0 + '@sentry/types': 8.16.0 + '@sentry/utils': 8.16.0 - "@sentry/cli-darwin@2.31.0": + '@sentry/cli-darwin@2.31.0': optional: true - "@sentry/cli-darwin@2.31.2": + '@sentry/cli-darwin@2.31.2': optional: true - "@sentry/cli-linux-arm64@2.31.0": + '@sentry/cli-linux-arm64@2.31.0': optional: true - "@sentry/cli-linux-arm64@2.31.2": + '@sentry/cli-linux-arm64@2.31.2': optional: true - "@sentry/cli-linux-arm@2.31.0": + '@sentry/cli-linux-arm@2.31.0': optional: true - "@sentry/cli-linux-arm@2.31.2": + '@sentry/cli-linux-arm@2.31.2': optional: true - "@sentry/cli-linux-i686@2.31.0": + '@sentry/cli-linux-i686@2.31.0': optional: true - "@sentry/cli-linux-i686@2.31.2": + '@sentry/cli-linux-i686@2.31.2': optional: true - "@sentry/cli-linux-x64@2.31.0": + '@sentry/cli-linux-x64@2.31.0': optional: true - "@sentry/cli-linux-x64@2.31.2": + '@sentry/cli-linux-x64@2.31.2': optional: true - "@sentry/cli-win32-i686@2.31.0": + '@sentry/cli-win32-i686@2.31.0': optional: true - "@sentry/cli-win32-i686@2.31.2": + '@sentry/cli-win32-i686@2.31.2': optional: true - "@sentry/cli-win32-x64@2.31.0": + '@sentry/cli-win32-x64@2.31.0': optional: true - "@sentry/cli-win32-x64@2.31.2": + '@sentry/cli-win32-x64@2.31.2': optional: true - "@sentry/cli@2.31.0": + '@sentry/cli@2.31.0': dependencies: https-proxy-agent: 5.0.1 node-fetch: 2.7.0 @@ -56219,18 +39944,18 @@ snapshots: proxy-from-env: 1.1.0 which: 2.0.2 optionalDependencies: - "@sentry/cli-darwin": 2.31.0 - "@sentry/cli-linux-arm": 2.31.0 - "@sentry/cli-linux-arm64": 2.31.0 - "@sentry/cli-linux-i686": 2.31.0 - "@sentry/cli-linux-x64": 2.31.0 - "@sentry/cli-win32-i686": 2.31.0 - "@sentry/cli-win32-x64": 2.31.0 + '@sentry/cli-darwin': 2.31.0 + '@sentry/cli-linux-arm': 2.31.0 + '@sentry/cli-linux-arm64': 2.31.0 + '@sentry/cli-linux-i686': 2.31.0 + '@sentry/cli-linux-x64': 2.31.0 + '@sentry/cli-win32-i686': 2.31.0 + '@sentry/cli-win32-x64': 2.31.0 transitivePeerDependencies: - encoding - supports-color - "@sentry/cli@2.31.2": + '@sentry/cli@2.31.2': dependencies: https-proxy-agent: 5.0.1 node-fetch: 2.7.0 @@ -56238,77 +39963,77 @@ snapshots: proxy-from-env: 1.1.0 which: 2.0.2 optionalDependencies: - "@sentry/cli-darwin": 2.31.2 - "@sentry/cli-linux-arm": 2.31.2 - "@sentry/cli-linux-arm64": 2.31.2 - "@sentry/cli-linux-i686": 2.31.2 - "@sentry/cli-linux-x64": 2.31.2 - "@sentry/cli-win32-i686": 2.31.2 - "@sentry/cli-win32-x64": 2.31.2 + '@sentry/cli-darwin': 2.31.2 + '@sentry/cli-linux-arm': 2.31.2 + '@sentry/cli-linux-arm64': 2.31.2 + '@sentry/cli-linux-i686': 2.31.2 + '@sentry/cli-linux-x64': 2.31.2 + '@sentry/cli-win32-i686': 2.31.2 + '@sentry/cli-win32-x64': 2.31.2 transitivePeerDependencies: - encoding - supports-color - "@sentry/core@6.19.7": + '@sentry/core@6.19.7': dependencies: - "@sentry/hub": 6.19.7 - "@sentry/minimal": 6.19.7 - "@sentry/types": 6.19.7 - "@sentry/utils": 6.19.7 + '@sentry/hub': 6.19.7 + '@sentry/minimal': 6.19.7 + '@sentry/types': 6.19.7 + '@sentry/utils': 6.19.7 tslib: 2.6.2 - "@sentry/core@7.117.0": + '@sentry/core@7.117.0': dependencies: - "@sentry/types": 7.117.0 - "@sentry/utils": 7.117.0 + '@sentry/types': 7.117.0 + '@sentry/utils': 7.117.0 - "@sentry/core@8.16.0": + '@sentry/core@8.16.0': dependencies: - "@sentry/types": 8.16.0 - "@sentry/utils": 8.16.0 + '@sentry/types': 8.16.0 + '@sentry/utils': 8.16.0 - "@sentry/electron@5.2.0": + '@sentry/electron@5.2.0': dependencies: - "@sentry/browser": 8.16.0 - "@sentry/core": 8.16.0 - "@sentry/node": 8.16.0 - "@sentry/types": 8.16.0 - "@sentry/utils": 8.16.0 + '@sentry/browser': 8.16.0 + '@sentry/core': 8.16.0 + '@sentry/node': 8.16.0 + '@sentry/types': 8.16.0 + '@sentry/utils': 8.16.0 deepmerge: 4.3.1 transitivePeerDependencies: - supports-color - "@sentry/hub@6.19.7": + '@sentry/hub@6.19.7': dependencies: - "@sentry/types": 6.19.7 - "@sentry/utils": 6.19.7 + '@sentry/types': 6.19.7 + '@sentry/utils': 6.19.7 tslib: 2.6.2 - "@sentry/hub@7.117.0": + '@sentry/hub@7.117.0': dependencies: - "@sentry/core": 7.117.0 - "@sentry/types": 7.117.0 - "@sentry/utils": 7.117.0 + '@sentry/core': 7.117.0 + '@sentry/types': 7.117.0 + '@sentry/utils': 7.117.0 - "@sentry/integrations@7.117.0": + '@sentry/integrations@7.117.0': dependencies: - "@sentry/core": 7.117.0 - "@sentry/types": 7.117.0 - "@sentry/utils": 7.117.0 + '@sentry/core': 7.117.0 + '@sentry/types': 7.117.0 + '@sentry/utils': 7.117.0 localforage: 1.10.0 - "@sentry/minimal@6.19.7": + '@sentry/minimal@6.19.7': dependencies: - "@sentry/hub": 6.19.7 - "@sentry/types": 6.19.7 + '@sentry/hub': 6.19.7 + '@sentry/types': 6.19.7 tslib: 2.6.2 - "@sentry/node@6.19.7": + '@sentry/node@6.19.7': dependencies: - "@sentry/core": 6.19.7 - "@sentry/hub": 6.19.7 - "@sentry/types": 6.19.7 - "@sentry/utils": 6.19.7 + '@sentry/core': 6.19.7 + '@sentry/hub': 6.19.7 + '@sentry/types': 6.19.7 + '@sentry/utils': 6.19.7 cookie: 0.4.2 https-proxy-agent: 5.0.1 lru_map: 0.3.3 @@ -56316,61 +40041,61 @@ snapshots: transitivePeerDependencies: - supports-color - "@sentry/node@8.16.0": - dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/context-async-hooks": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation-connect": 0.37.0(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation-express": 0.40.1(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation-fastify": 0.37.0(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation-graphql": 0.41.0(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation-hapi": 0.39.0(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation-http": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation-ioredis": 0.41.0(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation-koa": 0.41.0(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation-mongodb": 0.45.0(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation-mongoose": 0.39.0(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation-mysql": 0.39.0(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation-mysql2": 0.39.0(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation-nestjs-core": 0.38.0(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation-pg": 0.42.0(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation-redis-4": 0.40.0(@opentelemetry/api@1.9.0) - "@opentelemetry/resources": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/sdk-trace-base": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/semantic-conventions": 1.25.1 - "@prisma/instrumentation": 5.16.1 - "@sentry/core": 8.16.0 - "@sentry/opentelemetry": 8.16.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.25.1) - "@sentry/types": 8.16.0 - "@sentry/utils": 8.16.0 + '@sentry/node@8.16.0': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/context-async-hooks': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-connect': 0.37.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-express': 0.40.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-fastify': 0.37.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-graphql': 0.41.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-hapi': 0.39.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-http': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-ioredis': 0.41.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-koa': 0.41.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-mongodb': 0.45.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-mongoose': 0.39.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-mysql': 0.39.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-mysql2': 0.39.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-nestjs-core': 0.38.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-pg': 0.42.0(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation-redis-4': 0.40.0(@opentelemetry/api@1.9.0) + '@opentelemetry/resources': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-trace-base': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 + '@prisma/instrumentation': 5.16.1 + '@sentry/core': 8.16.0 + '@sentry/opentelemetry': 8.16.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.25.1) + '@sentry/types': 8.16.0 + '@sentry/utils': 8.16.0 optionalDependencies: opentelemetry-instrumentation-fetch-node: 1.2.0 transitivePeerDependencies: - supports-color - "@sentry/opentelemetry@8.16.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.25.1)": - dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/core": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/instrumentation": 0.52.1(@opentelemetry/api@1.9.0) - "@opentelemetry/sdk-trace-base": 1.25.1(@opentelemetry/api@1.9.0) - "@opentelemetry/semantic-conventions": 1.25.1 - "@sentry/core": 8.16.0 - "@sentry/types": 8.16.0 - "@sentry/utils": 8.16.0 - - "@sentry/react-native@5.24.3(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": - dependencies: - "@sentry/browser": 7.117.0 - "@sentry/cli": 2.31.2 - "@sentry/core": 7.117.0 - "@sentry/hub": 7.117.0 - "@sentry/integrations": 7.117.0 - "@sentry/react": 7.117.0(react@18.2.0) - "@sentry/types": 7.117.0 - "@sentry/utils": 7.117.0 + '@sentry/opentelemetry@8.16.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.25.1)': + dependencies: + '@opentelemetry/api': 1.9.0 + '@opentelemetry/core': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/instrumentation': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/sdk-trace-base': 1.25.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 + '@sentry/core': 8.16.0 + '@sentry/types': 8.16.0 + '@sentry/utils': 8.16.0 + + '@sentry/react-native@5.24.3(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': + dependencies: + '@sentry/browser': 7.117.0 + '@sentry/cli': 2.31.2 + '@sentry/core': 7.117.0 + '@sentry/hub': 7.117.0 + '@sentry/integrations': 7.117.0 + '@sentry/react': 7.117.0(react@18.2.0) + '@sentry/types': 7.117.0 + '@sentry/utils': 7.117.0 promise: 8.3.0 react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) @@ -56381,737 +40106,737 @@ snapshots: - encoding - supports-color - "@sentry/react@7.117.0(react@18.2.0)": + '@sentry/react@7.117.0(react@18.2.0)': dependencies: - "@sentry/browser": 7.117.0 - "@sentry/core": 7.117.0 - "@sentry/types": 7.117.0 - "@sentry/utils": 7.117.0 + '@sentry/browser': 7.117.0 + '@sentry/core': 7.117.0 + '@sentry/types': 7.117.0 + '@sentry/utils': 7.117.0 hoist-non-react-statics: 3.3.2 react: 18.2.0 - "@sentry/replay@7.117.0": + '@sentry/replay@7.117.0': dependencies: - "@sentry-internal/tracing": 7.117.0 - "@sentry/core": 7.117.0 - "@sentry/types": 7.117.0 - "@sentry/utils": 7.117.0 + '@sentry-internal/tracing': 7.117.0 + '@sentry/core': 7.117.0 + '@sentry/types': 7.117.0 + '@sentry/utils': 7.117.0 - "@sentry/types@6.19.7": {} + '@sentry/types@6.19.7': {} - "@sentry/types@7.117.0": {} + '@sentry/types@7.117.0': {} - "@sentry/types@8.16.0": {} + '@sentry/types@8.16.0': {} - "@sentry/utils@6.19.7": + '@sentry/utils@6.19.7': dependencies: - "@sentry/types": 6.19.7 + '@sentry/types': 6.19.7 tslib: 2.6.2 - "@sentry/utils@7.117.0": + '@sentry/utils@7.117.0': dependencies: - "@sentry/types": 7.117.0 + '@sentry/types': 7.117.0 - "@sentry/utils@8.16.0": + '@sentry/utils@8.16.0': dependencies: - "@sentry/types": 8.16.0 + '@sentry/types': 8.16.0 - "@shopify/flash-list@1.6.4(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@shopify/flash-list@1.6.4(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.24.1 + '@babel/runtime': 7.24.1 react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) recyclerlistview: 4.2.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) tslib: 2.6.2 - "@shopify/react-native-performance-navigation@3.0.0(bdlxoipflge4zkd3tdq4b64jgq)": + '@shopify/react-native-performance-navigation@3.0.0(bdlxoipflge4zkd3tdq4b64jgq)': dependencies: - "@babel/runtime": 7.24.1 - "@react-navigation/core": 6.4.16(react@18.2.0) - "@react-navigation/native": 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@react-navigation/stack": 6.3.29(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) - "@shopify/react-native-performance": 4.1.2(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + '@babel/runtime': 7.24.1 + '@react-navigation/core': 6.4.16(react@18.2.0) + '@react-navigation/native': 6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + '@react-navigation/stack': 6.3.29(@react-navigation/native@6.1.17(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-safe-area-context@4.10.5(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + '@shopify/react-native-performance': 4.1.2(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) lodash.isequal: 4.5.0 react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) tslib: 2.6.2 - "@shopify/react-native-performance@4.1.2(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)": + '@shopify/react-native-performance@4.1.2(@babel/runtime@7.24.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.24.1 + '@babel/runtime': 7.24.1 react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) tslib: 2.6.2 - "@sideway/address@4.1.5": + '@sideway/address@4.1.5': dependencies: - "@hapi/hoek": 9.3.0 + '@hapi/hoek': 9.3.0 - "@sideway/formula@3.0.1": {} + '@sideway/formula@3.0.1': {} - "@sideway/pinpoint@2.0.0": {} + '@sideway/pinpoint@2.0.0': {} - "@sinclair/typebox@0.24.51": {} + '@sinclair/typebox@0.24.51': {} - "@sinclair/typebox@0.27.8": {} + '@sinclair/typebox@0.27.8': {} - "@sindresorhus/is@0.14.0": {} + '@sindresorhus/is@0.14.0': {} - "@sindresorhus/is@4.6.0": {} + '@sindresorhus/is@4.6.0': {} - "@sinonjs/commons@1.8.6": + '@sinonjs/commons@1.8.6': dependencies: type-detect: 4.0.8 - "@sinonjs/commons@3.0.1": + '@sinonjs/commons@3.0.1': dependencies: type-detect: 4.0.8 - "@sinonjs/fake-timers@10.3.0": + '@sinonjs/fake-timers@10.3.0': dependencies: - "@sinonjs/commons": 3.0.1 + '@sinonjs/commons': 3.0.1 - "@sinonjs/fake-timers@8.1.0": + '@sinonjs/fake-timers@8.1.0': dependencies: - "@sinonjs/commons": 1.8.6 + '@sinonjs/commons': 1.8.6 - "@sinonjs/fake-timers@9.1.2": + '@sinonjs/fake-timers@9.1.2': dependencies: - "@sinonjs/commons": 1.8.6 + '@sinonjs/commons': 1.8.6 - "@smithy/abort-controller@2.2.0": + '@smithy/abort-controller@2.2.0': dependencies: - "@smithy/types": 2.12.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/abort-controller@3.1.2": + '@smithy/abort-controller@3.1.2': dependencies: - "@smithy/types": 3.4.0 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/chunked-blob-reader-native@2.2.0": + '@smithy/chunked-blob-reader-native@2.2.0': dependencies: - "@smithy/util-base64": 2.3.0 + '@smithy/util-base64': 2.3.0 tslib: 2.6.2 - "@smithy/chunked-blob-reader-native@3.0.0": + '@smithy/chunked-blob-reader-native@3.0.0': dependencies: - "@smithy/util-base64": 3.0.0 + '@smithy/util-base64': 3.0.0 tslib: 2.6.2 - "@smithy/chunked-blob-reader@2.2.0": + '@smithy/chunked-blob-reader@2.2.0': dependencies: tslib: 2.6.2 - "@smithy/chunked-blob-reader@3.0.0": + '@smithy/chunked-blob-reader@3.0.0': dependencies: tslib: 2.6.2 - "@smithy/config-resolver@2.2.0": + '@smithy/config-resolver@2.2.0': dependencies: - "@smithy/node-config-provider": 2.3.0 - "@smithy/types": 2.12.0 - "@smithy/util-config-provider": 2.3.0 - "@smithy/util-middleware": 2.2.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/types': 2.12.0 + '@smithy/util-config-provider': 2.3.0 + '@smithy/util-middleware': 2.2.0 tslib: 2.6.2 - "@smithy/config-resolver@3.0.6": + '@smithy/config-resolver@3.0.6': dependencies: - "@smithy/node-config-provider": 3.1.5 - "@smithy/types": 3.4.0 - "@smithy/util-config-provider": 3.0.0 - "@smithy/util-middleware": 3.0.4 + '@smithy/node-config-provider': 3.1.5 + '@smithy/types': 3.4.0 + '@smithy/util-config-provider': 3.0.0 + '@smithy/util-middleware': 3.0.4 tslib: 2.6.2 - "@smithy/core@1.4.0": + '@smithy/core@1.4.0': dependencies: - "@smithy/middleware-endpoint": 2.5.0 - "@smithy/middleware-retry": 2.2.0 - "@smithy/middleware-serde": 2.3.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/smithy-client": 2.5.0 - "@smithy/types": 2.12.0 - "@smithy/util-middleware": 2.2.0 + '@smithy/middleware-endpoint': 2.5.0 + '@smithy/middleware-retry': 2.2.0 + '@smithy/middleware-serde': 2.3.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/smithy-client': 2.5.0 + '@smithy/types': 2.12.0 + '@smithy/util-middleware': 2.2.0 tslib: 2.6.2 - "@smithy/core@2.4.1": - dependencies: - "@smithy/middleware-endpoint": 3.1.1 - "@smithy/middleware-retry": 3.0.16 - "@smithy/middleware-serde": 3.0.4 - "@smithy/protocol-http": 4.1.1 - "@smithy/smithy-client": 3.3.0 - "@smithy/types": 3.4.0 - "@smithy/util-body-length-browser": 3.0.0 - "@smithy/util-middleware": 3.0.4 - "@smithy/util-utf8": 3.0.0 + '@smithy/core@2.4.1': + dependencies: + '@smithy/middleware-endpoint': 3.1.1 + '@smithy/middleware-retry': 3.0.16 + '@smithy/middleware-serde': 3.0.4 + '@smithy/protocol-http': 4.1.1 + '@smithy/smithy-client': 3.3.0 + '@smithy/types': 3.4.0 + '@smithy/util-body-length-browser': 3.0.0 + '@smithy/util-middleware': 3.0.4 + '@smithy/util-utf8': 3.0.0 tslib: 2.6.2 - "@smithy/credential-provider-imds@2.3.0": + '@smithy/credential-provider-imds@2.3.0': dependencies: - "@smithy/node-config-provider": 2.3.0 - "@smithy/property-provider": 2.2.0 - "@smithy/types": 2.12.0 - "@smithy/url-parser": 2.2.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/property-provider': 2.2.0 + '@smithy/types': 2.12.0 + '@smithy/url-parser': 2.2.0 tslib: 2.6.2 - "@smithy/credential-provider-imds@3.2.1": + '@smithy/credential-provider-imds@3.2.1': dependencies: - "@smithy/node-config-provider": 3.1.5 - "@smithy/property-provider": 3.1.4 - "@smithy/types": 3.4.0 - "@smithy/url-parser": 3.0.4 + '@smithy/node-config-provider': 3.1.5 + '@smithy/property-provider': 3.1.4 + '@smithy/types': 3.4.0 + '@smithy/url-parser': 3.0.4 tslib: 2.6.2 - "@smithy/eventstream-codec@2.2.0": + '@smithy/eventstream-codec@2.2.0': dependencies: - "@aws-crypto/crc32": 3.0.0 - "@smithy/types": 2.12.0 - "@smithy/util-hex-encoding": 2.2.0 + '@aws-crypto/crc32': 3.0.0 + '@smithy/types': 2.12.0 + '@smithy/util-hex-encoding': 2.2.0 tslib: 2.6.2 - "@smithy/eventstream-codec@3.1.3": + '@smithy/eventstream-codec@3.1.3': dependencies: - "@aws-crypto/crc32": 5.2.0 - "@smithy/types": 3.4.0 - "@smithy/util-hex-encoding": 3.0.0 + '@aws-crypto/crc32': 5.2.0 + '@smithy/types': 3.4.0 + '@smithy/util-hex-encoding': 3.0.0 tslib: 2.6.2 - "@smithy/eventstream-serde-browser@2.2.0": + '@smithy/eventstream-serde-browser@2.2.0': dependencies: - "@smithy/eventstream-serde-universal": 2.2.0 - "@smithy/types": 2.12.0 + '@smithy/eventstream-serde-universal': 2.2.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/eventstream-serde-browser@3.0.7": + '@smithy/eventstream-serde-browser@3.0.7': dependencies: - "@smithy/eventstream-serde-universal": 3.0.6 - "@smithy/types": 3.4.0 + '@smithy/eventstream-serde-universal': 3.0.6 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/eventstream-serde-config-resolver@2.2.0": + '@smithy/eventstream-serde-config-resolver@2.2.0': dependencies: - "@smithy/types": 2.12.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/eventstream-serde-config-resolver@3.0.4": + '@smithy/eventstream-serde-config-resolver@3.0.4': dependencies: - "@smithy/types": 3.4.0 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/eventstream-serde-node@2.2.0": + '@smithy/eventstream-serde-node@2.2.0': dependencies: - "@smithy/eventstream-serde-universal": 2.2.0 - "@smithy/types": 2.12.0 + '@smithy/eventstream-serde-universal': 2.2.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/eventstream-serde-node@3.0.6": + '@smithy/eventstream-serde-node@3.0.6': dependencies: - "@smithy/eventstream-serde-universal": 3.0.6 - "@smithy/types": 3.4.0 + '@smithy/eventstream-serde-universal': 3.0.6 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/eventstream-serde-universal@2.2.0": + '@smithy/eventstream-serde-universal@2.2.0': dependencies: - "@smithy/eventstream-codec": 2.2.0 - "@smithy/types": 2.12.0 + '@smithy/eventstream-codec': 2.2.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/eventstream-serde-universal@3.0.6": + '@smithy/eventstream-serde-universal@3.0.6': dependencies: - "@smithy/eventstream-codec": 3.1.3 - "@smithy/types": 3.4.0 + '@smithy/eventstream-codec': 3.1.3 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/fetch-http-handler@2.5.0": + '@smithy/fetch-http-handler@2.5.0': dependencies: - "@smithy/protocol-http": 3.3.0 - "@smithy/querystring-builder": 2.2.0 - "@smithy/types": 2.12.0 - "@smithy/util-base64": 2.3.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/querystring-builder': 2.2.0 + '@smithy/types': 2.12.0 + '@smithy/util-base64': 2.3.0 tslib: 2.6.2 - "@smithy/fetch-http-handler@3.2.5": + '@smithy/fetch-http-handler@3.2.5': dependencies: - "@smithy/protocol-http": 4.1.1 - "@smithy/querystring-builder": 3.0.4 - "@smithy/types": 3.4.0 - "@smithy/util-base64": 3.0.0 + '@smithy/protocol-http': 4.1.1 + '@smithy/querystring-builder': 3.0.4 + '@smithy/types': 3.4.0 + '@smithy/util-base64': 3.0.0 tslib: 2.6.2 - "@smithy/hash-blob-browser@2.2.0": + '@smithy/hash-blob-browser@2.2.0': dependencies: - "@smithy/chunked-blob-reader": 2.2.0 - "@smithy/chunked-blob-reader-native": 2.2.0 - "@smithy/types": 2.12.0 + '@smithy/chunked-blob-reader': 2.2.0 + '@smithy/chunked-blob-reader-native': 2.2.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/hash-blob-browser@3.1.3": + '@smithy/hash-blob-browser@3.1.3': dependencies: - "@smithy/chunked-blob-reader": 3.0.0 - "@smithy/chunked-blob-reader-native": 3.0.0 - "@smithy/types": 3.4.0 + '@smithy/chunked-blob-reader': 3.0.0 + '@smithy/chunked-blob-reader-native': 3.0.0 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/hash-node@2.2.0": + '@smithy/hash-node@2.2.0': dependencies: - "@smithy/types": 2.12.0 - "@smithy/util-buffer-from": 2.2.0 - "@smithy/util-utf8": 2.3.0 + '@smithy/types': 2.12.0 + '@smithy/util-buffer-from': 2.2.0 + '@smithy/util-utf8': 2.3.0 tslib: 2.6.2 - "@smithy/hash-node@3.0.4": + '@smithy/hash-node@3.0.4': dependencies: - "@smithy/types": 3.4.0 - "@smithy/util-buffer-from": 3.0.0 - "@smithy/util-utf8": 3.0.0 + '@smithy/types': 3.4.0 + '@smithy/util-buffer-from': 3.0.0 + '@smithy/util-utf8': 3.0.0 tslib: 2.6.2 - "@smithy/hash-stream-node@2.2.0": + '@smithy/hash-stream-node@2.2.0': dependencies: - "@smithy/types": 2.12.0 - "@smithy/util-utf8": 2.3.0 + '@smithy/types': 2.12.0 + '@smithy/util-utf8': 2.3.0 tslib: 2.6.2 - "@smithy/hash-stream-node@3.1.3": + '@smithy/hash-stream-node@3.1.3': dependencies: - "@smithy/types": 3.4.0 - "@smithy/util-utf8": 3.0.0 + '@smithy/types': 3.4.0 + '@smithy/util-utf8': 3.0.0 tslib: 2.6.2 - "@smithy/invalid-dependency@2.2.0": + '@smithy/invalid-dependency@2.2.0': dependencies: - "@smithy/types": 2.12.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/invalid-dependency@3.0.4": + '@smithy/invalid-dependency@3.0.4': dependencies: - "@smithy/types": 3.4.0 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/is-array-buffer@2.2.0": + '@smithy/is-array-buffer@2.2.0': dependencies: tslib: 2.6.2 - "@smithy/is-array-buffer@3.0.0": + '@smithy/is-array-buffer@3.0.0': dependencies: tslib: 2.6.2 - "@smithy/md5-js@2.2.0": + '@smithy/md5-js@2.2.0': dependencies: - "@smithy/types": 2.12.0 - "@smithy/util-utf8": 2.3.0 + '@smithy/types': 2.12.0 + '@smithy/util-utf8': 2.3.0 tslib: 2.6.2 - "@smithy/md5-js@3.0.4": + '@smithy/md5-js@3.0.4': dependencies: - "@smithy/types": 3.4.0 - "@smithy/util-utf8": 3.0.0 + '@smithy/types': 3.4.0 + '@smithy/util-utf8': 3.0.0 tslib: 2.6.2 - "@smithy/middleware-content-length@2.2.0": + '@smithy/middleware-content-length@2.2.0': dependencies: - "@smithy/protocol-http": 3.3.0 - "@smithy/types": 2.12.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/middleware-content-length@3.0.6": + '@smithy/middleware-content-length@3.0.6': dependencies: - "@smithy/protocol-http": 4.1.1 - "@smithy/types": 3.4.0 + '@smithy/protocol-http': 4.1.1 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/middleware-endpoint@2.5.0": + '@smithy/middleware-endpoint@2.5.0': dependencies: - "@smithy/middleware-serde": 2.3.0 - "@smithy/node-config-provider": 2.3.0 - "@smithy/shared-ini-file-loader": 2.4.0 - "@smithy/types": 2.12.0 - "@smithy/url-parser": 2.2.0 - "@smithy/util-middleware": 2.2.0 + '@smithy/middleware-serde': 2.3.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/shared-ini-file-loader': 2.4.0 + '@smithy/types': 2.12.0 + '@smithy/url-parser': 2.2.0 + '@smithy/util-middleware': 2.2.0 tslib: 2.6.2 - "@smithy/middleware-endpoint@3.1.1": + '@smithy/middleware-endpoint@3.1.1': dependencies: - "@smithy/middleware-serde": 3.0.4 - "@smithy/node-config-provider": 3.1.5 - "@smithy/shared-ini-file-loader": 3.1.5 - "@smithy/types": 3.4.0 - "@smithy/url-parser": 3.0.4 - "@smithy/util-middleware": 3.0.4 + '@smithy/middleware-serde': 3.0.4 + '@smithy/node-config-provider': 3.1.5 + '@smithy/shared-ini-file-loader': 3.1.5 + '@smithy/types': 3.4.0 + '@smithy/url-parser': 3.0.4 + '@smithy/util-middleware': 3.0.4 tslib: 2.6.2 - "@smithy/middleware-retry@2.2.0": + '@smithy/middleware-retry@2.2.0': dependencies: - "@smithy/node-config-provider": 2.3.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/service-error-classification": 2.1.5 - "@smithy/smithy-client": 2.5.0 - "@smithy/types": 2.12.0 - "@smithy/util-middleware": 2.2.0 - "@smithy/util-retry": 2.2.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/service-error-classification': 2.1.5 + '@smithy/smithy-client': 2.5.0 + '@smithy/types': 2.12.0 + '@smithy/util-middleware': 2.2.0 + '@smithy/util-retry': 2.2.0 tslib: 2.6.2 uuid: 8.3.2 - "@smithy/middleware-retry@3.0.16": + '@smithy/middleware-retry@3.0.16': dependencies: - "@smithy/node-config-provider": 3.1.5 - "@smithy/protocol-http": 4.1.1 - "@smithy/service-error-classification": 3.0.4 - "@smithy/smithy-client": 3.3.0 - "@smithy/types": 3.4.0 - "@smithy/util-middleware": 3.0.4 - "@smithy/util-retry": 3.0.4 + '@smithy/node-config-provider': 3.1.5 + '@smithy/protocol-http': 4.1.1 + '@smithy/service-error-classification': 3.0.4 + '@smithy/smithy-client': 3.3.0 + '@smithy/types': 3.4.0 + '@smithy/util-middleware': 3.0.4 + '@smithy/util-retry': 3.0.4 tslib: 2.6.2 uuid: 9.0.1 - "@smithy/middleware-serde@2.3.0": + '@smithy/middleware-serde@2.3.0': dependencies: - "@smithy/types": 2.12.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/middleware-serde@3.0.4": + '@smithy/middleware-serde@3.0.4': dependencies: - "@smithy/types": 3.4.0 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/middleware-stack@2.2.0": + '@smithy/middleware-stack@2.2.0': dependencies: - "@smithy/types": 2.12.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/middleware-stack@3.0.4": + '@smithy/middleware-stack@3.0.4': dependencies: - "@smithy/types": 3.4.0 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/node-config-provider@2.3.0": + '@smithy/node-config-provider@2.3.0': dependencies: - "@smithy/property-provider": 2.2.0 - "@smithy/shared-ini-file-loader": 2.4.0 - "@smithy/types": 2.12.0 + '@smithy/property-provider': 2.2.0 + '@smithy/shared-ini-file-loader': 2.4.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/node-config-provider@3.1.5": + '@smithy/node-config-provider@3.1.5': dependencies: - "@smithy/property-provider": 3.1.4 - "@smithy/shared-ini-file-loader": 3.1.5 - "@smithy/types": 3.4.0 + '@smithy/property-provider': 3.1.4 + '@smithy/shared-ini-file-loader': 3.1.5 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/node-http-handler@2.5.0": + '@smithy/node-http-handler@2.5.0': dependencies: - "@smithy/abort-controller": 2.2.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/querystring-builder": 2.2.0 - "@smithy/types": 2.12.0 + '@smithy/abort-controller': 2.2.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/querystring-builder': 2.2.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/node-http-handler@3.2.0": + '@smithy/node-http-handler@3.2.0': dependencies: - "@smithy/abort-controller": 3.1.2 - "@smithy/protocol-http": 4.1.1 - "@smithy/querystring-builder": 3.0.4 - "@smithy/types": 3.4.0 + '@smithy/abort-controller': 3.1.2 + '@smithy/protocol-http': 4.1.1 + '@smithy/querystring-builder': 3.0.4 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/property-provider@2.2.0": + '@smithy/property-provider@2.2.0': dependencies: - "@smithy/types": 2.12.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/property-provider@3.1.4": + '@smithy/property-provider@3.1.4': dependencies: - "@smithy/types": 3.4.0 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/protocol-http@3.3.0": + '@smithy/protocol-http@3.3.0': dependencies: - "@smithy/types": 2.12.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/protocol-http@4.1.1": + '@smithy/protocol-http@4.1.1': dependencies: - "@smithy/types": 3.4.0 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/querystring-builder@2.2.0": + '@smithy/querystring-builder@2.2.0': dependencies: - "@smithy/types": 2.12.0 - "@smithy/util-uri-escape": 2.2.0 + '@smithy/types': 2.12.0 + '@smithy/util-uri-escape': 2.2.0 tslib: 2.6.2 - "@smithy/querystring-builder@3.0.4": + '@smithy/querystring-builder@3.0.4': dependencies: - "@smithy/types": 3.4.0 - "@smithy/util-uri-escape": 3.0.0 + '@smithy/types': 3.4.0 + '@smithy/util-uri-escape': 3.0.0 tslib: 2.6.2 - "@smithy/querystring-parser@2.2.0": + '@smithy/querystring-parser@2.2.0': dependencies: - "@smithy/types": 2.12.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/querystring-parser@3.0.4": + '@smithy/querystring-parser@3.0.4': dependencies: - "@smithy/types": 3.4.0 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/service-error-classification@2.1.5": + '@smithy/service-error-classification@2.1.5': dependencies: - "@smithy/types": 2.12.0 + '@smithy/types': 2.12.0 - "@smithy/service-error-classification@3.0.4": + '@smithy/service-error-classification@3.0.4': dependencies: - "@smithy/types": 3.4.0 + '@smithy/types': 3.4.0 - "@smithy/shared-ini-file-loader@2.4.0": + '@smithy/shared-ini-file-loader@2.4.0': dependencies: - "@smithy/types": 2.12.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/shared-ini-file-loader@3.1.5": + '@smithy/shared-ini-file-loader@3.1.5': dependencies: - "@smithy/types": 3.4.0 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/signature-v4@2.2.0": + '@smithy/signature-v4@2.2.0': dependencies: - "@smithy/eventstream-codec": 2.2.0 - "@smithy/is-array-buffer": 2.2.0 - "@smithy/types": 2.12.0 - "@smithy/util-hex-encoding": 2.2.0 - "@smithy/util-middleware": 2.2.0 - "@smithy/util-uri-escape": 2.2.0 - "@smithy/util-utf8": 2.3.0 + '@smithy/eventstream-codec': 2.2.0 + '@smithy/is-array-buffer': 2.2.0 + '@smithy/types': 2.12.0 + '@smithy/util-hex-encoding': 2.2.0 + '@smithy/util-middleware': 2.2.0 + '@smithy/util-uri-escape': 2.2.0 + '@smithy/util-utf8': 2.3.0 tslib: 2.6.2 - "@smithy/signature-v4@4.1.1": + '@smithy/signature-v4@4.1.1': dependencies: - "@smithy/is-array-buffer": 3.0.0 - "@smithy/protocol-http": 4.1.1 - "@smithy/types": 3.4.0 - "@smithy/util-hex-encoding": 3.0.0 - "@smithy/util-middleware": 3.0.4 - "@smithy/util-uri-escape": 3.0.0 - "@smithy/util-utf8": 3.0.0 + '@smithy/is-array-buffer': 3.0.0 + '@smithy/protocol-http': 4.1.1 + '@smithy/types': 3.4.0 + '@smithy/util-hex-encoding': 3.0.0 + '@smithy/util-middleware': 3.0.4 + '@smithy/util-uri-escape': 3.0.0 + '@smithy/util-utf8': 3.0.0 tslib: 2.6.2 - "@smithy/smithy-client@2.5.0": + '@smithy/smithy-client@2.5.0': dependencies: - "@smithy/middleware-endpoint": 2.5.0 - "@smithy/middleware-stack": 2.2.0 - "@smithy/protocol-http": 3.3.0 - "@smithy/types": 2.12.0 - "@smithy/util-stream": 2.2.0 + '@smithy/middleware-endpoint': 2.5.0 + '@smithy/middleware-stack': 2.2.0 + '@smithy/protocol-http': 3.3.0 + '@smithy/types': 2.12.0 + '@smithy/util-stream': 2.2.0 tslib: 2.6.2 - "@smithy/smithy-client@3.3.0": + '@smithy/smithy-client@3.3.0': dependencies: - "@smithy/middleware-endpoint": 3.1.1 - "@smithy/middleware-stack": 3.0.4 - "@smithy/protocol-http": 4.1.1 - "@smithy/types": 3.4.0 - "@smithy/util-stream": 3.1.4 + '@smithy/middleware-endpoint': 3.1.1 + '@smithy/middleware-stack': 3.0.4 + '@smithy/protocol-http': 4.1.1 + '@smithy/types': 3.4.0 + '@smithy/util-stream': 3.1.4 tslib: 2.6.2 - "@smithy/types@2.12.0": + '@smithy/types@2.12.0': dependencies: tslib: 2.6.2 - "@smithy/types@3.4.0": + '@smithy/types@3.4.0': dependencies: tslib: 2.6.2 - "@smithy/url-parser@2.2.0": + '@smithy/url-parser@2.2.0': dependencies: - "@smithy/querystring-parser": 2.2.0 - "@smithy/types": 2.12.0 + '@smithy/querystring-parser': 2.2.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/url-parser@3.0.4": + '@smithy/url-parser@3.0.4': dependencies: - "@smithy/querystring-parser": 3.0.4 - "@smithy/types": 3.4.0 + '@smithy/querystring-parser': 3.0.4 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/util-base64@2.3.0": + '@smithy/util-base64@2.3.0': dependencies: - "@smithy/util-buffer-from": 2.2.0 - "@smithy/util-utf8": 2.3.0 + '@smithy/util-buffer-from': 2.2.0 + '@smithy/util-utf8': 2.3.0 tslib: 2.6.2 - "@smithy/util-base64@3.0.0": + '@smithy/util-base64@3.0.0': dependencies: - "@smithy/util-buffer-from": 3.0.0 - "@smithy/util-utf8": 3.0.0 + '@smithy/util-buffer-from': 3.0.0 + '@smithy/util-utf8': 3.0.0 tslib: 2.6.2 - "@smithy/util-body-length-browser@2.2.0": + '@smithy/util-body-length-browser@2.2.0': dependencies: tslib: 2.6.2 - "@smithy/util-body-length-browser@3.0.0": + '@smithy/util-body-length-browser@3.0.0': dependencies: tslib: 2.6.2 - "@smithy/util-body-length-node@2.3.0": + '@smithy/util-body-length-node@2.3.0': dependencies: tslib: 2.6.2 - "@smithy/util-body-length-node@3.0.0": + '@smithy/util-body-length-node@3.0.0': dependencies: tslib: 2.6.2 - "@smithy/util-buffer-from@2.2.0": + '@smithy/util-buffer-from@2.2.0': dependencies: - "@smithy/is-array-buffer": 2.2.0 + '@smithy/is-array-buffer': 2.2.0 tslib: 2.6.2 - "@smithy/util-buffer-from@3.0.0": + '@smithy/util-buffer-from@3.0.0': dependencies: - "@smithy/is-array-buffer": 3.0.0 + '@smithy/is-array-buffer': 3.0.0 tslib: 2.6.2 - "@smithy/util-config-provider@2.3.0": + '@smithy/util-config-provider@2.3.0': dependencies: tslib: 2.6.2 - "@smithy/util-config-provider@3.0.0": + '@smithy/util-config-provider@3.0.0': dependencies: tslib: 2.6.2 - "@smithy/util-defaults-mode-browser@2.2.0": + '@smithy/util-defaults-mode-browser@2.2.0': dependencies: - "@smithy/property-provider": 2.2.0 - "@smithy/smithy-client": 2.5.0 - "@smithy/types": 2.12.0 + '@smithy/property-provider': 2.2.0 + '@smithy/smithy-client': 2.5.0 + '@smithy/types': 2.12.0 bowser: 2.11.0 tslib: 2.6.2 - "@smithy/util-defaults-mode-browser@3.0.16": + '@smithy/util-defaults-mode-browser@3.0.16': dependencies: - "@smithy/property-provider": 3.1.4 - "@smithy/smithy-client": 3.3.0 - "@smithy/types": 3.4.0 + '@smithy/property-provider': 3.1.4 + '@smithy/smithy-client': 3.3.0 + '@smithy/types': 3.4.0 bowser: 2.11.0 tslib: 2.6.2 - "@smithy/util-defaults-mode-node@2.3.0": + '@smithy/util-defaults-mode-node@2.3.0': dependencies: - "@smithy/config-resolver": 2.2.0 - "@smithy/credential-provider-imds": 2.3.0 - "@smithy/node-config-provider": 2.3.0 - "@smithy/property-provider": 2.2.0 - "@smithy/smithy-client": 2.5.0 - "@smithy/types": 2.12.0 + '@smithy/config-resolver': 2.2.0 + '@smithy/credential-provider-imds': 2.3.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/property-provider': 2.2.0 + '@smithy/smithy-client': 2.5.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/util-defaults-mode-node@3.0.16": + '@smithy/util-defaults-mode-node@3.0.16': dependencies: - "@smithy/config-resolver": 3.0.6 - "@smithy/credential-provider-imds": 3.2.1 - "@smithy/node-config-provider": 3.1.5 - "@smithy/property-provider": 3.1.4 - "@smithy/smithy-client": 3.3.0 - "@smithy/types": 3.4.0 + '@smithy/config-resolver': 3.0.6 + '@smithy/credential-provider-imds': 3.2.1 + '@smithy/node-config-provider': 3.1.5 + '@smithy/property-provider': 3.1.4 + '@smithy/smithy-client': 3.3.0 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/util-endpoints@1.2.0": + '@smithy/util-endpoints@1.2.0': dependencies: - "@smithy/node-config-provider": 2.3.0 - "@smithy/types": 2.12.0 + '@smithy/node-config-provider': 2.3.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/util-endpoints@2.1.0": + '@smithy/util-endpoints@2.1.0': dependencies: - "@smithy/node-config-provider": 3.1.5 - "@smithy/types": 3.4.0 + '@smithy/node-config-provider': 3.1.5 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/util-hex-encoding@2.2.0": + '@smithy/util-hex-encoding@2.2.0': dependencies: tslib: 2.6.2 - "@smithy/util-hex-encoding@3.0.0": + '@smithy/util-hex-encoding@3.0.0': dependencies: tslib: 2.6.2 - "@smithy/util-middleware@2.2.0": + '@smithy/util-middleware@2.2.0': dependencies: - "@smithy/types": 2.12.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/util-middleware@3.0.4": + '@smithy/util-middleware@3.0.4': dependencies: - "@smithy/types": 3.4.0 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/util-retry@2.2.0": + '@smithy/util-retry@2.2.0': dependencies: - "@smithy/service-error-classification": 2.1.5 - "@smithy/types": 2.12.0 + '@smithy/service-error-classification': 2.1.5 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/util-retry@3.0.4": + '@smithy/util-retry@3.0.4': dependencies: - "@smithy/service-error-classification": 3.0.4 - "@smithy/types": 3.4.0 + '@smithy/service-error-classification': 3.0.4 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@smithy/util-stream@2.2.0": + '@smithy/util-stream@2.2.0': dependencies: - "@smithy/fetch-http-handler": 2.5.0 - "@smithy/node-http-handler": 2.5.0 - "@smithy/types": 2.12.0 - "@smithy/util-base64": 2.3.0 - "@smithy/util-buffer-from": 2.2.0 - "@smithy/util-hex-encoding": 2.2.0 - "@smithy/util-utf8": 2.3.0 + '@smithy/fetch-http-handler': 2.5.0 + '@smithy/node-http-handler': 2.5.0 + '@smithy/types': 2.12.0 + '@smithy/util-base64': 2.3.0 + '@smithy/util-buffer-from': 2.2.0 + '@smithy/util-hex-encoding': 2.2.0 + '@smithy/util-utf8': 2.3.0 tslib: 2.6.2 - "@smithy/util-stream@3.1.4": + '@smithy/util-stream@3.1.4': dependencies: - "@smithy/fetch-http-handler": 3.2.5 - "@smithy/node-http-handler": 3.2.0 - "@smithy/types": 3.4.0 - "@smithy/util-base64": 3.0.0 - "@smithy/util-buffer-from": 3.0.0 - "@smithy/util-hex-encoding": 3.0.0 - "@smithy/util-utf8": 3.0.0 + '@smithy/fetch-http-handler': 3.2.5 + '@smithy/node-http-handler': 3.2.0 + '@smithy/types': 3.4.0 + '@smithy/util-base64': 3.0.0 + '@smithy/util-buffer-from': 3.0.0 + '@smithy/util-hex-encoding': 3.0.0 + '@smithy/util-utf8': 3.0.0 tslib: 2.6.2 - "@smithy/util-uri-escape@2.2.0": + '@smithy/util-uri-escape@2.2.0': dependencies: tslib: 2.6.2 - "@smithy/util-uri-escape@3.0.0": + '@smithy/util-uri-escape@3.0.0': dependencies: tslib: 2.6.2 - "@smithy/util-utf8@2.3.0": + '@smithy/util-utf8@2.3.0': dependencies: - "@smithy/util-buffer-from": 2.2.0 + '@smithy/util-buffer-from': 2.2.0 tslib: 2.6.2 - "@smithy/util-utf8@3.0.0": + '@smithy/util-utf8@3.0.0': dependencies: - "@smithy/util-buffer-from": 3.0.0 + '@smithy/util-buffer-from': 3.0.0 tslib: 2.6.2 - "@smithy/util-waiter@2.2.0": + '@smithy/util-waiter@2.2.0': dependencies: - "@smithy/abort-controller": 2.2.0 - "@smithy/types": 2.12.0 + '@smithy/abort-controller': 2.2.0 + '@smithy/types': 2.12.0 tslib: 2.6.2 - "@smithy/util-waiter@3.1.3": + '@smithy/util-waiter@3.1.3': dependencies: - "@smithy/abort-controller": 3.1.2 - "@smithy/types": 3.4.0 + '@smithy/abort-controller': 3.1.2 + '@smithy/types': 3.4.0 tslib: 2.6.2 - "@soda/friendly-errors-webpack-plugin@1.8.1(webpack@5.94.0)": + '@soda/friendly-errors-webpack-plugin@1.8.1(webpack@5.94.0)': dependencies: chalk: 3.0.0 error-stack-parser: 2.1.4 @@ -57119,12 +40844,12 @@ snapshots: strip-ansi: 6.0.1 webpack: 5.94.0 - "@soda/get-current-script@1.0.2": {} + '@soda/get-current-script@1.0.2': {} - "@solana/buffer-layout-utils@0.2.0": + '@solana/buffer-layout-utils@0.2.0': dependencies: - "@solana/buffer-layout": 4.0.1 - "@solana/web3.js": 1.77.3 + '@solana/buffer-layout': 4.0.1 + '@solana/web3.js': 1.77.3 bigint-buffer: 1.1.5 bignumber.js: 9.1.2 transitivePeerDependencies: @@ -57132,27 +40857,27 @@ snapshots: - encoding - utf-8-validate - "@solana/buffer-layout@4.0.1": + '@solana/buffer-layout@4.0.1': dependencies: buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) - "@solana/spl-token@0.3.8(@solana/web3.js@1.77.3)": + '@solana/spl-token@0.3.8(@solana/web3.js@1.77.3)': dependencies: - "@solana/buffer-layout": 4.0.1 - "@solana/buffer-layout-utils": 0.2.0 - "@solana/web3.js": 1.77.3 + '@solana/buffer-layout': 4.0.1 + '@solana/buffer-layout-utils': 0.2.0 + '@solana/web3.js': 1.77.3 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) transitivePeerDependencies: - bufferutil - encoding - utf-8-validate - "@solana/web3.js@1.77.3": + '@solana/web3.js@1.77.3': dependencies: - "@babel/runtime": 7.24.1 - "@noble/curves": 1.4.0 - "@noble/hashes": 1.4.0 - "@solana/buffer-layout": 4.0.1 + '@babel/runtime': 7.24.1 + '@noble/curves': 1.4.0 + '@noble/hashes': 1.4.0 + '@solana/buffer-layout': 4.0.1 agentkeepalive: 4.5.0 bigint-buffer: 1.1.5 bn.js: 5.2.1 @@ -57169,72 +40894,72 @@ snapshots: - encoding - utf-8-validate - "@stablelib/binary@1.0.1": + '@stablelib/binary@1.0.1': dependencies: - "@stablelib/int": 1.0.1 + '@stablelib/int': 1.0.1 - "@stablelib/blake2b@1.0.1": + '@stablelib/blake2b@1.0.1': dependencies: - "@stablelib/binary": 1.0.1 - "@stablelib/hash": 1.0.1 - "@stablelib/wipe": 1.0.1 + '@stablelib/binary': 1.0.1 + '@stablelib/hash': 1.0.1 + '@stablelib/wipe': 1.0.1 - "@stablelib/ed25519@1.0.3": + '@stablelib/ed25519@1.0.3': dependencies: - "@stablelib/random": 1.0.2 - "@stablelib/sha512": 1.0.1 - "@stablelib/wipe": 1.0.1 + '@stablelib/random': 1.0.2 + '@stablelib/sha512': 1.0.1 + '@stablelib/wipe': 1.0.1 - "@stablelib/hash@1.0.1": {} + '@stablelib/hash@1.0.1': {} - "@stablelib/int@1.0.1": {} + '@stablelib/int@1.0.1': {} - "@stablelib/random@1.0.2": + '@stablelib/random@1.0.2': dependencies: - "@stablelib/binary": 1.0.1 - "@stablelib/wipe": 1.0.1 + '@stablelib/binary': 1.0.1 + '@stablelib/wipe': 1.0.1 - "@stablelib/sha512@1.0.1": + '@stablelib/sha512@1.0.1': dependencies: - "@stablelib/binary": 1.0.1 - "@stablelib/hash": 1.0.1 - "@stablelib/wipe": 1.0.1 + '@stablelib/binary': 1.0.1 + '@stablelib/hash': 1.0.1 + '@stablelib/wipe': 1.0.1 - "@stablelib/wipe@1.0.1": {} + '@stablelib/wipe@1.0.1': {} - "@stacks/common@4.3.5": + '@stacks/common@4.3.5': dependencies: - "@types/bn.js": 5.1.5 - "@types/node": 18.19.26 + '@types/bn.js': 5.1.5 + '@types/node': 18.19.26 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) - "@stacks/common@6.13.0": + '@stacks/common@6.13.0': dependencies: - "@types/bn.js": 5.1.5 - "@types/node": 18.19.26 + '@types/bn.js': 5.1.5 + '@types/node': 18.19.26 - "@stacks/network@4.3.5": + '@stacks/network@4.3.5': dependencies: - "@stacks/common": 4.3.5 + '@stacks/common': 4.3.5 cross-fetch: 3.1.8 transitivePeerDependencies: - encoding - "@stacks/network@6.10.0": + '@stacks/network@6.10.0': dependencies: - "@stacks/common": 6.13.0 + '@stacks/common': 6.13.0 cross-fetch: 3.1.8 transitivePeerDependencies: - encoding - "@stacks/transactions@4.3.8": + '@stacks/transactions@4.3.8': dependencies: - "@noble/hashes": 1.4.0 - "@noble/secp256k1": 1.7.1 - "@stacks/common": 4.3.5 - "@stacks/network": 4.3.5 - "@types/node": 18.19.26 - "@types/sha.js": 2.4.4 + '@noble/hashes': 1.4.0 + '@noble/secp256k1': 1.7.1 + '@stacks/common': 4.3.5 + '@stacks/network': 4.3.5 + '@types/node': 18.19.26 + '@types/sha.js': 2.4.4 c32check: 1.1.3 lodash.clonedeep: 4.5.0 ripemd160-min: 0.0.6 @@ -57243,640 +40968,640 @@ snapshots: transitivePeerDependencies: - encoding - "@stacks/transactions@6.11.0": + '@stacks/transactions@6.11.0': dependencies: - "@noble/hashes": 1.1.5 - "@noble/secp256k1": 1.7.1 - "@stacks/common": 6.13.0 - "@stacks/network": 6.10.0 + '@noble/hashes': 1.1.5 + '@noble/secp256k1': 1.7.1 + '@stacks/common': 6.13.0 + '@stacks/network': 6.10.0 c32check: 2.0.0 lodash.clonedeep: 4.5.0 transitivePeerDependencies: - encoding - "@stdlib/array-float32@0.0.6": + '@stdlib/array-float32@0.0.6': dependencies: - "@stdlib/assert-has-float32array-support": 0.0.8 + '@stdlib/assert-has-float32array-support': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/array-float64@0.0.6": + '@stdlib/array-float64@0.0.6': dependencies: - "@stdlib/assert-has-float64array-support": 0.0.8 + '@stdlib/assert-has-float64array-support': 0.0.8 - "@stdlib/array-uint16@0.0.6": + '@stdlib/array-uint16@0.0.6': dependencies: - "@stdlib/assert-has-uint16array-support": 0.0.8 + '@stdlib/assert-has-uint16array-support': 0.0.8 - "@stdlib/array-uint32@0.0.6": + '@stdlib/array-uint32@0.0.6': dependencies: - "@stdlib/assert-has-uint32array-support": 0.0.8 + '@stdlib/assert-has-uint32array-support': 0.0.8 - "@stdlib/array-uint8@0.0.7": + '@stdlib/array-uint8@0.0.7': dependencies: - "@stdlib/assert-has-uint8array-support": 0.0.8 + '@stdlib/assert-has-uint8array-support': 0.0.8 - "@stdlib/assert-has-float32array-support@0.0.8": + '@stdlib/assert-has-float32array-support@0.0.8': dependencies: - "@stdlib/assert-is-float32array": 0.0.8 - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/constants-float64-pinf": 0.0.8 - "@stdlib/fs-read-file": 0.0.8 + '@stdlib/assert-is-float32array': 0.0.8 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/constants-float64-pinf': 0.0.8 + '@stdlib/fs-read-file': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/assert-has-float64array-support@0.0.8": + '@stdlib/assert-has-float64array-support@0.0.8': dependencies: - "@stdlib/assert-is-float64array": 0.0.8 - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/fs-read-file": 0.0.8 + '@stdlib/assert-is-float64array': 0.0.8 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/fs-read-file': 0.0.8 - "@stdlib/assert-has-node-buffer-support@0.0.8": + '@stdlib/assert-has-node-buffer-support@0.0.8': dependencies: - "@stdlib/assert-is-buffer": 0.0.8 - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/fs-read-file": 0.0.8 + '@stdlib/assert-is-buffer': 0.0.8 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/fs-read-file': 0.0.8 - "@stdlib/assert-has-own-property@0.0.7": {} + '@stdlib/assert-has-own-property@0.0.7': {} - "@stdlib/assert-has-symbol-support@0.0.8": + '@stdlib/assert-has-symbol-support@0.0.8': dependencies: - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/fs-read-file": 0.0.8 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/fs-read-file': 0.0.8 - "@stdlib/assert-has-tostringtag-support@0.0.9": + '@stdlib/assert-has-tostringtag-support@0.0.9': dependencies: - "@stdlib/assert-has-symbol-support": 0.0.8 - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/fs-read-file": 0.0.8 + '@stdlib/assert-has-symbol-support': 0.0.8 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/fs-read-file': 0.0.8 - "@stdlib/assert-has-uint16array-support@0.0.8": + '@stdlib/assert-has-uint16array-support@0.0.8': dependencies: - "@stdlib/assert-is-uint16array": 0.0.8 - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/constants-uint16-max": 0.0.7 - "@stdlib/fs-read-file": 0.0.8 + '@stdlib/assert-is-uint16array': 0.0.8 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/constants-uint16-max': 0.0.7 + '@stdlib/fs-read-file': 0.0.8 - "@stdlib/assert-has-uint32array-support@0.0.8": + '@stdlib/assert-has-uint32array-support@0.0.8': dependencies: - "@stdlib/assert-is-uint32array": 0.0.8 - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/constants-uint32-max": 0.0.7 - "@stdlib/fs-read-file": 0.0.8 + '@stdlib/assert-is-uint32array': 0.0.8 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/constants-uint32-max': 0.0.7 + '@stdlib/fs-read-file': 0.0.8 - "@stdlib/assert-has-uint8array-support@0.0.8": + '@stdlib/assert-has-uint8array-support@0.0.8': dependencies: - "@stdlib/assert-is-uint8array": 0.0.8 - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/constants-uint8-max": 0.0.7 - "@stdlib/fs-read-file": 0.0.8 + '@stdlib/assert-is-uint8array': 0.0.8 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/constants-uint8-max': 0.0.7 + '@stdlib/fs-read-file': 0.0.8 - "@stdlib/assert-is-array@0.0.7": + '@stdlib/assert-is-array@0.0.7': dependencies: - "@stdlib/utils-native-class": 0.0.8 + '@stdlib/utils-native-class': 0.0.8 - "@stdlib/assert-is-big-endian@0.0.7": + '@stdlib/assert-is-big-endian@0.0.7': dependencies: - "@stdlib/array-uint16": 0.0.6 - "@stdlib/array-uint8": 0.0.7 - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/fs-read-file": 0.0.8 + '@stdlib/array-uint16': 0.0.6 + '@stdlib/array-uint8': 0.0.7 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/fs-read-file': 0.0.8 - "@stdlib/assert-is-boolean@0.0.8": + '@stdlib/assert-is-boolean@0.0.8': dependencies: - "@stdlib/assert-has-tostringtag-support": 0.0.9 - "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 - "@stdlib/utils-native-class": 0.0.8 + '@stdlib/assert-has-tostringtag-support': 0.0.9 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 + '@stdlib/utils-native-class': 0.0.8 - "@stdlib/assert-is-buffer@0.0.8": + '@stdlib/assert-is-buffer@0.0.8': dependencies: - "@stdlib/assert-is-object-like": 0.0.8 + '@stdlib/assert-is-object-like': 0.0.8 - "@stdlib/assert-is-float32array@0.0.8": + '@stdlib/assert-is-float32array@0.0.8': dependencies: - "@stdlib/utils-native-class": 0.0.8 + '@stdlib/utils-native-class': 0.0.8 - "@stdlib/assert-is-float64array@0.0.8": + '@stdlib/assert-is-float64array@0.0.8': dependencies: - "@stdlib/utils-native-class": 0.0.8 + '@stdlib/utils-native-class': 0.0.8 - "@stdlib/assert-is-function@0.0.8": + '@stdlib/assert-is-function@0.0.8': dependencies: - "@stdlib/utils-type-of": 0.0.8 + '@stdlib/utils-type-of': 0.0.8 - "@stdlib/assert-is-little-endian@0.0.7": + '@stdlib/assert-is-little-endian@0.0.7': dependencies: - "@stdlib/array-uint16": 0.0.6 - "@stdlib/array-uint8": 0.0.7 - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/fs-read-file": 0.0.8 + '@stdlib/array-uint16': 0.0.6 + '@stdlib/array-uint8': 0.0.7 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/fs-read-file': 0.0.8 - "@stdlib/assert-is-number@0.0.7": + '@stdlib/assert-is-number@0.0.7': dependencies: - "@stdlib/assert-has-tostringtag-support": 0.0.9 - "@stdlib/number-ctor": 0.0.7 - "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 - "@stdlib/utils-native-class": 0.0.8 + '@stdlib/assert-has-tostringtag-support': 0.0.9 + '@stdlib/number-ctor': 0.0.7 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 + '@stdlib/utils-native-class': 0.0.8 - "@stdlib/assert-is-object-like@0.0.8": + '@stdlib/assert-is-object-like@0.0.8': dependencies: - "@stdlib/assert-tools-array-function": 0.0.7 - "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 + '@stdlib/assert-tools-array-function': 0.0.7 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 - "@stdlib/assert-is-object@0.0.8": + '@stdlib/assert-is-object@0.0.8': dependencies: - "@stdlib/assert-is-array": 0.0.7 + '@stdlib/assert-is-array': 0.0.7 - "@stdlib/assert-is-plain-object@0.0.7": + '@stdlib/assert-is-plain-object@0.0.7': dependencies: - "@stdlib/assert-has-own-property": 0.0.7 - "@stdlib/assert-is-function": 0.0.8 - "@stdlib/assert-is-object": 0.0.8 - "@stdlib/utils-get-prototype-of": 0.0.7 - "@stdlib/utils-native-class": 0.0.8 + '@stdlib/assert-has-own-property': 0.0.7 + '@stdlib/assert-is-function': 0.0.8 + '@stdlib/assert-is-object': 0.0.8 + '@stdlib/utils-get-prototype-of': 0.0.7 + '@stdlib/utils-native-class': 0.0.8 - "@stdlib/assert-is-regexp-string@0.0.9": + '@stdlib/assert-is-regexp-string@0.0.9': dependencies: - "@stdlib/assert-is-string": 0.0.8 - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/fs-read-file": 0.0.8 - "@stdlib/process-read-stdin": 0.0.7 - "@stdlib/regexp-eol": 0.0.7 - "@stdlib/regexp-regexp": 0.0.8 - "@stdlib/streams-node-stdin": 0.0.7 + '@stdlib/assert-is-string': 0.0.8 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/fs-read-file': 0.0.8 + '@stdlib/process-read-stdin': 0.0.7 + '@stdlib/regexp-eol': 0.0.7 + '@stdlib/regexp-regexp': 0.0.8 + '@stdlib/streams-node-stdin': 0.0.7 - "@stdlib/assert-is-regexp@0.0.7": + '@stdlib/assert-is-regexp@0.0.7': dependencies: - "@stdlib/assert-has-tostringtag-support": 0.0.9 - "@stdlib/utils-native-class": 0.0.8 + '@stdlib/assert-has-tostringtag-support': 0.0.9 + '@stdlib/utils-native-class': 0.0.8 - "@stdlib/assert-is-string@0.0.8": + '@stdlib/assert-is-string@0.0.8': dependencies: - "@stdlib/assert-has-tostringtag-support": 0.0.9 - "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 - "@stdlib/utils-native-class": 0.0.8 + '@stdlib/assert-has-tostringtag-support': 0.0.9 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 + '@stdlib/utils-native-class': 0.0.8 - "@stdlib/assert-is-uint16array@0.0.8": + '@stdlib/assert-is-uint16array@0.0.8': dependencies: - "@stdlib/utils-native-class": 0.0.8 + '@stdlib/utils-native-class': 0.0.8 - "@stdlib/assert-is-uint32array@0.0.8": + '@stdlib/assert-is-uint32array@0.0.8': dependencies: - "@stdlib/utils-native-class": 0.0.8 + '@stdlib/utils-native-class': 0.0.8 - "@stdlib/assert-is-uint8array@0.0.8": + '@stdlib/assert-is-uint8array@0.0.8': dependencies: - "@stdlib/utils-native-class": 0.0.8 + '@stdlib/utils-native-class': 0.0.8 - "@stdlib/assert-tools-array-function@0.0.7": + '@stdlib/assert-tools-array-function@0.0.7': dependencies: - "@stdlib/assert-is-array": 0.0.7 + '@stdlib/assert-is-array': 0.0.7 - "@stdlib/buffer-ctor@0.0.7": + '@stdlib/buffer-ctor@0.0.7': dependencies: - "@stdlib/assert-has-node-buffer-support": 0.0.8 + '@stdlib/assert-has-node-buffer-support': 0.0.8 - "@stdlib/buffer-from-string@0.0.8": + '@stdlib/buffer-from-string@0.0.8': dependencies: - "@stdlib/assert-is-function": 0.0.8 - "@stdlib/assert-is-string": 0.0.8 - "@stdlib/buffer-ctor": 0.0.7 - "@stdlib/string-format": 0.0.3 + '@stdlib/assert-is-function': 0.0.8 + '@stdlib/assert-is-string': 0.0.8 + '@stdlib/buffer-ctor': 0.0.7 + '@stdlib/string-format': 0.0.3 - "@stdlib/cli-ctor@0.0.3": + '@stdlib/cli-ctor@0.0.3': dependencies: - "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 - "@stdlib/utils-noop": 0.0.14 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 + '@stdlib/utils-noop': 0.0.14 minimist: 1.2.8 - "@stdlib/complex-float32@0.0.7": + '@stdlib/complex-float32@0.0.7': dependencies: - "@stdlib/assert-is-number": 0.0.7 - "@stdlib/number-float64-base-to-float32": 0.0.7 - "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 - "@stdlib/utils-define-property": 0.0.9 - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/assert-is-number': 0.0.7 + '@stdlib/number-float64-base-to-float32': 0.0.7 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 + '@stdlib/utils-define-property': 0.0.9 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/complex-float64@0.0.8": + '@stdlib/complex-float64@0.0.8': dependencies: - "@stdlib/assert-is-number": 0.0.7 - "@stdlib/complex-float32": 0.0.7 - "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 - "@stdlib/utils-define-property": 0.0.9 - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/assert-is-number': 0.0.7 + '@stdlib/complex-float32': 0.0.7 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 + '@stdlib/utils-define-property': 0.0.9 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/complex-reim@0.0.6": + '@stdlib/complex-reim@0.0.6': dependencies: - "@stdlib/array-float64": 0.0.6 - "@stdlib/complex-float64": 0.0.8 - "@stdlib/types": 0.0.14 - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/array-float64': 0.0.6 + '@stdlib/complex-float64': 0.0.8 + '@stdlib/types': 0.0.14 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/complex-reimf@0.0.1": + '@stdlib/complex-reimf@0.0.1': dependencies: - "@stdlib/array-float32": 0.0.6 - "@stdlib/complex-float32": 0.0.7 - "@stdlib/types": 0.0.14 - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/array-float32': 0.0.6 + '@stdlib/complex-float32': 0.0.7 + '@stdlib/types': 0.0.14 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/constants-float64-exponent-bias@0.0.8": + '@stdlib/constants-float64-exponent-bias@0.0.8': dependencies: - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/constants-float64-high-word-abs-mask@0.0.1": + '@stdlib/constants-float64-high-word-abs-mask@0.0.1': dependencies: - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/constants-float64-high-word-exponent-mask@0.0.8": + '@stdlib/constants-float64-high-word-exponent-mask@0.0.8': dependencies: - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/constants-float64-high-word-sign-mask@0.0.1": + '@stdlib/constants-float64-high-word-sign-mask@0.0.1': dependencies: - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/constants-float64-max-base2-exponent-subnormal@0.0.8": + '@stdlib/constants-float64-max-base2-exponent-subnormal@0.0.8': dependencies: - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/constants-float64-max-base2-exponent@0.0.8": + '@stdlib/constants-float64-max-base2-exponent@0.0.8': dependencies: - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/constants-float64-min-base2-exponent-subnormal@0.0.8": + '@stdlib/constants-float64-min-base2-exponent-subnormal@0.0.8': dependencies: - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/constants-float64-ninf@0.0.8": + '@stdlib/constants-float64-ninf@0.0.8': dependencies: - "@stdlib/number-ctor": 0.0.7 - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/number-ctor': 0.0.7 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/constants-float64-pinf@0.0.8": + '@stdlib/constants-float64-pinf@0.0.8': dependencies: - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/constants-float64-smallest-normal@0.0.8": + '@stdlib/constants-float64-smallest-normal@0.0.8': dependencies: - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/constants-uint16-max@0.0.7": {} + '@stdlib/constants-uint16-max@0.0.7': {} - "@stdlib/constants-uint32-max@0.0.7": {} + '@stdlib/constants-uint32-max@0.0.7': {} - "@stdlib/constants-uint8-max@0.0.7": {} + '@stdlib/constants-uint8-max@0.0.7': {} - "@stdlib/fs-exists@0.0.8": + '@stdlib/fs-exists@0.0.8': dependencies: - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/fs-read-file": 0.0.8 - "@stdlib/process-cwd": 0.0.8 - "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/fs-read-file': 0.0.8 + '@stdlib/process-cwd': 0.0.8 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 - "@stdlib/fs-read-file@0.0.8": + '@stdlib/fs-read-file@0.0.8': dependencies: - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 - "@stdlib/fs-resolve-parent-path@0.0.8": + '@stdlib/fs-resolve-parent-path@0.0.8': dependencies: - "@stdlib/assert-has-own-property": 0.0.7 - "@stdlib/assert-is-function": 0.0.8 - "@stdlib/assert-is-plain-object": 0.0.7 - "@stdlib/assert-is-string": 0.0.8 - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/fs-exists": 0.0.8 - "@stdlib/fs-read-file": 0.0.8 - "@stdlib/process-cwd": 0.0.8 - "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 + '@stdlib/assert-has-own-property': 0.0.7 + '@stdlib/assert-is-function': 0.0.8 + '@stdlib/assert-is-plain-object': 0.0.7 + '@stdlib/assert-is-string': 0.0.8 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/fs-exists': 0.0.8 + '@stdlib/fs-read-file': 0.0.8 + '@stdlib/process-cwd': 0.0.8 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 - "@stdlib/math-base-assert-is-infinite@0.0.9": + '@stdlib/math-base-assert-is-infinite@0.0.9': dependencies: - "@stdlib/constants-float64-ninf": 0.0.8 - "@stdlib/constants-float64-pinf": 0.0.8 - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/constants-float64-ninf': 0.0.8 + '@stdlib/constants-float64-pinf': 0.0.8 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/math-base-assert-is-nan@0.0.8": + '@stdlib/math-base-assert-is-nan@0.0.8': dependencies: - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/math-base-napi-binary@0.0.8": + '@stdlib/math-base-napi-binary@0.0.8': dependencies: - "@stdlib/complex-float32": 0.0.7 - "@stdlib/complex-float64": 0.0.8 - "@stdlib/complex-reim": 0.0.6 - "@stdlib/complex-reimf": 0.0.1 - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/complex-float32': 0.0.7 + '@stdlib/complex-float64': 0.0.8 + '@stdlib/complex-reim': 0.0.6 + '@stdlib/complex-reimf': 0.0.1 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/math-base-napi-unary@0.0.9": + '@stdlib/math-base-napi-unary@0.0.9': dependencies: - "@stdlib/complex-float32": 0.0.7 - "@stdlib/complex-float64": 0.0.8 - "@stdlib/complex-reim": 0.0.6 - "@stdlib/complex-reimf": 0.0.1 - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/complex-float32': 0.0.7 + '@stdlib/complex-float64': 0.0.8 + '@stdlib/complex-reim': 0.0.6 + '@stdlib/complex-reimf': 0.0.1 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/math-base-special-abs@0.0.6": + '@stdlib/math-base-special-abs@0.0.6': dependencies: - "@stdlib/math-base-napi-unary": 0.0.9 - "@stdlib/number-float64-base-to-words": 0.0.7 - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/math-base-napi-unary': 0.0.9 + '@stdlib/number-float64-base-to-words': 0.0.7 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/math-base-special-copysign@0.0.7": + '@stdlib/math-base-special-copysign@0.0.7': dependencies: - "@stdlib/constants-float64-high-word-abs-mask": 0.0.1 - "@stdlib/constants-float64-high-word-sign-mask": 0.0.1 - "@stdlib/math-base-napi-binary": 0.0.8 - "@stdlib/number-float64-base-from-words": 0.0.6 - "@stdlib/number-float64-base-get-high-word": 0.0.6 - "@stdlib/number-float64-base-to-words": 0.0.7 - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/constants-float64-high-word-abs-mask': 0.0.1 + '@stdlib/constants-float64-high-word-sign-mask': 0.0.1 + '@stdlib/math-base-napi-binary': 0.0.8 + '@stdlib/number-float64-base-from-words': 0.0.6 + '@stdlib/number-float64-base-get-high-word': 0.0.6 + '@stdlib/number-float64-base-to-words': 0.0.7 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/math-base-special-ldexp@0.0.5": - dependencies: - "@stdlib/constants-float64-exponent-bias": 0.0.8 - "@stdlib/constants-float64-max-base2-exponent": 0.0.8 - "@stdlib/constants-float64-max-base2-exponent-subnormal": 0.0.8 - "@stdlib/constants-float64-min-base2-exponent-subnormal": 0.0.8 - "@stdlib/constants-float64-ninf": 0.0.8 - "@stdlib/constants-float64-pinf": 0.0.8 - "@stdlib/math-base-assert-is-infinite": 0.0.9 - "@stdlib/math-base-assert-is-nan": 0.0.8 - "@stdlib/math-base-special-copysign": 0.0.7 - "@stdlib/number-float64-base-exponent": 0.0.6 - "@stdlib/number-float64-base-from-words": 0.0.6 - "@stdlib/number-float64-base-normalize": 0.0.9 - "@stdlib/number-float64-base-to-words": 0.0.7 + '@stdlib/math-base-special-ldexp@0.0.5': + dependencies: + '@stdlib/constants-float64-exponent-bias': 0.0.8 + '@stdlib/constants-float64-max-base2-exponent': 0.0.8 + '@stdlib/constants-float64-max-base2-exponent-subnormal': 0.0.8 + '@stdlib/constants-float64-min-base2-exponent-subnormal': 0.0.8 + '@stdlib/constants-float64-ninf': 0.0.8 + '@stdlib/constants-float64-pinf': 0.0.8 + '@stdlib/math-base-assert-is-infinite': 0.0.9 + '@stdlib/math-base-assert-is-nan': 0.0.8 + '@stdlib/math-base-special-copysign': 0.0.7 + '@stdlib/number-float64-base-exponent': 0.0.6 + '@stdlib/number-float64-base-from-words': 0.0.6 + '@stdlib/number-float64-base-normalize': 0.0.9 + '@stdlib/number-float64-base-to-words': 0.0.7 transitivePeerDependencies: - supports-color - "@stdlib/number-ctor@0.0.7": {} + '@stdlib/number-ctor@0.0.7': {} - "@stdlib/number-float64-base-exponent@0.0.6": + '@stdlib/number-float64-base-exponent@0.0.6': dependencies: - "@stdlib/constants-float64-exponent-bias": 0.0.8 - "@stdlib/constants-float64-high-word-exponent-mask": 0.0.8 - "@stdlib/number-float64-base-get-high-word": 0.0.6 + '@stdlib/constants-float64-exponent-bias': 0.0.8 + '@stdlib/constants-float64-high-word-exponent-mask': 0.0.8 + '@stdlib/number-float64-base-get-high-word': 0.0.6 transitivePeerDependencies: - supports-color - "@stdlib/number-float64-base-from-words@0.0.6": + '@stdlib/number-float64-base-from-words@0.0.6': dependencies: - "@stdlib/array-float64": 0.0.6 - "@stdlib/array-uint32": 0.0.6 - "@stdlib/assert-is-little-endian": 0.0.7 - "@stdlib/number-float64-base-to-words": 0.0.7 - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/array-float64': 0.0.6 + '@stdlib/array-uint32': 0.0.6 + '@stdlib/assert-is-little-endian': 0.0.7 + '@stdlib/number-float64-base-to-words': 0.0.7 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/number-float64-base-get-high-word@0.0.6": + '@stdlib/number-float64-base-get-high-word@0.0.6': dependencies: - "@stdlib/array-float64": 0.0.6 - "@stdlib/array-uint32": 0.0.6 - "@stdlib/assert-is-little-endian": 0.0.7 - "@stdlib/number-float64-base-to-words": 0.0.7 - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/array-float64': 0.0.6 + '@stdlib/array-uint32': 0.0.6 + '@stdlib/assert-is-little-endian': 0.0.7 + '@stdlib/number-float64-base-to-words': 0.0.7 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/number-float64-base-normalize@0.0.9": + '@stdlib/number-float64-base-normalize@0.0.9': dependencies: - "@stdlib/constants-float64-smallest-normal": 0.0.8 - "@stdlib/math-base-assert-is-infinite": 0.0.9 - "@stdlib/math-base-assert-is-nan": 0.0.8 - "@stdlib/math-base-special-abs": 0.0.6 - "@stdlib/types": 0.0.14 - "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/constants-float64-smallest-normal': 0.0.8 + '@stdlib/math-base-assert-is-infinite': 0.0.9 + '@stdlib/math-base-assert-is-nan': 0.0.8 + '@stdlib/math-base-special-abs': 0.0.6 + '@stdlib/types': 0.0.14 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/number-float64-base-to-float32@0.0.7": + '@stdlib/number-float64-base-to-float32@0.0.7': dependencies: - "@stdlib/array-float32": 0.0.6 + '@stdlib/array-float32': 0.0.6 transitivePeerDependencies: - supports-color - "@stdlib/number-float64-base-to-words@0.0.7": + '@stdlib/number-float64-base-to-words@0.0.7': dependencies: - "@stdlib/array-float64": 0.0.6 - "@stdlib/array-uint32": 0.0.6 - "@stdlib/assert-is-little-endian": 0.0.7 - "@stdlib/os-byte-order": 0.0.7 - "@stdlib/os-float-word-order": 0.0.7 - "@stdlib/types": 0.0.14 - "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/array-float64': 0.0.6 + '@stdlib/array-uint32': 0.0.6 + '@stdlib/assert-is-little-endian': 0.0.7 + '@stdlib/os-byte-order': 0.0.7 + '@stdlib/os-float-word-order': 0.0.7 + '@stdlib/types': 0.0.14 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/os-byte-order@0.0.7": + '@stdlib/os-byte-order@0.0.7': dependencies: - "@stdlib/assert-is-big-endian": 0.0.7 - "@stdlib/assert-is-little-endian": 0.0.7 - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/fs-read-file": 0.0.8 - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/assert-is-big-endian': 0.0.7 + '@stdlib/assert-is-little-endian': 0.0.7 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/fs-read-file': 0.0.8 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/os-float-word-order@0.0.7": + '@stdlib/os-float-word-order@0.0.7': dependencies: - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/fs-read-file": 0.0.8 - "@stdlib/os-byte-order": 0.0.7 - "@stdlib/utils-library-manifest": 0.0.8 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/fs-read-file': 0.0.8 + '@stdlib/os-byte-order': 0.0.7 + '@stdlib/utils-library-manifest': 0.0.8 transitivePeerDependencies: - supports-color - "@stdlib/process-cwd@0.0.8": + '@stdlib/process-cwd@0.0.8': dependencies: - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/fs-read-file": 0.0.8 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/fs-read-file': 0.0.8 - "@stdlib/process-read-stdin@0.0.7": + '@stdlib/process-read-stdin@0.0.7': dependencies: - "@stdlib/assert-is-function": 0.0.8 - "@stdlib/assert-is-string": 0.0.8 - "@stdlib/buffer-ctor": 0.0.7 - "@stdlib/buffer-from-string": 0.0.8 - "@stdlib/streams-node-stdin": 0.0.7 - "@stdlib/utils-next-tick": 0.0.8 + '@stdlib/assert-is-function': 0.0.8 + '@stdlib/assert-is-string': 0.0.8 + '@stdlib/buffer-ctor': 0.0.7 + '@stdlib/buffer-from-string': 0.0.8 + '@stdlib/streams-node-stdin': 0.0.7 + '@stdlib/utils-next-tick': 0.0.8 - "@stdlib/regexp-eol@0.0.7": + '@stdlib/regexp-eol@0.0.7': dependencies: - "@stdlib/assert-has-own-property": 0.0.7 - "@stdlib/assert-is-boolean": 0.0.8 - "@stdlib/assert-is-plain-object": 0.0.7 - "@stdlib/assert-is-string": 0.0.8 - "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 + '@stdlib/assert-has-own-property': 0.0.7 + '@stdlib/assert-is-boolean': 0.0.8 + '@stdlib/assert-is-plain-object': 0.0.7 + '@stdlib/assert-is-string': 0.0.8 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 - "@stdlib/regexp-extended-length-path@0.0.7": + '@stdlib/regexp-extended-length-path@0.0.7': dependencies: - "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 - "@stdlib/regexp-function-name@0.0.7": + '@stdlib/regexp-function-name@0.0.7': dependencies: - "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 - "@stdlib/regexp-regexp@0.0.8": + '@stdlib/regexp-regexp@0.0.8': dependencies: - "@stdlib/utils-define-nonenumerable-read-only-property": 0.0.7 + '@stdlib/utils-define-nonenumerable-read-only-property': 0.0.7 - "@stdlib/streams-node-stdin@0.0.7": {} + '@stdlib/streams-node-stdin@0.0.7': {} - "@stdlib/string-base-format-interpolate@0.0.4": {} + '@stdlib/string-base-format-interpolate@0.0.4': {} - "@stdlib/string-base-format-tokenize@0.0.4": {} + '@stdlib/string-base-format-tokenize@0.0.4': {} - "@stdlib/string-format@0.0.3": + '@stdlib/string-format@0.0.3': dependencies: - "@stdlib/string-base-format-interpolate": 0.0.4 - "@stdlib/string-base-format-tokenize": 0.0.4 + '@stdlib/string-base-format-interpolate': 0.0.4 + '@stdlib/string-base-format-tokenize': 0.0.4 - "@stdlib/string-lowercase@0.0.9": + '@stdlib/string-lowercase@0.0.9': dependencies: - "@stdlib/assert-is-string": 0.0.8 - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/fs-read-file": 0.0.8 - "@stdlib/process-read-stdin": 0.0.7 - "@stdlib/streams-node-stdin": 0.0.7 - "@stdlib/string-format": 0.0.3 + '@stdlib/assert-is-string': 0.0.8 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/fs-read-file': 0.0.8 + '@stdlib/process-read-stdin': 0.0.7 + '@stdlib/streams-node-stdin': 0.0.7 + '@stdlib/string-format': 0.0.3 - "@stdlib/string-replace@0.0.11": + '@stdlib/string-replace@0.0.11': dependencies: - "@stdlib/assert-is-function": 0.0.8 - "@stdlib/assert-is-regexp": 0.0.7 - "@stdlib/assert-is-regexp-string": 0.0.9 - "@stdlib/assert-is-string": 0.0.8 - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/fs-read-file": 0.0.8 - "@stdlib/process-read-stdin": 0.0.7 - "@stdlib/regexp-eol": 0.0.7 - "@stdlib/streams-node-stdin": 0.0.7 - "@stdlib/string-format": 0.0.3 - "@stdlib/utils-escape-regexp-string": 0.0.9 - "@stdlib/utils-regexp-from-string": 0.0.9 + '@stdlib/assert-is-function': 0.0.8 + '@stdlib/assert-is-regexp': 0.0.7 + '@stdlib/assert-is-regexp-string': 0.0.9 + '@stdlib/assert-is-string': 0.0.8 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/fs-read-file': 0.0.8 + '@stdlib/process-read-stdin': 0.0.7 + '@stdlib/regexp-eol': 0.0.7 + '@stdlib/streams-node-stdin': 0.0.7 + '@stdlib/string-format': 0.0.3 + '@stdlib/utils-escape-regexp-string': 0.0.9 + '@stdlib/utils-regexp-from-string': 0.0.9 - "@stdlib/types@0.0.14": {} + '@stdlib/types@0.0.14': {} - "@stdlib/utils-constructor-name@0.0.8": + '@stdlib/utils-constructor-name@0.0.8': dependencies: - "@stdlib/assert-is-buffer": 0.0.8 - "@stdlib/regexp-function-name": 0.0.7 - "@stdlib/utils-native-class": 0.0.8 + '@stdlib/assert-is-buffer': 0.0.8 + '@stdlib/regexp-function-name': 0.0.7 + '@stdlib/utils-native-class': 0.0.8 - "@stdlib/utils-convert-path@0.0.8": + '@stdlib/utils-convert-path@0.0.8': dependencies: - "@stdlib/assert-is-string": 0.0.8 - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/fs-read-file": 0.0.8 - "@stdlib/process-read-stdin": 0.0.7 - "@stdlib/regexp-eol": 0.0.7 - "@stdlib/regexp-extended-length-path": 0.0.7 - "@stdlib/streams-node-stdin": 0.0.7 - "@stdlib/string-lowercase": 0.0.9 - "@stdlib/string-replace": 0.0.11 + '@stdlib/assert-is-string': 0.0.8 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/fs-read-file': 0.0.8 + '@stdlib/process-read-stdin': 0.0.7 + '@stdlib/regexp-eol': 0.0.7 + '@stdlib/regexp-extended-length-path': 0.0.7 + '@stdlib/streams-node-stdin': 0.0.7 + '@stdlib/string-lowercase': 0.0.9 + '@stdlib/string-replace': 0.0.11 - "@stdlib/utils-define-nonenumerable-read-only-property@0.0.7": + '@stdlib/utils-define-nonenumerable-read-only-property@0.0.7': dependencies: - "@stdlib/types": 0.0.14 - "@stdlib/utils-define-property": 0.0.9 + '@stdlib/types': 0.0.14 + '@stdlib/utils-define-property': 0.0.9 - "@stdlib/utils-define-property@0.0.9": + '@stdlib/utils-define-property@0.0.9': dependencies: - "@stdlib/types": 0.0.14 + '@stdlib/types': 0.0.14 - "@stdlib/utils-escape-regexp-string@0.0.9": + '@stdlib/utils-escape-regexp-string@0.0.9': dependencies: - "@stdlib/assert-is-string": 0.0.8 - "@stdlib/string-format": 0.0.3 + '@stdlib/assert-is-string': 0.0.8 + '@stdlib/string-format': 0.0.3 - "@stdlib/utils-get-prototype-of@0.0.7": + '@stdlib/utils-get-prototype-of@0.0.7': dependencies: - "@stdlib/assert-is-function": 0.0.8 - "@stdlib/utils-native-class": 0.0.8 + '@stdlib/assert-is-function': 0.0.8 + '@stdlib/utils-native-class': 0.0.8 - "@stdlib/utils-global@0.0.7": + '@stdlib/utils-global@0.0.7': dependencies: - "@stdlib/assert-is-boolean": 0.0.8 + '@stdlib/assert-is-boolean': 0.0.8 - "@stdlib/utils-library-manifest@0.0.8": + '@stdlib/utils-library-manifest@0.0.8': dependencies: - "@stdlib/cli-ctor": 0.0.3 - "@stdlib/fs-resolve-parent-path": 0.0.8 - "@stdlib/utils-convert-path": 0.0.8 + '@stdlib/cli-ctor': 0.0.3 + '@stdlib/fs-resolve-parent-path': 0.0.8 + '@stdlib/utils-convert-path': 0.0.8 debug: 2.6.9 resolve: 1.22.8 transitivePeerDependencies: - supports-color - "@stdlib/utils-native-class@0.0.8": + '@stdlib/utils-native-class@0.0.8': dependencies: - "@stdlib/assert-has-own-property": 0.0.7 - "@stdlib/assert-has-tostringtag-support": 0.0.9 + '@stdlib/assert-has-own-property': 0.0.7 + '@stdlib/assert-has-tostringtag-support': 0.0.9 - "@stdlib/utils-next-tick@0.0.8": {} + '@stdlib/utils-next-tick@0.0.8': {} - "@stdlib/utils-noop@0.0.14": {} + '@stdlib/utils-noop@0.0.14': {} - "@stdlib/utils-regexp-from-string@0.0.9": + '@stdlib/utils-regexp-from-string@0.0.9': dependencies: - "@stdlib/assert-is-string": 0.0.8 - "@stdlib/regexp-regexp": 0.0.8 - "@stdlib/string-format": 0.0.3 + '@stdlib/assert-is-string': 0.0.8 + '@stdlib/regexp-regexp': 0.0.8 + '@stdlib/string-format': 0.0.3 - "@stdlib/utils-type-of@0.0.8": + '@stdlib/utils-type-of@0.0.8': dependencies: - "@stdlib/utils-constructor-name": 0.0.8 - "@stdlib/utils-global": 0.0.7 + '@stdlib/utils-constructor-name': 0.0.8 + '@stdlib/utils-global': 0.0.7 - "@stellar/js-xdr@3.1.1": {} + '@stellar/js-xdr@3.1.1': {} - "@stellar/stellar-base@11.0.1": + '@stellar/stellar-base@11.0.1': dependencies: - "@stellar/js-xdr": 3.1.1 + '@stellar/js-xdr': 3.1.1 base32.js: 0.1.0 bignumber.js: 9.1.2 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) @@ -57885,9 +41610,9 @@ snapshots: optionalDependencies: sodium-native: 4.1.1 - "@stellar/stellar-sdk@11.3.0": + '@stellar/stellar-sdk@11.3.0': dependencies: - "@stellar/stellar-base": 11.0.1 + '@stellar/stellar-base': 11.0.1 axios: 1.7.7 bignumber.js: 9.1.2 eventsource: 2.0.2 @@ -57895,79 +41620,79 @@ snapshots: toml: 3.0.0 urijs: 1.19.11 - "@storybook/addon-actions@7.6.17": + '@storybook/addon-actions@7.6.17': dependencies: - "@storybook/core-events": 7.6.17 - "@storybook/global": 5.0.0 - "@types/uuid": 9.0.8 + '@storybook/core-events': 7.6.17 + '@storybook/global': 5.0.0 + '@types/uuid': 9.0.8 dequal: 2.0.3 polished: 4.3.1 uuid: 9.0.1 - "@storybook/addon-actions@7.6.20": + '@storybook/addon-actions@7.6.20': dependencies: - "@storybook/core-events": 7.6.20 - "@storybook/global": 5.0.0 - "@types/uuid": 9.0.8 + '@storybook/core-events': 7.6.20 + '@storybook/global': 5.0.0 + '@types/uuid': 9.0.8 dequal: 2.0.3 polished: 4.3.1 uuid: 9.0.1 - "@storybook/addon-backgrounds@7.6.17": + '@storybook/addon-backgrounds@7.6.17': dependencies: - "@storybook/global": 5.0.0 + '@storybook/global': 5.0.0 memoizerific: 1.11.3 ts-dedent: 2.2.0 - "@storybook/addon-backgrounds@7.6.20": + '@storybook/addon-backgrounds@7.6.20': dependencies: - "@storybook/global": 5.0.0 + '@storybook/global': 5.0.0 memoizerific: 1.11.3 ts-dedent: 2.2.0 - "@storybook/addon-controls@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/addon-controls@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/blocks": 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/blocks': 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) lodash: 4.17.21 ts-dedent: 2.2.0 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' - encoding - react - react-dom - supports-color - "@storybook/addon-controls@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/addon-controls@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/blocks": 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/blocks': 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) lodash: 4.17.21 ts-dedent: 2.2.0 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' - encoding - react - react-dom - supports-color - "@storybook/addon-docs@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@jest/transform": 29.7.0 - "@mdx-js/react": 2.3.0(@types/react@18.2.73)(react@18.2.0) - "@storybook/blocks": 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/client-logger": 7.6.17 - "@storybook/components": 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/csf-plugin": 7.6.17 - "@storybook/csf-tools": 7.6.17 - "@storybook/global": 5.0.0 - "@storybook/mdx2-csf": 1.1.0 - "@storybook/node-logger": 7.6.17 - "@storybook/postinstall": 7.6.17 - "@storybook/preview-api": 7.6.17 - "@storybook/react-dom-shim": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/theming": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/types": 7.6.17 + '@storybook/addon-docs@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@jest/transform': 29.7.0 + '@mdx-js/react': 2.3.0(@types/react@18.2.73)(react@18.2.0) + '@storybook/blocks': 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/client-logger': 7.6.17 + '@storybook/components': 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/csf-plugin': 7.6.17 + '@storybook/csf-tools': 7.6.17 + '@storybook/global': 5.0.0 + '@storybook/mdx2-csf': 1.1.0 + '@storybook/node-logger': 7.6.17 + '@storybook/postinstall': 7.6.17 + '@storybook/preview-api': 7.6.17 + '@storybook/react-dom-shim': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 7.6.17 fs-extra: 11.2.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -57975,29 +41700,29 @@ snapshots: remark-slug: 6.1.0 ts-dedent: 2.2.0 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' - encoding - metro - supports-color - "@storybook/addon-docs@7.6.20(@types/react@18.2.73)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@jest/transform": 29.7.0(metro@0.80.12) - "@mdx-js/react": 2.3.0(@types/react@18.2.73)(react@18.2.0) - "@storybook/blocks": 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/client-logger": 7.6.20 - "@storybook/components": 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/csf-plugin": 7.6.20 - "@storybook/csf-tools": 7.6.20 - "@storybook/global": 5.0.0 - "@storybook/mdx2-csf": 1.1.0 - "@storybook/node-logger": 7.6.20 - "@storybook/postinstall": 7.6.20 - "@storybook/preview-api": 7.6.20 - "@storybook/react-dom-shim": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/theming": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/types": 7.6.20 + '@storybook/addon-docs@7.6.20(@types/react@18.2.73)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@jest/transform': 29.7.0(metro@0.80.12) + '@mdx-js/react': 2.3.0(@types/react@18.2.73)(react@18.2.0) + '@storybook/blocks': 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/client-logger': 7.6.20 + '@storybook/components': 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/csf-plugin': 7.6.20 + '@storybook/csf-tools': 7.6.20 + '@storybook/global': 5.0.0 + '@storybook/mdx2-csf': 1.1.0 + '@storybook/node-logger': 7.6.20 + '@storybook/postinstall': 7.6.20 + '@storybook/preview-api': 7.6.20 + '@storybook/react-dom-shim': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/theming': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 7.6.20 fs-extra: 11.2.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -58005,131 +41730,131 @@ snapshots: remark-slug: 6.1.0 ts-dedent: 2.2.0 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' - encoding - metro - supports-color - "@storybook/addon-essentials@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@storybook/addon-actions": 7.6.17 - "@storybook/addon-backgrounds": 7.6.17 - "@storybook/addon-controls": 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/addon-docs": 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/addon-highlight": 7.6.17 - "@storybook/addon-measure": 7.6.17 - "@storybook/addon-outline": 7.6.17 - "@storybook/addon-toolbars": 7.6.17 - "@storybook/addon-viewport": 7.6.17 - "@storybook/core-common": 7.6.17 - "@storybook/manager-api": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/node-logger": 7.6.17 - "@storybook/preview-api": 7.6.17 + '@storybook/addon-essentials@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@storybook/addon-actions': 7.6.17 + '@storybook/addon-backgrounds': 7.6.17 + '@storybook/addon-controls': 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/addon-docs': 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/addon-highlight': 7.6.17 + '@storybook/addon-measure': 7.6.17 + '@storybook/addon-outline': 7.6.17 + '@storybook/addon-toolbars': 7.6.17 + '@storybook/addon-viewport': 7.6.17 + '@storybook/core-common': 7.6.17 + '@storybook/manager-api': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/node-logger': 7.6.17 + '@storybook/preview-api': 7.6.17 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' - encoding - metro - supports-color - "@storybook/addon-essentials@7.6.20(@types/react@18.2.73)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@storybook/addon-actions": 7.6.20 - "@storybook/addon-backgrounds": 7.6.20 - "@storybook/addon-controls": 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/addon-docs": 7.6.20(@types/react@18.2.73)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/addon-highlight": 7.6.20 - "@storybook/addon-measure": 7.6.20 - "@storybook/addon-outline": 7.6.20 - "@storybook/addon-toolbars": 7.6.20 - "@storybook/addon-viewport": 7.6.20 - "@storybook/core-common": 7.6.20 - "@storybook/manager-api": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/node-logger": 7.6.20 - "@storybook/preview-api": 7.6.20 + '@storybook/addon-essentials@7.6.20(@types/react@18.2.73)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@storybook/addon-actions': 7.6.20 + '@storybook/addon-backgrounds': 7.6.20 + '@storybook/addon-controls': 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/addon-docs': 7.6.20(@types/react@18.2.73)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/addon-highlight': 7.6.20 + '@storybook/addon-measure': 7.6.20 + '@storybook/addon-outline': 7.6.20 + '@storybook/addon-toolbars': 7.6.20 + '@storybook/addon-viewport': 7.6.20 + '@storybook/core-common': 7.6.20 + '@storybook/manager-api': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/node-logger': 7.6.20 + '@storybook/preview-api': 7.6.20 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) ts-dedent: 2.2.0 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' - encoding - metro - supports-color - "@storybook/addon-highlight@7.6.17": + '@storybook/addon-highlight@7.6.17': dependencies: - "@storybook/global": 5.0.0 + '@storybook/global': 5.0.0 - "@storybook/addon-highlight@7.6.20": + '@storybook/addon-highlight@7.6.20': dependencies: - "@storybook/global": 5.0.0 + '@storybook/global': 5.0.0 - "@storybook/addon-links@7.6.17(react@18.2.0)": + '@storybook/addon-links@7.6.17(react@18.2.0)': dependencies: - "@storybook/csf": 0.1.3 - "@storybook/global": 5.0.0 + '@storybook/csf': 0.1.3 + '@storybook/global': 5.0.0 ts-dedent: 2.2.0 optionalDependencies: react: 18.2.0 - "@storybook/addon-links@7.6.20(react@18.2.0)": + '@storybook/addon-links@7.6.20(react@18.2.0)': dependencies: - "@storybook/csf": 0.1.3 - "@storybook/global": 5.0.0 + '@storybook/csf': 0.1.3 + '@storybook/global': 5.0.0 ts-dedent: 2.2.0 optionalDependencies: react: 18.2.0 - "@storybook/addon-measure@7.6.17": + '@storybook/addon-measure@7.6.17': dependencies: - "@storybook/global": 5.0.0 + '@storybook/global': 5.0.0 tiny-invariant: 1.3.3 - "@storybook/addon-measure@7.6.20": + '@storybook/addon-measure@7.6.20': dependencies: - "@storybook/global": 5.0.0 + '@storybook/global': 5.0.0 tiny-invariant: 1.3.3 - "@storybook/addon-ondevice-actions@6.5.7(@storybook/addon-actions@7.6.20)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)": + '@storybook/addon-ondevice-actions@6.5.7(@storybook/addon-actions@7.6.20)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/addon-actions": 7.6.20 - "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/core-events": 6.5.16 + '@storybook/addon-actions': 7.6.20 + '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/core-events': 6.5.16 fast-deep-equal: 2.0.1 react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) transitivePeerDependencies: - react-dom - "@storybook/addon-ondevice-backgrounds@6.5.7(@emotion/native@11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)": + '@storybook/addon-ondevice-backgrounds@6.5.7(@emotion/native@11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/api": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/client-api": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/react-native-theming": 6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/api': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/client-api': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/react-native-theming': 6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) core-js: 3.36.1 prop-types: 15.8.1 react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) optionalDependencies: - "@emotion/native": 11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + '@emotion/native': 11.11.0(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) transitivePeerDependencies: - react-dom - "@storybook/addon-ondevice-controls@6.5.7(@react-native-community/datetimepicker@6.7.5)(@react-native-community/slider@4.5.0)(@storybook/addon-controls@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)": + '@storybook/addon-ondevice-controls@6.5.7(@react-native-community/datetimepicker@6.7.5)(@react-native-community/slider@4.5.0)(@storybook/addon-controls@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)': dependencies: - "@react-native-community/datetimepicker": 6.7.5 - "@react-native-community/slider": 4.5.0 - "@storybook/addon-controls": 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/client-logger": 6.5.16 - "@storybook/core-events": 6.5.16 - "@storybook/react-native-theming": 6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + '@react-native-community/datetimepicker': 6.7.5 + '@react-native-community/slider': 4.5.0 + '@storybook/addon-controls': 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/client-logger': 6.5.16 + '@storybook/core-events': 6.5.16 + '@storybook/react-native-theming': 6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) core-js: 3.36.1 deep-equal: 1.1.2 prop-types: 15.8.1 @@ -58141,34 +41866,34 @@ snapshots: transitivePeerDependencies: - react-dom - "@storybook/addon-ondevice-notes@6.5.7(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)": + '@storybook/addon-ondevice-notes@6.5.7(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/api": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/client-api": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/client-logger": 6.5.16 - "@storybook/core-events": 6.5.16 - "@storybook/react-native-theming": 6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/api': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/client-api': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/client-logger': 6.5.16 + '@storybook/core-events': 6.5.16 + '@storybook/react-native-theming': 6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) core-js: 3.36.1 prop-types: 15.8.1 react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) simple-markdown: 0.7.3(@types/react@18.2.73) transitivePeerDependencies: - - "@types/react" + - '@types/react' - react-dom - "@storybook/addon-outline@7.6.17": + '@storybook/addon-outline@7.6.17': dependencies: - "@storybook/global": 5.0.0 + '@storybook/global': 5.0.0 ts-dedent: 2.2.0 - "@storybook/addon-outline@7.6.20": + '@storybook/addon-outline@7.6.20': dependencies: - "@storybook/global": 5.0.0 + '@storybook/global': 5.0.0 ts-dedent: 2.2.0 - "@storybook/addon-react-native-web@0.0.21(babel-plugin-react-native-web@0.19.10)(metro-react-native-babel-preset@0.77.0(@babel/core@7.24.3))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(webpack@5.91.0(metro@0.80.12))": + '@storybook/addon-react-native-web@0.0.21(babel-plugin-react-native-web@0.19.10)(metro-react-native-babel-preset@0.77.0(@babel/core@7.24.3))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(webpack@5.91.0(metro@0.80.12))': dependencies: babel-plugin-react-native-web: 0.19.10 metro-react-native-babel-preset: 0.77.0(@babel/core@7.24.3) @@ -58177,52 +41902,52 @@ snapshots: react-dom: 18.2.0(react@18.2.0) webpack: 5.91.0(metro@0.80.12) - "@storybook/addon-toolbars@7.6.17": {} + '@storybook/addon-toolbars@7.6.17': {} - "@storybook/addon-toolbars@7.6.20": {} + '@storybook/addon-toolbars@7.6.20': {} - "@storybook/addon-viewport@7.6.17": + '@storybook/addon-viewport@7.6.17': dependencies: memoizerific: 1.11.3 - "@storybook/addon-viewport@7.6.20": + '@storybook/addon-viewport@7.6.20': dependencies: memoizerific: 1.11.3 - "@storybook/addons@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/addons@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/api": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/channels": 6.5.16 - "@storybook/client-logger": 6.5.16 - "@storybook/core-events": 6.5.16 - "@storybook/csf": 0.0.2--canary.4566f4d.1 - "@storybook/router": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/theming": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@types/webpack-env": 1.18.4 + '@storybook/api': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/channels': 6.5.16 + '@storybook/client-logger': 6.5.16 + '@storybook/core-events': 6.5.16 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/router': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/theming': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@types/webpack-env': 1.18.4 core-js: 3.36.1 global: 4.4.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) regenerator-runtime: 0.13.11 - "@storybook/addons@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/addons@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/manager-api": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/preview-api": 7.6.17 - "@storybook/types": 7.6.17 + '@storybook/manager-api': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/preview-api': 7.6.17 + '@storybook/types': 7.6.17 transitivePeerDependencies: - react - react-dom - "@storybook/api@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/api@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/channels": 6.5.16 - "@storybook/client-logger": 6.5.16 - "@storybook/core-events": 6.5.16 - "@storybook/csf": 0.0.2--canary.4566f4d.1 - "@storybook/router": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/semver": 7.3.2 - "@storybook/theming": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/channels': 6.5.16 + '@storybook/client-logger': 6.5.16 + '@storybook/core-events': 6.5.16 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/router': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/semver': 7.3.2 + '@storybook/theming': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) core-js: 3.36.1 fast-deep-equal: 3.1.3 global: 4.4.0 @@ -58236,20 +41961,20 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - "@storybook/blocks@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@storybook/channels": 7.6.17 - "@storybook/client-logger": 7.6.17 - "@storybook/components": 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/core-events": 7.6.17 - "@storybook/csf": 0.1.3 - "@storybook/docs-tools": 7.6.17 - "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/preview-api": 7.6.17 - "@storybook/theming": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/types": 7.6.17 - "@types/lodash": 4.17.7 + '@storybook/blocks@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@storybook/channels': 7.6.17 + '@storybook/client-logger': 7.6.17 + '@storybook/components': 7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/core-events': 7.6.17 + '@storybook/csf': 0.1.3 + '@storybook/docs-tools': 7.6.17 + '@storybook/global': 5.0.0 + '@storybook/manager-api': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/preview-api': 7.6.17 + '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 7.6.17 + '@types/lodash': 4.17.7 color-convert: 2.0.1 dequal: 2.0.3 lodash: 4.17.21 @@ -58264,25 +41989,25 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' - encoding - supports-color - "@storybook/blocks@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@storybook/channels": 7.6.20 - "@storybook/client-logger": 7.6.20 - "@storybook/components": 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/core-events": 7.6.20 - "@storybook/csf": 0.1.3 - "@storybook/docs-tools": 7.6.20 - "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/preview-api": 7.6.20 - "@storybook/theming": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/types": 7.6.20 - "@types/lodash": 4.17.7 + '@storybook/blocks@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@storybook/channels': 7.6.20 + '@storybook/client-logger': 7.6.20 + '@storybook/components': 7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/core-events': 7.6.20 + '@storybook/csf': 0.1.3 + '@storybook/docs-tools': 7.6.20 + '@storybook/global': 5.0.0 + '@storybook/manager-api': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/preview-api': 7.6.20 + '@storybook/theming': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 7.6.20 + '@types/lodash': 4.17.7 color-convert: 2.0.1 dequal: 2.0.3 lodash: 4.17.21 @@ -58297,20 +42022,20 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' - encoding - supports-color - "@storybook/builder-manager@7.6.17": + '@storybook/builder-manager@7.6.17': dependencies: - "@fal-works/esbuild-plugin-global-externals": 2.1.2 - "@storybook/core-common": 7.6.17 - "@storybook/manager": 7.6.17 - "@storybook/node-logger": 7.6.17 - "@types/ejs": 3.1.5 - "@types/find-cache-dir": 3.2.1 - "@yarnpkg/esbuild-plugin-pnp": 3.0.0-rc.15(esbuild@0.18.20) + '@fal-works/esbuild-plugin-global-externals': 2.1.2 + '@storybook/core-common': 7.6.17 + '@storybook/manager': 7.6.17 + '@storybook/node-logger': 7.6.17 + '@types/ejs': 3.1.5 + '@types/find-cache-dir': 3.2.1 + '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.20) browser-assert: 1.2.1 ejs: 3.1.9 esbuild: 0.18.20 @@ -58324,15 +42049,15 @@ snapshots: - encoding - supports-color - "@storybook/builder-manager@7.6.20": + '@storybook/builder-manager@7.6.20': dependencies: - "@fal-works/esbuild-plugin-global-externals": 2.1.2 - "@storybook/core-common": 7.6.20 - "@storybook/manager": 7.6.20 - "@storybook/node-logger": 7.6.20 - "@types/ejs": 3.1.5 - "@types/find-cache-dir": 3.2.1 - "@yarnpkg/esbuild-plugin-pnp": 3.0.0-rc.15(esbuild@0.18.20) + '@fal-works/esbuild-plugin-global-externals': 2.1.2 + '@storybook/core-common': 7.6.20 + '@storybook/manager': 7.6.20 + '@storybook/node-logger': 7.6.20 + '@types/ejs': 3.1.5 + '@types/find-cache-dir': 3.2.1 + '@yarnpkg/esbuild-plugin-pnp': 3.0.0-rc.15(esbuild@0.18.20) browser-assert: 1.2.1 ejs: 3.1.9 esbuild: 0.18.20 @@ -58346,20 +42071,20 @@ snapshots: - encoding - supports-color - "@storybook/builder-webpack5@7.6.17(esbuild@0.19.12)(typescript@5.4.3)": - dependencies: - "@babel/core": 7.24.3 - "@storybook/channels": 7.6.17 - "@storybook/client-logger": 7.6.17 - "@storybook/core-common": 7.6.17 - "@storybook/core-events": 7.6.17 - "@storybook/core-webpack": 7.6.17 - "@storybook/node-logger": 7.6.17 - "@storybook/preview": 7.6.17 - "@storybook/preview-api": 7.6.17 - "@swc/core": 1.4.11 - "@types/node": 18.19.26 - "@types/semver": 7.5.8 + '@storybook/builder-webpack5@7.6.17(esbuild@0.19.12)(typescript@5.4.3)': + dependencies: + '@babel/core': 7.24.3 + '@storybook/channels': 7.6.17 + '@storybook/client-logger': 7.6.17 + '@storybook/core-common': 7.6.17 + '@storybook/core-events': 7.6.17 + '@storybook/core-webpack': 7.6.17 + '@storybook/node-logger': 7.6.17 + '@storybook/preview': 7.6.17 + '@storybook/preview-api': 7.6.17 + '@swc/core': 1.4.11 + '@types/node': 18.19.26 + '@types/semver': 7.5.8 babel-loader: 9.1.3(@babel/core@7.24.3)(webpack@5.94.0(@swc/core@1.4.11)(esbuild@0.19.12)) browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 @@ -58389,8 +42114,8 @@ snapshots: optionalDependencies: typescript: 5.4.3 transitivePeerDependencies: - - "@rspack/core" - - "@swc/helpers" + - '@rspack/core' + - '@swc/helpers' - encoding - esbuild - metro @@ -58398,20 +42123,20 @@ snapshots: - uglify-js - webpack-cli - "@storybook/builder-webpack5@7.6.20(metro@0.80.12)(typescript@5.4.3)": - dependencies: - "@babel/core": 7.24.3 - "@storybook/channels": 7.6.20 - "@storybook/client-logger": 7.6.20 - "@storybook/core-common": 7.6.20 - "@storybook/core-events": 7.6.20 - "@storybook/core-webpack": 7.6.20 - "@storybook/node-logger": 7.6.20 - "@storybook/preview": 7.6.20 - "@storybook/preview-api": 7.6.20 - "@swc/core": 1.4.11 - "@types/node": 18.19.26 - "@types/semver": 7.5.8 + '@storybook/builder-webpack5@7.6.20(metro@0.80.12)(typescript@5.4.3)': + dependencies: + '@babel/core': 7.24.3 + '@storybook/channels': 7.6.20 + '@storybook/client-logger': 7.6.20 + '@storybook/core-common': 7.6.20 + '@storybook/core-events': 7.6.20 + '@storybook/core-webpack': 7.6.20 + '@storybook/node-logger': 7.6.20 + '@storybook/preview': 7.6.20 + '@storybook/preview-api': 7.6.20 + '@swc/core': 1.4.11 + '@types/node': 18.19.26 + '@types/semver': 7.5.8 babel-loader: 9.1.3(@babel/core@7.24.3)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)) browser-assert: 1.2.1 case-sensitive-paths-webpack-plugin: 2.4.0 @@ -58441,8 +42166,8 @@ snapshots: optionalDependencies: typescript: 5.4.3 transitivePeerDependencies: - - "@rspack/core" - - "@swc/helpers" + - '@rspack/core' + - '@swc/helpers' - encoding - esbuild - metro @@ -58450,83 +42175,83 @@ snapshots: - uglify-js - webpack-cli - "@storybook/channel-postmessage@6.5.16": + '@storybook/channel-postmessage@6.5.16': dependencies: - "@storybook/channels": 6.5.16 - "@storybook/client-logger": 6.5.16 - "@storybook/core-events": 6.5.16 + '@storybook/channels': 6.5.16 + '@storybook/client-logger': 6.5.16 + '@storybook/core-events': 6.5.16 core-js: 3.36.1 global: 4.4.0 qs: 6.12.0 telejson: 6.0.8 - "@storybook/channel-websocket@6.5.16": + '@storybook/channel-websocket@6.5.16': dependencies: - "@storybook/channels": 6.5.16 - "@storybook/client-logger": 6.5.16 + '@storybook/channels': 6.5.16 + '@storybook/client-logger': 6.5.16 core-js: 3.36.1 global: 4.4.0 telejson: 6.0.8 - "@storybook/channels@6.5.16": + '@storybook/channels@6.5.16': dependencies: core-js: 3.36.1 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - "@storybook/channels@7.5.3": + '@storybook/channels@7.5.3': dependencies: - "@storybook/client-logger": 7.5.3 - "@storybook/core-events": 7.5.3 - "@storybook/global": 5.0.0 + '@storybook/client-logger': 7.5.3 + '@storybook/core-events': 7.5.3 + '@storybook/global': 5.0.0 qs: 6.12.0 telejson: 7.2.0 tiny-invariant: 1.3.3 - "@storybook/channels@7.6.17": + '@storybook/channels@7.6.17': dependencies: - "@storybook/client-logger": 7.6.17 - "@storybook/core-events": 7.6.17 - "@storybook/global": 5.0.0 + '@storybook/client-logger': 7.6.17 + '@storybook/core-events': 7.6.17 + '@storybook/global': 5.0.0 qs: 6.12.0 telejson: 7.2.0 tiny-invariant: 1.3.3 - "@storybook/channels@7.6.18": + '@storybook/channels@7.6.18': dependencies: - "@storybook/client-logger": 7.6.18 - "@storybook/core-events": 7.6.18 - "@storybook/global": 5.0.0 + '@storybook/client-logger': 7.6.18 + '@storybook/core-events': 7.6.18 + '@storybook/global': 5.0.0 qs: 6.12.0 telejson: 7.2.0 tiny-invariant: 1.3.3 - "@storybook/channels@7.6.20": + '@storybook/channels@7.6.20': dependencies: - "@storybook/client-logger": 7.6.20 - "@storybook/core-events": 7.6.20 - "@storybook/global": 5.0.0 + '@storybook/client-logger': 7.6.20 + '@storybook/core-events': 7.6.20 + '@storybook/global': 5.0.0 qs: 6.12.0 telejson: 7.2.0 tiny-invariant: 1.3.3 - "@storybook/cli@7.6.17": - dependencies: - "@babel/core": 7.24.3 - "@babel/preset-env": 7.24.3(@babel/core@7.24.3) - "@babel/types": 7.24.0 - "@ndelangen/get-tarball": 3.0.9 - "@storybook/codemod": 7.6.17 - "@storybook/core-common": 7.6.17 - "@storybook/core-events": 7.6.17 - "@storybook/core-server": 7.6.17 - "@storybook/csf-tools": 7.6.17 - "@storybook/node-logger": 7.6.17 - "@storybook/telemetry": 7.6.17 - "@storybook/types": 7.6.17 - "@types/semver": 7.5.8 - "@yarnpkg/fslib": 2.10.3 - "@yarnpkg/libzip": 2.3.0 + '@storybook/cli@7.6.17': + dependencies: + '@babel/core': 7.24.3 + '@babel/preset-env': 7.24.3(@babel/core@7.24.3) + '@babel/types': 7.24.0 + '@ndelangen/get-tarball': 3.0.9 + '@storybook/codemod': 7.6.17 + '@storybook/core-common': 7.6.17 + '@storybook/core-events': 7.6.17 + '@storybook/core-server': 7.6.17 + '@storybook/csf-tools': 7.6.17 + '@storybook/node-logger': 7.6.17 + '@storybook/telemetry': 7.6.17 + '@storybook/types': 7.6.17 + '@types/semver': 7.5.8 + '@yarnpkg/fslib': 2.10.3 + '@yarnpkg/libzip': 2.3.0 chalk: 4.1.2 commander: 6.2.1 cross-spawn: 7.0.3 @@ -58558,23 +42283,23 @@ snapshots: - supports-color - utf-8-validate - "@storybook/cli@7.6.20": - dependencies: - "@babel/core": 7.24.3 - "@babel/preset-env": 7.24.3(@babel/core@7.24.3) - "@babel/types": 7.24.0 - "@ndelangen/get-tarball": 3.0.9 - "@storybook/codemod": 7.6.20 - "@storybook/core-common": 7.6.20 - "@storybook/core-events": 7.6.20 - "@storybook/core-server": 7.6.20 - "@storybook/csf-tools": 7.6.20 - "@storybook/node-logger": 7.6.20 - "@storybook/telemetry": 7.6.20 - "@storybook/types": 7.6.20 - "@types/semver": 7.5.8 - "@yarnpkg/fslib": 2.10.3 - "@yarnpkg/libzip": 2.3.0 + '@storybook/cli@7.6.20': + dependencies: + '@babel/core': 7.24.3 + '@babel/preset-env': 7.24.3(@babel/core@7.24.3) + '@babel/types': 7.24.0 + '@ndelangen/get-tarball': 3.0.9 + '@storybook/codemod': 7.6.20 + '@storybook/core-common': 7.6.20 + '@storybook/core-events': 7.6.20 + '@storybook/core-server': 7.6.20 + '@storybook/csf-tools': 7.6.20 + '@storybook/node-logger': 7.6.20 + '@storybook/telemetry': 7.6.20 + '@storybook/types': 7.6.20 + '@types/semver': 7.5.8 + '@yarnpkg/fslib': 2.10.3 + '@yarnpkg/libzip': 2.3.0 chalk: 4.1.2 commander: 6.2.1 cross-spawn: 7.0.3 @@ -58606,17 +42331,17 @@ snapshots: - supports-color - utf-8-validate - "@storybook/client-api@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/channel-postmessage": 6.5.16 - "@storybook/channels": 6.5.16 - "@storybook/client-logger": 6.5.16 - "@storybook/core-events": 6.5.16 - "@storybook/csf": 0.0.2--canary.4566f4d.1 - "@storybook/store": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@types/qs": 6.9.14 - "@types/webpack-env": 1.18.4 + '@storybook/client-api@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/channel-postmessage': 6.5.16 + '@storybook/channels': 6.5.16 + '@storybook/client-logger': 6.5.16 + '@storybook/core-events': 6.5.16 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/store': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@types/qs': 6.9.14 + '@types/webpack-env': 1.18.4 core-js: 3.36.1 fast-deep-equal: 3.1.3 global: 4.4.0 @@ -58631,37 +42356,37 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - "@storybook/client-logger@6.5.16": + '@storybook/client-logger@6.5.16': dependencies: core-js: 3.36.1 global: 4.4.0 - "@storybook/client-logger@7.5.3": + '@storybook/client-logger@7.5.3': dependencies: - "@storybook/global": 5.0.0 + '@storybook/global': 5.0.0 - "@storybook/client-logger@7.6.17": + '@storybook/client-logger@7.6.17': dependencies: - "@storybook/global": 5.0.0 + '@storybook/global': 5.0.0 - "@storybook/client-logger@7.6.18": + '@storybook/client-logger@7.6.18': dependencies: - "@storybook/global": 5.0.0 + '@storybook/global': 5.0.0 - "@storybook/client-logger@7.6.20": + '@storybook/client-logger@7.6.20': dependencies: - "@storybook/global": 5.0.0 + '@storybook/global': 5.0.0 - "@storybook/codemod@7.6.17": + '@storybook/codemod@7.6.17': dependencies: - "@babel/core": 7.24.3 - "@babel/preset-env": 7.24.3(@babel/core@7.24.3) - "@babel/types": 7.24.0 - "@storybook/csf": 0.1.3 - "@storybook/csf-tools": 7.6.17 - "@storybook/node-logger": 7.6.17 - "@storybook/types": 7.6.17 - "@types/cross-spawn": 6.0.6 + '@babel/core': 7.24.3 + '@babel/preset-env': 7.24.3(@babel/core@7.24.3) + '@babel/types': 7.24.0 + '@storybook/csf': 0.1.3 + '@storybook/csf-tools': 7.6.17 + '@storybook/node-logger': 7.6.17 + '@storybook/types': 7.6.17 + '@types/cross-spawn': 6.0.6 cross-spawn: 7.0.3 globby: 11.1.0 jscodeshift: 0.15.2(@babel/preset-env@7.24.3(@babel/core@7.24.3)) @@ -58671,16 +42396,16 @@ snapshots: transitivePeerDependencies: - supports-color - "@storybook/codemod@7.6.20": + '@storybook/codemod@7.6.20': dependencies: - "@babel/core": 7.24.3 - "@babel/preset-env": 7.24.3(@babel/core@7.24.3) - "@babel/types": 7.24.0 - "@storybook/csf": 0.1.3 - "@storybook/csf-tools": 7.6.20 - "@storybook/node-logger": 7.6.20 - "@storybook/types": 7.6.20 - "@types/cross-spawn": 6.0.6 + '@babel/core': 7.24.3 + '@babel/preset-env': 7.24.3(@babel/core@7.24.3) + '@babel/types': 7.24.0 + '@storybook/csf': 0.1.3 + '@storybook/csf-tools': 7.6.20 + '@storybook/node-logger': 7.6.20 + '@storybook/types': 7.6.20 + '@types/cross-spawn': 6.0.6 cross-spawn: 7.0.3 globby: 11.1.0 jscodeshift: 0.15.2(@babel/preset-env@7.24.3(@babel/core@7.24.3)) @@ -58690,11 +42415,11 @@ snapshots: transitivePeerDependencies: - supports-color - "@storybook/components@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/components@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/client-logger": 6.5.16 - "@storybook/csf": 0.0.2--canary.4566f4d.1 - "@storybook/theming": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/client-logger': 6.5.16 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/theming': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) core-js: 3.36.1 memoizerific: 1.11.3 qs: 6.12.0 @@ -58703,72 +42428,72 @@ snapshots: regenerator-runtime: 0.13.11 util-deprecate: 1.0.2 - "@storybook/components@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/components@7.6.17(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@radix-ui/react-select": 1.2.2(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-toolbar": 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/client-logger": 7.6.17 - "@storybook/csf": 0.1.3 - "@storybook/global": 5.0.0 - "@storybook/theming": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/types": 7.6.17 + '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-toolbar': 1.0.4(@types/react-dom@18.2.23(@types/react@18.2.73))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/client-logger': 7.6.17 + '@storybook/csf': 0.1.3 + '@storybook/global': 5.0.0 + '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 7.6.17 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) use-resize-observer: 9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) util-deprecate: 1.0.2 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' - "@storybook/components@7.6.17(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/components@7.6.17(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@radix-ui/react-select": 1.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-toolbar": 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/client-logger": 7.6.17 - "@storybook/csf": 0.1.3 - "@storybook/global": 5.0.0 - "@storybook/theming": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/types": 7.6.17 + '@radix-ui/react-select': 1.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-toolbar': 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/client-logger': 7.6.17 + '@storybook/csf': 0.1.3 + '@storybook/global': 5.0.0 + '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 7.6.17 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) use-resize-observer: 9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) util-deprecate: 1.0.2 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' - "@storybook/components@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/components@7.6.20(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@radix-ui/react-select": 1.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@radix-ui/react-toolbar": 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/client-logger": 7.6.20 - "@storybook/csf": 0.1.3 - "@storybook/global": 5.0.0 - "@storybook/theming": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/types": 7.6.20 + '@radix-ui/react-select': 1.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@radix-ui/react-toolbar': 1.0.4(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/client-logger': 7.6.20 + '@storybook/csf': 0.1.3 + '@storybook/global': 5.0.0 + '@storybook/theming': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 7.6.20 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) use-resize-observer: 9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) util-deprecate: 1.0.2 transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" - - "@storybook/core-client@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack@5.91.0(metro@0.80.12))": - dependencies: - "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/channel-postmessage": 6.5.16 - "@storybook/channel-websocket": 6.5.16 - "@storybook/client-api": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/client-logger": 6.5.16 - "@storybook/core-events": 6.5.16 - "@storybook/csf": 0.0.2--canary.4566f4d.1 - "@storybook/preview-web": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/store": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/ui": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + - '@types/react' + - '@types/react-dom' + + '@storybook/core-client@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack@5.91.0(metro@0.80.12))': + dependencies: + '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/channel-postmessage': 6.5.16 + '@storybook/channel-websocket': 6.5.16 + '@storybook/client-api': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/client-logger': 6.5.16 + '@storybook/core-events': 6.5.16 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/preview-web': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/store': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/ui': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 core-js: 3.36.1 @@ -58785,25 +42510,25 @@ snapshots: optionalDependencies: typescript: 5.4.3 - "@storybook/core-client@7.6.17": + '@storybook/core-client@7.6.17': dependencies: - "@storybook/client-logger": 7.6.17 - "@storybook/preview-api": 7.6.17 + '@storybook/client-logger': 7.6.17 + '@storybook/preview-api': 7.6.17 - "@storybook/core-client@7.6.20": + '@storybook/core-client@7.6.20': dependencies: - "@storybook/client-logger": 7.6.20 - "@storybook/preview-api": 7.6.20 + '@storybook/client-logger': 7.6.20 + '@storybook/preview-api': 7.6.20 - "@storybook/core-common@7.6.17": + '@storybook/core-common@7.6.17': dependencies: - "@storybook/core-events": 7.6.17 - "@storybook/node-logger": 7.6.17 - "@storybook/types": 7.6.17 - "@types/find-cache-dir": 3.2.1 - "@types/node": 18.19.26 - "@types/node-fetch": 2.6.11 - "@types/pretty-hrtime": 1.0.3 + '@storybook/core-events': 7.6.17 + '@storybook/node-logger': 7.6.17 + '@storybook/types': 7.6.17 + '@types/find-cache-dir': 3.2.1 + '@types/node': 18.19.26 + '@types/node-fetch': 2.6.11 + '@types/pretty-hrtime': 1.0.3 chalk: 4.1.2 esbuild: 0.18.20 esbuild-register: 3.5.0(esbuild@0.18.20) @@ -58824,15 +42549,15 @@ snapshots: - encoding - supports-color - "@storybook/core-common@7.6.20": + '@storybook/core-common@7.6.20': dependencies: - "@storybook/core-events": 7.6.20 - "@storybook/node-logger": 7.6.20 - "@storybook/types": 7.6.20 - "@types/find-cache-dir": 3.2.1 - "@types/node": 18.19.26 - "@types/node-fetch": 2.6.11 - "@types/pretty-hrtime": 1.0.3 + '@storybook/core-events': 7.6.20 + '@storybook/node-logger': 7.6.20 + '@storybook/types': 7.6.20 + '@types/find-cache-dir': 3.2.1 + '@types/node': 18.19.26 + '@types/node-fetch': 2.6.11 + '@types/pretty-hrtime': 1.0.3 chalk: 4.1.2 esbuild: 0.18.20 esbuild-register: 3.5.0(esbuild@0.18.20) @@ -58853,47 +42578,47 @@ snapshots: - encoding - supports-color - "@storybook/core-events@6.5.16": + '@storybook/core-events@6.5.16': dependencies: core-js: 3.36.1 - "@storybook/core-events@7.5.3": + '@storybook/core-events@7.5.3': dependencies: ts-dedent: 2.2.0 - "@storybook/core-events@7.6.17": + '@storybook/core-events@7.6.17': dependencies: ts-dedent: 2.2.0 - "@storybook/core-events@7.6.18": + '@storybook/core-events@7.6.18': dependencies: ts-dedent: 2.2.0 - "@storybook/core-events@7.6.20": + '@storybook/core-events@7.6.20': dependencies: ts-dedent: 2.2.0 - "@storybook/core-server@7.6.17": - dependencies: - "@aw-web-design/x-default-browser": 1.4.126 - "@discoveryjs/json-ext": 0.5.7 - "@storybook/builder-manager": 7.6.17 - "@storybook/channels": 7.6.17 - "@storybook/core-common": 7.6.17 - "@storybook/core-events": 7.6.17 - "@storybook/csf": 0.1.3 - "@storybook/csf-tools": 7.6.17 - "@storybook/docs-mdx": 0.1.0 - "@storybook/global": 5.0.0 - "@storybook/manager": 7.6.17 - "@storybook/node-logger": 7.6.17 - "@storybook/preview-api": 7.6.17 - "@storybook/telemetry": 7.6.17 - "@storybook/types": 7.6.17 - "@types/detect-port": 1.3.5 - "@types/node": 18.19.26 - "@types/pretty-hrtime": 1.0.3 - "@types/semver": 7.5.8 + '@storybook/core-server@7.6.17': + dependencies: + '@aw-web-design/x-default-browser': 1.4.126 + '@discoveryjs/json-ext': 0.5.7 + '@storybook/builder-manager': 7.6.17 + '@storybook/channels': 7.6.17 + '@storybook/core-common': 7.6.17 + '@storybook/core-events': 7.6.17 + '@storybook/csf': 0.1.3 + '@storybook/csf-tools': 7.6.17 + '@storybook/docs-mdx': 0.1.0 + '@storybook/global': 5.0.0 + '@storybook/manager': 7.6.17 + '@storybook/node-logger': 7.6.17 + '@storybook/preview-api': 7.6.17 + '@storybook/telemetry': 7.6.17 + '@storybook/types': 7.6.17 + '@types/detect-port': 1.3.5 + '@types/node': 18.19.26 + '@types/pretty-hrtime': 1.0.3 + '@types/semver': 7.5.8 better-opn: 3.0.2 chalk: 4.1.2 cli-table3: 0.6.4 @@ -58922,27 +42647,27 @@ snapshots: - supports-color - utf-8-validate - "@storybook/core-server@7.6.20": - dependencies: - "@aw-web-design/x-default-browser": 1.4.126 - "@discoveryjs/json-ext": 0.5.7 - "@storybook/builder-manager": 7.6.20 - "@storybook/channels": 7.6.20 - "@storybook/core-common": 7.6.20 - "@storybook/core-events": 7.6.20 - "@storybook/csf": 0.1.3 - "@storybook/csf-tools": 7.6.20 - "@storybook/docs-mdx": 0.1.0 - "@storybook/global": 5.0.0 - "@storybook/manager": 7.6.20 - "@storybook/node-logger": 7.6.20 - "@storybook/preview-api": 7.6.20 - "@storybook/telemetry": 7.6.20 - "@storybook/types": 7.6.20 - "@types/detect-port": 1.3.5 - "@types/node": 18.19.26 - "@types/pretty-hrtime": 1.0.3 - "@types/semver": 7.5.8 + '@storybook/core-server@7.6.20': + dependencies: + '@aw-web-design/x-default-browser': 1.4.126 + '@discoveryjs/json-ext': 0.5.7 + '@storybook/builder-manager': 7.6.20 + '@storybook/channels': 7.6.20 + '@storybook/core-common': 7.6.20 + '@storybook/core-events': 7.6.20 + '@storybook/csf': 0.1.3 + '@storybook/csf-tools': 7.6.20 + '@storybook/docs-mdx': 0.1.0 + '@storybook/global': 5.0.0 + '@storybook/manager': 7.6.20 + '@storybook/node-logger': 7.6.20 + '@storybook/preview-api': 7.6.20 + '@storybook/telemetry': 7.6.20 + '@storybook/types': 7.6.20 + '@types/detect-port': 1.3.5 + '@types/node': 18.19.26 + '@types/pretty-hrtime': 1.0.3 + '@types/semver': 7.5.8 better-opn: 3.0.2 chalk: 4.1.2 cli-table3: 0.6.4 @@ -58970,90 +42695,90 @@ snapshots: - supports-color - utf-8-validate - "@storybook/core-webpack@7.6.17": + '@storybook/core-webpack@7.6.17': dependencies: - "@storybook/core-common": 7.6.17 - "@storybook/node-logger": 7.6.17 - "@storybook/types": 7.6.17 - "@types/node": 18.19.26 + '@storybook/core-common': 7.6.17 + '@storybook/node-logger': 7.6.17 + '@storybook/types': 7.6.17 + '@types/node': 18.19.26 ts-dedent: 2.2.0 transitivePeerDependencies: - encoding - supports-color - "@storybook/core-webpack@7.6.20": + '@storybook/core-webpack@7.6.20': dependencies: - "@storybook/core-common": 7.6.20 - "@storybook/node-logger": 7.6.20 - "@storybook/types": 7.6.20 - "@types/node": 18.19.26 + '@storybook/core-common': 7.6.20 + '@storybook/node-logger': 7.6.20 + '@storybook/types': 7.6.20 + '@types/node': 18.19.26 ts-dedent: 2.2.0 transitivePeerDependencies: - encoding - supports-color - "@storybook/csf-plugin@7.6.17": + '@storybook/csf-plugin@7.6.17': dependencies: - "@storybook/csf-tools": 7.6.17 + '@storybook/csf-tools': 7.6.17 unplugin: 1.10.0 transitivePeerDependencies: - supports-color - "@storybook/csf-plugin@7.6.20": + '@storybook/csf-plugin@7.6.20': dependencies: - "@storybook/csf-tools": 7.6.20 + '@storybook/csf-tools': 7.6.20 unplugin: 1.10.0 transitivePeerDependencies: - supports-color - "@storybook/csf-tools@7.6.17": + '@storybook/csf-tools@7.6.17': dependencies: - "@babel/generator": 7.24.1 - "@babel/parser": 7.24.1 - "@babel/traverse": 7.24.1 - "@babel/types": 7.24.0 - "@storybook/csf": 0.1.3 - "@storybook/types": 7.6.17 + '@babel/generator': 7.24.1 + '@babel/parser': 7.24.1 + '@babel/traverse': 7.24.1 + '@babel/types': 7.24.0 + '@storybook/csf': 0.1.3 + '@storybook/types': 7.6.17 fs-extra: 11.2.0 recast: 0.23.6 ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color - "@storybook/csf-tools@7.6.20": + '@storybook/csf-tools@7.6.20': dependencies: - "@babel/generator": 7.24.1 - "@babel/parser": 7.24.1 - "@babel/traverse": 7.24.1 - "@babel/types": 7.24.0 - "@storybook/csf": 0.1.3 - "@storybook/types": 7.6.20 + '@babel/generator': 7.24.1 + '@babel/parser': 7.24.1 + '@babel/traverse': 7.24.1 + '@babel/types': 7.24.0 + '@storybook/csf': 0.1.3 + '@storybook/types': 7.6.20 fs-extra: 11.2.0 recast: 0.23.6 ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color - "@storybook/csf@0.0.1": + '@storybook/csf@0.0.1': dependencies: lodash: 4.17.21 - "@storybook/csf@0.0.2--canary.4566f4d.1": + '@storybook/csf@0.0.2--canary.4566f4d.1': dependencies: lodash: 4.17.21 - "@storybook/csf@0.1.3": + '@storybook/csf@0.1.3': dependencies: type-fest: 2.19.0 - "@storybook/docs-mdx@0.1.0": {} + '@storybook/docs-mdx@0.1.0': {} - "@storybook/docs-tools@7.6.17": + '@storybook/docs-tools@7.6.17': dependencies: - "@storybook/core-common": 7.6.17 - "@storybook/preview-api": 7.6.17 - "@storybook/types": 7.6.17 - "@types/doctrine": 0.0.3 + '@storybook/core-common': 7.6.17 + '@storybook/preview-api': 7.6.17 + '@storybook/types': 7.6.17 + '@types/doctrine': 0.0.3 assert: 2.1.0 doctrine: 3.0.0 lodash: 4.17.21 @@ -59061,12 +42786,12 @@ snapshots: - encoding - supports-color - "@storybook/docs-tools@7.6.20": + '@storybook/docs-tools@7.6.20': dependencies: - "@storybook/core-common": 7.6.20 - "@storybook/preview-api": 7.6.20 - "@storybook/types": 7.6.20 - "@types/doctrine": 0.0.3 + '@storybook/core-common': 7.6.20 + '@storybook/preview-api': 7.6.20 + '@storybook/types': 7.6.20 + '@types/doctrine': 0.0.3 assert: 2.1.0 doctrine: 3.0.0 lodash: 4.17.21 @@ -59074,18 +42799,18 @@ snapshots: - encoding - supports-color - "@storybook/global@5.0.0": {} + '@storybook/global@5.0.0': {} - "@storybook/manager-api@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/manager-api@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/channels": 7.5.3 - "@storybook/client-logger": 7.5.3 - "@storybook/core-events": 7.5.3 - "@storybook/csf": 0.1.3 - "@storybook/global": 5.0.0 - "@storybook/router": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/theming": 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/types": 7.5.3 + '@storybook/channels': 7.5.3 + '@storybook/client-logger': 7.5.3 + '@storybook/core-events': 7.5.3 + '@storybook/csf': 0.1.3 + '@storybook/global': 5.0.0 + '@storybook/router': 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/theming': 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 7.5.3 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -59096,16 +42821,16 @@ snapshots: telejson: 7.2.0 ts-dedent: 2.2.0 - "@storybook/manager-api@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/manager-api@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/channels": 7.6.17 - "@storybook/client-logger": 7.6.17 - "@storybook/core-events": 7.6.17 - "@storybook/csf": 0.1.3 - "@storybook/global": 5.0.0 - "@storybook/router": 7.6.17 - "@storybook/theming": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/types": 7.6.17 + '@storybook/channels': 7.6.17 + '@storybook/client-logger': 7.6.17 + '@storybook/core-events': 7.6.17 + '@storybook/csf': 0.1.3 + '@storybook/global': 5.0.0 + '@storybook/router': 7.6.17 + '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 7.6.17 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -59116,16 +42841,16 @@ snapshots: - react - react-dom - "@storybook/manager-api@7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/manager-api@7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/channels": 7.6.18 - "@storybook/client-logger": 7.6.18 - "@storybook/core-events": 7.6.18 - "@storybook/csf": 0.1.3 - "@storybook/global": 5.0.0 - "@storybook/router": 7.6.18 - "@storybook/theming": 7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/types": 7.6.18 + '@storybook/channels': 7.6.18 + '@storybook/client-logger': 7.6.18 + '@storybook/core-events': 7.6.18 + '@storybook/csf': 0.1.3 + '@storybook/global': 5.0.0 + '@storybook/router': 7.6.18 + '@storybook/theming': 7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 7.6.18 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -59136,16 +42861,16 @@ snapshots: - react - react-dom - "@storybook/manager-api@7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/manager-api@7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/channels": 7.6.20 - "@storybook/client-logger": 7.6.20 - "@storybook/core-events": 7.6.20 - "@storybook/csf": 0.1.3 - "@storybook/global": 5.0.0 - "@storybook/router": 7.6.20 - "@storybook/theming": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/types": 7.6.20 + '@storybook/channels': 7.6.20 + '@storybook/client-logger': 7.6.20 + '@storybook/core-events': 7.6.20 + '@storybook/csf': 0.1.3 + '@storybook/global': 5.0.0 + '@storybook/router': 7.6.20 + '@storybook/theming': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 7.6.20 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -59156,32 +42881,32 @@ snapshots: - react - react-dom - "@storybook/manager@7.6.17": {} + '@storybook/manager@7.6.17': {} - "@storybook/manager@7.6.20": {} + '@storybook/manager@7.6.20': {} - "@storybook/mdx2-csf@1.1.0": {} + '@storybook/mdx2-csf@1.1.0': {} - "@storybook/node-logger@7.6.17": {} + '@storybook/node-logger@7.6.17': {} - "@storybook/node-logger@7.6.20": {} + '@storybook/node-logger@7.6.20': {} - "@storybook/postinstall@7.6.17": {} + '@storybook/postinstall@7.6.17': {} - "@storybook/postinstall@7.6.20": {} + '@storybook/postinstall@7.6.20': {} - "@storybook/preset-react-webpack@7.6.17(@babel/core@7.24.3)(esbuild@0.19.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)": + '@storybook/preset-react-webpack@7.6.17(@babel/core@7.24.3)(esbuild@0.19.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)': dependencies: - "@babel/preset-flow": 7.24.1(@babel/core@7.24.3) - "@babel/preset-react": 7.24.1(@babel/core@7.24.3) - "@pmmmwh/react-refresh-webpack-plugin": 0.5.11(react-refresh@0.14.2)(webpack@5.94.0(esbuild@0.19.12)) - "@storybook/core-webpack": 7.6.17 - "@storybook/docs-tools": 7.6.17 - "@storybook/node-logger": 7.6.17 - "@storybook/react": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) - "@storybook/react-docgen-typescript-plugin": 1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.94.0(esbuild@0.19.12)) - "@types/node": 18.19.26 - "@types/semver": 7.5.8 + '@babel/preset-flow': 7.24.1(@babel/core@7.24.3) + '@babel/preset-react': 7.24.1(@babel/core@7.24.3) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.2)(webpack@5.94.0(esbuild@0.19.12)) + '@storybook/core-webpack': 7.6.17 + '@storybook/docs-tools': 7.6.17 + '@storybook/node-logger': 7.6.17 + '@storybook/react': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) + '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.94.0(esbuild@0.19.12)) + '@types/node': 18.19.26 + '@types/semver': 7.5.8 babel-plugin-add-react-displayname: 0.0.5 fs-extra: 11.2.0 magic-string: 0.30.8 @@ -59192,11 +42917,11 @@ snapshots: semver: 7.6.3 webpack: 5.94.0(esbuild@0.19.12) optionalDependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 typescript: 5.4.3 transitivePeerDependencies: - - "@swc/core" - - "@types/webpack" + - '@swc/core' + - '@types/webpack' - encoding - esbuild - metro @@ -59209,18 +42934,18 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - "@storybook/preset-react-webpack@7.6.20(@babel/core@7.24.3)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12)))": - dependencies: - "@babel/preset-flow": 7.24.1(@babel/core@7.24.3) - "@babel/preset-react": 7.24.1(@babel/core@7.24.3) - "@pmmmwh/react-refresh-webpack-plugin": 0.5.11(react-refresh@0.14.2)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12)))(webpack@5.94.0(metro@0.80.12)) - "@storybook/core-webpack": 7.6.20 - "@storybook/docs-tools": 7.6.20 - "@storybook/node-logger": 7.6.20 - "@storybook/react": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) - "@storybook/react-docgen-typescript-plugin": 1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.94.0(metro@0.80.12)) - "@types/node": 18.19.26 - "@types/semver": 7.5.8 + '@storybook/preset-react-webpack@7.6.20(@babel/core@7.24.3)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12)))': + dependencies: + '@babel/preset-flow': 7.24.1(@babel/core@7.24.3) + '@babel/preset-react': 7.24.1(@babel/core@7.24.3) + '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.2)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12)))(webpack@5.94.0(metro@0.80.12)) + '@storybook/core-webpack': 7.6.20 + '@storybook/docs-tools': 7.6.20 + '@storybook/node-logger': 7.6.20 + '@storybook/react': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) + '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.94.0(metro@0.80.12)) + '@types/node': 18.19.26 + '@types/semver': 7.5.8 babel-plugin-add-react-displayname: 0.0.5 fs-extra: 11.2.0 magic-string: 0.30.8 @@ -59231,11 +42956,11 @@ snapshots: semver: 7.6.3 webpack: 5.94.0(metro@0.80.12) optionalDependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 typescript: 5.4.3 transitivePeerDependencies: - - "@swc/core" - - "@types/webpack" + - '@swc/core' + - '@types/webpack' - encoding - esbuild - metro @@ -59248,15 +42973,15 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - "@storybook/preview-api@7.6.17": + '@storybook/preview-api@7.6.17': dependencies: - "@storybook/channels": 7.6.17 - "@storybook/client-logger": 7.6.17 - "@storybook/core-events": 7.6.17 - "@storybook/csf": 0.1.3 - "@storybook/global": 5.0.0 - "@storybook/types": 7.6.17 - "@types/qs": 6.9.14 + '@storybook/channels': 7.6.17 + '@storybook/client-logger': 7.6.17 + '@storybook/core-events': 7.6.17 + '@storybook/csf': 0.1.3 + '@storybook/global': 5.0.0 + '@storybook/types': 7.6.17 + '@types/qs': 6.9.14 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -59265,15 +42990,15 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - "@storybook/preview-api@7.6.20": + '@storybook/preview-api@7.6.20': dependencies: - "@storybook/channels": 7.6.20 - "@storybook/client-logger": 7.6.20 - "@storybook/core-events": 7.6.20 - "@storybook/csf": 0.1.3 - "@storybook/global": 5.0.0 - "@storybook/types": 7.6.20 - "@types/qs": 6.9.14 + '@storybook/channels': 7.6.20 + '@storybook/client-logger': 7.6.20 + '@storybook/core-events': 7.6.20 + '@storybook/csf': 0.1.3 + '@storybook/global': 5.0.0 + '@storybook/types': 7.6.20 + '@types/qs': 6.9.14 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 @@ -59282,14 +43007,14 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - "@storybook/preview-web@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/preview-web@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/channel-postmessage": 6.5.16 - "@storybook/client-logger": 6.5.16 - "@storybook/core-events": 6.5.16 - "@storybook/csf": 0.0.2--canary.4566f4d.1 - "@storybook/store": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/channel-postmessage': 6.5.16 + '@storybook/client-logger': 6.5.16 + '@storybook/core-events': 6.5.16 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/store': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) ansi-to-html: 0.6.15 core-js: 3.36.1 global: 4.4.0 @@ -59303,11 +43028,11 @@ snapshots: unfetch: 4.2.0 util-deprecate: 1.0.2 - "@storybook/preview@7.6.17": {} + '@storybook/preview@7.6.17': {} - "@storybook/preview@7.6.20": {} + '@storybook/preview@7.6.20': {} - "@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.94.0(esbuild@0.19.12))": + '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.94.0(esbuild@0.19.12))': dependencies: debug: 4.3.4 endent: 2.1.0 @@ -59321,7 +43046,7 @@ snapshots: transitivePeerDependencies: - supports-color - "@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.94.0(metro@0.80.12))": + '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.4.3)(webpack@5.94.0(metro@0.80.12))': dependencies: debug: 4.3.4 endent: 2.1.0 @@ -59335,34 +43060,34 @@ snapshots: transitivePeerDependencies: - supports-color - "@storybook/react-dom-shim@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/react-dom-shim@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - "@storybook/react-dom-shim@7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/react-dom-shim@7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - "@storybook/react-native-theming@6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)": + '@storybook/react-native-theming@6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)': dependencies: react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) - "@storybook/react-native@6.5.7(@react-native-async-storage/async-storage@1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0)))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react-native-safe-area-context@4.10.9(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack@5.91.0(metro@0.80.12))": - dependencies: - "@react-native-async-storage/async-storage": 1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0)) - "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/channel-websocket": 6.5.16 - "@storybook/channels": 6.5.16 - "@storybook/client-api": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/client-logger": 6.5.16 - "@storybook/core-client": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack@5.91.0(metro@0.80.12)) - "@storybook/core-events": 6.5.16 - "@storybook/csf": 0.0.2--canary.4566f4d.1 - "@storybook/preview-web": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/react-native-theming": 6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + '@storybook/react-native@6.5.7(@react-native-async-storage/async-storage@1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0)))(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react-native-safe-area-context@4.10.9(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack@5.91.0(metro@0.80.12))': + dependencies: + '@react-native-async-storage/async-storage': 1.17.12(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0)) + '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/channel-websocket': 6.5.16 + '@storybook/channels': 6.5.16 + '@storybook/client-api': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/client-logger': 6.5.16 + '@storybook/core-client': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack@5.91.0(metro@0.80.12)) + '@storybook/core-events': 6.5.16 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/preview-web': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/react-native-theming': 6.5.7(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) chokidar: 3.6.0 commander: 8.3.0 deepmerge: 4.3.1 @@ -59375,27 +43100,27 @@ snapshots: react-native-swipe-gestures: 1.0.5 util: 0.12.5 transitivePeerDependencies: - - "@types/react" + - '@types/react' - react-dom - typescript - webpack - "@storybook/react-webpack5@7.6.17(@babel/core@7.24.3)(esbuild@0.19.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)": + '@storybook/react-webpack5@7.6.17(@babel/core@7.24.3)(esbuild@0.19.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)': dependencies: - "@storybook/builder-webpack5": 7.6.17(esbuild@0.19.12)(typescript@5.4.3) - "@storybook/preset-react-webpack": 7.6.17(@babel/core@7.24.3)(esbuild@0.19.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) - "@storybook/react": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) - "@types/node": 18.19.26 + '@storybook/builder-webpack5': 7.6.17(esbuild@0.19.12)(typescript@5.4.3) + '@storybook/preset-react-webpack': 7.6.17(@babel/core@7.24.3)(esbuild@0.19.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) + '@storybook/react': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) + '@types/node': 18.19.26 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 typescript: 5.4.3 transitivePeerDependencies: - - "@rspack/core" - - "@swc/core" - - "@swc/helpers" - - "@types/webpack" + - '@rspack/core' + - '@swc/core' + - '@swc/helpers' + - '@types/webpack' - encoding - esbuild - metro @@ -59408,22 +43133,22 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - "@storybook/react-webpack5@7.6.20(@babel/core@7.24.3)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12)))": + '@storybook/react-webpack5@7.6.20(@babel/core@7.24.3)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12)))': dependencies: - "@storybook/builder-webpack5": 7.6.20(metro@0.80.12)(typescript@5.4.3) - "@storybook/preset-react-webpack": 7.6.20(@babel/core@7.24.3)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12))) - "@storybook/react": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) - "@types/node": 18.19.26 + '@storybook/builder-webpack5': 7.6.20(metro@0.80.12)(typescript@5.4.3) + '@storybook/preset-react-webpack': 7.6.20(@babel/core@7.24.3)(metro@0.80.12)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)(webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12))) + '@storybook/react': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3) + '@types/node': 18.19.26 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) optionalDependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 typescript: 5.4.3 transitivePeerDependencies: - - "@rspack/core" - - "@swc/core" - - "@swc/helpers" - - "@types/webpack" + - '@rspack/core' + - '@swc/core' + - '@swc/helpers' + - '@types/webpack' - encoding - esbuild - metro @@ -59436,18 +43161,18 @@ snapshots: - webpack-hot-middleware - webpack-plugin-serve - "@storybook/react@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)": - dependencies: - "@storybook/client-logger": 7.6.17 - "@storybook/core-client": 7.6.17 - "@storybook/docs-tools": 7.6.17 - "@storybook/global": 5.0.0 - "@storybook/preview-api": 7.6.17 - "@storybook/react-dom-shim": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/types": 7.6.17 - "@types/escodegen": 0.0.6 - "@types/estree": 0.0.51 - "@types/node": 18.19.26 + '@storybook/react@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)': + dependencies: + '@storybook/client-logger': 7.6.17 + '@storybook/core-client': 7.6.17 + '@storybook/docs-tools': 7.6.17 + '@storybook/global': 5.0.0 + '@storybook/preview-api': 7.6.17 + '@storybook/react-dom-shim': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 7.6.17 + '@types/escodegen': 0.0.6 + '@types/estree': 0.0.51 + '@types/node': 18.19.26 acorn: 7.4.1 acorn-jsx: 5.3.2(acorn@7.4.1) acorn-walk: 7.2.0 @@ -59467,18 +43192,18 @@ snapshots: - encoding - supports-color - "@storybook/react@7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)": - dependencies: - "@storybook/client-logger": 7.6.20 - "@storybook/core-client": 7.6.20 - "@storybook/docs-tools": 7.6.20 - "@storybook/global": 5.0.0 - "@storybook/preview-api": 7.6.20 - "@storybook/react-dom-shim": 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/types": 7.6.20 - "@types/escodegen": 0.0.6 - "@types/estree": 0.0.51 - "@types/node": 18.19.26 + '@storybook/react@7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3)': + dependencies: + '@storybook/client-logger': 7.6.20 + '@storybook/core-client': 7.6.20 + '@storybook/docs-tools': 7.6.20 + '@storybook/global': 5.0.0 + '@storybook/preview-api': 7.6.20 + '@storybook/react-dom-shim': 7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/types': 7.6.20 + '@types/escodegen': 0.0.6 + '@types/estree': 0.0.51 + '@types/node': 18.19.26 acorn: 7.4.1 acorn-jsx: 5.3.2(acorn@7.4.1) acorn-walk: 7.2.0 @@ -59498,9 +43223,9 @@ snapshots: - encoding - supports-color - "@storybook/router@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/router@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/client-logger": 6.5.16 + '@storybook/client-logger': 6.5.16 core-js: 3.36.1 memoizerific: 1.11.3 qs: 6.12.0 @@ -59508,43 +43233,43 @@ snapshots: react-dom: 18.2.0(react@18.2.0) regenerator-runtime: 0.13.11 - "@storybook/router@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/router@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/client-logger": 7.5.3 + '@storybook/client-logger': 7.5.3 memoizerific: 1.11.3 qs: 6.12.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - "@storybook/router@7.6.17": + '@storybook/router@7.6.17': dependencies: - "@storybook/client-logger": 7.6.17 + '@storybook/client-logger': 7.6.17 memoizerific: 1.11.3 qs: 6.12.0 - "@storybook/router@7.6.18": + '@storybook/router@7.6.18': dependencies: - "@storybook/client-logger": 7.6.18 + '@storybook/client-logger': 7.6.18 memoizerific: 1.11.3 qs: 6.12.0 - "@storybook/router@7.6.20": + '@storybook/router@7.6.20': dependencies: - "@storybook/client-logger": 7.6.20 + '@storybook/client-logger': 7.6.20 memoizerific: 1.11.3 qs: 6.12.0 - "@storybook/semver@7.3.2": + '@storybook/semver@7.3.2': dependencies: core-js: 3.36.1 find-up: 4.1.0 - "@storybook/store@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/store@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/client-logger": 6.5.16 - "@storybook/core-events": 6.5.16 - "@storybook/csf": 0.0.2--canary.4566f4d.1 + '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/client-logger': 6.5.16 + '@storybook/core-events': 6.5.16 + '@storybook/csf': 0.0.2--canary.4566f4d.1 core-js: 3.36.1 fast-deep-equal: 3.1.3 global: 4.4.0 @@ -59559,11 +43284,11 @@ snapshots: ts-dedent: 2.2.0 util-deprecate: 1.0.2 - "@storybook/telemetry@7.6.17": + '@storybook/telemetry@7.6.17': dependencies: - "@storybook/client-logger": 7.6.17 - "@storybook/core-common": 7.6.17 - "@storybook/csf-tools": 7.6.17 + '@storybook/client-logger': 7.6.17 + '@storybook/core-common': 7.6.17 + '@storybook/csf-tools': 7.6.17 chalk: 4.1.2 detect-package-manager: 2.0.1 fetch-retry: 5.0.6 @@ -59573,11 +43298,11 @@ snapshots: - encoding - supports-color - "@storybook/telemetry@7.6.20": + '@storybook/telemetry@7.6.20': dependencies: - "@storybook/client-logger": 7.6.20 - "@storybook/core-common": 7.6.20 - "@storybook/csf-tools": 7.6.20 + '@storybook/client-logger': 7.6.20 + '@storybook/core-common': 7.6.20 + '@storybook/csf-tools': 7.6.20 chalk: 4.1.2 detect-package-manager: 2.0.1 fetch-retry: 5.0.6 @@ -59587,90 +43312,90 @@ snapshots: - encoding - supports-color - "@storybook/theming@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/theming@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@storybook/client-logger": 6.5.16 + '@storybook/client-logger': 6.5.16 core-js: 3.36.1 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) regenerator-runtime: 0.13.11 - "@storybook/theming@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/theming@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) - "@storybook/client-logger": 7.5.3 - "@storybook/global": 5.0.0 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) + '@storybook/client-logger': 7.5.3 + '@storybook/global': 5.0.0 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - "@storybook/theming@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/theming@7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) - "@storybook/client-logger": 7.6.17 - "@storybook/global": 5.0.0 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) + '@storybook/client-logger': 7.6.17 + '@storybook/global': 5.0.0 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - "@storybook/theming@7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/theming@7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) - "@storybook/client-logger": 7.6.18 - "@storybook/global": 5.0.0 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) + '@storybook/client-logger': 7.6.18 + '@storybook/global': 5.0.0 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - "@storybook/theming@7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@storybook/theming@7.6.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) - "@storybook/client-logger": 7.6.20 - "@storybook/global": 5.0.0 + '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) + '@storybook/client-logger': 7.6.20 + '@storybook/global': 5.0.0 memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - "@storybook/types@7.5.3": + '@storybook/types@7.5.3': dependencies: - "@storybook/channels": 7.5.3 - "@types/babel__core": 7.20.5 - "@types/express": 4.17.21 + '@storybook/channels': 7.5.3 + '@types/babel__core': 7.20.5 + '@types/express': 4.17.21 file-system-cache: 2.3.0 - "@storybook/types@7.6.17": + '@storybook/types@7.6.17': dependencies: - "@storybook/channels": 7.6.17 - "@types/babel__core": 7.20.5 - "@types/express": 4.17.21 + '@storybook/channels': 7.6.17 + '@types/babel__core': 7.20.5 + '@types/express': 4.17.21 file-system-cache: 2.3.0 - "@storybook/types@7.6.18": + '@storybook/types@7.6.18': dependencies: - "@storybook/channels": 7.6.18 - "@types/babel__core": 7.20.5 - "@types/express": 4.17.21 + '@storybook/channels': 7.6.18 + '@types/babel__core': 7.20.5 + '@types/express': 4.17.21 file-system-cache: 2.3.0 - "@storybook/types@7.6.20": + '@storybook/types@7.6.20': dependencies: - "@storybook/channels": 7.6.20 - "@types/babel__core": 7.20.5 - "@types/express": 4.17.21 + '@storybook/channels': 7.6.20 + '@types/babel__core': 7.20.5 + '@types/express': 4.17.21 file-system-cache: 2.3.0 - "@storybook/ui@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": - dependencies: - "@storybook/addons": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/api": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/channels": 6.5.16 - "@storybook/client-logger": 6.5.16 - "@storybook/components": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/core-events": 6.5.16 - "@storybook/router": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/semver": 7.3.2 - "@storybook/theming": 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/ui@6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@storybook/addons': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/api': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/channels': 6.5.16 + '@storybook/client-logger': 6.5.16 + '@storybook/components': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/core-events': 6.5.16 + '@storybook/router': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/semver': 7.3.2 + '@storybook/theming': 6.5.16(react-dom@18.2.0(react@18.2.0))(react@18.2.0) core-js: 3.36.1 memoizerific: 1.11.3 qs: 6.12.0 @@ -59679,7 +43404,7 @@ snapshots: regenerator-runtime: 0.13.11 resolve-from: 5.0.0 - "@stricahq/bip32ed25519@1.0.4": + '@stricahq/bip32ed25519@1.0.4': dependencies: blakejs: 1.2.1 bn.js: 5.2.1 @@ -59689,14 +43414,14 @@ snapshots: hash.js: 1.1.7 pbkdf2: 3.1.2 - "@stricahq/cbors@1.0.2": + '@stricahq/cbors@1.0.2': dependencies: bignumber.js: 9.1.2 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) - "@stricahq/typhonjs@2.0.0": + '@stricahq/typhonjs@2.0.0': dependencies: - "@stricahq/cbors": 1.0.2 + '@stricahq/cbors': 1.0.2 bech32: 2.0.0 bignumber.js: 9.1.2 blakejs: 1.2.1 @@ -59704,357 +43429,357 @@ snapshots: buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) lodash: 4.17.21 - "@styled-system/background@5.1.2": + '@styled-system/background@5.1.2': dependencies: - "@styled-system/core": 5.1.2 + '@styled-system/core': 5.1.2 - "@styled-system/border@5.1.5": + '@styled-system/border@5.1.5': dependencies: - "@styled-system/core": 5.1.2 + '@styled-system/core': 5.1.2 - "@styled-system/color@5.1.2": + '@styled-system/color@5.1.2': dependencies: - "@styled-system/core": 5.1.2 + '@styled-system/core': 5.1.2 - "@styled-system/core@5.1.2": + '@styled-system/core@5.1.2': dependencies: object-assign: 4.1.1 - "@styled-system/css@5.1.5": {} + '@styled-system/css@5.1.5': {} - "@styled-system/flexbox@5.1.2": + '@styled-system/flexbox@5.1.2': dependencies: - "@styled-system/core": 5.1.2 + '@styled-system/core': 5.1.2 - "@styled-system/grid@5.1.2": + '@styled-system/grid@5.1.2': dependencies: - "@styled-system/core": 5.1.2 + '@styled-system/core': 5.1.2 - "@styled-system/layout@5.1.2": + '@styled-system/layout@5.1.2': dependencies: - "@styled-system/core": 5.1.2 + '@styled-system/core': 5.1.2 - "@styled-system/position@5.1.2": + '@styled-system/position@5.1.2': dependencies: - "@styled-system/core": 5.1.2 + '@styled-system/core': 5.1.2 - "@styled-system/shadow@5.1.2": + '@styled-system/shadow@5.1.2': dependencies: - "@styled-system/core": 5.1.2 + '@styled-system/core': 5.1.2 - "@styled-system/space@5.1.2": + '@styled-system/space@5.1.2': dependencies: - "@styled-system/core": 5.1.2 + '@styled-system/core': 5.1.2 - "@styled-system/typography@5.1.2": + '@styled-system/typography@5.1.2': dependencies: - "@styled-system/core": 5.1.2 + '@styled-system/core': 5.1.2 - "@styled-system/variant@5.1.5": + '@styled-system/variant@5.1.5': dependencies: - "@styled-system/core": 5.1.2 - "@styled-system/css": 5.1.5 + '@styled-system/core': 5.1.2 + '@styled-system/css': 5.1.5 - "@substrate/connect-extension-protocol@2.0.0": + '@substrate/connect-extension-protocol@2.0.0': optional: true - "@substrate/connect-known-chains@1.1.6": + '@substrate/connect-known-chains@1.1.6': optional: true - "@substrate/connect@0.8.10": + '@substrate/connect@0.8.10': dependencies: - "@substrate/connect-extension-protocol": 2.0.0 - "@substrate/connect-known-chains": 1.1.6 - "@substrate/light-client-extension-helpers": 0.0.6(smoldot@2.0.22) + '@substrate/connect-extension-protocol': 2.0.0 + '@substrate/connect-known-chains': 1.1.6 + '@substrate/light-client-extension-helpers': 0.0.6(smoldot@2.0.22) smoldot: 2.0.22 transitivePeerDependencies: - bufferutil - utf-8-validate optional: true - "@substrate/light-client-extension-helpers@0.0.6(smoldot@2.0.22)": + '@substrate/light-client-extension-helpers@0.0.6(smoldot@2.0.22)': dependencies: - "@polkadot-api/json-rpc-provider": 0.0.1 - "@polkadot-api/json-rpc-provider-proxy": 0.0.1 - "@polkadot-api/observable-client": 0.1.0(rxjs@7.8.1) - "@polkadot-api/substrate-client": 0.0.1 - "@substrate/connect-extension-protocol": 2.0.0 - "@substrate/connect-known-chains": 1.1.6 + '@polkadot-api/json-rpc-provider': 0.0.1 + '@polkadot-api/json-rpc-provider-proxy': 0.0.1 + '@polkadot-api/observable-client': 0.1.0(rxjs@7.8.1) + '@polkadot-api/substrate-client': 0.0.1 + '@substrate/connect-extension-protocol': 2.0.0 + '@substrate/connect-known-chains': 1.1.6 rxjs: 7.8.1 smoldot: 2.0.22 optional: true - "@substrate/ss58-registry@1.47.0": {} + '@substrate/ss58-registry@1.47.0': {} - "@surma/rollup-plugin-off-main-thread@2.2.3": + '@surma/rollup-plugin-off-main-thread@2.2.3': dependencies: ejs: 3.1.9 json5: 2.2.3 magic-string: 0.25.9 string.prototype.matchall: 4.0.11 - "@svgr/babel-plugin-add-jsx-attribute@5.4.0": {} + '@svgr/babel-plugin-add-jsx-attribute@5.4.0': {} - "@svgr/babel-plugin-remove-jsx-attribute@5.4.0": {} + '@svgr/babel-plugin-remove-jsx-attribute@5.4.0': {} - "@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1": {} + '@svgr/babel-plugin-remove-jsx-empty-expression@5.0.1': {} - "@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1": {} + '@svgr/babel-plugin-replace-jsx-attribute-value@5.0.1': {} - "@svgr/babel-plugin-svg-dynamic-title@5.4.0": {} + '@svgr/babel-plugin-svg-dynamic-title@5.4.0': {} - "@svgr/babel-plugin-svg-em-dimensions@5.4.0": {} + '@svgr/babel-plugin-svg-em-dimensions@5.4.0': {} - "@svgr/babel-plugin-transform-react-native-svg@5.4.0": {} + '@svgr/babel-plugin-transform-react-native-svg@5.4.0': {} - "@svgr/babel-plugin-transform-svg-component@5.5.0": {} + '@svgr/babel-plugin-transform-svg-component@5.5.0': {} - "@svgr/babel-preset@5.5.0": + '@svgr/babel-preset@5.5.0': dependencies: - "@svgr/babel-plugin-add-jsx-attribute": 5.4.0 - "@svgr/babel-plugin-remove-jsx-attribute": 5.4.0 - "@svgr/babel-plugin-remove-jsx-empty-expression": 5.0.1 - "@svgr/babel-plugin-replace-jsx-attribute-value": 5.0.1 - "@svgr/babel-plugin-svg-dynamic-title": 5.4.0 - "@svgr/babel-plugin-svg-em-dimensions": 5.4.0 - "@svgr/babel-plugin-transform-react-native-svg": 5.4.0 - "@svgr/babel-plugin-transform-svg-component": 5.5.0 + '@svgr/babel-plugin-add-jsx-attribute': 5.4.0 + '@svgr/babel-plugin-remove-jsx-attribute': 5.4.0 + '@svgr/babel-plugin-remove-jsx-empty-expression': 5.0.1 + '@svgr/babel-plugin-replace-jsx-attribute-value': 5.0.1 + '@svgr/babel-plugin-svg-dynamic-title': 5.4.0 + '@svgr/babel-plugin-svg-em-dimensions': 5.4.0 + '@svgr/babel-plugin-transform-react-native-svg': 5.4.0 + '@svgr/babel-plugin-transform-svg-component': 5.5.0 - "@svgr/core@5.5.0": + '@svgr/core@5.5.0': dependencies: - "@svgr/plugin-jsx": 5.5.0 + '@svgr/plugin-jsx': 5.5.0 camelcase: 6.3.0 cosmiconfig: 7.1.0 transitivePeerDependencies: - supports-color - "@svgr/core@5.5.0(@svgr/plugin-svgo@5.5.0)": + '@svgr/core@5.5.0(@svgr/plugin-svgo@5.5.0)': dependencies: - "@svgr/plugin-jsx": 5.5.0 + '@svgr/plugin-jsx': 5.5.0 camelcase: 6.3.0 cosmiconfig: 7.1.0 optionalDependencies: - "@svgr/plugin-svgo": 5.5.0 + '@svgr/plugin-svgo': 5.5.0 transitivePeerDependencies: - supports-color - "@svgr/hast-util-to-babel-ast@5.5.0": + '@svgr/hast-util-to-babel-ast@5.5.0': dependencies: - "@babel/types": 7.24.0 + '@babel/types': 7.24.0 - "@svgr/plugin-jsx@5.5.0": + '@svgr/plugin-jsx@5.5.0': dependencies: - "@babel/core": 7.24.3 - "@svgr/babel-preset": 5.5.0 - "@svgr/hast-util-to-babel-ast": 5.5.0 + '@babel/core': 7.24.3 + '@svgr/babel-preset': 5.5.0 + '@svgr/hast-util-to-babel-ast': 5.5.0 svg-parser: 2.0.4 transitivePeerDependencies: - supports-color - "@svgr/plugin-svgo@5.5.0": + '@svgr/plugin-svgo@5.5.0': dependencies: cosmiconfig: 7.1.0 deepmerge: 4.3.1 svgo: 1.3.2 - "@svgr/webpack@5.5.0": + '@svgr/webpack@5.5.0': dependencies: - "@babel/core": 7.24.3 - "@babel/plugin-transform-react-constant-elements": 7.24.1(@babel/core@7.24.3) - "@babel/preset-env": 7.24.3(@babel/core@7.24.3) - "@babel/preset-react": 7.24.1(@babel/core@7.24.3) - "@svgr/core": 5.5.0(@svgr/plugin-svgo@5.5.0) - "@svgr/plugin-jsx": 5.5.0 - "@svgr/plugin-svgo": 5.5.0 + '@babel/core': 7.24.3 + '@babel/plugin-transform-react-constant-elements': 7.24.1(@babel/core@7.24.3) + '@babel/preset-env': 7.24.3(@babel/core@7.24.3) + '@babel/preset-react': 7.24.1(@babel/core@7.24.3) + '@svgr/core': 5.5.0(@svgr/plugin-svgo@5.5.0) + '@svgr/plugin-jsx': 5.5.0 + '@svgr/plugin-svgo': 5.5.0 loader-utils: 2.0.4 transitivePeerDependencies: - supports-color - "@swc/core-darwin-arm64@1.4.11": + '@swc/core-darwin-arm64@1.4.11': optional: true - "@swc/core-darwin-x64@1.4.11": + '@swc/core-darwin-x64@1.4.11': optional: true - "@swc/core-linux-arm-gnueabihf@1.4.11": + '@swc/core-linux-arm-gnueabihf@1.4.11': optional: true - "@swc/core-linux-arm64-gnu@1.4.11": + '@swc/core-linux-arm64-gnu@1.4.11': optional: true - "@swc/core-linux-arm64-musl@1.4.11": + '@swc/core-linux-arm64-musl@1.4.11': optional: true - "@swc/core-linux-x64-gnu@1.4.11": + '@swc/core-linux-x64-gnu@1.4.11': optional: true - "@swc/core-linux-x64-musl@1.4.11": + '@swc/core-linux-x64-musl@1.4.11': optional: true - "@swc/core-win32-arm64-msvc@1.4.11": + '@swc/core-win32-arm64-msvc@1.4.11': optional: true - "@swc/core-win32-ia32-msvc@1.4.11": + '@swc/core-win32-ia32-msvc@1.4.11': optional: true - "@swc/core-win32-x64-msvc@1.4.11": + '@swc/core-win32-x64-msvc@1.4.11': optional: true - "@swc/core@1.4.11": + '@swc/core@1.4.11': dependencies: - "@swc/counter": 0.1.3 - "@swc/types": 0.1.6 + '@swc/counter': 0.1.3 + '@swc/types': 0.1.6 optionalDependencies: - "@swc/core-darwin-arm64": 1.4.11 - "@swc/core-darwin-x64": 1.4.11 - "@swc/core-linux-arm-gnueabihf": 1.4.11 - "@swc/core-linux-arm64-gnu": 1.4.11 - "@swc/core-linux-arm64-musl": 1.4.11 - "@swc/core-linux-x64-gnu": 1.4.11 - "@swc/core-linux-x64-musl": 1.4.11 - "@swc/core-win32-arm64-msvc": 1.4.11 - "@swc/core-win32-ia32-msvc": 1.4.11 - "@swc/core-win32-x64-msvc": 1.4.11 + '@swc/core-darwin-arm64': 1.4.11 + '@swc/core-darwin-x64': 1.4.11 + '@swc/core-linux-arm-gnueabihf': 1.4.11 + '@swc/core-linux-arm64-gnu': 1.4.11 + '@swc/core-linux-arm64-musl': 1.4.11 + '@swc/core-linux-x64-gnu': 1.4.11 + '@swc/core-linux-x64-musl': 1.4.11 + '@swc/core-win32-arm64-msvc': 1.4.11 + '@swc/core-win32-ia32-msvc': 1.4.11 + '@swc/core-win32-x64-msvc': 1.4.11 - "@swc/counter@0.1.3": {} + '@swc/counter@0.1.3': {} - "@swc/helpers@0.4.14": + '@swc/helpers@0.4.14': dependencies: tslib: 2.6.2 - "@swc/helpers@0.5.5": + '@swc/helpers@0.5.5': dependencies: - "@swc/counter": 0.1.3 + '@swc/counter': 0.1.3 tslib: 2.6.2 - "@swc/jest@0.2.36(@swc/core@1.4.11)": + '@swc/jest@0.2.36(@swc/core@1.4.11)': dependencies: - "@jest/create-cache-key-function": 29.7.0 - "@swc/core": 1.4.11 - "@swc/counter": 0.1.3 + '@jest/create-cache-key-function': 29.7.0 + '@swc/core': 1.4.11 + '@swc/counter': 0.1.3 jsonc-parser: 3.2.1 - "@swc/types@0.1.6": + '@swc/types@0.1.6': dependencies: - "@swc/counter": 0.1.3 + '@swc/counter': 0.1.3 - "@szmarczak/http-timer@1.1.2": + '@szmarczak/http-timer@1.1.2': dependencies: defer-to-connect: 1.1.3 - "@szmarczak/http-timer@4.0.6": + '@szmarczak/http-timer@4.0.6': dependencies: defer-to-connect: 2.0.1 - "@tanstack/query-core@5.28.9": {} + '@tanstack/query-core@5.28.9': {} - "@tanstack/query-devtools@5.28.10": {} + '@tanstack/query-devtools@5.28.10': {} - "@tanstack/react-query-devtools@5.28.14(@tanstack/react-query@5.28.9(react@18.2.0))(react@18.2.0)": + '@tanstack/react-query-devtools@5.28.14(@tanstack/react-query@5.28.9(react@18.2.0))(react@18.2.0)': dependencies: - "@tanstack/query-devtools": 5.28.10 - "@tanstack/react-query": 5.28.9(react@18.2.0) + '@tanstack/query-devtools': 5.28.10 + '@tanstack/react-query': 5.28.9(react@18.2.0) react: 18.2.0 - "@tanstack/react-query@5.28.9(react@18.2.0)": + '@tanstack/react-query@5.28.9(react@18.2.0)': dependencies: - "@tanstack/query-core": 5.28.9 + '@tanstack/query-core': 5.28.9 react: 18.2.0 - "@tanstack/react-virtual@3.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@tanstack/react-virtual@3.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@tanstack/virtual-core": 3.2.0 + '@tanstack/virtual-core': 3.2.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - "@tanstack/virtual-core@3.2.0": {} + '@tanstack/virtual-core@3.2.0': {} - "@taquito/core@20.0.0": + '@taquito/core@20.0.0': dependencies: json-stringify-safe: 5.0.1 - "@taquito/core@20.0.1": + '@taquito/core@20.0.1': dependencies: json-stringify-safe: 5.0.1 - "@taquito/http-utils@20.0.1": + '@taquito/http-utils@20.0.1': dependencies: - "@taquito/core": 20.0.1 + '@taquito/core': 20.0.1 node-fetch: 2.7.0 transitivePeerDependencies: - encoding - "@taquito/ledger-signer@20.0.0": + '@taquito/ledger-signer@20.0.0': dependencies: - "@ledgerhq/hw-transport": 6.30.6 - "@stablelib/blake2b": 1.0.1 - "@taquito/core": 20.0.0 - "@taquito/taquito": 20.0.1 - "@taquito/utils": 20.0.1 + '@ledgerhq/hw-transport': 6.30.6 + '@stablelib/blake2b': 1.0.1 + '@taquito/core': 20.0.0 + '@taquito/taquito': 20.0.1 + '@taquito/utils': 20.0.1 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) transitivePeerDependencies: - encoding - "@taquito/ledger-signer@20.0.1": + '@taquito/ledger-signer@20.0.1': dependencies: - "@ledgerhq/hw-transport": 6.30.6 - "@stablelib/blake2b": 1.0.1 - "@taquito/core": 20.0.1 - "@taquito/taquito": 20.0.1 - "@taquito/utils": 20.0.1 + '@ledgerhq/hw-transport': 6.30.6 + '@stablelib/blake2b': 1.0.1 + '@taquito/core': 20.0.1 + '@taquito/taquito': 20.0.1 + '@taquito/utils': 20.0.1 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) transitivePeerDependencies: - encoding - "@taquito/local-forging@20.0.1": + '@taquito/local-forging@20.0.1': dependencies: - "@taquito/core": 20.0.1 - "@taquito/utils": 20.0.1 + '@taquito/core': 20.0.1 + '@taquito/utils': 20.0.1 bignumber.js: 9.1.2 - "@taquito/michel-codec@20.0.1": + '@taquito/michel-codec@20.0.1': dependencies: - "@taquito/core": 20.0.1 + '@taquito/core': 20.0.1 - "@taquito/michelson-encoder@20.0.1": + '@taquito/michelson-encoder@20.0.1': dependencies: - "@taquito/core": 20.0.1 - "@taquito/rpc": 20.0.1 - "@taquito/utils": 20.0.1 + '@taquito/core': 20.0.1 + '@taquito/rpc': 20.0.1 + '@taquito/utils': 20.0.1 bignumber.js: 9.1.2 fast-json-stable-stringify: 2.1.0 transitivePeerDependencies: - encoding - "@taquito/rpc@20.0.1": + '@taquito/rpc@20.0.1': dependencies: - "@taquito/core": 20.0.1 - "@taquito/http-utils": 20.0.1 - "@taquito/utils": 20.0.1 + '@taquito/core': 20.0.1 + '@taquito/http-utils': 20.0.1 + '@taquito/utils': 20.0.1 bignumber.js: 9.1.2 transitivePeerDependencies: - encoding - "@taquito/taquito@20.0.1": + '@taquito/taquito@20.0.1': dependencies: - "@taquito/core": 20.0.1 - "@taquito/http-utils": 20.0.1 - "@taquito/local-forging": 20.0.1 - "@taquito/michel-codec": 20.0.1 - "@taquito/michelson-encoder": 20.0.1 - "@taquito/rpc": 20.0.1 - "@taquito/utils": 20.0.1 + '@taquito/core': 20.0.1 + '@taquito/http-utils': 20.0.1 + '@taquito/local-forging': 20.0.1 + '@taquito/michel-codec': 20.0.1 + '@taquito/michelson-encoder': 20.0.1 + '@taquito/rpc': 20.0.1 + '@taquito/utils': 20.0.1 bignumber.js: 9.1.2 rxjs: 7.8.1 transitivePeerDependencies: - encoding - "@taquito/utils@20.0.1": + '@taquito/utils@20.0.1': dependencies: - "@stablelib/blake2b": 1.0.1 - "@stablelib/ed25519": 1.0.3 - "@taquito/core": 20.0.1 - "@types/bs58check": 2.1.2 + '@stablelib/blake2b': 1.0.1 + '@stablelib/ed25519': 1.0.3 + '@taquito/core': 20.0.1 + '@types/bs58check': 2.1.2 bignumber.js: 9.1.2 blakejs: 1.2.1 bs58check: 3.0.1 @@ -60062,21 +43787,21 @@ snapshots: elliptic: 6.5.5 typedarray-to-buffer: 4.0.0 - "@testing-library/dom@9.3.4": + '@testing-library/dom@9.3.4': dependencies: - "@babel/code-frame": 7.24.2 - "@babel/runtime": 7.24.1 - "@types/aria-query": 5.0.4 + '@babel/code-frame': 7.24.2 + '@babel/runtime': 7.24.1 + '@types/aria-query': 5.0.4 aria-query: 5.1.3 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.4.2(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)))": + '@testing-library/jest-dom@6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.12)(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)))': dependencies: - "@adobe/css-tools": 4.3.3 - "@babel/runtime": 7.24.1 + '@adobe/css-tools': 4.3.3 + '@babel/runtime': 7.24.1 aria-query: 5.3.0 chalk: 3.0.0 css.escape: 1.5.1 @@ -60084,14 +43809,14 @@ snapshots: lodash: 4.17.21 redent: 3.0.0 optionalDependencies: - "@jest/globals": 29.7.0 - "@types/jest": 29.5.12 + '@jest/globals': 29.7.0 + '@types/jest': 29.5.12 jest: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) - "@testing-library/jest-dom@6.4.2(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.12.12))": + '@testing-library/jest-dom@6.4.2(@types/jest@29.5.12)(jest@29.7.0(@types/node@20.12.12))': dependencies: - "@adobe/css-tools": 4.3.3 - "@babel/runtime": 7.24.1 + '@adobe/css-tools': 4.3.3 + '@babel/runtime': 7.24.1 aria-query: 5.3.0 chalk: 3.0.0 css.escape: 1.5.1 @@ -60099,10 +43824,10 @@ snapshots: lodash: 4.17.21 redent: 3.0.0 optionalDependencies: - "@types/jest": 29.5.12 + '@types/jest': 29.5.12 jest: 29.7.0(@types/node@20.12.12) - "@testing-library/jest-native@5.4.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0)": + '@testing-library/jest-native@5.4.3(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: chalk: 4.1.2 jest-diff: 29.7.0 @@ -60113,7 +43838,7 @@ snapshots: react-test-renderer: 18.2.0(react@18.2.0) redent: 3.0.0 - "@testing-library/react-native@12.4.5(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0)": + '@testing-library/react-native@12.4.5(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: jest-matcher-utils: 29.7.0 pretty-format: 29.7.0 @@ -60124,39 +43849,39 @@ snapshots: optionalDependencies: jest: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) - "@testing-library/react@14.2.2": + '@testing-library/react@14.2.2': dependencies: - "@babel/runtime": 7.24.1 - "@testing-library/dom": 9.3.4 - "@types/react-dom": 18.2.23 + '@babel/runtime': 7.24.1 + '@testing-library/dom': 9.3.4 + '@types/react-dom': 18.2.23 transitivePeerDependencies: - - "@types/react" + - '@types/react' - "@testing-library/react@14.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@testing-library/react@14.2.2(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.24.1 - "@testing-library/dom": 9.3.4 - "@types/react-dom": 18.2.23(@types/react@18.2.73) + '@babel/runtime': 7.24.1 + '@testing-library/dom': 9.3.4 + '@types/react-dom': 18.2.23(@types/react@18.2.73) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - - "@types/react" + - '@types/react' - "@testing-library/react@14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@testing-library/react@14.2.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - "@babel/runtime": 7.24.1 - "@testing-library/dom": 9.3.4 - "@types/react-dom": 18.2.23 + '@babel/runtime': 7.24.1 + '@testing-library/dom': 9.3.4 + '@types/react-dom': 18.2.23 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - - "@types/react" + - '@types/react' - "@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4)": + '@testing-library/user-event@14.5.2(@testing-library/dom@9.3.4)': dependencies: - "@testing-library/dom": 9.3.4 + '@testing-library/dom': 9.3.4 - "@theguild/remark-mermaid@0.0.5(react@18.2.0)": + '@theguild/remark-mermaid@0.0.5(react@18.2.0)': dependencies: mermaid: 10.9.0 react: 18.2.0 @@ -60164,623 +43889,623 @@ snapshots: transitivePeerDependencies: - supports-color - "@theguild/remark-npm2yarn@0.2.1": + '@theguild/remark-npm2yarn@0.2.1': dependencies: npm-to-yarn: 2.2.1 unist-util-visit: 5.0.0 - "@tippyjs/react@4.2.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@tippyjs/react@4.2.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) tippy.js: 6.3.7 - "@ton-community/ton-ledger@7.0.1(@ton/core@0.56.3(@ton/crypto@3.3.0))": + '@ton-community/ton-ledger@7.0.1(@ton/core@0.56.3(@ton/crypto@3.3.0))': dependencies: - "@ledgerhq/hw-transport": 6.30.6 - "@ton/core": 0.56.3(@ton/crypto@3.3.0) - "@ton/crypto": 3.3.0 + '@ledgerhq/hw-transport': 6.30.6 + '@ton/core': 0.56.3(@ton/crypto@3.3.0) + '@ton/crypto': 3.3.0 teslabot: 1.5.0 - "@ton/core@0.56.3(@ton/crypto@3.3.0)": + '@ton/core@0.56.3(@ton/crypto@3.3.0)': dependencies: - "@ton/crypto": 3.3.0 + '@ton/crypto': 3.3.0 symbol.inspect: 1.0.1 - "@ton/crypto-primitives@2.1.0": + '@ton/crypto-primitives@2.1.0': dependencies: jssha: 3.2.0 - "@ton/crypto@3.3.0": + '@ton/crypto@3.3.0': dependencies: - "@ton/crypto-primitives": 2.1.0 + '@ton/crypto-primitives': 2.1.0 jssha: 3.2.0 tweetnacl: 1.0.3 - "@ton/ton@13.11.2(@ton/core@0.56.3(@ton/crypto@3.3.0))(@ton/crypto@3.3.0)": + '@ton/ton@13.11.2(@ton/core@0.56.3(@ton/crypto@3.3.0))(@ton/crypto@3.3.0)': dependencies: - "@ton/core": 0.56.3(@ton/crypto@3.3.0) - "@ton/crypto": 3.3.0 + '@ton/core': 0.56.3(@ton/crypto@3.3.0) + '@ton/crypto': 3.3.0 axios: 1.7.7 dataloader: 2.2.2 symbol.inspect: 1.0.1 teslabot: 1.5.0 zod: 3.22.4 - "@tootallnate/once@1.1.2": {} + '@tootallnate/once@1.1.2': {} - "@tootallnate/once@2.0.0": {} + '@tootallnate/once@2.0.0': {} - "@tronweb3/google-protobuf@3.21.2": {} + '@tronweb3/google-protobuf@3.21.2': {} - "@trust/keyto@1.0.1": + '@trust/keyto@1.0.1': dependencies: asn1.js: 5.4.1 base64url: 3.0.1 elliptic: 6.5.5 - "@trysound/sax@0.2.0": {} + '@trysound/sax@0.2.0': {} - "@tsconfig/node10@1.0.11": {} + '@tsconfig/node10@1.0.11': {} - "@tsconfig/node12@1.0.11": {} + '@tsconfig/node12@1.0.11': {} - "@tsconfig/node14@1.0.3": {} + '@tsconfig/node14@1.0.3': {} - "@tsconfig/node16@1.0.4": {} + '@tsconfig/node16@1.0.4': {} - "@tsconfig/recommended@1.0.6": {} + '@tsconfig/recommended@1.0.6': {} - "@types/accepts@1.3.7": + '@types/accepts@1.3.7': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/acorn@4.0.6": + '@types/acorn@4.0.6': dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 - "@types/aria-query@5.0.4": {} + '@types/aria-query@5.0.4': {} - "@types/axios@0.14.0": + '@types/axios@0.14.0': dependencies: axios: 1.7.7 - "@types/babel__core@7.20.5": + '@types/babel__core@7.20.5': dependencies: - "@babel/parser": 7.24.1 - "@babel/types": 7.24.0 - "@types/babel__generator": 7.6.8 - "@types/babel__template": 7.4.4 - "@types/babel__traverse": 7.20.5 + '@babel/parser': 7.24.1 + '@babel/types': 7.24.0 + '@types/babel__generator': 7.6.8 + '@types/babel__template': 7.4.4 + '@types/babel__traverse': 7.20.5 - "@types/babel__generator@7.6.8": + '@types/babel__generator@7.6.8': dependencies: - "@babel/types": 7.24.0 + '@babel/types': 7.24.0 - "@types/babel__template@7.4.4": + '@types/babel__template@7.4.4': dependencies: - "@babel/parser": 7.24.1 - "@babel/types": 7.24.0 + '@babel/parser': 7.24.1 + '@babel/types': 7.24.0 - "@types/babel__traverse@7.20.5": + '@types/babel__traverse@7.20.5': dependencies: - "@babel/types": 7.24.0 + '@babel/types': 7.24.0 - "@types/bchaddrjs@0.4.3": {} + '@types/bchaddrjs@0.4.3': {} - "@types/blake2b@2.1.3": {} + '@types/blake2b@2.1.3': {} - "@types/bluebird@3.5.42": {} + '@types/bluebird@3.5.42': {} - "@types/bn.js@4.11.6": + '@types/bn.js@4.11.6': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/bn.js@5.1.5": + '@types/bn.js@5.1.5': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/body-parser@1.19.5": + '@types/body-parser@1.19.5': dependencies: - "@types/connect": 3.4.38 - "@types/node": 20.12.12 + '@types/connect': 3.4.38 + '@types/node': 20.12.12 - "@types/bonjour@3.5.13": + '@types/bonjour@3.5.13': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/bs58@4.0.4": + '@types/bs58@4.0.4': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 base-x: 3.0.9 - "@types/bs58check@2.1.2": + '@types/bs58check@2.1.2': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/btoa-lite@1.0.2": {} + '@types/btoa-lite@1.0.2': {} - "@types/cacheable-request@6.0.3": + '@types/cacheable-request@6.0.3': dependencies: - "@types/http-cache-semantics": 4.0.4 - "@types/keyv": 3.1.4 - "@types/node": 20.12.12 - "@types/responselike": 1.0.3 + '@types/http-cache-semantics': 4.0.4 + '@types/keyv': 3.1.4 + '@types/node': 20.12.12 + '@types/responselike': 1.0.3 - "@types/cashaddrjs@0.3.3": {} + '@types/cashaddrjs@0.3.3': {} - "@types/cbor@6.0.0": + '@types/cbor@6.0.0': dependencies: cbor: 9.0.2 - "@types/chart.js@2.9.41": + '@types/chart.js@2.9.41': dependencies: moment: 2.30.1 - "@types/color-convert@2.0.3": + '@types/color-convert@2.0.3': dependencies: - "@types/color-name": 1.1.3 + '@types/color-name': 1.1.3 - "@types/color-name@1.1.3": {} + '@types/color-name@1.1.3': {} - "@types/color@3.0.6": + '@types/color@3.0.6': dependencies: - "@types/color-convert": 2.0.3 + '@types/color-convert': 2.0.3 - "@types/command-line-args@5.2.3": {} + '@types/command-line-args@5.2.3': {} - "@types/connect-history-api-fallback@1.5.4": + '@types/connect-history-api-fallback@1.5.4': dependencies: - "@types/express-serve-static-core": 4.17.43 - "@types/node": 20.12.12 + '@types/express-serve-static-core': 4.17.43 + '@types/node': 20.12.12 - "@types/connect@3.4.36": + '@types/connect@3.4.36': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/connect@3.4.38": + '@types/connect@3.4.38': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/content-disposition@0.5.8": {} + '@types/content-disposition@0.5.8': {} - "@types/cookie@0.6.0": {} + '@types/cookie@0.6.0': {} - "@types/cookies@0.9.0": + '@types/cookies@0.9.0': dependencies: - "@types/connect": 3.4.38 - "@types/express": 4.17.21 - "@types/keygrip": 1.0.6 - "@types/node": 20.12.12 + '@types/connect': 3.4.38 + '@types/express': 4.17.21 + '@types/keygrip': 1.0.6 + '@types/node': 20.12.12 - "@types/cors@2.8.17": + '@types/cors@2.8.17': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/create-hmac@1.1.3": + '@types/create-hmac@1.1.3': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/cross-spawn@6.0.6": + '@types/cross-spawn@6.0.6': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/crypto-js@4.2.2": {} + '@types/crypto-js@4.2.2': {} - "@types/d3-array@2.3.0": {} + '@types/d3-array@2.3.0': {} - "@types/d3-path@3.1.0": {} + '@types/d3-path@3.1.0': {} - "@types/d3-scale-chromatic@3.0.3": {} + '@types/d3-scale-chromatic@3.0.3': {} - "@types/d3-scale@3.3.5": + '@types/d3-scale@3.3.5': dependencies: - "@types/d3-time": 2.1.4 + '@types/d3-time': 2.1.4 - "@types/d3-scale@4.0.8": + '@types/d3-scale@4.0.8': dependencies: - "@types/d3-time": 3.0.3 + '@types/d3-time': 3.0.3 - "@types/d3-shape@3.1.6": + '@types/d3-shape@3.1.6': dependencies: - "@types/d3-path": 3.1.0 + '@types/d3-path': 3.1.0 - "@types/d3-time@2.1.4": {} + '@types/d3-time@2.1.4': {} - "@types/d3-time@3.0.3": {} + '@types/d3-time@3.0.3': {} - "@types/debug@4.1.12": + '@types/debug@4.1.12': dependencies: - "@types/ms": 0.7.34 + '@types/ms': 0.7.34 - "@types/detect-port@1.3.5": {} + '@types/detect-port@1.3.5': {} - "@types/doctrine@0.0.3": {} + '@types/doctrine@0.0.3': {} - "@types/doctrine@0.0.9": {} + '@types/doctrine@0.0.9': {} - "@types/ejs@3.1.5": {} + '@types/ejs@3.1.5': {} - "@types/elliptic@6.4.18": + '@types/elliptic@6.4.18': dependencies: - "@types/bn.js": 5.1.5 + '@types/bn.js': 5.1.5 - "@types/emscripten@1.39.10": {} + '@types/emscripten@1.39.10': {} - "@types/escodegen@0.0.6": {} + '@types/escodegen@0.0.6': {} - "@types/eslint-scope@3.7.7": + '@types/eslint-scope@3.7.7': dependencies: - "@types/eslint": 8.56.6 - "@types/estree": 1.0.5 + '@types/eslint': 8.56.6 + '@types/estree': 1.0.5 - "@types/eslint@8.56.6": + '@types/eslint@8.56.6': dependencies: - "@types/estree": 1.0.5 - "@types/json-schema": 7.0.15 + '@types/estree': 1.0.5 + '@types/json-schema': 7.0.15 - "@types/estree-jsx@1.0.5": + '@types/estree-jsx@1.0.5': dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 - "@types/estree@0.0.39": {} + '@types/estree@0.0.39': {} - "@types/estree@0.0.51": {} + '@types/estree@0.0.51': {} - "@types/estree@1.0.5": {} + '@types/estree@1.0.5': {} - "@types/ethereumjs-util@5.2.0": + '@types/ethereumjs-util@5.2.0': dependencies: - "@types/bn.js": 5.1.5 - "@types/node": 20.12.12 + '@types/bn.js': 5.1.5 + '@types/node': 20.12.12 - "@types/events@3.0.3": {} + '@types/events@3.0.3': {} - "@types/express-serve-static-core@4.17.43": + '@types/express-serve-static-core@4.17.43': dependencies: - "@types/node": 20.12.12 - "@types/qs": 6.9.14 - "@types/range-parser": 1.2.7 - "@types/send": 0.17.4 + '@types/node': 20.12.12 + '@types/qs': 6.9.14 + '@types/range-parser': 1.2.7 + '@types/send': 0.17.4 - "@types/express@4.17.21": + '@types/express@4.17.21': dependencies: - "@types/body-parser": 1.19.5 - "@types/express-serve-static-core": 4.17.43 - "@types/qs": 6.9.14 - "@types/serve-static": 1.15.5 + '@types/body-parser': 1.19.5 + '@types/express-serve-static-core': 4.17.43 + '@types/qs': 6.9.14 + '@types/serve-static': 1.15.5 - "@types/extend@3.0.4": {} + '@types/extend@3.0.4': {} - "@types/find-cache-dir@3.2.1": {} + '@types/find-cache-dir@3.2.1': {} - "@types/fs-extra@11.0.4": + '@types/fs-extra@11.0.4': dependencies: - "@types/jsonfile": 6.1.4 - "@types/node": 20.12.12 + '@types/jsonfile': 6.1.4 + '@types/node': 20.12.12 - "@types/fs-extra@9.0.13": + '@types/fs-extra@9.0.13': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/glob@7.2.0": + '@types/glob@7.2.0': dependencies: - "@types/minimatch": 5.1.2 - "@types/node": 20.12.12 + '@types/minimatch': 5.1.2 + '@types/node': 20.12.12 - "@types/graceful-fs@4.1.9": + '@types/graceful-fs@4.1.9': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/hammerjs@2.0.45": {} + '@types/hammerjs@2.0.45': {} - "@types/hast@2.3.10": + '@types/hast@2.3.10': dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 - "@types/hast@3.0.4": + '@types/hast@3.0.4': dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 - "@types/history@4.7.11": {} + '@types/history@4.7.11': {} - "@types/hoist-non-react-statics@3.3.5(@types/react@18.2.73)": + '@types/hoist-non-react-statics@3.3.5(@types/react@18.2.73)': dependencies: hoist-non-react-statics: 3.3.2 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/html-minifier-terser@6.1.0": {} + '@types/html-minifier-terser@6.1.0': {} - "@types/http-assert@1.5.5": {} + '@types/http-assert@1.5.5': {} - "@types/http-cache-semantics@4.0.4": {} + '@types/http-cache-semantics@4.0.4': {} - "@types/http-errors@2.0.4": {} + '@types/http-errors@2.0.4': {} - "@types/http-proxy@1.17.14": + '@types/http-proxy@1.17.14': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/imurmurhash@0.1.4": {} + '@types/imurmurhash@0.1.4': {} - "@types/invariant@2.2.37": {} + '@types/invariant@2.2.37': {} - "@types/is-function@1.0.3": {} + '@types/is-function@1.0.3': {} - "@types/istanbul-lib-coverage@2.0.6": {} + '@types/istanbul-lib-coverage@2.0.6': {} - "@types/istanbul-lib-report@3.0.3": + '@types/istanbul-lib-report@3.0.3': dependencies: - "@types/istanbul-lib-coverage": 2.0.6 + '@types/istanbul-lib-coverage': 2.0.6 - "@types/istanbul-reports@1.1.2": + '@types/istanbul-reports@1.1.2': dependencies: - "@types/istanbul-lib-coverage": 2.0.6 - "@types/istanbul-lib-report": 3.0.3 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-lib-report': 3.0.3 - "@types/istanbul-reports@3.0.4": + '@types/istanbul-reports@3.0.4': dependencies: - "@types/istanbul-lib-report": 3.0.3 + '@types/istanbul-lib-report': 3.0.3 - "@types/jest@27.5.2": + '@types/jest@27.5.2': dependencies: jest-matcher-utils: 27.5.1 pretty-format: 27.5.1 - "@types/jest@28.1.8": + '@types/jest@28.1.8': dependencies: expect: 28.1.3 pretty-format: 28.1.3 - "@types/jest@29.5.12": + '@types/jest@29.5.12': dependencies: expect: 29.7.0 pretty-format: 29.7.0 - "@types/js-yaml@4.0.9": {} + '@types/js-yaml@4.0.9': {} - "@types/jsdom@16.2.15": + '@types/jsdom@16.2.15': dependencies: - "@types/node": 20.12.12 - "@types/parse5": 6.0.3 - "@types/tough-cookie": 4.0.5 + '@types/node': 20.12.12 + '@types/parse5': 6.0.3 + '@types/tough-cookie': 4.0.5 - "@types/jsdom@20.0.1": + '@types/jsdom@20.0.1': dependencies: - "@types/node": 20.12.12 - "@types/tough-cookie": 4.0.5 + '@types/node': 20.12.12 + '@types/tough-cookie': 4.0.5 parse5: 7.1.2 - "@types/json-schema@7.0.15": {} + '@types/json-schema@7.0.15': {} - "@types/json5@0.0.29": {} + '@types/json5@0.0.29': {} - "@types/jsonfile@6.1.4": + '@types/jsonfile@6.1.4': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/jsonwebtoken@9.0.6": + '@types/jsonwebtoken@9.0.6': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/katex@0.16.7": {} + '@types/katex@0.16.7': {} - "@types/keygrip@1.0.6": {} + '@types/keygrip@1.0.6': {} - "@types/keyv@3.1.4": + '@types/keyv@3.1.4': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/koa-compose@3.2.8": + '@types/koa-compose@3.2.8': dependencies: - "@types/koa": 2.14.0 + '@types/koa': 2.14.0 - "@types/koa@2.14.0": + '@types/koa@2.14.0': dependencies: - "@types/accepts": 1.3.7 - "@types/content-disposition": 0.5.8 - "@types/cookies": 0.9.0 - "@types/http-assert": 1.5.5 - "@types/http-errors": 2.0.4 - "@types/keygrip": 1.0.6 - "@types/koa-compose": 3.2.8 - "@types/node": 20.12.12 + '@types/accepts': 1.3.7 + '@types/content-disposition': 0.5.8 + '@types/cookies': 0.9.0 + '@types/http-assert': 1.5.5 + '@types/http-errors': 2.0.4 + '@types/keygrip': 1.0.6 + '@types/koa-compose': 3.2.8 + '@types/node': 20.12.12 - "@types/koa__router@12.0.3": + '@types/koa__router@12.0.3': dependencies: - "@types/koa": 2.14.0 + '@types/koa': 2.14.0 - "@types/ledgerhq__hw-transport@4.21.8": + '@types/ledgerhq__hw-transport@4.21.8': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/libsodium-wrappers@0.7.13": {} + '@types/libsodium-wrappers@0.7.13': {} - "@types/linkify-it@5.0.0": {} + '@types/linkify-it@5.0.0': {} - "@types/lodash@4.17.0": {} + '@types/lodash@4.17.0': {} - "@types/lodash@4.17.4": {} + '@types/lodash@4.17.4': {} - "@types/lodash@4.17.7": {} + '@types/lodash@4.17.7': {} - "@types/long@4.0.2": {} + '@types/long@4.0.2': {} - "@types/markdown-it@14.1.1": + '@types/markdown-it@14.1.1': dependencies: - "@types/linkify-it": 5.0.0 - "@types/mdurl": 2.0.0 + '@types/linkify-it': 5.0.0 + '@types/mdurl': 2.0.0 - "@types/mdast@3.0.15": + '@types/mdast@3.0.15': dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 - "@types/mdast@4.0.4": + '@types/mdast@4.0.4': dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 - "@types/mdurl@2.0.0": {} + '@types/mdurl@2.0.0': {} - "@types/mdx@2.0.12": {} + '@types/mdx@2.0.12': {} - "@types/mime-types@2.1.4": {} + '@types/mime-types@2.1.4': {} - "@types/mime@1.3.5": {} + '@types/mime@1.3.5': {} - "@types/mime@3.0.4": {} + '@types/mime@3.0.4': {} - "@types/minimatch@5.1.2": {} + '@types/minimatch@5.1.2': {} - "@types/minimist@1.2.5": {} + '@types/minimist@1.2.5': {} - "@types/ms@0.7.34": {} + '@types/ms@0.7.34': {} - "@types/mute-stream@0.0.4": + '@types/mute-stream@0.0.4': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/mysql@2.15.22": + '@types/mysql@2.15.22': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/node-fetch@2.6.11": + '@types/node-fetch@2.6.11': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 form-data: 4.0.0 - "@types/node-forge@1.3.11": + '@types/node-forge@1.3.11': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/node-hid@1.3.4": + '@types/node-hid@1.3.4': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/node@10.12.18": {} + '@types/node@10.12.18': {} - "@types/node@10.17.60": {} + '@types/node@10.17.60': {} - "@types/node@11.11.6": {} + '@types/node@11.11.6': {} - "@types/node@12.20.55": {} + '@types/node@12.20.55': {} - "@types/node@13.13.52": {} + '@types/node@13.13.52': {} - "@types/node@18.15.13": {} + '@types/node@18.15.13': {} - "@types/node@18.19.26": + '@types/node@18.19.26': dependencies: undici-types: 5.26.5 - "@types/node@20.12.12": + '@types/node@20.12.12': dependencies: undici-types: 5.26.5 - "@types/node@20.5.1": {} + '@types/node@20.5.1': {} - "@types/node@20.8.10": + '@types/node@20.8.10': dependencies: undici-types: 5.26.5 - "@types/normalize-package-data@2.4.4": {} + '@types/normalize-package-data@2.4.4': {} - "@types/numeral@2.0.5": {} + '@types/numeral@2.0.5': {} - "@types/object-hash@2.2.1": {} + '@types/object-hash@2.2.1': {} - "@types/pako@2.0.3": {} + '@types/pako@2.0.3': {} - "@types/parse-json@4.0.2": {} + '@types/parse-json@4.0.2': {} - "@types/parse5@6.0.3": {} + '@types/parse5@6.0.3': {} - "@types/pbkdf2@3.1.2": + '@types/pbkdf2@3.1.2': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/pg-pool@2.0.4": + '@types/pg-pool@2.0.4': dependencies: - "@types/pg": 8.6.1 + '@types/pg': 8.6.1 - "@types/pg@8.6.1": + '@types/pg@8.6.1': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 pg-protocol: 1.6.1 pg-types: 2.2.0 - "@types/plist@3.0.2": + '@types/plist@3.0.2': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 xmlbuilder: 15.1.1 optional: true - "@types/prettier@2.7.3": {} + '@types/prettier@2.7.3': {} - "@types/pretty-hrtime@1.0.3": {} + '@types/pretty-hrtime@1.0.3': {} - "@types/prop-types@15.7.12": {} + '@types/prop-types@15.7.12': {} - "@types/ps-tree@1.1.6": {} + '@types/ps-tree@1.1.6': {} - "@types/q@1.5.8": {} + '@types/q@1.5.8': {} - "@types/qrcode@1.5.5": + '@types/qrcode@1.5.5': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/qs@6.9.14": {} + '@types/qs@6.9.14': {} - "@types/range-parser@1.2.7": {} + '@types/range-parser@1.2.7': {} - "@types/react-dom@18.2.23": {} + '@types/react-dom@18.2.23': {} - "@types/react-dom@18.2.23(@types/react@18.2.73)": + '@types/react-dom@18.2.23(@types/react@18.2.73)': optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/react-dom@18.3.0(@types/react@18.3.5)": + '@types/react-dom@18.3.0(@types/react@18.3.5)': optionalDependencies: - "@types/react": 18.3.5 + '@types/react': 18.3.5 - "@types/react-inspector@4.0.6(@types/react@18.3.5)": + '@types/react-inspector@4.0.6(@types/react@18.3.5)': dependencies: csstype: 3.1.3 optionalDependencies: - "@types/react": 18.3.5 + '@types/react': 18.3.5 - "@types/react-is@17.0.7(@types/react@18.2.73)": + '@types/react-is@17.0.7(@types/react@18.2.73)': optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/react-key-handler@1.2.4(@types/react@18.2.73)": + '@types/react-key-handler@1.2.4(@types/react@18.2.73)': optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/react-lottie@1.2.10(@types/react@18.2.73)": + '@types/react-lottie@1.2.10(@types/react@18.2.73)': optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/react-motion@0.0.40(@types/react@18.2.73)": + '@types/react-motion@0.0.40(@types/react@18.2.73)': optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/react-native-extra-dimensions-android@1.2.3": {} + '@types/react-native-extra-dimensions-android@1.2.3': {} - "@types/react-native-vector-icons@6.4.18(@types/react@18.2.73)": + '@types/react-native-vector-icons@6.4.18(@types/react@18.2.73)': dependencies: - "@types/react-native": 0.70.19(@types/react@18.2.73) + '@types/react-native': 0.70.19(@types/react@18.2.73) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/react-native-video@5.0.20(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)": + '@types/react-native-video@5.0.20(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)': dependencies: react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 transitivePeerDependencies: - - "@babel/core" - - "@babel/preset-env" + - '@babel/core' + - '@babel/preset-env' - bufferutil - encoding - metro-resolver @@ -60789,266 +44514,266 @@ snapshots: - supports-color - utf-8-validate - "@types/react-native@0.70.19(@types/react@18.2.73)": + '@types/react-native@0.70.19(@types/react@18.2.73)': optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/react-redux@7.1.33(@types/react@18.2.73)": + '@types/react-redux@7.1.33(@types/react@18.2.73)': dependencies: - "@types/hoist-non-react-statics": 3.3.5(@types/react@18.2.73) + '@types/hoist-non-react-statics': 3.3.5(@types/react@18.2.73) hoist-non-react-statics: 3.3.2 redux: 4.2.1 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/react-router-dom@5.3.3(@types/react@18.2.73)": + '@types/react-router-dom@5.3.3(@types/react@18.2.73)': dependencies: - "@types/history": 4.7.11 - "@types/react-router": 5.1.20(@types/react@18.2.73) + '@types/history': 4.7.11 + '@types/react-router': 5.1.20(@types/react@18.2.73) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/react-router@5.1.20(@types/react@18.2.73)": + '@types/react-router@5.1.20(@types/react@18.2.73)': dependencies: - "@types/history": 4.7.11 + '@types/history': 4.7.11 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/react-select@4.0.18(@types/react@18.2.73)": + '@types/react-select@4.0.18(@types/react@18.2.73)': dependencies: - "@emotion/serialize": 1.1.3 - "@types/react-dom": 18.2.23(@types/react@18.2.73) - "@types/react-transition-group": 4.4.10(@types/react@18.2.73) + '@emotion/serialize': 1.1.3 + '@types/react-dom': 18.2.23(@types/react@18.2.73) + '@types/react-transition-group': 4.4.10(@types/react@18.2.73) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/react-table@6.8.15(@types/react@18.3.5)": + '@types/react-table@6.8.15(@types/react@18.3.5)': optionalDependencies: - "@types/react": 18.3.5 + '@types/react': 18.3.5 - "@types/react-table@7.7.20(@types/react@18.3.5)": + '@types/react-table@7.7.20(@types/react@18.3.5)': optionalDependencies: - "@types/react": 18.3.5 + '@types/react': 18.3.5 - "@types/react-test-renderer@18.0.7(@types/react@18.2.73)": + '@types/react-test-renderer@18.0.7(@types/react@18.2.73)': optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/react-transition-group@4.4.10(@types/react@18.2.73)": + '@types/react-transition-group@4.4.10(@types/react@18.2.73)': optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/react-transition-group@4.4.10(@types/react@18.3.5)": + '@types/react-transition-group@4.4.10(@types/react@18.3.5)': optionalDependencies: - "@types/react": 18.3.5 + '@types/react': 18.3.5 - "@types/react-virtualized-auto-sizer@1.0.4(@types/react@18.2.73)": + '@types/react-virtualized-auto-sizer@1.0.4(@types/react@18.2.73)': optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/react-window-infinite-loader@1.0.9(@types/react@18.2.73)": + '@types/react-window-infinite-loader@1.0.9(@types/react@18.2.73)': dependencies: - "@types/react-window": 1.8.8(@types/react@18.2.73) + '@types/react-window': 1.8.8(@types/react@18.2.73) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/react-window@1.8.8(@types/react@18.2.73)": + '@types/react-window@1.8.8(@types/react@18.2.73)': optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/react@18.2.73": + '@types/react@18.2.73': dependencies: - "@types/prop-types": 15.7.12 + '@types/prop-types': 15.7.12 csstype: 3.1.3 - "@types/react@18.3.5": + '@types/react@18.3.5': dependencies: - "@types/prop-types": 15.7.12 + '@types/prop-types': 15.7.12 csstype: 3.1.3 - "@types/redux-actions@2.6.5": {} + '@types/redux-actions@2.6.5': {} - "@types/resolve@1.17.1": + '@types/resolve@1.17.1': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/resolve@1.20.2": {} + '@types/resolve@1.20.2': {} - "@types/resolve@1.20.6": {} + '@types/resolve@1.20.6': {} - "@types/responselike@1.0.3": + '@types/responselike@1.0.3': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/retry@0.12.0": {} + '@types/retry@0.12.0': {} - "@types/retry@0.12.2": {} + '@types/retry@0.12.2': {} - "@types/ripemd160@2.0.3": + '@types/ripemd160@2.0.3': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/secp256k1@4.0.6": + '@types/secp256k1@4.0.6': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/semver@7.5.7": {} + '@types/semver@7.5.7': {} - "@types/semver@7.5.8": {} + '@types/semver@7.5.8': {} - "@types/send@0.17.4": + '@types/send@0.17.4': dependencies: - "@types/mime": 1.3.5 - "@types/node": 20.12.12 + '@types/mime': 1.3.5 + '@types/node': 20.12.12 - "@types/serve-handler@6.1.4": + '@types/serve-handler@6.1.4': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/serve-index@1.9.4": + '@types/serve-index@1.9.4': dependencies: - "@types/express": 4.17.21 + '@types/express': 4.17.21 - "@types/serve-static@1.15.5": + '@types/serve-static@1.15.5': dependencies: - "@types/http-errors": 2.0.4 - "@types/mime": 3.0.4 - "@types/node": 20.12.12 + '@types/http-errors': 2.0.4 + '@types/mime': 3.0.4 + '@types/node': 20.12.12 - "@types/sha.js@2.4.4": + '@types/sha.js@2.4.4': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/shimmer@1.2.0": {} + '@types/shimmer@1.2.0': {} - "@types/sockjs@0.3.36": + '@types/sockjs@0.3.36': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/stack-utils@2.0.3": {} + '@types/stack-utils@2.0.3': {} - "@types/statuses@2.0.5": {} + '@types/statuses@2.0.5': {} - "@types/stream-chain@2.0.4": + '@types/stream-chain@2.0.4': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/stream-json@1.7.7": + '@types/stream-json@1.7.7': dependencies: - "@types/node": 20.12.12 - "@types/stream-chain": 2.0.4 + '@types/node': 20.12.12 + '@types/stream-chain': 2.0.4 - "@types/styled-components-react-native@5.2.5(@types/react@18.2.73)": + '@types/styled-components-react-native@5.2.5(@types/react@18.2.73)': dependencies: - "@types/react-native": 0.70.19(@types/react@18.2.73) - "@types/styled-components": 5.1.34(@types/react@18.2.73) + '@types/react-native': 0.70.19(@types/react@18.2.73) + '@types/styled-components': 5.1.34(@types/react@18.2.73) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/styled-components@5.1.34(@types/react@18.2.73)": + '@types/styled-components@5.1.34(@types/react@18.2.73)': dependencies: - "@types/hoist-non-react-statics": 3.3.5(@types/react@18.2.73) + '@types/hoist-non-react-statics': 3.3.5(@types/react@18.2.73) csstype: 3.1.3 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 - "@types/styled-system@5.1.22": + '@types/styled-system@5.1.22': dependencies: csstype: 3.1.3 - "@types/stylis@4.2.0": {} + '@types/stylis@4.2.0': {} - "@types/supports-color@8.1.3": {} + '@types/supports-color@8.1.3': {} - "@types/testing-library__jest-dom@5.14.9": + '@types/testing-library__jest-dom@5.14.9': dependencies: - "@types/jest": 29.5.12 + '@types/jest': 29.5.12 - "@types/tough-cookie@4.0.5": {} + '@types/tough-cookie@4.0.5': {} - "@types/triple-beam@1.3.5": {} + '@types/triple-beam@1.3.5': {} - "@types/trust__keyto@1.0.4": + '@types/trust__keyto@1.0.4': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/trusted-types@2.0.7": {} + '@types/trusted-types@2.0.7': {} - "@types/tunnel@0.0.3": + '@types/tunnel@0.0.3': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/unist@2.0.10": {} + '@types/unist@2.0.10': {} - "@types/unist@3.0.2": {} + '@types/unist@3.0.2': {} - "@types/unzipper@0.10.9": + '@types/unzipper@0.10.9': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/utf8@2.1.6": {} + '@types/utf8@2.1.6': {} - "@types/uuid@8.3.4": {} + '@types/uuid@8.3.4': {} - "@types/uuid@9.0.8": {} + '@types/uuid@9.0.8': {} - "@types/verror@1.10.10": + '@types/verror@1.10.10': optional: true - "@types/w3c-web-hid@1.0.6": {} + '@types/w3c-web-hid@1.0.6': {} - "@types/w3c-web-usb@1.0.10": {} + '@types/w3c-web-usb@1.0.10': {} - "@types/web-bluetooth@0.0.20": {} + '@types/web-bluetooth@0.0.20': {} - "@types/webpack-env@1.18.4": {} + '@types/webpack-env@1.18.4': {} - "@types/which@3.0.3": {} + '@types/which@3.0.3': {} - "@types/wrap-ansi@3.0.0": {} + '@types/wrap-ansi@3.0.0': {} - "@types/write-file-atomic@4.0.3": + '@types/write-file-atomic@4.0.3': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/ws@7.4.7": + '@types/ws@7.4.7': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/ws@8.5.10": + '@types/ws@8.5.10': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 - "@types/yargs-parser@21.0.3": {} + '@types/yargs-parser@21.0.3': {} - "@types/yargs@13.0.12": + '@types/yargs@13.0.12': dependencies: - "@types/yargs-parser": 21.0.3 + '@types/yargs-parser': 21.0.3 - "@types/yargs@15.0.19": + '@types/yargs@15.0.19': dependencies: - "@types/yargs-parser": 21.0.3 + '@types/yargs-parser': 21.0.3 - "@types/yargs@16.0.9": + '@types/yargs@16.0.9': dependencies: - "@types/yargs-parser": 21.0.3 + '@types/yargs-parser': 21.0.3 - "@types/yargs@17.0.32": + '@types/yargs@17.0.32': dependencies: - "@types/yargs-parser": 21.0.3 + '@types/yargs-parser': 21.0.3 - "@types/yauzl@2.10.3": + '@types/yauzl@2.10.3': dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 optional: true - "@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3)": + '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3)': dependencies: - "@eslint-community/regexpp": 4.10.0 - "@typescript-eslint/parser": 5.62.0(eslint@8.57.0)(typescript@5.4.3) - "@typescript-eslint/scope-manager": 5.62.0 - "@typescript-eslint/type-utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) - "@typescript-eslint/utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) debug: 4.3.4 eslint: 8.57.0 graphemer: 1.4.0 @@ -61061,14 +44786,14 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3)": + '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3)': dependencies: - "@eslint-community/regexpp": 4.10.0 - "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.4.3) - "@typescript-eslint/scope-manager": 6.21.0 - "@typescript-eslint/type-utils": 6.21.0(eslint@8.57.0)(typescript@5.4.3) - "@typescript-eslint/utils": 6.21.0(eslint@8.57.0)(typescript@5.4.3) - "@typescript-eslint/visitor-keys": 6.21.0 + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/scope-manager': 6.21.0 + '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.3.4 eslint: 8.57.0 graphemer: 1.4.0 @@ -61081,19 +44806,19 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/experimental-utils@5.62.0(eslint@8.57.0)(typescript@5.4.3)": + '@typescript-eslint/experimental-utils@5.62.0(eslint@8.57.0)(typescript@5.4.3)': dependencies: - "@typescript-eslint/utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 transitivePeerDependencies: - supports-color - typescript - "@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5)": + '@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5)': dependencies: - "@typescript-eslint/scope-manager": 5.62.0 - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/typescript-estree": 5.62.0(typescript@4.9.5) + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) debug: 4.3.4 eslint: 8.57.0 optionalDependencies: @@ -61101,11 +44826,11 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3)": + '@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3)': dependencies: - "@typescript-eslint/scope-manager": 5.62.0 - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/typescript-estree": 5.62.0(typescript@5.4.3) + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.3) debug: 4.3.4 eslint: 8.57.0 optionalDependencies: @@ -61113,12 +44838,12 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2)": + '@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.2.2)': dependencies: - "@typescript-eslint/scope-manager": 6.21.0 - "@typescript-eslint/types": 6.21.0 - "@typescript-eslint/typescript-estree": 6.21.0(typescript@5.2.2) - "@typescript-eslint/visitor-keys": 6.21.0 + '@typescript-eslint/scope-manager': 6.21.0 + '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.2.2) + '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.3.4 eslint: 8.57.0 optionalDependencies: @@ -61126,12 +44851,12 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3)": + '@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3)': dependencies: - "@typescript-eslint/scope-manager": 6.21.0 - "@typescript-eslint/types": 6.21.0 - "@typescript-eslint/typescript-estree": 6.21.0(typescript@5.4.3) - "@typescript-eslint/visitor-keys": 6.21.0 + '@typescript-eslint/scope-manager': 6.21.0 + '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.3) + '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.3.4 eslint: 8.57.0 optionalDependencies: @@ -61139,20 +44864,20 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/scope-manager@5.62.0": + '@typescript-eslint/scope-manager@5.62.0': dependencies: - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/visitor-keys": 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 - "@typescript-eslint/scope-manager@6.21.0": + '@typescript-eslint/scope-manager@6.21.0': dependencies: - "@typescript-eslint/types": 6.21.0 - "@typescript-eslint/visitor-keys": 6.21.0 + '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/visitor-keys': 6.21.0 - "@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.4.3)": + '@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.4.3)': dependencies: - "@typescript-eslint/typescript-estree": 5.62.0(typescript@5.4.3) - "@typescript-eslint/utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.3) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) debug: 4.3.4 eslint: 8.57.0 tsutils: 3.21.0(typescript@5.4.3) @@ -61161,10 +44886,10 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.4.3)": + '@typescript-eslint/type-utils@6.21.0(eslint@8.57.0)(typescript@5.4.3)': dependencies: - "@typescript-eslint/typescript-estree": 6.21.0(typescript@5.4.3) - "@typescript-eslint/utils": 6.21.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.3) + '@typescript-eslint/utils': 6.21.0(eslint@8.57.0)(typescript@5.4.3) debug: 4.3.4 eslint: 8.57.0 ts-api-utils: 1.3.0(typescript@5.4.3) @@ -61173,14 +44898,14 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/types@5.62.0": {} + '@typescript-eslint/types@5.62.0': {} - "@typescript-eslint/types@6.21.0": {} + '@typescript-eslint/types@6.21.0': {} - "@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5)": + '@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5)': dependencies: - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/visitor-keys": 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -61191,10 +44916,10 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.3)": + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.3)': dependencies: - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/visitor-keys": 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/visitor-keys': 5.62.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -61205,10 +44930,10 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/typescript-estree@6.21.0(typescript@5.2.2)": + '@typescript-eslint/typescript-estree@6.21.0(typescript@5.2.2)': dependencies: - "@typescript-eslint/types": 6.21.0 - "@typescript-eslint/visitor-keys": 6.21.0 + '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -61220,10 +44945,10 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.3)": + '@typescript-eslint/typescript-estree@6.21.0(typescript@5.4.3)': dependencies: - "@typescript-eslint/types": 6.21.0 - "@typescript-eslint/visitor-keys": 6.21.0 + '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/visitor-keys': 6.21.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -61235,14 +44960,14 @@ snapshots: transitivePeerDependencies: - supports-color - "@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.3)": + '@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.4.3)': dependencies: - "@eslint-community/eslint-utils": 4.4.0(eslint@8.57.0) - "@types/json-schema": 7.0.15 - "@types/semver": 7.5.8 - "@typescript-eslint/scope-manager": 5.62.0 - "@typescript-eslint/types": 5.62.0 - "@typescript-eslint/typescript-estree": 5.62.0(typescript@5.4.3) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.8 + '@typescript-eslint/scope-manager': 5.62.0 + '@typescript-eslint/types': 5.62.0 + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.3) eslint: 8.57.0 eslint-scope: 5.1.1 semver: 7.6.3 @@ -61250,69 +44975,69 @@ snapshots: - supports-color - typescript - "@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.4.3)": + '@typescript-eslint/utils@6.21.0(eslint@8.57.0)(typescript@5.4.3)': dependencies: - "@eslint-community/eslint-utils": 4.4.0(eslint@8.57.0) - "@types/json-schema": 7.0.15 - "@types/semver": 7.5.8 - "@typescript-eslint/scope-manager": 6.21.0 - "@typescript-eslint/types": 6.21.0 - "@typescript-eslint/typescript-estree": 6.21.0(typescript@5.4.3) + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.8 + '@typescript-eslint/scope-manager': 6.21.0 + '@typescript-eslint/types': 6.21.0 + '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.3) eslint: 8.57.0 semver: 7.6.3 transitivePeerDependencies: - supports-color - typescript - "@typescript-eslint/visitor-keys@5.62.0": + '@typescript-eslint/visitor-keys@5.62.0': dependencies: - "@typescript-eslint/types": 5.62.0 + '@typescript-eslint/types': 5.62.0 eslint-visitor-keys: 3.4.3 - "@typescript-eslint/visitor-keys@6.21.0": + '@typescript-eslint/visitor-keys@6.21.0': dependencies: - "@typescript-eslint/types": 6.21.0 + '@typescript-eslint/types': 6.21.0 eslint-visitor-keys: 3.4.3 - "@uiw/codemirror-extensions-basic-setup@4.22.2(@codemirror/view@6.28.2)": + '@uiw/codemirror-extensions-basic-setup@4.22.2(@codemirror/view@6.28.2)': dependencies: - "@codemirror/autocomplete": 6.16.3(@codemirror/state@6.4.1)(@codemirror/view@6.28.2) - "@codemirror/commands": 6.6.0 - "@codemirror/language": 6.10.2 - "@codemirror/lint": 6.8.1 - "@codemirror/search": 6.5.6 - "@codemirror/state": 6.4.1 - "@codemirror/view": 6.28.2 + '@codemirror/autocomplete': 6.16.3(@codemirror/state@6.4.1)(@codemirror/view@6.28.2) + '@codemirror/commands': 6.6.0 + '@codemirror/language': 6.10.2 + '@codemirror/lint': 6.8.1 + '@codemirror/search': 6.5.6 + '@codemirror/state': 6.4.1 + '@codemirror/view': 6.28.2 - "@uiw/react-codemirror@4.22.2(@codemirror/view@6.28.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": + '@uiw/react-codemirror@4.22.2(@codemirror/view@6.28.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - "@babel/runtime": 7.24.1 - "@codemirror/commands": 6.6.0 - "@codemirror/state": 6.4.1 - "@codemirror/theme-one-dark": 6.1.2 - "@codemirror/view": 6.28.2 - "@uiw/codemirror-extensions-basic-setup": 4.22.2(@codemirror/view@6.28.2) + '@babel/runtime': 7.24.1 + '@codemirror/commands': 6.6.0 + '@codemirror/state': 6.4.1 + '@codemirror/theme-one-dark': 6.1.2 + '@codemirror/view': 6.28.2 + '@uiw/codemirror-extensions-basic-setup': 4.22.2(@codemirror/view@6.28.2) codemirror: 6.0.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - "@ungap/structured-clone@1.2.0": {} + '@ungap/structured-clone@1.2.0': {} - "@urql/core@2.3.6(graphql@15.8.0)": + '@urql/core@2.3.6(graphql@15.8.0)': dependencies: - "@graphql-typed-document-node/core": 3.2.0(graphql@15.8.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@15.8.0) graphql: 15.8.0 wonka: 4.0.15 - "@urql/exchange-retry@0.3.0(graphql@15.8.0)": + '@urql/exchange-retry@0.3.0(graphql@15.8.0)': dependencies: - "@urql/core": 2.3.6(graphql@15.8.0) + '@urql/core': 2.3.6(graphql@15.8.0) graphql: 15.8.0 wonka: 4.0.15 - "@vechain/ethers@4.0.27-5": + '@vechain/ethers@4.0.27-5': dependencies: - "@types/node": 10.17.60 + '@types/node': 10.17.60 aes-js: 3.0.0 bn.js: 4.12.0 elliptic: 6.5.4 @@ -61323,43 +45048,43 @@ snapshots: uuid: 2.0.1 xmlhttprequest: 1.8.0 - "@vitejs/plugin-react@3.1.0(vite@4.5.3)": + '@vitejs/plugin-react@3.1.0(vite@4.5.3)': dependencies: - "@babel/core": 7.24.3 - "@babel/plugin-transform-react-jsx-self": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx-source": 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) magic-string: 0.27.0 react-refresh: 0.14.0 vite: 4.5.3 transitivePeerDependencies: - supports-color - "@vitejs/plugin-react@4.2.1(vite@4.5.3(@types/node@20.12.12))": + '@vitejs/plugin-react@4.2.1(vite@4.5.3(@types/node@20.12.12))': dependencies: - "@babel/core": 7.24.3 - "@babel/plugin-transform-react-jsx-self": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx-source": 7.24.1(@babel/core@7.24.3) - "@types/babel__core": 7.20.5 + '@babel/core': 7.24.3 + '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) + '@types/babel__core': 7.20.5 react-refresh: 0.14.0 vite: 4.5.3(@types/node@20.12.12) transitivePeerDependencies: - supports-color - "@vue/cli-overlay@5.0.8": {} + '@vue/cli-overlay@5.0.8': {} - "@vue/cli-plugin-router@5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16))": + '@vue/cli-plugin-router@5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16))': dependencies: - "@vue/cli-service": 5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16) - "@vue/cli-shared-utils": 5.0.8 + '@vue/cli-service': 5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16) + '@vue/cli-shared-utils': 5.0.8 transitivePeerDependencies: - encoding - "@vue/cli-plugin-typescript@5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16))(eslint@8.57.0)(typescript@5.1.3)(vue-template-compiler@2.7.16)(vue@2.7.16)": + '@vue/cli-plugin-typescript@5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16))(eslint@8.57.0)(typescript@5.1.3)(vue-template-compiler@2.7.16)(vue@2.7.16)': dependencies: - "@babel/core": 7.24.3 - "@types/webpack-env": 1.18.4 - "@vue/cli-service": 5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16) - "@vue/cli-shared-utils": 5.0.8 + '@babel/core': 7.24.3 + '@types/webpack-env': 1.18.4 + '@vue/cli-service': 5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16) + '@vue/cli-shared-utils': 5.0.8 babel-loader: 8.3.0(@babel/core@7.24.3)(webpack@5.94.0) fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.57.0)(typescript@5.1.3)(vue-template-compiler@2.7.16)(webpack@5.94.0) globby: 11.1.0 @@ -61371,7 +45096,7 @@ snapshots: optionalDependencies: vue-template-compiler: 2.7.16 transitivePeerDependencies: - - "@swc/core" + - '@swc/core' - encoding - esbuild - eslint @@ -61380,23 +45105,23 @@ snapshots: - uglify-js - webpack-cli - "@vue/cli-plugin-vuex@5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16))": + '@vue/cli-plugin-vuex@5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16))': dependencies: - "@vue/cli-service": 5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16) + '@vue/cli-service': 5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16) - "@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16)": + '@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16)': dependencies: - "@babel/helper-compilation-targets": 7.23.6 - "@soda/friendly-errors-webpack-plugin": 1.8.1(webpack@5.94.0) - "@soda/get-current-script": 1.0.2 - "@types/minimist": 1.2.5 - "@vue/cli-overlay": 5.0.8 - "@vue/cli-plugin-router": 5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16)) - "@vue/cli-plugin-vuex": 5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16)) - "@vue/cli-shared-utils": 5.0.8 - "@vue/component-compiler-utils": 3.3.0(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@vue/vue-loader-v15": vue-loader@15.11.1(css-loader@6.10.0(webpack@5.94.0))(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(webpack@5.94.0) - "@vue/web-component-wrapper": 1.3.0 + '@babel/helper-compilation-targets': 7.23.6 + '@soda/friendly-errors-webpack-plugin': 1.8.1(webpack@5.94.0) + '@soda/get-current-script': 1.0.2 + '@types/minimist': 1.2.5 + '@vue/cli-overlay': 5.0.8 + '@vue/cli-plugin-router': 5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16)) + '@vue/cli-plugin-vuex': 5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16)) + '@vue/cli-shared-utils': 5.0.8 + '@vue/component-compiler-utils': 3.3.0(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@vue/vue-loader-v15': vue-loader@15.11.1(css-loader@6.10.0(webpack@5.94.0))(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(webpack@5.94.0) + '@vue/web-component-wrapper': 1.3.0 acorn: 8.11.3 acorn-walk: 8.3.2 address: 1.2.2 @@ -61444,10 +45169,10 @@ snapshots: optionalDependencies: vue-template-compiler: 2.7.16 transitivePeerDependencies: - - "@parcel/css" - - "@rspack/core" - - "@swc/core" - - "@vue/compiler-sfc" + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@vue/compiler-sfc' - arc-templates - atpl - babel-core @@ -61514,9 +45239,9 @@ snapshots: - webpack-cli - whiskers - "@vue/cli-shared-utils@5.0.8": + '@vue/cli-shared-utils@5.0.8': dependencies: - "@achrinza/node-ipc": 9.2.9 + '@achrinza/node-ipc': 9.2.9 chalk: 4.1.2 execa: 1.0.0 joi: 17.12.2 @@ -61531,49 +45256,49 @@ snapshots: transitivePeerDependencies: - encoding - "@vue/compiler-core@3.4.21": + '@vue/compiler-core@3.4.21': dependencies: - "@babel/parser": 7.24.1 - "@vue/shared": 3.4.21 + '@babel/parser': 7.24.1 + '@vue/shared': 3.4.21 entities: 4.5.0 estree-walker: 2.0.2 source-map-js: 1.2.0 optional: true - "@vue/compiler-dom@3.4.21": + '@vue/compiler-dom@3.4.21': dependencies: - "@vue/compiler-core": 3.4.21 - "@vue/shared": 3.4.21 + '@vue/compiler-core': 3.4.21 + '@vue/shared': 3.4.21 optional: true - "@vue/compiler-sfc@2.7.16": + '@vue/compiler-sfc@2.7.16': dependencies: - "@babel/parser": 7.24.1 + '@babel/parser': 7.24.1 postcss: 8.4.38 source-map: 0.6.1 optionalDependencies: prettier: 2.8.8 - "@vue/compiler-sfc@3.4.21": + '@vue/compiler-sfc@3.4.21': dependencies: - "@babel/parser": 7.24.1 - "@vue/compiler-core": 3.4.21 - "@vue/compiler-dom": 3.4.21 - "@vue/compiler-ssr": 3.4.21 - "@vue/shared": 3.4.21 + '@babel/parser': 7.24.1 + '@vue/compiler-core': 3.4.21 + '@vue/compiler-dom': 3.4.21 + '@vue/compiler-ssr': 3.4.21 + '@vue/shared': 3.4.21 estree-walker: 2.0.2 magic-string: 0.30.8 postcss: 8.4.38 source-map-js: 1.2.0 optional: true - "@vue/compiler-ssr@3.4.21": + '@vue/compiler-ssr@3.4.21': dependencies: - "@vue/compiler-dom": 3.4.21 - "@vue/shared": 3.4.21 + '@vue/compiler-dom': 3.4.21 + '@vue/shared': 3.4.21 optional: true - "@vue/component-compiler-utils@3.3.0(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)": + '@vue/component-compiler-utils@3.3.0(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: consolidate: 0.15.1(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) hash-sum: 1.0.2 @@ -61640,117 +45365,117 @@ snapshots: - walrus - whiskers - "@vue/shared@3.4.21": + '@vue/shared@3.4.21': optional: true - "@vue/web-component-wrapper@1.3.0": {} + '@vue/web-component-wrapper@1.3.0': {} - "@webassemblyjs/ast@1.12.1": + '@webassemblyjs/ast@1.12.1': dependencies: - "@webassemblyjs/helper-numbers": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 + '@webassemblyjs/helper-numbers': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 - "@webassemblyjs/floating-point-hex-parser@1.11.6": {} + '@webassemblyjs/floating-point-hex-parser@1.11.6': {} - "@webassemblyjs/helper-api-error@1.11.6": {} + '@webassemblyjs/helper-api-error@1.11.6': {} - "@webassemblyjs/helper-buffer@1.12.1": {} + '@webassemblyjs/helper-buffer@1.12.1': {} - "@webassemblyjs/helper-numbers@1.11.6": + '@webassemblyjs/helper-numbers@1.11.6': dependencies: - "@webassemblyjs/floating-point-hex-parser": 1.11.6 - "@webassemblyjs/helper-api-error": 1.11.6 - "@xtuc/long": 4.2.2 + '@webassemblyjs/floating-point-hex-parser': 1.11.6 + '@webassemblyjs/helper-api-error': 1.11.6 + '@xtuc/long': 4.2.2 - "@webassemblyjs/helper-wasm-bytecode@1.11.6": {} + '@webassemblyjs/helper-wasm-bytecode@1.11.6': {} - "@webassemblyjs/helper-wasm-section@1.12.1": + '@webassemblyjs/helper-wasm-section@1.12.1': dependencies: - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/helper-buffer": 1.12.1 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/wasm-gen": 1.12.1 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-buffer': 1.12.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/wasm-gen': 1.12.1 - "@webassemblyjs/ieee754@1.11.6": + '@webassemblyjs/ieee754@1.11.6': dependencies: - "@xtuc/ieee754": 1.2.0 + '@xtuc/ieee754': 1.2.0 - "@webassemblyjs/leb128@1.11.6": + '@webassemblyjs/leb128@1.11.6': dependencies: - "@xtuc/long": 4.2.2 + '@xtuc/long': 4.2.2 - "@webassemblyjs/utf8@1.11.6": {} + '@webassemblyjs/utf8@1.11.6': {} - "@webassemblyjs/wasm-edit@1.12.1": + '@webassemblyjs/wasm-edit@1.12.1': dependencies: - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/helper-buffer": 1.12.1 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/helper-wasm-section": 1.12.1 - "@webassemblyjs/wasm-gen": 1.12.1 - "@webassemblyjs/wasm-opt": 1.12.1 - "@webassemblyjs/wasm-parser": 1.12.1 - "@webassemblyjs/wast-printer": 1.12.1 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-buffer': 1.12.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/helper-wasm-section': 1.12.1 + '@webassemblyjs/wasm-gen': 1.12.1 + '@webassemblyjs/wasm-opt': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 + '@webassemblyjs/wast-printer': 1.12.1 - "@webassemblyjs/wasm-gen@1.12.1": + '@webassemblyjs/wasm-gen@1.12.1': dependencies: - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/ieee754": 1.11.6 - "@webassemblyjs/leb128": 1.11.6 - "@webassemblyjs/utf8": 1.11.6 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/ieee754': 1.11.6 + '@webassemblyjs/leb128': 1.11.6 + '@webassemblyjs/utf8': 1.11.6 - "@webassemblyjs/wasm-opt@1.12.1": + '@webassemblyjs/wasm-opt@1.12.1': dependencies: - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/helper-buffer": 1.12.1 - "@webassemblyjs/wasm-gen": 1.12.1 - "@webassemblyjs/wasm-parser": 1.12.1 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-buffer': 1.12.1 + '@webassemblyjs/wasm-gen': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 - "@webassemblyjs/wasm-parser@1.12.1": + '@webassemblyjs/wasm-parser@1.12.1': dependencies: - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/helper-api-error": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/ieee754": 1.11.6 - "@webassemblyjs/leb128": 1.11.6 - "@webassemblyjs/utf8": 1.11.6 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/helper-api-error': 1.11.6 + '@webassemblyjs/helper-wasm-bytecode': 1.11.6 + '@webassemblyjs/ieee754': 1.11.6 + '@webassemblyjs/leb128': 1.11.6 + '@webassemblyjs/utf8': 1.11.6 - "@webassemblyjs/wast-printer@1.12.1": + '@webassemblyjs/wast-printer@1.12.1': dependencies: - "@webassemblyjs/ast": 1.12.1 - "@xtuc/long": 4.2.2 + '@webassemblyjs/ast': 1.12.1 + '@xtuc/long': 4.2.2 - "@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack@5.91.0(webpack-cli@4.10.0))": + '@webpack-cli/configtest@1.2.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack@5.91.0(webpack-cli@4.10.0))': dependencies: webpack: 5.91.0(webpack-cli@4.10.0) webpack-cli: 4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0) - "@webpack-cli/info@1.5.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))": + '@webpack-cli/info@1.5.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))': dependencies: envinfo: 7.11.1 webpack-cli: 4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0) - "@webpack-cli/serve@1.7.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0))": + '@webpack-cli/serve@1.7.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0))': dependencies: webpack-cli: 4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0) optionalDependencies: webpack-dev-server: 4.15.2(webpack-cli@4.10.0)(webpack@5.91.0) - "@xmldom/xmldom@0.7.13": {} + '@xmldom/xmldom@0.7.13': {} - "@xmldom/xmldom@0.8.10": {} + '@xmldom/xmldom@0.8.10': {} - "@xrplf/isomorphic@1.0.0": + '@xrplf/isomorphic@1.0.0': dependencies: - "@noble/hashes": 1.4.0 + '@noble/hashes': 1.4.0 eventemitter3: 5.0.1 ws: 8.18.0 transitivePeerDependencies: - bufferutil - utf-8-validate - "@xstate/react@1.6.3(@types/react@18.2.73)(react@18.2.0)(xstate@4.38.3)": + '@xstate/react@1.6.3(@types/react@18.2.73)(react@18.2.0)(xstate@4.38.3)': dependencies: react: 18.2.0 use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.73)(react@18.2.0) @@ -61758,46 +45483,46 @@ snapshots: optionalDependencies: xstate: 4.38.3 transitivePeerDependencies: - - "@types/react" + - '@types/react' - "@xtuc/ieee754@1.2.0": {} + '@xtuc/ieee754@1.2.0': {} - "@xtuc/long@4.2.2": {} + '@xtuc/long@4.2.2': {} - "@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20)": + '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20)': dependencies: esbuild: 0.18.20 tslib: 2.6.2 - "@yarnpkg/fslib@2.10.3": + '@yarnpkg/fslib@2.10.3': dependencies: - "@yarnpkg/libzip": 2.3.0 + '@yarnpkg/libzip': 2.3.0 tslib: 2.6.2 - "@yarnpkg/libzip@2.3.0": + '@yarnpkg/libzip@2.3.0': dependencies: - "@types/emscripten": 1.39.10 + '@types/emscripten': 1.39.10 tslib: 2.6.2 - "@zondax/cbor@8.1.0-zondax-no-bigint": + '@zondax/cbor@8.1.0-zondax-no-bigint': dependencies: big-integer: 1.6.52 nofilter: 3.1.0 - "@zondax/ledger-casper@2.6.1": + '@zondax/ledger-casper@2.6.1': dependencies: - "@babel/runtime": 7.24.1 - "@ledgerhq/hw-transport": 6.30.6 - "@types/ledgerhq__hw-transport": 4.21.8 + '@babel/runtime': 7.24.1 + '@ledgerhq/hw-transport': 6.30.6 + '@types/ledgerhq__hw-transport': 4.21.8 - "@zondax/ledger-cosmos-js@3.0.3(@types/node@20.12.12)(eslint@8.57.0)(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.1.3)": + '@zondax/ledger-cosmos-js@3.0.3(@types/node@20.12.12)(eslint@8.57.0)(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.1.3)': dependencies: - "@babel/runtime": 7.24.1 - "@ledgerhq/hw-transport": 6.27.1 - "@ledgerhq/hw-transport-u2f": 5.36.0-deprecated - "@types/node": 20.12.12 - "@vue/cli-plugin-typescript": 5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16))(eslint@8.57.0)(typescript@5.1.3)(vue-template-compiler@2.7.16)(vue@2.7.16) - "@vue/cli-service": 5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16) + '@babel/runtime': 7.24.1 + '@ledgerhq/hw-transport': 6.27.1 + '@ledgerhq/hw-transport-u2f': 5.36.0-deprecated + '@types/node': 20.12.12 + '@vue/cli-plugin-typescript': 5.0.8(@vue/cli-service@5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16))(eslint@8.57.0)(typescript@5.1.3)(vue-template-compiler@2.7.16)(vue@2.7.16) + '@vue/cli-service': 5.0.8(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(vue@2.7.16) bech32: 1.1.4 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) crypto-browserify: 3.12.0 @@ -61806,10 +45531,10 @@ snapshots: vue: 2.7.16 vue-template-compiler: 2.7.16 transitivePeerDependencies: - - "@parcel/css" - - "@rspack/core" - - "@swc/core" - - "@vue/compiler-sfc" + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@vue/compiler-sfc' - arc-templates - atpl - babel-core @@ -61884,36 +45609,36 @@ snapshots: - webpack-sources - whiskers - "@zondax/ledger-filecoin@0.11.2": + '@zondax/ledger-filecoin@0.11.2': dependencies: - "@babel/runtime": 7.24.1 - "@ledgerhq/hw-transport": 5.51.1 + '@babel/runtime': 7.24.1 + '@ledgerhq/hw-transport': 5.51.1 - "@zondax/ledger-icp@0.7.0": + '@zondax/ledger-icp@0.7.0': dependencies: - "@zondax/ledger-js": 0.2.2 + '@zondax/ledger-js': 0.2.2 - "@zondax/ledger-js@0.2.2": + '@zondax/ledger-js@0.2.2': dependencies: - "@ledgerhq/hw-transport": 6.28.1 + '@ledgerhq/hw-transport': 6.28.1 - "@zondax/ledger-js@0.8.2": + '@zondax/ledger-js@0.8.2': dependencies: - "@ledgerhq/hw-transport": 6.30.6 + '@ledgerhq/hw-transport': 6.30.6 - "@zondax/ledger-stacks@1.0.4": + '@zondax/ledger-stacks@1.0.4': dependencies: - "@babel/runtime": 7.24.1 - "@ledgerhq/hw-transport": 6.30.6 - "@stacks/transactions": 4.3.8 + '@babel/runtime': 7.24.1 + '@ledgerhq/hw-transport': 6.30.6 + '@stacks/transactions': 4.3.8 varuint-bitcoin: 1.1.2 transitivePeerDependencies: - encoding - "@zondax/ledger-substrate@0.44.2": + '@zondax/ledger-substrate@0.44.2': dependencies: - "@ledgerhq/hw-transport": 6.30.6 - "@zondax/ledger-js": 0.8.2 + '@ledgerhq/hw-transport': 6.30.6 + '@zondax/ledger-js': 0.8.2 axios: 1.7.7 JSONStream@1.3.5: @@ -62094,7 +45819,7 @@ snapshots: allure-playwright@2.15.1: dependencies: - "@playwright/test": 1.45.0 + '@playwright/test': 1.45.0 allure-js-commons: 2.15.1 anser@1.4.10: {} @@ -62168,12 +45893,12 @@ snapshots: app-builder-lib@24.13.3(dmg-builder@24.13.3(lodash@4.17.21))(lodash@4.17.21): dependencies: - "@develar/schema-utils": 2.6.5 - "@electron/notarize": 2.2.1 - "@electron/osx-sign": 1.0.5 - "@electron/universal": 1.5.1 - "@malept/flatpak-bundler": 0.4.0 - "@types/fs-extra": 9.0.13 + '@develar/schema-utils': 2.6.5 + '@electron/notarize': 2.2.1 + '@electron/osx-sign': 1.0.5 + '@electron/universal': 1.5.1 + '@malept/flatpak-bundler': 0.4.0 + '@types/fs-extra': 9.0.13 async-exit-hook: 2.0.1 bluebird-lst: 1.0.9 builder-util: 24.13.1 @@ -62454,7 +46179,7 @@ snapshots: ltgt: 2.2.1 tiny-queue: 0.2.0 optionalDependencies: - "@react-native-async-storage/async-storage": 1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) + '@react-native-async-storage/async-storage': 1.23.1(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0)) at-least-node@1.0.0: {} @@ -62529,14 +46254,14 @@ snapshots: babel-core@7.0.0-bridge.0(@babel/core@7.24.3): dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 babel-jest@27.5.1(@babel/core@7.24.3): dependencies: - "@babel/core": 7.24.3 - "@jest/transform": 27.5.1 - "@jest/types": 27.5.1 - "@types/babel__core": 7.20.5 + '@babel/core': 7.24.3 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 babel-preset-jest: 27.5.1(@babel/core@7.24.3) chalk: 4.1.2 @@ -62548,9 +46273,9 @@ snapshots: babel-jest@28.1.3(@babel/core@7.24.3): dependencies: - "@babel/core": 7.24.3 - "@jest/transform": 28.1.3 - "@types/babel__core": 7.20.5 + '@babel/core': 7.24.3 + '@jest/transform': 28.1.3 + '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 babel-preset-jest: 28.1.3(@babel/core@7.24.3) chalk: 4.1.2 @@ -62562,9 +46287,9 @@ snapshots: babel-jest@29.7.0(@babel/core@7.24.3): dependencies: - "@babel/core": 7.24.3 - "@jest/transform": 29.7.0 - "@types/babel__core": 7.20.5 + '@babel/core': 7.24.3 + '@jest/transform': 29.7.0 + '@types/babel__core': 7.20.5 babel-plugin-istanbul: 6.1.1 babel-preset-jest: 29.6.3(@babel/core@7.24.3) chalk: 4.1.2 @@ -62576,7 +46301,7 @@ snapshots: babel-loader@8.3.0(@babel/core@7.24.3)(webpack@5.91.0(esbuild@0.19.12)): dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 @@ -62585,7 +46310,7 @@ snapshots: babel-loader@8.3.0(@babel/core@7.24.3)(webpack@5.91.0(metro@0.80.12)): dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 @@ -62594,7 +46319,7 @@ snapshots: babel-loader@8.3.0(@babel/core@7.24.3)(webpack@5.91.0(webpack-cli@4.10.0)): dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 @@ -62603,7 +46328,7 @@ snapshots: babel-loader@8.3.0(@babel/core@7.24.3)(webpack@5.94.0): dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 @@ -62612,14 +46337,14 @@ snapshots: babel-loader@9.1.3(@babel/core@7.24.3)(webpack@5.94.0(@swc/core@1.4.11)(esbuild@0.19.12)): dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 find-cache-dir: 4.0.0 schema-utils: 4.2.0 webpack: 5.94.0(@swc/core@1.4.11)(esbuild@0.19.12) babel-loader@9.1.3(@babel/core@7.24.3)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)): dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 find-cache-dir: 4.0.0 schema-utils: 4.2.0 webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.12) @@ -62628,10 +46353,10 @@ snapshots: babel-plugin-emotion@10.2.2: dependencies: - "@babel/helper-module-imports": 7.24.3 - "@emotion/hash": 0.8.0 - "@emotion/memoize": 0.7.4 - "@emotion/serialize": 0.11.16 + '@babel/helper-module-imports': 7.24.3 + '@emotion/hash': 0.8.0 + '@emotion/memoize': 0.7.4 + '@emotion/serialize': 0.11.16 babel-plugin-macros: 2.8.0 babel-plugin-syntax-jsx: 6.18.0 convert-source-map: 1.9.0 @@ -62641,9 +46366,9 @@ snapshots: babel-plugin-istanbul@6.1.1: dependencies: - "@babel/helper-plugin-utils": 7.24.0 - "@istanbuljs/load-nyc-config": 1.1.0 - "@istanbuljs/schema": 0.1.3 + '@babel/helper-plugin-utils': 7.24.0 + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.3 istanbul-lib-instrument: 5.2.1 test-exclude: 6.0.0 transitivePeerDependencies: @@ -62651,34 +46376,34 @@ snapshots: babel-plugin-jest-hoist@27.5.1: dependencies: - "@babel/template": 7.24.0 - "@babel/types": 7.24.0 - "@types/babel__core": 7.20.5 - "@types/babel__traverse": 7.20.5 + '@babel/template': 7.24.0 + '@babel/types': 7.24.0 + '@types/babel__core': 7.20.5 + '@types/babel__traverse': 7.20.5 babel-plugin-jest-hoist@28.1.3: dependencies: - "@babel/template": 7.24.0 - "@babel/types": 7.24.0 - "@types/babel__core": 7.20.5 - "@types/babel__traverse": 7.20.5 + '@babel/template': 7.24.0 + '@babel/types': 7.24.0 + '@types/babel__core': 7.20.5 + '@types/babel__traverse': 7.20.5 babel-plugin-jest-hoist@29.6.3: dependencies: - "@babel/template": 7.24.0 - "@babel/types": 7.24.0 - "@types/babel__core": 7.20.5 - "@types/babel__traverse": 7.20.5 + '@babel/template': 7.24.0 + '@babel/types': 7.24.0 + '@types/babel__core': 7.20.5 + '@types/babel__traverse': 7.20.5 babel-plugin-macros@2.8.0: dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 cosmiconfig: 6.0.0 resolve: 1.22.8 babel-plugin-macros@3.1.0: dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 cosmiconfig: 7.1.0 resolve: 1.22.8 @@ -62700,36 +46425,36 @@ snapshots: babel-plugin-named-asset-import@0.3.8(@babel/core@7.24.3): dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.24.3): dependencies: - "@babel/compat-data": 7.24.1 - "@babel/core": 7.24.3 - "@babel/helper-define-polyfill-provider": 0.6.1(@babel/core@7.24.3) + '@babel/compat-data': 7.24.1 + '@babel/core': 7.24.3 + '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3) semver: 6.3.1 transitivePeerDependencies: - supports-color babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.3): dependencies: - "@babel/core": 7.24.3 - "@babel/helper-define-polyfill-provider": 0.6.1(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3) core-js-compat: 3.36.1 transitivePeerDependencies: - supports-color babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.24.3): dependencies: - "@babel/core": 7.24.3 - "@babel/helper-define-polyfill-provider": 0.6.1(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.24.3) transitivePeerDependencies: - supports-color babel-plugin-react-compiler@0.0.0-experimental-592953e-20240517: dependencies: - "@babel/generator": 7.2.0 - "@babel/types": 7.24.0 + '@babel/generator': 7.2.0 + '@babel/types': 7.24.0 chalk: 4.1.2 invariant: 2.2.4 pretty-format: 24.9.0 @@ -62738,7 +46463,7 @@ snapshots: babel-plugin-react-docgen-typescript@1.5.1(@babel/core@7.24.3)(typescript@5.4.3): dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 react-docgen-typescript: 1.22.0(typescript@5.4.3) transitivePeerDependencies: - typescript @@ -62749,58 +46474,58 @@ snapshots: babel-plugin-styled-components@2.1.4(@babel/core@7.24.3)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0)): dependencies: - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-module-imports": 7.24.3 - "@babel/plugin-syntax-jsx": 7.24.1(@babel/core@7.24.3) + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.24.3 + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) lodash: 4.17.21 picomatch: 2.3.1 styled-components: 5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' babel-plugin-styled-components@2.1.4(@babel/core@7.24.3)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0)): dependencies: - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-module-imports": 7.24.3 - "@babel/plugin-syntax-jsx": 7.24.1(@babel/core@7.24.3) + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.24.3 + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) lodash: 4.17.21 picomatch: 2.3.1 styled-components: 5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' babel-plugin-styled-components@2.1.4(@babel/core@7.24.3)(styled-components@5.3.11(@babel/core@7.24.3)(react-is@18.2.0)(react@18.2.0)): dependencies: - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-module-imports": 7.24.3 - "@babel/plugin-syntax-jsx": 7.24.1(@babel/core@7.24.3) + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.24.3 + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) lodash: 4.17.21 picomatch: 2.3.1 styled-components: 5.3.11(@babel/core@7.24.3)(react-is@18.2.0)(react@18.2.0) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' babel-plugin-styled-components@2.1.4(styled-components@5.3.11(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0)): dependencies: - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-module-imports": 7.24.3 - "@babel/plugin-syntax-jsx": 7.24.1 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.24.3 + '@babel/plugin-syntax-jsx': 7.24.1 lodash: 4.17.21 picomatch: 2.3.1 styled-components: 5.3.11(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' babel-plugin-styled-components@2.1.4(styled-components@5.3.11(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0)): dependencies: - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-module-imports": 7.24.3 - "@babel/plugin-syntax-jsx": 7.24.1 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-module-imports': 7.24.3 + '@babel/plugin-syntax-jsx': 7.24.1 lodash: 4.17.21 picomatch: 2.3.1 styled-components: 5.3.11(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' babel-plugin-syntax-jsx@6.18.0: {} @@ -62808,140 +46533,140 @@ snapshots: babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.3): dependencies: - "@babel/plugin-syntax-flow": 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' babel-plugin-transform-react-remove-prop-types@0.4.24: {} babel-preset-current-node-syntax@1.0.1(@babel/core@7.24.3): dependencies: - "@babel/core": 7.24.3 - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.24.3) - "@babel/plugin-syntax-bigint": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.24.3) - "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.24.3) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.24.3) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.24.3) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.3) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.3) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.3) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.3) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.3) babel-preset-expo@11.0.15(@babel/core@7.24.3): dependencies: - "@babel/plugin-proposal-decorators": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-export-namespace-from": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-object-rest-spread": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) - "@babel/preset-react": 7.24.1(@babel/core@7.24.3) - "@babel/preset-typescript": 7.24.1(@babel/core@7.24.3) - "@react-native/babel-preset": 0.74.87(@babel/core@7.24.3) + '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-object-rest-spread': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) + '@babel/preset-react': 7.24.1(@babel/core@7.24.3) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) + '@react-native/babel-preset': 0.74.87(@babel/core@7.24.3) babel-plugin-react-compiler: 0.0.0-experimental-592953e-20240517 babel-plugin-react-native-web: 0.19.10 react-refresh: 0.14.2 transitivePeerDependencies: - - "@babel/core" - - "@babel/preset-env" + - '@babel/core' + - '@babel/preset-env' - supports-color babel-preset-expo@9.5.2(@babel/core@7.24.3): dependencies: - "@babel/plugin-proposal-decorators": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-proposal-export-namespace-from": 7.18.9(@babel/core@7.24.3) - "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) - "@babel/preset-env": 7.24.3(@babel/core@7.24.3) + '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-proposal-export-namespace-from': 7.18.9(@babel/core@7.24.3) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) + '@babel/preset-env': 7.24.3(@babel/core@7.24.3) babel-plugin-module-resolver: 5.0.0 babel-plugin-react-native-web: 0.18.12 metro-react-native-babel-preset: 0.76.8(@babel/core@7.24.3) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color babel-preset-expo@9.9.0(@babel/core@7.24.3): dependencies: - "@babel/plugin-proposal-decorators": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.24.3) - "@babel/plugin-transform-export-namespace-from": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) - "@babel/preset-env": 7.24.3(@babel/core@7.24.3) - "@babel/preset-react": 7.24.1(@babel/core@7.24.3) + '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) + '@babel/plugin-transform-export-namespace-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) + '@babel/preset-env': 7.24.3(@babel/core@7.24.3) + '@babel/preset-react': 7.24.1(@babel/core@7.24.3) babel-plugin-module-resolver: 5.0.0 babel-plugin-react-native-web: 0.18.12 metro-react-native-babel-preset: 0.76.8(@babel/core@7.24.3) transitivePeerDependencies: - - "@babel/core" + - '@babel/core' - supports-color babel-preset-fbjs@3.4.0(@babel/core@7.24.3): dependencies: - "@babel/core": 7.24.3 - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.24.3) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.24.3) - "@babel/plugin-syntax-flow": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-syntax-jsx": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-block-scoped-functions": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-block-scoping": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-classes": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-computed-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-destructuring": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-flow-strip-types": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-for-of": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-function-name": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-literals": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-member-expression-literals": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-object-super": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-property-literals": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-display-name": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) - "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-spread": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-template-literals": 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.3) + '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-block-scoped-functions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-for-of': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-member-expression-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-object-super': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-property-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) + '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.3) babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 babel-preset-jest@27.5.1(@babel/core@7.24.3): dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 babel-plugin-jest-hoist: 27.5.1 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3) babel-preset-jest@28.1.3(@babel/core@7.24.3): dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 babel-plugin-jest-hoist: 28.1.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3) babel-preset-jest@29.6.3(@babel/core@7.24.3): dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 babel-plugin-jest-hoist: 29.6.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3) babel-preset-react-app@10.0.1: dependencies: - "@babel/core": 7.24.3 - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-decorators": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-numeric-separator": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.24.3) - "@babel/plugin-proposal-private-methods": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-private-property-in-object": 7.21.11(@babel/core@7.24.3) - "@babel/plugin-transform-flow-strip-types": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-display-name": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-runtime": 7.24.3(@babel/core@7.24.3) - "@babel/preset-env": 7.24.3(@babel/core@7.24.3) - "@babel/preset-react": 7.24.1(@babel/core@7.24.3) - "@babel/preset-typescript": 7.24.1(@babel/core@7.24.3) - "@babel/runtime": 7.25.0 + '@babel/core': 7.24.3 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) + '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.24.3) + '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) + '@babel/preset-env': 7.24.3(@babel/core@7.24.3) + '@babel/preset-react': 7.24.1(@babel/core@7.24.3) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) + '@babel/runtime': 7.25.0 babel-plugin-macros: 3.1.0 babel-plugin-transform-react-remove-prop-types: 0.4.24 transitivePeerDependencies: @@ -63066,7 +46791,7 @@ snapshots: bip32@2.0.6: dependencies: - "@types/node": 10.12.18 + '@types/node': 10.12.18 bs58check: 2.1.2 create-hash: 1.2.0 create-hmac: 1.1.7 @@ -63076,21 +46801,21 @@ snapshots: bip32@4.0.0: dependencies: - "@noble/hashes": 1.4.0 - "@scure/base": 1.1.6 + '@noble/hashes': 1.4.0 + '@scure/base': 1.1.6 typeforce: 1.18.0 wif: 2.0.6 bip39@3.0.2: dependencies: - "@types/node": 11.11.6 + '@types/node': 11.11.6 create-hash: 1.2.0 pbkdf2: 3.1.2 randombytes: 2.1.0 bip39@3.1.0: dependencies: - "@noble/hashes": 1.4.0 + '@noble/hashes': 1.4.0 bip66@1.1.5: dependencies: @@ -63336,7 +47061,7 @@ snapshots: bs58check@3.0.1: dependencies: - "@noble/hashes": 1.4.0 + '@noble/hashes': 1.4.0 bs58: 5.0.0 bser@2.1.1: @@ -63424,7 +47149,7 @@ snapshots: builder-util@24.13.1: dependencies: 7zip-bin: 5.2.0 - "@types/debug": 4.1.12 + '@types/debug': 4.1.12 app-builder-bin: 4.0.0 bluebird-lst: 1.0.9 builder-util-runtime: 9.2.4 @@ -63455,14 +47180,14 @@ snapshots: bunyamin@1.5.2: dependencies: - "@flatten-js/interval-tree": 1.1.3 + '@flatten-js/interval-tree': 1.1.3 multi-sort-stream: 1.0.4 stream-json: 1.8.0 trace-event-lib: 1.4.1 bunyamin@1.5.2(bunyan@2.0.5): dependencies: - "@flatten-js/interval-tree": 1.1.3 + '@flatten-js/interval-tree': 1.1.3 multi-sort-stream: 1.0.4 stream-json: 1.8.0 trace-event-lib: 1.4.1 @@ -63471,7 +47196,7 @@ snapshots: bunyamin@1.6.3: dependencies: - "@flatten-js/interval-tree": 1.1.3 + '@flatten-js/interval-tree': 1.1.3 multi-sort-stream: 1.0.4 stream-json: 1.8.0 trace-event-lib: 1.4.1 @@ -63520,15 +47245,15 @@ snapshots: c32check@2.0.0: dependencies: - "@noble/hashes": 1.4.0 + '@noble/hashes': 1.4.0 base-x: 4.0.0 cac@6.7.14: {} cacache@15.3.0: dependencies: - "@npmcli/fs": 1.1.1 - "@npmcli/move-file": 1.1.2 + '@npmcli/fs': 1.1.1 + '@npmcli/move-file': 1.1.2 chownr: 2.0.0 fs-minipass: 2.1.0 glob: 7.2.3 @@ -63550,7 +47275,7 @@ snapshots: cacache@18.0.4: dependencies: - "@npmcli/fs": 3.1.1 + '@npmcli/fs': 3.1.1 fs-minipass: 3.0.3 glob: 10.3.12 lru-cache: 10.2.0 @@ -63661,17 +47386,17 @@ snapshots: casper-js-sdk@2.15.4: dependencies: - "@ethersproject/bignumber": 5.7.0 - "@ethersproject/bytes": 5.7.0 - "@ethersproject/constants": 5.7.0 - "@noble/curves": 1.4.0 - "@noble/ed25519": 1.7.3 - "@noble/hashes": 1.4.0 - "@noble/secp256k1": 1.7.1 - "@open-rpc/client-js": 1.8.1 - "@scure/bip32": 1.4.0 - "@scure/bip39": 1.3.0 - "@types/ws": 8.5.10 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@noble/curves': 1.4.0 + '@noble/ed25519': 1.7.3 + '@noble/hashes': 1.4.0 + '@noble/secp256k1': 1.7.1 + '@open-rpc/client-js': 1.8.1 + '@scure/bip32': 1.4.0 + '@scure/bip39': 1.3.0 + '@types/ws': 8.5.10 eventsource: 2.0.2 glob: 7.2.3 humanize-duration: 3.31.0 @@ -63679,7 +47404,7 @@ snapshots: lodash: 4.17.21 node-fetch: 2.6.13 reflect-metadata: 0.1.14 - ts-results: "@casperlabs/ts-results@3.3.5" + ts-results: '@casperlabs/ts-results@3.3.5' typedjson: 1.8.0 transitivePeerDependencies: - bufferutil @@ -63810,7 +47535,7 @@ snapshots: chrome-launcher@0.15.2: dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 lighthouse-logger: 1.4.2 @@ -63886,7 +47611,7 @@ snapshots: dependencies: string-width: 4.2.3 optionalDependencies: - "@colors/colors": 1.5.0 + '@colors/colors': 1.5.0 cli-truncate@0.2.1: dependencies: @@ -63976,7 +47701,7 @@ snapshots: coa@2.0.2: dependencies: - "@types/q": 1.5.8 + '@types/q': 1.5.8 chalk: 2.4.2 q: 1.5.1 @@ -63984,13 +47709,13 @@ snapshots: codemirror@6.0.1: dependencies: - "@codemirror/autocomplete": 6.16.3(@codemirror/state@6.4.1)(@codemirror/view@6.28.2) - "@codemirror/commands": 6.6.0 - "@codemirror/language": 6.10.2 - "@codemirror/lint": 6.8.1 - "@codemirror/search": 6.5.6 - "@codemirror/state": 6.4.1 - "@codemirror/view": 6.28.2 + '@codemirror/autocomplete': 6.16.3(@codemirror/state@6.4.1)(@codemirror/view@6.28.2) + '@codemirror/commands': 6.6.0 + '@codemirror/language': 6.10.2 + '@codemirror/lint': 6.8.1 + '@codemirror/search': 6.5.6 + '@codemirror/state': 6.4.1 + '@codemirror/view': 6.28.2 coininfo@5.2.1: dependencies: @@ -64303,7 +48028,7 @@ snapshots: cosmiconfig-typescript-loader@4.4.0(@types/node@20.5.1)(cosmiconfig@8.3.6(typescript@5.4.5))(ts-node@10.9.2(@types/node@20.5.1)(typescript@5.4.5))(typescript@5.4.5): dependencies: - "@types/node": 20.5.1 + '@types/node': 20.5.1 cosmiconfig: 8.3.6(typescript@5.4.5) ts-node: 10.9.2(@types/node@20.5.1)(typescript@5.4.5) typescript: 5.4.5 @@ -64317,7 +48042,7 @@ snapshots: cosmiconfig@6.0.0: dependencies: - "@types/parse-json": 4.0.2 + '@types/parse-json': 4.0.2 import-fresh: 3.3.0 parse-json: 5.2.0 path-type: 4.0.0 @@ -64325,7 +48050,7 @@ snapshots: cosmiconfig@7.1.0: dependencies: - "@types/parse-json": 4.0.2 + '@types/parse-json': 4.0.2 import-fresh: 3.3.0 parse-json: 5.2.0 path-type: 4.0.0 @@ -64395,7 +48120,7 @@ snapshots: create-jest@29.7.0: dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -64403,7 +48128,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -64411,7 +48136,7 @@ snapshots: create-jest@29.7.0(@types/node@18.19.26)(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)): dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -64419,7 +48144,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -64427,7 +48152,7 @@ snapshots: create-jest@29.7.0(@types/node@20.12.12): dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -64435,7 +48160,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -64443,7 +48168,7 @@ snapshots: create-jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)): dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -64451,7 +48176,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -64459,7 +48184,7 @@ snapshots: create-jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)): dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -64467,7 +48192,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -64475,7 +48200,7 @@ snapshots: create-jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)): dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -64483,7 +48208,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -64491,7 +48216,7 @@ snapshots: create-jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)): dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -64499,7 +48224,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -64507,7 +48232,7 @@ snapshots: create-jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)): dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -64515,7 +48240,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -64523,7 +48248,7 @@ snapshots: create-jest@29.7.0(ts-node@10.9.2(typescript@5.4.3)): dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -64531,7 +48256,7 @@ snapshots: jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -65100,7 +48825,7 @@ snapshots: date-fns@2.30.0: dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 dateformat@4.6.3: {} @@ -65257,7 +48982,7 @@ snapshots: del@4.1.1: dependencies: - "@types/glob": 7.2.0 + '@types/glob': 7.2.0 globby: 6.1.0 is-path-cwd: 2.2.0 is-path-in-cwd: 2.1.0 @@ -65300,7 +49025,7 @@ snapshots: deprecated-react-native-prop-types@2.3.0: dependencies: - "@react-native/normalize-color": 2.1.0 + '@react-native/normalize-color': 2.1.0 invariant: 2.2.4 prop-types: 15.8.1 @@ -65356,7 +49081,7 @@ snapshots: detox@20.26.2(patch_hash=yanhspfjw3apvvf4gev5ovygia)(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3))): dependencies: - "@jest/reporters": 29.7.0 + '@jest/reporters': 29.7.0 ajv: 8.17.1 bunyan: 1.8.15 bunyan-debug-stream: 3.1.0(bunyan@1.8.15) @@ -65398,9 +49123,9 @@ snapshots: optionalDependencies: jest: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) transitivePeerDependencies: - - "@jest/environment" - - "@jest/types" - - "@types/bunyan" + - '@jest/environment' + - '@jest/types' + - '@types/bunyan' - babel-plugin-macros - bufferutil - jest-environment-jsdom @@ -65468,8 +49193,8 @@ snapshots: dmg-license@1.0.11: dependencies: - "@types/plist": 3.0.2 - "@types/verror": 1.10.10 + '@types/plist': 3.0.2 + '@types/verror': 1.10.10 ajv: 6.12.6 crc: 3.8.0 iconv-corefoundation: 1.1.7 @@ -65480,7 +49205,7 @@ snapshots: dns-packet@5.6.1: dependencies: - "@leichtgewicht/ip-codec": 2.0.5 + '@leichtgewicht/ip-codec': 2.0.5 docker-compose@0.24.8: dependencies: @@ -65500,11 +49225,11 @@ snapshots: documentation@14.0.2: dependencies: - "@babel/core": 7.24.3 - "@babel/generator": 7.24.1 - "@babel/parser": 7.24.1 - "@babel/traverse": 7.24.1 - "@babel/types": 7.24.0 + '@babel/core': 7.24.3 + '@babel/generator': 7.24.1 + '@babel/parser': 7.24.1 + '@babel/traverse': 7.24.1 + '@babel/types': 7.24.0 chalk: 5.3.0 chokidar: 3.6.0 diff: 5.2.0 @@ -65539,7 +49264,7 @@ snapshots: vfile-sort: 3.0.1 yargs: 17.7.2 optionalDependencies: - "@vue/compiler-sfc": 3.4.21 + '@vue/compiler-sfc': 3.4.21 vue-template-compiler: 2.7.16 transitivePeerDependencies: - supports-color @@ -65554,7 +49279,7 @@ snapshots: dom-helpers@5.2.1: dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 csstype: 3.1.3 dom-serializer@0.2.2: @@ -65749,7 +49474,7 @@ snapshots: electron-publish@24.13.1: dependencies: - "@types/fs-extra": 9.0.13 + '@types/fs-extra': 9.0.13 builder-util: 24.13.1 builder-util-runtime: 9.2.4 chalk: 4.1.2 @@ -65781,8 +49506,8 @@ snapshots: electron@32.0.2: dependencies: - "@electron/get": 2.0.3 - "@types/node": 20.12.12 + '@electron/get': 2.0.3 + '@types/node': 20.12.12 extract-zip: 2.0.1 transitivePeerDependencies: - supports-color @@ -66074,80 +49799,80 @@ snapshots: esbuild@0.18.20: optionalDependencies: - "@esbuild/android-arm": 0.18.20 - "@esbuild/android-arm64": 0.18.20 - "@esbuild/android-x64": 0.18.20 - "@esbuild/darwin-arm64": 0.18.20 - "@esbuild/darwin-x64": 0.18.20 - "@esbuild/freebsd-arm64": 0.18.20 - "@esbuild/freebsd-x64": 0.18.20 - "@esbuild/linux-arm": 0.18.20 - "@esbuild/linux-arm64": 0.18.20 - "@esbuild/linux-ia32": 0.18.20 - "@esbuild/linux-loong64": 0.18.20 - "@esbuild/linux-mips64el": 0.18.20 - "@esbuild/linux-ppc64": 0.18.20 - "@esbuild/linux-riscv64": 0.18.20 - "@esbuild/linux-s390x": 0.18.20 - "@esbuild/linux-x64": 0.18.20 - "@esbuild/netbsd-x64": 0.18.20 - "@esbuild/openbsd-x64": 0.18.20 - "@esbuild/sunos-x64": 0.18.20 - "@esbuild/win32-arm64": 0.18.20 - "@esbuild/win32-ia32": 0.18.20 - "@esbuild/win32-x64": 0.18.20 + '@esbuild/android-arm': 0.18.20 + '@esbuild/android-arm64': 0.18.20 + '@esbuild/android-x64': 0.18.20 + '@esbuild/darwin-arm64': 0.18.20 + '@esbuild/darwin-x64': 0.18.20 + '@esbuild/freebsd-arm64': 0.18.20 + '@esbuild/freebsd-x64': 0.18.20 + '@esbuild/linux-arm': 0.18.20 + '@esbuild/linux-arm64': 0.18.20 + '@esbuild/linux-ia32': 0.18.20 + '@esbuild/linux-loong64': 0.18.20 + '@esbuild/linux-mips64el': 0.18.20 + '@esbuild/linux-ppc64': 0.18.20 + '@esbuild/linux-riscv64': 0.18.20 + '@esbuild/linux-s390x': 0.18.20 + '@esbuild/linux-x64': 0.18.20 + '@esbuild/netbsd-x64': 0.18.20 + '@esbuild/openbsd-x64': 0.18.20 + '@esbuild/sunos-x64': 0.18.20 + '@esbuild/win32-arm64': 0.18.20 + '@esbuild/win32-ia32': 0.18.20 + '@esbuild/win32-x64': 0.18.20 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.20.2: optionalDependencies: - "@esbuild/aix-ppc64": 0.20.2 - "@esbuild/android-arm": 0.20.2 - "@esbuild/android-arm64": 0.20.2 - "@esbuild/android-x64": 0.20.2 - "@esbuild/darwin-arm64": 0.20.2 - "@esbuild/darwin-x64": 0.20.2 - "@esbuild/freebsd-arm64": 0.20.2 - "@esbuild/freebsd-x64": 0.20.2 - "@esbuild/linux-arm": 0.20.2 - "@esbuild/linux-arm64": 0.20.2 - "@esbuild/linux-ia32": 0.20.2 - "@esbuild/linux-loong64": 0.20.2 - "@esbuild/linux-mips64el": 0.20.2 - "@esbuild/linux-ppc64": 0.20.2 - "@esbuild/linux-riscv64": 0.20.2 - "@esbuild/linux-s390x": 0.20.2 - "@esbuild/linux-x64": 0.20.2 - "@esbuild/netbsd-x64": 0.20.2 - "@esbuild/openbsd-x64": 0.20.2 - "@esbuild/sunos-x64": 0.20.2 - "@esbuild/win32-arm64": 0.20.2 - "@esbuild/win32-ia32": 0.20.2 - "@esbuild/win32-x64": 0.20.2 + '@esbuild/aix-ppc64': 0.20.2 + '@esbuild/android-arm': 0.20.2 + '@esbuild/android-arm64': 0.20.2 + '@esbuild/android-x64': 0.20.2 + '@esbuild/darwin-arm64': 0.20.2 + '@esbuild/darwin-x64': 0.20.2 + '@esbuild/freebsd-arm64': 0.20.2 + '@esbuild/freebsd-x64': 0.20.2 + '@esbuild/linux-arm': 0.20.2 + '@esbuild/linux-arm64': 0.20.2 + '@esbuild/linux-ia32': 0.20.2 + '@esbuild/linux-loong64': 0.20.2 + '@esbuild/linux-mips64el': 0.20.2 + '@esbuild/linux-ppc64': 0.20.2 + '@esbuild/linux-riscv64': 0.20.2 + '@esbuild/linux-s390x': 0.20.2 + '@esbuild/linux-x64': 0.20.2 + '@esbuild/netbsd-x64': 0.20.2 + '@esbuild/openbsd-x64': 0.20.2 + '@esbuild/sunos-x64': 0.20.2 + '@esbuild/win32-arm64': 0.20.2 + '@esbuild/win32-ia32': 0.20.2 + '@esbuild/win32-x64': 0.20.2 escalade@3.1.2: {} @@ -66182,9 +49907,9 @@ snapshots: eslint-config-next@13.5.6(eslint@8.57.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.4.3): dependencies: - "@next/eslint-plugin-next": 13.5.6 - "@rushstack/eslint-patch": 1.10.1 - "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.4.3) + '@next/eslint-plugin-next': 13.5.6 + '@rushstack/eslint-patch': 1.10.1 + '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) @@ -66196,9 +49921,9 @@ snapshots: optionalDependencies: typescript: 5.4.3 transitivePeerDependencies: - - "@babel/core" - - "@opentelemetry/api" - - "@playwright/test" + - '@babel/core' + - '@opentelemetry/api' + - '@playwright/test' - babel-plugin-macros - eslint-import-resolver-webpack - react @@ -66208,9 +49933,9 @@ snapshots: eslint-config-next@13.5.6(eslint@8.57.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.2.2): dependencies: - "@next/eslint-plugin-next": 13.5.6 - "@rushstack/eslint-patch": 1.10.1 - "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.2.2) + '@next/eslint-plugin-next': 13.5.6 + '@rushstack/eslint-patch': 1.10.1 + '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.2.2) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) @@ -66222,9 +49947,9 @@ snapshots: optionalDependencies: typescript: 5.2.2 transitivePeerDependencies: - - "@babel/core" - - "@opentelemetry/api" - - "@playwright/test" + - '@babel/core' + - '@opentelemetry/api' + - '@playwright/test' - babel-plugin-macros - eslint-import-resolver-webpack - react @@ -66238,11 +49963,11 @@ snapshots: eslint-config-react-app@7.0.1(eslint@8.57.0)(jest@27.5.1)(typescript@5.4.3): dependencies: - "@babel/core": 7.24.3 - "@babel/eslint-parser": 7.24.1(@babel/core@7.24.3)(eslint@8.57.0) - "@rushstack/eslint-patch": 1.10.1 - "@typescript-eslint/eslint-plugin": 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) - "@typescript-eslint/parser": 5.62.0(eslint@8.57.0)(typescript@5.4.3) + '@babel/core': 7.24.3 + '@babel/eslint-parser': 7.24.1(@babel/core@7.24.3)(eslint@8.57.0) + '@rushstack/eslint-patch': 1.10.1 + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.3) babel-preset-react-app: 10.0.1 confusing-browser-globals: 1.0.11 eslint: 8.57.0 @@ -66256,8 +49981,8 @@ snapshots: optionalDependencies: typescript: 5.4.3 transitivePeerDependencies: - - "@babel/plugin-syntax-flow" - - "@babel/plugin-transform-react-jsx" + - '@babel/plugin-syntax-flow' + - '@babel/plugin-transform-react-jsx' - eslint-import-resolver-typescript - eslint-import-resolver-webpack - jest @@ -66283,7 +50008,7 @@ snapshots: is-core-module: 2.13.1 is-glob: 4.0.3 transitivePeerDependencies: - - "@typescript-eslint/parser" + - '@typescript-eslint/parser' - eslint-import-resolver-node - eslint-import-resolver-webpack - supports-color @@ -66300,7 +50025,7 @@ snapshots: is-core-module: 2.13.1 is-glob: 4.0.3 transitivePeerDependencies: - - "@typescript-eslint/parser" + - '@typescript-eslint/parser' - eslint-import-resolver-node - eslint-import-resolver-webpack - supports-color @@ -66309,7 +50034,7 @@ snapshots: dependencies: debug: 3.2.7 optionalDependencies: - "@typescript-eslint/parser": 5.62.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: @@ -66319,7 +50044,7 @@ snapshots: dependencies: debug: 3.2.7 optionalDependencies: - "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) @@ -66330,7 +50055,7 @@ snapshots: dependencies: debug: 3.2.7 optionalDependencies: - "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint-plugin-import@2.29.1)(eslint@8.57.0) @@ -66341,7 +50066,7 @@ snapshots: dependencies: debug: 3.2.7 optionalDependencies: - "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: @@ -66351,7 +50076,7 @@ snapshots: dependencies: debug: 3.2.7 optionalDependencies: - "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint-plugin-import@2.29.1)(eslint@8.57.0) transitivePeerDependencies: @@ -66398,7 +50123,7 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - "@typescript-eslint/parser": 5.62.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -66425,7 +50150,7 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -66452,7 +50177,7 @@ snapshots: semver: 6.3.1 tsconfig-paths: 3.15.0 optionalDependencies: - "@typescript-eslint/parser": 6.21.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/parser': 6.21.0(eslint@8.57.0)(typescript@5.4.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -66460,10 +50185,10 @@ snapshots: eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(jest@27.5.1)(typescript@5.4.3): dependencies: - "@typescript-eslint/experimental-utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 optionalDependencies: - "@typescript-eslint/eslint-plugin": 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) jest: 27.5.1 transitivePeerDependencies: - supports-color @@ -66471,10 +50196,10 @@ snapshots: eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(jest@29.7.0(@types/node@20.12.12))(typescript@5.4.3): dependencies: - "@typescript-eslint/utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 optionalDependencies: - "@typescript-eslint/eslint-plugin": 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) jest: 29.7.0(@types/node@20.12.12) transitivePeerDependencies: - supports-color @@ -66482,10 +50207,10 @@ snapshots: eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)))(typescript@5.4.3): dependencies: - "@typescript-eslint/utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 optionalDependencies: - "@typescript-eslint/eslint-plugin": 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) jest: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) transitivePeerDependencies: - supports-color @@ -66493,10 +50218,10 @@ snapshots: eslint-plugin-jest@27.9.0(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(jest@29.7.0(ts-node@10.9.2(typescript@5.4.3)))(typescript@5.4.3): dependencies: - "@typescript-eslint/utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 optionalDependencies: - "@typescript-eslint/eslint-plugin": 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.0)(typescript@5.4.3))(eslint@8.57.0)(typescript@5.4.3) jest: 29.7.0(ts-node@10.9.2(typescript@5.4.3)) transitivePeerDependencies: - supports-color @@ -66509,7 +50234,7 @@ snapshots: eslint-plugin-jsx-a11y@6.8.0(eslint@8.57.0): dependencies: - "@babel/runtime": 7.24.1 + '@babel/runtime': 7.24.1 aria-query: 5.3.0 array-includes: 3.1.8 array.prototype.flatmap: 1.3.2 @@ -66568,8 +50293,8 @@ snapshots: eslint-plugin-storybook@0.6.15(eslint@8.57.0)(typescript@5.4.3): dependencies: - "@storybook/csf": 0.0.1 - "@typescript-eslint/utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) + '@storybook/csf': 0.0.1 + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 requireindex: 1.2.0 ts-dedent: 2.2.0 @@ -66579,7 +50304,7 @@ snapshots: eslint-plugin-testing-library@5.11.1(eslint@8.57.0)(typescript@5.4.3): dependencies: - "@typescript-eslint/utils": 5.62.0(eslint@8.57.0)(typescript@5.4.3) + '@typescript-eslint/utils': 5.62.0(eslint@8.57.0)(typescript@5.4.3) eslint: 8.57.0 transitivePeerDependencies: - supports-color @@ -66601,7 +50326,7 @@ snapshots: eslint-webpack-plugin@3.2.0(eslint@8.57.0)(webpack@5.94.0): dependencies: - "@types/eslint": 8.56.6 + '@types/eslint': 8.56.6 eslint: 8.57.0 jest-worker: 28.1.3 micromatch: 4.0.7 @@ -66613,14 +50338,14 @@ snapshots: eslint@8.57.0: dependencies: - "@eslint-community/eslint-utils": 4.4.0(eslint@8.57.0) - "@eslint-community/regexpp": 4.10.0 - "@eslint/eslintrc": 2.1.4 - "@eslint/js": 8.57.0 - "@humanwhocodes/config-array": 0.11.14 - "@humanwhocodes/module-importer": 1.0.1 - "@nodelib/fs.walk": 1.2.8 - "@ungap/structured-clone": 1.2.0 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0) + '@eslint-community/regexpp': 4.10.0 + '@eslint/eslintrc': 2.1.4 + '@eslint/js': 8.57.0 + '@humanwhocodes/config-array': 0.11.14 + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 + '@ungap/structured-clone': 1.2.0 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 @@ -66685,11 +50410,11 @@ snapshots: estree-util-attach-comments@2.1.1: dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 estree-util-build-jsx@2.2.2: dependencies: - "@types/estree-jsx": 1.0.5 + '@types/estree-jsx': 1.0.5 estree-util-is-identifier-name: 2.1.0 estree-walker: 3.0.3 @@ -66697,7 +50422,7 @@ snapshots: estree-util-to-js@1.2.0: dependencies: - "@types/estree-jsx": 1.0.5 + '@types/estree-jsx': 1.0.5 astring: 1.8.6 source-map: 0.7.4 @@ -66707,8 +50432,8 @@ snapshots: estree-util-visit@1.2.1: dependencies: - "@types/estree-jsx": 1.0.5 - "@types/unist": 2.0.10 + '@types/estree-jsx': 1.0.5 + '@types/unist': 2.0.10 estree-walker@1.0.1: {} @@ -66716,7 +50441,7 @@ snapshots: estree-walker@3.0.3: dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 esutils@2.0.3: {} @@ -66752,8 +50477,8 @@ snapshots: ethereum-cryptography@0.1.3: dependencies: - "@types/pbkdf2": 3.1.2 - "@types/secp256k1": 4.0.6 + '@types/pbkdf2': 3.1.2 + '@types/secp256k1': 4.0.6 blakejs: 1.2.1 browserify-aes: 1.2.0 bs58check: 2.1.2 @@ -66770,10 +50495,10 @@ snapshots: ethereum-cryptography@2.1.3: dependencies: - "@noble/curves": 1.3.0 - "@noble/hashes": 1.3.3 - "@scure/bip32": 1.3.3 - "@scure/bip39": 1.2.2 + '@noble/curves': 1.3.0 + '@noble/hashes': 1.3.3 + '@scure/bip32': 1.3.3 + '@scure/bip39': 1.2.2 ethereumjs-common@1.5.2: {} @@ -66794,7 +50519,7 @@ snapshots: ethereumjs-util@6.2.1: dependencies: - "@types/bn.js": 4.11.6 + '@types/bn.js': 4.11.6 bn.js: 4.12.0 create-hash: 1.2.0 elliptic: 6.5.5 @@ -66804,7 +50529,7 @@ snapshots: ethereumjs-util@7.1.5: dependencies: - "@types/bn.js": 5.1.5 + '@types/bn.js': 5.1.5 bn.js: 5.2.1 create-hash: 1.2.0 ethereum-cryptography: 0.1.3 @@ -66812,46 +50537,46 @@ snapshots: ethers@5.7.2: dependencies: - "@ethersproject/abi": 5.7.0 - "@ethersproject/abstract-provider": 5.7.0 - "@ethersproject/abstract-signer": 5.7.0 - "@ethersproject/address": 5.7.0 - "@ethersproject/base64": 5.7.0 - "@ethersproject/basex": 5.7.0 - "@ethersproject/bignumber": 5.7.0 - "@ethersproject/bytes": 5.7.0 - "@ethersproject/constants": 5.7.0 - "@ethersproject/contracts": 5.7.0 - "@ethersproject/hash": 5.7.0 - "@ethersproject/hdnode": 5.7.0 - "@ethersproject/json-wallets": 5.7.0 - "@ethersproject/keccak256": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/networks": 5.7.1 - "@ethersproject/pbkdf2": 5.7.0 - "@ethersproject/properties": 5.7.0 - "@ethersproject/providers": 5.7.2 - "@ethersproject/random": 5.7.0 - "@ethersproject/rlp": 5.7.0 - "@ethersproject/sha2": 5.7.0 - "@ethersproject/signing-key": 5.7.0 - "@ethersproject/solidity": 5.7.0 - "@ethersproject/strings": 5.7.0 - "@ethersproject/transactions": 5.7.0 - "@ethersproject/units": 5.7.0 - "@ethersproject/wallet": 5.7.0 - "@ethersproject/web": 5.7.1 - "@ethersproject/wordlists": 5.7.0 + '@ethersproject/abi': 5.7.0 + '@ethersproject/abstract-provider': 5.7.0 + '@ethersproject/abstract-signer': 5.7.0 + '@ethersproject/address': 5.7.0 + '@ethersproject/base64': 5.7.0 + '@ethersproject/basex': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/constants': 5.7.0 + '@ethersproject/contracts': 5.7.0 + '@ethersproject/hash': 5.7.0 + '@ethersproject/hdnode': 5.7.0 + '@ethersproject/json-wallets': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/networks': 5.7.1 + '@ethersproject/pbkdf2': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/providers': 5.7.2 + '@ethersproject/random': 5.7.0 + '@ethersproject/rlp': 5.7.0 + '@ethersproject/sha2': 5.7.0 + '@ethersproject/signing-key': 5.7.0 + '@ethersproject/solidity': 5.7.0 + '@ethersproject/strings': 5.7.0 + '@ethersproject/transactions': 5.7.0 + '@ethersproject/units': 5.7.0 + '@ethersproject/wallet': 5.7.0 + '@ethersproject/web': 5.7.1 + '@ethersproject/wordlists': 5.7.0 transitivePeerDependencies: - bufferutil - utf-8-validate ethers@6.12.1: dependencies: - "@adraffy/ens-normalize": 1.10.1 - "@noble/curves": 1.2.0 - "@noble/hashes": 1.3.2 - "@types/node": 18.15.13 + '@adraffy/ens-normalize': 1.10.1 + '@noble/curves': 1.2.0 + '@noble/hashes': 1.3.2 + '@types/node': 18.15.13 aes-js: 4.0.0-beta.5 tslib: 2.6.2 ws: 8.5.0 @@ -66987,14 +50712,14 @@ snapshots: expect@27.5.1: dependencies: - "@jest/types": 27.5.1 + '@jest/types': 27.5.1 jest-get-type: 27.5.1 jest-matcher-utils: 27.5.1 jest-message-util: 27.5.1 expect@28.1.3: dependencies: - "@jest/expect-utils": 28.1.3 + '@jest/expect-utils': 28.1.3 jest-get-type: 28.0.2 jest-matcher-utils: 28.1.3 jest-message-util: 28.1.3 @@ -67002,7 +50727,7 @@ snapshots: expect@29.7.0: dependencies: - "@jest/expect-utils": 29.7.0 + '@jest/expect-utils': 29.7.0 jest-get-type: 29.6.3 jest-matcher-utils: 29.7.0 jest-message-util: 29.7.0 @@ -67083,7 +50808,7 @@ snapshots: expo-constants@14.4.2(expo-modules-core@1.5.11(expo-constants@14.5.1)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0): dependencies: - "@expo/config": 8.1.2 + '@expo/config': 8.1.2 expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) uuid: 3.4.0 optionalDependencies: @@ -67096,7 +50821,7 @@ snapshots: expo-constants@14.5.1(expo-modules-core@1.5.11)(expo@49.0.23)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0): dependencies: - "@expo/config": 8.2.1 + '@expo/config': 8.2.1 expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) uuid: 3.4.0 optionalDependencies: @@ -67109,8 +50834,8 @@ snapshots: expo-constants@16.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - "@expo/config": 9.0.4 - "@expo/env": 0.3.0 + '@expo/config': 9.0.4 + '@expo/env': 0.3.0 expo: 51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) optionalDependencies: expo-constants: 16.0.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) @@ -67244,7 +50969,7 @@ snapshots: expo-modules-autolinking@1.5.1(epzs5mtkmt3672rwgv2fv7s7qa): dependencies: - "@expo/config": 8.1.2 + '@expo/config': 8.1.2 chalk: 4.1.2 commander: 7.2.0 fast-glob: 3.3.2 @@ -67278,8 +51003,8 @@ snapshots: expo-pwa@0.0.126(fwfwxrny4no4cg4koyqmr3oiha): dependencies: - "@expo/config": 9.0.1 - "@expo/image-utils": 0.3.23 + '@expo/config': 9.0.1 + '@expo/image-utils': 0.3.23 chalk: 4.1.2 commander: 2.20.0 expo: 49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) @@ -67302,11 +51027,11 @@ snapshots: expo@49.0.23(@babel/core@7.24.3)(@expo/metro-config@0.10.7)(expo-modules-core@1.5.11)(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0): dependencies: - "@babel/runtime": 7.24.1 - "@expo/cli": 0.10.17(@expo/metro-config@0.10.7)(expo-modules-autolinking@1.5.1(epzs5mtkmt3672rwgv2fv7s7qa))(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6) - "@expo/config": 8.1.2 - "@expo/config-plugins": 7.2.5 - "@expo/vector-icons": 13.0.0 + '@babel/runtime': 7.24.1 + '@expo/cli': 0.10.17(@expo/metro-config@0.10.7)(expo-modules-autolinking@1.5.1(epzs5mtkmt3672rwgv2fv7s7qa))(glob@7.2.3)(metro-core@0.80.12)(metro@0.80.12)(minimatch@5.1.6) + '@expo/config': 8.1.2 + '@expo/config-plugins': 7.2.5 + '@expo/vector-icons': 13.0.0 babel-preset-expo: 9.5.2(@babel/core@7.24.3) expo-application: 5.3.1(rxkmd2ynqonhzhnkgmzjv3uahy) expo-asset: 8.10.1(rxkmd2ynqonhzhnkgmzjv3uahy) @@ -67326,8 +51051,8 @@ snapshots: react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) transitivePeerDependencies: - - "@babel/core" - - "@expo/metro-config" + - '@babel/core' + - '@expo/metro-config' - bluebird - bufferutil - encoding @@ -67340,12 +51065,12 @@ snapshots: expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - "@babel/runtime": 7.25.0 - "@expo/cli": 0.18.30(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)) - "@expo/config": 9.0.4 - "@expo/config-plugins": 8.0.10 - "@expo/metro-config": 0.18.11 - "@expo/vector-icons": 14.0.4 + '@babel/runtime': 7.25.0 + '@expo/cli': 0.18.30(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0)) + '@expo/config': 9.0.4 + '@expo/config-plugins': 8.0.10 + '@expo/metro-config': 0.18.11 + '@expo/vector-icons': 14.0.4 babel-preset-expo: 11.0.15(@babel/core@7.24.3) expo-asset: 10.0.10(tns433hakj4ir7nudcudkynxq4) expo-file-system: 17.0.1(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo@51.0.37(@babel/core@7.24.3)(expo-modules-autolinking@1.11.2(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(expo-modules-core@1.12.25(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0))(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) @@ -67359,8 +51084,8 @@ snapshots: react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) transitivePeerDependencies: - - "@babel/core" - - "@babel/preset-env" + - '@babel/core' + - '@babel/preset-env' - bufferutil - encoding - expo-constants @@ -67449,7 +51174,7 @@ snapshots: get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: - "@types/yauzl": 2.10.3 + '@types/yauzl': 2.10.3 transitivePeerDependencies: - supports-color @@ -67478,8 +51203,8 @@ snapshots: fast-glob@3.3.2: 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.7 @@ -67704,32 +51429,32 @@ snapshots: firebase@9.23.0: dependencies: - "@firebase/analytics": 0.10.0(@firebase/app@0.9.13) - "@firebase/analytics-compat": 0.2.6(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) - "@firebase/app": 0.9.13 - "@firebase/app-check": 0.8.0(@firebase/app@0.9.13) - "@firebase/app-check-compat": 0.3.7(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) - "@firebase/app-compat": 0.2.13 - "@firebase/app-types": 0.9.0 - "@firebase/auth": 0.23.2(@firebase/app@0.9.13) - "@firebase/auth-compat": 0.4.2(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13) - "@firebase/database": 0.14.4 - "@firebase/database-compat": 0.3.4 - "@firebase/firestore": 3.13.0(@firebase/app@0.9.13) - "@firebase/firestore-compat": 0.3.12(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13) - "@firebase/functions": 0.10.0(@firebase/app@0.9.13) - "@firebase/functions-compat": 0.3.5(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) - "@firebase/installations": 0.6.4(@firebase/app@0.9.13) - "@firebase/installations-compat": 0.2.4(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13) - "@firebase/messaging": 0.12.4(@firebase/app@0.9.13) - "@firebase/messaging-compat": 0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) - "@firebase/performance": 0.6.4(@firebase/app@0.9.13) - "@firebase/performance-compat": 0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) - "@firebase/remote-config": 0.4.4(@firebase/app@0.9.13) - "@firebase/remote-config-compat": 0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) - "@firebase/storage": 0.11.2(@firebase/app@0.9.13) - "@firebase/storage-compat": 0.3.2(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13) - "@firebase/util": 1.9.3 + '@firebase/analytics': 0.10.0(@firebase/app@0.9.13) + '@firebase/analytics-compat': 0.2.6(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) + '@firebase/app': 0.9.13 + '@firebase/app-check': 0.8.0(@firebase/app@0.9.13) + '@firebase/app-check-compat': 0.3.7(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) + '@firebase/app-compat': 0.2.13 + '@firebase/app-types': 0.9.0 + '@firebase/auth': 0.23.2(@firebase/app@0.9.13) + '@firebase/auth-compat': 0.4.2(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13) + '@firebase/database': 0.14.4 + '@firebase/database-compat': 0.3.4 + '@firebase/firestore': 3.13.0(@firebase/app@0.9.13) + '@firebase/firestore-compat': 0.3.12(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13) + '@firebase/functions': 0.10.0(@firebase/app@0.9.13) + '@firebase/functions-compat': 0.3.5(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) + '@firebase/installations': 0.6.4(@firebase/app@0.9.13) + '@firebase/installations-compat': 0.2.4(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13) + '@firebase/messaging': 0.12.4(@firebase/app@0.9.13) + '@firebase/messaging-compat': 0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) + '@firebase/performance': 0.6.4(@firebase/app@0.9.13) + '@firebase/performance-compat': 0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) + '@firebase/remote-config': 0.4.4(@firebase/app@0.9.13) + '@firebase/remote-config-compat': 0.2.4(@firebase/app-compat@0.2.13)(@firebase/app@0.9.13) + '@firebase/storage': 0.11.2(@firebase/app@0.9.13) + '@firebase/storage-compat': 0.3.2(@firebase/app-compat@0.2.13)(@firebase/app-types@0.9.0)(@firebase/app@0.9.13) + '@firebase/util': 1.9.3 transitivePeerDependencies: - encoding @@ -67803,8 +51528,8 @@ snapshots: fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.0)(typescript@5.1.3)(vue-template-compiler@2.7.16)(webpack@5.94.0): dependencies: - "@babel/code-frame": 7.24.6 - "@types/json-schema": 7.0.15 + '@babel/code-frame': 7.24.6 + '@types/json-schema': 7.0.15 chalk: 4.1.2 chokidar: 3.6.0 cosmiconfig: 6.0.0 @@ -67824,8 +51549,8 @@ snapshots: fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.0)(typescript@5.4.3)(webpack@5.94.0): dependencies: - "@babel/code-frame": 7.24.6 - "@types/json-schema": 7.0.15 + '@babel/code-frame': 7.24.6 + '@types/json-schema': 7.0.15 chalk: 4.1.2 chokidar: 3.6.0 cosmiconfig: 6.0.0 @@ -67844,7 +51569,7 @@ snapshots: fork-ts-checker-webpack-plugin@8.0.0(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.4.11)(esbuild@0.19.12)): dependencies: - "@babel/code-frame": 7.24.6 + '@babel/code-frame': 7.24.6 chalk: 4.1.2 chokidar: 3.6.0 cosmiconfig: 7.1.0 @@ -67861,7 +51586,7 @@ snapshots: fork-ts-checker-webpack-plugin@8.0.0(typescript@5.4.3)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)): dependencies: - "@babel/code-frame": 7.24.6 + '@babel/code-frame': 7.24.6 chalk: 4.1.2 chokidar: 3.6.0 cosmiconfig: 7.1.0 @@ -68300,10 +52025,10 @@ snapshots: got@11.8.6: dependencies: - "@sindresorhus/is": 4.6.0 - "@szmarczak/http-timer": 4.0.6 - "@types/cacheable-request": 6.0.3 - "@types/responselike": 1.0.3 + '@sindresorhus/is': 4.6.0 + '@szmarczak/http-timer': 4.0.6 + '@types/cacheable-request': 6.0.3 + '@types/responselike': 1.0.3 cacheable-lookup: 5.0.4 cacheable-request: 7.0.4 decompress-response: 6.0.0 @@ -68314,10 +52039,10 @@ snapshots: got@9.6.0: dependencies: - "@sindresorhus/is": 0.14.0 - "@szmarczak/http-timer": 1.1.2 - "@types/keyv": 3.1.4 - "@types/responselike": 1.0.3 + '@sindresorhus/is': 0.14.0 + '@szmarczak/http-timer': 1.1.2 + '@types/keyv': 3.1.4 + '@types/responselike': 1.0.3 cacheable-request: 6.1.0 decompress-response: 3.3.0 duplexer3: 0.1.5 @@ -68449,20 +52174,20 @@ snapshots: hast-util-from-dom@5.0.0: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 hastscript: 8.0.0 web-namespaces: 2.0.1 hast-util-from-html-isomorphic@2.0.0: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 hast-util-from-dom: 5.0.0 hast-util-from-html: 2.0.1 unist-util-remove-position: 5.0.0 hast-util-from-html@2.0.1: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 devlop: 1.1.0 hast-util-from-parse5: 8.0.1 parse5: 7.1.2 @@ -68471,8 +52196,8 @@ snapshots: hast-util-from-parse5@7.1.2: dependencies: - "@types/hast": 2.3.10 - "@types/unist": 2.0.10 + '@types/hast': 2.3.10 + '@types/unist': 2.0.10 hastscript: 7.2.0 property-information: 6.4.1 vfile: 5.3.7 @@ -68481,8 +52206,8 @@ snapshots: hast-util-from-parse5@8.0.1: dependencies: - "@types/hast": 3.0.4 - "@types/unist": 3.0.2 + '@types/hast': 3.0.4 + '@types/unist': 3.0.2 devlop: 1.1.0 hastscript: 8.0.0 property-information: 6.4.1 @@ -68492,20 +52217,20 @@ snapshots: hast-util-is-element@3.0.0: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 hast-util-parse-selector@3.1.1: dependencies: - "@types/hast": 2.3.10 + '@types/hast': 2.3.10 hast-util-parse-selector@4.0.0: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 hast-util-raw@7.2.3: dependencies: - "@types/hast": 2.3.10 - "@types/parse5": 6.0.3 + '@types/hast': 2.3.10 + '@types/parse5': 6.0.3 hast-util-from-parse5: 7.1.2 hast-util-to-parse5: 7.1.0 html-void-elements: 2.0.1 @@ -68518,9 +52243,9 @@ snapshots: hast-util-raw@9.0.3: dependencies: - "@types/hast": 3.0.4 - "@types/unist": 3.0.2 - "@ungap/structured-clone": 1.2.0 + '@types/hast': 3.0.4 + '@types/unist': 3.0.2 + '@ungap/structured-clone': 1.2.0 hast-util-from-parse5: 8.0.1 hast-util-to-parse5: 8.0.0 html-void-elements: 3.0.0 @@ -68534,14 +52259,14 @@ snapshots: hast-util-sanitize@4.1.0: dependencies: - "@types/hast": 2.3.10 + '@types/hast': 2.3.10 hast-util-to-estree@2.3.3: dependencies: - "@types/estree": 1.0.5 - "@types/estree-jsx": 1.0.5 - "@types/hast": 2.3.10 - "@types/unist": 2.0.10 + '@types/estree': 1.0.5 + '@types/estree-jsx': 1.0.5 + '@types/hast': 2.3.10 + '@types/unist': 2.0.10 comma-separated-tokens: 2.0.3 estree-util-attach-comments: 2.1.1 estree-util-is-identifier-name: 2.1.0 @@ -68558,8 +52283,8 @@ snapshots: hast-util-to-html@8.0.4: dependencies: - "@types/hast": 2.3.10 - "@types/unist": 2.0.10 + '@types/hast': 2.3.10 + '@types/unist': 2.0.10 ccount: 2.0.1 comma-separated-tokens: 2.0.3 hast-util-raw: 7.2.3 @@ -68572,7 +52297,7 @@ snapshots: hast-util-to-parse5@7.1.0: dependencies: - "@types/hast": 2.3.10 + '@types/hast': 2.3.10 comma-separated-tokens: 2.0.3 property-information: 6.4.1 space-separated-tokens: 2.0.2 @@ -68581,7 +52306,7 @@ snapshots: hast-util-to-parse5@8.0.0: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 comma-separated-tokens: 2.0.3 devlop: 1.1.0 property-information: 6.4.1 @@ -68591,8 +52316,8 @@ snapshots: hast-util-to-text@4.0.2: dependencies: - "@types/hast": 3.0.4 - "@types/unist": 3.0.2 + '@types/hast': 3.0.4 + '@types/unist': 3.0.2 hast-util-is-element: 3.0.0 unist-util-find-after: 5.0.0 @@ -68600,7 +52325,7 @@ snapshots: hastscript@7.2.0: dependencies: - "@types/hast": 2.3.10 + '@types/hast': 2.3.10 comma-separated-tokens: 2.0.3 hast-util-parse-selector: 3.1.1 property-information: 6.4.1 @@ -68608,7 +52333,7 @@ snapshots: 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.4.1 @@ -68658,7 +52383,7 @@ snapshots: history@4.10.1: dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 loose-envify: 1.4.0 resolve-pathname: 3.0.0 tiny-invariant: 1.3.3 @@ -68735,7 +52460,7 @@ snapshots: html-webpack-plugin@5.6.0(webpack@5.91.0(metro@0.80.12)): dependencies: - "@types/html-minifier-terser": 6.1.0 + '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 @@ -68745,7 +52470,7 @@ snapshots: html-webpack-plugin@5.6.0(webpack@5.91.0(webpack-cli@4.10.0)): dependencies: - "@types/html-minifier-terser": 6.1.0 + '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 @@ -68755,7 +52480,7 @@ snapshots: html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.4.11)(esbuild@0.19.12)): dependencies: - "@types/html-minifier-terser": 6.1.0 + '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 @@ -68765,7 +52490,7 @@ snapshots: html-webpack-plugin@5.6.0(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)): dependencies: - "@types/html-minifier-terser": 6.1.0 + '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 @@ -68775,7 +52500,7 @@ snapshots: html-webpack-plugin@5.6.0(webpack@5.94.0): dependencies: - "@types/html-minifier-terser": 6.1.0 + '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 @@ -68843,7 +52568,7 @@ snapshots: http-proxy-agent@4.0.1: dependencies: - "@tootallnate/once": 1.1.2 + '@tootallnate/once': 1.1.2 agent-base: 6.0.2 debug: 4.3.4 transitivePeerDependencies: @@ -68851,7 +52576,7 @@ snapshots: http-proxy-agent@5.0.0: dependencies: - "@tootallnate/once": 2.0.0 + '@tootallnate/once': 2.0.0 agent-base: 6.0.2 debug: 4.3.4 transitivePeerDependencies: @@ -68859,13 +52584,13 @@ snapshots: http-proxy-middleware@2.0.6(@types/express@4.17.21): dependencies: - "@types/http-proxy": 1.17.14 + '@types/http-proxy': 1.17.14 http-proxy: 1.18.1 is-glob: 4.0.3 is-plain-obj: 3.0.0 micromatch: 4.0.7 optionalDependencies: - "@types/express": 4.17.21 + '@types/express': 4.17.21 http-proxy@1.18.1: dependencies: @@ -68936,15 +52661,15 @@ snapshots: i18next@20.6.1: dependencies: - "@babel/runtime": 7.24.1 + '@babel/runtime': 7.24.1 i18next@23.10.1: dependencies: - "@babel/runtime": 7.24.1 + '@babel/runtime': 7.24.1 icon-sdk-js@1.5.2: dependencies: - "@babel/runtime-corejs3": 7.24.8 + '@babel/runtime-corejs3': 7.24.8 bignumber.js: 9.1.2 bip66: 1.1.5 buffer: 6.0.3(patch_hash=2xnca52oxhztvr7iaoovwclcze) @@ -69124,7 +52849,7 @@ snapshots: ioredis@5.3.2: dependencies: - "@ioredis/commands": 1.2.0 + '@ioredis/commands': 1.2.0 cluster-key-slot: 1.1.2 debug: 4.3.4 denque: 2.1.0 @@ -69358,11 +53083,11 @@ snapshots: is-reference@1.2.1: dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 is-reference@3.0.2: dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 is-regex@1.1.4: dependencies: @@ -69471,11 +53196,11 @@ snapshots: iso-filecoin@4.1.0: dependencies: - "@ipld/dag-cbor": 9.2.1 - "@noble/curves": 1.4.0 - "@noble/hashes": 1.4.0 - "@scure/bip32": 1.4.0 - "@scure/bip39": 1.3.0 + '@ipld/dag-cbor': 9.2.1 + '@noble/curves': 1.4.0 + '@noble/hashes': 1.4.0 + '@scure/bip32': 1.4.0 + '@scure/bip39': 1.3.0 bignumber.js: 9.1.2 iso-base: 4.0.0 iso-web: 1.0.6 @@ -69532,8 +53257,8 @@ snapshots: istanbul-lib-instrument@4.0.3: dependencies: - "@babel/core": 7.24.3 - "@istanbuljs/schema": 0.1.3 + '@babel/core': 7.24.3 + '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 6.3.1 transitivePeerDependencies: @@ -69541,9 +53266,9 @@ snapshots: istanbul-lib-instrument@5.2.1: dependencies: - "@babel/core": 7.24.3 - "@babel/parser": 7.24.1 - "@istanbuljs/schema": 0.1.3 + '@babel/core': 7.24.3 + '@babel/parser': 7.24.1 + '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 6.3.1 transitivePeerDependencies: @@ -69551,9 +53276,9 @@ snapshots: istanbul-lib-instrument@6.0.2: dependencies: - "@babel/core": 7.24.3 - "@babel/parser": 7.24.1 - "@istanbuljs/schema": 0.1.3 + '@babel/core': 7.24.3 + '@babel/parser': 7.24.1 + '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 semver: 7.6.3 transitivePeerDependencies: @@ -69604,9 +53329,9 @@ snapshots: jackspeak@2.3.6: dependencies: - "@isaacs/cliui": 8.0.2 + '@isaacs/cliui': 8.0.2 optionalDependencies: - "@pkgjs/parseargs": 0.11.0 + '@pkgjs/parseargs': 0.11.0 jake@10.8.7: dependencies: @@ -69619,9 +53344,9 @@ snapshots: jayson@4.1.0: dependencies: - "@types/connect": 3.4.38 - "@types/node": 12.20.55 - "@types/ws": 7.4.7 + '@types/connect': 3.4.38 + '@types/node': 12.20.55 + '@types/ws': 7.4.7 JSONStream: 1.3.5 commander: 2.20.3 delay: 5.0.0 @@ -69654,10 +53379,10 @@ snapshots: jest: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) jest-docblock: 29.7.0 transitivePeerDependencies: - - "@jest/environment" - - "@jest/reporters" - - "@jest/types" - - "@types/bunyan" + - '@jest/environment' + - '@jest/reporters' + - '@jest/types' + - '@types/bunyan' - bunyan - encoding - jest-environment-jsdom @@ -69670,7 +53395,7 @@ snapshots: jest-changed-files@27.5.1: dependencies: - "@jest/types": 27.5.1 + '@jest/types': 27.5.1 execa: 5.1.1 throat: 6.0.2 @@ -69687,10 +53412,10 @@ snapshots: jest-circus@27.5.1: dependencies: - "@jest/environment": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 20.12.12 + '@jest/environment': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 20.12.12 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -69712,11 +53437,11 @@ snapshots: jest-circus@28.1.3: dependencies: - "@jest/environment": 28.1.3 - "@jest/expect": 28.1.3 - "@jest/test-result": 28.1.3 - "@jest/types": 28.1.3 - "@types/node": 20.12.12 + '@jest/environment': 28.1.3 + '@jest/expect': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.12.12 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -69737,11 +53462,11 @@ snapshots: jest-circus@29.7.0: dependencies: - "@jest/environment": 29.7.0 - "@jest/expect": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 20.12.12 + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.12 chalk: 4.1.2 co: 4.6.0 dedent: 1.5.1 @@ -69764,9 +53489,9 @@ snapshots: jest-cli@27.5.1: dependencies: - "@jest/core": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/types": 27.5.1 + '@jest/core': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/types': 27.5.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -69786,9 +53511,9 @@ snapshots: jest-cli@28.1.3(@types/node@18.19.26): dependencies: - "@jest/core": 28.1.3 - "@jest/test-result": 28.1.3 - "@jest/types": 28.1.3 + '@jest/core': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/types': 28.1.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -69799,16 +53524,16 @@ snapshots: prompts: 2.4.2 yargs: 17.7.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - metro - supports-color - ts-node jest-cli@28.1.3(@types/node@20.12.12): dependencies: - "@jest/core": 28.1.3 - "@jest/test-result": 28.1.3 - "@jest/types": 28.1.3 + '@jest/core': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/types': 28.1.3 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 @@ -69819,16 +53544,16 @@ snapshots: prompts: 2.4.2 yargs: 17.7.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - metro - supports-color - ts-node jest-cli@29.7.0: dependencies: - "@jest/core": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/types": 29.6.3 + '@jest/core': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 chalk: 4.1.2 create-jest: 29.7.0 exit: 0.1.2 @@ -69838,7 +53563,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -69846,9 +53571,9 @@ snapshots: jest-cli@29.7.0(@types/node@18.19.26)(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)) - "@jest/test-result": 29.7.0 - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 chalk: 4.1.2 create-jest: 29.7.0(@types/node@18.19.26)(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)) exit: 0.1.2 @@ -69858,7 +53583,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -69866,9 +53591,9 @@ snapshots: jest-cli@29.7.0(@types/node@20.12.12): dependencies: - "@jest/core": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/types": 29.6.3 + '@jest/core': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 chalk: 4.1.2 create-jest: 29.7.0(@types/node@20.12.12) exit: 0.1.2 @@ -69878,7 +53603,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -69886,9 +53611,9 @@ snapshots: jest-cli@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)) - "@jest/test-result": 29.7.0 - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 chalk: 4.1.2 create-jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)) exit: 0.1.2 @@ -69898,7 +53623,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -69906,9 +53631,9 @@ snapshots: jest-cli@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)) - "@jest/test-result": 29.7.0 - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 chalk: 4.1.2 create-jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)) exit: 0.1.2 @@ -69918,7 +53643,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -69926,9 +53651,9 @@ snapshots: jest-cli@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)) - "@jest/test-result": 29.7.0 - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 chalk: 4.1.2 create-jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)) exit: 0.1.2 @@ -69938,7 +53663,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -69946,9 +53671,9 @@ snapshots: jest-cli@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) - "@jest/test-result": 29.7.0 - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 chalk: 4.1.2 create-jest: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) exit: 0.1.2 @@ -69958,7 +53683,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -69966,9 +53691,9 @@ snapshots: jest-cli@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) - "@jest/test-result": 29.7.0 - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 chalk: 4.1.2 create-jest: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) exit: 0.1.2 @@ -69978,7 +53703,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -69986,9 +53711,9 @@ snapshots: jest-cli@29.7.0(ts-node@10.9.2(typescript@5.4.3)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(typescript@5.4.3)) - "@jest/test-result": 29.7.0 - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(ts-node@10.9.2(typescript@5.4.3)) + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 chalk: 4.1.2 create-jest: 29.7.0(ts-node@10.9.2(typescript@5.4.3)) exit: 0.1.2 @@ -69998,7 +53723,7 @@ snapshots: jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -70006,9 +53731,9 @@ snapshots: jest-config@27.5.1: dependencies: - "@babel/core": 7.24.3 - "@jest/test-sequencer": 27.5.1 - "@jest/types": 27.5.1 + '@babel/core': 7.24.3 + '@jest/test-sequencer': 27.5.1 + '@jest/types': 27.5.1 babel-jest: 27.5.1(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -70039,9 +53764,9 @@ snapshots: jest-config@28.1.3(@types/node@18.19.26): dependencies: - "@babel/core": 7.24.3 - "@jest/test-sequencer": 28.1.3 - "@jest/types": 28.1.3 + '@babel/core': 7.24.3 + '@jest/test-sequencer': 28.1.3 + '@jest/types': 28.1.3 babel-jest: 28.1.3(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -70062,16 +53787,16 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - "@types/node": 18.19.26 + '@types/node': 18.19.26 transitivePeerDependencies: - metro - supports-color jest-config@28.1.3(@types/node@20.12.12): dependencies: - "@babel/core": 7.24.3 - "@jest/test-sequencer": 28.1.3 - "@jest/types": 28.1.3 + '@babel/core': 7.24.3 + '@jest/test-sequencer': 28.1.3 + '@jest/types': 28.1.3 babel-jest: 28.1.3(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -70092,16 +53817,16 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 transitivePeerDependencies: - metro - supports-color jest-config@29.7.0: dependencies: - "@babel/core": 7.24.3 - "@jest/test-sequencer": 29.7.0 - "@jest/types": 29.6.3 + '@babel/core': 7.24.3 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -70128,9 +53853,9 @@ snapshots: jest-config@29.7.0(@types/node@18.19.26)(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)): dependencies: - "@babel/core": 7.24.3 - "@jest/test-sequencer": 29.7.0 - "@jest/types": 29.6.3 + '@babel/core': 7.24.3 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -70151,7 +53876,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - "@types/node": 18.19.26 + '@types/node': 18.19.26 ts-node: 10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5) transitivePeerDependencies: - babel-plugin-macros @@ -70160,9 +53885,9 @@ snapshots: jest-config@29.7.0(@types/node@20.12.12): dependencies: - "@babel/core": 7.24.3 - "@jest/test-sequencer": 29.7.0 - "@jest/types": 29.6.3 + '@babel/core': 7.24.3 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -70183,7 +53908,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 transitivePeerDependencies: - babel-plugin-macros - metro @@ -70191,9 +53916,9 @@ snapshots: jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)): dependencies: - "@babel/core": 7.24.3 - "@jest/test-sequencer": 29.7.0 - "@jest/types": 29.6.3 + '@babel/core': 7.24.3 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -70214,7 +53939,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 ts-node: 10.9.2(@swc/core@1.4.11)(typescript@5.4.3) transitivePeerDependencies: - babel-plugin-macros @@ -70223,9 +53948,9 @@ snapshots: jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)): dependencies: - "@babel/core": 7.24.3 - "@jest/test-sequencer": 29.7.0 - "@jest/types": 29.6.3 + '@babel/core': 7.24.3 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -70246,7 +53971,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 ts-node: 10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5) transitivePeerDependencies: - babel-plugin-macros @@ -70255,9 +53980,9 @@ snapshots: jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)): dependencies: - "@babel/core": 7.24.3 - "@jest/test-sequencer": 29.7.0 - "@jest/types": 29.6.3 + '@babel/core': 7.24.3 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -70278,7 +54003,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 ts-node: 10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3) transitivePeerDependencies: - babel-plugin-macros @@ -70287,9 +54012,9 @@ snapshots: jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)): dependencies: - "@babel/core": 7.24.3 - "@jest/test-sequencer": 29.7.0 - "@jest/types": 29.6.3 + '@babel/core': 7.24.3 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -70310,7 +54035,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 ts-node: 10.9.2(@types/node@20.12.12)(typescript@5.1.3) transitivePeerDependencies: - babel-plugin-macros @@ -70319,9 +54044,9 @@ snapshots: jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)): dependencies: - "@babel/core": 7.24.3 - "@jest/test-sequencer": 29.7.0 - "@jest/types": 29.6.3 + '@babel/core': 7.24.3 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -70342,7 +54067,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 ts-node: 10.9.2(@types/node@20.12.12)(typescript@5.4.3) transitivePeerDependencies: - babel-plugin-macros @@ -70351,9 +54076,9 @@ snapshots: jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)): dependencies: - "@babel/core": 7.24.3 - "@jest/test-sequencer": 29.7.0 - "@jest/types": 29.6.3 + '@babel/core': 7.24.3 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -70374,7 +54099,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 ts-node: 10.9.2(@types/node@20.12.12)(typescript@5.4.5) transitivePeerDependencies: - babel-plugin-macros @@ -70383,9 +54108,9 @@ snapshots: jest-config@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(typescript@5.4.3)): dependencies: - "@babel/core": 7.24.3 - "@jest/test-sequencer": 29.7.0 - "@jest/types": 29.6.3 + '@babel/core': 7.24.3 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -70406,7 +54131,7 @@ snapshots: slash: 3.0.0 strip-json-comments: 3.1.1 optionalDependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 ts-node: 10.9.2(typescript@5.4.3) transitivePeerDependencies: - babel-plugin-macros @@ -70415,9 +54140,9 @@ snapshots: jest-config@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)): dependencies: - "@babel/core": 7.24.3 - "@jest/test-sequencer": 29.7.0 - "@jest/types": 29.6.3 + '@babel/core': 7.24.3 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -70446,9 +54171,9 @@ snapshots: jest-config@29.7.0(ts-node@10.9.2(typescript@5.4.3)): dependencies: - "@babel/core": 7.24.3 - "@jest/test-sequencer": 29.7.0 - "@jest/types": 29.6.3 + '@babel/core': 7.24.3 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 babel-jest: 29.7.0(@babel/core@7.24.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -70517,7 +54242,7 @@ snapshots: jest-each@27.5.1: dependencies: - "@jest/types": 27.5.1 + '@jest/types': 27.5.1 chalk: 4.1.2 jest-get-type: 27.5.1 jest-util: 27.5.1 @@ -70525,7 +54250,7 @@ snapshots: jest-each@28.1.3: dependencies: - "@jest/types": 28.1.3 + '@jest/types': 28.1.3 chalk: 4.1.2 jest-get-type: 28.0.2 jest-util: 28.1.3 @@ -70533,7 +54258,7 @@ snapshots: jest-each@29.7.0: dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 chalk: 4.1.2 jest-get-type: 29.6.3 jest-util: 29.7.0 @@ -70553,14 +54278,14 @@ snapshots: jest: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) jest-environment-node: 29.7.0 transitivePeerDependencies: - - "@types/bunyan" + - '@types/bunyan' jest-environment-jsdom@27.5.1: dependencies: - "@jest/environment": 27.5.1 - "@jest/fake-timers": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 20.12.12 + '@jest/environment': 27.5.1 + '@jest/fake-timers': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 20.12.12 jest-mock: 27.5.1 jest-util: 27.5.1 jsdom: 16.7.0 @@ -70572,11 +54297,11 @@ snapshots: jest-environment-jsdom@28.1.3: dependencies: - "@jest/environment": 28.1.3 - "@jest/fake-timers": 28.1.3 - "@jest/types": 28.1.3 - "@types/jsdom": 16.2.15 - "@types/node": 20.12.12 + '@jest/environment': 28.1.3 + '@jest/fake-timers': 28.1.3 + '@jest/types': 28.1.3 + '@types/jsdom': 16.2.15 + '@types/node': 20.12.12 jest-mock: 28.1.3 jest-util: 28.1.3 jsdom: 19.0.0 @@ -70588,11 +54313,11 @@ snapshots: jest-environment-jsdom@29.7.0: dependencies: - "@jest/environment": 29.7.0 - "@jest/fake-timers": 29.7.0 - "@jest/types": 29.6.3 - "@types/jsdom": 20.0.1 - "@types/node": 20.12.12 + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/jsdom': 20.0.1 + '@types/node': 20.12.12 jest-mock: 29.7.0 jest-util: 29.7.0 jsdom: 20.0.3 @@ -70603,28 +54328,28 @@ snapshots: jest-environment-node@27.5.1: dependencies: - "@jest/environment": 27.5.1 - "@jest/fake-timers": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 20.12.12 + '@jest/environment': 27.5.1 + '@jest/fake-timers': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 20.12.12 jest-mock: 27.5.1 jest-util: 27.5.1 jest-environment-node@28.1.3: dependencies: - "@jest/environment": 28.1.3 - "@jest/fake-timers": 28.1.3 - "@jest/types": 28.1.3 - "@types/node": 20.12.12 + '@jest/environment': 28.1.3 + '@jest/fake-timers': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.12.12 jest-mock: 28.1.3 jest-util: 28.1.3 jest-environment-node@29.7.0: dependencies: - "@jest/environment": 29.7.0 - "@jest/fake-timers": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 20.12.12 + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.12 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -70647,9 +54372,9 @@ snapshots: jest-haste-map@27.5.1: dependencies: - "@jest/types": 27.5.1 - "@types/graceful-fs": 4.1.9 - "@types/node": 20.12.12 + '@jest/types': 27.5.1 + '@types/graceful-fs': 4.1.9 + '@types/node': 20.12.12 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -70666,9 +54391,9 @@ snapshots: jest-haste-map@28.1.3: dependencies: - "@jest/types": 28.1.3 - "@types/graceful-fs": 4.1.9 - "@types/node": 20.12.12 + '@jest/types': 28.1.3 + '@types/graceful-fs': 4.1.9 + '@types/node': 20.12.12 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -70684,9 +54409,9 @@ snapshots: jest-haste-map@29.7.0: dependencies: - "@jest/types": 29.6.3 - "@types/graceful-fs": 4.1.9 - "@types/node": 20.12.12 + '@jest/types': 29.6.3 + '@types/graceful-fs': 4.1.9 + '@types/node': 20.12.12 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -70702,9 +54427,9 @@ snapshots: jest-haste-map@29.7.0(metro@0.80.12): dependencies: - "@jest/types": 29.6.3 - "@types/graceful-fs": 4.1.9 - "@types/node": 20.12.12 + '@jest/types': 29.6.3 + '@types/graceful-fs': 4.1.9 + '@types/node': 20.12.12 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -70720,11 +54445,11 @@ snapshots: jest-jasmine2@27.5.1: dependencies: - "@jest/environment": 27.5.1 - "@jest/source-map": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 20.12.12 + '@jest/environment': 27.5.1 + '@jest/source-map': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 20.12.12 chalk: 4.1.2 co: 4.6.0 expect: 27.5.1 @@ -70779,9 +54504,9 @@ snapshots: jest-message-util@27.5.1: dependencies: - "@babel/code-frame": 7.24.6 - "@jest/types": 27.5.1 - "@types/stack-utils": 2.0.3 + '@babel/code-frame': 7.24.6 + '@jest/types': 27.5.1 + '@types/stack-utils': 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.7 @@ -70791,9 +54516,9 @@ snapshots: jest-message-util@28.1.3: dependencies: - "@babel/code-frame": 7.24.6 - "@jest/types": 28.1.3 - "@types/stack-utils": 2.0.3 + '@babel/code-frame': 7.24.6 + '@jest/types': 28.1.3 + '@types/stack-utils': 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.7 @@ -70803,9 +54528,9 @@ snapshots: jest-message-util@29.7.0: dependencies: - "@babel/code-frame": 7.24.6 - "@jest/types": 29.6.3 - "@types/stack-utils": 2.0.3 + '@babel/code-frame': 7.24.6 + '@jest/types': 29.6.3 + '@types/stack-utils': 2.0.3 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.7 @@ -70824,27 +54549,27 @@ snapshots: strip-ansi: 6.0.1 tslib: 2.6.2 optionalDependencies: - "@jest/reporters": 29.7.0 + '@jest/reporters': 29.7.0 jest: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) jest-environment-node: 29.7.0 transitivePeerDependencies: - - "@types/bunyan" + - '@types/bunyan' - bunyan jest-mock@27.5.1: dependencies: - "@jest/types": 27.5.1 - "@types/node": 20.12.12 + '@jest/types': 27.5.1 + '@types/node': 20.12.12 jest-mock@28.1.3: dependencies: - "@jest/types": 28.1.3 - "@types/node": 20.12.12 + '@jest/types': 28.1.3 + '@types/node': 20.12.12 jest-mock@29.7.0: dependencies: - "@jest/types": 29.6.3 - "@types/node": 20.12.12 + '@jest/types': 29.6.3 + '@types/node': 20.12.12 jest-util: 29.7.0 jest-pnp-resolver@1.2.3(jest-resolve@27.5.1): @@ -70867,7 +54592,7 @@ snapshots: jest-resolve-dependencies@27.5.1: dependencies: - "@jest/types": 27.5.1 + '@jest/types': 27.5.1 jest-regex-util: 27.5.1 jest-snapshot: 27.5.1 transitivePeerDependencies: @@ -70892,7 +54617,7 @@ snapshots: jest-resolve@27.5.1: dependencies: - "@jest/types": 27.5.1 + '@jest/types': 27.5.1 chalk: 4.1.2 graceful-fs: 4.2.11 jest-haste-map: 27.5.1 @@ -70935,12 +54660,12 @@ snapshots: jest-runner@27.5.1: dependencies: - "@jest/console": 27.5.1 - "@jest/environment": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/transform": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 20.12.12 + '@jest/console': 27.5.1 + '@jest/environment': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 20.12.12 chalk: 4.1.2 emittery: 0.8.1 graceful-fs: 4.2.11 @@ -70965,12 +54690,12 @@ snapshots: jest-runner@28.1.3: dependencies: - "@jest/console": 28.1.3 - "@jest/environment": 28.1.3 - "@jest/test-result": 28.1.3 - "@jest/transform": 28.1.3 - "@jest/types": 28.1.3 - "@types/node": 20.12.12 + '@jest/console': 28.1.3 + '@jest/environment': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.12.12 chalk: 4.1.2 emittery: 0.10.2 graceful-fs: 4.2.11 @@ -70992,12 +54717,12 @@ snapshots: jest-runner@29.7.0: dependencies: - "@jest/console": 29.7.0 - "@jest/environment": 29.7.0 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 20.12.12 + '@jest/console': 29.7.0 + '@jest/environment': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.12 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -71019,13 +54744,13 @@ snapshots: jest-runtime@27.5.1: dependencies: - "@jest/environment": 27.5.1 - "@jest/fake-timers": 27.5.1 - "@jest/globals": 27.5.1 - "@jest/source-map": 27.5.1 - "@jest/test-result": 27.5.1 - "@jest/transform": 27.5.1 - "@jest/types": 27.5.1 + '@jest/environment': 27.5.1 + '@jest/fake-timers': 27.5.1 + '@jest/globals': 27.5.1 + '@jest/source-map': 27.5.1 + '@jest/test-result': 27.5.1 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 chalk: 4.1.2 cjs-module-lexer: 1.2.3 collect-v8-coverage: 1.0.2 @@ -71047,13 +54772,13 @@ snapshots: jest-runtime@28.1.3: dependencies: - "@jest/environment": 28.1.3 - "@jest/fake-timers": 28.1.3 - "@jest/globals": 28.1.3 - "@jest/source-map": 28.1.2 - "@jest/test-result": 28.1.3 - "@jest/transform": 28.1.3 - "@jest/types": 28.1.3 + '@jest/environment': 28.1.3 + '@jest/fake-timers': 28.1.3 + '@jest/globals': 28.1.3 + '@jest/source-map': 28.1.2 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 chalk: 4.1.2 cjs-module-lexer: 1.2.3 collect-v8-coverage: 1.0.2 @@ -71075,14 +54800,14 @@ snapshots: jest-runtime@29.7.0: dependencies: - "@jest/environment": 29.7.0 - "@jest/fake-timers": 29.7.0 - "@jest/globals": 29.7.0 - "@jest/source-map": 29.6.3 - "@jest/test-result": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 20.12.12 + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/globals': 29.7.0 + '@jest/source-map': 29.6.3 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.12 chalk: 4.1.2 cjs-module-lexer: 1.2.3 collect-v8-coverage: 1.0.2 @@ -71103,20 +54828,20 @@ snapshots: jest-serializer@27.5.1: dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 graceful-fs: 4.2.11 jest-snapshot@27.5.1: dependencies: - "@babel/core": 7.24.3 - "@babel/generator": 7.24.1 - "@babel/plugin-syntax-typescript": 7.24.1(@babel/core@7.24.3) - "@babel/traverse": 7.24.1 - "@babel/types": 7.24.0 - "@jest/transform": 27.5.1 - "@jest/types": 27.5.1 - "@types/babel__traverse": 7.20.5 - "@types/prettier": 2.7.3 + '@babel/core': 7.24.3 + '@babel/generator': 7.24.1 + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3) + '@babel/traverse': 7.24.1 + '@babel/types': 7.24.0 + '@jest/transform': 27.5.1 + '@jest/types': 27.5.1 + '@types/babel__traverse': 7.20.5 + '@types/prettier': 2.7.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3) chalk: 4.1.2 expect: 27.5.1 @@ -71136,16 +54861,16 @@ snapshots: jest-snapshot@28.1.3: dependencies: - "@babel/core": 7.24.3 - "@babel/generator": 7.24.1 - "@babel/plugin-syntax-typescript": 7.24.1(@babel/core@7.24.3) - "@babel/traverse": 7.24.1 - "@babel/types": 7.24.0 - "@jest/expect-utils": 28.1.3 - "@jest/transform": 28.1.3 - "@jest/types": 28.1.3 - "@types/babel__traverse": 7.20.5 - "@types/prettier": 2.7.3 + '@babel/core': 7.24.3 + '@babel/generator': 7.24.1 + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3) + '@babel/traverse': 7.24.1 + '@babel/types': 7.24.0 + '@jest/expect-utils': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@types/babel__traverse': 7.20.5 + '@types/prettier': 2.7.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3) chalk: 4.1.2 expect: 28.1.3 @@ -71165,14 +54890,14 @@ snapshots: jest-snapshot@29.7.0: dependencies: - "@babel/core": 7.24.3 - "@babel/generator": 7.24.1 - "@babel/plugin-syntax-jsx": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-syntax-typescript": 7.24.1(@babel/core@7.24.3) - "@babel/types": 7.24.0 - "@jest/expect-utils": 29.7.0 - "@jest/transform": 29.7.0 - "@jest/types": 29.6.3 + '@babel/core': 7.24.3 + '@babel/generator': 7.24.1 + '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.3) + '@babel/types': 7.24.0 + '@jest/expect-utils': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.3) chalk: 4.1.2 expect: 29.7.0 @@ -71191,8 +54916,8 @@ snapshots: jest-util@27.5.1: dependencies: - "@jest/types": 27.5.1 - "@types/node": 20.12.12 + '@jest/types': 27.5.1 + '@types/node': 20.12.12 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -71200,8 +54925,8 @@ snapshots: jest-util@28.1.3: dependencies: - "@jest/types": 28.1.3 - "@types/node": 20.12.12 + '@jest/types': 28.1.3 + '@types/node': 20.12.12 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -71209,8 +54934,8 @@ snapshots: jest-util@29.7.0: dependencies: - "@jest/types": 29.6.3 - "@types/node": 20.12.12 + '@jest/types': 29.6.3 + '@types/node': 20.12.12 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -71218,7 +54943,7 @@ snapshots: jest-validate@27.5.1: dependencies: - "@jest/types": 27.5.1 + '@jest/types': 27.5.1 camelcase: 6.3.0 chalk: 4.1.2 jest-get-type: 27.5.1 @@ -71227,7 +54952,7 @@ snapshots: jest-validate@28.1.3: dependencies: - "@jest/types": 28.1.3 + '@jest/types': 28.1.3 camelcase: 6.3.0 chalk: 4.1.2 jest-get-type: 28.0.2 @@ -71236,7 +54961,7 @@ snapshots: jest-validate@29.7.0: dependencies: - "@jest/types": 29.6.3 + '@jest/types': 29.6.3 camelcase: 6.3.0 chalk: 4.1.2 jest-get-type: 29.6.3 @@ -71256,9 +54981,9 @@ snapshots: jest-watcher@27.5.1: dependencies: - "@jest/test-result": 27.5.1 - "@jest/types": 27.5.1 - "@types/node": 20.12.12 + '@jest/test-result': 27.5.1 + '@jest/types': 27.5.1 + '@types/node': 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 jest-util: 27.5.1 @@ -71266,9 +54991,9 @@ snapshots: jest-watcher@28.1.3: dependencies: - "@jest/test-result": 28.1.3 - "@jest/types": 28.1.3 - "@types/node": 20.12.12 + '@jest/test-result': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.10.2 @@ -71277,9 +55002,9 @@ snapshots: jest-watcher@29.7.0: dependencies: - "@jest/test-result": 29.7.0 - "@jest/types": 29.6.3 - "@types/node": 20.12.12 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 + '@types/node': 20.12.12 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -71288,19 +55013,19 @@ snapshots: jest-worker@26.6.2: dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 merge-stream: 2.0.0 supports-color: 7.2.0 jest-worker@27.5.1: dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@27.5.1(metro@0.80.12): dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 merge-stream: 2.0.0 supports-color: 8.1.1 optionalDependencies: @@ -71308,20 +55033,20 @@ snapshots: jest-worker@28.1.3: dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@29.7.0: dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@29.7.0(metro@0.80.12): dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -71330,7 +55055,7 @@ snapshots: jest-worker@29.7.0(metro@0.80.8): dependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -71339,7 +55064,7 @@ snapshots: jest@27.5.1: dependencies: - "@jest/core": 27.5.1 + '@jest/core': 27.5.1 import-local: 3.1.0 jest-cli: 27.5.1 transitivePeerDependencies: @@ -71352,36 +55077,36 @@ snapshots: jest@28.1.3(@types/node@18.19.26): dependencies: - "@jest/core": 28.1.3 - "@jest/types": 28.1.3 + '@jest/core': 28.1.3 + '@jest/types': 28.1.3 import-local: 3.1.0 jest-cli: 28.1.3(@types/node@18.19.26) transitivePeerDependencies: - - "@types/node" + - '@types/node' - metro - supports-color - ts-node jest@28.1.3(@types/node@20.12.12): dependencies: - "@jest/core": 28.1.3 - "@jest/types": 28.1.3 + '@jest/core': 28.1.3 + '@jest/types': 28.1.3 import-local: 3.1.0 jest-cli: 28.1.3(@types/node@20.12.12) transitivePeerDependencies: - - "@types/node" + - '@types/node' - metro - supports-color - ts-node jest@29.7.0: dependencies: - "@jest/core": 29.7.0 - "@jest/types": 29.6.3 + '@jest/core': 29.7.0 + '@jest/types': 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0 transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -71389,12 +55114,12 @@ snapshots: jest@29.7.0(@types/node@18.19.26)(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)) - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)) + '@jest/types': 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0(@types/node@18.19.26)(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)) transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -71402,12 +55127,12 @@ snapshots: jest@29.7.0(@types/node@20.12.12): dependencies: - "@jest/core": 29.7.0 - "@jest/types": 29.6.3 + '@jest/core': 29.7.0 + '@jest/types': 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0(@types/node@20.12.12) transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -71415,12 +55140,12 @@ snapshots: jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)) - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)) + '@jest/types': 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3)) transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -71428,12 +55153,12 @@ snapshots: jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)) - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)) + '@jest/types': 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3)) transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -71441,12 +55166,12 @@ snapshots: jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)) - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)) + '@jest/types': 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3)) transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -71454,12 +55179,12 @@ snapshots: jest@29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) + '@jest/types': 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0(@types/node@20.12.12)(ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5)) transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -71467,12 +55192,12 @@ snapshots: jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) + '@jest/types': 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3)) transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -71480,12 +55205,12 @@ snapshots: jest@29.7.0(ts-node@10.9.2(typescript@5.4.3)): dependencies: - "@jest/core": 29.7.0(ts-node@10.9.2(typescript@5.4.3)) - "@jest/types": 29.6.3 + '@jest/core': 29.7.0(ts-node@10.9.2(typescript@5.4.3)) + '@jest/types': 29.6.3 import-local: 3.1.0 jest-cli: 29.7.0(ts-node@10.9.2(typescript@5.4.3)) transitivePeerDependencies: - - "@types/node" + - '@types/node' - babel-plugin-macros - metro - supports-color @@ -71501,17 +55226,17 @@ snapshots: joi@17.12.2: dependencies: - "@hapi/hoek": 9.3.0 - "@hapi/topo": 5.1.0 - "@sideway/address": 4.1.5 - "@sideway/formula": 3.0.1 - "@sideway/pinpoint": 2.0.0 + '@hapi/hoek': 9.3.0 + '@hapi/topo': 5.1.0 + '@sideway/address': 4.1.5 + '@sideway/formula': 3.0.1 + '@sideway/pinpoint': 2.0.0 join-component@1.1.0: {} jotai@2.7.1(@types/react@18.2.73)(react@18.2.0): optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 react: 18.2.0 joycon@3.1.1: {} @@ -71585,15 +55310,15 @@ snapshots: jscodeshift@0.14.0: dependencies: - "@babel/core": 7.24.3 - "@babel/parser": 7.24.1 - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.24.3) - "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) - "@babel/preset-flow": 7.24.1(@babel/core@7.24.3) - "@babel/preset-typescript": 7.24.1(@babel/core@7.24.3) - "@babel/register": 7.23.7(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/parser': 7.24.1 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) + '@babel/preset-flow': 7.24.1(@babel/core@7.24.3) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) + '@babel/register': 7.23.7(@babel/core@7.24.3) babel-core: 7.0.0-bridge.0(@babel/core@7.24.3) chalk: 4.1.2 flow-parser: 0.232.0 @@ -71609,16 +55334,16 @@ snapshots: jscodeshift@0.14.0(@babel/preset-env@7.24.3(@babel/core@7.24.3)): dependencies: - "@babel/core": 7.24.3 - "@babel/parser": 7.24.1 - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.24.3) - "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) - "@babel/preset-env": 7.24.3(@babel/core@7.24.3) - "@babel/preset-flow": 7.24.1(@babel/core@7.24.3) - "@babel/preset-typescript": 7.24.1(@babel/core@7.24.3) - "@babel/register": 7.23.7(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/parser': 7.24.1 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) + '@babel/preset-env': 7.24.3(@babel/core@7.24.3) + '@babel/preset-flow': 7.24.1(@babel/core@7.24.3) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) + '@babel/register': 7.23.7(@babel/core@7.24.3) babel-core: 7.0.0-bridge.0(@babel/core@7.24.3) chalk: 4.1.2 flow-parser: 0.232.0 @@ -71634,16 +55359,16 @@ snapshots: jscodeshift@0.15.2(@babel/preset-env@7.24.3(@babel/core@7.24.3)): dependencies: - "@babel/core": 7.24.3 - "@babel/parser": 7.24.1 - "@babel/plugin-transform-class-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-nullish-coalescing-operator": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-optional-chaining": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-private-methods": 7.24.1(@babel/core@7.24.3) - "@babel/preset-flow": 7.24.1(@babel/core@7.24.3) - "@babel/preset-typescript": 7.24.1(@babel/core@7.24.3) - "@babel/register": 7.23.7(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/parser': 7.24.1 + '@babel/plugin-transform-class-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-private-methods': 7.24.1(@babel/core@7.24.3) + '@babel/preset-flow': 7.24.1(@babel/core@7.24.3) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) + '@babel/register': 7.23.7(@babel/core@7.24.3) babel-core: 7.0.0-bridge.0(@babel/core@7.24.3) chalk: 4.1.2 flow-parser: 0.232.0 @@ -71655,15 +55380,15 @@ snapshots: temp: 0.8.4 write-file-atomic: 2.4.3 optionalDependencies: - "@babel/preset-env": 7.24.3(@babel/core@7.24.3) + '@babel/preset-env': 7.24.3(@babel/core@7.24.3) transitivePeerDependencies: - supports-color jsdoc@4.0.3: dependencies: - "@babel/parser": 7.24.1 - "@jsdoc/salty": 0.2.8 - "@types/markdown-it": 14.1.1 + '@babel/parser': 7.24.1 + '@jsdoc/salty': 0.2.8 + '@types/markdown-it': 14.1.1 bluebird: 3.7.2 catharsis: 0.9.0 escape-string-regexp: 2.0.0 @@ -71968,7 +55693,7 @@ snapshots: key-encoder@2.0.3: dependencies: - "@types/elliptic": 6.4.18 + '@types/elliptic': 6.4.18 asn1.js: 5.4.1 bn.js: 4.12.0 elliptic: 6.5.5 @@ -72102,8 +55827,8 @@ snapshots: konan@2.1.1: dependencies: - "@babel/parser": 7.24.1 - "@babel/traverse": 7.24.1 + '@babel/parser': 7.24.1 + '@babel/traverse': 7.24.1 transitivePeerDependencies: - supports-color @@ -72341,7 +56066,7 @@ snapshots: listr@0.14.3: dependencies: - "@samverschueren/stream-to-observable": 0.3.1(rxjs@6.6.7) + '@samverschueren/stream-to-observable': 0.3.1(rxjs@6.6.7) is-observable: 1.1.0 is-promise: 2.2.2 is-stream: 1.1.0 @@ -72540,8 +56265,8 @@ snapshots: logform@2.6.0: dependencies: - "@colors/colors": 1.6.0 - "@types/triple-beam": 1.3.5 + '@colors/colors': 1.6.0 + '@types/triple-beam': 1.3.5 fecha: 4.2.3 ms: 2.1.3 safe-stable-stringify: 2.4.3 @@ -72629,7 +56354,7 @@ snapshots: lws-cors@3.1.1: dependencies: - "@koa/cors": 3.4.3 + '@koa/cors': 3.4.3 lws-index@2.0.0: dependencies: @@ -72708,11 +56433,11 @@ snapshots: magic-string@0.27.0: dependencies: - "@jridgewell/sourcemap-codec": 1.4.15 + '@jridgewell/sourcemap-codec': 1.4.15 magic-string@0.30.8: dependencies: - "@jridgewell/sourcemap-codec": 1.4.15 + '@jridgewell/sourcemap-codec': 1.4.15 make-dir@2.1.0: dependencies: @@ -72749,7 +56474,7 @@ snapshots: markdown-it-anchor@8.6.7(@types/markdown-it@14.1.1)(markdown-it@14.1.0): dependencies: - "@types/markdown-it": 14.1.1 + '@types/markdown-it': 14.1.1 markdown-it: 14.1.0 markdown-it@14.1.0: @@ -72773,7 +56498,7 @@ snapshots: match-sorter@6.3.4: dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 remove-accents: 0.5.0 matcher@3.0.0: @@ -72817,21 +56542,21 @@ snapshots: mdast-util-definitions@5.1.2: dependencies: - "@types/mdast": 3.0.15 - "@types/unist": 2.0.10 + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 unist-util-visit: 4.1.2 mdast-util-find-and-replace@2.2.2: dependencies: - "@types/mdast": 3.0.15 + '@types/mdast': 3.0.15 escape-string-regexp: 5.0.0 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 mdast-util-from-markdown@1.3.1: dependencies: - "@types/mdast": 3.0.15 - "@types/unist": 2.0.10 + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 decode-named-character-reference: 1.0.2 mdast-util-to-string: 3.2.0 micromark: 3.2.0 @@ -72847,25 +56572,25 @@ snapshots: mdast-util-gfm-autolink-literal@1.0.3: dependencies: - "@types/mdast": 3.0.15 + '@types/mdast': 3.0.15 ccount: 2.0.1 mdast-util-find-and-replace: 2.2.2 micromark-util-character: 1.2.0 mdast-util-gfm-footnote@1.0.2: dependencies: - "@types/mdast": 3.0.15 + '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 micromark-util-normalize-identifier: 1.1.0 mdast-util-gfm-strikethrough@1.0.3: dependencies: - "@types/mdast": 3.0.15 + '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 mdast-util-gfm-table@1.0.7: dependencies: - "@types/mdast": 3.0.15 + '@types/mdast': 3.0.15 markdown-table: 3.0.3 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 @@ -72874,7 +56599,7 @@ snapshots: mdast-util-gfm-task-list-item@1.0.2: dependencies: - "@types/mdast": 3.0.15 + '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 mdast-util-gfm@2.0.2: @@ -72895,15 +56620,15 @@ snapshots: mdast-util-math@2.0.2: dependencies: - "@types/mdast": 3.0.15 + '@types/mdast': 3.0.15 longest-streak: 3.1.0 mdast-util-to-markdown: 1.5.0 mdast-util-mdx-expression@1.3.2: dependencies: - "@types/estree-jsx": 1.0.5 - "@types/hast": 2.3.10 - "@types/mdast": 3.0.15 + '@types/estree-jsx': 1.0.5 + '@types/hast': 2.3.10 + '@types/mdast': 3.0.15 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 transitivePeerDependencies: @@ -72911,10 +56636,10 @@ snapshots: mdast-util-mdx-jsx@2.1.4: dependencies: - "@types/estree-jsx": 1.0.5 - "@types/hast": 2.3.10 - "@types/mdast": 3.0.15 - "@types/unist": 2.0.10 + '@types/estree-jsx': 1.0.5 + '@types/hast': 2.3.10 + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 ccount: 2.0.1 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 @@ -72938,9 +56663,9 @@ snapshots: mdast-util-mdxjs-esm@1.3.1: dependencies: - "@types/estree-jsx": 1.0.5 - "@types/hast": 2.3.10 - "@types/mdast": 3.0.15 + '@types/estree-jsx': 1.0.5 + '@types/hast': 2.3.10 + '@types/mdast': 3.0.15 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 transitivePeerDependencies: @@ -72948,13 +56673,13 @@ snapshots: mdast-util-phrasing@3.0.1: dependencies: - "@types/mdast": 3.0.15 + '@types/mdast': 3.0.15 unist-util-is: 5.2.1 mdast-util-to-hast@12.3.0: dependencies: - "@types/hast": 2.3.10 - "@types/mdast": 3.0.15 + '@types/hast': 2.3.10 + '@types/mdast': 3.0.15 mdast-util-definitions: 5.1.2 micromark-util-sanitize-uri: 1.2.0 trim-lines: 3.0.1 @@ -72964,9 +56689,9 @@ snapshots: mdast-util-to-hast@13.1.0: dependencies: - "@types/hast": 3.0.4 - "@types/mdast": 4.0.4 - "@ungap/structured-clone": 1.2.0 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@ungap/structured-clone': 1.2.0 devlop: 1.1.0 micromark-util-sanitize-uri: 2.0.0 trim-lines: 3.0.1 @@ -72976,8 +56701,8 @@ snapshots: mdast-util-to-markdown@1.5.0: dependencies: - "@types/mdast": 3.0.15 - "@types/unist": 2.0.10 + '@types/mdast': 3.0.15 + '@types/unist': 2.0.10 longest-streak: 3.1.0 mdast-util-phrasing: 3.0.1 mdast-util-to-string: 3.2.0 @@ -72989,12 +56714,12 @@ snapshots: mdast-util-to-string@3.2.0: dependencies: - "@types/mdast": 3.0.15 + '@types/mdast': 3.0.15 mdast-util-toc@6.1.1: dependencies: - "@types/extend": 3.0.4 - "@types/mdast": 3.0.15 + '@types/extend': 3.0.4 + '@types/mdast': 3.0.15 extend: 3.0.2 github-slugger: 2.0.0 mdast-util-to-string: 3.2.0 @@ -73025,7 +56750,7 @@ snapshots: meow@8.1.2: dependencies: - "@types/minimist": 1.2.5 + '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 decamelize-keys: 1.1.1 hard-rejection: 2.1.0 @@ -73039,7 +56764,7 @@ snapshots: meow@9.0.0: dependencies: - "@types/minimist": 1.2.5 + '@types/minimist': 1.2.5 camelcase-keys: 6.2.2 decamelize: 1.2.0 decamelize-keys: 1.1.1 @@ -73070,9 +56795,9 @@ snapshots: mermaid@10.9.0: dependencies: - "@braintree/sanitize-url": 6.0.4 - "@types/d3-scale": 4.0.8 - "@types/d3-scale-chromatic": 3.0.3 + '@braintree/sanitize-url': 6.0.4 + '@types/d3-scale': 4.0.8 + '@types/d3-scale-chromatic': 3.0.3 cytoscape: 3.28.1 cytoscape-cose-bilkent: 4.1.0(cytoscape@3.28.1) d3: 7.9.0 @@ -73097,7 +56822,7 @@ snapshots: metro-babel-transformer@0.80.12: dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 flow-enums-runtime: 0.0.6 hermes-parser: 0.23.1 nullthrows: 1.1.1 @@ -73106,7 +56831,7 @@ snapshots: metro-babel-transformer@0.80.8: dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 hermes-parser: 0.20.1 nullthrows: 1.1.1 transitivePeerDependencies: @@ -73253,43 +56978,43 @@ snapshots: metro-react-native-babel-preset@0.76.8(@babel/core@7.24.3): dependencies: - "@babel/core": 7.24.3 - "@babel/plugin-proposal-async-generator-functions": 7.20.7(@babel/core@7.24.3) - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-export-default-from": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-numeric-separator": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.24.3) - "@babel/plugin-proposal-optional-catch-binding": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.24.3) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-export-default-from": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-syntax-flow": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-async-to-generator": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-block-scoping": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-classes": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-computed-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-destructuring": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-flow-strip-types": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-function-name": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-literals": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.24.3) - "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-display-name": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx-self": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx-source": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-runtime": 7.24.3(@babel/core@7.24.3) - "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-spread": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-sticky-regex": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-typescript": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-unicode-regex": 7.24.1(@babel/core@7.24.3) - "@babel/template": 7.24.0 + '@babel/core': 7.24.3 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.3) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) + '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) + '@babel/template': 7.24.0 babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.3) react-refresh: 0.4.3 transitivePeerDependencies: @@ -73297,43 +57022,43 @@ snapshots: metro-react-native-babel-preset@0.77.0(@babel/core@7.24.3): dependencies: - "@babel/core": 7.24.3 - "@babel/plugin-proposal-async-generator-functions": 7.20.7(@babel/core@7.24.3) - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-export-default-from": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-numeric-separator": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.24.3) - "@babel/plugin-proposal-optional-catch-binding": 7.18.6(@babel/core@7.24.3) - "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.24.3) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-export-default-from": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-syntax-flow": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.24.3) - "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-async-to-generator": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-block-scoping": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-classes": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-computed-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-destructuring": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-flow-strip-types": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-function-name": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-literals": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-modules-commonjs": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.24.3) - "@babel/plugin-transform-parameters": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-display-name": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx": 7.23.4(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx-self": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-react-jsx-source": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-runtime": 7.24.3(@babel/core@7.24.3) - "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-spread": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-sticky-regex": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-typescript": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-unicode-regex": 7.24.1(@babel/core@7.24.3) - "@babel/template": 7.24.0 + '@babel/core': 7.24.3 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.3) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.24.3) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.3) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.3) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.3) + '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-async-to-generator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-block-scoping': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-classes': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-computed-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-destructuring': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-flow-strip-types': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-function-name': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-literals': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.24.3) + '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-display-name': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx-self': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-react-jsx-source': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.3) + '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-spread': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-sticky-regex': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-typescript': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-unicode-regex': 7.24.1(@babel/core@7.24.3) + '@babel/template': 7.24.0 babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.3) react-refresh: 0.4.3 transitivePeerDependencies: @@ -73341,7 +57066,7 @@ snapshots: metro-react-native-babel-transformer@0.77.0(@babel/core@7.24.3): dependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 babel-preset-fbjs: 3.4.0(@babel/core@7.24.3) hermes-parser: 0.14.0 metro-react-native-babel-preset: 0.77.0(@babel/core@7.24.3) @@ -73357,17 +57082,17 @@ snapshots: metro-runtime@0.80.12: dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 flow-enums-runtime: 0.0.6 metro-runtime@0.80.8: dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 metro-source-map@0.80.12: dependencies: - "@babel/traverse": 7.24.1 - "@babel/types": 7.24.0 + '@babel/traverse': 7.24.1 + '@babel/types': 7.24.0 flow-enums-runtime: 0.0.6 invariant: 2.2.4 metro-symbolicate: 0.80.12 @@ -73380,8 +57105,8 @@ snapshots: metro-source-map@0.80.8: dependencies: - "@babel/traverse": 7.24.1 - "@babel/types": 7.24.0 + '@babel/traverse': 7.24.1 + '@babel/types': 7.24.0 invariant: 2.2.4 metro-symbolicate: 0.80.8 nullthrows: 1.1.1 @@ -73416,10 +57141,10 @@ snapshots: metro-transform-plugins@0.80.12: dependencies: - "@babel/core": 7.24.3 - "@babel/generator": 7.24.1 - "@babel/template": 7.24.0 - "@babel/traverse": 7.24.1 + '@babel/core': 7.24.3 + '@babel/generator': 7.24.1 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.1 flow-enums-runtime: 0.0.6 nullthrows: 1.1.1 transitivePeerDependencies: @@ -73427,20 +57152,20 @@ snapshots: metro-transform-plugins@0.80.8: dependencies: - "@babel/core": 7.24.3 - "@babel/generator": 7.24.1 - "@babel/template": 7.24.0 - "@babel/traverse": 7.24.1 + '@babel/core': 7.24.3 + '@babel/generator': 7.24.1 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.1 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color metro-transform-worker@0.80.12: dependencies: - "@babel/core": 7.24.3 - "@babel/generator": 7.24.1 - "@babel/parser": 7.24.1 - "@babel/types": 7.24.0 + '@babel/core': 7.24.3 + '@babel/generator': 7.24.1 + '@babel/parser': 7.24.1 + '@babel/types': 7.24.0 flow-enums-runtime: 0.0.6 metro: 0.80.12 metro-babel-transformer: 0.80.12 @@ -73457,10 +57182,10 @@ snapshots: metro-transform-worker@0.80.8: dependencies: - "@babel/core": 7.24.3 - "@babel/generator": 7.24.1 - "@babel/parser": 7.24.1 - "@babel/types": 7.24.0 + '@babel/core': 7.24.3 + '@babel/generator': 7.24.1 + '@babel/parser': 7.24.1 + '@babel/types': 7.24.0 metro: 0.80.8 metro-babel-transformer: 0.80.8 metro-cache: 0.80.8 @@ -73477,13 +57202,13 @@ snapshots: metro@0.80.12: dependencies: - "@babel/code-frame": 7.24.6 - "@babel/core": 7.24.3 - "@babel/generator": 7.24.1 - "@babel/parser": 7.24.1 - "@babel/template": 7.24.0 - "@babel/traverse": 7.24.1 - "@babel/types": 7.24.0 + '@babel/code-frame': 7.24.6 + '@babel/core': 7.24.3 + '@babel/generator': 7.24.1 + '@babel/parser': 7.24.1 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.1 + '@babel/types': 7.24.0 accepts: 1.3.8 chalk: 4.1.2 ci-info: 2.0.0 @@ -73526,13 +57251,13 @@ snapshots: metro@0.80.8: dependencies: - "@babel/code-frame": 7.24.6 - "@babel/core": 7.24.3 - "@babel/generator": 7.24.1 - "@babel/parser": 7.24.1 - "@babel/template": 7.24.0 - "@babel/traverse": 7.24.1 - "@babel/types": 7.24.0 + '@babel/code-frame': 7.24.6 + '@babel/core': 7.24.3 + '@babel/generator': 7.24.1 + '@babel/parser': 7.24.1 + '@babel/template': 7.24.0 + '@babel/traverse': 7.24.1 + '@babel/types': 7.24.0 accepts: 1.3.8 chalk: 4.1.2 ci-info: 2.0.0 @@ -73673,7 +57398,7 @@ snapshots: micromark-extension-math@2.1.2: dependencies: - "@types/katex": 0.16.7 + '@types/katex': 0.16.7 katex: 0.16.10 micromark-factory-space: 1.1.0 micromark-util-character: 1.2.0 @@ -73683,7 +57408,7 @@ snapshots: micromark-extension-mdx-expression@1.0.8: dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 micromark-factory-mdx-expression: 1.0.9 micromark-factory-space: 1.1.0 micromark-util-character: 1.2.0 @@ -73694,8 +57419,8 @@ snapshots: micromark-extension-mdx-jsx@1.0.5: dependencies: - "@types/acorn": 4.0.6 - "@types/estree": 1.0.5 + '@types/acorn': 4.0.6 + '@types/estree': 1.0.5 estree-util-is-identifier-name: 2.1.0 micromark-factory-mdx-expression: 1.0.9 micromark-factory-space: 1.1.0 @@ -73711,7 +57436,7 @@ snapshots: micromark-extension-mdxjs-esm@1.0.5: dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 micromark-core-commonmark: 1.1.0 micromark-util-character: 1.2.0 micromark-util-events-to-acorn: 1.2.3 @@ -73760,7 +57485,7 @@ snapshots: micromark-factory-mdx-expression@1.0.9: dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 micromark-util-character: 1.2.0 micromark-util-events-to-acorn: 1.2.3 micromark-util-symbol: 1.1.0 @@ -73868,9 +57593,9 @@ snapshots: micromark-util-events-to-acorn@1.2.3: dependencies: - "@types/acorn": 4.0.6 - "@types/estree": 1.0.5 - "@types/unist": 2.0.10 + '@types/acorn': 4.0.6 + '@types/estree': 1.0.5 + '@types/unist': 2.0.10 estree-util-visit: 1.2.1 micromark-util-symbol: 1.1.0 micromark-util-types: 1.1.0 @@ -73933,7 +57658,7 @@ snapshots: micromark@3.2.0: dependencies: - "@types/debug": 4.1.12 + '@types/debug': 4.1.12 debug: 4.3.4 decode-named-character-reference: 1.0.2 micromark-core-commonmark: 1.1.0 @@ -73955,7 +57680,7 @@ snapshots: micromark@4.0.0: dependencies: - "@types/debug": 4.1.12 + '@types/debug': 4.1.12 debug: 4.3.4 decode-named-character-reference: 1.0.2 devlop: 1.1.0 @@ -74173,14 +57898,14 @@ snapshots: msw@2.2.12(typescript@5.4.3): dependencies: - "@bundled-es-modules/cookie": 2.0.0 - "@bundled-es-modules/statuses": 1.0.1 - "@inquirer/confirm": 3.1.7 - "@mswjs/cookies": 1.1.0 - "@mswjs/interceptors": 0.26.14 - "@open-draft/until": 2.1.0 - "@types/cookie": 0.6.0 - "@types/statuses": 2.0.5 + '@bundled-es-modules/cookie': 2.0.0 + '@bundled-es-modules/statuses': 1.0.1 + '@inquirer/confirm': 3.1.7 + '@mswjs/cookies': 1.1.0 + '@mswjs/interceptors': 0.26.14 + '@open-draft/until': 2.1.0 + '@types/cookie': 0.6.0 + '@types/statuses': 2.0.5 chalk: 4.1.2 graphql: 16.8.1 headers-polyfill: 4.0.3 @@ -74195,14 +57920,14 @@ snapshots: msw@2.2.13(typescript@5.4.3): dependencies: - "@bundled-es-modules/cookie": 2.0.0 - "@bundled-es-modules/statuses": 1.0.1 - "@inquirer/confirm": 3.1.7 - "@mswjs/cookies": 1.1.0 - "@mswjs/interceptors": 0.26.14 - "@open-draft/until": 2.1.0 - "@types/cookie": 0.6.0 - "@types/statuses": 2.0.5 + '@bundled-es-modules/cookie': 2.0.0 + '@bundled-es-modules/statuses': 1.0.1 + '@inquirer/confirm': 3.1.7 + '@mswjs/cookies': 1.1.0 + '@mswjs/interceptors': 0.26.14 + '@open-draft/until': 2.1.0 + '@types/cookie': 0.6.0 + '@types/statuses': 2.0.5 chalk: 4.1.2 graphql: 16.8.1 headers-polyfill: 4.0.3 @@ -74217,14 +57942,14 @@ snapshots: msw@2.2.13(typescript@5.4.5): dependencies: - "@bundled-es-modules/cookie": 2.0.0 - "@bundled-es-modules/statuses": 1.0.1 - "@inquirer/confirm": 3.1.7 - "@mswjs/cookies": 1.1.0 - "@mswjs/interceptors": 0.26.14 - "@open-draft/until": 2.1.0 - "@types/cookie": 0.6.0 - "@types/statuses": 2.0.5 + '@bundled-es-modules/cookie': 2.0.0 + '@bundled-es-modules/statuses': 1.0.1 + '@inquirer/confirm': 3.1.7 + '@mswjs/cookies': 1.1.0 + '@mswjs/interceptors': 0.26.14 + '@open-draft/until': 2.1.0 + '@types/cookie': 0.6.0 + '@types/statuses': 2.0.5 chalk: 4.1.2 graphql: 16.8.1 headers-polyfill: 4.0.3 @@ -74239,14 +57964,14 @@ snapshots: msw@2.3.4(typescript@5.4.3): dependencies: - "@bundled-es-modules/cookie": 2.0.0 - "@bundled-es-modules/statuses": 1.0.1 - "@bundled-es-modules/tough-cookie": 0.1.6 - "@inquirer/confirm": 3.1.7 - "@mswjs/interceptors": 0.29.1 - "@open-draft/until": 2.1.0 - "@types/cookie": 0.6.0 - "@types/statuses": 2.0.5 + '@bundled-es-modules/cookie': 2.0.0 + '@bundled-es-modules/statuses': 1.0.1 + '@bundled-es-modules/tough-cookie': 0.1.6 + '@inquirer/confirm': 3.1.7 + '@mswjs/interceptors': 0.29.1 + '@open-draft/until': 2.1.0 + '@types/cookie': 0.6.0 + '@types/statuses': 2.0.5 chalk: 4.1.2 graphql: 16.8.1 headers-polyfill: 4.0.3 @@ -74343,22 +58068,22 @@ snapshots: near-abi@0.1.1: dependencies: - "@types/json-schema": 7.0.15 + '@types/json-schema': 7.0.15 near-api-js@3.0.2: dependencies: - "@near-js/accounts": 1.0.2 - "@near-js/crypto": 1.2.0 - "@near-js/keystores": 0.0.8 - "@near-js/keystores-browser": 0.0.8 - "@near-js/keystores-node": 0.0.8 - "@near-js/providers": 0.0.10 - "@near-js/signers": 0.1.0 - "@near-js/transactions": 1.1.0 - "@near-js/types": 0.0.4 - "@near-js/utils": 0.0.5 - "@near-js/wallet-account": 1.0.2 - "@noble/curves": 1.2.0 + '@near-js/accounts': 1.0.2 + '@near-js/crypto': 1.2.0 + '@near-js/keystores': 0.0.8 + '@near-js/keystores-browser': 0.0.8 + '@near-js/keystores-node': 0.0.8 + '@near-js/providers': 0.0.10 + '@near-js/signers': 0.1.0 + '@near-js/transactions': 1.1.0 + '@near-js/types': 0.0.4 + '@near-js/utils': 0.0.5 + '@near-js/wallet-account': 1.0.2 + '@noble/curves': 1.2.0 ajv: 8.11.2 ajv-formats: 2.1.1 bn.js: 5.2.1 @@ -74378,14 +58103,14 @@ snapshots: next-mdx-remote@4.4.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - "@mdx-js/mdx": 2.3.0 - "@mdx-js/react": 2.3.0(react@18.2.0) + '@mdx-js/mdx': 2.3.0 + '@mdx-js/react': 2.3.0(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) vfile: 5.3.7 vfile-matter: 3.0.1 transitivePeerDependencies: - - "@types/react" + - '@types/react' - supports-color next-seo@6.5.0(next@14.2.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0): @@ -74404,35 +58129,35 @@ snapshots: next@13.2.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - "@next/env": 13.2.4 - "@swc/helpers": 0.4.14 + '@next/env': 13.2.4 + '@swc/helpers': 0.4.14 caniuse-lite: 1.0.30001600 postcss: 8.4.14 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) styled-jsx: 5.1.1(react@18.2.0) optionalDependencies: - "@next/swc-android-arm-eabi": 13.2.4 - "@next/swc-android-arm64": 13.2.4 - "@next/swc-darwin-arm64": 13.2.4 - "@next/swc-darwin-x64": 13.2.4 - "@next/swc-freebsd-x64": 13.2.4 - "@next/swc-linux-arm-gnueabihf": 13.2.4 - "@next/swc-linux-arm64-gnu": 13.2.4 - "@next/swc-linux-arm64-musl": 13.2.4 - "@next/swc-linux-x64-gnu": 13.2.4 - "@next/swc-linux-x64-musl": 13.2.4 - "@next/swc-win32-arm64-msvc": 13.2.4 - "@next/swc-win32-ia32-msvc": 13.2.4 - "@next/swc-win32-x64-msvc": 13.2.4 - transitivePeerDependencies: - - "@babel/core" + '@next/swc-android-arm-eabi': 13.2.4 + '@next/swc-android-arm64': 13.2.4 + '@next/swc-darwin-arm64': 13.2.4 + '@next/swc-darwin-x64': 13.2.4 + '@next/swc-freebsd-x64': 13.2.4 + '@next/swc-linux-arm-gnueabihf': 13.2.4 + '@next/swc-linux-arm64-gnu': 13.2.4 + '@next/swc-linux-arm64-musl': 13.2.4 + '@next/swc-linux-x64-gnu': 13.2.4 + '@next/swc-linux-x64-musl': 13.2.4 + '@next/swc-win32-arm64-msvc': 13.2.4 + '@next/swc-win32-ia32-msvc': 13.2.4 + '@next/swc-win32-x64-msvc': 13.2.4 + transitivePeerDependencies: + - '@babel/core' - babel-plugin-macros next@14.2.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - "@next/env": 14.2.12 - "@swc/helpers": 0.5.5 + '@next/env': 14.2.12 + '@swc/helpers': 0.5.5 busboy: 1.6.0 caniuse-lite: 1.0.30001600 graceful-fs: 4.2.11 @@ -74441,23 +58166,23 @@ snapshots: react-dom: 18.2.0(react@18.2.0) styled-jsx: 5.1.1(react@18.2.0) optionalDependencies: - "@next/swc-darwin-arm64": 14.2.12 - "@next/swc-darwin-x64": 14.2.12 - "@next/swc-linux-arm64-gnu": 14.2.12 - "@next/swc-linux-arm64-musl": 14.2.12 - "@next/swc-linux-x64-gnu": 14.2.12 - "@next/swc-linux-x64-musl": 14.2.12 - "@next/swc-win32-arm64-msvc": 14.2.12 - "@next/swc-win32-ia32-msvc": 14.2.12 - "@next/swc-win32-x64-msvc": 14.2.12 - transitivePeerDependencies: - - "@babel/core" + '@next/swc-darwin-arm64': 14.2.12 + '@next/swc-darwin-x64': 14.2.12 + '@next/swc-linux-arm64-gnu': 14.2.12 + '@next/swc-linux-arm64-musl': 14.2.12 + '@next/swc-linux-x64-gnu': 14.2.12 + '@next/swc-linux-x64-musl': 14.2.12 + '@next/swc-win32-arm64-msvc': 14.2.12 + '@next/swc-win32-ia32-msvc': 14.2.12 + '@next/swc-win32-x64-msvc': 14.2.12 + transitivePeerDependencies: + - '@babel/core' - babel-plugin-macros next@14.2.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - "@next/env": 14.2.12 - "@swc/helpers": 0.5.5 + '@next/env': 14.2.12 + '@swc/helpers': 0.5.5 busboy: 1.6.0 caniuse-lite: 1.0.30001600 graceful-fs: 4.2.11 @@ -74466,23 +58191,23 @@ snapshots: react-dom: 18.3.1(react@18.3.1) styled-jsx: 5.1.1(react@18.3.1) optionalDependencies: - "@next/swc-darwin-arm64": 14.2.12 - "@next/swc-darwin-x64": 14.2.12 - "@next/swc-linux-arm64-gnu": 14.2.12 - "@next/swc-linux-arm64-musl": 14.2.12 - "@next/swc-linux-x64-gnu": 14.2.12 - "@next/swc-linux-x64-musl": 14.2.12 - "@next/swc-win32-arm64-msvc": 14.2.12 - "@next/swc-win32-ia32-msvc": 14.2.12 - "@next/swc-win32-x64-msvc": 14.2.12 - transitivePeerDependencies: - - "@babel/core" + '@next/swc-darwin-arm64': 14.2.12 + '@next/swc-darwin-x64': 14.2.12 + '@next/swc-linux-arm64-gnu': 14.2.12 + '@next/swc-linux-arm64-musl': 14.2.12 + '@next/swc-linux-x64-gnu': 14.2.12 + '@next/swc-linux-x64-musl': 14.2.12 + '@next/swc-win32-arm64-msvc': 14.2.12 + '@next/swc-win32-ia32-msvc': 14.2.12 + '@next/swc-win32-x64-msvc': 14.2.12 + transitivePeerDependencies: + - '@babel/core' - babel-plugin-macros nextra-theme-docs@2.13.4(next@14.2.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(nextra@2.13.4(next@14.2.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - "@headlessui/react": 1.7.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@popperjs/core": 2.11.8 + '@headlessui/react': 1.7.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@popperjs/core': 2.11.8 clsx: 2.1.1 escape-string-regexp: 5.0.0 flexsearch: 0.7.43 @@ -74501,12 +58226,12 @@ snapshots: nextra@2.13.4(next@14.2.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - "@headlessui/react": 1.7.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@mdx-js/mdx": 2.3.0 - "@mdx-js/react": 2.3.0(react@18.2.0) - "@napi-rs/simple-git": 0.1.16 - "@theguild/remark-mermaid": 0.0.5(react@18.2.0) - "@theguild/remark-npm2yarn": 0.2.1 + '@headlessui/react': 1.7.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@mdx-js/mdx': 2.3.0 + '@mdx-js/react': 2.3.0(react@18.2.0) + '@napi-rs/simple-git': 0.1.16 + '@theguild/remark-mermaid': 0.0.5(react@18.2.0) + '@theguild/remark-npm2yarn': 0.2.1 clsx: 2.1.1 github-slugger: 2.0.0 graceful-fs: 4.2.11 @@ -74531,7 +58256,7 @@ snapshots: unist-util-visit: 5.0.0 zod: 3.22.4 transitivePeerDependencies: - - "@types/react" + - '@types/react' - supports-color nice-try@1.0.5: {} @@ -74756,8 +58481,8 @@ snapshots: nyc@15.1.0: dependencies: - "@istanbuljs/load-nyc-config": 1.1.0 - "@istanbuljs/schema": 0.1.3 + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.3 caching-transform: 4.0.0 convert-source-map: 1.9.0 decamelize: 1.2.0 @@ -74883,11 +58608,11 @@ snapshots: octokit-auth-probot@2.0.0(@octokit/core@5.1.0): dependencies: - "@octokit/auth-app": 6.1.1 - "@octokit/auth-token": 4.0.0 - "@octokit/auth-unauthenticated": 5.0.1 - "@octokit/core": 5.1.0 - "@octokit/types": 12.6.0 + '@octokit/auth-app': 6.1.1 + '@octokit/auth-token': 4.0.0 + '@octokit/auth-unauthenticated': 5.0.1 + '@octokit/core': 5.1.0 + '@octokit/types': 12.6.0 ohash@1.1.3: {} @@ -74946,9 +58671,9 @@ snapshots: opentelemetry-instrumentation-fetch-node@1.2.0: dependencies: - "@opentelemetry/api": 1.9.0 - "@opentelemetry/instrumentation": 0.43.0(@opentelemetry/api@1.9.0) - "@opentelemetry/semantic-conventions": 1.25.1 + '@opentelemetry/api': 1.9.0 + '@opentelemetry/instrumentation': 0.43.0(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 transitivePeerDependencies: - supports-color optional: true @@ -74964,7 +58689,7 @@ snapshots: optionator@0.9.3: dependencies: - "@aashutoshrathi/word-wrap": 1.2.6 + '@aashutoshrathi/word-wrap': 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 @@ -75061,12 +58786,12 @@ snapshots: p-retry@4.6.2: dependencies: - "@types/retry": 0.12.0 + '@types/retry': 0.12.0 retry: 0.13.1 p-retry@6.2.0: dependencies: - "@types/retry": 0.12.2 + '@types/retry': 0.12.2 is-network-error: 1.1.0 retry: 0.13.1 @@ -75114,7 +58839,7 @@ snapshots: parse-entities@4.0.1: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 character-entities: 2.0.2 character-entities-legacy: 3.0.0 character-reference-invalid: 2.0.1 @@ -75138,7 +58863,7 @@ snapshots: parse-json@5.2.0: dependencies: - "@babel/code-frame": 7.24.6 + '@babel/code-frame': 7.24.6 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -75265,7 +58990,7 @@ snapshots: periscopic@3.1.0: dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 estree-walker: 3.0.3 is-reference: 3.0.2 @@ -75319,7 +59044,7 @@ snapshots: pino-pretty@6.0.0: dependencies: - "@hapi/bourne": 2.1.0 + '@hapi/bourne': 2.1.0 args: 5.0.3 colorette: 1.4.0 dateformat: 4.6.3 @@ -75399,7 +59124,7 @@ snapshots: plist@3.1.0: dependencies: - "@xmldom/xmldom": 0.8.10 + '@xmldom/xmldom': 0.8.10 base64-js: 1.5.1 xmlbuilder: 15.1.1 @@ -75409,7 +59134,7 @@ snapshots: polished@4.3.1: dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 portfinder@1.0.32: dependencies: @@ -75559,13 +59284,13 @@ snapshots: postcss-double-position-gradients@3.1.2(postcss@8.4.32): dependencies: - "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.32) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32) postcss: 8.4.32 postcss-value-parser: 4.2.0 postcss-double-position-gradients@3.1.2(postcss@8.4.38): dependencies: - "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.38) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.38) postcss: 8.4.38 postcss-value-parser: 4.2.0 @@ -75655,13 +59380,13 @@ snapshots: postcss-lab-function@4.2.1(postcss@8.4.32): dependencies: - "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.32) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32) postcss: 8.4.32 postcss-value-parser: 4.2.0 postcss-lab-function@4.2.1(postcss@8.4.38): dependencies: - "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.38) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.38) postcss: 8.4.38 postcss-value-parser: 4.2.0 @@ -75787,13 +59512,13 @@ snapshots: postcss-nesting@10.2.0(postcss@8.4.32): dependencies: - "@csstools/selector-specificity": 2.2.0(postcss-selector-parser@6.0.16) + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.16) postcss: 8.4.32 postcss-selector-parser: 6.0.16 postcss-nesting@10.2.0(postcss@8.4.38): dependencies: - "@csstools/selector-specificity": 2.2.0(postcss-selector-parser@6.0.16) + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.16) postcss: 8.4.38 postcss-selector-parser: 6.0.16 @@ -75845,7 +59570,7 @@ snapshots: postcss-normalize@10.0.1(browserslist@4.23.0)(postcss@8.4.32): dependencies: - "@csstools/normalize.css": 12.1.1 + '@csstools/normalize.css': 12.1.1 browserslist: 4.23.0 postcss: 8.4.32 postcss-browser-comments: 4.0.0(browserslist@4.23.0)(postcss@8.4.32) @@ -75853,7 +59578,7 @@ snapshots: postcss-normalize@10.0.1(browserslist@4.23.0)(postcss@8.4.38): dependencies: - "@csstools/normalize.css": 12.1.1 + '@csstools/normalize.css': 12.1.1 browserslist: 4.23.0 postcss: 8.4.38 postcss-browser-comments: 4.0.0(browserslist@4.23.0)(postcss@8.4.38) @@ -75903,20 +59628,20 @@ snapshots: postcss-preset-env@7.8.3(postcss@8.4.32): dependencies: - "@csstools/postcss-cascade-layers": 1.1.1(postcss@8.4.32) - "@csstools/postcss-color-function": 1.1.1(postcss@8.4.32) - "@csstools/postcss-font-format-keywords": 1.0.1(postcss@8.4.32) - "@csstools/postcss-hwb-function": 1.0.2(postcss@8.4.32) - "@csstools/postcss-ic-unit": 1.0.1(postcss@8.4.32) - "@csstools/postcss-is-pseudo-class": 2.0.7(postcss@8.4.32) - "@csstools/postcss-nested-calc": 1.0.0(postcss@8.4.32) - "@csstools/postcss-normalize-display-values": 1.0.1(postcss@8.4.32) - "@csstools/postcss-oklab-function": 1.1.1(postcss@8.4.32) - "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.32) - "@csstools/postcss-stepped-value-functions": 1.0.1(postcss@8.4.32) - "@csstools/postcss-text-decoration-shorthand": 1.0.0(postcss@8.4.32) - "@csstools/postcss-trigonometric-functions": 1.0.2(postcss@8.4.32) - "@csstools/postcss-unset-value": 1.0.2(postcss@8.4.32) + '@csstools/postcss-cascade-layers': 1.1.1(postcss@8.4.32) + '@csstools/postcss-color-function': 1.1.1(postcss@8.4.32) + '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.32) + '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.32) + '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.32) + '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.32) + '@csstools/postcss-nested-calc': 1.0.0(postcss@8.4.32) + '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.32) + '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.32) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.32) + '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.32) + '@csstools/postcss-text-decoration-shorthand': 1.0.0(postcss@8.4.32) + '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.32) + '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.32) autoprefixer: 10.4.19(postcss@8.4.32) browserslist: 4.23.0 css-blank-pseudo: 3.0.3(postcss@8.4.32) @@ -75956,20 +59681,20 @@ snapshots: postcss-preset-env@7.8.3(postcss@8.4.38): dependencies: - "@csstools/postcss-cascade-layers": 1.1.1(postcss@8.4.38) - "@csstools/postcss-color-function": 1.1.1(postcss@8.4.38) - "@csstools/postcss-font-format-keywords": 1.0.1(postcss@8.4.38) - "@csstools/postcss-hwb-function": 1.0.2(postcss@8.4.38) - "@csstools/postcss-ic-unit": 1.0.1(postcss@8.4.38) - "@csstools/postcss-is-pseudo-class": 2.0.7(postcss@8.4.38) - "@csstools/postcss-nested-calc": 1.0.0(postcss@8.4.38) - "@csstools/postcss-normalize-display-values": 1.0.1(postcss@8.4.38) - "@csstools/postcss-oklab-function": 1.1.1(postcss@8.4.38) - "@csstools/postcss-progressive-custom-properties": 1.3.0(postcss@8.4.38) - "@csstools/postcss-stepped-value-functions": 1.0.1(postcss@8.4.38) - "@csstools/postcss-text-decoration-shorthand": 1.0.0(postcss@8.4.38) - "@csstools/postcss-trigonometric-functions": 1.0.2(postcss@8.4.38) - "@csstools/postcss-unset-value": 1.0.2(postcss@8.4.38) + '@csstools/postcss-cascade-layers': 1.1.1(postcss@8.4.38) + '@csstools/postcss-color-function': 1.1.1(postcss@8.4.38) + '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.38) + '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.38) + '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.38) + '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.38) + '@csstools/postcss-nested-calc': 1.0.0(postcss@8.4.38) + '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.38) + '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.38) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.38) + '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.38) + '@csstools/postcss-text-decoration-shorthand': 1.0.0(postcss@8.4.38) + '@csstools/postcss-trigonometric-functions': 1.0.2(postcss@8.4.38) + '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.38) autoprefixer: 10.4.19(postcss@8.4.38) browserslist: 4.23.0 css-blank-pseudo: 3.0.3(postcss@8.4.38) @@ -76158,14 +59883,14 @@ snapshots: pretty-format@24.9.0: dependencies: - "@jest/types": 24.9.0 + '@jest/types': 24.9.0 ansi-regex: 4.1.1 ansi-styles: 3.2.1 react-is: 16.13.1 pretty-format@26.6.2: dependencies: - "@jest/types": 26.6.2 + '@jest/types': 26.6.2 ansi-regex: 5.0.1 ansi-styles: 4.3.0 react-is: 17.0.2 @@ -76178,14 +59903,14 @@ snapshots: pretty-format@28.1.3: dependencies: - "@jest/schemas": 28.1.3 + '@jest/schemas': 28.1.3 ansi-regex: 5.0.1 ansi-styles: 5.2.0 react-is: 18.2.0 pretty-format@29.7.0: dependencies: - "@jest/schemas": 29.6.3 + '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 react-is: 18.2.0 @@ -76193,19 +59918,19 @@ snapshots: probot@13.2.2: dependencies: - "@octokit/core": 5.1.0 - "@octokit/plugin-enterprise-compatibility": 4.1.0 - "@octokit/plugin-paginate-rest": 9.2.1(@octokit/core@5.1.0) - "@octokit/plugin-rest-endpoint-methods": 10.4.1(@octokit/core@5.1.0) - "@octokit/plugin-retry": 6.0.1(@octokit/core@5.1.0) - "@octokit/plugin-throttling": 8.2.0(@octokit/core@5.1.0) - "@octokit/request": 8.2.0 - "@octokit/types": 12.6.0 - "@octokit/webhooks": 12.2.0 - "@probot/get-private-key": 1.1.2 - "@probot/octokit-plugin-config": 2.0.1(@octokit/core@5.1.0) - "@probot/pino": 2.3.5 - "@types/express": 4.17.21 + '@octokit/core': 5.1.0 + '@octokit/plugin-enterprise-compatibility': 4.1.0 + '@octokit/plugin-paginate-rest': 9.2.1(@octokit/core@5.1.0) + '@octokit/plugin-rest-endpoint-methods': 10.4.1(@octokit/core@5.1.0) + '@octokit/plugin-retry': 6.0.1(@octokit/core@5.1.0) + '@octokit/plugin-throttling': 8.2.0(@octokit/core@5.1.0) + '@octokit/request': 8.2.0 + '@octokit/types': 12.6.0 + '@octokit/webhooks': 12.2.0 + '@probot/get-private-key': 1.1.2 + '@probot/octokit-plugin-config': 2.0.1(@octokit/core@5.1.0) + '@probot/pino': 2.3.5 + '@types/express': 4.17.21 bottleneck: 2.19.5 commander: 12.0.0 deepmerge: 4.3.1 @@ -76316,80 +60041,80 @@ snapshots: protobufjs@6.10.3: dependencies: - "@protobufjs/aspromise": 1.1.2 - "@protobufjs/base64": 1.1.2 - "@protobufjs/codegen": 2.0.4 - "@protobufjs/eventemitter": 1.1.0 - "@protobufjs/fetch": 1.1.0 - "@protobufjs/float": 1.0.2 - "@protobufjs/inquire": 1.1.0 - "@protobufjs/path": 1.1.2 - "@protobufjs/pool": 1.1.0 - "@protobufjs/utf8": 1.1.0 - "@types/long": 4.0.2 - "@types/node": 13.13.52 + '@protobufjs/aspromise': 1.1.2 + '@protobufjs/base64': 1.1.2 + '@protobufjs/codegen': 2.0.4 + '@protobufjs/eventemitter': 1.1.0 + '@protobufjs/fetch': 1.1.0 + '@protobufjs/float': 1.0.2 + '@protobufjs/inquire': 1.1.0 + '@protobufjs/path': 1.1.2 + '@protobufjs/pool': 1.1.0 + '@protobufjs/utf8': 1.1.0 + '@types/long': 4.0.2 + '@types/node': 13.13.52 long: 4.0.0 protobufjs@6.11.3: dependencies: - "@protobufjs/aspromise": 1.1.2 - "@protobufjs/base64": 1.1.2 - "@protobufjs/codegen": 2.0.4 - "@protobufjs/eventemitter": 1.1.0 - "@protobufjs/fetch": 1.1.0 - "@protobufjs/float": 1.0.2 - "@protobufjs/inquire": 1.1.0 - "@protobufjs/path": 1.1.2 - "@protobufjs/pool": 1.1.0 - "@protobufjs/utf8": 1.1.0 - "@types/long": 4.0.2 - "@types/node": 20.12.12 + '@protobufjs/aspromise': 1.1.2 + '@protobufjs/base64': 1.1.2 + '@protobufjs/codegen': 2.0.4 + '@protobufjs/eventemitter': 1.1.0 + '@protobufjs/fetch': 1.1.0 + '@protobufjs/float': 1.0.2 + '@protobufjs/inquire': 1.1.0 + '@protobufjs/path': 1.1.2 + '@protobufjs/pool': 1.1.0 + '@protobufjs/utf8': 1.1.0 + '@types/long': 4.0.2 + '@types/node': 20.12.12 long: 4.0.0 protobufjs@6.11.4: dependencies: - "@protobufjs/aspromise": 1.1.2 - "@protobufjs/base64": 1.1.2 - "@protobufjs/codegen": 2.0.4 - "@protobufjs/eventemitter": 1.1.0 - "@protobufjs/fetch": 1.1.0 - "@protobufjs/float": 1.0.2 - "@protobufjs/inquire": 1.1.0 - "@protobufjs/path": 1.1.2 - "@protobufjs/pool": 1.1.0 - "@protobufjs/utf8": 1.1.0 - "@types/long": 4.0.2 - "@types/node": 20.12.12 + '@protobufjs/aspromise': 1.1.2 + '@protobufjs/base64': 1.1.2 + '@protobufjs/codegen': 2.0.4 + '@protobufjs/eventemitter': 1.1.0 + '@protobufjs/fetch': 1.1.0 + '@protobufjs/float': 1.0.2 + '@protobufjs/inquire': 1.1.0 + '@protobufjs/path': 1.1.2 + '@protobufjs/pool': 1.1.0 + '@protobufjs/utf8': 1.1.0 + '@types/long': 4.0.2 + '@types/node': 20.12.12 long: 4.0.0 protobufjs@7.2.5: dependencies: - "@protobufjs/aspromise": 1.1.2 - "@protobufjs/base64": 1.1.2 - "@protobufjs/codegen": 2.0.4 - "@protobufjs/eventemitter": 1.1.0 - "@protobufjs/fetch": 1.1.0 - "@protobufjs/float": 1.0.2 - "@protobufjs/inquire": 1.1.0 - "@protobufjs/path": 1.1.2 - "@protobufjs/pool": 1.1.0 - "@protobufjs/utf8": 1.1.0 - "@types/node": 20.12.12 + '@protobufjs/aspromise': 1.1.2 + '@protobufjs/base64': 1.1.2 + '@protobufjs/codegen': 2.0.4 + '@protobufjs/eventemitter': 1.1.0 + '@protobufjs/fetch': 1.1.0 + '@protobufjs/float': 1.0.2 + '@protobufjs/inquire': 1.1.0 + '@protobufjs/path': 1.1.2 + '@protobufjs/pool': 1.1.0 + '@protobufjs/utf8': 1.1.0 + '@types/node': 20.12.12 long: 5.2.3 protobufjs@7.3.2: dependencies: - "@protobufjs/aspromise": 1.1.2 - "@protobufjs/base64": 1.1.2 - "@protobufjs/codegen": 2.0.4 - "@protobufjs/eventemitter": 1.1.0 - "@protobufjs/fetch": 1.1.0 - "@protobufjs/float": 1.0.2 - "@protobufjs/inquire": 1.1.0 - "@protobufjs/path": 1.1.2 - "@protobufjs/pool": 1.1.0 - "@protobufjs/utf8": 1.1.0 - "@types/node": 20.12.12 + '@protobufjs/aspromise': 1.1.2 + '@protobufjs/base64': 1.1.2 + '@protobufjs/codegen': 2.0.4 + '@protobufjs/eventemitter': 1.1.0 + '@protobufjs/fetch': 1.1.0 + '@protobufjs/float': 1.0.2 + '@protobufjs/inquire': 1.1.0 + '@protobufjs/path': 1.1.2 + '@protobufjs/pool': 1.1.0 + '@protobufjs/utf8': 1.1.0 + '@types/node': 20.12.12 long: 5.2.3 protocols@2.0.1: {} @@ -76454,7 +60179,7 @@ snapshots: puppeteer-core@2.1.1: dependencies: - "@types/mime-types": 2.1.4 + '@types/mime-types': 2.1.4 debug: 4.3.4 extract-zip: 1.7.0 https-proxy-agent: 4.0.0 @@ -76590,7 +60315,7 @@ snapshots: react-dev-utils@12.0.1(eslint@8.57.0)(typescript@5.4.3)(webpack@5.94.0): dependencies: - "@babel/code-frame": 7.24.6 + '@babel/code-frame': 7.24.6 address: 1.2.2 browserslist: 4.23.0 chalk: 4.1.2 @@ -76640,13 +60365,13 @@ snapshots: react-docgen@7.0.3: dependencies: - "@babel/core": 7.24.3 - "@babel/traverse": 7.24.1 - "@babel/types": 7.24.0 - "@types/babel__core": 7.20.5 - "@types/babel__traverse": 7.20.5 - "@types/doctrine": 0.0.9 - "@types/resolve": 1.20.6 + '@babel/core': 7.24.3 + '@babel/traverse': 7.24.1 + '@babel/types': 7.24.0 + '@types/babel__core': 7.20.5 + '@types/babel__traverse': 7.20.5 + '@types/doctrine': 0.0.9 + '@types/resolve': 1.20.6 doctrine: 3.0.0 resolve: 1.22.8 strip-indent: 4.0.0 @@ -76681,7 +60406,7 @@ snapshots: react-element-to-jsx-string@15.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - "@base2/pretty-print-object": 1.0.1 + '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -76695,7 +60420,7 @@ snapshots: react-i18next@11.18.6(i18next@20.6.1)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - "@babel/runtime": 7.24.1 + '@babel/runtime': 7.24.1 html-parse-stringify: 3.0.1 i18next: 20.6.1 react: 18.2.0 @@ -76704,7 +60429,7 @@ snapshots: react-i18next@13.5.0(i18next@23.10.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - "@babel/runtime": 7.24.1 + '@babel/runtime': 7.24.1 html-parse-stringify: 3.0.1 i18next: 23.10.1 react: 18.2.0 @@ -76718,7 +60443,7 @@ snapshots: react-inspector@4.0.1(react@18.3.1): dependencies: - "@babel/runtime": 7.24.1 + '@babel/runtime': 7.24.1 is-dom: 1.1.0 prop-types: 15.8.1 react: 18.3.1 @@ -76806,13 +60531,13 @@ snapshots: react-native-ble-plx@3.1.2: dependencies: - "@expo/config-plugins": 7.8.4 + '@expo/config-plugins': 7.8.4 transitivePeerDependencies: - supports-color react-native-ble-plx@3.1.2(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - "@expo/config-plugins": 7.8.4 + '@expo/config-plugins': 7.8.4 react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0) transitivePeerDependencies: @@ -76883,7 +60608,7 @@ snapshots: react-native-gesture-handler@2.16.0(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - "@egjs/hammerjs": 2.0.17 + '@egjs/hammerjs': 2.0.17 hoist-non-react-statics: 3.3.2 invariant: 2.2.4 lodash: 4.17.21 @@ -76950,7 +60675,7 @@ snapshots: react-native-modal-datetime-picker@14.0.1(@react-native-community/datetimepicker@6.7.5)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0)): dependencies: - "@react-native-community/datetimepicker": 6.7.5 + '@react-native-community/datetimepicker': 6.7.5 prop-types: 15.8.1 react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) @@ -76998,13 +60723,13 @@ snapshots: react-native-reanimated@3.8.1(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0): dependencies: - "@babel/core": 7.24.3 - "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-nullish-coalescing-operator": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-optional-chaining": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-template-literals": 7.24.1(@babel/core@7.24.3) - "@babel/preset-typescript": 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.3) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) convert-source-map: 2.0.0 invariant: 2.2.4 react: 18.2.0 @@ -77012,13 +60737,13 @@ snapshots: react-native-reanimated@3.9.0(@babel/core@7.24.3)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0): dependencies: - "@babel/core": 7.24.3 - "@babel/plugin-transform-arrow-functions": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-nullish-coalescing-operator": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-optional-chaining": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-shorthand-properties": 7.24.1(@babel/core@7.24.3) - "@babel/plugin-transform-template-literals": 7.24.1(@babel/core@7.24.3) - "@babel/preset-typescript": 7.24.1(@babel/core@7.24.3) + '@babel/core': 7.24.3 + '@babel/plugin-transform-arrow-functions': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-nullish-coalescing-operator': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-optional-chaining': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-shorthand-properties': 7.24.1(@babel/core@7.24.3) + '@babel/plugin-transform-template-literals': 7.24.1(@babel/core@7.24.3) + '@babel/preset-typescript': 7.24.1(@babel/core@7.24.3) convert-source-map: 2.0.0 invariant: 2.2.4 react: 18.2.0 @@ -77125,8 +60850,8 @@ snapshots: react-native-web@0.19.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - "@babel/runtime": 7.24.1 - "@react-native/normalize-color": 2.1.0 + '@babel/runtime': 7.24.1 + '@react-native/normalize-color': 2.1.0 fbjs: 3.0.5 inline-style-prefixer: 6.0.4 memoize-one: 6.0.0 @@ -77147,17 +60872,17 @@ snapshots: react-native@0.74.5(@types/react@18.2.73)(react@18.2.0): dependencies: - "@jest/create-cache-key-function": 29.7.0 - "@react-native-community/cli": 13.6.9 - "@react-native-community/cli-platform-android": 13.6.9 - "@react-native-community/cli-platform-ios": 13.6.9 - "@react-native/assets-registry": 0.74.87 - "@react-native/codegen": 0.74.87 - "@react-native/community-cli-plugin": 0.74.87 - "@react-native/gradle-plugin": 0.74.87 - "@react-native/js-polyfills": 0.74.87 - "@react-native/normalize-colors": 0.74.87 - "@react-native/virtualized-lists": 0.74.87(@types/react@18.2.73)(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + '@jest/create-cache-key-function': 29.7.0 + '@react-native-community/cli': 13.6.9 + '@react-native-community/cli-platform-android': 13.6.9 + '@react-native-community/cli-platform-ios': 13.6.9 + '@react-native/assets-registry': 0.74.87 + '@react-native/codegen': 0.74.87 + '@react-native/community-cli-plugin': 0.74.87 + '@react-native/gradle-plugin': 0.74.87 + '@react-native/js-polyfills': 0.74.87 + '@react-native/normalize-colors': 0.74.87 + '@react-native/virtualized-lists': 0.74.87(@types/react@18.2.73)(react-native@0.74.5(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -77186,9 +60911,9 @@ snapshots: ws: 6.2.3 yargs: 17.7.2 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 transitivePeerDependencies: - - "@babel/preset-env" + - '@babel/preset-env' - bufferutil - encoding - metro-resolver @@ -77198,17 +60923,17 @@ snapshots: react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0): dependencies: - "@jest/create-cache-key-function": 29.7.0 - "@react-native-community/cli": 13.6.9(metro-resolver@0.80.12) - "@react-native-community/cli-platform-android": 13.6.9 - "@react-native-community/cli-platform-ios": 13.6.9 - "@react-native/assets-registry": 0.74.88 - "@react-native/codegen": 0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3)) - "@react-native/community-cli-plugin": 0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-transform-worker@0.80.12) - "@react-native/gradle-plugin": 0.74.88 - "@react-native/js-polyfills": 0.74.88 - "@react-native/normalize-colors": 0.74.88 - "@react-native/virtualized-lists": 0.74.88(@types/react@18.2.73)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) + '@jest/create-cache-key-function': 29.7.0 + '@react-native-community/cli': 13.6.9(metro-resolver@0.80.12) + '@react-native-community/cli-platform-android': 13.6.9 + '@react-native-community/cli-platform-ios': 13.6.9 + '@react-native/assets-registry': 0.74.88 + '@react-native/codegen': 0.74.88(@babel/preset-env@7.24.3(@babel/core@7.24.3)) + '@react-native/community-cli-plugin': 0.74.88(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(metro-transform-worker@0.80.12) + '@react-native/gradle-plugin': 0.74.88 + '@react-native/js-polyfills': 0.74.88 + '@react-native/normalize-colors': 0.74.88 + '@react-native/virtualized-lists': 0.74.88(@types/react@18.2.73)(react-native@0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0))(react@18.2.0) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -77238,10 +60963,10 @@ snapshots: ws: 6.2.3 yargs: 17.7.2 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 transitivePeerDependencies: - - "@babel/core" - - "@babel/preset-env" + - '@babel/core' + - '@babel/preset-env' - bufferutil - encoding - metro-resolver @@ -77251,17 +60976,17 @@ snapshots: react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0): dependencies: - "@jest/create-cache-key-function": 29.7.0 - "@react-native-community/cli": 13.6.9 - "@react-native-community/cli-platform-android": 13.6.9 - "@react-native-community/cli-platform-ios": 13.6.9 - "@react-native/assets-registry": 0.74.88 - "@react-native/codegen": 0.74.88 - "@react-native/community-cli-plugin": 0.74.88(@babel/core@7.24.3) - "@react-native/gradle-plugin": 0.74.88 - "@react-native/js-polyfills": 0.74.88 - "@react-native/normalize-colors": 0.74.88 - "@react-native/virtualized-lists": 0.74.88(@types/react@18.2.73)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) + '@jest/create-cache-key-function': 29.7.0 + '@react-native-community/cli': 13.6.9 + '@react-native-community/cli-platform-android': 13.6.9 + '@react-native-community/cli-platform-ios': 13.6.9 + '@react-native/assets-registry': 0.74.88 + '@react-native/codegen': 0.74.88 + '@react-native/community-cli-plugin': 0.74.88(@babel/core@7.24.3) + '@react-native/gradle-plugin': 0.74.88 + '@react-native/js-polyfills': 0.74.88 + '@react-native/normalize-colors': 0.74.88 + '@react-native/virtualized-lists': 0.74.88(@types/react@18.2.73)(react-native@0.74.6(@babel/core@7.24.3)(@types/react@18.2.73)(react@18.2.0))(react@18.2.0) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -77291,10 +61016,10 @@ snapshots: ws: 6.2.3 yargs: 17.7.2 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 transitivePeerDependencies: - - "@babel/core" - - "@babel/preset-env" + - '@babel/core' + - '@babel/preset-env' - bufferutil - encoding - metro-resolver @@ -77311,8 +61036,8 @@ snapshots: react-redux@7.2.9(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - "@babel/runtime": 7.24.1 - "@types/react-redux": 7.1.33(@types/react@18.2.73) + '@babel/runtime': 7.24.1 + '@types/react-redux': 7.1.33(@types/react@18.2.73) hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -77321,19 +61046,19 @@ snapshots: optionalDependencies: react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - - "@types/react" + - '@types/react' react-redux@7.2.9(@types/react@18.2.73)(react@18.2.0): dependencies: - "@babel/runtime": 7.24.1 - "@types/react-redux": 7.1.33(@types/react@18.2.73) + '@babel/runtime': 7.24.1 + '@types/react-redux': 7.1.33(@types/react@18.2.73) hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 prop-types: 15.8.1 react: 18.2.0 react-is: 17.0.2 transitivePeerDependencies: - - "@types/react" + - '@types/react' react-refresh@0.10.0: {} @@ -77351,7 +61076,7 @@ snapshots: react-style-singleton: 2.2.1(@types/react@18.2.73)(react@18.2.0) tslib: 2.6.2 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 react-remove-scroll@2.5.5(@types/react@18.2.73)(react@18.2.0): dependencies: @@ -77362,11 +61087,11 @@ snapshots: use-callback-ref: 1.3.2(@types/react@18.2.73)(react@18.2.0) use-sidecar: 1.1.2(@types/react@18.2.73)(react@18.2.0) optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 react-router-dom@5.3.4(react@18.2.0): dependencies: - "@babel/runtime": 7.24.1 + '@babel/runtime': 7.24.1 history: 4.10.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -77377,7 +61102,7 @@ snapshots: react-router@5.3.4(react@18.2.0): dependencies: - "@babel/runtime": 7.24.1 + '@babel/runtime': 7.24.1 history: 4.10.1 hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 @@ -77390,9 +61115,9 @@ snapshots: react-scripts@5.0.1(react@18.2.0)(typescript@5.4.3): dependencies: - "@babel/core": 7.24.3 - "@pmmmwh/react-refresh-webpack-plugin": 0.5.11(react-refresh@0.11.0)(webpack-dev-server@4.15.2(webpack@5.94.0))(webpack@5.94.0) - "@svgr/webpack": 5.5.0 + '@babel/core': 7.24.3 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.11.0)(webpack-dev-server@4.15.2(webpack@5.94.0))(webpack@5.94.0) + '@svgr/webpack': 5.5.0 babel-jest: 27.5.1(@babel/core@7.24.3) babel-loader: 8.3.0(@babel/core@7.24.3)(webpack@5.94.0) babel-plugin-named-asset-import: 0.3.8(@babel/core@7.24.3) @@ -77442,13 +61167,13 @@ snapshots: fsevents: 2.3.3 typescript: 5.4.3 transitivePeerDependencies: - - "@babel/plugin-syntax-flow" - - "@babel/plugin-transform-react-jsx" - - "@parcel/css" - - "@rspack/core" - - "@swc/core" - - "@types/babel__core" - - "@types/webpack" + - '@babel/plugin-syntax-flow' + - '@babel/plugin-transform-react-jsx' + - '@parcel/css' + - '@rspack/core' + - '@swc/core' + - '@types/babel__core' + - '@types/webpack' - bufferutil - canvas - clean-css @@ -77477,10 +61202,10 @@ snapshots: react-select@3.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - "@babel/runtime": 7.24.1 - "@emotion/cache": 10.0.29 - "@emotion/core": 10.3.1(react@18.2.0) - "@emotion/css": 10.0.27 + '@babel/runtime': 7.24.1 + '@emotion/cache': 10.0.29 + '@emotion/core': 10.3.1(react@18.2.0) + '@emotion/css': 10.0.27 memoize-one: 5.2.1 prop-types: 15.8.1 react: 18.2.0 @@ -77490,11 +61215,11 @@ snapshots: react-select@5.8.0(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - "@babel/runtime": 7.24.1 - "@emotion/cache": 11.11.0 - "@emotion/react": 11.11.4(@types/react@18.2.73)(react@18.2.0) - "@floating-ui/dom": 1.6.3 - "@types/react-transition-group": 4.4.10(@types/react@18.2.73) + '@babel/runtime': 7.24.1 + '@emotion/cache': 11.11.0 + '@emotion/react': 11.11.4(@types/react@18.2.73)(react@18.2.0) + '@floating-ui/dom': 1.6.3 + '@types/react-transition-group': 4.4.10(@types/react@18.2.73) memoize-one: 6.0.0 prop-types: 15.8.1 react: 18.2.0 @@ -77502,15 +61227,15 @@ snapshots: react-transition-group: 4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) use-isomorphic-layout-effect: 1.1.2(@types/react@18.2.73)(react@18.2.0) transitivePeerDependencies: - - "@types/react" + - '@types/react' react-select@5.8.0(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - "@babel/runtime": 7.24.1 - "@emotion/cache": 11.11.0 - "@emotion/react": 11.11.4(@types/react@18.3.5)(react@18.3.1) - "@floating-ui/dom": 1.6.3 - "@types/react-transition-group": 4.4.10(@types/react@18.3.5) + '@babel/runtime': 7.24.1 + '@emotion/cache': 11.11.0 + '@emotion/react': 11.11.4(@types/react@18.3.5)(react@18.3.1) + '@floating-ui/dom': 1.6.3 + '@types/react-transition-group': 4.4.10(@types/react@18.3.5) memoize-one: 6.0.0 prop-types: 15.8.1 react: 18.3.1 @@ -77518,7 +61243,7 @@ snapshots: react-transition-group: 4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) use-isomorphic-layout-effect: 1.1.2(@types/react@18.3.5)(react@18.3.1) transitivePeerDependencies: - - "@types/react" + - '@types/react' react-shallow-renderer@16.15.0(react@18.2.0): dependencies: @@ -77528,7 +61253,7 @@ snapshots: react-spring@8.0.27(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - "@babel/runtime": 7.24.1 + '@babel/runtime': 7.24.1 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -77540,18 +61265,18 @@ snapshots: react: 18.2.0 tslib: 2.6.2 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 react-table@6.11.5(@types/react@18.3.5)(prop-types@15.8.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - "@types/react-table": 6.8.15(@types/react@18.3.5) + '@types/react-table': 6.8.15(@types/react@18.3.5) classnames: 2.5.1 prop-types: 15.8.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-is: 16.13.1 transitivePeerDependencies: - - "@types/react" + - '@types/react' react-test-renderer@18.2.0(react@18.2.0): dependencies: @@ -77562,14 +61287,14 @@ snapshots: react-tooltip@5.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - "@floating-ui/dom": 1.6.3 + '@floating-ui/dom': 1.6.3 classnames: 2.5.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) react-transition-group@4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - "@babel/runtime": 7.24.1 + '@babel/runtime': 7.24.1 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -77578,7 +61303,7 @@ snapshots: react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - "@babel/runtime": 7.24.1 + '@babel/runtime': 7.24.1 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -77597,7 +61322,7 @@ snapshots: react-window@1.8.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - "@babel/runtime": 7.24.1 + '@babel/runtime': 7.24.1 memoize-one: 5.2.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -77637,14 +61362,14 @@ snapshots: read-pkg@5.2.0: dependencies: - "@types/normalize-package-data": 2.4.4 + '@types/normalize-package-data': 2.4.4 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 read-pkg@7.1.0: dependencies: - "@types/normalize-package-data": 2.4.4 + '@types/normalize-package-data': 2.4.4 normalize-package-data: 3.0.3 parse-json: 5.2.0 type-fest: 2.19.0 @@ -77776,7 +61501,7 @@ snapshots: redux@4.2.1: dependencies: - "@babel/runtime": 7.24.1 + '@babel/runtime': 7.24.1 redux@5.0.0: {} @@ -77806,7 +61531,7 @@ snapshots: regenerator-transform@0.15.2: dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 regex-parser@2.3.0: {} @@ -77819,7 +61544,7 @@ snapshots: regexpu-core@5.3.2: dependencies: - "@babel/regjsgen": 0.8.0 + '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 regenerate-unicode-properties: 10.1.1 regjsparser: 0.9.1 @@ -77841,8 +61566,8 @@ snapshots: rehype-katex@7.0.0: dependencies: - "@types/hast": 3.0.4 - "@types/katex": 0.16.7 + '@types/hast': 3.0.4 + '@types/katex': 0.16.7 hast-util-from-html-isomorphic: 2.0.0 hast-util-to-text: 4.0.2 katex: 0.16.10 @@ -77851,14 +61576,14 @@ snapshots: rehype-pretty-code@0.9.11(shiki@0.14.7): dependencies: - "@types/hast": 2.3.10 + '@types/hast': 2.3.10 hash-obj: 4.0.0 parse-numeric-range: 1.3.0 shiki: 0.14.7 rehype-raw@7.0.0: dependencies: - "@types/hast": 3.0.4 + '@types/hast': 3.0.4 hast-util-raw: 9.0.3 vfile: 6.0.1 @@ -77878,7 +61603,7 @@ snapshots: remark-gfm@3.0.1: dependencies: - "@types/mdast": 3.0.15 + '@types/mdast': 3.0.15 mdast-util-gfm: 2.0.2 micromark-extension-gfm: 2.0.3 unified: 10.1.2 @@ -77887,7 +61612,7 @@ snapshots: remark-html@15.0.2: dependencies: - "@types/mdast": 3.0.15 + '@types/mdast': 3.0.15 hast-util-sanitize: 4.1.0 hast-util-to-html: 8.0.4 mdast-util-to-hast: 12.3.0 @@ -77895,7 +61620,7 @@ snapshots: remark-math@5.1.1: dependencies: - "@types/mdast": 3.0.15 + '@types/mdast': 3.0.15 mdast-util-math: 2.0.2 micromark-extension-math: 2.1.2 unified: 10.1.2 @@ -77909,7 +61634,7 @@ snapshots: remark-parse@10.0.2: dependencies: - "@types/mdast": 3.0.15 + '@types/mdast': 3.0.15 mdast-util-from-markdown: 1.3.1 unified: 10.1.2 transitivePeerDependencies: @@ -77942,14 +61667,14 @@ snapshots: remark-reference-links@6.0.1: dependencies: - "@types/mdast": 3.0.15 + '@types/mdast': 3.0.15 unified: 10.1.2 unist-util-visit: 4.1.2 remark-rehype@10.1.0: dependencies: - "@types/hast": 2.3.10 - "@types/mdast": 3.0.15 + '@types/hast': 2.3.10 + '@types/mdast': 3.0.15 mdast-util-to-hast: 12.3.0 unified: 10.1.2 @@ -77961,19 +61686,19 @@ snapshots: remark-stringify@10.0.3: dependencies: - "@types/mdast": 3.0.15 + '@types/mdast': 3.0.15 mdast-util-to-markdown: 1.5.0 unified: 10.1.2 remark-toc@8.0.1: dependencies: - "@types/mdast": 3.0.15 + '@types/mdast': 3.0.15 mdast-util-toc: 6.1.1 unified: 10.1.2 remark@14.0.3: dependencies: - "@types/mdast": 3.0.15 + '@types/mdast': 3.0.15 remark-parse: 10.0.2 remark-stringify: 10.0.3 unified: 10.1.2 @@ -78176,8 +61901,8 @@ snapshots: ripple-address-codec@5.0.0: dependencies: - "@scure/base": 1.1.6 - "@xrplf/isomorphic": 1.0.0 + '@scure/base': 1.1.6 + '@xrplf/isomorphic': 1.0.0 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -78193,8 +61918,8 @@ snapshots: ripple-keypairs@2.0.0: dependencies: - "@noble/curves": 1.4.0 - "@xrplf/isomorphic": 1.0.0 + '@noble/curves': 1.4.0 + '@xrplf/isomorphic': 1.0.0 ripple-address-codec: 5.0.0 transitivePeerDependencies: - bufferutil @@ -78236,11 +61961,11 @@ snapshots: rollup: 4.17.2 typescript: 5.4.3 optionalDependencies: - "@babel/code-frame": 7.24.6 + '@babel/code-frame': 7.24.6 rollup-plugin-esbuild@6.1.1(esbuild@0.19.12)(rollup@4.17.2): dependencies: - "@rollup/pluginutils": 5.1.0(rollup@4.17.2) + '@rollup/pluginutils': 5.1.0(rollup@4.17.2) debug: 4.3.4 es-module-lexer: 1.5.0 esbuild: 0.19.12 @@ -78251,7 +61976,7 @@ snapshots: rollup-plugin-terser@7.0.2(rollup@2.79.1): dependencies: - "@babel/code-frame": 7.24.6 + '@babel/code-frame': 7.24.6 jest-worker: 26.6.2 rollup: 2.79.1 serialize-javascript: 4.0.0 @@ -78269,29 +61994,29 @@ snapshots: rollup@4.17.2: dependencies: - "@types/estree": 1.0.5 + '@types/estree': 1.0.5 optionalDependencies: - "@rollup/rollup-android-arm-eabi": 4.17.2 - "@rollup/rollup-android-arm64": 4.17.2 - "@rollup/rollup-darwin-arm64": 4.17.2 - "@rollup/rollup-darwin-x64": 4.17.2 - "@rollup/rollup-linux-arm-gnueabihf": 4.17.2 - "@rollup/rollup-linux-arm-musleabihf": 4.17.2 - "@rollup/rollup-linux-arm64-gnu": 4.17.2 - "@rollup/rollup-linux-arm64-musl": 4.17.2 - "@rollup/rollup-linux-powerpc64le-gnu": 4.17.2 - "@rollup/rollup-linux-riscv64-gnu": 4.17.2 - "@rollup/rollup-linux-s390x-gnu": 4.17.2 - "@rollup/rollup-linux-x64-gnu": 4.17.2 - "@rollup/rollup-linux-x64-musl": 4.17.2 - "@rollup/rollup-win32-arm64-msvc": 4.17.2 - "@rollup/rollup-win32-ia32-msvc": 4.17.2 - "@rollup/rollup-win32-x64-msvc": 4.17.2 + '@rollup/rollup-android-arm-eabi': 4.17.2 + '@rollup/rollup-android-arm64': 4.17.2 + '@rollup/rollup-darwin-arm64': 4.17.2 + '@rollup/rollup-darwin-x64': 4.17.2 + '@rollup/rollup-linux-arm-gnueabihf': 4.17.2 + '@rollup/rollup-linux-arm-musleabihf': 4.17.2 + '@rollup/rollup-linux-arm64-gnu': 4.17.2 + '@rollup/rollup-linux-arm64-musl': 4.17.2 + '@rollup/rollup-linux-powerpc64le-gnu': 4.17.2 + '@rollup/rollup-linux-riscv64-gnu': 4.17.2 + '@rollup/rollup-linux-s390x-gnu': 4.17.2 + '@rollup/rollup-linux-x64-gnu': 4.17.2 + '@rollup/rollup-linux-x64-musl': 4.17.2 + '@rollup/rollup-win32-arm64-msvc': 4.17.2 + '@rollup/rollup-win32-ia32-msvc': 4.17.2 + '@rollup/rollup-win32-x64-msvc': 4.17.2 fsevents: 2.3.3 rpc-websockets@7.9.0: dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 eventemitter3: 4.0.7 uuid: 8.3.2 ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -78382,25 +62107,25 @@ snapshots: schema-utils@2.7.0: dependencies: - "@types/json-schema": 7.0.15 + '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) schema-utils@2.7.1: dependencies: - "@types/json-schema": 7.0.15 + '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) schema-utils@3.3.0: dependencies: - "@types/json-schema": 7.0.15 + '@types/json-schema': 7.0.15 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) schema-utils@4.2.0: dependencies: - "@types/json-schema": 7.0.15 + '@types/json-schema': 7.0.15 ajv: 8.16.0 ajv-formats: 2.1.1 ajv-keywords: 5.1.0(ajv@8.16.0) @@ -78433,9 +62158,9 @@ snapshots: secretjs@0.17.8: dependencies: - "@iov/crypto": 2.1.0 - "@iov/encoding": 2.1.0 - "@iov/utils": 2.0.2 + '@iov/crypto': 2.1.0 + '@iov/encoding': 2.1.0 + '@iov/utils': 2.0.2 axios: 0.21.1 curve25519-js: 0.0.4 fast-deep-equal: 3.1.1 @@ -78458,7 +62183,7 @@ snapshots: selfsigned@2.4.1: dependencies: - "@types/node-forge": 1.3.11 + '@types/node-forge': 1.3.11 node-forge: 1.3.1 semver-compare@1.0.0: @@ -78690,8 +62415,8 @@ snapshots: simple-git@3.24.0: dependencies: - "@kwsites/file-exists": 1.1.1 - "@kwsites/promise-deferred": 1.1.1 + '@kwsites/file-exists': 1.1.1 + '@kwsites/promise-deferred': 1.1.1 debug: 4.3.4 transitivePeerDependencies: - supports-color @@ -78700,7 +62425,7 @@ snapshots: simple-markdown@0.7.3(@types/react@18.2.73): optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 simple-plist@1.3.1: dependencies: @@ -78718,7 +62443,7 @@ snapshots: sirv@2.0.4: dependencies: - "@polka/url": 1.0.0-next.25 + '@polka/url': 1.0.0-next.25 mrmime: 2.0.0 totalist: 3.0.1 @@ -79017,24 +62742,24 @@ snapshots: storybook-dark-mode@3.0.3(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - "@storybook/addons": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/components": 7.6.17(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/core-events": 7.6.17 - "@storybook/global": 5.0.0 - "@storybook/manager-api": 7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - "@storybook/theming": 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/addons': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/components': 7.6.17(@types/react@18.2.73)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/core-events': 7.6.17 + '@storybook/global': 5.0.0 + '@storybook/manager-api': 7.6.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@storybook/theming': 7.6.17(react-dom@18.2.0(react@18.2.0))(react@18.2.0) fast-deep-equal: 3.1.3 memoizerific: 1.11.3 optionalDependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) transitivePeerDependencies: - - "@types/react" - - "@types/react-dom" + - '@types/react' + - '@types/react-dom' storybook@7.6.17: dependencies: - "@storybook/cli": 7.6.17 + '@storybook/cli': 7.6.17 transitivePeerDependencies: - bufferutil - encoding @@ -79043,7 +62768,7 @@ snapshots: storybook@7.6.20: dependencies: - "@storybook/cli": 7.6.20 + '@storybook/cli': 7.6.20 transitivePeerDependencies: - bufferutil - encoding @@ -79059,7 +62784,7 @@ snapshots: storyly-web@3.6.7: dependencies: - "@babel/runtime": 7.25.0 + '@babel/runtime': 7.25.0 canvas-confetti: 1.9.2 platform: 1.3.6 swiper: 7.4.1 @@ -79325,11 +63050,11 @@ snapshots: styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0): dependencies: - "@babel/helper-module-imports": 7.24.3 - "@babel/traverse": 7.24.1(supports-color@5.5.0) - "@emotion/is-prop-valid": 1.2.2 - "@emotion/stylis": 0.8.5 - "@emotion/unitless": 0.7.5 + '@babel/helper-module-imports': 7.24.3 + '@babel/traverse': 7.24.1(supports-color@5.5.0) + '@emotion/is-prop-valid': 1.2.2 + '@emotion/stylis': 0.8.5 + '@emotion/unitless': 0.7.5 babel-plugin-styled-components: 2.1.4(@babel/core@7.24.3)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0)) css-to-react-native: 3.2.0 hoist-non-react-statics: 3.3.2 @@ -79339,15 +63064,15 @@ snapshots: shallowequal: 1.1.0 supports-color: 5.5.0 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0): dependencies: - "@babel/helper-module-imports": 7.24.3 - "@babel/traverse": 7.24.1(supports-color@5.5.0) - "@emotion/is-prop-valid": 1.2.2 - "@emotion/stylis": 0.8.5 - "@emotion/unitless": 0.7.5 + '@babel/helper-module-imports': 7.24.3 + '@babel/traverse': 7.24.1(supports-color@5.5.0) + '@emotion/is-prop-valid': 1.2.2 + '@emotion/stylis': 0.8.5 + '@emotion/unitless': 0.7.5 babel-plugin-styled-components: 2.1.4(@babel/core@7.24.3)(styled-components@5.3.11(@babel/core@7.24.3)(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0)) css-to-react-native: 3.2.0 hoist-non-react-statics: 3.3.2 @@ -79357,15 +63082,15 @@ snapshots: shallowequal: 1.1.0 supports-color: 5.5.0 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' styled-components@5.3.11(@babel/core@7.24.3)(react-is@18.2.0)(react@18.2.0): dependencies: - "@babel/helper-module-imports": 7.24.3 - "@babel/traverse": 7.24.1(supports-color@5.5.0) - "@emotion/is-prop-valid": 1.2.2 - "@emotion/stylis": 0.8.5 - "@emotion/unitless": 0.7.5 + '@babel/helper-module-imports': 7.24.3 + '@babel/traverse': 7.24.1(supports-color@5.5.0) + '@emotion/is-prop-valid': 1.2.2 + '@emotion/stylis': 0.8.5 + '@emotion/unitless': 0.7.5 babel-plugin-styled-components: 2.1.4(@babel/core@7.24.3)(styled-components@5.3.11(@babel/core@7.24.3)(react-is@18.2.0)(react@18.2.0)) css-to-react-native: 3.2.0 hoist-non-react-statics: 3.3.2 @@ -79374,15 +63099,15 @@ snapshots: shallowequal: 1.1.0 supports-color: 5.5.0 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' styled-components@5.3.11(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0): dependencies: - "@babel/helper-module-imports": 7.24.3 - "@babel/traverse": 7.24.1(supports-color@5.5.0) - "@emotion/is-prop-valid": 1.2.2 - "@emotion/stylis": 0.8.5 - "@emotion/unitless": 0.7.5 + '@babel/helper-module-imports': 7.24.3 + '@babel/traverse': 7.24.1(supports-color@5.5.0) + '@emotion/is-prop-valid': 1.2.2 + '@emotion/stylis': 0.8.5 + '@emotion/unitless': 0.7.5 babel-plugin-styled-components: 2.1.4(styled-components@5.3.11(react-dom@18.2.0(react@18.2.0))(react-is@17.0.2)(react@18.2.0)) css-to-react-native: 3.2.0 hoist-non-react-statics: 3.3.2 @@ -79392,15 +63117,15 @@ snapshots: shallowequal: 1.1.0 supports-color: 5.5.0 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' styled-components@5.3.11(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0): dependencies: - "@babel/helper-module-imports": 7.24.3 - "@babel/traverse": 7.24.1(supports-color@5.5.0) - "@emotion/is-prop-valid": 1.2.2 - "@emotion/stylis": 0.8.5 - "@emotion/unitless": 0.7.5 + '@babel/helper-module-imports': 7.24.3 + '@babel/traverse': 7.24.1(supports-color@5.5.0) + '@emotion/is-prop-valid': 1.2.2 + '@emotion/stylis': 0.8.5 + '@emotion/unitless': 0.7.5 babel-plugin-styled-components: 2.1.4(styled-components@5.3.11(react-dom@18.2.0(react@18.2.0))(react-is@18.2.0)(react@18.2.0)) css-to-react-native: 3.2.0 hoist-non-react-statics: 3.3.2 @@ -79410,13 +63135,13 @@ snapshots: shallowequal: 1.1.0 supports-color: 5.5.0 transitivePeerDependencies: - - "@babel/core" + - '@babel/core' styled-components@6.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - "@emotion/is-prop-valid": 1.2.1 - "@emotion/unitless": 0.8.0 - "@types/stylis": 4.2.0 + '@emotion/is-prop-valid': 1.2.1 + '@emotion/unitless': 0.8.0 + '@types/stylis': 4.2.0 css-to-react-native: 3.2.0 csstype: 3.1.2 postcss: 8.4.31 @@ -79438,18 +63163,18 @@ snapshots: styled-system@5.1.5: dependencies: - "@styled-system/background": 5.1.2 - "@styled-system/border": 5.1.5 - "@styled-system/color": 5.1.2 - "@styled-system/core": 5.1.2 - "@styled-system/flexbox": 5.1.2 - "@styled-system/grid": 5.1.2 - "@styled-system/layout": 5.1.2 - "@styled-system/position": 5.1.2 - "@styled-system/shadow": 5.1.2 - "@styled-system/space": 5.1.2 - "@styled-system/typography": 5.1.2 - "@styled-system/variant": 5.1.5 + '@styled-system/background': 5.1.2 + '@styled-system/border': 5.1.5 + '@styled-system/color': 5.1.2 + '@styled-system/core': 5.1.2 + '@styled-system/flexbox': 5.1.2 + '@styled-system/grid': 5.1.2 + '@styled-system/layout': 5.1.2 + '@styled-system/position': 5.1.2 + '@styled-system/shadow': 5.1.2 + '@styled-system/space': 5.1.2 + '@styled-system/typography': 5.1.2 + '@styled-system/variant': 5.1.5 object-assign: 4.1.1 stylehacks@5.1.1(postcss@8.4.38): @@ -79466,8 +63191,8 @@ snapshots: stylelint-processor-styled-components@1.10.0: dependencies: - "@babel/parser": 7.24.1 - "@babel/traverse": 7.24.1 + '@babel/parser': 7.24.1 + '@babel/traverse': 7.24.1 micromatch: 4.0.5 postcss: 7.0.39 transitivePeerDependencies: @@ -79475,7 +63200,7 @@ snapshots: stylelint@14.16.1: dependencies: - "@csstools/selector-specificity": 2.2.0(postcss-selector-parser@6.0.16) + '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.16) balanced-match: 2.0.0 colord: 2.9.3 cosmiconfig: 7.1.0 @@ -79524,7 +63249,7 @@ snapshots: sucrase@3.34.0: dependencies: - "@jridgewell/gen-mapping": 0.3.5 + '@jridgewell/gen-mapping': 0.3.5 commander: 4.1.1 glob: 7.1.6 lines-and-columns: 1.2.4 @@ -79534,7 +63259,7 @@ snapshots: sucrase@3.35.0: dependencies: - "@jridgewell/gen-mapping": 0.3.5 + '@jridgewell/gen-mapping': 0.3.5 commander: 4.1.1 glob: 10.3.12 lines-and-columns: 1.2.4 @@ -79641,7 +63366,7 @@ snapshots: svgo@2.8.0: dependencies: - "@trysound/sax": 0.2.0 + '@trysound/sax': 0.2.0 commander: 7.2.0 css-select: 4.3.0 css-tree: 1.1.3 @@ -79669,14 +63394,14 @@ snapshots: swc-loader@0.2.6(@swc/core@1.4.11)(webpack@5.94.0(@swc/core@1.4.11)(esbuild@0.19.12)): dependencies: - "@swc/core": 1.4.11 - "@swc/counter": 0.1.3 + '@swc/core': 1.4.11 + '@swc/counter': 0.1.3 webpack: 5.94.0(@swc/core@1.4.11)(esbuild@0.19.12) swc-loader@0.2.6(@swc/core@1.4.11)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)): dependencies: - "@swc/core": 1.4.11 - "@swc/counter": 0.1.3 + '@swc/core': 1.4.11 + '@swc/counter': 0.1.3 webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.12) swiper@7.4.1: @@ -79704,7 +63429,7 @@ snapshots: synckit@0.8.8: dependencies: - "@pkgr/core": 0.1.1 + '@pkgr/core': 0.1.1 tslib: 2.6.2 tabbable@5.3.3: {} @@ -79726,7 +63451,7 @@ snapshots: tailwindcss@3.4.3: 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 @@ -79797,7 +63522,7 @@ snapshots: telejson@6.0.8: dependencies: - "@types/is-function": 1.0.3 + '@types/is-function': 1.0.3 global: 4.4.0 is-function: 1.0.2 is-regex: 1.1.4 @@ -79875,34 +63600,34 @@ snapshots: terser-webpack-plugin@5.3.10(@swc/core@1.4.11)(esbuild@0.19.12)(webpack@5.94.0(@swc/core@1.4.11)(esbuild@0.19.12)): dependencies: - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.30.0 webpack: 5.94.0(@swc/core@1.4.11)(esbuild@0.19.12) optionalDependencies: - "@swc/core": 1.4.11 + '@swc/core': 1.4.11 esbuild: 0.19.12 transitivePeerDependencies: - metro terser-webpack-plugin@5.3.10(@swc/core@1.4.11)(metro@0.80.12)(webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12)): dependencies: - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1(metro@0.80.12) schema-utils: 3.3.0 serialize-javascript: 6.0.2 terser: 5.30.0 webpack: 5.94.0(@swc/core@1.4.11)(metro@0.80.12) optionalDependencies: - "@swc/core": 1.4.11 + '@swc/core': 1.4.11 transitivePeerDependencies: - metro terser-webpack-plugin@5.3.10(esbuild@0.19.12)(webpack@5.91.0(esbuild@0.19.12)): dependencies: - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 @@ -79915,7 +63640,7 @@ snapshots: terser-webpack-plugin@5.3.10(esbuild@0.19.12)(webpack@5.94.0(esbuild@0.19.12)): dependencies: - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 @@ -79928,7 +63653,7 @@ snapshots: terser-webpack-plugin@5.3.10(metro@0.80.12)(webpack@5.91.0(metro@0.80.12)): dependencies: - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1(metro@0.80.12) schema-utils: 3.3.0 serialize-javascript: 6.0.2 @@ -79939,7 +63664,7 @@ snapshots: terser-webpack-plugin@5.3.10(metro@0.80.12)(webpack@5.94.0(metro@0.80.12)): dependencies: - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1(metro@0.80.12) schema-utils: 3.3.0 serialize-javascript: 6.0.2 @@ -79950,7 +63675,7 @@ snapshots: terser-webpack-plugin@5.3.10(webpack@5.91.0(webpack-cli@4.10.0)): dependencies: - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 @@ -79961,7 +63686,7 @@ snapshots: terser-webpack-plugin@5.3.10(webpack@5.94.0): dependencies: - "@jridgewell/trace-mapping": 0.3.25 + '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.2 @@ -79972,7 +63697,7 @@ snapshots: terser@5.30.0: dependencies: - "@jridgewell/source-map": 0.3.6 + '@jridgewell/source-map': 0.3.6 acorn: 8.11.3 commander: 2.20.3 source-map-support: 0.5.21 @@ -79981,7 +63706,7 @@ snapshots: test-exclude@6.0.0: dependencies: - "@istanbuljs/schema": 0.1.3 + '@istanbuljs/schema': 0.1.3 glob: 7.2.3 minimatch: 3.1.2 @@ -80009,7 +63734,7 @@ snapshots: thor-devkit@2.0.9: dependencies: - "@vechain/ethers": 4.0.27-5 + '@vechain/ethers': 4.0.27-5 bignumber.js: 7.2.1 blakejs: 1.2.1 elliptic: 6.5.4 @@ -80082,7 +63807,7 @@ snapshots: tippy.js@6.3.7: dependencies: - "@popperjs/core": 2.11.8 + '@popperjs/core': 2.11.8 title@3.5.3: dependencies: @@ -80204,17 +63929,17 @@ snapshots: tronweb@5.3.2: dependencies: - "@babel/runtime": 7.24.1 - "@ethersproject/abi": 5.7.0 - "@ethersproject/bignumber": 5.7.0 - "@ethersproject/bytes": 5.7.0 - "@ethersproject/keccak256": 5.7.0 - "@ethersproject/logger": 5.7.0 - "@ethersproject/properties": 5.7.0 - "@ethersproject/strings": 5.7.0 - "@noble/hashes": 1.4.0 - "@noble/secp256k1": 1.7.1 - "@tronweb3/google-protobuf": 3.21.2 + '@babel/runtime': 7.24.1 + '@ethersproject/abi': 5.7.0 + '@ethersproject/bignumber': 5.7.0 + '@ethersproject/bytes': 5.7.0 + '@ethersproject/keccak256': 5.7.0 + '@ethersproject/logger': 5.7.0 + '@ethersproject/properties': 5.7.0 + '@ethersproject/strings': 5.7.0 + '@noble/hashes': 1.4.0 + '@noble/secp256k1': 1.7.1 + '@tronweb3/google-protobuf': 3.21.2 aes-js: 3.1.2 axios: 1.7.7 bignumber.js: 9.1.2 @@ -80291,7 +64016,7 @@ snapshots: typescript: 5.4.3 yargs-parser: 21.1.1 optionalDependencies: - "@babel/core": 7.24.3 + '@babel/core': 7.24.3 babel-jest: 29.7.0(@babel/core@7.24.3) ts-jest@29.1.2(jest@29.7.0(@types/node@18.19.26)(ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5)))(typescript@4.9.5): @@ -80514,11 +64239,11 @@ snapshots: ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3): dependencies: - "@cspotcode/source-map-support": 0.8.1 - "@tsconfig/node10": 1.0.11 - "@tsconfig/node12": 1.0.11 - "@tsconfig/node14": 1.0.3 - "@tsconfig/node16": 1.0.4 + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -80529,18 +64254,18 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: - "@swc/core": 1.4.11 + '@swc/core': 1.4.11 transitivePeerDependencies: - source-map-support ts-node@10.9.2(@types/node@18.19.26)(source-map-support@0.5.21)(typescript@4.9.5): dependencies: - "@cspotcode/source-map-support": 0.8.1(source-map-support@0.5.21) - "@tsconfig/node10": 1.0.11 - "@tsconfig/node12": 1.0.11 - "@tsconfig/node14": 1.0.3 - "@tsconfig/node16": 1.0.4 - "@types/node": 18.19.26 + '@cspotcode/source-map-support': 0.8.1(source-map-support@0.5.21) + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 18.19.26 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -80555,12 +64280,12 @@ snapshots: ts-node@10.9.2(@types/node@20.12.12)(source-map-support@0.5.21)(typescript@5.4.3): dependencies: - "@cspotcode/source-map-support": 0.8.1(source-map-support@0.5.21) - "@tsconfig/node10": 1.0.11 - "@tsconfig/node12": 1.0.11 - "@tsconfig/node14": 1.0.3 - "@tsconfig/node16": 1.0.4 - "@types/node": 20.12.12 + '@cspotcode/source-map-support': 0.8.1(source-map-support@0.5.21) + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.12.12 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -80575,12 +64300,12 @@ snapshots: ts-node@10.9.2(@types/node@20.12.12)(typescript@5.1.3): dependencies: - "@cspotcode/source-map-support": 0.8.1 - "@tsconfig/node10": 1.0.11 - "@tsconfig/node12": 1.0.11 - "@tsconfig/node14": 1.0.3 - "@tsconfig/node16": 1.0.4 - "@types/node": 20.12.12 + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.12.12 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -80595,12 +64320,12 @@ snapshots: ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.3): dependencies: - "@cspotcode/source-map-support": 0.8.1 - "@tsconfig/node10": 1.0.11 - "@tsconfig/node12": 1.0.11 - "@tsconfig/node14": 1.0.3 - "@tsconfig/node16": 1.0.4 - "@types/node": 20.12.12 + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.12.12 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -80615,12 +64340,12 @@ snapshots: ts-node@10.9.2(@types/node@20.12.12)(typescript@5.4.5): dependencies: - "@cspotcode/source-map-support": 0.8.1 - "@tsconfig/node10": 1.0.11 - "@tsconfig/node12": 1.0.11 - "@tsconfig/node14": 1.0.3 - "@tsconfig/node16": 1.0.4 - "@types/node": 20.12.12 + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.12.12 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -80635,12 +64360,12 @@ snapshots: ts-node@10.9.2(@types/node@20.5.1)(typescript@5.4.5): dependencies: - "@cspotcode/source-map-support": 0.8.1 - "@tsconfig/node10": 1.0.11 - "@tsconfig/node12": 1.0.11 - "@tsconfig/node14": 1.0.3 - "@tsconfig/node16": 1.0.4 - "@types/node": 20.5.1 + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.5.1 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -80655,11 +64380,11 @@ snapshots: ts-node@10.9.2(typescript@5.4.3): dependencies: - "@cspotcode/source-map-support": 0.8.1 - "@tsconfig/node10": 1.0.11 - "@tsconfig/node12": 1.0.11 - "@tsconfig/node14": 1.0.3 - "@tsconfig/node16": 1.0.4 + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 acorn: 8.11.3 acorn-walk: 8.3.2 arg: 4.1.3 @@ -80676,7 +64401,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 @@ -80914,12 +64639,12 @@ snapshots: uncontrollable@7.2.1(@types/react@18.2.73)(react@18.2.0): dependencies: - "@babel/runtime": 7.24.1 + '@babel/runtime': 7.24.1 invariant: 2.2.4 react: 18.2.0 react-lifecycles-compat: 3.0.4 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 undefsafe@2.0.5: {} @@ -80931,7 +64656,7 @@ snapshots: undici@5.28.3: dependencies: - "@fastify/busboy": 2.1.1 + '@fastify/busboy': 2.1.1 undici@6.10.2: {} @@ -80957,7 +64682,7 @@ snapshots: unified@10.1.2: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 bail: 2.0.2 extend: 3.0.2 is-buffer: 2.0.5 @@ -80967,7 +64692,7 @@ snapshots: unified@6.2.0: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 bail: 1.0.5 extend: 3.0.2 is-plain-obj: 1.1.0 @@ -80977,8 +64702,8 @@ snapshots: unimported@1.30.0(eslint@8.57.0): dependencies: - "@typescript-eslint/parser": 5.62.0(eslint@8.57.0)(typescript@4.9.5) - "@typescript-eslint/typescript-estree": 5.62.0(typescript@4.9.5) + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) chalk: 4.1.2 cosmiconfig: 8.3.6(typescript@4.9.5) debug: 4.3.4 @@ -81027,11 +64752,11 @@ snapshots: unist-builder@3.0.1: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-find-after@5.0.0: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-is: 6.0.0 unist-util-generated@2.0.1: {} @@ -81042,23 +64767,23 @@ snapshots: unist-util-is@5.2.1: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-is@6.0.0: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-position-from-estree@1.1.2: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-position@4.0.4: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-position@5.0.0: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-remove-position@1.1.4: dependencies: @@ -81066,17 +64791,17 @@ snapshots: unist-util-remove-position@4.0.2: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-visit: 4.1.2 unist-util-remove-position@5.0.0: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-visit: 5.0.0 unist-util-remove@4.0.0: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 @@ -81084,11 +64809,11 @@ snapshots: unist-util-stringify-position@3.0.3: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-stringify-position@4.0.0: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-visit-parents@1.1.2: {} @@ -81098,22 +64823,22 @@ snapshots: unist-util-visit-parents@3.1.1: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-is: 4.1.0 unist-util-visit-parents@4.1.1: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-is: 5.2.1 unist-util-visit-parents@5.1.3: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-is: 5.2.1 unist-util-visit-parents@6.0.1: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-is: 6.0.0 unist-util-visit@1.4.1: @@ -81122,31 +64847,31 @@ snapshots: unist-util-visit@2.0.3: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-is: 4.1.0 unist-util-visit-parents: 3.1.1 unist-util-visit@3.1.0: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-is: 5.2.1 unist-util-visit-parents: 4.1.1 unist-util-visit@4.1.2: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 unist-util-visit@5.0.0: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 universal-github-app-jwt@1.1.2: dependencies: - "@types/jsonwebtoken": 9.0.6 + '@types/jsonwebtoken': 9.0.6 jsonwebtoken: 9.0.2 universal-user-agent@6.0.1: {} @@ -81245,7 +64970,7 @@ snapshots: usb@2.9.0(patch_hash=d5pno5rjlboai2klvccu6wv334): dependencies: - "@types/w3c-web-usb": 1.0.10 + '@types/w3c-web-usb': 1.0.10 node-addon-api: 6.1.0 node-gyp-build: 4.8.0 @@ -81254,19 +64979,19 @@ snapshots: react: 18.2.0 tslib: 2.6.2 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 use-isomorphic-layout-effect@1.1.2(@types/react@18.2.73)(react@18.2.0): dependencies: react: 18.2.0 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 use-isomorphic-layout-effect@1.1.2(@types/react@18.3.5)(react@18.3.1): dependencies: react: 18.3.1 optionalDependencies: - "@types/react": 18.3.5 + '@types/react': 18.3.5 use-latest-callback@0.1.9(react@18.2.0): dependencies: @@ -81274,7 +64999,7 @@ snapshots: use-resize-observer@9.1.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - "@juggle/resize-observer": 3.4.0 + '@juggle/resize-observer': 3.4.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -81284,7 +65009,7 @@ snapshots: react: 18.2.0 tslib: 2.6.2 optionalDependencies: - "@types/react": 18.2.73 + '@types/react': 18.2.73 use-subscription@1.8.0(react@18.2.0): dependencies: @@ -81364,14 +65089,14 @@ snapshots: v8-to-istanbul@8.1.1: dependencies: - "@types/istanbul-lib-coverage": 2.0.6 + '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 1.9.0 source-map: 0.7.4 v8-to-istanbul@9.2.0: dependencies: - "@jridgewell/trace-mapping": 0.3.25 - "@types/istanbul-lib-coverage": 2.0.6 + '@jridgewell/trace-mapping': 0.3.25 + '@types/istanbul-lib-coverage': 2.0.6 convert-source-map: 2.0.0 valid-url@1.0.9: {} @@ -81414,17 +65139,17 @@ snapshots: vfile-location@4.1.0: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 vfile: 5.3.7 vfile-location@5.0.2: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 vfile: 6.0.1 vfile-matter@3.0.1: dependencies: - "@types/js-yaml": 4.0.9 + '@types/js-yaml': 4.0.9 is-buffer: 2.0.5 js-yaml: 4.1.0 @@ -81434,17 +65159,17 @@ snapshots: vfile-message@3.1.4: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 unist-util-stringify-position: 3.0.3 vfile-message@4.0.2: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-stringify-position: 4.0.0 vfile-reporter@7.0.5: dependencies: - "@types/supports-color": 8.1.3 + '@types/supports-color': 8.1.3 string-width: 5.1.2 supports-color: 9.4.0 unist-util-stringify-position: 3.0.3 @@ -81472,14 +65197,14 @@ snapshots: vfile@5.3.7: dependencies: - "@types/unist": 2.0.10 + '@types/unist': 2.0.10 is-buffer: 2.0.5 unist-util-stringify-position: 3.0.3 vfile-message: 3.1.4 vfile@6.0.1: dependencies: - "@types/unist": 3.0.2 + '@types/unist': 3.0.2 unist-util-stringify-position: 4.0.0 vfile-message: 4.0.2 @@ -81503,7 +65228,7 @@ snapshots: postcss: 8.4.32 rollup: 3.29.4 optionalDependencies: - "@types/node": 20.12.12 + '@types/node': 20.12.12 fsevents: 2.3.3 vlq@0.2.3: {} @@ -81536,7 +65261,7 @@ snapshots: vue-loader@15.11.1(css-loader@6.10.0(webpack@5.94.0))(lodash@4.17.21)(prettier@3.2.5)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(vue-template-compiler@2.7.16)(webpack@5.94.0): dependencies: - "@vue/component-compiler-utils": 3.3.0(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@vue/component-compiler-utils': 3.3.0(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) css-loader: 6.10.0(webpack@5.94.0) hash-sum: 1.0.2 loader-utils: 1.4.2 @@ -81624,7 +65349,7 @@ snapshots: vue@2.7.16: dependencies: - "@vue/compiler-sfc": 2.7.16 + '@vue/compiler-sfc': 2.7.16 csstype: 3.1.3 w3c-hr-time@1.0.2: @@ -81674,7 +65399,7 @@ snapshots: web3-bzz@1.3.6: dependencies: - "@types/node": 12.20.55 + '@types/node': 12.20.55 got: 9.6.0 swarm-js: 0.1.42 underscore: 1.12.1 @@ -81685,7 +65410,7 @@ snapshots: web3-bzz@1.5.2: dependencies: - "@types/node": 12.20.55 + '@types/node': 12.20.55 got: 9.6.0 swarm-js: 0.1.42 transitivePeerDependencies: @@ -81706,7 +65431,7 @@ snapshots: web3-core-method@1.3.6: dependencies: - "@ethersproject/transactions": 5.7.0 + '@ethersproject/transactions': 5.7.0 underscore: 1.12.1 web3-core-helpers: 1.3.6 web3-core-promievent: 1.3.6 @@ -81715,8 +65440,8 @@ snapshots: web3-core-method@1.5.2: dependencies: - "@ethereumjs/common": 2.6.5 - "@ethersproject/transactions": 5.7.0 + '@ethereumjs/common': 2.6.5 + '@ethersproject/transactions': 5.7.0 web3-core-helpers: 1.5.2 web3-core-promievent: 1.5.2 web3-core-subscriptions: 1.5.2 @@ -81764,8 +65489,8 @@ snapshots: web3-core@1.3.6: dependencies: - "@types/bn.js": 4.11.6 - "@types/node": 12.20.55 + '@types/bn.js': 4.11.6 + '@types/node': 12.20.55 bignumber.js: 9.1.2 web3-core-helpers: 1.3.6 web3-core-method: 1.3.6 @@ -81776,8 +65501,8 @@ snapshots: web3-core@1.5.2: dependencies: - "@types/bn.js": 4.11.6 - "@types/node": 12.20.55 + '@types/bn.js': 4.11.6 + '@types/node': 12.20.55 bignumber.js: 9.1.2 web3-core-helpers: 1.5.2 web3-core-method: 1.5.2 @@ -81788,13 +65513,13 @@ snapshots: web3-eth-abi@1.3.6: dependencies: - "@ethersproject/abi": 5.0.7 + '@ethersproject/abi': 5.0.7 underscore: 1.12.1 web3-utils: 1.3.6 web3-eth-abi@1.5.2: dependencies: - "@ethersproject/abi": 5.0.7 + '@ethersproject/abi': 5.0.7 web3-utils: 1.5.2 web3-eth-accounts@1.3.6: @@ -81815,8 +65540,8 @@ snapshots: web3-eth-accounts@1.5.2: dependencies: - "@ethereumjs/common": 2.6.5 - "@ethereumjs/tx": 3.5.2 + '@ethereumjs/common': 2.6.5 + '@ethereumjs/tx': 3.5.2 crypto-browserify: 3.12.0 eth-lib: 0.2.8 ethereumjs-util: 7.1.5 @@ -81831,7 +65556,7 @@ snapshots: web3-eth-contract@1.3.6: dependencies: - "@types/bn.js": 4.11.6 + '@types/bn.js': 4.11.6 underscore: 1.12.1 web3-core: 1.3.6 web3-core-helpers: 1.3.6 @@ -81845,7 +65570,7 @@ snapshots: web3-eth-contract@1.5.2: dependencies: - "@types/bn.js": 4.11.6 + '@types/bn.js': 4.11.6 web3-core: 1.5.2 web3-core-helpers: 1.5.2 web3-core-method: 1.5.2 @@ -81895,7 +65620,7 @@ snapshots: web3-eth-personal@1.3.6: dependencies: - "@types/node": 12.20.55 + '@types/node': 12.20.55 web3-core: 1.3.6 web3-core-helpers: 1.3.6 web3-core-method: 1.3.6 @@ -81906,7 +65631,7 @@ snapshots: web3-eth-personal@1.5.2: dependencies: - "@types/node": 12.20.55 + '@types/node': 12.20.55 web3-core: 1.5.2 web3-core-helpers: 1.5.2 web3-core-method: 1.5.2 @@ -82083,7 +65808,7 @@ snapshots: webpack-bundle-analyzer@4.10.2: dependencies: - "@discoveryjs/json-ext": 0.5.7 + '@discoveryjs/json-ext': 0.5.7 acorn: 8.11.3 acorn-walk: 8.3.2 commander: 7.2.0 @@ -82106,10 +65831,10 @@ snapshots: webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0): dependencies: - "@discoveryjs/json-ext": 0.5.7 - "@webpack-cli/configtest": 1.2.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack@5.91.0(webpack-cli@4.10.0)) - "@webpack-cli/info": 1.5.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0)) - "@webpack-cli/serve": 1.7.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0)) + '@discoveryjs/json-ext': 0.5.7 + '@webpack-cli/configtest': 1.2.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack@5.91.0(webpack-cli@4.10.0)) + '@webpack-cli/info': 1.5.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0)) + '@webpack-cli/serve': 1.7.0(webpack-cli@4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0))(webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0)) colorette: 2.0.20 commander: 7.2.0 cross-spawn: 7.0.3 @@ -82171,13 +65896,13 @@ snapshots: webpack-dev-server@4.15.2(webpack-cli@4.10.0)(webpack@5.91.0): dependencies: - "@types/bonjour": 3.5.13 - "@types/connect-history-api-fallback": 1.5.4 - "@types/express": 4.17.21 - "@types/serve-index": 1.9.4 - "@types/serve-static": 1.15.5 - "@types/sockjs": 0.3.36 - "@types/ws": 8.5.10 + '@types/bonjour': 3.5.13 + '@types/connect-history-api-fallback': 1.5.4 + '@types/express': 4.17.21 + '@types/serve-index': 1.9.4 + '@types/serve-static': 1.15.5 + '@types/sockjs': 0.3.36 + '@types/ws': 8.5.10 ansi-html-community: 0.0.8 bonjour-service: 1.2.1 chokidar: 3.6.0 @@ -82211,13 +65936,13 @@ snapshots: webpack-dev-server@4.15.2(webpack@5.91.0(metro@0.80.12)): dependencies: - "@types/bonjour": 3.5.13 - "@types/connect-history-api-fallback": 1.5.4 - "@types/express": 4.17.21 - "@types/serve-index": 1.9.4 - "@types/serve-static": 1.15.5 - "@types/sockjs": 0.3.36 - "@types/ws": 8.5.10 + '@types/bonjour': 3.5.13 + '@types/connect-history-api-fallback': 1.5.4 + '@types/express': 4.17.21 + '@types/serve-index': 1.9.4 + '@types/serve-static': 1.15.5 + '@types/sockjs': 0.3.36 + '@types/ws': 8.5.10 ansi-html-community: 0.0.8 bonjour-service: 1.2.1 chokidar: 3.6.0 @@ -82250,13 +65975,13 @@ snapshots: webpack-dev-server@4.15.2(webpack@5.94.0): dependencies: - "@types/bonjour": 3.5.13 - "@types/connect-history-api-fallback": 1.5.4 - "@types/express": 4.17.21 - "@types/serve-index": 1.9.4 - "@types/serve-static": 1.15.5 - "@types/sockjs": 0.3.36 - "@types/ws": 8.5.10 + '@types/bonjour': 3.5.13 + '@types/connect-history-api-fallback': 1.5.4 + '@types/express': 4.17.21 + '@types/serve-index': 1.9.4 + '@types/serve-static': 1.15.5 + '@types/sockjs': 0.3.36 + '@types/ws': 8.5.10 ansi-html-community: 0.0.8 bonjour-service: 1.2.1 chokidar: 3.6.0 @@ -82331,11 +66056,11 @@ snapshots: webpack@5.91.0(esbuild@0.19.12): dependencies: - "@types/eslint-scope": 3.7.7 - "@types/estree": 1.0.5 - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/wasm-edit": 1.12.1 - "@webassemblyjs/wasm-parser": 1.12.1 + '@types/eslint-scope': 3.7.7 + '@types/estree': 1.0.5 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/wasm-edit': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 acorn: 8.11.3 acorn-import-assertions: 1.9.0(acorn@8.11.3) browserslist: 4.23.0 @@ -82356,18 +66081,18 @@ snapshots: watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: - - "@swc/core" + - '@swc/core' - esbuild - metro - uglify-js webpack@5.91.0(metro@0.80.12): dependencies: - "@types/eslint-scope": 3.7.7 - "@types/estree": 1.0.5 - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/wasm-edit": 1.12.1 - "@webassemblyjs/wasm-parser": 1.12.1 + '@types/eslint-scope': 3.7.7 + '@types/estree': 1.0.5 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/wasm-edit': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 acorn: 8.11.3 acorn-import-assertions: 1.9.0(acorn@8.11.3) browserslist: 4.23.0 @@ -82388,18 +66113,18 @@ snapshots: watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: - - "@swc/core" + - '@swc/core' - esbuild - metro - uglify-js webpack@5.91.0(webpack-cli@4.10.0): dependencies: - "@types/eslint-scope": 3.7.7 - "@types/estree": 1.0.5 - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/wasm-edit": 1.12.1 - "@webassemblyjs/wasm-parser": 1.12.1 + '@types/eslint-scope': 3.7.7 + '@types/estree': 1.0.5 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/wasm-edit': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 acorn: 8.11.3 acorn-import-assertions: 1.9.0(acorn@8.11.3) browserslist: 4.23.0 @@ -82422,17 +66147,17 @@ snapshots: optionalDependencies: webpack-cli: 4.10.0(webpack-dev-server@4.15.2)(webpack@5.91.0) transitivePeerDependencies: - - "@swc/core" + - '@swc/core' - esbuild - metro - uglify-js webpack@5.94.0: dependencies: - "@types/estree": 1.0.5 - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/wasm-edit": 1.12.1 - "@webassemblyjs/wasm-parser": 1.12.1 + '@types/estree': 1.0.5 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/wasm-edit': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 acorn: 8.11.3 acorn-import-attributes: 1.9.5(acorn@8.11.3) browserslist: 4.23.0 @@ -82453,17 +66178,17 @@ snapshots: watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: - - "@swc/core" + - '@swc/core' - esbuild - metro - uglify-js webpack@5.94.0(@swc/core@1.4.11)(esbuild@0.19.12): dependencies: - "@types/estree": 1.0.5 - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/wasm-edit": 1.12.1 - "@webassemblyjs/wasm-parser": 1.12.1 + '@types/estree': 1.0.5 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/wasm-edit': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 acorn: 8.11.3 acorn-import-attributes: 1.9.5(acorn@8.11.3) browserslist: 4.23.0 @@ -82484,17 +66209,17 @@ snapshots: watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: - - "@swc/core" + - '@swc/core' - esbuild - metro - uglify-js webpack@5.94.0(@swc/core@1.4.11)(metro@0.80.12): dependencies: - "@types/estree": 1.0.5 - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/wasm-edit": 1.12.1 - "@webassemblyjs/wasm-parser": 1.12.1 + '@types/estree': 1.0.5 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/wasm-edit': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 acorn: 8.11.3 acorn-import-attributes: 1.9.5(acorn@8.11.3) browserslist: 4.23.0 @@ -82515,17 +66240,17 @@ snapshots: watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: - - "@swc/core" + - '@swc/core' - esbuild - metro - uglify-js webpack@5.94.0(esbuild@0.19.12): dependencies: - "@types/estree": 1.0.5 - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/wasm-edit": 1.12.1 - "@webassemblyjs/wasm-parser": 1.12.1 + '@types/estree': 1.0.5 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/wasm-edit': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 acorn: 8.11.3 acorn-import-attributes: 1.9.5(acorn@8.11.3) browserslist: 4.23.0 @@ -82546,17 +66271,17 @@ snapshots: watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: - - "@swc/core" + - '@swc/core' - esbuild - metro - uglify-js webpack@5.94.0(metro@0.80.12): dependencies: - "@types/estree": 1.0.5 - "@webassemblyjs/ast": 1.12.1 - "@webassemblyjs/wasm-edit": 1.12.1 - "@webassemblyjs/wasm-parser": 1.12.1 + '@types/estree': 1.0.5 + '@webassemblyjs/ast': 1.12.1 + '@webassemblyjs/wasm-edit': 1.12.1 + '@webassemblyjs/wasm-parser': 1.12.1 acorn: 8.11.3 acorn-import-attributes: 1.9.5(acorn@8.11.3) browserslist: 4.23.0 @@ -82577,7 +66302,7 @@ snapshots: watchpack: 2.4.1 webpack-sources: 3.2.3 transitivePeerDependencies: - - "@swc/core" + - '@swc/core' - esbuild - metro - uglify-js @@ -82728,8 +66453,8 @@ snapshots: winston@3.13.0: dependencies: - "@colors/colors": 1.6.0 - "@dabh/diagnostics": 2.0.3 + '@colors/colors': 1.6.0 + '@dabh/diagnostics': 2.0.3 async: 3.2.5 is-stream: 2.0.1 logform: 2.6.0 @@ -82762,14 +66487,14 @@ snapshots: workbox-build@6.6.0: dependencies: - "@apideck/better-ajv-errors": 0.3.6(ajv@8.16.0) - "@babel/core": 7.24.3 - "@babel/preset-env": 7.24.3(@babel/core@7.24.3) - "@babel/runtime": 7.25.0 - "@rollup/plugin-babel": 5.3.1(@babel/core@7.24.3)(rollup@2.79.1) - "@rollup/plugin-node-resolve": 11.2.1(rollup@2.79.1) - "@rollup/plugin-replace": 2.4.2(rollup@2.79.1) - "@surma/rollup-plugin-off-main-thread": 2.2.3 + '@apideck/better-ajv-errors': 0.3.6(ajv@8.16.0) + '@babel/core': 7.24.3 + '@babel/preset-env': 7.24.3(@babel/core@7.24.3) + '@babel/runtime': 7.25.0 + '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.3)(rollup@2.79.1) + '@rollup/plugin-node-resolve': 11.2.1(rollup@2.79.1) + '@rollup/plugin-replace': 2.4.2(rollup@2.79.1) + '@surma/rollup-plugin-off-main-thread': 2.2.3 ajv: 8.16.0 common-tags: 1.8.2 fast-json-stable-stringify: 2.1.0 @@ -82800,7 +66525,7 @@ snapshots: workbox-sw: 6.6.0 workbox-window: 6.6.0 transitivePeerDependencies: - - "@types/babel__core" + - '@types/babel__core' - metro - supports-color @@ -82869,13 +66594,13 @@ snapshots: webpack-sources: 1.4.3 workbox-build: 6.6.0 transitivePeerDependencies: - - "@types/babel__core" + - '@types/babel__core' - metro - supports-color workbox-window@6.6.0: dependencies: - "@types/trusted-types": 2.0.7 + '@types/trusted-types': 2.0.7 workbox-core: 6.6.0 wrap-ansi@3.0.1: @@ -83140,11 +66865,11 @@ snapshots: zx@7.2.3: dependencies: - "@types/fs-extra": 11.0.4 - "@types/minimist": 1.2.5 - "@types/node": 18.19.26 - "@types/ps-tree": 1.1.6 - "@types/which": 3.0.3 + '@types/fs-extra': 11.0.4 + '@types/minimist': 1.2.5 + '@types/node': 18.19.26 + '@types/ps-tree': 1.1.6 + '@types/which': 3.0.3 chalk: 5.3.0 fs-extra: 11.1.1 fx: 34.0.0 diff --git a/turbo.json b/turbo.json index 26ef521cad54..10083face441 100644 --- a/turbo.json +++ b/turbo.json @@ -24,7 +24,10 @@ "BRAZE_IOS_API_KEY", "CI_KEYCHAIN_NAME", "CI_KEYCHAIN_PASSWORD", + "DEV_TOOLS", "DEVELOPER_TEAM_ID", + "DISABLE_TRANSACTION_BROADCAST", + "ELECTRON_ARGS", "ENVFILE", "FASTLANE_PASSWORD", "FIREBASE_API_KEY", @@ -37,13 +40,16 @@ "GH_TOKEN", "GIT_REPO_URL", "GIT_REPO_USER", + "LEDGER_INTERNAL_ARGS", "MATCH_PASSWORD", "MY_APP_BUNDLE_ID", + "NO_DEBUG_DEVICE", "SENTRY_AUTH_TOKEN", "SENTRY_ENVIRONMENT", "SENTRY_PROJECT", "SHORT_BUNDLE_ID", - "SUPPLY_UPLOAD_MAX_RETRIES" + "SUPPLY_UPLOAD_MAX_RETRIES", + "VERBOSE" ], "ui": "tui", "tasks": { From 65c3322bf3871659f078148ab4b5c12b0fd53dc1 Mon Sep 17 00:00:00 2001 From: Lucas Werey <73439207+LucasWerey@users.noreply.github.com> Date: Thu, 17 Oct 2024 14:58:36 +0200 Subject: [PATCH 17/57] :triangular_flag_on_post:(lld): remove objkt ff (#8125) * :triangular_flag_on_post:(lld): remove objkt ff * test(lld): update screenshots (ubuntu-latest) lld, test, screenshot --------- Co-authored-by: live-github-bot[bot] <105061298+live-github-bot[bot]@users.noreply.github.com> --- .changeset/lovely-paws-greet.md | 7 ++ .../tezos/AccountBodyHeader/index.tsx | 70 ++---------------- .../static/i18n/en/app.json | 17 +---- .../XTZ-firstAccountPage-linux.png | Bin 83310 -> 68506 bytes .../src/featureFlags/defaultFeatures.ts | 1 - .../packages/types-live/src/feature.ts | 2 - 6 files changed, 17 insertions(+), 80 deletions(-) create mode 100644 .changeset/lovely-paws-greet.md diff --git a/.changeset/lovely-paws-greet.md b/.changeset/lovely-paws-greet.md new file mode 100644 index 000000000000..ec44da080f23 --- /dev/null +++ b/.changeset/lovely-paws-greet.md @@ -0,0 +1,7 @@ +--- +"@ledgerhq/types-live": patch +"ledger-live-desktop": patch +"@ledgerhq/live-common": patch +--- + +Remove LLD objkt feature flag because we don't support the webview anymore diff --git a/apps/ledger-live-desktop/src/renderer/families/tezos/AccountBodyHeader/index.tsx b/apps/ledger-live-desktop/src/renderer/families/tezos/AccountBodyHeader/index.tsx index 5e7bcc651019..c3e0541ec915 100644 --- a/apps/ledger-live-desktop/src/renderer/families/tezos/AccountBodyHeader/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/tezos/AccountBodyHeader/index.tsx @@ -1,73 +1,15 @@ -import React, { useCallback } from "react"; +import React from "react"; import Delegation from "../Delegation"; -import Box from "~/renderer/components/Box"; -import Card from "~/renderer/components/Box/Card"; -import { useTranslation } from "react-i18next"; -import { useHistory } from "react-router-dom"; -import Text from "~/renderer/components/Text"; -import styled from "styled-components"; import { SubAccount } from "@ledgerhq/types-live"; -import Label from "~/renderer/components/Label"; -import Button from "~/renderer/components/ButtonV3"; -import { FeatureToggle } from "@ledgerhq/live-common/featureFlags/index"; import { TezosAccount } from "@ledgerhq/live-common/families/tezos/types"; type Props = { account: TezosAccount | SubAccount; parentAccount: TezosAccount | undefined | null; }; -const Wrapper = styled(Box).attrs(() => ({ - p: 4, -}))` - border-radius: 4px; - justify-content: space-between; - align-items: center; -`; -const TableContainer = styled(Card)` - border-radius: 4px; - overflow: hidden; -`; -const AccountBodyHeader = ({ account, parentAccount }: Props) => { - const history = useHistory(); - const { t } = useTranslation(); - const onNFTClick = useCallback(() => { - const pathname = `/platform/objkt`; - history.push({ - pathname, - state: { - accountId: account.id, - }, - }); - }, [history, account.id]); - return ( - <> - - - - - - {t("tezos.objkt.card.title")} - - - - - - - - - - - - - - ); -}; + +const AccountBodyHeader = ({ account, parentAccount }: Props) => ( + +); + export default AccountBodyHeader; diff --git a/apps/ledger-live-desktop/static/i18n/en/app.json b/apps/ledger-live-desktop/static/i18n/en/app.json index c9f00baaf7f2..59e13ed9822d 100644 --- a/apps/ledger-live-desktop/static/i18n/en/app.json +++ b/apps/ledger-live-desktop/static/i18n/en/app.json @@ -2256,10 +2256,10 @@ } }, "memoTag": { - "title": "Need a Tag/Memo?", - "description": "You might need a <0>Tag/Memo for receiving this asset from an exchange. You can use any combination of numbers like 1234.", - "learnMore": "Learn more about Tag/Memo" - } + "title": "Need a Tag/Memo?", + "description": "You might need a <0>Tag/Memo for receiving this asset from an exchange. You can use any combination of numbers like 1234.", + "learnMore": "Learn more about Tag/Memo" + } }, "send": { "title": "Send", @@ -2778,15 +2778,6 @@ } } }, - "tezos": { - "objkt": { - "card": { - "title": "NFT (Non Fungible Tokens) collection", - "description": "You can see you Tezos NFTs directly through Objkt inside Ledger Live.", - "cta": "See my NFTs on Objkt" - } - } - }, "bitcoin": { "inputSelected": "SELECTED", "toSpend": "Coins to spend", diff --git a/apps/ledger-live-desktop/tests/specs/accounts/account.spec.ts-snapshots/XTZ-firstAccountPage-linux.png b/apps/ledger-live-desktop/tests/specs/accounts/account.spec.ts-snapshots/XTZ-firstAccountPage-linux.png index b4c0c122fefe25287a9c8d49ec8dcb6e81c4df38..16df2a94f9cea9b67f87c3741a70ff146b03a1ea 100644 GIT binary patch literal 68506 zcmd43^;=b6)IE9>MG%n^5D@T4NrQCDLAtv^K)RG}P!FJVBi&un4bmlD(%o^WL&sfw z-tYUvy??-czWd>k^XS=oueJ7EbB;O2*#1k{;MW6tC2<&}c;M9*1o9dp`9WC4C2@DoQRjs=$&-U}QRf_=AFolN0UsY4eoOyI z?_?18rK8Tt&{=<%i3JCx{SV~D3rZC!-WZLK1`9&#^NkI9(T@oTW*5%d$oa}m2l(w@ zE%Do%3=Ex|V4}SrRa8=9*v1BTg~YSe<)YkwfcW@*zaJF@@;>PGga1BYQ%L;x8`6%3 z`#&F8zx`kE73Hz};az8Mekh7gH)PXPlC;CauoqmzBakdczIn5(P279~%~0>_)++?X&h)tmgVQD%pK{g8YhC?VS6F&SNFWMyS- zo%a2VVgqT#)X>zNYHOQoZ_o5CWrb2Q2?|nEpDuR1k(Gi%ee$4wk64=Rk4s%LGBO_3Ha$H($V1J` z!xeFuM1fk-`e4FNz2lApb4g|_4*fZxZTh0B>+MgwU)ot`=w7?kw(^z}=v+;}ddC2o^3ya!X*U%JxL8slC-}|halhp_h#Krvl zJPuAcEHCU`TVH{6EK?-4JQE#Vz9Us%4Ab7yP=9p@p@L#Ob z$i?euXmsnB=dzs#k?D(VXl7<+Z0vY< zdn4d}NtXrVuU}&)9V{((FiAKC zT@F&iAI+wT_+yexY^<#}d6MieZvLTN3QA%5Dx5>kWA{NyYujK*gq~iS%6QGVFGj%o zHhrI!>sb&4G6o42E3c}eW1@?Rj^yC7MefhJ!MIXKqTvKsLmq*a{soI=Oc&7Jz2sE>%=2YNW zi)MNA^Gai_YnmIoXEk=Z4}cc4h?7g|k~#EjkCy=_>9>yawu{=0t6B85GcQU<;^EB7v_5J;QsQ@VwP8+M-14{}fCOJ8|;t4`DVyN~^h**E{M3J_B z<(WKM&)}et+sQxhz>2ggFAtW!Z$7-%>x*H$)2S`<(Oq2QSQ*Wczebvvn9Ltg(ovW5#K)J%2t#OUyoq1AUUyu1}bA8?ErV}&al#|VL zz~kmp*7XAGR-X$7(x}Csu`v~4;iZ!;Hk2pNf1BI3$wPk0n1E*wLOe4oQ_%auZf_b{ zQNa%TQToL`_Lhm4ciLA}lv%$alXvI3RVgAuzsal7>qgANB0oNUI)ciZ-v!%YXMz#d zeX!KV=kQyztX*7K*q|pu=-W54?d|QCT(-$^(T<19S8<(+!uNS5?q zO7rGqiT(_ybyRfpyYjM!4{gv7LnGnv51N|RUKztRQ~_Lb=M<1JQyhf|ova*+fY6^!Omy72YtmWh6N1aJOBrq_6%lo#r+!PNNcVuKFF)1l9F!1hjr)0)?U*XQ0MlNx2b@MF+#qrWg zSEKtGH6^8zBQY_to2%>A*0z|axb1uc6+L|*G10;C@y=wmzK!1g$(9}g!5+1I{8)qQ z@%8n$8E2amUdOt!vIx2=%gOx*#l_RpT8R0^nF?2F8=K0r%|f zrB^(5C$qKo;5KZge}9*i(J?b)Jauz9@5Zr^X#?8_9N)gRwx#;ByHU9DPxtl)U?1&H zmEU>czruaD;NDbOsk$Nwd4`EuZ8i1kl6}m1hLb6FrnbB>BZHzk(S2pTKQ}iwuH1xC zuc6y{Cx(d4gfn6T)9=|~Zei}fT6;q1C!Ye#auZY()MpH|w3^K}a~0;w;97NH^ebJV zm@gN%H=LEmS|WsPY~thN!Gkm%NEC2AdV!?*xzI|;q}TBI@C_8+wGvFiW#dz@vqrD} zfwb&B3+CJRm=2pCl~pue;Naj8oaRTn(rapJS~U9mi%%Bo>NmQ19*!8}8%NVBQ?td% z$jS!OM$(j1Y7jE(h6Ds`kJqbL7we)!Mf{&{O%%->n+^`@*W{)bzVn=B=i#ZHUd5a93ti z4jYXM;k|NJ*Y45K>rh!jlxWdA=}yEXDV=;$b#YbnEzEwAc6h5T^5Fx#ETA`C6oZkG zfs&H4Sf|$Qx*Z+X{XO+HKnzZM(>O2&M#e1T%iHQkiYWa0UojgKtgE>*i zWij>Z*OpF95=yEpPTQ%=lPzU=`9T1Qjsr12I|?{no*=o=DHD(>NY`RL3uF!|9@H#>W27NlnUrC0SYf z-XRpV?di}IymT5THx3F z=(f^M)!K_6uZsadR-j&T5tH0x(oakfNVV;P4sD+w*gssMsjaPrhXn;a6B24(UN$5P zB}@tXIG>LXrR3qc=uhBE;&sGz%!FgxfgK3I!7$&Au-P3SefsnXB<}PKq1jsZSZpONE#5E7@YB5+ zaZ%A5!^!aQaQPHJTv$Apt&O!c2*r!N87>Q}c;Y?d(%ai+kdiz%hYX;CiLXH(qhL3f z`}Q}36@&D&cLDjyxS`mQO1I8o;BPm-_btDprvq|Zm2+=qq1OFuyg(g}O+!ONMMbqe zT%A&R3MOa9PMjpiOh;GewbB_~pzhj0?$Ggw%Vj7vb9FT}_4O?=_`ZPdT=Vtywh|*d z&r#hwIJT1odgZ_L&=4=v;Guqmt4{LVGUr7KhRB4d9Z&Q#Nw*SGQhmhLImh|cg$Rhu zr1$%@+qAC1I42=)wX-Qj`@pr7s^W6IXUFqpTn@< zP*AXe;fqkTr7s)O&~%xm4L&CqgrP}F$W)Y7tm?nu2GIx7Z{9E}UL?V_F1gT`>)V_6 zuJ$A1CjGKpd#H=DXfwQZ#6ZO%f zU%!5Ns3)Keo3ZZ?dI!eX*UFd}Z3(*8)E5-wU7Ryy5%4)}9vpS_k@7j?!YV2&ug-Rw z-3Q5FKT1jvEhtY=v4|aRTOTX>%c!WRUa-*~lAo%ot8%-6e{^CZCMqgZ>%8Nb@S0$MvU(x8(cReCSjh9T!lYm8!L}s>aUapMp>s_Q4HnHp zIj1DvsT)tt*6i=H-J>~ApFVZq6}UV9t4leudAqt_*!d(KH(=eVP$qjJ4_ajXridk%#{6%{pm z*6eoFFhe^FDB&+0^`ti)oEFN1u3c*V^@6V3wZ^j23*S&NRxYKuQ<|~ImjygUPK}LK z$fwLR>-#C5VcguvAE!*n$q&{zA+^r-=QakC+8CKb145b{w(NAtBKSPl|H9E%qNAg7 zTNVsN{Cj(PlFoNZwA9gLRYc9Hpm1o<>&!&#qtk90bJZR>46RY3irrt|hJq2biBhm1 ziB->%gz1@YTf7U7j*iMr2a^Td)kH-*=I6bRRwb#asR1A#= zE-)t$+bF*Qm3NMiYiL+~j3K67?rq5735I~6LGyumT!=iB9QIAz-KX7EZHwTsa zf~IB7>iW83C??2yN;{xDTD;IUHeS2=^G7s@TFXVo!BPP~4QDu}O=vnrz+-9yxcL!zFuGSxm zoQT(9Q$t>!I+B?7*8MIClD{x9W*4X-8j&WD$D=)lfLx#zSB8^z53m zx6=+DmRN&G`3f@ZJ&H-Fw!OZVTVGv0zq*=n+BGw^1-Y?f>GLlmrc5TwGi&Pwm*>P;W#B#2$B|Gn!r<^sJR*rafck zqta4RHVaMV&WPk-k_k3V25IR&ktbM+)#!}6+mRe9u7c;J{Oz=i zS;a|;S`}vD^W4cAVG$8pi+k3Fh7pNTGHA7qSEo&$?#-4<>FIBbj8@kAVy&mjkp9jg z957i1{Ri0is;a6P>te&?=|VT(-2@98gJr*b`QqYI<7#QIuCA`FJyU8VQ17tymzL4< z@cMCVA1UYyyFy3>X6K$ff0de>dhTp+tmb)jV!qIH^O}oG4t)dE)QgJ?E6(~x$1A2J zzWSP)mqf&BB)G`48hONgZ*Om7ViG|2^ChU_7q;BKq5*_>7%sE z+)0`DYv3xM%`%lP_ll)>lI)TODsvgx*;T-D%+Kp-Yxkvzhl&Og5R-73mTCa}85tgZ zfql~g(0XSlNZX61Mb;zf9r>!>App*SnMg@#z3uN2zNM=M5K8@w z%=(Lad#kJL_MOl0@bI>8J1r!oq>A+_rS$Y}FUmKb3%H%^kN3^aUK?v@XlYGjV>#O& ztL;r!%{7>h_D0jw(b17TdVJ{8&=E**idgVoYJCh^yoY{IRKIX18uzKceM@IE`&$?w z32N%jnVE!sroVr?6ZxF=bUYdo3wPK16FwP#ieb{8moTw#J3KN5={Aqg;%%EB=J6{w zzvkTR?1`3aki@&j$y{`T^l{{x4< z{;RN+N4q#!qVSe=a}%?XvjGsO8cg@|lA)yJ&tO@1TFIUg{m5dS#@;o%=B#^Wp~Ab_ zYag&3u~Dmo2|Zq9UUD>yS$Q85+1Trmwkhw#7dyF1^L(42TI@NZf;iFw((6n zT{}u(kqe9r4}bZ*8Ll7ZEySWArIjzz^<3bU+b2_FWh}C>n_Q5^T;S?wIFO$6ouFN_ z7;VJG$%B)jRsgrwj z#U#&IuXp_|92+L{WSgF-w^{IfrMjnBtJ1A7C#SK|Q=TTLq2U^G2ib;xgh?1EDuU8_ zHE;?D3pMxXVdt5u)>ha?vH(be0Jxm(&QZ8*AdWW%r9EQg;<;PgZ}~YBJTJ%0AEcN7 zw$R*WHWB-s#mQTX;5*s7&CN|;48s0IR-@CxDgM?#H}Xo`J1j?0G8@Cx`B<$;b(3E=oPmVi5NFfor3Ov$e4?4gBCUFTx&8odq56S)Ll$Bp7<|DQ7bG6e)06=u-D zjs}lfMVTCXgGp3oQI?Z21 z#txr8Wq$abT5Og1As#)bkTTS4e0=r$s;W|X>meQ#`1V?-d05a)oqGEgpMs-maY>Jx ztrQKP>>r((Q;cRs=4nT>Ty%TmXLrsO)+&7cT=HJYL{&R0@^t5*x`^L*o)<@J00s~$ zH8e-pH6wcfWe94yk1xfWH{0h@90pBjGIBNpyHkMFdwg-htk>}AUEH4abYEZJLan_i z$Z=zy5soy4K6A6E1BpDxM{9ix{aR_o#kXDLfs70c9@Urg1n1e6`q)x`oSc#-3N<5R z6G+I&hTGD*s%;k<8XL{wPA8iW{8ceQ-g2PIj2f5@|ep;=GUVLqYDz~iFhq6 zD^%rNqmgb4q0D!8-y$MLKsF|fz1`Z{0$6KYe)s*GH*b8e;#X0XH8g5$ZZ0Epbr zg)#k61<>kTwhY}a&)8%+P(jPh4Dctbkr)ViSc+d6#uOaem}(6?r{T?$@d7m=^x`%C zVdN5McMEQHkk=i709*Ze@)clIRb}OzQS%5TB|$-H{U(nd!&2U9Ou*4$y5LCvOEeNHv<)*pT8^mc>!ReRRc($fA z~kp~QXdsyHHy`wMcNc1w$2V`Tl&feUddxpcKvI7S-%B(Q1;SsbFYZ75->!}P zU!>DWB;oq}#Ow5bB&1hr$WytwxQLB=wAy}{F_vB#ttxR48Ma6RZ3z{DB|Gem_%@HP zhzkQW3lHmwr15z(bq4(taYCcz0?quCRCoA-|avUoQ}`v7D$2K1lF zav>^M^ZnM4z#g#OuOBiH?EH;m^JX~IY&Z|i-88#ZQ&Jk~i@6-ya^OuGFf7fFF=csq zJ?OxT`u4v|!GF@ek4s5sd&xju{;g+su3lZDdvxIRbWMk8CFPNiTu!;h-$DJR2Co}G zY(N$|8B}wij&xo8BU~?61uzCB zysIQkE=O8Q0vq=0&YK>`=e&me<;%-m%>p$OxsVX|(|rnfW=@W>zOQfNQ*?AFTt!Vy z$7Y0&kwtPa&`Ni>+{YFqwkXSHT2QA~x!4eAe)4!p# zUbFG_2ZIF zWeN!3q(C78Ina2mu#n+a4OC}(^u^VwH~3Nlr?mzHK^^sLKRf&T zgM*#jg+C%OQ3qM@?b|oR#3xfzWpdPKpM!&b1cii9!~ab?twz~}kPGQ4Dgxp&FE{mH zhPX4`0|hljIZ4Uj`-3Vk&m6EP_XafMNA{!-n=$J(HF#V+MaErP%zGf(+XsOnu{&Ma2Utv$ zhc@FEkOyAma&jR}O@J(^mP_O=-FDN~)&}iiKS)VN0wY+pY_iE(WWd# z{i&H5&+`LTmIL9Bizq2n(tu3eU%&!kem}p5;^N|#mh_V7J-M5?K$`?yB4>iGg2Hs!;W(o=;!x2NjSi+pB<4a_MU))*x7crzh&~4(M0o_(WKmdjo+9fS135EZPi__H7 zO6GG;)*4*;47kl?A@AWv?K8kPHM-%On3??pxYVdCM496s&;&Fz9z7ONQB_q`QTp56 zjg4dl()E}O;JkHpbgyqvsYNS0iv#@wZ#$OZX#U@8fvupgXXr`Lvx*M#Ig(T<|?f?D?WhJ+r zKiQD~LGv2*`_lHdp`qdO#zt&1)88F^@I3TIK%ou#1%zr)5~G32@m(Yos96N~_~UiB zJepHmdZQ?aCr1lm$J%15jFga}_Wzs&*j&22&Ne1PyMN=#VR_akn~Lb@=&Ix?S4ru( zk3@tO^By>%yk^j`sm&Du7xwWR&9XN|5kWCPmZL+%!x3&Ln@}2>gs3Qn_lMapqJ6?3 z@A3Y#D!lj5(AFlYW+5;XO28!|nrd`+Mol^diogOjUCa2E=*RnULXaQ8+*;E7hpwig zlyl_H9QO0_@($fUsQw>!Ln`ahE4Fo@CLq;;8ux@>K)|w2btNbt$nKCavHb(WDP^{! zCv*6YuffHdb8K|$y@D<@Vy7JQRW&qT5)w{k*>7Z%smekhKyops7DeIM#dW?AWALC; zJ9Tt)ZRSr(5RJ19TZrWm{evU0it()?e}>xGBm8~n*D9oC#j%NH*O3H@T>xnu)PHes zxISlH2aN-=F#|+JK(CaDh=}m%ICn<=V*oV4@qWe7+8Un(PkFS+!O;=u{1$bpGBQCx zBDxV3MKdVX7#I+sk^8l{x(Y=8p$_L3aHfgCIL3iColW!ab`yhfjwxmD>t!1^uk_`$ zzHJ{j3Pkz6$DBfQ!!IfW!2Q6mS6%hAFv-l7Wq3kNa&^l z$433mYB?c8E14Jc_pjH@rPObYYQ!v#no8w&ZJ*SiID3rm9h@TCV`m~tH(qLnuk|OQ zh2|^@NxVCKbtk?&x@ITvq%|TsV3sEQ=mR_r%$;44)XM5<;8P*5!l_CpX^gViLg5E=p!SFvW%;QwD*Q91kQdXXc8EKv7fF8#08^^u=;&lS*>nuA4Rl{9(M{ zT)~7p&d+AKS3vR*f__@fRRq|8(2*Mg8FK0A>nooc7y6J>kTD9h+&jqK@87?_(XD0t zcNl;A1Sm7G-eMH1{WI0g#rdf|MXyUtJea`67`|Evh~?QUscXTjUaDtc>W6@)bhP*%`K#OgZgocI^YHcEa%H?2@@;WT~JOEosloSKFjr{iK8z&25 z?Mw6q?nt$(%F5nxa0ocx!T=R3VK_QGd>Aiy)7FIrR8zpQ!CmQ(&lC|^S;pT)zL5)h zw6EET;^IF>hrBORQHaDDc7dzqnRQFKy~e9cR7~ttWd#-_Wvl7{n!Go7RmItr1O)hi zDQCV-kBcLUhEUSvsOT=JNJvW~rWyk;b(ECeFfuZ3{{WGT{;_-tr~^Q8{q~~C8F8B% zP64Ef(UFmJ`ZyVr*nv~`vpvG!XC#G+ttaClBvfB*)3dN2{&bVb%y)6G?6 zq$Ouc=zSdNJwjC=d3I{rx`IO-Triv*o+804L;KR@ySULi`}8#w8a$ZPv|L_PZmdCl zex2jq_Qu)dm2-HHq`tmy<7|yVV^fpY_(NbV=p&%X`T5?hO^s z)?UKo)fu9^;`h0YvjeYZ`wtw@v);TQiHt}*q1#;pE*eIL>6sk(04njKG~QcKAVpw?deE|7;j3X%fktzYc@9rEVA zr6Xei04*{{=>N&JctQbzR0?mbb_>QUTh)J?+n{WuEQfW-FnxX++(iXvIa=Ae_!%7_ zwssj3aX7in?3X1dc)Z@f#tbBTxp;Q-&7m|Set{H0%$v1rIJQ#H)!F27S(fy@=Al0} zd4G`en}vlAj%0L&98Qw+xwUt6WNniHbpiNyI)h2P&*mHN_S5fG`ma#rRBwKho+&_H z&2fdhyTq8pfH#hbiN=8yGBB>Kt|kk353JdN-41l({G>a7pru77B~e7>R%%)Kye0^}h46SX*rQo;&aDkZm2&lD8_>GB%R&CRXQ zc-P(SEbZaZe#R)Jtqc-P4y?2VZz)MVkAh>!YB^kBj0T9Me(tyFzD=NnR z{;klSv;q5CR8%yQS`N(}Ne3KEBDw-RRH9*0TJaS!QkQg5xt*cpcbwOIfULgvKb2+m zfV9ZQ#`gGUn$v$<-)B1Gkj_QP!r0GKV`FnA0hpZVs3>e$Ya7Mx-flb>mm3lF=9tHNQ9t4d>QgE@ z)JWl+VK7S*08r2N1$cNWo8in7pvpdiq{=-db;9xcpqQf?aQi)vgP-_&!E6L}Yd6m3 zh$!PrVq)MCz=Z*Ck7A>DFEG~S^1UE^<)(oCUR6(T^a-XN1^f}JAmE5;Dn|e$Zf}QU z;}Q^vA#Z7cK@C_n#)pTuhBN##Gd}^(gO1KC-pflQ*RT~kqLg_!qLo%~!oOViRK|LyzZ*`$yVIRgWO%FvmoFUObK{JVmP zltD`j>?d{nt@IzkeEfYLY{LiSsNoVGH(bKZ93-+DWkG+P3r}K^70R9h0^4o5iWJT6 z6|ruDlG@T&^|HHrduj~&a%e!?irZg9F60Y(T%XTTgM9lM&hqjZ$dRz_o2#$4x3^;@ znIQ6-U2gfIg8QqILUehc>R_i&mMkd5))D*U%w^dA2vB-_=yV zs5t%*7vjSk{(M0aEiY=4ezKI=TF__DAvJe~KufXi`sNT>tvoGM^71VMgUnSpVqUcv zfRB@I9O_6-Jv~8#<;>aH+37v!*>iNGu3$i(YPq?gatLTH2zovz=Uv^HJjs6h7~<2p z3l`+&^3;IkC9;tMu&a6l13=`qr~~)6dGIh7FYi}5oT-QPY_%fp0~$11=jS=e7~g|! z+Z@_FZ=n(352$oK-ngq{3GCqga{a5Wju*N*s9K=c?4^sGS&eEorDD4pqzYCm(!zlO z6(T>x5$NCGP$+-J&COe^(Ilg*+o-?L6cQ2w#Kl$~ey}<)(4FY$>OS(oO`Xuuxm-AD zrggdKBvO?%0C88GDVV5Gx0~yxAc9Qw+cqG*_#=s&zM_G*chP{9g$r{-ZfE7@cI$)I zs@bsP2(Z`An?qll?QSj|IXOAu*xufE-=AQ4s;k0a%b=BqNr37LEH4*3AXx%`NN(2; zX=!P6DB1pgf!a;2?SdW;4-c%n`sCzZ2EH~8fZi5;xF00WD_oF+-q6r%d)J4>#&W%T z_Y~7}Vk{${7C>co$rQ`h^Y(&vW4VYX-Euc1a6{bIkM~68 zth>7_mmhU`27rWeX|P5_M6_NsqmUBIsLks?}bQld+e6dbVICsFhwK=HCc8o}UM1EYMLBdB`5jvYzcrb6Dg%hf?r z*v}q!kS~xyhPc1fuBAV}_k|OyC@H=BKJb#w!~qm9fQ*WE0LPFbWUKdC;$Uae_R-sU z$_!k%nHVH@>v7)Xvj<~nV)s{XkIc^Y19(%?TF{U_+dYdvKXbE2Y23D~JXqx+6?oK|$d)9I$#|tYzi)5fM#I-sGalW*k*j z%#$}PfL-7*sQ?VwCg3w|u5V0M$~OiG@d;;Urf9qSu9Emw6%`d@b@^S7DEaweBFaW# z2{REw1cPUKuNVCW1_o5|e9-YaJG?G|19p%6^tRyg`obRUGhIUv)DR!7zQI8(OiwWh zfhP890%B7YRgMo2UsKWYcwKX&pnR`C+ZXaU_vX5ut@%<8dY#zvyvS#$<>Fkt$h| z|LiA8a^wOQD!@OQnVH#2(dvwt*S0>oUsT9zT;%N=7E#g1B}96_fIn$FdtH1ckN(tc zlN|fw$B!)5(<;ElQillF)sR374-2yz&maHhI}eDzxw7%t9z)=XRsuO)Q`7t)RapA= zybUyxl9F4@&5^(ZeS3XzJd)KXB_*X+s3QsFaP+C)29bq@yYb@%tDn|9s;vWqeT+$CiPUAC>?FB9=C?n71no{#S{fTu zK|cVDX0gFdMdf=p4+n_F&(BYWI>YIT7)bh?!x`vMFai=T>*B&fK;`xK4ggcvSO^+4 z-y;7I{SY1o(4v}l+Pxu&l84F{TM5u8;o*7N`Il`G`E>b+g~l8~8k!tz7;u0CBGc0O z^?yS_=6K=x1O@#Crb^&kk(hfcAB--O^e#^S<5_Z}%48yTM0B(xh;A(e_+w@;MQG!* z)XK_Ao*V$*RY3NvsBi!ZeR47xl#+%|{NQQcy&nkVJ6v2`V&ZKO0T%{6yNOmeCYNKT z06xJaoMfH;+o?kzw{M6bFbS#>fE8B`&n=nsYweKR956HvhWB||sRT+9$^bjy;p2-U zZ_%Mx-^ku+{`JLZaCblm8g-ter?(E7rrpi`4(sPM%Lc60T|JVytrfJP*|JH?LmB?S zF#qmd+1c$K^kdVXD=e+JN@5`!tCaah0e)0*QSsw);`{mgh-E=>A-utIXlcV{*Bl@f zj1_T={f1;&JV^Ty5HMZWp)Riv9IrfU#-Ich_YU5*L=|idqzv};rEnX3ix|0Ud{LX5 zYc_R+zY7EWa(R&UOT@ogHh%tVe?B0Ij$9lQx}EOwxE^J8J0m7a7GBSy+}8&Pc8s43 z&M)h(kngCq*7Ic?G&JIXO_=ygRDZTh1y>*kv=4a7;02#1uqb`821wFp?2axtFTttr zb=lkh%gF#-;9?%WVc90~0nqJBUu}d^#8}bYSicasXmoT8tLERj{}F=#yJ7L;kxxI9 zjD$p{V62@KD085(1C|+Ys_Mjqu&{0uLeBRr_XC407ebRCK(OEN1JrP@IlA2EGH}=b z|K7)95haEEL5KjDTbr9}l#S4l0ZG4P|LMH` zk9%my+M4OuPKZ|mwP+wZhL(~FapBs7RD;(Ke5kW=s3G7yl*_+%+w0(UAI5DBVmWhj z$;FjsoB26qa?)=LWs<{&t>0o^M7vqLLd+!Y1zU3!bjamX75~NQBGTQ~S7|EeGhDP< zG8#h>>2FSAp7{86DJZDmIzEGN{8@_$$wTwfl%GG{YmLu-wWiN%O}@6- zNd7%`^9mKB*n$ROXAL$0ilZq*f;ak{Z~mBygKRLLpsUl@u9a~^dseFv-l~`1TXc94 z=^B;)26OW^tJwEnUSAvT6^jKf)zUCH^7}t{55MQfM_=Olpl5J7SM1Ylza=K+P!)Lm z7+D>DW?5R~!f8IIWfl3d>i!Dbv~P2lW-VPDdH(lIilaxVre~!hs0=Txp9RO1rWxyb ziM7W5AhxC&kPRTfBdEyC9V=dY@V?@J`lAoAf{Mb~t17WEMRp4#zhX6|G3*BZ_=;@C z?95!~I^!uD_t}T6Y(^}|8-LI@pz@w&&)jW5iEbq97&{vlH7ku58xBTB_T=EYe&{1$C82r+nJ3G(gevo26E zKah&zy{4tzWBTVgZl)Bl$hf}0987TaIMF@*jY}WOd!s)u93c={F$|*ww|pLYJ}NeP zNnv4G^?Ff(z4Whf2~Gr=zlIXnw~aQhHWzE))$lNa{-T+9XAZ7%ynUwapSfB=M@+mm z6&3BB`Rbl3^M5`7cKb`omV;a1x*Af^m4fEu{at(>LEgXS)nat0gwOJMAJQ$Bl+!m+ zd%k6)Un&_JHJ|GHGK&^U)jFq+GCFRNmNEVYsXfcwi&iZeDE-gzTUTJmg30FCG8;Q-G0)PaZhyUj{5BW$2sv$Bo_-#6(w|a z1PL6J=9hV<-atsUEBU#s1f8nMy|L zc4|h3-UQy9xt#-dlDh_H!@HbP3bp#vxF);9wMOl>CQ4EH1XE3wsJp;^<&ovYIkU0Q zozJzteWcCQ-Y?XwzFBq?thirXRt;`9;o>TRAHjmFCO3EWKbYPwxD(SMH={cKedAev z`5#6iD(!b}ac*n5J{5L$?in3nlx^!-|CtjJ>9km1&%&VSBsSy6#DFyW-7i05d^Mqs zulW`_JnZX@DbZ%au{zz`T&Ep=75&K*%U*fDRAb}B4*DcKLGhr2gD>RVLhmkn0+1+Z zP=39&9{YmUg&VpDW)i5E)?T{rf5_JD_^69MK3fdwK8+dpf^O@ncBWaDKRB6*#i;#n zclty|Ov`IwGx-X1hMqVHs)bvOiCeZXDFCaD2P;qBdCR4Lq^7#%7vd8Ya=Y(d{Z-SNANM zNTB23vZ!%E)sA_S*_3M<=_3FS^KaScbgkSKQgK_d>slR?Z{?Ng*amr3Ha_`q&ER0l zw_N@$ZGLm;^EknU_>PE(@EHA?)}M60KcD{mBTiFZrtGB~s@WIPNZN(zeAkw?^8-E@ z&QFF|t}Gg`Vc!n0`j@~rU{mqqEcEnM{CHQAC?;)Yb_ZYm@POX*>nN1Gs*Zd{1&R); z-8D;HF-%QP&t)gF(5{ukZ24J1j{|aPH6+v0iyOC@lq9$if0E&f9uGKGe~RD0q~I&X ziz-BdlBTBQy>856E2$1*xPY@ZHr5{QVutCok1o9-_x%zX&+ph!5^P-3o!bQu1KkW> zPAnEt0ncanH$?JJfDKi8x}b#Ae_3|8K3Gho%YlvWt@iFvdbK>3tGAa&dA%aT3#!oe z5X=ILb=h+j29$Hp1l*Z~}&l<Nn2wo}c;oXet}C$|u`NN0iD6Vs&WX+>YcN zrkBF7?rc&cDehhTK<1h0nq3}tw!=O?FHA&+h|_MuyVR1&KeucdLV`2Dtut%$<|15k z0t1d?OB~a9O&!&($)z=9FL{@n!iBZzF=${CV_i9yZYK3yLJL*5Jr^r^DqlhN(~5I) z!^3$iVNDdLPmz(LQE3m12|^4*x{19zZE~_efz9g!L^jo-hk-84*?ew|wc{ z5`Bm%Votm6k$n2DXZp47ebVN67R9gbb}6qrwj9n{O2f&d_jsQ-I3hlGAJfCbkTYVP zG=8Dvm1^oUtBT#OP%^FWN$#z!Ox*(mlJ110*R)H)b@77G)#XY?Q|1z9au(ap)wwk0 zVuTQ9C^qiR;S}$}Qr$H5vFWR&&rf4Z>>25qZww@x_LKZOX~Yz!5Pe+LW8)|NTGO{~ zk#%NParltyXFxUkinh}`ajbp|W-d5yT0dQ{U9ly6^K6&PXeH$g4GI#HaEqze98p9> z)S>QKW@X$>a$C8W%-FHs^v&_)TbM*W=iD9HrLDO%8qaS5kIC!}zkV%}?P_XxJGgB^ zj%VPV{Yt8nb)CEHH0Z2J9CQ?g=iJwanVh~iQtwI01qc7c!0QdCQ=ja@Rg3f!7i8hs zdhcm7S?8{F)D<2Xf8%H(DyD`zWP;B3zg~c58T;=}JtA2^ zY%s1W1v}z=P1i*2sOul$cb$!APDy+{_C}U$26C@Q4;YEgHz|={iKQ=Wj4KI>c6mI$ z4S1y3IPe;EX6nMj_^?8zX6nF}&WK&nID2qRCdkvaa=4F58XFaMdMG$k-em@g5gE#c zJ-4V3Lr+Pq`$if(EY{WrxIP+#U55JSzl&wufJc&B1#n+D_94T2(7o(USFSLxZ*2Jc zHsYFpfCzOmGDm-ue43Rne`uRMP`SCmKQ)w!i9Fap{+%E!FNX(X(qAyKF)1lAJ>4Nb zagd2&;#SwwBOpSa|5#YAmF7+1|MixFQNQx9Z$SdH&RpwSjJYKd9w0+&$1Z6R*dUtOHM4;i^~|@uCL$zzUQ#q)-x9EcWi2#(LS{>p8jc3 zeG)V{_I(&1fA;7|iIb0po?cT`)Zapc;(L`CsB4-gg+^OF>zD$|8o$@_VOYJb!1u1zBLAWdXYtgNVM~2D3#j7YUyo@?Us?f5@oYcYyf*|P;uk$Encvf{9fjTx)!u1S9Az(*Ei zu3T5pjS?#*)d@BA@r<%S3$DCMi+jL} zjza?hT+yA;Px*3_OQ531MnvFRvp|}|VpE`nKift}@UG61d4JzAP>DKP^ly{^QSR|) zZczX&Wo`&;O-4$+5qUy0I`Wh3ocrSej>V0yx}syEXB*1(RYki%ra=8pOObJKge+2H zZ=MlBfG^X zyI3qiIUJ+vW}0nMJ5(TEKEh$@lube zYNVO{CMc-?pQ7)j@x3lSSyOtZ;FfP~Ey~`mxx>Rv((7nQl#$&-y6W9tg=2r4Fa4{& zKIy(*?y|A~?MZ%i)~aGfDv>9QZU^TlSvyU7kxsmPK?2UMA_;1`Dp8ekx*8NzwDp5$ zs?1$qz`ob4H#Vzg5*gH=Qc-F>eYttl7NJ_OH{rT@INE2kAhbL^8CW-5FfD6QG!1%9 zG1$ohgTK|YislUxm)iD+{mK5BOMtZ8#_2_##!`^lq1}HDJ!G( z=zL*!cB*MQLMuL=LOf(>WUNrPV(7yf1_FyDr^2kQN)h1QXCx(TmT5%*N%xe`=+xB3 zVH+9`k2=q-%xUYH<=&ipk!QqgtL%FSW-zEf=W%>0$QBtwqBb8L7WM`%L(P<4$UyX+ZhrR&*O&czx{jy+SS`uGfnYC zz2v@$3r)^PUyY8Xr2`vH$v8O6ew&T9dH!htSSz;p>iH(ucm0T-PmbG*@%mv@?R|Hc zQ-*h<8N*u+ev50~PPh}B4o7j`o&SbfK^ScjrMUCDJl#_Gk*hV*{?BcrQ-R3*F_ma= z5{ZcAy$Z$7Wi{DSH@J5tesshp?sopnF3$e8H+#>Wrhv}!jur6&dSAyQE=-l0I}o#6 zs#;Pu;}MoJ)I0uE1tX)Ztej;G8!?VM{BSMhJ?cs|@0_;~G{SqW#^96^3Qa30xSEr~ z$6pivJ`3JxdrrnXTb>gMUb9XXSQu2-V6?X014=p$47@k%`Tr32)=^Qm@7wQS00sgg zDlMW&Bi$hgD%~B@9ZEMU2!epp-JJr`rPAFsv~+jJyeEF&T>G!RetW%}^{n+EHTTS1 z_jR3d9G~-WlFu{^C?jCfdFoYu=OI-~E@+(T?ailZ-RnPRNDF&t_VxYI1uzW&Ms5Wi zZPWjeDG(F$6DgYd;ARwLt*vzEe1}wfi;dd3@o&2NRuRY%!fy(`)l3!&aLoB4|2n)NI8oxgw=-jsA=AKTDSg2==|CQp%V%cmD3@L32l1~2tdXZ)Y4SJlWtaqIC2r&3i7?6BzISzZZK$ev z^=q+|In#?DRruGw%iyA2PkZ_#V)E#mY5amyHx2i2*ZsJ8t%Id|x8q04Zk*E<_q$jF z*I$Eis?h+_X?)%RK=yF2*wYCJ2+*(dgsASGY&kZ5LLZewL&Qmy5g1F_S)>LYtPI+K zDYmlGSwkZh+-{pwK63OI{t*nLBPt%ZPnVqL{it$8>gYk%eb}a$!|xFo&H3)nBXxC? z@V)j2j3};^q3Vha@K#}x$8cDI`0_-Sql{4bVRX3X^q5_r?hlgbYS(j5Rex^#4P(8` zslv1u8Ik4K1zOtJ&Zj+aaA>FROHUM%QD)|dM*0@W%CLaILN^X>9L^iJxjM7|ZGEzR)2jp952P33X$0 z^Dy*?dU~F7b62XDS+ij@+r_IC$=0fh>M`^>z147+Ek}_sl0mbJ*;YXhsq&D3G#Up|g!|onQUtUoyCY|kQ}Wi` zH(XUzRL=45{c8?08-H7eehmh85s1l!U4>fzB!H_Xg{0|ulmr`FNkhX+sL6wma-}D& zJp$wl!ggqny=*rpC)%>RD{K~_P4WU0I=}AwZQb?tAvnp|$=sIXBj+Auz9+;Ym|sqa z!@g~O@)ntSuzPSm%Wc9$MUxp=qRl?!uBxf9@@zld6#L5RO1R%omgU~Axn>F{)0B$9 z?Y#D5yLgNGslt<5*?{W~MTH96T~~i~Cr)CZ1rc#5DZg4Q@-bQ-s>{Fpu#5^d8_JDm zX)bBHe#83@1~%Ejs@Y(&hz*NPF?6!N+-YrTq0@Md`s=;RQ)*>4R!UFq^_!|<3#8Y5 zQQ+{6kV^4DY3)P{DT)jhsSne}lPdG_5tB3*tK=GXuH;gnv2r<(UdSsb^o*1kUjb#K z<%EDnSZH}#sOfm&t5@%u8>nb#%I#3E73KZ{uOs_{1l=>?MGXc*jJV4HyBiP`eLT$p zMB)KG^q-WfOr}YB9b3Y`s}?)ky>P#1kKj)}ziMHQu7a&nW4Qh@Q;mBVNKJf~8f5d^|sqV77Q$$pCU!bJ=EH;PZ zP=Sxn(!_3aWN_^C$yuNxC8I#|>Cj|$MzcdfzQQ5TZA3u+Vm=$<(5H!rRVwE!bQeAD%4>w7}o)K>xqhW?Dx>a*W;2_SpP zkV;@*)o0glnTF#-yUu;$_ivrwACF;u^Ej+idc718nW(jC{`2Qg)5&nukL%f)iJmSU z=gJ#Z+Ago88QU0hoBWx_`&K3k&(30JH`-T=MJ2<=q8hJXAOAnDb!G_7cxux2uh)$T z2A69X7>ue#kvK&zhuRAZ3wq6*k3T2wmWGUibZd zix6I!6f=hd?ed~5^k-sg^o=Arw3jz;6WqLnvNd&RD$hM8v%_dts_uDyww-B9|KY3F zsdg%U)BP~BX&up8omNtz_n?Mde3~RjVyo&Ed^)_Q(R#Kq7>0E9K}*CPbOHUcIMPL5 z4S9Ifl;0@*gq}}ls+XXo^+lhh3H@fI4Ar=ce&x%F!nV}3XKM~IsxjpH!3PsLv?ZuK z49})NGBR@m4g}ygD=d8Hg=w?9lbn)L0dMmY2H>~xYf;?;epqjBFIZ~4Fu~q=7mrp` z8rM^8r=l=N5R=?niTqZRf8B$-=Rj$Ki^Y+vQ90 zfvtfEq)U4t)o3`!cXx*vr)lKrhA4mNplPRwm~Yg-hCd zfr<+#2j(@^iG{Nqclb-^ZkK;)1`8S!0%Jr7T!X+NU-DZ}DWjtAv|OtkC^-8#-rU_i zS?R&a$C9OW>%_p4dP7C?cbqvLmi^*o8wcS@xsZW{c&SEYzii2roc1BAn(mcSIK{J^ zp42fM=xbLvjXE8xj*ox!?JhW<8uvX>``zchpKUTBH(przk!MuJ{WA|XV*e)ExXTz)Uzi3`|R$ue;qx9=d~CA{*8F_0_Q)UyvF(0>O>&^@BN6E>I7bDS{lfR2yUat z1x}-xN^tqol30OaGzq>%m)yhqpy*2CqH2SF3ROQ&?HfXb9&E!MOT}ORQuf zdD8mz%dh_zUjdyV2Q=v7M6KPgFaDK?V_5$Hz$TSh*^3w%v_Cs}xHaM@Tsi;Ou zP79Ri)d?Ryl;HtDUv3o3#zf8TPGd2skKS{}w%NbGhhJtndUiG%;)A_$UTTdN@*A|P zT#~MM)7`QPPaq1gJf{3rXJfR>Zh@@6v6aB<6r9nVW+Y8kpjzW6n!?2;8Oz@ph4XiF zacsEFuTeKoy==okS(d*vcuL92~(m8pmW}1T%mMl$7tOWYHyHPWre40c>L1PC5q8E-Y zz3P`_Dc06X%_qX6qfZve>ZGH2m%;SUR?GVD`YQXZH9c1p+rvTmfc|P?9K4IW4;anO z#jYU0!JU{mU2}SXCj`0x;M38LXQihbj^>SR<2?f~-V017j#bt_mgPr?UlZr!aXbz{ z`nWujKyJwIe8$N{{RQXl)&f>SHNP_hh=l1&9Gf}_@^@D+f8V&%(jpyGW`4Xyp3DB= zUl(8I8KD#TbIr~!63He4qTBff{1B*URXcK-mD279wa?3uzYu%x2MUX@bcanX@N{Ka z8=0CCk~auyCm^#53L?V8VIBMX``sWfdjH-F2g1qh;fx=d#@+EXK-K7uUeC@=t~Or| zR?~WP`CJ9#jK3igckVpjZhetZ%YU}FZ)s7)!Om{ln|usdqbpZGWqMd$f%UF}CzP*U zXK6TOvYk9dOe|_OTHQL{k^3hOHjRr*-LXKI&R%8|i;;@`Dx@q}LM@A#-Co}e#3M$= zf^6ftMO@j6ii%~4(1PLLKAD)$+VJSD+I&0W z!GlHg&qMZYQY$(hzhXF&`Opfc_DcSl9BhU(MU{r!=P*HAA|QaW7<0f8q8YC++(!cW zgihso9SA)q&SS@9fphrwZBNDS1JS@AX1&Rc5F0-AfAA%%DIliI`EVI%a;d&8EdUOn zWi?~>nAD)A&hqr+P%pD6m}mRvvL3h*ZD~`JoiWtYlWB=|)y1lfvBeSh$EgqXsS2Gz z@jbKZI|x=yK$2aNZy<=fg#wjGVf{_R);DbCo4 zyS3MC&1a2GS+i-r^s}U_R`Db3uE@Qs^hCI4X4#@8_b*FOhDaH) z{<5NkckDG?k_;8jmJ@Hh;G@i-Gmr1yzYr@#aZ*NwBLSLV3qc(113(J>6F7mveYZk^ zZafDK=IColGA;UIZ1(h*Z+g-5D7pRK)rV+^U)VBrj<($Hs_^B+7qXo}+(BqP>1a5w z_Go?FQSil{UoSg@Dg)5|_d_h~k46G~YbzwP-tfl1mkEKm@e#fPAA%nh7!jEnjhKSL z=RdV+_E7MoJrl$<*`%@`AYh;5rp6b%rcDDs>G@fq1_4ZgvPsh`cW?f$FD3r?@f<|x z<>f~i>!oOt-hz*)7#O-*T0qcj{@;%y978*4NC3p7r3(_;{`0Wsf9M4NefEFvbp8MM zq}O3L){#h$QqAaESOB9c;I*Ez4GuSR%&n_~vKG8@}taRh@nF=QN*v71~ zNxXsP1Q7O=l$012w&mpIFv%h5HfQJItzSXwd`YMFlVDK?g}D~>~e zg{9a%|Mul0B~qLCG9j3mnY-jO?(h0xlW_&dw8!z8Eo>4E$@|ncHNKt6y|wzL=zcafYpJ9~YzYHgjtodGYbo%4&!KaP-86s|^F z8YoNw2^+xl1_lS8adLwXKv=*PhlCz*bZ(1*{S9AW*8wgU$UqhHno*CFHiZkcszfoj zcXq(}-ICfW1u|gv=RIX>hSZ?f$HCMv>RuU7E502=LQGubFm(auc)|d7osY9%I|2O7 zRJD`MR!>rHt~vNsxblmuRBWjkXxxvMdVvcJk=J;4e8s!jAz2O%p_Uy3aeBH+iAc^Y zfXU|P7ps++@59MI`%J3Z3GX###oy)azm2!9UcG97KmR5qePB7@U&xr5_Zbrb26R6^ ze{GCwpcT)^EO#6$T?ezi?MFC5T+!;(hx4hkvOwvaW$+Git%7rHb=wlE8k?nW0EWB6 zYd!te+4&^+slR9tsog4qb+Jv^^Hf{~4h>3A_A1xhs` z&!j<^&+RgFK5=@eNyklQXOq&u3@gz6q5yn<>=(zc-oM}J(yVehSSz&ej2_Lm0pOV^ zW?@m$&dx#LSKr)uZ^W57G@2&1bSOl>8c)^M1mAte!^6W*J_E4;X}mJX0vi%?a&vj% zs0OKhZEbvZHcdo3;Cc>@TJf;4yWuP!N@O-?Kb6-%!VUp};piPgxiV$j-G%)?67I7f zOZMp`Ma9Kg>r))LuwIbZ(zx12d^Pv=n!YX%mlXsCmc~}Q?v%~>`eHI#Z9+&BaV)*> zQ>m_|RqHCd_wINHA26cXZC^lc+MU2RW6kM>0|?XRY;Dku8hnAb%29JWwY0vz9s`TC zZE+VOv$Z+aLbZ~oUb*UJ7X!;IUO3I$v%td9%CmVDV2_FEC_ix*4dJeXg^OU7H@;8y zfDs21mZ5-%I}OT53{a!W9kaOcF=K_003#!g`1mxHM8ki-^*wl=mWoMki_W*xpYd+? znan2~bMss<*}}2<0`rZexFP_jfXcn9Z@=A_2Knq=A&IdVshf z2LiAaN{CfzD%PB_;NN!-_yQ{VA8SK-$_2n+P{t$&=ZR5wMPRk-5@ z-Gnqg*VbMrZqm}A+*{kh1xYkiU`EMUXS7+n^9tBEMb^L1+TMo)POZ>2sycSObe$(# z@hLrhr)e5vN|SPfKC_}CEq~6%+4d>A(PCB@i3Pkf!}#4g_3NNr&IukH=gNmyEBBoN zgGMzgEII~FZag8;fFgm_4XJaKY7>|;OD)Fa#z;xy3$!r?${UbyZ~~&*GBg?1q}o0a z0^UUU%TTt3z;!;z)WigfjJ>0$XWGr!xT@4*HG3i#h+U8|OkdW|fKVJ%Npfn|J;`n% z5zeU1?lP3yC?1~fCfz?cn0D886{#qx+1cHl00!ioE3Y8c`_GI3CmYiYOPh(kueM1t zk#TY78|SACnw3=4@6N#A@!$dY8E}N$QL{lme{L$g`WPF##+@Y~Xd*$`-_UTmXeilB z(Knk_=)#kelfQfcn73nq9)dDtdEp=^GjGjpKYAFyp!~>@O>vOl&AF;vBI5gZaxXfq z>ZP8RTKZYO*9OD^Q)u|uQKvuGUI}6P)N?s*{raI}uj`li@Zm$) zv=@C^8`MjjJLASUq9iEE_4}IyFt7=f43S{9NlR-Fml*@*E@T7vBquhr=_EW3VXf9Z zkH$#G%4EmvDc0H#Z??D7MxhSL z4XugJHhn82V`Q@{1-ScaH}UmFYfiwUL`T`tP*HKZE#y{LYq-ewV<(ZhhbC~Y^F%U7 z-iDVHcJMx9)F%j*FESYa-e}D3k&ya{>s(%Vj&FJD?cyPKykNkDS_6DU#{t+la%Z!Mh^mNd|qR#Z3>? z#V0tUc8i@f3c_r%yG@9hZ;&Bd|B7EQWFk$n~R( zZAz{n=sSZs5a44=i$U(Yi6nDi3ne`V-x-)+X`Z?RWC8rSx_3LGX2nV_yoF{yd_pbb zu$e7Lm{M?aJExvgF+_;Fef9O#D0~kI%U-3O874UikL}WA%_*=&8iw^(!#nBj`{V5V zZEWv~>x2y=M-IjOr@lTYfs@N@;r7aTJ=~ovM&033KTPLu!tPO0W3!mwHyjV~RYHO` zW&QX#s{4IhTpYcjNDH79w+}T`Rh?RcgSFm}3Am4=4nLS`5hH#T6p&`185FC)V`JXD za{v~Y_;`Lmwn50CrYn_)b8-5G>+#pxZchs!5%_;~R+%xI_C@ge` zgkJ)4v`}vt-t%-x8&ZDr$cVB-kh5nJLvVS6TmeO9x;OTD$^(!=;t_PqW(E*t@Tj3= z$TtG|xTn9V}4b@p)ia>5lH%eyx~nLk5%bbaF^A0w z|F36HxEp4yD=&D`eowlcisX6VmgzOWv?6ytT%oQ_1f$vh+UO@7IT@95=ly7;?d{Xm z0zN2N4;&O3h-d2j4!uKygjPp5(jCSBQ^H(kirwN&UR5>f(vfhVQB|$I%L?4lsVA;i z1yi=KyF%b8Ed1%HygZPEM=r?!=!(1TUc|3oiO_sFSeNvAH+@VKm&-b{~dX>Bbe($RL7)}PCGDjpH` zh8?LR5x{UIQJ0QA=YV1s5;|3LrOvLBpKGFarPMSu$SNxjZxeWT&H&9P-=R zE>7H{?nZ863@7=MnJID(v9`9s?8wYpGD2)uJ&_u?RjO9Vh z=j`PtrvzTj_k*S@J#c2r)ueg}%|w^1w(Z@?R{n&6Mab{^u*7X?>w6EfMg<*lq&TRD z029{Mj(1R)VgeMxLo-T@_Wf_&?xl$wTa2{-rn9PpF3%(3f$j`5v<9; z@{lFsudNNU>u70fbDv*ScK3LpGgEUau#|7{_N}1BlMCa=z05B)-vwun;uLh^hq+(< z78dhK7d3>FLD8x7Eqlk4)^= zRG4Snreg$6Et@~EvmYE#faz+4nfYDeJ8+C`EOr5WfB2D&o*sqE>Gy#HIFfVhEVCE{ z-=wFnr%T24<*9Qh;^SLdT8{YqxCAX$xeGtS892rd+i*_J&u8x(tpH;@FnwM58M#l| zVRP%QOrV{TeRUhcRo06*N}VYWGL(D`)>MrPSwTeAQB`vUG#4?T9%$+w$TZwLAbdq)6I2I>w9a)Z;?sL_98zG1$^$yBDDY^D{pm z7co67zuE5@PH=Lch{)##0V4XF5~}L~0X|7yPL9jc^i=X0*a zyrS5xBrja=9(q2`Ws~{609xjxc05Y^{iAf@nf=E{+q3Amm!wmAGlRhO7fnbAPY4i^ ze(hgX=OePR=kZNUBCa7UkdeGDCojQAZ~IzRwL(0i3mC!-EQU(ktz~e)9mz!i@P9NQdWhjEtYAPy+Ct>)~f7;91R{BS)CPXiZ+}vWx@8~U`I|- zG3}1UL@6I+viUbp$jw&KlHcwu$#V3@;(;qhi|@`AbkB4tNFxR~;#wiq(x918y025L z;;}wC4=EHj3$M$;URBxegva$)ube3tr~w1(5e_Dx;JFOf$^qw}hMxvk&$6mRqgN-0 zawv@y@X%3ExM%lTUEO7|3-xumU>+ZeRg}g0U$(2Ot33iMvC4={%==2?One{>;&r)* z|*(#JyYh_V*T0Rrl)i zCp?}$8@6U2Y1?wFhC)E-Bn1wpQi1B&H$4xITyl0A9Aan^+FrEIx!w7E58H&Zmk-7i>2p0y~v*scZJ8l{TZ(OK>L!|~jFutfdv`Yn&s zqiqVdTNh9;;IPQH9}a~enT%{|#|j&k!(ykljE07U8xX2cA-hAZ_(0>ihK}CYsQ5f~ zxjP`{W${rE!Rn**9gt64R0lVs$gQT7aw_v$9Cvtb;SbAmbZzaaoASsY;@%8t zE10`eVJhjJl57U}V$=3;$+SZ#$^##PLqg#Z`1RdfTAAx1Txly{f-=%PITR1Y=EKwq z+34xl0k4iv$>XrWTk;~Kf9$8pZoRn^ua=x#aM|G?IhbNyk9?6_20L?*Ee*>yz7Z1o zQ*88<l9$MO4MAX6j)x&RRd8r$pg?`u&!e-}VR8 z+6S85PEqy_0?ImKFj;1Qby#)`C?mNU1YDX%-KK-tsjGFyEp{1!BrwcHhO9BH@bbvS z@s^>|sMJ?25e>eq+(I=+CJP{UA3dsocJ)we)YR>A?vLHk(7?Sz^u*hwL1nh1?|W06 zeR@;OH0M$NU%#fZ|3t-=WuWC}+E%ap~8lOtuNmBrl%ScGy*g0Fyek^DqT#~d0?L&eMho0GiS?^&^Dcx zz3bK&3!BuQQf`<lEo;{Y>-wMbM&VP#p#p|K1?%{78676Z$_^Yi!?%I zK$*78^m|y?L}AU7>@WWQIT@H3i0KH0%~dFahTMPnaG=ye9flMYGQ~+1{J^XD@}*(#Mv$8LOSpRh8Ta2-LeS>D!?joZ?q$ul@N7Qv& zh$~@w2O)1uc(jG#X<*#ncKn;(P~68)S3TO4--RX`jNn*&6``(sURjciF^NsetMSwE z%hBHc#4V4bEgiSK+)RtjoZ-xp5a~E>KKF5z?5R+wwcUEah<>d)E2s~S>QN}xtnf3c z*FLUOSOi=o4mL!Ug0Vy#RNG0n=< zqWC@HJ3gj?ctU??@v>ENAmfLuh1)1_6~qc+(rXmSxw+$Y9s;I3j~*rF=R@rFI*bQ^ zrM(ZwnTeZ1zn-5TZR>gW$Ec}e8xQA`l$;-axT+Y-VAC4h$YNM7GX~J+_i-#`MHk{& z!dhDH^(VoH*cuED{prE)ex)rU(t3?y{EDu^F20x|bb8pGQ`m+#MNFu~MnC+?sx2aNz%b!J0EiIgidpK~2qhGkzj@5S;<#@L~$7A#45m zN2VmInT%*;UN^}5)`G)YPtu?F;u%ToP)63Mvak8WYS0nSCeJFrGUl)eo4A5O_Nh`{ zKqCszpvZKe(6swI1xg`}U*UlV7M7hUNJm`ch>us!w7|o=q`N9Ib<^k; zkAiq5ankAuC8Z@&WBUrU>SPE$e|(%#xQdVg?ZUg1P}--8%eD;rK*r;Hnnp;=0Rkw@ zYae&80j4Z%0y-EHKGS;vq9HJyt&FU77V7l!uuH)@_c*oq4J7u=^oJ4cacpC3ISMvh z(6ocqIdG2&)Hiy>#1AFV6S^PVybjnWXa*jv9p{)S-=YDg{!!&Vk(fgZ0bAQe%ZxB6 zU+R6ZK~MyB&bTERb8~a;9DeuS!LYtQm;+pZDkyGeg#s+9&bn|d z_$OO!GHfb_ozXDvLq?g^_2|dm-fh#7901WE*>d9IGUTXXyh6F@VDt|5a^A@v?tU>; zzE@9sddMa{o@IRTINRnaiG#Ot%*vm@mOJCF>gZ@P-myT@+uyE~A(sG$P4||uGFSdO zzXA$wTjM&nF{Kp-?^iGBG%IsEzCe$WgoI?&{62Xq1a9#9m+KBY!>}7tZhg!Wx0Ssp z03$Jd8P3z}FVNODb?J;QdAGgIth;@Db`puYhe*`%O>avacylOq*{(w_Ug>$ev%5=} zp2&awqplfmkHMFIDdP0eo(4D~H@w?N* zW!Tr6lNdWl9EuQOvC5C3+>v^|1R#Vy9%*6$Lp?o7i_@c{K!>yLpTUqO4d*-ilL{#> z!8kE!nPzS2I0Y1dX!K+)N*>JmI5w7shUpWSr!ev?RKT{e|C65+6uzDJOaE>=;u~yv zfU%^?=G1TyRb^#_B(GAq{b+Jg8h2nd0pz`qu%Ac7><1ZaAl(P=L`F*o;$73 zj;B)_n}O&g-)6zDwZF^q==as9DKAeBh;S5-1uxgGi-T4F@}Q#|pTp!?+k(q=#L@Bm z{P`l9Sll(l(v@pl;;@eb_7}SAgQn!?J;2&f%F_yoP=2=;79PI9`8&&1J<9ZE5DCxZ z*lBiT2hb-tbiLf7h6Kpx+J{jbiFNMhY7542oEl^J+>D98hm9@mBc_HbseroO<3$sO z2MnQZIgfS@CaPY1@=+Q&fk?Y*DWEw?_?7#}$ulpg2NF8OP3%B6^Vsy<#mPzefP&NJ zAeU-^nBAPJgj98XdC7Qq-GK-pctz*_BTq_E&_qf~D!LL95R?MA$yW&3>Kv&Rad)0y%UNU=NQ<~Vs4p#Ps;nF_3|z#`)Qsl2JB7Of^G7W*Fv zEY$7tHS2J}QZ@7C^x)hg(W)oq)uAVc6^+IW8ztqCPR9t^)svuyI>Uv+mt$GbKYb4k zokN}Mr-?^+a2`tp6i`7*f9w|qDO&(3TlTANU~@$8ynk;pRaXZT1qe<6T$P<$-)ePB z+!+PP1&wNj!Dkx+_*hu`2IAs|WH5mSw;u&+u6(WHgA+C@8qd+6+tLsm!pn%BONT%x z+|~qk<%2BbqNv*u%K(+hz3aN^;o z>pYM2N<;y42cdwte7yQgrAyB;YYD8U(Cpjz@D0Qb2x1ezdazc;ooAL##8|JWoJ;aLxTqgYYue*_7^V75PEzaS4RHtKxhMa;j0t;GDVL2mpS z>l|J1%^Q<0Vr6*I;A42S7_w5ra$th8KvoZo#7niNf2@7+jvWT8J-z$Q;R2__mBHdd zGq}#doZWBHTqu3MnR*Ikid$7AmbyutY(`=y?Xlad@j+{CPNXY9E{aRLK-6Ed@}1S}f` z6ID%L-(}KyjJ*(s1M-6Fy(5&x@hKyDtS%s%%GT0hf&>mSf#=Y~ghqH)$TNPA3)hpq zC^%HYr21=Xma8jl=;^BFlD-XM6M-&L3}ruE?1p_X#93&v2f)$I2c-?y;V->_KvF=O{07JhKnhbsukH&j`SpkJ?5xrR$jEO8xyhGqr%_CpMx(PE?ZDU<_H zzB-wQhx+7{<~1c`{C-@MqZP0VR6Lv_#8)R<1Is5~u62RaBZfL}BP`@ol0{Yr_1^nwCy1&xly zZ70|G54G;%!opro z8X8)b`OqT6teT;Z=BTqhW)2gC>7aqD=68H{foJ{rv7DkvT5(0i_wT*XwPqG z$^aqNDDuuge?P5FCgfqlKDTi(uYsJ-TSNr#LolgFUS8Q{Yg&h7GTgOBr=z30+R*vf zSvdP4!uVf<%Y3xxsjYL`rY01-HtpArVBtWq|L|xVulE8{%zjMOLS20FIlqWum_w6! zel-^ZQfMTUx7@WzOP*1KR_y)EpGM|wd~$sxs}Zn+9IU1Wm;Bnnxo}Z2NId~LY+LiKN7D~b@lTP4{ii~tz$aOh6+=NEIcDeP7F?$Q6jz~qFcxPw& za*d6Hbsn+Jz1`gmcBqt3xY(lH>YeTEN%KCpWrAf0u*)?p-@cW3{Tg$hv!|g!|9Hm$y2o7e4u)stg>_ac z0-zwXYZD}j0VhgKObk|03D(V*^Iwg$iCYKH$#?TRJ@iy0gDDYHYsQ; zB+f~(NO@nYiLLlWC=31~%3kL*3d{j@3!wGEZ**7aWPiPV#yY;v@!jbGN%lA}YxdWm zMBh!C%$EjrdcCD@%}Wjox}V)poCS;&4qGT zJiB7zEtE%klf24bfqQ`fN&9&%yG^ysQVSYi@ygZ2%|Un}=7;$cpUg2VCw~@dd#nPx zSID>Kyafu85Q4>2J|-j6hW}^^qbr@YX>JRxdH+Oxc}yNVM+T3UdWv|d6+<3rKp%_V|G@2;yzT913nX7ot~MYHa+h* zX6?QB_6>)TaT7TQW1P!%8?!I9cJXX5Q9^#K%wn+L?4KE=tE~fB<&XfA0B0yJhxdR` zHC<}^p!TxT1DZ=*p}qZmu#~_MfC8X}?;}e9^6BH2+r;DM>8z+C)1q5w8g;|Jk%lg_ ze9GGqqyb*v7P}Mt)j->J$=-B5-H6N0y-og7L^Y~;(dYALKhn0Qh6Wf^+t%6!jR-lH z(6F#N7^`r(BrPpBP8~LHkOORfAl|p-wbf>hbUZJ97}5QM?>LX!lD@*~2I<}2=2Z*| z3RHh@Cd`7q%}w$AxvwcLo)D;mNXI>3nhLkWhQ_D%0-5+)lB8b!+R4x_HIn;R;9Zpp zNw;NQt+t$S-fq2l^A_NEvrmUCYDd^%qS=XNVr{7oA51%a!0%3#?E0JTP&xl zDj^UXC*C)FJ!WTRrJ|y{efu^|jZJf)CJaWtzrRJmhSY(!uk309&JG`az-7~iwnJW9 zdJ|}@3Xhr%i`$7OD$L5fMas4V@rr1isiBxN*oQg0xFQVrwF45KD2a4PmRJ|FU<8zP z`~tXgk`pth-yH{2&B@5hf_{tKYtGsRlUyN2R87oJE!5NbABWT1Zm90-m=Z{If%e<{yaF#aHGb# ziAfHdZ~+ouIa_A1TBZt{4dEGuOC7cwCcDM=NjtWHBXZ?>Lr8Cj8DF?__8&3VF0oVT zSx!2-uYL{gDm}CUbx=4dmq=KcpI=|&RfOv{XzJ+eTv|DCdHhi6e`o=AgQoEB-Gk;C zC1n8IYI*8ycf?!T+gaGNIIEA3m|{D1CF5C_J4TC>?Ox3*FrbEpgg|n< z3XM5FUS238w;8?8=!bH2u)G{8f4P;p`AbZv<36MP=n|lcCEb-Ngcxbyi#9ppIR^(B zPt(jV2otuq$;rtN$#|{f_|)a)S>S}Bp!l@HDGnodgmj#pop%>1=WP<32v>|(WyoSy zmA;`T%EDw22v~50V9TW;;-g0QZNKn;>0@G6XJ00z=YN@7`%kUV|bm7@%e9rwZP_2B|0p`@Pi z4mw!wD_D%Qv}1MJ0z$qTS@A+_Ax4~!hxKok;9KKF0ocgs~;^5({Vr;_iVkcKG7_P=H1vB|AG9CSt&WR=?W@ z`kwv$eGLtbeC^#*0!~c63pB*acmWOq*n%*O&AI-w9X1(nu;CkQ66QHL-bO}7nx*4! zLkIzbPvQP9Che(%(FXnLRSJ>95H&(l=8J1Tu8|Mr9vGA;LuJ0TipWF+HQ&Oc9i_%|;Yevdc$~&Ar`mg+`+V+?bcD40RSkwi za121R?Xed;$;_r>i25zm%OKeM15)FoP}nC22`PRr?q+aH6EW-mNSQr4SPwfmD{*Q4 zE7A-OMYj`);|P5DxD41Xp@(C)^W>Q(NgM%-Q5dQ>BQ-VJp_Hm-aq=94BVSvy+Ocj&n1SsM5=KOjW^BQQ+;ZK4v%NfOQJG@Z`*16F;#F5{={eY1? z9Ub5z9K6W_{rbh=G=G@8fb;O-(bBfwN*4LAZqMdfknar?J&*}-1NQA^?Kz~05Jf>P zpwrGy{j14jQqA%*i&1++E7S%cofh#HfhCfDawjYaRQG?GHDA2=UBBy>Y4*zG)dg4E z+vkAdM~6q}*7t?1)W^rD#MEVXA#WgbU}J(F6d&&^#$oMWTogdti+UwUp-f+Q(@@2- zb(rW+JLUuC(IRcD;Wwoa-gkAuqLhc5AH1){hMkqs^Tkg6q67p7eFp6wk#f=nBF%v$ z?Q1a2widJ#k;R}twK+YATOF=;bJH#{AADbbVmCogZ`2X1Xn5BfdS-Y+&{R6tuA3}# z2&!M|O}>%Xa0IjeLMr0sm0a+Lo1xX?dt5C!wy6>H`F~16lIdTra?f zK)Y59uh(-hO=SD|K@Gf3>yb=QI1~jI+&9jkq{b5y0|hkNy6FC$lREcx)Je%w%7+hV zgM2k=Q3|*CyxLY&1yTHbjEdZ&2?Ga`SINC{HH+22ts9Hf}Cbj?hZUF=$_C|;8eD51 z(PXDOl*>>--_7l0?fB@OUQC%W!%YN47#UpB_&2Y?a>?F$0J!PNMuW=e>=h`2h?jLy zgUlYdikDu?{o6C!j{jzQsw*j#uAq6QfBszm&+L zH0&ka33W0T2L6%p-|(JEy%v|G<(rGZ+1VSF?|n;i$EVnBYzWR%XYCp#Zma;&oaev~ zMM^|YJDweV>HFjcW}hd|o++nYz$&4~x`+5mG7I%|2Fe$pdWB*c;lGzeD9QR`3Pnuk zg;{reXsE)D)vl7bxIF6%oIx?0cy8|=;|!^|d~0_H&^Ll6Dl;c*qQVBa{AI2m!PWvr z6VQ+(KWm0X3%vCroA;Rn8!#iGAf68|H>8yNz-#vVMyPqZX^%R+^4lq{*CQ8BV z^C_Rteq4p@`nntXDwa=gQ%4n)nI;g$G$Jc(T;9KDE+JI{&-#L-y8XsDf3w{|?YW0C zUxLM0X%E3y*j11&T90rP%zTfxbn1~MW<=&BvB5hiW!gJ;?j&=?!N~{hXJo0x?olg% zSAz|-D5YW{6F>YrFTSFeqm<{!OFH;>@qIIUOT%4ic;`X`S){d3+iEfJY`xcUM>^ok;%ae>tr3d z4_lJc(bk8u2nR!@a7cw9Y3z;{sIy<^-VgjcIWgwSKUG}}BXI-#{dr)NF*s{sM^317 zOv*}P0)zL_kt6TJD~L>NEPRB54YvT|h+rH-{zhF@=wCVyPzm{hQ;PhFPkW8?KH*@m zw(N@!(PLUksx01yoni^6l+V8*W#r{k?vFo*_&4qmMX~-lvVe){^bj>spgjd@oR#G= z2+llCHzxWsx?jc(>*?y*l#iE>l#`Xt3JVJm^SJ8@qAp-UEH6JJFimGtn)fGaWLm8P zJgGO(Ug6s<^|*g---C+mWF0DT?*bU9e2&&urw4g@O}^?PDyiya`Cd4nodA_X8?hP` zI-nE{AsU4!l2PlY@yC=DC_Y_l-iFwP$9{ub!}K>8dN+dz*PmN$XuN9PhQt8!CiPNF zFzbn)xI=Xv#OouRG4Ri_VQc=~8+sSYMVt3P4*{^4JKHi4gm*BD~(3F2w zkPZ0u?Y0c_Var)`wCWi2)s$i&4(;jr1yUJ)2L9(%R4coSA6E)qBkHo@SaDbz-``1- z)>FO)s+Q1*!-OyUrUHd*|12&~V|Imf}7CFD<^PEgHX+=ep@D*M1IID)Kn z`Wuc`ja|kEN*Wk4JkSdT*cGLyH;-1HAbt@cjCG+<3m;EjxmBYj4)b67cED3f^Is}P zzWDb?{;PJ&|Ns8Vx278i(B`YzuMSa(T)liUubB-~LXkC9X);uMyN6bxeGuiti*~;f z%EXu7{?_DlRi+F^BL!BFq?PXO>?ZTSI=2~E2X#tGhdtn>q3E^P6_XGZrTSnH@-=vg zUF(Dpf=(A_POn?k@A$CjdQE`!ghx7t0SD7GWTtFxZp(KI^f;9{6!6muU!^kITUuZc z9A&XP(KGN{fVxXSpze>o&?m)NAGYryicD;zrurkwQT@qUIp5<6hzQPES^p|oP9E;O zdb+hJx39*giRFL?l?3QVWmzQ2sGQ)$bmqJ9@H~FJGkJarQ&|%@I!9FjWDgjZ|7V%* zJ5FDf17pS)Jed9mbq{P3{+;7pBca#Fq3Gx*An1hYIT=z>ytX4fH}GPiyANgLiNFh+ zl|2)%PuygIdc5Zf7|6iSpuxbw!V=QGIBceR8~szKA$0cA($m9D2HEu48irp=DH$wz zPK5*u@E(jtM8(Mz3{F!mJuF?~xBazQMtZJAiTl#Joz9PjHv%CTW#2D-XMuE#}NTfT8s_U)~$=e0U~0irBS zOi*-lg1i}yCKz!I15-eUsTe62x(gmp0KFL5*a*E=zI98e1u80krQzN7%ntefedaw( zFRZ}osh-_EhEFsYlto3;adXIPDbt&T;o7fxI}bTP0v{X|hjVWwDv}sEsqYvi9DHn( zrJEQ16W#eLXpu=s&eMQKB0)_JEi1wR(VA-yS(=iHE1ayYF(caZ3~(Xlg%7W9(18Kk z(fbMwBBIsYj$D8q+_?4;EDM@E4p3bwEi7c9p+nZ{89_W8v1Gj4wE!c^|AZ#T*8lkf zNyn;g?>v-_z&Z0uL{?DsdY?pTogfRDs<9YzsY;jip4)hAQ zZ{OV6+RAmifMI9bySp)5df@&`Jh_sUok>MSH$QRJrmewCb}uUtSw?hR9XkQ$~6g zo}{z4SO4clp_9CRH(LLxQ8%ms;RO*+jSFhBe^)F{KOQFm@{YN*zcp`vpMfF(GNs4= za&WyyKShO2CU6JD$4^!iJDnb^XUSqfEf=iVwJwKR-qb#~3Fz9+8rvf%L`MS1IKo>) zowxr!B~Se$zcP0zQG>ly`cwYZNB3@aS62CWyQT7f_I9g=`QTA#zf1NYZrS^~$D~J` zX@PGL2E%hee-DKU*Xhl3uoBJGzv`n~R-{!{QO8!P(1jpKcz0)qMnaW)3<_)MX=wq( zT#sqExxorr)Umqt-ycp`So*41BLejAlwPrR4h3V-2TcWwBC=!^tZZs3wl^>xi_H$T z0|RHxG423Zd!*Lw6_}+A4Huvj5(goafYk;RsvOoQI~RAS>agh(iX^%i-CRWjAI|Ld z`JAYP$s^p|Z?kJoi3*R&i73T2GR_%^&Wlc+hhH!)3VbnsSr(BkB^_o+uTLQN^P_}T z+gQhv`WJ5kUM4QHNE>cOb4_>D;g&fn4>#?wB~z@7Fh8#^pFmtT+qYf(^c#sCA2nl| zOsFSy{X@rw>OXRp(l;J?86V1Qu;v&Tux(G_UYrX{Ma8Lww;ATsUw56!3D8m1-Vr0~ z+sNuONl)^8=2$`gRU7t#s+7p~Ctkdo2Mmm9Kf2lFo$|zdeBCMz*JqD8w~yhiVf`wq zf+0wCFWyez*}a>q+4~8hp{%wesOCHuXDwViTIYZ1m2_Jw!2TPdh}5=5m(bVVKGxo@ zzSrBi9vL&nw4H%qeX@Ifm(T8te;ts(zd`P;Dso-p!&kqb9|ArHrWI{A z1v#~PhZ!)Wv?UkOFI+s6qUxZ#Aagk+Ayq8AKs%e5lw%*Y?Yn^!+~cB5eG^km+3(6t znzyH;`NR3jYlqoXREoGVsSb2|G*44;UT@Z{Sq87KpIwYR6oyvQsAkdWIWPZWR2&P> zE+tj`VJsI5mVmRUFGh7=0OJhv{U-AtzSY;sDO|5&IBFm9N=C^ZR))1G3%Yv ztIyRxOOE}N)_JXdq3DEey(7Z9_~3yN2^E`3#}#T0Lraxu#HN=2W9jN>a|_CY8NBbj znszfGKPgYCYZ9qy5{(s1+^*?lve6XBXqC;Z1RYQIlE&)<`);FgVTk30G1>e%+Nef8 zwiue!ecVU;wOLy#A0@UntD|#xj31XLcFa^DYbDt<Ox0jh9pbrUjAKXL+@C1t>dFoH z<+QCGj9QHYX#DwPcK!qJrUVWP;Mx1^x6mCl>FC2xQc^wX3GS9G>}SUn4B$9wR&~z^ z{QcIm^Ocm>%&RLaYcJaB{nk%B>t#K+Dm&gq>89V+UJcj)6~`VnptW^57v-R_`!F%t zUn@jK%g{Pw&Q{~f<-H%A$z;HD%u=YSL1>mI_1Vpqq<_dWsQ>4VNwwd!qa58YhYhO2 z11n4Kscwx3ViTK6dZ*JG3{XI=gjlcDtfn}Bb=VfqhY09u>8R8|E!1Xo30+cOS=&1} ze+h+;^F^{VZ#CbQx`;C;{G(eXxdnqoU%v0IN-MW~El-+n(Ysg6RkYO{*U8w)zH&c- zD_HuiL4db}W`f!4(i2bgx>`PH8zRCcA`9q$p<2 zOwWMEBMJV9^Gwy_iHQl0?>ZZUFP=3vo=^@A4f*|Po|ys4ib)?}qA(m;m=jlQPnj}( zQc}{1#pKM}rJE%>|EfyOm!JF}5Qj%N#=yVaajmSrnAAP?p>X@O_~Y4E?(Hh1qjBjZ zE{)8Lpyjsv*-UI`Xp?TCXdsCMOe~13bOsEIh=_fe<~6Qt9|eC7I)tr58odFCbiJ?) zH6+O}ovOlucy;N55kCSWE`d)>d-mydsrh@Jdd+xxg6w(y7ruQ#M0;!aD{ViCMbfh7 zohoIo`|yjQQmNwA3xYCrG)(&8OxO`L3Y*qRaik7rVH;Y|LgC5B@ z4@sa$4+zXw5LeGv%1z(GT8*;4+;_e_32o~Mt~fSunZ9C%cJhAA>o(t-6L-V1?4x<^ z_i`n@X0`Y!#F$$kp+M5}_Z@)apo>QrfZwySf?p>f01FQZ(eW4mhT7LX%__Ul zY$4+ilx0I-8pv`1=jXGcR;#d%>- zB-RI;kWdUZF~J=Yf^E&enB(8{Hf%cr0`}g7&k*&;v0a;I!h~}a@rTEgj}p>m&J?Un zRqoGEOa#LJbO)Tv{OXUj%01rO!snRWTU^`7T5Kzy;(y*!cqGg%oJaLWJA*xa=ViA* z|8x(2h~yhsZNhhb+bu=Xqn!m}mcg~Abd#9FD)fUvadhm;d*2bY;}KoiW&~V+c=c2I zTA2nJe5zdc!R?5nxj*XoVrvzfWst_hKv6^(SK@*HTaC24xUy}#x?8N@45_UCkXQ2c z(v0f;iJfV!6PEI3v`|w^f6mf!tWNf9e;z*}pO!~sq-_?Gs0r}2zLbo?{{9x>5asBe z)wgI^k4d-+K??`Uq!Qc^(aQ9BG7$Jn2L743IYBo1lHWxiU*e5s$?sZPhJ?h4 z2m>1%;P0$7HVzHVy^P1-pRtmL46BMHYB|cBNsES2Q)L7zDly==OhUa}1d&A%a80*` z3k1p6#!tt827D;>-c#2Jltk>kW-x9})JRogAR=pD{5sA9tlq z*b{$%7;Bj`nl*H3xVt(jYUEe$o5ZyK`QfcosCvvvKNt5N7J_>RgLY{GE05CSa4_02 z|CQ}9G&-@bC?huPLEg{jJKMXn5-qC*Jua-W#eVl=-!0)EmP~f@x3+7&7r0tZJ?fHE zc%fRDUoa*YVsD|`V!MPRdz>?W=+t_k6pG1Ig@?3Ht807de+rMj?(<;l#842iu^*_+ zV%D! zx_$ux4<0`%O+$0=Z=q#9!^0L4n;Bz2q`-`g4Y3{UMNtOy#lm-tSm>CiAsvA59~K&_ zwx2o*x+IQ{wqac>x5%OVbR1drV6NDp@g(5zyq+=6H|iBt-C5--4+iwyx#~obv-yet z%x@ZqI<_yoTXZ#FW+)<>);}b(S61tauP1|}(h)}`>e?iOHuZFViO^FE$MYf^L$|O> z>d|f~*CByBuF6Yii`|Qr%xKs5Y^gl{AtC7_npe;n-6AKEN>@>FIGk=-*>ON|H6uT# zdoX;9;eOh25p~e5)yj)s2!cF4;S(b2XvA!dRVepV@dVWD5 zP}J~9MK2gaxC&lI9I<9GvHIh~J%E zZ6vRSw@^qX6dL>l8$0^gp0M4UhEC;iJhgo4Fo|g(nSdCMQ&%rBYlP+x+z?msrC7HG zy=!mHs~9)?gA0P5T5PAIDnT4!SQZWgc54sT(gRf_;q%zO&1*X<-}c^Vr5y40Y$=FC z>xxZ#u%{Os)aEVNkm(YJ#oWAf{>`f}7;JfEb?X=bY?uUs2?+=cnTY^jV~4;mqE)xE zla~R{sp7qx%_Bwmz6iXZSlb8~ZjeXC4w z96w-=gBrpl{JA!kQ)RZJ(peE*=Q%#{W2K+6`dL3C8MKmfS(KIft>pWDT4i91SGMR9 zE2Q~^Z76v2xR(mecQ|6kwwhL)>Y#JNgr`V}GFLg_|HQ*GFnw)j>_;ODNqllji1mIsjtnR_6JC&mw zdlC>$zBwzA^5=uWE~BLe7Nq~-v!rKMH3wFH%7CQZLvRF`tUF|HR9!^v?AWkDp#)pj zRCV(DEcg~8Z(clsB7-_q6x41X`v$f#(Y_;Cbqxe20Df-$1aT&K9(+Pr2l7@+jcVY~ zs8R9ZZ1teHD^m3l@Lfyq`&C(aSg=DWH_g8fEM&eeJQ%-&9OFedpp)!n1NujNJb`AeE-xu|1WusK8j?Ari9$UbJKh^Lnw~2e6gkG8S1QzMe+DK3C z3oWab`h2!yO~K^0@O^iOuA%#FlsarC3&dM^yBT2>#^#kyq z($KJ|zW2uJy=-Qvyd_7oj*JHC8r%tjQr{g=JiDmtE$#k-6QQV$(A+3 z@`JQOQeTY~SLXbY_^d&>tIwevR3DiVHD=M-bv8eHq#~2|!`8z&3(VNEdX%JaPF-g* znI@?z&7YxYnwh~r;g(`(U4ZlyUCsMc#+e&iPVis6kAHb;-)s$G`nIWD7ngsywK1_@JC$WtYBc-KF9z?W|G^XS z3m)$z`XnA#&q7V-=A5MMw+8I@CP7vjkBt+LmR}~WcBrIqnly-zg22Vo+2TDeRo5gw zqg>Z~)8q>qRS%Jmb1z8YSxaaa5+)X0rqF`Eo16WeeJb5-;8B}Gz#8VJM{AJ7t}*p% z?sB6Sq}}0~;hbc@ouO9oCv5@a<$jJ)7nZ-$>Oetz9`Y0QE;&XTsE2b=5+;~_dG)3T z>-(!Wj|I!R@SfJ({VTdOFZ|=SWCnp$JfXV%XI`5+EV{XHE1QK3vt8e`M!5dExk7=; z#-MIE`M?I1A51vuM_1_% z$qL|~qz{>ts`{t;?Z|Hvv{^h4fgAAurm^=U+F*EGYC>dV;33-Eu{`WXg^t*zOb+2_H!p}B=*h0AT!-@=ix%x zKRVh02;=K^phpJqklf4^>Bp^yJB2fsQx+BBTZCGOGmNQ|;J=*}bzcS?2$~Ga;n^7_ ztBc)r`R_FVdLf;`c=_~^|Sn(oDFo5f}HOantOgS)3Qptn!OT-ELO81kDkPhs3#Wo|X*!J&#YEpOjGnTN@N{nLjmn zZH>usT21J(MAOn`S4@w#hebx-OzqWk=AdI?X%#I;XY|HpXJ>=nA>iPnKwW^-@mA&- z?>&1Ux)!y>lcDmK4d6b+k2)ND?Ir(2L$njvk zS(NpG=ewy*opF!t3D;ARy{vPOI%w*oGnRwajhaO`G# z9*yiM6n>}m{)?lv+?DBRK4^@9`(#O`TqU2Sgv2XsYcBfVDF z`@p$|<0^+-Qv1z19h2L^uCIT4;Dyn|&CDf-lj}tta+HTLitgw%;cR(7dyElt-4V;T z*-wUVXAO6GXN3+&f>DdR!_XFPyx%a;gZXz^aU_hTfq;h&n3zJLAS{cCaXA=V0gN3) zF$xNbwRIurn1SL6=upYO#LJb2e1GWAs1=ltB*Mln)V{eoA?4VfEam0nb88*bDs7ip zGEb9HIlc_p*}E|s*iW*zLJg0=rwxyIyBmRn{W_pD&1gDteD`_@SNalh7jxS)AGT@Q_AO?aLF>m?Izr zBk=cb)xAL6#TiKaob0%(xwW&x={j1B<97+Be?-?xFv&q;ax+LsAYQzBM~)Co|1OsDK=m>*{*gIGn}8269FIfqSW`f$N&;L(oNTcU-h7>OhOJRYyi4c1deY1+cvUf=I+QFneU3))$<|Tk z{rjmxcVFpz8fel7E{n-w%bBW7Q!~(@{`JdkWZ*OCH8jk?K>$#CLIju^7Z>+n0jkLz zy}gQ=@-X=iA3*2f4|Bk~+)nV9Y<8F=hzFV-y_0tAcuq1FPU9y_PTR2_eJ?T}uI$h+ zk?rdNrofoQoKUE4@2?5=(o&#r`Rw&T3>M$bc};@ntP3z*22xJo1y*N2BO2FXs=45#3N^1mz6@SCA@5Sb zDanFU3QtG~&PF;YeFz_^Rhvs}V6F~y+HInY^|%;xxUN=3O_Zkvx{2+Ewy3CAx#$gG z=>St7D4pqZ#M;`}0OMhs(`jx1F#v1FV^WX)4ZC-#gFQVAPoF;J<(+!=8Vt}I*Fq6g z?J+Rs&+639;s=Zi`jl03T~=bscUU940AQe)dIXj-VjA%-H7aU&3RrN-o0h7YxqEoj z0nwYi|`Q&j=L?z770dR~r`-PT%SD%D9UzT4!Q8+9bE}=6*BCh}V#qG>; zvq7=nZ!#U{a(lrRMPVdT&F|u1^wuA|z^(tJ^cHoVHt5&5U$*U9;%J5lRQ6gdL_9?? zTe$_tpH%VT2#NjC_4(!8J{&0Vkr`PN{P&|~Qvp1OjO*e*l|=c1*~XrJ3pVjGYr=a9jtvkbxPOD_ z{||$_|7*1V|H~IGOxiMsh!2;(CqzO#wY0RLv`pYdC-YurY{Tvp1I%6UcpFSGp{&o< z&!wPI;yt*lVB=g`6a#lT+hsU99W`bHEcEx{k|k>YMvJivv_*ctPHqpNh>J?_1QzB% z4g`S!L=_-f#&`IKp3|`$fX>Egeolb^Qmx){rYpb31>lp#+W+o`{qfr&5MY7g-n~8$ zwX_6;P8*pqume5kQ3zt~!NU(Q$N&a3QA`=fr6VjWYYhM#bO+g00lTS(Kii!%SwO$R3W^sOg!fsC>G@=7cmE!m>Wf`No zn7i}qEyL*W^`&8-huwOA658n=DRW}|iJIU|!NOOp*?R8P7ScHhc%c7?F*~LERmU#B>#Y0U zHP9tg-I_2z1u7OGsxz4?%k2|9%K>nH`>Vev>Y#meH_aHUcB1UiPlm4wZ_#=qB4V?fCE2ge4tUH)Xq7Im7`D16m9R}XiB<$|y)*H_~ zRUiZ)wED9}%gf6?5o7rpxc)8R3(W!VOND+E(5rjn`QO8az-r5F+Xhat?sE6C@hcjW z=CMBM(russDR>oIe`kJUBU7F>R}Sg-l1b1L5IEy_#j@l#0oL`oSg`8WiHken+|}26 zW}~T=tapg`$5Z_d9Sj8us(S128to51)QrVth-3BkU zVrNwCLgvRtr%1$BSxU-sLjwf53782Wa=Pu>u=6v=NRnZukKEZAuRH>DMQDie?ym_- z&l0zdA|tDj!|mweW*^MQ`)7M&`Bt4Hcn0?N&Be8@C-0=|OhIO?$bwPqi3E2T>l}dy zB4%{~J0}^Y5um&Zup~e{kpMJ}jqTeEkl4GsySX>me^1K1XBFM6NR^ljr(3s>$Orr3 z-C+LHalbH{o2w(ZeQP`#jkKMkV}52PAU%WW2S8Z46ylmM%B9%=5~}@juXe21DEO+z z4GPR7U?8+rm^;jWL?}spE0(OMr#ogf-k*^GlsT`!C5uMn*B#mb=8zAiM@~k@`Nf(R zXsQ?5>QiBN;2-|_H4XT+%D9l?i5$gjwd?19&u=`Y2iNQPIH1lQVYh)35g(s4v^6tL z1)^XejswJPpNj>2pp6)P!BTC%)wX2A%EAJkf^tiZJxWgLr+5Ki7lMO;8U(5KJTpMr z5N&cg8{K(TD%8oG6{@0en9=T4y=SD2Y(mw@xO)IQM~{%Zr!Hy10aVC z(zU44G>_-ZP{1<*`3DfnE-~Dx0(uEk_M-v-6IX{g^xPWF&&TT6?BSd%_}SAXh!_{p zc|&JhN^*%Ik6f*a_}|J2F{Eix(V6K7l16@IGk42b+LvK>EZ*J6$ z2Jpdg+^Yp<3LwcXn;Jo0FSP|yxC87NpY@`CvK;cF&-c_1?89K&dA5CUx54z!eB%;L zz}k@$Ml&F26>yVLMtAc(_XIWv=$w`{268}rcj>TVYcx;LWAWR}eecsRG`F9g=P?JL z_CSYVOHhU0Tq8v6{T2(j!MaHd_(6c_V9ygbqw5uf`M1Oasx2UOEFu4|08}Op8MoN` zSM%X{`2S86keB@THb4p}zdGiKtm`dE5XHANMKJTB7djz-83vfgeaTfScsxSicIcQY z^1-7~7Nwl`-&fCfW6Ty-NuLqbE(HwcQTO%cZc#buIk~p4FpJ+_Dx?9OxTebNx1mW> zn_A1w;%>fX#i6?5!M9PH?mrqJRq zMMqbM@8vz|5|T!v;_m$&JjnWZx3G%EG>-i+z0aN~tR@Rjc46;o@DY962giGT%q_a5 zncJ{`fzKPU)`EMb)-oe)0yinxsDe|zj$xlm|-BK=<-&W_ooUg&!xWlV}JtVJQET1%}tw*%^P z6JM_PH5vE6G9J0lK(ehplGDEN3r#qNB9xHPgvEdr|-0hG~1r#l)CdCX?T3 zDood{6V)Qzt`pSuGaEizHj~BMc>hMCL8FEKFn8mkrfNzZ3N04;<@n*(3Efnpjh%Y$ zo&OGmPfw-;hF@V@*M}}Ab}QkARW09G*TUnHGVZ~@JM@Xqet9^iE@YYy_mypZo#qFdv_?d1w}zb^6pRp0Jo0J{NSRnLXaxn&73$Go0|z;ip)>&dmQql2 zUEg0=Ud|4}1j35*k@V^k7Qv~d{E<&UKQ**FH#8^LL1T>a668)|3kwTLBbx$OpPZ8s z=(ug97(Q5n>J&soTvoHczI+i*{kV|`3@#us$(yIjQhjR-P-1NKhr!k9c?Mf}_G?62 zIkDA6+w|k0q6*m!kl%DZir`P^+nY#kzqv*`c5w$J=9R7kpakmpH$f^-3HtSsW#yYq z|0O|4K(_diz)8(oMBg}1>zvZm@Oq*(&0d?tgOO1 z*aQvY^0BsVhyLuS%T}pVg!;`H+LmK&?g>4?YYaJsRO8KR`yDI9E_u)v>|b^HGXaCk z$JL$d>rM8D-oNklG^U!|?g1^+=XLex4r4=@&%!$5J$EO{=bSkk=8z#`hVB<5W21^rgM5&wWJv7G`eYtu`ss^hJ=2T%PU#e~g?ZPc+%`JYjdIL?w5C?|N7lC^D`qLv|e+8yi1={ybXLs#{2~{LovT7HGDO1_P8A5Dh8c z11%Q_ z44Tyr7S7y^>JZD0uJ=5K$Lo|H)5gq1)RIIAZYQ+Z#27x=uU>)LEnwVhX=`gEJ+2kq zj&hTq0}XV-)HBjVB1C4#^Dppk-eNO(xdvM#l1Y`Md8-<{Xa&xw{h4w!Km>SjuxK?_ z#Y*3X`xj!QXHQ&Nc^y}V51SNMPlq1Jo&%n#C;>_@E%!y1JT1UQqX&1@#)K9*?g^M( zgZT-z^3yg_q++&w_1SjgHy#k?3bJac&LA12hS{Kt8Q=ME>KBz>jK-N&#CV9&^J0S- zxWIhkW2tJbPBT_d35e@t7+nU%sMTr>Ev&5%;xGYm708ghgG%rd;UEQZ%nEcaN^7?bX!r`J+7PTxy?Nu2B+*lPAz4gg;q98Q067i+nntW?^rwzRgspwSvJ zW&>}zxGL_;qRpOlUdxSUHGDE~vK8dKaL2M$pM^(Xog#Sehc#FTc0DHNUn`vDj)_WA z=XohbZ=V1L>LRZFSpR4xIeC5efI{g(`7n>@(qkooolwX$ewSA~kMq0qF+val?QQ{$ zb{p@jq>eBJ+7YlYprfOYx;=mP+IqU85EP>rIU?ZzJOKxUL?3vbx&#rA-8zU0i>#Mq zoGYEX;x(!OFA203iX5EwYR_`697Zx^pA#}FYtP7KYIv&OZr3zA;SRExS8phpf5N#o zamvlizP(7_vW#VwcCe%1kb$U%rlq8nZiIZ-%=g?W9b4;(J35w=LI3t8Jo^=$Qf_Bg zmyD#O+j){N6jaG{^+3i87*HgDkVJ|Lj5OteRg#JdxBaFaM=UuJQN|BC0R7nHRj=21 z>*68`WV{lEzWQL1`uxpJ60wULveVAGHZ5)8a0B`GgPxK4mbq$Tb5-92{NaUMG82B| zd??C=i?IY{z?Jf|GW|`O!uu#ZLPF2O4I{ubVPv#i_;QipdAjk%TZWoOi#=AV&@V1K z69W0?5m5Nry0GvP^bl+v{rv+2{roPrn(jeCWbU#%VetC(3>_^kkeHd!&)dtb$@v8b zfGQAnA0L~G@ZFA7Zzuh6W}rsSE|2em1YA7a6)c=QWl2?yb(I0Ok#XK}rzr4%0N{FI zc4YB$R6uQGs(i1Vk^u`7lOtLZ+_-w=fv++>aK`92Ej8KLczYiU6a6tzVt6MhS+y1~ zTUS>HgyKitn%l>W8k=YmoNQ!)>rOK!?>#i!5EwM1qXz$-!Pf8Fz5Ejkwe=6(e$RJ? znjc#k4V`c_4SsKr<5Kt`4M@X1_mbYj0>UEWeEDZl9z1#!hdkE<5GEjRUA7J!stSNX z=3dRwXo4r%!lQG*P0R>YT3K7el?AEDwisn@P7XaSEs&BTK{nhW@aG0XH1KZfus2WF zr@4!)=79OZStf8|-P_M>^~WUV;WIz~z!>F-I3`wWx$XM)e^g~UPSWRthiUzf#P%=O?%nyKbzBayr`T6-3Q@XPO-!ynAP8g9cVB(FKvSR}Wx|Nlvo4pgy>n+oFouFTGTke}% z0OISbz0p8(m*Z-`88~v8<8gp9YS8FiCiv~=B#wLYqa*tfc8CfS?YUHFVPNvBJT=N8 z`ylC-vP;O_yLb6YokGN^XkXH^kysYH=)Li(S5GpY;f3rNY!1JYp;td&-v$zi?3fsL zVm`Zr14GO^>GwI#ANOCLu%2VFogbGe+L#`~ygk3$oE1N2bO~(9?y&h&Q8td&P$mN* zYSU$j^@I1+U3cA2O*O!e7_TF|J-b=S-w=)c+WYmNUFJLtgZmLKL0KP^o#f@u(Zoh# zdSd2x^{4KF+NT>(toA41H{pooyg3e&PA}g0bbAi{!UTCRN-lXqE@4Wp>1ARSt-e8^ z(ztkme{j`FN2Y*1GG|k#f;h}P?qhhd(y!{+j;b*G1`fh&ejK!c}&${$HNJ72N4Mwk5o) z7tJ>|>-ZX4dZ!QAUB7J#?=B4!RA{L!MV1XDp_D~+eLy5Z*7c<^hlum$2C?ryoxb3EP zc?Qp^GAflIX&qGRk``#s?MSTFX_YkMvte)DIc92&8!#SzELb$D_nw6c(%*QSJ9$Mi zyTCfdJj{-FrD2OXah4`q<0Q_>**sxlV=?jXAK%>Z6aQ7%b2&}7L*zw$C8TgH{8ekt zaI&D(AhbJfF=wYHCPxt?=`jTj<&BolUfZaAr!>P-#vz$U#CD5VURBCtBu@zi$YgGl zkWa4n_r||l*E730mMJpU9#hnB3$q5E2tALup3?`6kxu=IgY-$KoS+p#4T@{b zzqB}q6{{7L;tF-BSdThb@1jJCcxHbdmSxSlyqSU?L!lCFOuOh>JXgCFbYzt=gB(|C z6E5HsZkK~Mwvv|5R0Iy$4$KE zVTjSC>4qlktlw*6ZTxbM8(J>C{1>iyhc5nY28Hlv$&NW3<~1B{sLl8wdCeeL+r|%% zUwie@X(ZY{d7pncWN27p?dNTxo!N0FdHz$2U@r7V*3vaPTjYPnWnK~Fbr&tQpk|?N z5P6nqKo)l;?b?4Y@WZL6Kem(2@QcAmd*2^=nAPz&6J%8N=Is;?Lk|mkmk-1>8}lm$ ztImn@-jMPs;&P9?^v?xrBs-r7ZK3l0If0W1%U5$Cy`QU+O|<8lWbqB~2La7(4m|yF zg@0~Kc+bd;)(!cqi{qv0n4ij1IZU^)c|kac)Z3>&dg2jKTK$gxqeRZ0?a_oKrm-Dg z^G@C=_FIy-s1?=+~`&hC!I%P>|8u!0ME*Wzb-OnnX5H+Yi3$}UG1#T+Y{l6C^Nyt@WvrP>> ztl7`w+I!<_pN*c7{z0L*D|VPU6NXpwe@ANe%w%j zH^}=?L(75Uc4mWPgv}L)Vmlqu`hRW52X^iRWOE%%E4tM8Bpc&}-`J~i?mk5UWUv0r_mi~X7aM9LpTCln26 z0B{Z*s6RxxV)1*Sn&jZiva-R;bDYRb4^N`B8!wj5vRAz5AiW1G879E{(zaW&Ada=S z@QU>Oxh9K94UOmF$vZ*P-$29L-VOue*zmun9*OZP%UZ7;{0Gtr)zW{EYy8RWu(pHE z3y&Mdy=`N^?MOFDH-JOW)3WK{hJO_(c~Hw0^KqiEb$YUfbktCY*g!4nwoF6F?lL@_ z^tDaIaqIcfsgR5f|TbO-l-4RX~-liz1Nk|d zO(zV%XD;Y5xg zk}LFQI1C2l(U#f;`!{=m)zes>iUosNNem#R?t;Gu0`# zFuzRR?k_qjXcyH6MY)HmHZA))pbzyO4u45cuUo8w(G0SCz)m>c9Wev_4Fv^2SKluS zumMEi{Cdqo_o<-%{(i?f=h&XQmEf{Z3s;~=p)lt@7o>!QvFWYa0gqVV;*pY~Zed5u z$;k=)LCM=q+5f`#M3Wa`rq6zMV#d^#yN=MUs65apU-$$+grDIc}eeK zz=u6D(pg`zS?*{}P*dyllcOghvlTd{Ib5~) zjXngD?7yDf_juM|LNQ9f2$+tVHj!4AeJ7U@)hy8cI*M&!EVKiA_OKr{BRU8^;S= zA@{~BZIL&3PLk`9H?ANjeD>QYLBoOl#S1nzyZMICfTS45W!(h)&0Jerf#MQ2c5F{P ztI;XI|Md~>1AWrl+8s}v<$sygijr23=an^d65y3UXT~oB)GuWOufu(-FM;Nf>KU&| zl3?&IpN-pDy(Z%D&%w;mTHWy}noN%J$*9j>FoPzKV)__|WU2t-su&7ZV$0#DCI^CFtVndf9s?Z6coGh~^)nz$9LKT}Z4}Rg9MdB3 zzc?8~Dk!LwdR$}OxsUna!9LTgS0*!7t7WF9_%J-;fom|XI!PLyGk8|a>wfFSEA_B% zVpx^sy9^<;&KGrGV*!%ys?%TVNrW)!z16ckqh(ODyncB3OCWa5X zNhdPl3gVjiS4a=lUS=@5oD^~1V03w1>7#HYw;)FD6pYK+W&_3D0dDDG9YDDCa^`G~lHVl&?s6PZeKzZwgWjO! zd3`b@6HD^A5Fk9=1m*z$c5W^K4uwA7!u8tTHdn}fM}_l(ih8tMtJbB*`w=1ODYL`& zPusO#tEsX$xSPHJkbKLLfdHExHFb4>*qC*`-1+fCJGxtp3NKgnL_=72v2dxK)9NO3 zq&|A8%4m5xU#Yfo*&FR1>cU2`Z<>?}70!3RmsM(eK0N@z7Ax5Xc1l%2Oj0-GsfL-2 zja&#=ir=t;SXi`=k=leX*+}WD6=j%_{`D)Jf!8`WdqC}j{_T+MJCp_jfHeVRQ&5MH zeNRG2Q0j3f6S$GZ33_@Q{1zc&Z08~TBSw9+e>@Iqln6c;_0cng5o4X?sub)IA$>t_ z?ZQC?5J(x7d(26f!Rd}DF_BBRah?th{RmzBWEqy10;n=s2O$@C&oB4J>jL3iWSGJ2 zwvLYF@gD&;PJagLbNiA+YCKF{{iC^*$+E(sBGS;ZYc7B2vtMBdp~=-cFBcJWLAuQFsYB_&1F7JZ&t-F&?Fdiuvll zDNY>Uy0;r0-SyJ>88bNvJfx<}RvJFvnPT}Mt1|%Vp}Ypw@vgfQK*krqtlt5!E8h1p zP1hNO`DY!X$}68P<4ScQ7;v}bwq4CR`L3QnHkSn;UGRHHYxw{TJ(f2Eb`H9_n=E{x z&i~c>_hpUkF)gj?hUr>vur0&MQ`>Lbn$A^s9`O{|Cc`_YA17x^nck zvbZK6mLPi7?k!aT~bfQ@GXy%>XCO7cwWc^uBIkSrRqmaIbz{|`uc#Pumf0wav$ye2}x!(>aK_k{r%x3rTZ~< zob=h%BPNas7J-{0#dM9Lz37ET}gaaJJ$eQYlyGVN(=bY%e>ON=U)wt zBWTMsJ4WdyL?gUuKnTtttW`WdMt@lR;9Al$j(%}@zbj#Pf*^=10XD(?rqz?u-EI`11wgaM{jejQGyn3UgC>Dd<*+;S zMc+@Uv|^)P%gK@pMgFxl!mFz;rZ5_QF7xqz@+n6QBIZQ=1&bL(_J^lG1>CE|souSR zf9bH2rB({ImJ3k6PjFt{xHzH&Nc-UY1S>ipv!ok$QOoi3iD~b**~@vtDe3{8dJ z1tc>pjS_Hqc-#x(nw@FqjgcD*VgsNNf5(70FJhm<`!3mAH==)j*&?K3PxBTZ3j2H8lPzX8T-@%))s_L42n4LFdb4 z^Y$X#LTA(hAW{l8J|?F8sj{4`P#O+p7^V3_gH>#d1Z2`0PYnwNIXCO>%Wi*S4H4u- z*M~eKDl@-(7ym=#!-tBk1K-uQ*7LHf9jq+o%JS`pb4yh(N2|^VrhjuiK@sxV&dm8y zfb+D&9a+JV3Qrcsc{bO#1QZ$1W^H@RvE0*q5=HrqFHo zF7w>=RHrK%?i76Hls|PAt|}Pyw6yTy6I95${u8j{k5O-(nON*qZdZNWT9T#rmPand zAADD;8T|I)+ef;SLtY_L6o?N*i013FH;{hsSLXM{(Qcxi=;E_R$SLLQZ9*F6Uj9yS zhD;KnwwQVnfFPpZgSM`eN|*du3-r`Ic~i0}fd8qdl%Tn@8qS8eSk>-O^^@Fu)Z0c{ zaI(!GE7QC`R7Y4svqHaB+bt9{f+1}=gbz!Ji6b!_} zyVTT=AKUbZRjTVinVrv{^$2saK2-0|`>F4A89UZ^4q@hc z0LJ)>55ncMSN_GHwWCc^io(!Dmi-x8-@?g!5=cp7&SBR3&hj?-dxb(|nEl*9%w((j zA^EL6j?&Z2JU}+&qmW7Z@I?66uV1vZv=kl>;#@mR(%vcI-}S1u-qTzlY?t4vCV^-d zyhIZ-avwvP*ZR>#YA5&Py085Por3+h=pMCH3{c?*tvvJF(d{PAR?N@L6Ga29_e5K> z^EHNROy?&+{_}QL^F0V|k7YCY9TlbIt}z3`Vyjun0dW1`t+n7@gFyhVJHNpn`ff{B z5D4>AaDlfkj0gXEIFLJE{{5lB>*>E={vW>O)3F8$+1Y;ZEGFLqO!Zh-RW&v6ePtJcqsGN2PJHp%*=9gXR!HdcyVT8dTc=JgZf-?I zMWC)&B3V*eD4Qh@A}=Hdr|0wP| zfTCQRE(i5qP!y0TSq$VLS+a6b1VjWROOTv%PJ>oUyU$FJIQq2I_N$xw^Ys?~8i5x`Glk zA19~vw%n;?W&>;fE-z-p@gEt5dIHnnS+$t@j(nzlm7P{fLQ+ynLPAO+W(=dLqvLhr z`0d+m8Q*d%=)-cd(uUJeG97h=3xL~LX)91$CUN33**4pMMJ`u8`}^;^Q4H5s9s*oB2Pi(a-&SL6E<9UUF}^XlzprMGJP`aJs<^Upq? zxxWZIn~|Q`B@%FwLLi3ZHE^s;{DF`9?P#Ap zlbxQPK7ksnUB>)YH@rt)y=o0*8495@_U|0U?Qn-c)Ab)N04}Za@1p2vUEa3Fqkai# z92}`O1t4$|6zi21(kAn(p>#*Lam8bQh@qJ2))ku@S%( z;nV^PEu$}KoVG`MF7tfHxt=od@$rY`OjUBDb#>|0)kd3dYy?@N6xH87=65RDeEot% zK%o8eXFqWzZ|Sk3_DG`=U)4Kz{`ifml$Mow`TAD8SG$uXnLbLw)*i`%^{-dXe$;GP zBzLg(H)%mZZ*OmFCI|>q)6%?DFkE{Z{fPZ=oE15O0{u}CtQTFU+!UR5z6s*=rKLN^ z_+fkOr%!^Not^#p92D||0?R6e-gRqE5RH0k)G4w&yXdzx;DU3Kh8YczbaQ15`w++a zV8-h02Tt1X4DB3TYpcG82A{$QQM>+Tb3@E50~3?~##DBVT*#T6-i7y4Yu?iG-C;FD z-HnZ(FqruE*_=n*s;|FV7LEJuCXdkW=1a@S)S0d?h}vm!$JC(4=hQ!n9UbK4wVf>{ zBSL)DjHsQwpK!CYv*}Idd~;Zs!?4$lnta@S+?cl+OCnC}B8lhfAOwZ(jZbo=_H4oa z8|#XERKyp~@$mEK<>rbA3wQ7P%teGMMy>y9Xrehs^>kwG%}4MTFzu@SE|16KCG0() zJm~~tzrIngtl!GWpxZ3FT1wqxi-OY9x5^oi^#@bLD93;_==@}7{i&csncJ1>)Z4=| zxYkCI80Frc5zqpOR|RQne*QMNte2!bb5kDN%Tl<~`HH?f;wF*0zn6}E+a2PDiu*l!KjkdD0OH2tAuvSyWiUy7heDsy%GOS3B=>^ee5SbNb{Y(Ct zriP~I$DS+SYY%tHv$N5nqJki~t_TB~PAFNTr$jUIY~eVgGDocCmvb&@?5r`$C39KzSKfSzjUtck%2Gq^*{!#FN$=0#;I={Mk=)A4 z+$K1b#U&)j&a`=Wco-hfuz#)H-dI=Xq^7MIH%_`7(`IWfB4XF{^g4o zkuTYTy?uQ09%GcbqcP=R^C9cd`2n@U8rQke7Ig30xwB{WN^CvAc|CMQ#$VEdDje@0 z5Wn*1_LH>7{3sEZpEKY|wYy?SN*a!Fvz(ot7EC@3-nRCG?ZK~gi~}-|C$Cjvf9hLg z*vPz0*EfIi#MV|{M+cs<%1XaPx*DkxG8^%POwqqW0|E|3jzmYEW47HVCT?dG+C>`A zx?mFeq93W8BMk?;2Vi6LF7{J_Dyt>VS4Kb}ir#&8X{y+Dnma>7!o2Y{Oa$^79QT-S zq{4f&;81Q5#f2)8pME(8c8o%f_S95}fuW&uXPzzg=S$tZc_W&?;$v2*l*WNOUQP7YAC zlBK*JxVjb=6}h=-YUT_tCL4y98NhG>idn|DHlHy*>hC|F)6mht!3_yUTU62}WWq`; zidHPpg(2n02ayGI0z$^a8yl`r4}ttnLS{b4wHtI8SX`?Q7D&TBtgzPff8LH{mXr0_ zFz4V<1Sbe0<6F^UmUQkiK>fohXTZu0jsii)Y~T&oD?-Rbs{;PG`THR@H#fg+pS3&H2>lA;=}$f_mIYd$Ymoi0u91bJM>mO>yL^F8`Xxid21XaI z?t)mMHYk>ZD+F!ASwddBu?ccHD3jyLq9RRQ>jAKWsF-5l>flOxA=~L{f{6VA z`y(ta4r+0kHZu(5Z0YLjyW?L#x}7C<*wV4J{um6Y;EA#jiiajadE!7_PhDHv%55I3 zyDb3t#AL@Z@3An5)X>lXS%WZ=3)E}Ph3JcvgfHFVcbbq*-4=O}A`MxLgOd|06_uHl z9Y-m(-R8Be)YHSNytM5}f&s%j%U}f+3<~N`6ukHHM*ZLv^77R`=8v84onL5mPpeK# zvsjEzB(+KK^zt&(&reIcU9|Bkb8&EB;9hqfEET<}@3hg1Bu%YVSnz^TQ)~bJ{XQic*_o!HahTfaXJmoyfu5-Mnu+|qGDq6G4Go|Ty7HFj77t(t#rgqLjac>W($Z2G z&ABfnb<@4QwMv!5#lD5Q$9whetDAm1NsjG*^{14N!fd}$ z;C=?Ub=e%~T3UX8_U!va>ScM7*dMT_oFye)251^TKA4c8Z{fE2oV1|T{t*l^;bLrv ziHX@myxiS$^K4&3EWP0Wf=fhNIoc_zj0bJK>~*$wOJpxr)_uuTn>>^(jG=g!jn zc1sAdwfh3|O=q}|TIULlWM%Kqrew|&N1S%>3FqPv&w{`SjKN?EKR>^OOx7#`;^gO` zX`p|Zq8x*fb(O2Wm8v1rbOs@oxI8-x^#G0A#x*y)vGMVm*r+JDkoVbPetK(j8&tyI z^fppbI=+jI^#iZM{<86ix;kj-K#-lDngZPc2?l0{PA=a|1B@93tJyxN6 z3-TDy$^iM}_C%8VAs1K=ey|$E$zo%(tPBm4A8~`AfV9_&f6K=qdn|A&-^awLqGXq0 zmQefsdzk))9(eC~{5;tmbsP={ry9lpdy|AV17L~{ikS7yZHt0Im|W<8oag9ft7&18 zkrf)M{tm`sU7R19=CW1# zToQVlZpP~BZ(@@9Vq1Kq$G~I+oGU4#-{$i2VWnldySmZ2yvs{VH}59F2=LFJ;3McH zpqAe{91rsffbBDpaY#v3E~;)U3RUd5AxPNv_fNe0qVBV|v^9IWc~OPeulMKM9jwEN z1%oP<6qe`D?+6MCI*c7#hIExyG~eqke#E`_8Tp4rVS@HzE;uWZ?D^}6>%ffN#Mj%n zu1{8NN%OreKYDsVywZ%kf?h*i{oDB;6*2EE&CRE#=5+OaXTiLW+;+Jw=dU4LW8=Nc z6!$(~U#fxoL;pgHwg|VrOz|gDYgoZO)<3~O@m**Itxar{|AFw*$*4Ba* zh=wk9Yik3np{?3dveDUmTwH9ydHMM;eeDzz1>+s}l?y?6zM%AhO8ZTZg`U&rmg>w4 z8D1)Mjf^}tGz{3ZJhvI4ncWNb9Cr-2j7)8FS69;@7Y7H2jLb(c3#zVu+L2zKp5EKF z!JwQWRFfKHgPoc(XEb1R5qBBMC{H9$5JL=QMa&`|l0~*Hw@j*baXT;CaVU8 z671hQn{x5j)RYJ(?-H0ndbKpKj5qU=^HPxb`&apu?+zd*f?(yVsm7DBN_-zdMT9Y2 zjpczQNr_~BG$$5?Vx2)qvCH~{>Fpv=*xn4vLxznY$c;)ZQcV^^0HjDtr;l7U>HMtp1Y zP{NgW_pS+viEXTHS#Pd^Nvx49_SET9kcLQ04~_jELQb{outGf4(yEu%oVhKm&SHGm z($Y*by39)rs!3R0iVbYIvY}LmiwINGK|z6VYr}mFB#MfY0SHa9#uFljB+cd7SOc3zxOXFGGiN&3cx|yZACKzSsTbmlUtbcoWH-E1K8>J z>;E=rborl;{Xc}B{{2%}NL9NJ@(8M z#*eAXPynEX4xM3{EC-a68wx!Z6 z8zL1DCY&K5YL_li4tD3{mnW)*S{YsEYH7Uxs*=I&;Ha9c{V4mxKKGU1<9rSs-^x!n zf9up6wkZBSyLsozMK%TQnC59$=2*ud``n6}!-gpQ5%FSbE~65ib}l|Q_k)7poyO@4 zLoEcRRBB7NIszoGLdXI#Ln|xcPKTJojs+4@Ma6-qb{|MEUp#N!)Wy29wL#XS=Tg@7 zOK#7bzpW^kg^MnKXLh~>0x2?P)m-X`WOZU+a0 zaR4|zl@29DN4srIaoO4B0H>&NvUX&26q;LGXELg`eul$R8T@+GZwJsLOs}?|-yykN zoEk|s8jXjcB+n$(St=IEy8_Q`1%CgApq&oL?tiT-E353T1PqLHY;1&$R_;Q5xZz#J z!IJ^-BZ%BAkCf!3r+X`yPf4v-;di7~XJ%%E4D9Ue)KVmAWWB%mk?(2~AFtQoObf2F zDP-I8^Ya59aG0UuqNW|16%EJzl$vnsA)@|*wbXmhlncst@FR&Tn!O4$0l$8zQPa|n z)?@?z12g}C)j6=lMJHCePJdRdanR20MFnmYKz#N4yk1;Dp*M!o)qOWA_4;68xL<@z zb0%?BkTN!gkRy!Fb9#rv|um7$IaMh+Crx9DFrNdEX-7Ha~+etIXXqU_N-2< z@-Gq-hkw?G@2n12IxZ(bw6#CY^g_W(5IU`PpkZAL;`bzMZnLeR zu9O-dPcIBA9&c))p?xLzJd3n-ZOHcF?lOKobQMb9vusrCujG8E*6LnT?JNy$kGQoj z?A7hE9`NmSxiHiHJ`V>FdTyb$%O2z0L3;&4YcK^5PmY9}B_ln(!)Qgspn^KJu!Qc9 zS2yoodDGa}FcZ%PRtq#SG^d_UR65ZW>Mhl)yq}qw4%n}!gS?xtb(J=O^f@F+O)V`b zxf2;ch^eTeSE~)JZA~lO2MdSe%K+XoM9S5W7SQQY^Q3|S=RN0#6l_yJ>s5d!ceM8_ z3PxP$1oUi8O$#Ry^F?u8HOR)yh?@HPl9Y;62YWHUZ@Wddi{|LAD8*H8&u3P*I8S;p z?bOtk7v%%@=9g1%XSNC8j#iA+7qE{d-yOYXBYcUy0Cs;YHH+}r@$gX z7KZ2nGFyMy9(VA-FaY-c^rF`~(31l5^(|?((M0DgoZv#drS zspR6q#WsI-b?tWD?6MG2I+=JPnfH5nDGu%9AkumCXv^6P44RcQ3ahG2XY)oiAw?GU zgJG6|wZ(?6E)7d@{#d&wPh5nr-x=P<82jEm0Ke=jU}AXF`D>eDrA-2@LD*R~7^K4J zh_m!-@LFbaLe)trzp%KtyF9E$GT)ys06s10!9JO{eSDs0=-wy6cndlm_6C+7mHYuQd9TVe;c`zj0ie^^ z)^?WpW=Bg4XfzlEzpkrOkZ&CLBv|7(l0J_Iqe?9HESsL*;80#W-dspe{(D5FSIeIv zWJy5YOAxiY{?=B$@!4}ycrfD9gi1<81Mr8G@=O(8`JX=viHb6d+M3IMzn~NoO!0GW zPFGLQ#@^oE!J+=XXe8Df^bbGHW<8j6er0MVKq-HXQpv+(n*-(FAdPsMY4cJ+$ajl# z6y>B6-OwH;fwlUEw0wS{N+-Io@TaZKbPyZVNoh9h^<`f71XjPoVu9vees(%EE{=qX z(oBNss+Tyc9giPA<#&c~!~=03{0SEq7KzEvnVmwg|9MYMO^5T?$T{T0r`vyj|D2Ok zR3ycVAi2OiH$B}{6%`rjGqv;#JYnG`BV!e_A1+-6Bn76sx>JzHpbeCgk^&Lr5|^$s%iLp^T}{%(Mhu6tG=e8kbYJeB-5rPZ-79loTTvcLdkG zq>&MT|0(3#l4KyD5VlNBCDw+>{#soS-$dQD*GGAXl=RcJ;(e7Mv6H!W@v} z&PKvW$etqs&69Q?e;P5$o13K;FkDw>KiC{4!SrkGcKdwg0U^q+t+e{Pu+SX>fHC{m0g)6!9C4PUG1C;fm zSXS4Yj!?#Nflhy}F|Nw`O?DLotGL2&=mwcW z&?EwuZCJxy`4t0_=d;`p^GGB z%(6_(RNZYy&`kldA9oCS*p)am^f#0L@Q}nGeP3F3zxb=<-TOd%>pot;`Ej;=pGF(u zT!-9JBtl%RNxdv6sASE)wY_+i)?lpM+tt~C4> zJm=-QytJXUPYMPk_bega1%3NqqmS0+f+mbUI^yUeq1J#KW_n}GkWiJ*9dL%37D?EP zWfiEWMO;F-L5d%dX+!qo-uUlQtoHllB^$FIL7*lonpAu9(pK}ryHYjp?|!T`Lu}a~ zSnh7d)RrS*V~3#X?ng5-#J`=Tucx1&3Bv{dOO*lJ{yA&K7k&}mJCWU`o=o+xcPjJ~ z-BR!_heSS-^!N2dggiJM1kEB)P>O?Qt|{T|aD_Sy5jVuRZ6|_=pc_BCUJjC)cYljX zBU1e&&mkJ3SjB;YN5%0$O+gWQVc!%k&wV{aczSv&Mlk_?%@Nhodu?by7j%dS$zki& zcdR~pK6V)lDlUjZKz z*8z6GBd$}`m!+j2Z@MTDj*%d|^;UmsI3nmy0STKuZQ_SdmKkqbrpNerhRf&0 zsh*mE-W4;=Y0elN99y~0m2gpM*Er=2bJ@0J;lqw^_)|}VC`|3_{I(h=xis13gla)I z%wgb5;7K)B?syH0#mYnztZbHtOOLDf%U(~I;8LJcU&S7_jmcE%@Sga54_=3(U74T0 zL*nA*W&obu#{qu*XhW(?mu`Uz`J4-UGM!P}{twm~7=-6wcKu1%XGD}59nsgPe-r=8 zH;#Hi!g|x>EAn^~550`D;3IlHF>u)4(o)Q6C5h}M5x-&B=GKf3c)1tNd9MG= z@JsypbHF~brbdn}c>aZP1@-RQ2&j?mgZm2D`0*PR_SDsxe-k&>q^6`*b2-~)Y%ix($B>#p}2Ee#F6bY8rhEQ|;sJ^=dS5)mKoMwWw7 zw2RW&qWM0wNc??TijF7>%8qGy(2K$-D4RcB{{s%^=^ zMhp*-3tVm{$yNvO*US9ekYlUU;DyoxCO0r%?JKJ%o6KwqyrtAH6#%$%#UxQ^=<9zT z9E4s7@GpFfA3tuby7=Go)4@us-N@zPa_PJb-B$azP3FrInscxCe;D#|w+e8#wzs!n zT=%=m#`!_T(0@w3(rbC3+95}qhn7KdO?v_N^fa+;2{qh2-oDPo34ZsS*TBbI|9T{o zguJk>F&Ivoj*Un_&aR=Uxmi~a3~Z1rvoZER#>n&6K;ECOL?sG$%}+2J6f{-1hWZiZ z*Ruy@pTZT85ICNSZjYn?Lqru?jj3M|NF-7gB@o-f%*-qz)!)}+8?viwU~m%imnfV0 zx9`tmVxVy(mS|{T@Nw|mpPXD0KEr(uykf&pzQCLYEc{R|PCDwvuh|mIds*=$!fK?dow21SRZ36s@kol{TQ&| zh+xL2PoFAAG23aGYG}9y1dO)Q3qx(bL3(aQu5Y-~%1ra>rmXDoL41+b)vH%Q>nt(J z-)*47>IjcF4p`oXH0aLVyMgfJf$yRXeQlj#wKQaZ^W9l7v9VFijN3Zw|6!u}Na=IR zQco%=CoktnwHe1|V9R?x!A=fZ-aX5eD)B9YoOkbf1l7?W38Uk4-;1TryqIq`E~oHY z=$R+R1G4xET%onK`_ldn1(X{)YeSl*?yXAl_uSp@=eWlxdrU8grajzCZ8-tWWGC!C z`)2##AlLQl9!*^q0fz_3qs~w*LGwuC}DMqnwV zY<|`OV}e=6^_5a?PR^m_w^RJFhm*vt3c;aHgB!CkIXc5`wjD9l)YQiq4?FWIXJKJs z`4?~Abk3rX@113iJuMGP(MX}3dnMqljSUS_$1YL7r1GQ)}-* z0uoZ_LG73D_h^xoz~=GD{$?xVbNK?>?F0xR?7_fkxEw4ZDo!QuINo+JQ5&Vtk`fa$ zYN=-ulxM6KCu64_#UevVMMa0-{Q(mUe8vTZ#pzoau>>(Zzq;3H@OURAV;---6AX89 zwceN46dT8Ws}6e>qwli2N!a90sKs zyCLD>E&av;dRkf~j-vnS4>W!WKLN@W5dy8ua|O zJv<=fKL%t4D%G=W{Zy1~N!9(vH89(=ca{o@qBxsHFiu@zr7VQwhNovJL7yy?nH7oE ziWv)B#O3to1sn{{2EUGr=D=e8s<&qt6A&iL72CvQEZ2euyvk0FiqwF~WNT;VF<=6R z+ac(F5m9x+EkrpZa8I_hRP5B#%aW1=%0?}ZiIbBYJRHE&%V-H)S!<2I^8k&`wZtAv z#^dJ+G81#W zx@Z6KLNhcUVq;>3SGBldsujPamk(V9=$b+Y`36-tYjFE)WqJA17&dhOlXi}onLzbc zS9k*Rx#I+BHz2{tzrbK52<355+r3J{WioVh9Q(E8bLgq9Y`Xwgx>!8|3gC4rcG-qV zwR`-r0*5}BosCd_F3uZYva`8(czCW|i=)^8sBx@1z@Vr^%PRQ;C+4v%yRCgo9ms(J zzi)=)Ve}`BF+YUo!-o@am%>{7pdo3b#BTR!e-%H>AmsL^NQ$>7LFq$UtC$f1;^XkL zE+GkOYlO(%@M^xZQxNDupzIz@0X^W_(5M@=c#c=BUOP*e_lH0dTHp7-di7&Zk3ld6 z9UUEXM_|GUjtkg@sb2xin6ZonXJxlWm~%|m7))2vjEg$KuafWY@A6M}i>Map3m`7X zwrrA~`}4v%0|@d(2M*SAUjY?PE+#Y}<|2=0p$s75u*$M&SF>=tDKj$4p_cLp9+kCW zr})rj=9}JYwd6B!X`qj4(=I3Hy_VW|@uNNq@ZW$wfn1H~3m942 z26&TCMGtF>dwX3D;sI-0vXq={&pjun)qZ0Xx|Wu3DGhHyrhfG}FcAJIXKaAoI}m}4 zF|IVi!JDBgU=Yu4H+5yb2?)f5pnRzl~0Qkn%;j-TCKN+>koe2qLas~ zyM|WIxDs3iCZmvc;uTo~Qy+3xpG^LcC|dOxgn75orq1<`A_LqZ>JL|aT!)`f z`DsK4W_hec)0+QrkuN%3U&wJu7r@K7x#)vDLSiC~btXng(vJ{X*8^#FF~6GWMyedD zy}hYPuWW_RvLujjl}{DB5Cd1;UFbI(`Kz<_RfIK``Z9bA2BYI@q!JB84uQGwO0I)|{!9YilbqhZx{nUENb$ z@D0UTP4+dU2u8ULfjooAOTT*Wp1L;=)rnib?>d?^?8A8Vm_ero`(I; z!PPF!){+&0&2b_0lDIupVQHsSvs)lhl!y5r4hE|2OvS&!18N8?Rk%;z@6HrnA`MSW zOQSkyx=~5DC1g~h=jR`{;Z6#D0s#~DHaCm&(Y|Ec^$6ac)FLlbh*k~F>ioCTzOS$5 z?B<FVss5taYzC=VFg}y&a(6Uc zAhp!H@k*f=f9mRLYloZtByaET^4~RzK)O^@m%5{~*mP>5YHDg;M`pg59UmW$^Y@3S zq=})w9Jl)5=;-*Iho?-gNI&%j$}?Iu9CuI8n3$N?-rf!Jz2!}E!<~~0kw|qFtQLY-_E7*c*5QCUvg+y(Pv z*RT7jc62R=e+g%1ips01<|#atgyi~MGh+mNwj7oCH#ivC-7Qy8SZFzu{pfj$V2bD( zt>N#z-2_|sGimzb|HQLHm*?r$t9mzEc_lfM5pDbEq$Ept6kP6Qi;ugPN4e8Di*wMI zoE(O9YHFSEkmu~|119U8=U9xhBjl4Ey6``#o9SNh$^6y}PK#G3n^%{ss_;MF>JBb0 z?O+akeQt~_EqneFGA4@BN7IfX<}qqMKpFQE)G4p__iTf1>OVMVkMCYYd$NZ&BkXDN zOSh}VU^6qx{{k?Eo20zN#KnR`YCH8Q?v2j(gaajX&Oh7DlZu=18Fz*mE;ii-dKT`= zM3BDv`?1jdI>}s4Nr}&Lx>z|?uKs*~Yh>NGtgK8)%gu06oSziO`)oZyNL2J_Y;-UR zT;|Q8q1ffkci)^hX-UtH`vQqE-?-#W4gdR0qVFAjPBl~RbzuiW8}(%z%ZG?KKk$jF<1YdTt(pN?)t^6K#yp92aB%r)H!ngdaIwduHoU~>_<~0KP^WY-xq$2gD(0UUag<6#kZf+YvG``sy#p!%jQ!i8>wDk6V$E5N0Z)thiJ3Z}q-A@+Jc9j-N z!ujBBqbGlz#p#xmm@Jma9-PUn3aTVdyOw&r^TCJBd5OIurjhW;Im^<)YB`rA zAh{}c!5|^W+0Is-w4mZU*xy~()YdvNuzX)yT7PpK*xA|nt%7g#*4VgPuG7@gzQz!( z8l%ZaLNy3rEboGNg7ZdKN>1C#RiFfwt90Qs@h^W)y;Nxd1a-)BQ)V59^S^( z(JDx=hn*C~i|@@G4xPZDE{gYYhDr>jW~ywZ&{b8RJRzKJ@W9@kEN;$k&?n|t+Zq2W zb~g6boAqX)LO=UG&&#{6zXYzAT6UZF6LZ!gqdS#1ay5zlxz*<}>6Zs|m0!Mm39j`7 zadP8zJ=7D+H?oj%Fd>5x<`0@yuD&tLkxKBdErq>^lxVP!FuLuYu6TBskn{M;#fb> zvWcbk#O6JI`qY&2ITsYJL%nql;hr=imGDMGLAf~UA5~Q^)Z#ZXUe!F>#M&6V|6EYO zwkkZD=O;5rE&f|`I0Y3G?{ImIxxKypF%gk;mkQOD$qb*ExcH}%rLL5PSo@}{_zd6c z5Ui&xhqv9)Xc!nV>FJ$yuDe&)DfVG>bRtlA`_jJvM>jXKySg({HU;=f=;zO$AvW`M zXH{J`SdR=(6Nf=siJwA4rlmw4Qyy&rd&8YBn%L;*SAFs9TSJ+sWZPu7r7p~dhK6GI zt=J96z3#cbe1Xw)8JyA9PsC2&`jzqUUY(9^Lr(XG1H9lzSs)kDGclbk)F1HJOgSqh z9TR{z>P!_b-<~eVbl!yVLbt9)@}Tw&4GqY3@1h~$vS0A-zQc1iu1AzPJa1;xdHB-J zO+e}!PNsPzHJet$R6qX<9Z#H}V1t0#B?l_YVw2C;Z}4oDc@ZHYA<~PBgT)LGFXhgg z9K?vahfqOiy3aXTK|#Uc@t>CRL9u|!aDHq*U1?2CQeF7L>y(K?6!**JAdAsl+}SF- z)lGfk75E11(69{@nugWOWPV!(@KHtId#cFeb+W_DRY-wO<@Z=7l?R6%B>GQ?iB;OZ z;cgFQiU;A*7{Q>6v5AS@KR=@~YZRsSELQuKRaP>`h^i(7E8w)@`BWQD zA(*S*?3*g&5#w><_l#LMBrn4k3m+dJpasp6C8pIukdM0MR0SEIA_~*y=jS~@b(WWt zTdF_Ubb4|77+-7%*U#@h#i+*pXhj!S+0Ds`Wk`a+`S|yKSeAxxEAj2Tqgx^Ts~7ub zb7cPJ>)lB>1Hzk@f@$3aLDjI=;&4Ou^X7cNZD2m_Xtitj*)s?Q1qCrDB3yXU2eW0y zb=SecVX5iH=}A5=Ip5DzAK{7ls8nn$EP8Rev`ERTuVZ6GGU1+&>^V6hder>in|yA{ zKs}eZa}m+g)AK$=+)PbPkq#bAR&)OSSY&jT%#W;Cd%S~dA*H)_x>r{T8CS=loS>Sm z23#z5O-w}es7n}~Yz*K~izPB;c=HSji+i0KAn+yE=Ju`U5;LVv;F!Uop~k&y%$*sm z(He59ipJ&^FTfU6O1gax=E~^Wd^Abao_fB{b^U5n_BC901-w{ndVHsbzE5~u<Wmu5;ai07U-}K3{J+QIM3B1#1SCz!by{4wcA{kXrQz_LD^r06fgP zqn_WMP3ogfll!9>H+uIXzKYX@7TTNH;3iY*sedoeL`ZwHw zhoYpNWu|?Q8kg-S<9{`}U=#76z!{p_4n#_FECI~7H&+|m-51@iQ~#~85nzDNUxR2? z2IE*!Rft+Qje~=B&~Ow z?`idU4RMv=)TEDhqaH$|YKp|NVDa6b+U!l!99;4&~Yd}U-ri!6qremCKJHlv)n zqW}ca!emR#lox6v(nMUdV^kTMGDIiWCW&gbRpRzgf}5jk=00Zq#cyI~EipZQRmNLp ziBRw{Qe}F44ENmaSe|0nczt%do#D9L`likWE}g)kD<`jFIGU^6 zpUNM4dFd`-a~Zna_HDSqgZF%ITI$4Xpu4}j`$V&*FM;y}?DGc(_V$BY!<_0lR!^VA z#%xWMqH0&$tnU^#qb#lEtD^~6L@_Ok+y~KUR$B3|MaUgq6h||43NH>Ap6&2MaA+iO ztSKlYl11X^WFtxp+c0*3YYb2*1Z)gIK!76hd8d{&WAO!GI6_bM zkGg2u%D*tt_}xAN?Bl1$iP`%Kw1cJtZb4W(1XJ=d6A6 z2@OL69>d8f3#}Q+D;Y`91roS}kEMIZhW>((y}Mo?vTZliYI%i4{?5;$ec)~XpQ zY-i)&W$DqiHoP9 zV-uGc{ChArKM#l*`k>ee9|D08yX)r#pr8c0C;_-qXMa+;#Y6#Fz1u$QWU7QB!@}wA z#LCz$U^SxZXr**GNw zocAP*{Ki~KV8Sm_=rT_xocw4l>Un`q?a1YU|0FIQsZ1ju7KD{mv7n&P5en^U^oA`q zl$#Hd_X$JKbwZROKhU?ywn=fmiS^|D7$fSP{UO-Ylpfp!>+B@P!C+HZ^5iAk-mcbR zGCy9!e}sj#0+@Hh_0D4G)`rp%bM1Tw#Vk7mL&qfaIgRRwD;I|!Qbns;=+ zvVMKK+%4|31=K0Wb$0^rNdgiQ*^eLN9lM$Qi;FqI#OzHqrCFB>>%#%K5b{HaL4d08 zoN7yZasIfa(odr`K7zJ7g?@u>nsSKvb(Bz>&}-=a^(Hi|OXuEi&21m2#QZ?7%5D~! zo|RJsG66o9)(tVb`u-G3brB8%_VRky9*I&sj1CRJe1}AauFg)ED|=EAsDE$%aYE)? zxFV-!0^{26A7iWXc8}U99>X+1Mv=me*O^E4jxg2A-!A(`j9~D9gT@<<`ing?_?(AM zqi39HU;J=|JYjORMFdb-n3R)&hbAu-tCQJjS@|`xt>>UX7L5ZZ^7xP?tW!|f1o{tP{?EFhhq`n%dxmrS7I~R z^%rrk^Otsc&skYRSv86tJM)`sR%T=@E;?RbJ^ihs#)kwSH}x)tD_=D{?4}%IVq-s* zuBb}fdt=Zv+*5y?nBcP*@-J?>#d6BSQA!p1>})=`adlCUUE_Vl({wS{paRp-_kE*a z_2-Cjz?I)>tUETFlNppuQc*J;5Dn6)efguuPgxU%PfoO}tUZ$Qda`JWC$Fp**iVFG^3HD1rHs-??!wYCX4huA z4Bg(|UaP|5Rmb;*3j4_jfQH@yjtGdU$8pc|DbXos03(s$?p>D5<<-@lx#-R0?|<3y z_gw(J=D*K>;^rm{wZQtTTvlFw1^8+0lcyb5!4FqkU($ArSH>REcV(;P1VGdGlkz{= zTrEA*UJ#ASJBdVp-@F)O0{s~?b4XY}4hAlHdm?w%_F^#&pi&^wn^B563|)2z z(bIoDt>F76e!-T{%xu%twrSqg)m83$hmp*0-&tZfc=WQ`uHmYa;&gldZwsAQJg5FE z8BY=8uCPpy!Neq;=)tmfZkt~jT3h#N$1*Ojt+iJb&RQ%MQC&c{UjraGO+en;5lZ6m z+fQ<5qOi^9VxeyhAj$#3#b>;{v6Z_M(P?P|tgBr|O9A*ic5|BE-Ymq(P*hV>bKgG` zbZ~QA2Iw?Tr`Cy5*y$^`apz;2jFz}=)-duj9#D;2fTGhAE7|^UAw8tHQI9r*yws-) zPpittl9JeOo-R_Xb?H^WvCYZh;ZMh`PMfQQH_t-<>WO=e6#0mn4W`@b^q+#9Qf;H* zpRX=y1_U8w9ig7DPZ7Ru%>%Mbj6IMB(3XZW+dQiDn<(Y`$4SWraEt(Pzdi1I4K|47 z*zf0VRaL3tUJ)J5cQP_E7zrHu8!7fp>;EvRf9fwv&@(WVdyZSJ^7-rgev$)#6ja)_ ziOz53o3Nw1x!TU>sgk#cbayvrSzZ^IkFfF02h$t*EN9jtc1wKQFuc9JEf$-oN*zlJ z^vW^no!t2BMiSljX9=jD+UjKdESZ{~j#hTd42P76ABn~fFPqGI8AZE4>YGXp#Ajc1 z{+4GZoNQKkTc}-aXlnUpccRb|1ZC-@(Wff5M4y{;^-8M`;1Q6mvD(qaO`GZ7Bwlkw zW!mcM>J`|Qmb1C+Qs2aoxDaH+K3?-uE~4`ad;;|z*w@uQ+8XFvR~7-6&6T3Rojx8S zh+3<&{#2RAT!}1>td<_7bJL zuRKCB(1}9buFmk3t+^cM&pW0Z0hstkhfDuDC#@$65QENjF59mGC`}ZF+J$IyBj#$I z!zcvPp$opD+Zn!AI;=)Ol8h4V%~H>cz;VBIw6U=z6E`b3vXo&MSa}l)HV8>ux>tm1 z-o1ET&c}T%K`K$-TOqL5H7kCv6$anW#xR`1=Tkbv$&GDIm4SGWByq><2A{LE(Ez-U z+T+sD^L(cVq;pHsu_!UN$S%-Oec|7gS+IsK+ zPWSBD&zGC<+3LZme>^#@e|Ezusi-`*J4h@SGsPWCOKldLP(eW_7qAMBjV1I$Tru&Q z!+2EeS=j=0Cqd3Wx;+^zw;2AV&EdYcz1?$M8Uy3}r8gq+{*Yk9eI(v@~D*qyXyPbet7FlFZ% z0#FL}xU$!AQU*I;I<+|9ghXp*ENWg(l0?6bON$M!i0VtQzZ(mSG3$w0lvhwNTI-Ikup0l)o>Kid zBZ{|fWMDkJ%68TOpz1<-`%=f)ZE7-|F)-Dg+4m{!Rr|9*;x`|d;Rg&@)ZN|P$k4E5 z0v7Rz5D1A~cu19hqQWw1>oyC#cSo!YB$zp8jO?{j%R{y&oKd(Xz$`{quvfXWjO^Y_dmJAhuOMy?2Fq>N zd*j|zy>55{$x(kdF%AfK^`bB9U=^4e;u#U8jwH~@>4-wMp}=Kig%qa#pK90r-_~?A zI7Vwxm&%|w8P#t%>fG(L1!@Tsy$Rjoz|}+z`wOn9C}j#~KLjoKuR`t0UUis0#l-T# z0e%bbpqO%ZZaCm*;A02L_@~2ne|B zO#PesbTD7f1VEYQr%&s`6QDl;xO((`qsV6sy(=2S?1Y7(w|=@6 zi6naNp8-T#a6)Sdhu-poO|<86nHgj;Q?RW(D|ux?4*F6Jrz@dztI$YCFD)x_P%j}Z zu~OgO-Y;BxfHbo74DcR2e^69L>oqu8G>W8^`uTx2)RErk72Y*7JA2aIhOb`l#vT(B zJ6+>Q2(*08_L=X&D}-1gSbGJzUQDUoXHE z3bIqu7KFPxwmr&rxy|(FV_`1<19I}p>qD7R5HUdXYijF{_Vjb|EH^8OPEW85+$l3$;bBt5TT{j)ixT%1a7yzEivd}aU=xU-|Xl>hX@J^{`&Rn z_(yDVa&L;giV@M1q{^_Ku7r4+{k%_6|(a^LQ&6g^hX{$K|XqK47 z4$Re_gw1MI+Q07(NR+E{`78M1lq!03k`-tIkC_wQAj!Pr+_rPM@2b`>kJ0 z9p~f2d;pICU_?bl1=8NtMMy)V`rd_)U=v0_Os!`ls~R8gc^k_(5Gt2X0ybnIHi=zr zv1-PGw2aKg_ARPTgG+R-ati2gTT-IGE%fB)(5tf$%Y75NK`G*r$ZtJSW;US3*l^8) zOO96Jd6xXT2>IS}M|Bsb;6~+9PL}yy`$)G!PCAHekSZ{qiHfG2Y!0Hn1-*N6K8qGr$vd053}9mb zLcna5ZJupP6%HBC*ECV7e6<{`i+Lyw(0#b$XThpHc_a&BejsGI+V*Q{y*ruZ!f0JwF!qvu=C_i1hd8;2&^h3t5eqF(mrI3Ftlj=f+N^Jg*c+a(jobu4!`y|na1U;;Dbn|o1k-;3iHVia^+dr32J@d#6 z?h&XJ){}U$vY4>6P%g{qoE&QOOf-Kv?(F}XgNT@3y?O<5WTTwOz~ug7a|Qr?MwW&> z0M06@nOWw`zWS7Swu9W#U`+}>6lg}D@6SH9%)6?)I`R9dzNzBw@u6n73`{%x+y8(X zS|{xQOx%@F&L+OuGxLG#FaH8C7hQ$Hlc7?NAOzeYiL%v%cRKW?J|B}siNKr^a7POi zYCB(c8^#vLWY7S_N-61^`jK6mxF&2wEwVlb3^nm=}<03|~&3}V(yTK_|<#zN0eDeIKwC}Q!`T_m#o*bbQy3BWqCn?Ekqb-jq>vH=p4JC^#WRwODij{ZEW_a(v1Ij zLNv9sj$5$@jm@oP*Wy^k4qpn|6cmE2lX1n8_w0=8X*lF@^n-HoV?vms*J?wB;CTwu znoU1Uz^?wN%W_(ZG^S`R{US@`9yx#x%{$MthuHY_yG{?_^^t8sktM+W5X8?JG`V+{bCT1qbJr$Oh*B{NgBHki&YGbIyJ(u?OQj5!uwei)5A3_M2x%$33 zYci(xc|@m)=Jgu1T(`!jL?~OFp-i8rPuY8fJ7G4ltjN6q6H6}%(rcODJ))i?4?M8{ z3ho8EVwUrD{BCY;+1c4dH4Q+Zc~`BXYp_d2We?tZ?DxBXl0z<#!b^eY=wPAobaysk zgFQJmDf%DKGP4Wj6$~ok4=XFr1 ziav-1D9X~#PHU!Aki4QIz%P%>Jb0xtD8V$dY5e+C-B^4 z)N@WjON+(LZCy@L(HLkEVmEud?KT2(+!_HsMuofO6f&WGhT*+jmGmA#vTjl-n?;mBkU?-mF^HMa05Fwkr?2PY?5 z2?;-S0oJR_p(0z+cyvxWQ0Z&@Qfa8ERe)FkQZN|)P?aqOP77Sz3w}xN=y)U~I)CMG z^JQ%HBfv>Yg~^qg^>$Q{P?G!3m5%1+rKJ{-;U3~k{wO|1uGc%z7*wJY6}@q4u^w-Lw_^1+2M0mSHy~bTLy5#ES}c@ z1A|y^0uwJ?K;zB%`YsrS<5jY~ew62}I@0rUKIcp+?D@4BaUBZ!pdePzUcNPW91;>z zpj$7XZ@N)Uo%;)EQ%MF>#cg69qgN`N?}}kS;DuFxcu+Dch#jyD?~4Qui&EngiNKcG z*_2Y_u9tT49)S0GoM#9*uE05U!aiwg9v-&gkN!1R1qKC^|EzX)*r!^jr@D16xrzy} zYAO#>Qc^jfI$v&Y>H~4UZk@X$FftOK?i>E*(6ZF+<>~`!zgzB|iTu8QB>_KJ%?ER% zlneBmKZk|kI0t#kBJ;;+x6GMzsLK6dQq+In3)+q7hGS9uG`fb5Of?kd+V ziPQP|CKDhJE&AO1q}zg)vH&BXb+E;X<_dt*D0wAP?7Y)bQ26uldv8CkM#QCVCB3#|NtHH+%{i zO?Ogk;@kG0uTb+ploRus4=1H*sKD}$jgcPmKjP94}7l0+}O@TjL$+iT1BaOVGE9yA9P7au5h zArLoDeicb0b_XLRZyiqfXDSTg7mJPt_YyGKRO3OoZhta=ECvcnby!bp>z6KSuP_Eh z-_@yMy3|OaF4zzi(%puJHV2hGQvkxkL6c7y8E-rQbtFq^$Pg>zkdUBeV#<4vVQ*>K zF}}5xQe|#p5)~7pwIq7a!2xUU*yKcc8|CTl<;CmN{t%B^%wq3$^0c@oY*4a!7bc1R zJ1F1cKPBM}P!R+gq}4_RgAYXTL)TbM>LxoK2g*syoWDtb>P&B;Jtz9a@j?D#-+w=Z z!7LQI^7T=}?eTB1*+1{|TSrwT2iou@`+xomm~Ob*=psX;6znzJM>PsK(q_pt{xDAg z`?#s8>2!ZI2(b6#{k>_A^FhQp1<>Dp)pb7nd7mj83CAHjrU&(;&K3uR`rN8U$E64t z7ni;(61t-Ve~)PT`|c~~if3;W!D*&`q5w02&3sijh&7OHN=i$6CU@>9r)OsgseH~N zB01&68yXu(xxIx%UrT+eb777YKPLrk2lLJ_GGIX!UgTa>@ZB|JQGf&o_e@dUJ(@Mf zmcOu+&(&tPffaV}oSUQ@1BE4aT`i6+NWm<$9D1PF3A+b2z{|t7o>UQ^WYCp6Zr0HI zH$9zX--JlsVApcmpW%l{AT9|v22(QfD1jkq!DG`FkT9g9soZRU2fjO79a(xpLq#>P z)}t=uwDu4*0SxA9Nu$7v;C!m0~gR8#|l1#hLUg?SX(QCosron ziQK|~@rO}ze*s%)@S+x@rDr+>cqw@75#9iPqfFI9Y1oqm^Rz1e>^)?kBK);8@wab> z-x_{-`DLtar1uGS06OyR5eWXvy>c?0Myr|nv;Qqjj0r=&BAPQ%Q#MaH`mV{V%_-P= z9R5D?Umw3Uk5$f8h+`T16E`}Hho@(^cdK6w>^Q4Br2yWM5kl_yjM^QpPq%SfK#Mp@ zU|)T;35;q5=pHXEEPj`s_|1>xDAqbGKah}+0Qi!_JXpty1@t@xsd;_pfQ(!)U1LcH z`lcr8au0zuSm{y)iA?A80PAGVX9hdld3z+sJ1r$SzH>8Uu))#`pfUhL2N4Cb;s6Ia}P{k_(?Z^9TCAgy-qiDLah)cHCj6NJA7 z`6W|v6J`T?iHn0Kz|KNSq;KK?iGOcN|Ds_*cHV7 z%&rHBXNn2z?1xuKhM-6Xkekl7mYlwXPbCH@CwA@+{)MaKAi*To zXl~SFU~h1Aap2O%QBe`b#Ul zL1(J%_d8B9(LDgQpYcHhXJl!7elP{$pgaTS4B+THdV7!X=v7vc=Y}n3To1o*x-=pN z&T4c?M9YuJTqoccCPzc#GE;*64glmuB1vGt-FM#8l`N?~{iO#K%BXr3ytQQkZ@kdM zz#)aysy=-zyt!7z`xdclgGQ=Ay?_Dn{ARt*a&SAmhLmTjvO>DIKm()uB4Tn zD6i7w0k54)0(p?I%#scQ-0K@ha}g(!jdv5;z=gC|wcej1m@#bJ2_(N0rsK=fteUzy z#BL=W9UW+GHyxc>7b}~LDRRyqPxbdJF)De71DD%G%|K62h^gZJPrXLZ>c-ABX7xld zkKX1^$1G3~T3bE~AN*TI#VD~F-w~D208_kH*MfojTcer!Wb^)Q_9T^<`(v*QxGAV5 zjLgLqV_84>&|gaTW=}4<2l(F6&%&<9#5!%>Z%&FH zG$=0m-hFB^LI*kwEkA!;aPUK7#5F5meSM=>n8A^edDhjKq>_lIucf3y!ouj;*~1kR zIDmP|Z|E=dz}ppp|3ji> z*|qpUjgz{4{#K=lQg2D_C37jGG9jd>M- z0a%eQKmtlyO+akP()UeLex3q0Shaj#(>vr1p6(JrCTU__w}zfO2hpl!BQ1X5`p(N) zjD@s5f+$0>U~s|zh=Dp<2lb0W)(y&C~s4qVKzCxnDx*I-kx_wfSjt%->lm|q#NQ<{1KYRv>qf3dqUbs&(W z{I@kcJdeZ5epaL2;e_@QIOVrN*K~PV7>WQ?sqN4B-%r(cjkQvQ%um2XAU&Qhz{Q{Am?g6Z@JNO)0{xje{mYk-Oi^f=#jsJVemMZr-k?r*PUh$5gYyXf zWEq2Ohf(3+EDH({y~tOq78*T=?=yV?1wZUBZ>s@kA#4ZrPj_EW6nttc;A}GKPaJml z@Zk2nWkvt~MuGZ&L>PJ}N5@RP#=6Vv1*xlJxR9vu>fRpCOC23b$0J8+S^f37+Hy)U zQnS7HB!VD?-J5^|OGV`s6()y2Kac(S5X!DyecVN(7=A;1d&(OkFJED?Kxxjzv;j*| zH8acYF`lY%qyxd8^#!O-r|^Nl_g;ZuyAl5`00VE6d;$S&;pMGTV>bP!6@AhBdzb4| zOCw`rY@#4!ECtKG3keSgmYl+tkIq3(8c6*sUy~lPXJdtB?U-3f#OE$rr$Q9?quHUKrD!+rY0BgH^G~mv4I${H(#AF zC~+gE{|Fr!lprj<*!rpbLqmD#WFlI?8KT8|P0v2qJ-Bb7`6mZ1UteDwigQY!ng$YU zc)xxC5fG>XqYVOfBp?BQ%Jt@Z%4%)RsO(8-Zf-s|r?WkqhhL01@B?o5m7Sg53+GKo zFrDD&1~4EMN2jLtQ`k2>dI{d{p!xne(%^eHK~G6VnRI>BMJev|;~i(Cbb!CVU-)h& z;?83&I_S!IT|pv4I2OE(dFxjV?0ujA9>j|t`B(4=0wzlaheidQK7arn={RE(sIjCF zP~g*Pgdaem(AW<3qEsr-z#S|45NfAe|HPU78<0^)Yt?0WMtBoN&WwSy+zPNIkobSS zIoarR77YA)xT2W#5Kj*VK)sxj0xdUl2%zK9ad91pJ4{G$gHs?-GLrf1!a&e3THwfFgI=)lhx+rjIw^b!M)^5IK0 zHCh^Pp(IeOdJ{N-f=vYMVV#-~AgFA%gANU)gtw6Xq!VXGY)x=CJ1a=K-QBG2KREA; zH{+n3ga1%5!;9%?onRM-FOVAd@za3+4(SJ#nKDFLM$ZteDWB~Kn$u==tSHY?t$9X| z^PV}cgrHjk3g~@kHhBliuOhQP5S{557~%+-R7gc{!AT#W`o1mF5eAStU#FG_qLEch ze5o}#cy@Niz`}wB@+Qms!?pe--g{5I({T&$gCqW?^MP=NYYwCThGF!`;GQ)EVq&^E zcQpuu-AK2-2_-q1wO4eC=%J!=n3s&?4?H2*oUXJM1j(%vCW&;!mzGr-%}sGvSkJ~s z(**&We@lF!ww?CJ*WO~j7ndWAHv!di&2&KOsS!eYn)YWaje&Kfv>IwK&Q6TdFq}MY zov&Vxr;6wCrRZW&^&a5^95;ipl>Z$P!Brmeloi+7S3@q+W1D7&|kAsNG+ncYy&^Jb!CU0*~I9+zeLd?@WlJCHwk_E4WlxBU{I(-sC44-2J$hx4HbFoyj#^LXu53CtA)SkZ8Ir2NheRgmhJ$o$Q;EJFpsJJ0 zlv7dRfj<22oqCBvkuHh<{!-Il_i)K|auVWxIxO2QHwfGX0_I-8t-0lwA<-zWsNB{o z!nD?^iTa;%2pDAr3-KfW%S$wsbTL!!wB(pxfct=Q2eiJm>4fO?f8f{PNL4QNivM{6 zgK8=AkB>*l|NBfME3NAxA4gOgvk9?jvySvp%P6`;(iS z%(r{V-XPFF+PZuF&-0VY=if+wr$9C~GGkI9LkV-Oj(6C5G3%qjsx?}_C)Fqxgew($ zvfWryzLz0C%BpBiGI`GneM}ppAtO^)EA`^Bq9QBx!G(yfs6=>NTxD$=^9MkX@;@~a ztnX1y(^RGJ?G?PPjhNx``~F9_fUVF&Y2S!Puxj>m39iZZ$$Lhk@y!pQoih3m5^eOG zJ^}&`tC-$mpX7hY3aOQ1K8v7S{I@oUk?j4MwQ_l$xxfuTed9UolQE9KweBM-r7N4q zk3zT^*)=lqRtifbioryr0aFW+6oW0Ywa-u-j`*PO5*i%j#bEWpzO}QkIV#OInX+i+ z5dKuA9!U7yN9%!B39r|d^+J-zQ%WpnU&qc9Ol;;~vW5-*4VIG!t_eBr_amU#W2)rJ z520@0WhouK&?hrDS3Td;w~aX-`<82X?RNEcUk%M^W$Usr*#QhVCu4+sQiW@JST{-MJGOULnD zvvm%7my7Fp$*!ZzLUid}X}DZ7>jom@ryDn_PkL`|y)6_xMH)12m`f0ioyNw-=5VfF zKJ8hj)4gk>&x0Bi#1Zwj3BKZ8`MUitGxEx|?PhhQv+0qNGgkZPDz!)jxdogH4Ft;D z&v3nbTx^Y3vpHY#GG;o$PCZysux3D5F@%G#QhRpi71ja3@SLF>eEzR5dZKfI0Gkdv zxcPk7Z{2=5aP$11`y8}tBbrH~U_41y@9j2SjeqZ|SlhKQaoe8U? z1LyB$xNUg$%LbQ>5gBu_&ihuc=CrH%U9AN<%Sih(YpVNPFH(#}qnU*XI_qaz=VjthTtC7)hXqpi-Iqfr4d2=LP_{HH20X-m82r;8Wy(m9 zc;cze-h?$1BY=E)#M~ziD=7DA_Da7nG1YZ6LiDRy2Nt_n;z~Qyv`f_)51`P zL3@=KQg($2KN=2FzjU3NLHwszDMggL`wL8tNPH7vVAHTi6VLY5?>q8A>c5dabHn>&CQZz(y`O_@5raSK_#3y9KRXkvJTUxLt62A3jP||Zq?oU#_{;@Y*CrBIER=c;ldVB57QnQ)Vufk_4Q3R|fDH z4y+r>>9{1%9;KPRIxx3NDU%qsIx;^$R(|~bq44QUO<2nh;ljhMo;aoTxZ(0RlJ%-h z`RF>g#IWdqiL7^xb~O$jOdnaeN-XWn0%Fd`GqciE4JW%JQoS)kf`5EQfzb9=q$V<7 zscUjo?InM=t=xUBiEr;WqjTHs(;Ibe@FUn z`u*-(YvUdUMHZt$bZQ!~#WAOsIR$mYlExq?uQ=CT%zX#B2+w|PiQGOuCMMxHXiqe} ze`#a!T~@WoVCnbwp|P>g>2|(hNpo-IM9roog)W*4AKnqYa7N&{eHhMurRriMN`1EL z@?|jvGfIwr%FE(;s&>d%!Ndiq%0KYj3z|E8)=B&~qgBbT?E`)q=nGXpG2Cnt#;QS; zG|koHi4_q2W!z*m(oeiK;!BHh{^>!8H2C`R*(d&|amrC5SK%Wgqbw5`XO=nkwiqE; zqZV-2di;LbgXavxWw9vn1qhIidm#Qx7rvyznRv(uo@uC(lMDVZq#GTdlFszz?}tYI zWI=ckqLDb$DX`Q1@RAk+4DpZdZ8E-|i}xe%LR`2PkeDd9+z_g9{`0~Blh3|5Ak+Bo zYRBJMvh<7VeN>%hSG1!?rI%jr!prvTO&54zyR?pO3i32m{aPF2m6Oh9!+|`0mm7jh zbc4PPyK~+WE)jb0AR|jx5z3b8fr4$W*HRO${Vvl6Rj1Y$q779Jh|3WdDE5r#jZik} zo&06MO-k{!{hx84!}YD1Hx~A55WJ*g=FBdx$A;Hm+aUhmRCKw#mqZ{f4LS3V32&ap zcJ0en_Oh2a-92vby?M*Bh+MJlo#y2ko5xxRel*o|-LBM*w0FHt7>r?a5x=(_l#-`k zTMWHWFe88dy{K*WVz70hj*YU<&w5MJ*X?OwA!UgX0+%h_=TW^N<|E5c5?5*Yo1Gfx zd!5{3!s8< zX?pcaRZ#LH$EnQbd3t_?>#h(wEAiZyqKG|v3trDE6Awm}jK#08eX)00R*I=YtAVV7 zco2vgCmd&S@?z+3pOU85kCywQz4%dGIek0NbfSIhb|x?_oo!4BML{&FX_dloYeTWK?{$csuSIVhvlN3u^xTVd9X=ltP z^w@OgktBNxe&<}iIRv7mC31OijF&`#CNkrx$+!DNL3FHLp*VAEtP2aCuHt?I=Z5^$ zA!AySCHYWq1@W&`gd1KpP?RvMkqZPWqC&j&7fFtBd=EnNowc*T=WurFaUc%Y%>!I~ zT!A-H;lFjWa52twBm94oxFdSCVNiwScZ~m8H7|TvTa)xt!+IS{rb|pQsm-Q0hX)Zo z4Eu3uSPMjab!H`~J1v(nG7`f$*Na&eHdUDTJT>&*;__xr7(Ip7^zGD$ zgn9;hxs!ThwuyRn#bLc1eGJymY%#{ruypoM=^<|H^TWUOG;nB2Fd&E5`%>OGxGm)* zg2OYWLLddcT!cHnn|W?-W;IxN<_7oE4qWs*os-+uGz&``c}V3&()uE@?yb6d*HTj- z3M3C^|9ZfxaHw?OozHFv)mB$_r8S2NWDB9YMKcTQ?N%_ysM>3%>YE_LgKr;@wpsT3U{-( z-MqwS@()lVLP|hDI+X5~P`bOjTjIQRyx%v*8*jY--g|#M#vS8&y>K{Z|Mp&cuDRx# z3pY%quU2fQ#uM-c5sQwZyu9rF`!uzl1Tt^lAQVIKa1M>lb;wJHj0GilZ*eM!lm6h2 z&?-}^pBT8oU-a?2)(?*WPz=Pr+Py|hq>_Y#h>ed=Q)voNJv+xhr$pRT_30*J=uz7# zwp^4Seo)c(wA{v+!sqyuVZ)A(3zz(XfdaPu+jze)Emr-xSV=au>}!BKzUD;k=FUht zDH$zaic(7HbHCRV{i=#-a^*@*eaE59_46sh7K=`W^kWYXdg{_pIpDo}ha5)e9g zF{KZW^XO&JZ74izN%GxSffzQBJ%kHQkbJ}x&8aV@TYKd{MWTJY%JPuhwpO7}O3v>U zM;_yPVXP&lc9nysS#q2y(ZPxYt)!SzpjNj}x$8dY&TbGO0Ayf0n3YC~BGFl**{sei zH*C(-jb=pCMCl}Ium0W+D_n^!;JeM{tz>Xdb$Kv<3XAoR^Xx(eK~Qj*Y~l^e#U0cB znE15^Dgv&heQqr0{c-jEk1Vbsu3mLz*x2t*A)~i7s#)wb2|DfXHah>w5?l7Os?ckw zF?^@O32Q$yxx4SvmvkDl)N)JAfvQn7q|R74U1CN<*Uzh=Vcg0C84`aFV+q}@{c>{5 zZ|X_$IK2diFuq-cKIY85|&Uae)UX#5`vd8V`mIc2mPq@M=rCGH7o) zQ2pn&0T%quo}L~MERklb|1F&un#4vnZ2!hM*kU<*<*t-GU5}GU0DcFpS$1%`{JClU zu;$GQ48H5OV7d`ZTkm%ebtSFh1AJb@Sq@v(^ZHocHhXJC+=^mBgY$zU^O0Hq) zo};-W`7*CnTWwPa-}h|+k>TxkI%msY72C)7ggAmM-Cp076Q@__-McrBCHZ!51FK7W zCZMupvhb{4qPf}qK~?nDzeid!QRs3en;=nz#`7BsM@B^;GEl-eV=6dkFID0W_TApp z2fbxV^s)~h%wGCp+jb5&Hlnvh(6&s~RHdYGPx^OHOyGkmuVL3nE+r%Sbo_a$>{}XX zN753r!L9)p%-_Fz!Cr{;ws7~sonTUK3GCXNEv*j>{><^bnQp?TbtP-;;UApoQ=z{I z_}q}>J3Vz(G}_wl!4Dq87N2-N&JVi_rkKAi`0VE1Qc}OrKW;b`akafeBmb-=fju)N z{gC^+$k$;*KTq6xX>pduN*h2#@qS32&H9Z8iOMM!zPI-W2L>7ewceatXXVlpzPi{c zVlWZJUG9P8TH;#uIi}ZbGCJS^bQQI)^C>#cRmGlm==&P(8S!&I>&F@f4=+#q>z>rc z#Kw9LhHTfvFL1{}2Ay_RrrEc@{I34^=&%gwWGoz=yB1gy|B!))=f;+dP-?8DOBAmf zA?hwe-55^JMB4F$(PBz6G9-gJtbFlCE!3K3a3YYfYi!m!;H51e{))>}MA5BTa;7 z6i(#qt(M;naR;DIsAh3Cy<#XApXY)Q;;w1nmsmbCY@ew!!_l?Np26O>pE!YEQ&Qr# zT~PrCadnBM%%vb zm1Os&0}Ll!d2gEyTnAeX%?g3dTNMILurH{qhcFP({`n3XAg;DmI;{s>qpf|SIzKli z(Er0ZhE0V=A%?4AL)6X&%ogIhbChc(zyJeBsXMsbN&4b#-oY}6dDI<=`UZ!Qb%a{k_TbO(vjRpqMF6fS1$-#gC zJEPQl9fGzMM6c0m5j=j3Ln&;?$pM=RJA(J#lWze6>1Ojwnz^&7@%8B_|?dm~j#(0Ocgq>B!Z14lc+HdI{QCY@2nq(Xd zGG?D1yk1KTV&m<&BZK()^Jh<)H9aZ&`B|BBLqmh+b_p5?{jU;STp=JhC70&sM*~Se z5jw)m%*@7W;t{3Ok<8{;Nl%`+Mr>SM!}K)0F0~LUfZjLq8s3_;akTQwR7x_OzPwN! zrW7?4SsTdm-6dg}8RXQ1GCb9j_}lNIOUd)KYkeHnYn00i$xsW40L?keHF_zZLtS0l zi(J{!S&w7C`*j;arXzSptirO$kBcf<)q?NGqU89;ah=zZl*87v4T)#V`Wm^!)X2J> zS~o^DQ?f~Ye*RML;XOIcA}hYuCvO9cQ;5GSm!c698}fU(5MHS}_O-j%qTD;~xXr2` zRkpD3%3@NIAhX*#;K|26(Y_Noo?HsV%E-9D;Q3Y4IDt!qnTB=V&fdbqT;ak0xh-rT zAnqzC;6bak&*$`8NAx1zJv~aM8F<%l?^|foAZDOt!j`vfFlTsXVZjd?@Eg0k2?w*E z`xbrVhnD=SteMtEnqgsKvr=ZH`FeHXcg%-V)Y`7?#PXpfia8POnGO^(fTAYCr288y zhuL^30jlTlbf01de5+8cvJ(?yMo_!EiiamNE#-0Zp=u3Yz2&R<)+ z0M{Lfdv9B>JwdnE;Y3DC5+jtpf(+v7TyJD23UM-iyy|slE5bH?9hby&(XW0cX2i}$ z3YUy4{4LXuQtg)+1#t@N#(g6-j}$|@`4SywySTAWGWBb+GP;JuiBxpI9U#1;qsd`; z@H+4N7h0ZOlW^ISH8rkq+oq$Tq3QW)N|LKvg9RQs4N#&cx=zXV4F^8txZ`F@N(!2q zni^;^QWWC^*p$C|e|UYIBnkRX<{gi#2$b{}4gGrb!~xhP(0(Q#UGqZE9L)vvVFkm5mx^^B}IjMmwQz zY#I!b{B*N(trssEIyyLh?}PY-?@iC$is%Q7AA$O_`>xlG1Mnii=z$!_>Rxh$<>&K& zO7p#rxRd^6bp_k=Y*NHsor~o>d_qDcAaGm{zp|({WhzO#36t`%d#?><8zO6KM(V72 z#T?eIT3T8zbQhfD7s`%0>`jP40|-YI<&~Ro(YAHxwja3U%CvOY)+Fe4yQ-vGAC?OB zFYmf^j2Hi{CMH_EBTtB+3~m|u;Y1I1K{0EZf!C}Wueh5MvFlTPg*J3im z+yJc_>EXhTjt`q25vsWwB>o%(J`9lUBsGGGftQ;$<7w%mdksFAz28-2AlhVzu_(cID7QPi25i2~tQQ3l zJ+I^t4?jB*W01bNkuRtaQ%?1M1M>jKP9d7hzp@f5fRG*+0rniy&+?z)4CXxduSuk3 zd2-Nv^416nxS<80kYl}>f-Lu&_QHADXwkk>vZm}g!h{c~4_g@6Q|2XL? zYHvuj{s0H4ow=Fa^cPae-D*=&lgpnWl&ZKQW(ISTBlF;GrmCa`uxaugR@Re~lfQuz z-PP6Q=kb084S~q)PPjOl?l)1T6$izI)kO6>&x^mQ*2z-kt`CmVFMND`cf0G5jYU38 zUxcj#prQtLpiFOu^JxPJs8N!0F3s|*h?({E5a>@$g^HPtRdd`QcBl7YVa)-SG-(Bj z>qy$**z(-t8-}zT4;|NUu`F>4Sy6Ki3#hbKmxclyd==fjydNcOeC%?Iu|olMRW2fL zNQQJobNfP}-{?50rrhnAXJS$g4MEQRG8DR38uL8FEyinUBj_XpGBdGj-A{d<=csd5 zjmX+kkdWkUFusz{EG6lMo6nd+W|2m!f=2wfJ4!(}SLW29X5k6MPUdbD(#DIL!q6Y- zVTk4POehYyCp%hbhg6hs;X$U0t{!hmiSQ2d=E2W=aH`o5;|n?bgaLmSp@aRpom*N; z$;G!iS%WdP`tB-ljeiBXbjGP6ibd(*f4+W$Jji(ctX)!X$l!=ARhO9k$IIIK~vokG4Sb5~bs(7!nfEu!=`*@L~E&ivO`a-@^Eo}nhI9H$(ppNXB8Cz5 zVJ3Jqexu!$on9yrMR*PtS~(qT2@tM<%z&qZo(Y&d>e9;j#?Q2(wvt0B7PghTH$)Hb z7W}b$!8;li73D`T{&2o=aTES8yr9feX*fLQ-*N& z6rb`96ii|QE7ZaBG>M3W+8@bd*|IBWe*Nf{W|px5?ParTdps%_3J*evw`xEjRCo?p zF%ha9DnA9xo|y(4mWKBXlgKD3g}S?9aa`OIfdHk_OB582Bll{+M8eAfPuL^8@%Xon zF$MRNY}LTrnCjrej4yjHp`yS}g8D2y$u|)HFLqK z!&O!@l6dz_!`4;+jQFloQ3ZoHm@&owXmjLCUv7+zjqwQx_+(_TP$R$X4Gau?&C0?7 z_1qhCbIvM}|K6)=@t|3E3~%ze{QU#$*&p}*{cXjQQgj6ThCNQ4UV6W7tbd<%QD_tw zQ8+HGGInC|@6)STHL2tNk4WMF)g}9yvVpEio*Vk|bAZefW;d=mot-DzRW;fvi~sYi z{zkG%B9x2Y;K@GpsIU6E9w(-xCPM*rQd~}o|K3n8t6I0xh)W;KkFn+XM-ezL*3plW*F-cGx7f}UXZP5IyOQzTg&)1Zk%{Wg49L` z{U7Z(=CXAyEsA%EIylh#nEKXeS(_H|T{T?*q*MN&sDz@*s+KG~SeEesSw;UeSuB_{hSzYa zTJ(BI3l$v+^$o*68!yW3chUbON`?_N1>TdIS%cjed zsT99@jQS(U!V9gpt+daly><>_5g#A<^Rod1?c*hIprzAy^{46QqH~j=xqeuYq zVp|#-2dV#_?zLag{kL=~Q{T?%5R61O{~oQ6e>E3Ker@pvkJeJAf;_$Ghv4OLU5JRs zU;GKVFxkk~KhXOliTEmaY_$R%(a^vbUba1D(7a;+FqF=yEllZnr0a#Ca=yh2F72O` zn7E|%VAyk=nj#Q{yzS3eG&CqICdzT{WNXNQs>)`*^+|%b+qEM{N3aEB55T7iFzJQ@ z!MMvmtL3KEr%B( z*GiIW$UL2L?N?P1-euO)xNTF_9)VyIE5l6O{w%+MNDmFc&p)j$(KFB|FE|N}&??ok zZ$Y_FGv5{lo;FZi-sC5zc8FiUvh{C8Ijtbv#$V&M*TJ*n(W~{j z#K6LphMt4_`ZpJ3u0mU(|AE8WKtR0KnSF%E`3bkOfw>VA&5xp@hi~4n!39V>2PI_J z>9)1_FJE3)oWI@O)hvF+p0IZ3E)osHz``(;KW*|y0{wqm=i-H}9O7<3{u&zn*34qO zo%88Z)C4c6&H@=9;Le|)?w5OxI@2l$g*d!UuIpMJ0&wSkXqQvaI5+h@nMT!DI%Cs+LHza zp&;0zc8czL4FUlVt>K7Pyf-_Y^F1j$xQ87#cnmy>>u^69c{`A$g$)q2X`g}@B?YBi z=#EH{!IDu^Bbl0#iWPK9O4$C_iAqGY_?$7Pap*-7`=5ykiE+#~+9oW9hSKxJ$Ek{m z8f6`CR^Cw0b$xz3%7gKd(fwqHp>w&lS+=u;>%R{tzm4`GA;ItbluNla-!kJ*f49lI zW?7;Cv4RK^+&6OlUoF6^lmo=w88_=F-ccOmjj>mMCklBzaoI_TjOk($pYn6cxn*!UDupe|Fb7Yp@YS zi;{3K;QXmL^8dRR_eeiJy5itK@Ey2S9v-1KUqpow)m_F8LD*ckZ{Pl`ga7ZvB%a8~ z2(|_G3c!6UaJGvr|0K*y?B5F%&$l_PCE%m)Xh{&YGcVG!grBmaexxHQYC6k~77o7n%eu5AA6OKgNuzeJ${*zer)>*N1YD*I8pNs6 zSCjvEv9F2=EOg2?aVhY#MM zIAh}BdHTPX!Kc)ZllWlYN<>c1lHB({z~SS48?ygDL686EK#9PZVnzc>KQ{Kc-tv$O zbammwPPuw|LNuJO+f;LQoRX6h;)98YjzHxFu!fvfzy90WvK2|cvI|RONBvJ4fNGVj zbP6mg;s;ypU4G^(2z?6+d|FysKY#ywT;wuOHci_6bB6P0S9*=)x$b;CZ)uk0th$OG z%zT)9RkFrio*fVMw0o1mhk;{I>f@tth3ku7=nyEv9(WKqLZMA^;d8BF)T#u8)aK^5 z!Fd6k!hsE8Ns{yed)ow*dwGJ$TVm*&eo({SWCbCEv(^7X%+hp>bpsous>;Oduf!;u?)e(Bb-Us@8FSEWZ&sIHfArymSEk$pCdi4D18B z^p4M8bJBdPoVE>Cix-2!!vh{M-v{5^p4=B|E30b_ZEe^&>IL9Bb_E|FpYP2K;#s~b z70xb>h|{G6xFPAStS>i}=4pXB{oCB*J#<7Ut>6vlZG5=QGpSr|V}MUHLf;ZX)^>Kh zUG%n}<>X`n3$Za>MiIlS7m%079r`4+H&2VOVge5p4IpOySa^@{24BcI5@MUqacXca zyAQf-us05DZf<^Ns#onC{B42xS%-QSsTyiH=tb}&63!>rKj%Dabmis!o|Vrc&Yfn_kG3WQg{`N4rEiFd zi8-Iny~z0EvbTWq<+f##ftbr=3^c!gb+53E<1ktkScK5TV4;*KK;`lG;LkHU=~o9X zd3hmU!T%2B6vD-g$B}w=KZC#)ioZ)Iy~@@joZo4yw9;tiDu}%fpi6mWOgwm zrtZSW$jt10v!5(8BayBy^>qr0%tBiaTs$Zi&PHh+Yz$CjXz77GF%3XYQun79+&DR;&VR~Uv8h4nR2S<27!kEo|+8C z_W8x`;kt%@^zY^o%HCd;tlAF%!O%;EgjS&A0gHgW|847T{wT}ESNhhvrG(| z5&3@|9dE$^BQ)u0WlXFqUsKbVWEqL_b*lp2VVtGOf9|+W{ho-HBuw0CyK!(36H)l4 z_x`MeC9NeXA3sqk7>$xSQv~g?5D*YhQd7%Vyt!&gn`p62K|vkDJ39-ccIOfG$WQRu zndxb`;CsAlk@*0ONYq%A?t6N8aJ{J9C|i9P;n=ogAR}0v52q4l>tI~CpYl0PopXJ@ zz{U&l85NU8tub6!Y|1w;+@p-g2G~~yb4&tONcEeUMWg^9PQ6AwfWcktv{G1!>yi8YzN;rXJyJZ0mT!dv-E}bRXd(i+DAQAvQ z2n#)$I)LylEfsQg!*Ht^T`U4d<;kW&clMNEOuzK3aC2X zN*6=D#Gx*Ap>w-x6xXUZ*cRyDMP5=aO5I3FzHeY`eCu1DdI^W(Z^gHeTOsa#Z1ndx z0-o;rktjY;Q*aMX2cSL6$7f>Vhs_GG`--2x2NpsxQHUTVCE0sh$DqzL?4(3f_8<|k zACT+UiHUt6!)s5^`~dG2pMU`T9=xI7y8X^oD5jzD7C5MeP51_0o3Fpb*de^?ZTb%V zyH?pXu(ZK|dk9hgU4`lG;@aTtDyHE)ExGJndg47I@X~5q?KinjN$Q7=iTgE4O$VCx zZ)9X-AiTl8WfmB3$QqtTOUrf8A)u=CW?_Q4$*#|Bo^$(5wNU?FmhmfUVN;g=!go=V zNHqPHj^}U(y9F$xd3)BnkCa&x+Sg*IBxUkH%Xw>LlGTdbU*_dA+0xdo^TYrf2{zqo zO4s8xe^jRyqS=riI%|W;xwVZsnh2qFo>IbDIpfdA!7GGH2@-GdZ`_!!RqsmRr~Un< z?2#Rn3Q#Gbbn`qGfq`=RLmQ&1rWxI_!KZlS8DbQOFG7|+U><}!p3kj?bfi?UKj^;o z{Fq)ONG-Gb*LfT~*81ERf_|GojL%Mrd&PAFrtJuex`BY<4tGFxRlh0jq?~2=;2E19 z-SO5mMR-Vy;ce3iO30V41AX9CX5nA!DHX-7h800C`BZp2mrW}lf8fr5!OO1*NFA{u z@3%Cy&)e>=qCoM#kS;TDh~ci8t=+#nw=rtBGMa`B6%-U3d9XEz2ffrHjvFFdQ)fpH zkwzV9&gJN-I8h5=>I~u8!s3PB zLSGH^GAq2<2&dY-R(35>by3*x#AfywCRLS}m)?h-??PT^>=k#~gp6Lp=BSH(p*xu# z(Nm>S0AQU9_i_X6IwfUP_H4q7y;@#&H#Q)0z*`B7O{Dr4p^uzI%HuDy+88uE;)Z#F zaPo7GDq+bA@_4#&8(O&D3|0~_GBNpkbSKxG@F#l%ml3*;8I`*s$pkZCbmdFS~U&V1WFi#Kc* zyqbl4gBPK}!S~>1`7#VSgf6crSj0op@TV{oAeg{#86eq-Nv~^0&VLWs!R(2>zXGB` zMOJJg&VO3QcFia@3&Q@s^vF3mP-1S?ebaXs}&h0!74i4v&1qFpQF8k6D zCZe_`>mq)~BZ*3(^A{HbV|Dieg6((Zlg~>gMLYt6->UP{g7)_I-=vzd`ZIy5QOLS&SVZ|;O;M=Ie$*EAB2ZL* zbg21Vttz_9*c9rZ;LeAG2nq`UoB7O%z+x`l>MIad8joW6w;C6`rNQWqoK~zHXBn8~=Fqart2@VX&}QUch7EtW zv+ou*Uba00j;?H4rTAZj&9R;k5P-v+Og;%FCN}nb0XffVhN#WV&1*C#rw?3uQ(H_k z6rMh99m*T;ONioyJz}?X>4`O0pjX#eV!ZzB4A3jiaj#LIM5blc(Q0)3BQn$VH=Gte zJ#fh0tiS2xu7gvLqq7W+-$nMLd-nYW;Dd}jn|@$$HeBZqf+0!~o5I3PyR+l@LbRKF zE!E5qr>P}ge73!MS6>JN0Y?X+%=Q3rvuZK&L7A0KdH^qUeKJ1((&(S}t<-v|`f&Ul z5_URCPkaRh1%&tW_YB6XL_kpX$toGR9cB-jVwL^i1Vc)&+i3cGXkMqI!PN?NF@8^< zzz?sNLRTC4@IkoT9UR$5!}3)TvLpWx1w8o4FD1_3ymbR%&v$(Ni9pT3f`UFSYi1?e zrN{kLXfb!c_)E65v;?7}M_EHoGPCkce?~2a=X|SmL|bdi>;ctio9Ou17;YW5v7t-D&u<%s^a;PQN~^c=JXg`K(~u@u zjcxP|4MnewA*a14`YdE?Jue<|ATEqthNpW6d&xW_B4W6IEsFNaTm_)F|8S)!<0`9C zV&myPGR2??3*r4VQOxixoYwhdhe)iv0>Hk?qbl%fn7Ei4=PtWWeM3I%%xibA#ztcRhwcWGcS8etCF>dhGNu>@9=DxL~G9LJ3ev6lt$1B0$uZU}kO7?-< z&4`Z>P)wG35=$uv^{TC{G&0XR$e3+E^~InmnhT^mZJ&$w^AKhE&9O(n+CSX)1y4=& zf|m@38KelXB~!_KYKc!P1feDgj7#*Q3tse0(BzH(Yz13$Kb$o>DR)1>NyQ17;iaVm z&f75F<10M5>%p>(QXU>2pv{u=#X9T-^T~tFVS0M$jL9?wqT`m-o^Hh5_D|Q!PwMb` zhKFP1jo^AiRfesnYgfj%x4CLkh6V)&DcZG!I-JgHoz{1X|N)#$&+a_iRYKvq9h zw9!_A=zUrmNmqO@1o-19DnJaAM2tH%^e0BFWrksvNsur0wXcx2-TxwLw>%3&TyS|6 zUW2kond4@uXHCpNb2FR{FZA>$=%Aus1MWG!HOTzCx&HLjWY&!e_SHA$M!Tv0lpWv{(?(26xnv%`mCcBS%7*6 zMskErzkaa|@;{iQ2=S4|KmcA)96V8K2mP?y@y7jN22n>`1rWN z!1v@IecR)8^x#mvnj~m**DDI-O(#?R`eO&HqdbARL-{&^kgVg3OLw3lpf1q_JJ~ju zs~93?JeL zZKxD@%H-;l>6#f<0n+_8e)IBk$~&~s&`>|&%M&Tn)d`n4O3aT;vMexl~?9aYmC+B)3$)C-*74nGLCm^7*5Ll!zkP^+z zjo}_$OINN`6opigih@^%xDRfBqtW79jRL{N${HGN9~z`t4XPbF#m93>A^$MyZwF?*>3?0+`l5N1s$OICQl~VA$3?-yrD6=6dG zZ;q3m!9+DY+lS#aNqOrzz%dv#I!_!`_(Pq@n6m&#nZ`f0%-QNW@4^$s(hSmCclO2* zu;5TRo`*V$i2VuQrP(YleR47<2>?rx!9Cyi<-Cv;kkN3aXuHV$G@HZz9iBaCra!Vngu+id z9yP8`$11U+f@eC-zP`S157$bjkJx};Yy6PX1miAmZkSK&x{9hjn2LcEc>ZWpeCHT> zAtBgr($x%w6tC#+yh-c+3})hBKKozYWk^8Y-9xc%kdRsIyo|tI?8G}`d6MJbi{qT*BRu5RN zs4PdRQ5ui-rn}C0@c@B==O-={e8`WuwQA9U-cmZ2kdeVqOpilT`-r68%)^0y0UdIr|O>QU;z^u~Tf$ zb+SU&LWecjj5Ka5B}p^@^HOYY3HeL90!13+YzEWPNUMfM{}2I*VWY+?2BjB3&UL9Y zs=5sgJ@~dn?|gZV2|M{cKqcHW;BE1YjOJ;0wdA41h$18XHoYz^)<=?kL zng1j4X?iTF5;s*{<61B3lfl0Sm|@of8X3Id^TViJ>g{_1mV>b(L`h_00vZz~w8 zrVcp1G*--d@gt+K4C%5BP(5zZygN~lI`3sEX(=I{gdf=ablO{GK9yeP|XA8geKG zl>_1a@&$hQ$=Mm_EzSF|&i%KebRaG~cRV|yjpBHYi_o{WCcJZ}#JkDJrLbJdC_C)98(}h3AAQSfrP6W^htAJ$DJ_+HgnDG_Wj5|3y(?C zr{saWyT&9}(dk}W+%{BI{`0ORE33iTOiB}=E-b_hIBh&=11;E2C>Wg>F6Zm)938dq z+PXT2%FQ-Tv#3Ww9w_LTFu*~My4g66Kvb@8Big27>{8DP8_zvE_T$hbB2 zF)6QFc6W{vs)Z2j-u0$U3ew>5l85*Q2qC~-;q|N<0$d?M|6v9jiaM0 z?40QRK}&@@4hz~=f6rHt=JJEq%KADC^h=f`gKUxCZmByM;iZGF%uH->lpCkq{n|RL zD;v1KN~g0^WG5VBn?tj|B%H)VL>KHR*@$W?upIL+y0h^J2sRi36aRV)p2^D05{pH$ zs2#apV^eycc7^M6Gq>|&t^V8e?V&cM$QSFhyt@q!K$gIu> z-m%SZ*EFNQudlK1R*2u7O*H-PDUYna_OsfF8YhixB5BJp(k!brb^>}KQb=bN%G~QR zkh2hmMBGmvRj&36d__*HD)3Kv?I3DgkAEM$JZMoE={%1V*v6qtYP^K=V_bQDB9%Wq zF`+o3`_mcc{(UL=^xfTxFrYW_#=)axrN7E4IzNUCxMj^ko7x^VMmDyq;1BtyXq^NM zRN^b&r8s97aWGSmJW=EJ!U zfwh~R>q7@6p!3emyJugVwx?2nfYQ`-kMHRQ&K?Nf1~?-`WMr6JpcWvCd&(OU1rA5M8v9F)N2q8D8NacZ6Xb3K1$s&&M+XU4k=}?E(2E^_ z4R_SM0tYcv$ha3@bxE_?K1zn-o5K<^ot4r5{XcE`6;qFQ!~LC^QN_QqEk*^LPx$P@ z3Zpur*ux+h1@0yN)L6ReG}Cw?XqNJh**8Vg$WNd6Uaj!aDD*y&x>ckZ3KNo>8m6Rv z&zr(9wfi|kmP9l(32P%6VbmbGeKb-Fb#gIB`I^vpKp5BP#n=wXMI?{uCGLW|Rli3k zclTLpdb)p}*5$q5U+x%pYy)Jru^hbt7r>?Emy5F_+Ioy zHiAK0zyBtDr_s#U1_7OJprdotFB8U5uyW_KLEj@N03}E{pqrV!*gh9={?&sY^9`!# z9ib~L186o6un;2P)wMza9^FtDe+bPaKL#~_fpKY!flnZ7YFa0jXt(7@?g6%zQ{f)XF^60e0^L606sVd0^=7RBAtorr~fRCgfDR#(tc0KPwNS!i(8~^D3zGCHY$!-YL6=WJ3c{(^ zvBR+Y_$^MZLe1}fNZsZAO|cRKl^*nm4-LVSa~^J;a+s?HCg<3*vb1uL>L}_mRDP4f)ISRt8WR zUJpdP>fWwg86O$BE2l+mklfTKsmDwVet)DVQ`9#lv@1hO7z6&P2S2X0Lsq^4vQ3U# zQVa}(T?=*K$n68UNS)W+?AHH83A!x}HnQKun2F{Lg^EN zdj-|DwEKrFg~9$zCA)7D@T6pAMNxT#DixH3uM> z3n*%QS7wNfYcI`^{P&VpZ2*w6NTKvZ%JB+~AS_h;Zm{gM=fCRpqzQf9wV80FqjiW|9L{lR+q}ku==)ZAB8sB?|wORI-&Bg0}Km ztGJgJDX%Ut>R)#D41W_=NpNZ$AwYiF2)M-H&5761 zmbh59+2;I-lPYTs>$eXN@hDxbg|ctne9st!dBx480CT%!Iw$q!l=*hh2-%e)#CxBc zPd+?i#kqcynE~g+eOH0S3nsqns#hr=*?1GHew#E1L@oZALFCi?Fw+pR=(~u z<$|r7l=LiC5&rr7*js!Xw97LICDdeO?OvDr*0o8(F%@=o3*b@6BqH*?VZ7pOtLnsc zY67c3Lzc%KI#^O3gp9Oao9Bfw8X}^1MjMPZwX55=B|cZvAx$@wQIFwI70V$vH#2kW zxK+GQRlK-fcd}Al?Pn!I^*r6*gK2VhZM0=D&}rNDWM>x3a=4|%-z3=s3x+6u2}z4& zVv-A;X=hEINpjmV?73{oI&z(~!uN{984N(ZfyJsA1EICpsg zWxyu0l21t=8z5zZjgzk~1aAQ5cM(%l`-X&Y%3Y&hIzFTZ7e~vIVmdlHZP(RXsF4Nq z^w#e~6u=9SLLuf-dz)Poj4{Qn>cYSfxb|d^6NYg-TXY8#J}?EmCBcQyYGMNM`WJX+ zjr?@kr>ZgWdhm7tY<`+IsGe5niEG~!TjTlD2Q2@Har8#8a)n~r&HyIErNbo>%>*O4M4?Ct6c@}>YC6_e4b z?TQ%iy39{d08!OPL4N*qOoj85Cx0bRRwa)-3|^vLNk|goK1x z_jP8VC)f+V*INh}3B(5lhi5#n-~yTNY}Iyc+2?Jjb*0JaJ@9XD1~dc@rtov(@!|0K zZrekx(ViaVt?K=2+6jq|C2hRtQW@cus9-HW{*K>Y)X*F4a0SQU;Y24W40V1?paGH= z2mk6<^BA6=R+C?Zb-jG6&(B|OH#Ic8gI5B{s^YU}&%%uV9&bZ!xv5Z->sv;Ks=Dq| za33DllaBs6b2FOfqM~7HxH1Z+rm9U@De9_3$r6a?Tmg4uHm3aQPl5EF*Rccp3BQfQ z#kXA}9fI0AtE?#>R}eg&pSUT_hfMiqzi|5*R~~0&suA3+eH*>N~Ak#)Phkn~KUuaCsB(_#0{l zLqpFdkA4(H5Z0U>EUjiHF^h-qss9j#$F zvA@ZIh`jN0pU{R+Ffw6+=3yAkV*>*QYGD@CT!``h96*v8Pd#GcL+{U4MwEMQIDiLe z({Go)vTNQ_4le_YcocQTv`|{oAC&aH9RzMDVnF9%P0X z-km%(q`L4ID01QnGG9|&wYe1SDh2n-{0BARb6y@b5n=P z%|(>{&uLIp6sbrl4E}5{vpqGADKhRPheO)kQ04B^(h^_XBjs%E8ocKnPTCgUYSP~& zn78-m)7r+4KQ6woLo|8k)AV^R4c6VFHj-4?6#~b#<_ED*GYFCRd}p4V1p{o0N6M<1tV*ZyMN6f zx9TFke}8net&~?%0|8W3^+?^V&ntU5$qlRt<^H`FH&FH%c7GYTfdGyxr|(pl694%h z>#?7~PBp|-BZxodBK8)}I^P5T4<@#+@i{qf>1W@#KZB+h0t7*(Z> z(~ZGdI4QCcGz#pTd2Y_O9-tP%D70Pd;7E+j&9$gSUb+cckNQ+qQ6tbUFJrr2gVbGp zk$vg%BI{eG$;|B5yNHO0&GNcBX*pY4i$pK))Ktb&t5Mv$nwsA?omFl3ilzo zdOU`eD)q zSxYZdgMPi`^l^DQPw^8B5j7I4>bR$gReQ}ON<(K~`iccIo?fs5!7OnygJEN_FdnHS z@zi#YXUctjQ!qS@M^{(3`ee=?7N!lGzDvr|1^huFs+*l_B>S_2u^JmUr_p??pV{*3 zuGn_VvPl(VP2}KksKL$$&TRWjv~ZgEITL}nbqiiGj`t7^8j7w&_P)t2ng|ipOLaR= z(w4T8ICTg`IaU@?Jb8WPu2JW&U;2MTDc=5@Fp~6`#M)pfL@-vwRNx&Nn)8{n;Biie zXlNS=2^!iv8nI`m&DmcI5%ov6rdmd+;PhxsvW|&9(vC0R_w-^sV&;_wctc7+z_u>Uybw6*c@9rPASn#X4_wDS&3F>86 z!Z~! ziIxd@#q~T<{yO+=OGxoWmU-<$!nQu9g)f|J!Ih0d1oaC;p>yiPqqg(;RGe=mwQFRm zjO2_@1)m7y>6C?om25(L8EO<7recCK9%_hZlC4%r_>SITvX^ui43Hv}II*eeh@kTz z>sHEfq4k}cGaPFkOk^9a5F|>=;S`>9W}^2vfBV@EJmTltl0CC+Hx@qHK*kH=Ctq+V zMhzq3ht|Ko{(f`IPPl+}c5I4^f1J9kD#1p-;SHU2`zuBfs6h-`qw|l^;o)R`yMpKe zS~b7Q5x<~rmj$faE#R0XNAoQH5#Rdy;>YWSg@q6C@#gW#t03$dGy}WFz@^_zW_iaa zjW1>mW=oCWKX`c=37Fu2l$UqNYI%BIno^MF5Nc>>fRih*nfWD6?irp)4@oe*p6yfM zWw^~n3LOA2fvo#`IA}3uHaCAm_l=TUGHB_V+w^3gKD`FTimak8;}~7}AFmnw`~&Bg zmpjKw)?qr=Bvp%jHtaZ~l9#J}6@qX-j4b6>RaMzRd_VfGUmn`_%Gy%YqtY zF3sMyvWoZa42OJb!2FLafft{q=h@{`pK@g^8yw{DqwQ!&oK4)u!Y@xap7IF%^=rxf zyq)!q)Ey)zM3P^z{KGp1a`f|1&pWJq4Wz+F)}o+_+T7AJJ@?&PzF5~5DwdNBx?*#1 z2qRF7b!g_+^p_;LV3hvP>}n=b$KgV3+j(zYzLN1i&)qGJ)z zWmjCnsVh-NM}Wb88ayD0!vT`>>H`XGZ5>J}3racL@DDITuXwSOO2U~>L+8%>-|=PO zQM`!qKz&^HH2=pGq{l$fG=q?eor|LxY>DAa!{T(0*94C+MYhWVV+urr?1P7MFFSW; z1Xa{u%IkVc!M=}G%)km31oQXfsrZ)XX%G7{92V8OI0LTTl9EbtSodUQNZATE0Md<8 z>Ku1(fB$srY+_G9x9J5Sv7 z*_hdnBAG*b1Sy4u9|)ylf2T#Lvqb56UHrz%n}&;xBFQW1GpE-)Ox(yjc6jk()XS6r z>&IvpHwi1h#Ryp_wUgxL_}Ok9vbNcm@Z9$WeHYB8jxeKLwCQYq43idne#jA8RlY?h znw?dw*gSeEoi;iexYAeRRx&Sr`7>&}_96hA?gU#cQ_6Pe7#_`@Q^uA0B3>yaP)4WmZN@3P@v^L4r>u5qof8pP`g|Pgj@j-o1AYLy|_V zArdD&7!!P+63{iW5M$hFp;RrqFu@RnWrp%f1lKa8iu*XfH<7H8dz3cKq^oMkUQT$V75;#FDO0{J0ucbd{l^xet)oL#O zRKWyL7#!Bz!{AE=y9Yvp(bj~E*Q!(<@)G-+F?}i=eH2VhZM;8}uhq6)SFqgcb@8L) zz<*BBkMbeocPf_ zv-El)B``Co*8$+4{l-X9s~s5`8OUe8=^k>u{22>lcJ?8?gyLj0Ik(o%K%^3Aw0JWn z9Noe~W-j+S1rST!diC4u!}}ebNTaSh!_P*uQl((9b31Pxmr?y8El=DM3FAd$`4WOv_N@5<$(^DJMB44TKod>=#;1CH@3 z1`L1#jE}c;Lg|IW0YSPRtu$0ldlje(iHUvDvZ|m88STm?d_62W0dsHS+0{6P1zr@+ z#P^4D%#8F;zz_kc(*r>|uMHKD#Wx;LBk#8BO|%{yAFiKzT>Rx|16VXOBC)&wJ4J%t zs8t?fjM3iv)|8X$JTK~+DyTvc_45&u@?hbeRzTO37s+Bf?}yWsT=(@}1{%yW2nD#a z(<7s1+0V6>10!A>^3jy1uhh4r5@5W36Px}p;k^mFZkyA^nBD#Ex&fEp=cjniTcai` zlU2i1tO$fEA&vg84-F>ni9m4Fyb-_wM&&BB6Pimno#V~Dg@^GiJv}iKnkH@}HRykR zo)Zl)8&tmh$77HMCwc_wY2+^aEgJ5XD0caL1%-(sS*Cmj4GoS0>4#3MfOC&*kF>r8 zgJ-Sl&T3ySpOw!x1%kt~X0`L<&j!ORk-=c)9r}=IYir9S5%GqcxG~ne4e~Y>OV*gD zZR9s5K3A{ju3hF#93k&oO~=Jb#Lvea5G}u9L5KRn(W~>5w_T?zM#RL#kDfePoKxU= z-FmQ!Ut>6;_wp*=&70n)-IAT4a_`QbKOZ$o9v16Jlj-RV{t=W+h{14Fq?aif{g4jjQTX4hslXW8c$fz zY$i*LP`8uDC^&>)9`A83ORxY>(qdL30Apj|Qz0*=k-z>(HMiGv_w;mN4m_nBqX+(@ zS<4Ete?sX5wPmSQ7%4L0I8N&0>jP_o1A8s2#3E!w6NnZzZtlE2zfz|HUGTks`}1pk zDY6<^(2KuEx90V++7CB=(u=uM0*YyDYJ8-qSe%ziPeCCEnuzw!PLxLYFgquuVpC7i zs$jXHm#WM|I^l<7XnsBlv_T3GE9HSjqeVSiVFD7jkp7Bw7+JeGIQ*ybl0r8&z&DLa zjb5~>Vw*fqBlLb!IVO7}*zJCRa7=SMs@}nT{ z_tYsu_XeUP9PU2D8E-WE?V+&$gT1$ms%i`WMmM2|3aChzih!Vkbcdo~0ZMmwhjeTN z0RaJ#Zk19Rk?w8~knZm8-1pgf&iTK0jC;S`4|k0BUE}D$!;ZD)nrqG{enBg44HyWt zT1;Mjo5#8FfjM(~Frxu~Jx#V4uw+H{m%JKohArq43G)O!P-PtfG}Ox_CaZ53mvxG+l2NN_tKjfdXl$&&b-uj3Y-4XLO@5q) zf_umf|Kdf=s`|mGfq_V4J)3Q7Ghu-9Bq(UO2DCDlhKAo)zCuLx%*qNkrqFbL|KAg)%C)PE!wGX21+8ZAnM(70yCAV6P>L|u8MYs!r z0nbl^mKhZ#cw&T4fBqag{2p}TpZo%;d$coOyf>6>RacHy_yrj8L{4$5ZI^^Zi0tztt=b7ljy~R zs56NZU}2SId(08k9slN*#LH*RhZ#&)meO;xBY|HV)cm@XwKpg?4lMa|~eo@9?o4 zi`XKd%D2#)XQ1Qrm#Kfty4uEg1+ml(H6p0WEW4q~b4C9S&(-43oQwb5hg-M0A4Kn5 zaNni_gUtPL=l;EtqNGT{(*2E&()C@rjtqSY$(U#Vef0g50O%4H7`BoI zh{eW|@23|w>wf+DGZbo%e3j!|$&tLCMS>$(?=9G4`*I_u)+rp-bp+%j)tQ?>Phy&P=w;b#mmrl5AKH&CzJxgtZKdS9fkRg+qd6Al?v(#W>99v zd$nxK%G$NFGAf|0W5Kii)vH%f`XF5|KgOr&h^hr^>LpW^Khu{Unx!5d z9(V5DyUoHvkT*E;Z4;tcZ4Pqi1W$n}Ij3D{fLMt{x8xx&p|NZ!hkANk#2WYf&s=79-6?(iI^(>%?MbwfV*F*rCs zV9$!y_+HQd{d#B-fz*P}pSP$3Zr3*?j~(h`U@I{ohN0@bN{S9r6OiWc`5Uoy5438q zA!k6KlN8u7nZ3Ncz`O3_Ntuf}Sh3tAz6AHb&Bf|G5Yn`NeSRAn5ytM?;2#Y-Ah7V9F+4S2u^ZSBBLtP}t&~9{B50^iP z>4c~*fB*RtUGVht^Gk~}Nn^E%E>dY!Z~4)i&GB5-b}*(Su=RMXv*aB?I{bEh*X!tz zM^0^Dt26o~CSsyBy8<&u5VujYO7nr`=|C=|xxoRrxS&X}9-CijxT%dUSeePBOf1Y8 z#^7Hez2aUN#BEb~w56yRCN++Qi3zp%iKiV`hkw3vJ>Ex`D|^)Kp)A>FIj9$bz7@v@ z4nn6Z+fKi~{ISb=Dlf zyyBHGO={Y*(27#Xa|FVL)1DbNR)$Xq5zALsR0_=X#>%ogjfNME7EMPYt4`d{jo6Qa zPjG((mV4`G8K-kasVFz{T=*e=nk&HC28XOS+? z3Tr|ZjWZR{=uh^BncVsQQF6HYJ)1u7e3cdSKZ1l0-%;_~4Fy8^Dx^~w^|j#%MyHov zYeYy$Ol^LDU~W172EjyHx){ioqLYuUBa>`+tPX)^YiVUWsey8N2c55tPVp4Bsg}v> zBqT7EzuT>SWD}hG7Yi`b3;}=fQrhd4XU`^~iI8gc=b42~sUmvh0z&dRCVJyUplc@c zncD=fUcUxd-ZupT^Ut?m>RNQr&iY(#v6k31=1%fwQCqi= zTRx=q6+b*ZOfqg9#Z)uoz4gJ}zsz#iDy8gK-Q=qH;P&c6zr5D8P+Myo-Hl(0D0!Y z)ClG`uJGs7ssH9JgX~t<`xn+`e3ENCirYREk4PWd6cc%3>6$m`?HA&77O683h&u^& zpHH|$fM9z5lE<0v>PU0Mgk*&&>W%O*vPH=1E!G=k4(G#7Aw=kGgp9Ib_5CWZ$cH!I z?Qa>hv-2}{Fr{ZcqbL+nP>CV(>J2%s=Sb8Wcvx4|b2`aYspP%*X=2$y?|R)Y9ED{a4)^Hq5^2wbh!6Zp(NF0vD6A_TDesY#EH6s4b7Qbp9w%)>ZAD$v;#jNB7ZNX16S76gKqxvB8>hmr3RI>xat9L%c!H9-lR2 z0B;eGhlg)UH={!2!=SDpwAxN2ULQPm{8&yGv`UjKZT;;s4ha^kXiV2!^o5~7Gs(S# z!%)h!m0#jJmu}w~^Z7JledglI?O1x3f0%hp@=ZnQISi|@pX5{xbA|iy1!jd+E%-}g zPoj4HMys1e=1Wy3rY7s+*VzZQMd?$t*|RDnf5u#SVrY-#ll0ZA|D9Q2G7^*@9HQEE zwAd?77<|<6du^i3) zo);v%c{`5ZekwXWd(QA7Mo)?$fk>sBYq9l#<)=>}QG%t`Pfn&wUCahc!a4)*ySobI z`xQsNa2h>Vg`+X{zFxXIa*}0onM%?~>1Kkf4FhrOW>W6kTw3+|R`&PZKN4NoPzBr6 z>sHm(525NIi0-OYuMAT1d~AShw!x5NYm*`2hwHH&0$s#e=u)r(OG=2Z2}8cS(O#s8 zuGXCJZKQ!#G?lx8x@$Yv=pd9Y8fl!byCVgU6vJ>TZR0}n(5Y&_8o&3%#Dr5=drQj{ zl7+k6Oz81UP4LFh8dEl2;IG{Zd2IWwb5-@zZAd{UZ!+A~MJXe7Ufk@p2I<#_J}uJb zdYy$hjBR(mhnwDMVbVJmKfc5BN_+VPE0l&acyCw>bE?d0+dfm_xG|w4fzPy(>naJ( z6t(W{yEh|}iW%f3nOoU&4@a;6;Fgo*w6^3LSere#<2kj`t!$i$;~6I3{|+nX_}DY@ z#eG|1mdn6vZqjdAv4Zwn(70_G+337>d9ad2{kDz6F12UJ5<4mxwZ>$#XC zuKQ{nLGQm=-{UQ|PGz!SVFA!cQ+qod7d^3i+#zTkL%n> zDZebAW?ooZc(IoCsO;nT55Spc;JzE;C5dyH#&1>jd`Xjdr9ha2P6H` z_f&%z`1ej@y~Mu-H??|fT(+r|HKjMPp1^c z-EU9pm-WgS!*CEUlKCVfw!|`+dY|B9?$HG;!Bbo~<&*oYC!5x6n}v@ta!?VbTXqRC zm6y@p7E%)vLTJU^WheQ?Ncz{bY4Wjz7WfMnK`XBZ;`UI5e&wc2WzH z3b~MGm+v_x)-5kiRzt&N@%Lig(A~pB@#dD6TM&hRYier27BRhyU}k3Ku%Lcuw|CP6 z^KN0o7~pmtgN7HDYS&!TjmSm|``E1R;|yFwz~8Zr3&!)ai_ajS^Z?Pq-Q9dD4Nx-y z6yYs_dmo@+3Sg3r{e3X2ugw_G`SMyPFenJ;2Av)Y@E_|6g9^Xi3>zULZOwM`=1q_cw_e!Lg7V_ucKHR;to?Y9Y@i9A@xbwNIxU$zNk;#E+Zd=<^}sgT+iww5GT{9 zwQTFMva(pc%6rog=&@>6%@!5QRaAm~tl94`+fb*pYZPh}zNcK5^sMm8b<(F$En>^# zNX}yAC^kbpdE7yQ!+>Wpyi0{Ss0bHKauBT8%nXnL2gb~$A>$yEXRYh zb49m#Mp*H52Y+jic#?SH`Mk4oU$ly)wS8To7m50$Ic%t!%=~+G6+*=qaGG8=(J_2? zAHBqWup69tFX{wmIfYKzAqRW^1}&9Ekl^bvL`QtsW z0_Cq*-9+qqRl6jbvEm*UZT9~KXLX&aOFaP73wbdKjq#m=}B8UEX6?3;| z52&lNuIq(=+#8;B8X3UVD<-<_re1t>w)up((6xxhMrl;$LWg|YFMaI7{p1--vSDK- zZs4e}hJ}Z{R#%T2*xj%cHapyAq;e~f2~}~Mvt|Qz zG*F&x{dT=5JfeqhPnwb{b|BwgPsc|tb(ez6@;3BEuU^GIkNpwQWq`t2wwf&_1o~J+ zDg!SsZ&GS%o{hmR#OCTW1t+s}3M3x`bU5=Z9Y_%s3-ri)1Ku*VOa3k?Wrqv4dx*-c zi-3(+*to&%kiya{FTBD|%Ac4HKjGJxAJ?w`{<@-_Y4)N(kYU#CsgBIooq=q&U z*i;t&nYk`R!~;iXLVXf1bRqC#?6_Aitp#`E^A=-8vxmkD78h+M{tiho@yp&V&TYdg zbqN-0UwBF{zbFoC3n(^qawb4bx?)*c3$u1U(0ff!p--Q;d+Iu~e!oH5Jo!#y=(~P< znUCroc|L>?b(>u7s;(Dl4gP|-&C>LZtNgQ2h5;+*w5h|Bk{naEYZ~0w(1W^_jGd`4V!`oG$4*(vRe#E(9$l*YSi_y`) zcd(y759(%00q4)lRl3X!bhZ*O;tc-vHB!Ryq{^u2AYm?J0m_(l0uaTn3*eT#aqs7r zv&gXn9fI5+s$tspl(Bd_kwf0@1!I&$(Het?!bTXp>Gj6TlnK7m{)2i9Gt#eL+2+Ri zJ!1EyW-iKacwmP<^QZ>;KQcXrHF+CLTx;UKc-IEB6ZsIPl;b$TU!f1;bgzdgB= zb=L8-yu!M*vc{7RQ8#|gE77F(jM2uD_19vcB4r%az^U5#;$~%gvB%NW3=9leMcQ`| zWMpIkY$uh>`gu{Ig3gw2ECC_seR?d-c>gX)xss6>7=YjC9TpY?Xe0(u83)`WCUoA* zu31{)XuSW={)@P4;W@2yL^4amI9VC&2n*)C!KPOdv%!`FiSvinS^1_giY zB}rM?+hb#6pwaS@*Yy+yDcL&w zOV#zYzOgeNd?dIT5|2?L9{dN|%-ngip01I8?FEj9udzHfO{N_iZ2N9Q!W!-GxvuVugVyXR4e%AzJpXzFnsR*2bV;y>Vc84d$J+o`X4(~{LbGELi7{rmr z4<2R_Lo_mPXnYknTP}-YVnX+Z-Qzo%*%upC%_sZC3tolGXq7h95Bt8*SaA>O3byUJ z*8Gf#Cvm@bVfiJ>Xp_g8CzyjJKyW;6fauF~T<*L5i=Q_%ans`m)Rzst{mlb!Ep2J; zv9#(t-@kNJe8k&@igJK#aB!!Onyqg(_I2#7Td5auap~`-yA8+1TjbaGh3cdP9;{XF z8jPV%j>LQy-_QpgdnoARW!RN5R{pIGlRPS`ukTG=k8PLzebjv&J)OmS{8+=}?S4{} zY!hfQ7XDbw6nt|mez(Ty{FUy(h#w~xKe#dT@bJD;H%xme5c^wPLMhf)gM!6l%5}j- z;RWBzTzJ#O%Im}B;<8_lYnB4}0+L>6Nv2P$__NO!)r3{Nf4LPf9Xx7-Z4mtN>@3!dp)v z_zal;Q@3V={z#qqin`_6yv_V=;+&=LR6i-NK8Fah=&0mXxWdD|aF;z7Rpp)@^6OyHzHIh=*{gi04(P(xbi<0cp3Uq>}~TNmRJ?-Nog=D z`L3crQKYn`;Dt?V^H8W%%RX7?tXzWF#~(cYi8#;S7k?!aVx{JB=7$}*rg}UG{y*Uh z$6kh|WJjV5Cu^MhV(+>$(rLtm4PMge7||d0F{X# znmf`RYIG6ZoMJ@xok%KD1WpbfQB7qsBIX;>h237SE9-~xn4h0Otoi5of9OyJ+f?bY zO)m`W^x;{(c~hsGrbRPCPsyI@%g?|wCrDd1^cABPjFN z7j3*I=8bM_BNFJp1y@3I17~Dp1o{O) zgIL2K0n9{qw={70Af?U^H+jx#bKc6i2Fv8@q|9|ZON(NB5H(6mZ z7e@;T;t=+yuw$IvoX=mS(f7%>9j+}}h+U_(NhIs_XyywlYj-mOvo>z{EuU+pr zwHK6%kR*XND&n@Oa`Rn_Gye?H#Q^Ie(J^N+GG*xLt*`Tm(_GwVr3Mc;;4 zJ*zD{hDtTBflAoJHw(YMwB(+gxNw;sBz9?k^4{$J>8SdO9TF*MdSEiVBz4EA!)mSa0h+|8jTNl zN2S3*;C6FAEeFO%8EUMwH?T8?I|yKeMjyG7^mAEP$@$+YbIuO@eTq7Mp9?_%i~n5V zh&4Oe;$qvGCBEl*yxTW!e115rSZqxPo$`Y6u~G{Q&pwvk!^87^PRzSi=H3D3^$Wov z4s*>)1=H*rZtn?%9eo4RUs&35ay>WwdkrMf^a%({TU)(@4XvGpvA8&X!o!`s&IeI1 zp-+v?km`*m4A?gsGUKJ5-H45LjwhDgpMwRG-FqR;0PL^b>6JAz5RW5cJ?YnAGM+cg6=Uf!Sg8+I>4$K zacrb|EdB)J0klxoDwdhWJ`{bb`b;SG0p~AEpuWVmk{v)6AO$x1Id_NU- z9dgENoJ^Bkt}NkHJ1${e3~U`tD7oZr#J-m7jFcKS&~IuYJ;J+CXPmDM;8Xq^?&1k0 zhh<~vLOyi*bd0QV5zzF6>Q_6Qcop7sqfXkli2&|#?fRCm`Lb19Li&wG2Abisd@~B1 zD#87cMtIpv<0Xu})D+AsgcK&F%+M)fEFA4v&aTwrFVL(8Z<&f%?lA|#z<^sH^K5Dd zj_=&#YuSl7%N{D0Q0Zga-Q0X*Iv%sw>GE7lOUNEI{T$kQs@b8WNuy zRCYqU@@(*7%UImZ{QR%<#wxL5hCj0~cssKz6+x<|=4&_>o0IbjW&lVjaYADYy4AV5 z%|RfolGPxG0=~02x)*JZRrI$5XW(3JG42Mc+r{2!TnU2#13q;dc2(Er<279Xs4LzJ zXR;-_PKc@vo>gSG|6lbu$9csIL?r$@1hmu}p>8!%EU7HU37EBQL4mZX7GL%Hc#LmNx z2i)k1#YNnzf!uy8V6ns(1bPGaM|iFH*nGJ11@oE|%vB-O)FtN9ooi?+4rt-`C(`qh zfNu82hVYqxv*`~i3f>d?9|U?ET?QyxMn`sb4afJa)BLYhRWFFFQ)BUd3Te+09A4Q}Rs4C#vlgCKlz zqc)rJ_41*V&|xV2`Mu{<&3(yCSc5&q*h3qz`@KtP>E^ub3PI6zovju6vrA79Z`Pe~ zd(KX;uD3aPA6_!J+FM4%B6;jlRi%%3v-ArmF`dHA?IA~yA%=+mfZfV?!pr@v2(G2_ zKM(c$SgC+`MA7;fVCy#~4oOmA2kO3Hy^TLTPoX$n+%$K8aL*@yXp>vx@Jq{baIJ;z z%m#%?Ms0n4n6NyF0&l@a`s!|=#6Q#ZD@<4Iap}Fa&nEN!6#O5^lUGK&25vTKps8d4 zPteL&KD6u*FPL5(ZnUZY^#!W+&|a_W->yj68IYtEOAI#2Dh3(Jp;wBpszCk~O>Lwd z1F17ueQK?C_BLHhay_5EkYeE6MQA2}D~beM#>Go_=PhY?K8h(TlS9wA<}1kSO5b5( zI-jvJURgO*^VV7mBBrTNZW1?}gpkOKi=VrmKK$8$%+AzkkOe<==x6 z|Df@32V{}ZHohq*D~lQ%e721m z@csMur4tk$<aoADwAMg-H|Z19F-Z)|)Uar#+w@Y^QYp~yM5pY%^a(?LXsNNPUN zt9P-jn2lv(VyJ8g}u>eTjrP`OyXXg;qr~Sf?T1S_MzaoKr`nFkjDm5XTYf24$TD~PQI5Lv7#CEmC8xP50H}Ge{ z#Cs%zPOX51w$)za^`U%CSwKJ#*t+0@l5I9$2~c+Q&eKTk911x03Zd;|@ai^jb1cM-mYC;5L6aku_oV1bqZc$1t3c+9eV<^?0-M*#Il3=R(J8t8?D z#=eBTU&jXxV1&cE+DIDL-F&nJFe7(?sxbRh693Tg5SG&4Ab^AP^Y=g88(s(6vyF}q z(?4%{XavY~fSLer1p%?n4^RjJd0R{&q(enz9IKykW?tm|4gHPe2zx@CZ60pu7vPk)^dwRYFu0aUc(MwBTLqom~ zahhwb~_-QDC#0n>bM7BtgQvO3wNfj33Z6JD8+lDFd; zcggz*pO#S2k(%K2X<|Zit>lATJcsQp>fA2X{4R9yHBEKxL_ z72C8Cbb=U_~4IzDf*K0frjq^_-F@M(j2c+a2;Y4@kH!34E z=KNVIll0QVU%DQAIiE@M8I(mp85ApTP<8g;TQKb*S}H&&jR}Q1Fwy_irrXVq`|JiT zZaKFR<}Kn^BDn~z9Cz*Ng3>G%w{bOvQMvw6TYI9`A(33}>($=3EN~{FY09{{x?g`_!Yk{3`;R`wWM=YpT?4Gp~iB*&F-K zImnAQ8=A{@=O|n@s+~uWB{LV5CD9(Hb zd7s=BAHCi_vz`>Z0!0cS_GI)G*tQa9e34(PTvso#TlK5fMC;_;Q<2Y2*qqLui#DO( zY91**Sx2(4Ic#W}C)lZ!$7cVX*c?cV1gsm-_JHJc+!=*%-d~*_vBBx7aODTl0UoEF zJC`a?`})q}Jo(mQnPb`UnzKW>x>#UYNs$tbeUzS^jN@*5kH4Q%(u>C8Q5)bTp93LI}>Nyh#R!k3^|C#=Wu6Ks~?aye7D6*XpK-CYe8d`E(-I<|x;( zM}OhB&WnmMFY#RucWHzP_^w6i zkcEODj5jVom;n?lh!>pQ*-&#s^Zbps7{JS!CtDY0U$N_Uv@Va~fe$fLkBRjgK0XYxN zexBJ`W}wE9x{WzP-gYcx(qC+20F($2eh@Ej=mzdHGa2Va=$ira4`ZMbg%A& zrgh?g=nzI0joab-c-k)a*{tUGU!lC#wl#YV+gimlo3!Jyb|DD!0;n^#nxeitysD$OcUlQ@7g?u2E(siPyS0HE5= zuN4&+hR2)LU2W;1yb{Z8N(u}}1_o}QeuK`r9;tZ@=*_I_u*RS-4XP=?^w=2LX8FB* z_|F{K)_W>xw47P%glBxPu}#YE#F6fH63lBOw0EDzbupRr!+9ap$t48vMGD7-0=P0& zwzuwP|1eS5ZQj951~C8upapF#wMDtjTaF~0?I0aS%&C!6>lnUL9nAPXg1>Ga$i{u% z=1J$gcO&=D1J1!<=e(;>A{9@YEp*NW8&UO%?ga>YPLyfYz7O)(*|Z)9b{dg|C;aidzoXO6fSWwhJo-`xdO=BhUwB|7|e@ zrTyAO^#^M9=#LYcFzaCwl1k7|nR0z|>33Tjky0vjbNwv3%Wg84j(rYibLlR-(#fd( zTYT|ojDWw;f1@*UXKWEPv=w?YU8q=_g8y1J$YkWTZ&b%^-f>7Mw9 zEnsw}>;e_ofB%I`&X1vKnj`pkl;1xM`3taxGkkjKKLW!47e8LPzVI*KA&tp@HL&rT z4+GC-3ro`Y&wkfLb5MR`)*m_qJ|sJmwqAVTASgE^5E+zdyfYAkF4+G$Zfmw^mrk3q zdu$C*hl<_^^oa1=OeH@ zTi$l-mhm1|4OQXq(_$;+9Z_eFp zbn{3fSS$Z+q2}^0QzO`EzF^?a5^LNi{QfCCT$~#`2JByOh_6`d5}mgg^zA6=S7CLj ztXQ5B|2OFU&aIvp^_ANG)$h|lzo=u3?MXdF_W3KaIi=osfe~Zg-~EIBJr!vdKYn#_ zt%UI@+yJa97fW0%{_$E_>u+1Qr<)AhVL?l-QfuXSJHqQLr6hq8_H(Xo{_M6% z7D@{hEV!)>6rzq=6A1?<*dm$#ouG1Dps`Hw{-IfoyRn$v$8 z`X*kr`19rEvCiBzCmJ0ktIxF|3D5o=dWKQ{5jJ%6QFtLc zv~d^v29N!vs}u=z-yD#5Qorw}_6yGv?$h`E&&@GsGEf6_+0o(KS zDnoQSx|G0h=fl@{dzs%hPW6}yj4(ZDP5YhY_)goC{`tJCpvPD{Ig{H+ot^927TJaF zqz~u>p^55%(a=VnVZolp?UaGuOz^%GZA)C=E1{A4hKJaGTmRV9`CKCVdfoG}>Dq;u zXKF4VY!$^HCn2;WkAV-5rnOss=L#p$aEbyT8K3D*>pd%;mAClS zjViS(-}~4Xu5;^g#RMF$mqz%UZ9VYC#Z|Q*&4*3fz-3j?=}ju6SY^9?!x#bR`c6`o z>ecTv`^XChE%gXeDy4S@WpDLR{crK_-*~iDaGvj-^5806Z#WtG#F`s=X^!M|dLJLuaDX32l zu#SHAZ(0NkIGfEUB%4Fad5m}O>c9jw9g*FP0=YdlFuZRovWnPVOx*_2(61=o`3KX3 z^O#fx=$$O{xeDG5izZ>qCn;E(yc_o?Rn)5&1dJ}YeCD5ij)|>WMTjsP`gxO!-W%kb z`y6AYrB*#&(pRoKqOO?@r&up%7Iv4ba0{ptEcaVXBuA)ATR%)98w9Oun1}$weS;3~ zemb%zxbb!NgHffy%g6`usN+hM_%kckgtoYJg#h#@H(UEWhE=q4fd2zdm8{Fhrd=t* zPkCo`&*jv=TLjx~5^nG!){5uNp|%ytxt!0JX~7x;p_N(PplR98)?Lu|Um$5jH@4EV zD=t@^I3{RaWMf_1YHjXlo&!C#34ZZ0`VK@Ysypt=2>}Zg z0YyM`ojWJ89e7ifP3^7Iok+L$5Z|lEaE1V9WgERZgoiiSbaqTsN(s03YanZro^e|) zCP!%E<^OPOC60I0KMyqtRo7j)5k6a{P62k$XCW3hcLTKJbZF2>4Mqm(9N)^Y^`<@Ym4ii{33kn-hDmP+39XUCs_P_ zjEQI^nr?tvb=y*}2}q4l!GeILIeN7Fft>SNV%O84wNZ?Pu}qaGgXLdUOYNwD&pUav zoDIHN+ykWsEc+uM9|a*JT2abA;}SDz^>$}@)!{sW!BQwAnluGUOTUMUVIILu+Loan z4L*5`Oy;n9fJpgN`_96VtaWl-YR9geDLq134rY=8UzwJQ*eSsz^tWgCD^axElJRwM z_9Jfxwe`1C+67QGmsUnggTRo_W|m0dV|=`1;o2yq5d3j`wzuf$yw*lbte~3rBQNi6 z!j4pxA;+iC(8ucL)T=|u$5bYB8A_((73c&3G?H(4<58vkAw<1@|GUX7@Jmjo1>>Rs zE<)517q+3Brt{8WQf1|u-&R)05!vFqY3NCYUG;&i^DJXEMKaCGotn-Rs|{b`UVtP^hw^ zq!;2lamSCC8h&^X){cI8KCiG#zC0x(EVIz>35wHQ#WtyY*&01{y21*O93LDL28DpH zW9zK;Xo>B;gCmoSz6T%|X~jdSYdYRh?1>ZdDZ1tegaE-4idHOE3Jv?}lWY6IYrAxP zYHB)?ZI{cu+>9K8^>20=T+Pkss97to{!>JPhQ<6}8mR#{L=ldjXAP4kZeNRzR~#>~YW`dkjKQWMsn>rw2F$)aXLc z$t(+UE+(7gnl`@HN+j#d%v_GexDWz(aGiMl8d7$4T<}8OT5r4$6+6-b)ZE}3hp1Y$ z1~L`sicmp2G}$7d;`;UL2UN>}!>OC~BpPgQ2Ce|%^6>1KhWym!PklMbh|zyl@^#^` z)z8wJ!ZsHNvOYDME1&XmTcW*N7>3XHF3U!wK@|n8sPJS`Urs{ahR$*^e9@+w0w+zh zBRr05g!HNbjng-2b@;P8VxK7~ks+4*6#&n#V7JGeG44*n0>cH_?^F+-Ma3>xrRxOu z$tD3(vuCb7LowF_3NlAj%RP?Ukpf270O_cdUETnteJsm{KMChG!>o<#D~k%6Ql*#* zFB|>5)}$ZpBcBWe5x?7-CMqpqA})x4w+AqcAUw8MG*S+p~CC_vzn{5%!1Zt2^l?Pe?~1hY@Mk zH#@gg?{3UCC6f!y%A!yAhWsRvy{Y941S-O3zQXya6T3~qUkZr8yg^g+pafD1wty!E zCRO0mszo9+M?5&svr)G?*zFwMD#NSr2UXeaujC&;?GStPqo43oe&FYt)wf873a_wg zuPBV;($^#brx!&+o+1!vA>9Y0z?i@E=FTmQ)W3Yn9(n4~sHqNaZK+C3i>KHKF>(Bx zyc8EY21TBBIC)&O!{KWqW+^h1`YifQ&OaLKa~g0>M120P+tTUX@}75i=J!ME_qXro zt)Rkxm2bmEsm$WOncdhiP9CDjS3BW|`e&g6?q)$-?31e2ok;v3I%3u2ck2!@8<}~M0*-S@3|(p5aU}=;<`gs6 zVY?I68Xw2J5?UG;NrU>(>{c{|%RWX(m&V=vKd(zV?}$b7C8@O?@lL;k!FV(TBcWG) zmMr|gbSF4uCU*aF;EomIai*KcukwThLxDq#yp|L-zyDGlIbDqhga$2Mq^fpbBT&L^ zO6gMNTZ{1=>4G_{Q;nqmX1dWpr9}8MNUm#!9?p;E7%FH;^G7ClD=; z8%VCa#bd!<5z*>89-?rXk>O7xYW-Yg_Q~UDQlDDtg)1&)oMobV`QGPlqZN&L%hM9F zupk4B{MF`&O|;rzW+qXbi4*vn6($Krm0{;CgXf^!+1kwIC8k<;P@v<7uAioWt|-nm~@FeBt~(LQ#8KTTk{^~Uj+ z^M|D}8Y_FBj9V{zd%sYHjH?^_Z$593Ch&u*xHchCpx`c|PtE2+rvp)RW%Db2nVcb43E|fpN;=bd%8XK>+eMZN<#iKJsh_On zAgA$g8x1=f3U;Vp);q^MPL0LKHn2|0J)$?9#-;aT%}Ir|^6sW2QSw z6~Dk+k|sGEUO+ABh7z8{^S#02Oj}TI&(S0!lil^wYCh)98W)kh;x$Cd*K$RCH=n}= z>zDQ74|oG7@bGJ?!e2VR5pU5cg<-m4uV^yv=3&D{Sh8-D0cq~HnF+GSNnGDss90gG zb)H;pIU!xDe_D5`Sl~w8HFbDjvHp~-V10s^(6hcaF+-7x^ z)C1M7RZIG~AX>9~Ya6=b741F|TBEx+`veoTHbUdM!av~?GA`_+HWalH7lt>PuP&br z-;S3}H~oASu}8bRwO{lFogM#CuXq|)R3if?MJdqd;Bk@NSIwG0OkDEGdZXsI1?-2T zOAm=JI*$gGpY|dY?cJX4q*ZFZkz4=#+pAIcOHu3n>$^qEj~h`<*0;DSp1wNkV-L#y zp-w$aB|hB6)7>zE_XAV&4oh|PA>$nF-3uMVFD7ytvqSEy)Or{<5SpqP38u#M#z<`t$P+{*NNpfGTSI@Ma)*ssz z2nC&-A+tzdzp{>8kRu>0L8bFqtaC;)uD!u}BDmf_NRAU$yGP62apShhDobFeee4bP zz?tBIVKsOvN;P7>j7VCJaXlct;}5c0#1)56ZWXj;6!Ih)vGWF^^Dp#V{xe8TMtVUG zR}GfvNLQ8WknChSO6ujS!)67ro@%vRJCC8soAZ9dEL(^7=fUsccMUS#lggD}&Qd;! zJ~nlE`wPof>c$CW)_Xf1X_hYnDeSYsRGW&^r$e53{e(^vCXe=AeRDH%9_j?A)awcp zFI+KBh6UsArROuPSdn<0x)F$saB~yJR_3>qcFK8+qH0QLZLdEOOgW~XWDh0M5!w=j z0mkj@+@0;rv-k{3+rofB(B9-ifhZa1C+8ZgBkpACvID{RwU=SW`;Db|d!B z%CDu@rPf5XDU7J$u6)##n-JX)A{WNg=`H=I9)iwG2xsvF7>=j75f5mT9@eGI-{t2H z3*vIk#`qR}Y0~#!EI?Mt5@+9k1v`n43_Kng!Rr&b4TQ2qF_ARX-&RH(nEE%;;B~3# z{xs!(oABLr4jvi00WK5@Z*V>Ynrf3sHBS6cP^w*4_y#Y`@15oOw;KJZjGldvc05TS zi$TnQy5LCKB*kkFT2gn=^bfw5WeDm$uH94qt4W?N0;nif5$@C+TEt zhS$~j_UnmberYx~Hw(5De8|72Qta+E-fomLjh+m#5F661k1$xJ1pcYL<@%@UFtw&D zR$EG^irN0T)hDE%WQL4Y-*NEbZkiP#j|g{`*~_|u%JoOD#k-vaQMU69EHny1;MuR0 z*)W-@wGi4%PW(|3vh8RJ=OLag93hX!Ygi%&eM*oj1R)v3z|2Otlp~z@{1I~dpAyPt zyoho`=)^+?&1bjL1pEtdxl7O(hC&!?Ogs2f2Y?Q?d;Oh&>F(&_a4o_iCAk^zQ!;W1 z5fXDm?$9AZHs{w_e@!BxTU|qdN$vxq$HBsEat)sTpz_hM3cbk~b$aWb4=ok`lSvGbP_Q{-N%Kzt zU2#%gR>OHw4KsCTS?mu8YqY9KoEFdh5h1@e7S!6X_<*dpw9XTMsP ze~!f#vxDs6J*xumD2j=bFA;w(^VV(+A*G~Nr!(W4)1}BZgd+aETh^m8M1-fWlY45O z)kexGsO@UVlc2vBgu>^1Xu>D0ixuHz`h?*?&si&s?sOxk?@6 zvmSwLPR~Zg)r#-2Z7%T}5{;L1O``>yc&QW=DIm)Dl2ps-&>oDyo;Rg8ZV!2SSh7sDXrf^EsgCwAHp3Z!nU@yc`XKB9qp`1I63j*;8WHaa!l+x@wyzK)j0qU z8v}YDAt50zl$Djs8vz1(4PAAiaoe~GU@U=?2%iV!QYhMJzFp!#O5U1FDCgYQd?*BA zc9e*N0}o624qFVjMVeI{bVmO#>fSmk%KrNr9>79MLAp#rTDnnDR7wOvx&)-VQ&Bnu zq@+{?M5Lu8hVGDVh92pLq2Dw5{XW0-u6Mob`R`flnYHd46r8!P>r?0Kv(Mg8)!cm; zm?6<1-IP?2T~QIDduk=tyT;fy;VJ4eH78SM;bAiHDKwAk=FRDu>EU8aTHa*OFev|Rv^3ds z$G`bAlEwyUrpMt5HY+Q2KhWN0{0)F{%~)B==9E7p&U&{$W1hppGZ5nqENZaZ>QG*H z5v!sC=1H8yF{j8+YegvLW6R`6`ziYk`+riyf0rogB33K+7yyElGc&slqGB(nYOSe7 zod~zkT^T0f3_s2KFCtRAoBsl1w_-0D5KkSZp|)V|%{Yks)uwY?R5>}^?j5tUZ|FMc z5JW)<5qSn%X}1L>)=Si&LaT`GAMH9sW9CPN*|m=Fyb3nqnS8wa{L+=nZtpqsb9bU*jpAFO%W*D?SO!ctdWESnnI z%KY5nAZgK%9SSSKAK!xZ>!{n$zgr|eJHir2Kx7!Sh~s(DGrS|Kzz+GMxo5TW5pjX2 z2o!PUq2CVgJYn_R?Tk;Kd_Zqvy&NUpT!P}9E+Q{1TOBcX!Elk-f||j`Z{3qxvT(`H zJ(PD>#@0OE`lK&1&9mG|3~ILZO%3*K9D-3%Np)Wuf^mdSkGA5sHkvHDhE@mn&tq1s zy?qCl=JJ~uO+Yzt%n_YrF;W^R?!I?0;0oJXU})&In?i5VDc-N4mVb_zuDV}MyP*tC z%*4eN{`+Yb%Bv|H`O!QlzIl1r8YGe1EK4SW;QfFkaWH^Yo#(3BCRNjQBzGQnJkO?@ zQ$J(7)g*cHI&qoKxYHvP2k$(XS5?FMT3SJSF3wgsPod&;o~E_+ z2@VE5vlf{=@XnqqVAnD#%00w21=;d8%L-kiD|uEburfe#zOpfQ)fHFMBFiTci&i8a zw;KGKekDpFGx9_+24 zTLq-o(OLr~kh~rswwL>T0p^^NMf}hziv*r}VIvjb&Jy?T-2;Qg>(@RT*p+WPtsIde zK+ZY6^jjPlA`E2fu9Y0ia#gl}e=eyyy4D;)S?IBUQ35l0A2DrV3o2IpUidz-I$rN! ztxY+I?6=(~iHM90>7bDLcIyMB4u)}QAlIaOx&f*Vv`CD}v3)3&M3{*VhOF1yk=nTM z-CC??4JIr7vRURM7l(zhj1hry-jZp%Xx^8%sGmLQW#BKd7BBM>NP zu*G;RU7=Jvx-n-XbbE%FNkrtL&wYQAyG8~#1({1aH~LE6s#;>!vmGn;JH7Y+M5$p8 zm66kP>fu}M%JvK6_BNrTvvVdmm#C>{G@XvR%3PahSnXg(HI++#&!VMoY2#m%gXtpm z7raTT_>^kmy^UCnz8>MmXya3zfEKSahNjo7%-O_ZT*hKt#0G@M2I^_T4Q+&Z7&V^! zd42W;F=y>l<6O@Po;B0?Tgv4l{S!7Tq?j{4gG*_7-vU7YFsa)KcC#OQFNhh0ngLvo zGdzp~$Cz0CIzKSB#8N{*^>hY{ajS%ht-Do1Opca@S1dPHq1Jev$C>gI+h@7ogbF8>F@P+bCo zRi;CpH(R{iE(+e(4z~fb92>Z)HDzg|8D*nMw(+*O)-tfpQofpuCS0)jSuPr1&td+u zO5Ee8HJopPoXE8D65jt{*J9S?NYp({VbJYNLU5fca0Ct8X%GQ-c8NCZ7mH-vQV%FPE zi;YZ32yQUYU+iP`*q>9Y*nF}=)>$^riO?uAdl1erUUu+3YjGu!g7YZGoJrwj+k6KQ zp6!o!24OvxovI;o9LxF5RcCBO;3QL!NZ!K7JGY&?r^eM;uiSMM#u($-QeNm?zqIkY zWbf%OM{$30Hl*;Jz{;p2cm=)1Ml;R9jd<(F1zaG%`&rv<@L`A!oFw}!mi+JERFMD# z`Nzc4`u2#T%?UB~Q9?q+-jR#Rt)No0p<4Zo31VI!aDhx~{e{NVMQh(Cjgr~Qnz?Ef zJ1XUkYjR=tLlvHojRQtzcMJ7f1dkU*cC%dx_G1)Jwhh&+P>=NSs2sMUQ1`6Bj-nv;I z0_RecYp(4MdC8(O)`QEW*+~An_hg-rGS>zNFZo)Noed9^#CT%n^c`N#5D_<#k@}9B z)ft907>3or_iWdxouxI$F0+>2cxIEX<2U7u0$#6H~XO&M?M(zoW>Dihs*X_9vcs;=73_G z*E#xlYjdv2-OTcI8}!?~4kdx|`dW1(yX;l{^D)6=p4wW4c9Y-M0q@!#D$aLHB5{4j zm1@aOD`ImgRXxINXCKV$&-n7@`T6y`{gBOlk`-$&q73}2t4-ODpx~bX`G%rV z@x)7AA+o>Rf||7ejXmo(TO~;wd1IS@I6ue~HIc_ds2<8JM5_4c%7h-GWfSgydO3xWj-@%dKg+`m3#7Jmn)v-)B#rlw|Z&kKw;e> z>EvT^^gJ_{WcdK|)=c9>eQCa+?Mmpe>w#{{`?&X7mP!0=N4gzw#T$eE#+&e8vJxGP z&9j;av7oW3F2I)b9A+<7E?$GmhUau3ZBt4`e>Ov6N$6xn_Q{G%*AK6AP0A44YQECO zhEz7oLp+@egW*WY4Ggt)`C`*zN_kWvYPFpsvDX=6I_SO@nnELnjhi$79HF%^&<0ti zna5Fu7d0~!m|%{QFNS8B95=G8;1nNb#C-dH9I#`-@SI!$yd z)ic1sqaF%dJw3uveg`6_pWTsHjrZ5MOP{c`52zI?b3?_6+TqVwu`KV5X z6!0COKw{E9$w~rc8MEcbh-k!nrj;*SxyH?(lpqqI)U+6{Iy|(Wonu zo97#{U3`Ki>frxOHJpFOFqklzNL0^NisRe1Ao+Qqh0G!oAcF6LHNQv^%qyDsh=}yR zlq&qMZ@j!eeQQdJ3nJ-W47R08+Lxcv{`(lj>Ut(^&mO3mWowL?{B3;xx?sbUD614M ziUW_ID3v$&OHD8!GtZNg(lGx8aQKK;f2+=hx#0N3r6HMwxKh8=xc7{2x1`qfxIibm!1Z9`|oA08#CP6XCuut6o~L+HRn%`x}cnH z1p3lghbSDpgYzPMmm}QN#!T-FQzFkX@kW@RKEQ-IuxHBH%I zVpc{=!Y3--&+~Bt(`c61^1;L>8QXN7i&A~x{R4+~H9pmmUXFP91<=k5dPD?uR?Zj> zd!fX)>UE11;hW7)F84I~r5vtbM{1dRNCvr$`wKR|`TWzT6aX$pP4Yi^a136?LbSL; zvQP3f?jOgz^V49-A3Romk#n*a73J{&Pn!AqGwTGa#& z7vzJm3_d9<9R@6~iJc-*ff)gL`%5FEepkkcanvQ9xLzNnpn#)0SnOIn&! z`u`!sUhfH@BX<9Ee|^I(>oh1Yxh4-&*zy*C2DE`a4i+kcauIUL^&uuHH@Fl_THzmF ze|EaeA0og{MYFnf7Qi;XyH5~j{2;KXeY=4rjzvxzVA}-+EQYACw+1&Cj|D;hL&`J7 z`9H-N{om40|4~Z4a=?=_h^ zfh~i?2xV(D7!nm7oFtcOaT3!Btq1Roj)9mTDFZ_%NaTMn0_if15~~jIAzPeVE347F zdh1r%$XYu*3ve-j7CP%tZ!T$?H>`JVA52M|zjpmZD`!*6|7q6bk{X&2IY>Gp3i8Vm^!#(h2zx(~lGyHg)!{qF(Xcc{M3zRkiRCh=eMZ$d;Ct zG4W$gF&)LE-N9!>@Vh*zGKPi2w{w(7i=`h*=h>UANEV*=+M@M(QT#(eP#10(tQJ(3 zokS1!)W-CPXoTLI=av`W@q7K#8Wjd60sXz|{EVTtp63Yvbn%lh8vvy`5ZH`Yb9mWpllyyRhpcldMa&dnyEXQ z_xXO=>MwKkDvt-DEvLLd-YDB_Wh;Hz$3o$~mt?(9B&gLTe0*^EGBpTa#zw}MHF3S> z;E?&d9p8`s>fzZ7JHD{FYo!iW4p!L-(_zf3BGK{VG02&L@^nUpYcjAZI7@;fX$m%> zO&DPB$ZY2E=EofncVaM6Wf>ME1O%yHzt&q1Z!8()zu*SjPP#Cfl1jb$3nI>|(h8k{ zN>reSmT%aErNcG1wnCqWEjV=c7MZIRTa9a2qx-e^W_NI?M2!hgJrAg1y+D737-sbR zivkB$Xp^jRW+9^=q2)CEg0o^BSK@Ga>p-l*xMOLj2f75XY<;A6tlQ4wy9R^I z;;I_G^<$*-(W#(sjZgQh`k4)YN|g-#d6+~#qQN}q4Xz{8lEGy4Ymeg{!IQRgMDQCb znu7-UK7+x9tvdw7#OW0kiEs^LRwcT%AWgE7b+~4@_xOgRh~r{FhcVoJa?^@aFEp$) zhA?!VH*cDwnI8h3_5UzKyT@E4&Z`HFs z)~95kH6m-o%NV(F4uL!!_w66)6t$)TIQFWjCWF zgGHl5xbx$j`%2@Ald`H#Sj)@JY#>6(X=rFloXnEtluidd6sw!R z2Ie@AqpYr$7DOT4I%uFheq=B?Ik_>8Cv~HAymZWJ!eu7ZEUB(nJEOi{y4XrQVtwqV zDX*Hg>)90k5p@9)!0tckBE6skX{^KoTKp`=ezvUfCtgOUbU_OZ3;S)Xx+KV3#sVtv zJIh3|bHSTf3HDieCLNb4Z?F4Jkn9g|vl078y?v_+$>-@b^H9fddPf5FZ=@svrPtEZ zx-%$)L;EMtD^W;RV5kBx7a)A|jPlbF^K`g-sN9+nx_0nqns}Fr z28HcrFMv8Y=vk~lQ}cnRjC1qH+Z#8E-t5GyBV zqaOEf*vvIjo|U{La`mjx$wj&6V!Oa}j2<0qbn^j^G`KCzxz!wcWR7!`t#mlyltO3*}+*liQ5=T+XVKB3ngnX^ka#1aC;v3 zpP-eGWq+R+M*9t0E)`l90s3^Hkg>mzkpkK#ey#fq2A28lF1x}&NChWY(O9iJL29~5 zfs|Z;ptr|uScIkuLsJs$IdaG)h1S-#z`|k7tIj5`KvCgqg3Ofmk1jxF0(OK!YW3jC zRu4|%)X-3ba?93a&Ufn20JjwUYR|oi`_P*Qj7Son+S+?3C$o}^9%G>D0O7}EmV2cR z)IPwy69Nz#EKRr4edjupz`TiN0wB522)-oFbXnLP1R3`Ip2ZBw4iy*?jQ?^nTKVPZ zu+VcBj28hC#rlH6_`=e*XluTT{DklkcfUPRCJP3a5KlUa%txz*7}lr}EQ)2S%A$AN z;Nz}~i;t^y0WihN8aN$E3WFaQ76v2q^o5EvbmVImTfA;fn45wA`OZB3`-<_1Z{IGM}0J|8=0>sjItBlY|f+2XIa__t*5gDdv$J`Ix zatIuba-wQp%?{G-eHLnP`UhA6HPw6ua19a5e)2U}5L=tExF#3(g!MxDm&T zHiW>0nS&z~<^ZYEoc=J_5Gw57mVu|GD89pps{ctZ;-I(rl@`1@(X6`u=9$o*1P9O@ zo2uP}Yuyk~pCP^iR^U2x4P$O0uswhc7EEADhrtK|fA5%754tPG#%qqgGo=E5^b~cY zWK{m?d;ADLX!Y}9ZI%Y*8Bu3dMla0-@F=@_{c#4Sp@*rwM#qGJ8quwo<7eqPUYW^TQxls z)~(K@^KM0@$~YTX3S7J`Lo#Gw`SzVZ$TB#LsP}3XK&5NFMeEeL9oCR6q!?grQAi3^Nqn<39Fk-i2jp&1^M>G&^x0t)u4tUUOdiP<`x8D*v+OAz+Ni7lL) z@Iuo=c!_{(d0D@Y-a0wY7zrk3T8TvVbMm_j#wFH)PnLJh2EjstG8*Xe9nmMMgT;vDwuL2K~t72UePA#m-aZ9U6BmbaQuawD1MK;hapqMR&GyZax*CoI-Vgv8j?Kk(e}66pTaCfW$09%hbl>>2;^T2uOyYv9@m*C_in8bP zTs2D#Gs2#Cek{JKfn^HI{%GVzZ5=DS*bW{2^_^Rj_z3Q&I;$e7igq}qt!?-`gDAOK z$RL4;f6U6lqIVd!0^Z(O(lD6osu#R8t)!QcUhK-WdQ%Waf5TAo+!CAr;5&bRkRI|} zfi}=8N&mNRfB$kc4|`t4rZZ#v{b<-A|2_W_B%szEcfH$yhs-0S_GSL5>6wG$WL@5FkZK#z4^st2`PZ)RO6iBB!93y3J+M z5}8(oKQ%o)eUy9&1V0ZWKLK$4;R@y8(7t59BW~%@W*Y`zZjbweT+j*YWPwu3MGuY9 zuRYDtEJ>E-EPFdu*L4GYhM`x**%KJHQnt1{(2RX9nxt~^HUzj{#|N9>_#icR#t}}* zFJF|s=`$W=El1^Q?A*BDNq-L9M1CV4><&W*m&9jI-Zyu3pCLu)fJF`v%2T>kKdZ7?IUiS?THlEWe>y=B zy~Pr%QJ1>G;`29jJ-|@2u&{s!?6(e5O%?hC33!-XO!92gKq`dDziDkz4aufdU!bA*Pl2|$P{TabzMnG=>w2XU1wow=Ds;Qo2mTb#fzt3ZS;?htqZ)485KQJ?6ZD&c(b#!=jG>L+je3xHa7NC zd-Ukl$CB4ETWH@XeJr$p9Rz~=*!(OWWi%)ex6^!VvHC*!X^j@j!=nutZ zI4fi``DyC=OkMJ}#Qy$184b;ojp>Gf;Bdo!YovKW!Rh2?G}}#PX0j_((l1ky-zB0f883oG^M-ZuUIOz|^SaHQxCY5x?sXg4XZ(o&#!B zwB{aYO1Al$Z|VSecyC^K`)5L3TY1Q6FfZ5!xj4z&ugBL zvpp*^d)|R_b%B&D>Y!|^F>(MuDl{}(32SkE`Lb)Wv`mIVy0H=N)$@cn+*LzE?!2z( z{QSrHWA*iC?CtHLlb@THx2~-%>dS-R$V(}DrKFhkgst_Pq5}g1tObP;&U~3zf)u={ z!c9e5sgk0j$w7$?Y{(-8bG1c^o8u-YFHMt8v%;ba3atIEl36ROT|TX6t=JNIi&g2% z8LSa42+bu*o?-&6S0^fiD=RCf(Eg`@w_{(C=d2=H?F_AKoVVlWpq2`x$S8s0Dl zP2u!S;FY18tuejkO(rTTdXbW|9!vu+5Rf!A^plgx*?=x*PtThkqbHKZoiO2*^6x#U z5EF-ZfH+N7vZ~_Wbw5&dV1#{Ia^i%ruK`6`fIA%rzJnWoAX& z={5K8jxvV@K%iD#+y=197x13SnFb9q1J2X+sM!|7`*2VA;TO<-naVB$>+O+453ul| zv~=>#^K!T^q5y{D)GCepyaFKlyUfhT>2kO%k-e`-rLaR0f!57QIKvGAmJG8@Ma3O2 zN3m?Q!(Uw{;5V8*R77C61=+UKUAc{)$t{2V)!_MLQj6nYnJ5kpPzwEzx8AJlww&1i z($-84!@{e7UuFMewD*7ew~_jQ#5EG%#XjEIc;k?@K0tCG`GLw6wdk3@&(q{1Pn9y3 zN=HqRa>;u6681NxlT8~j3YN($96`;zprm)Rf93Jxz`%N#c4hB`)6w&T z2X=OM;HNk1nZe{R&dgKQI~VA=(kD^%U!_S6mAzm6l`?qL`SsfW>-la<|7y_1e%4KM zqb6so|90<7+hLsvZ)!VG{w2OX8fea08^K=lFIN1k*wKkBE7%e(hOvsg_5}Cu)O;DX zd}5W|ga~@%Cyx2_L_tB|uOH*}>s@q)+A5$UYZsCpDx#F@WZxQ{9cC|4VqqzIlh23O z#B;dZn@rRBNBcl=iV=yo4J-BEPuP4VJf)x!b?;s9e6#h6>*j1tclTuOxH-xS;vSupgua=)8gzOxcqfA0>UTyAr#RGr|ZMG%$!CZEgn2S5(6B>m~yJUC#|As{3) z7%rGAEiX5;v`jL!y~6&&$76pp|K-B7qa&-|UtH}cybd`g+}tn3a%$iC5F8Tnaw~>| z&ur*@WZIK-^}#O5W1m8MF9a#+H1_a+7fg|F(lsF$yyvR)#pSG_|N0|gVS&Fl8WD1b z-wCmhBs|vL9RVL<Z8)9L8lVi#0|ujxX_v4pV*O1i!|AbXL1)Kohd3 z4k8Lc9q&*G(rH9LI1pUC_!2N^Y-I`zZ}rX09=_Y$%VCLSQF^m6gEa1MC2vpUq37aK ztaF0H5}jZTwO3JR0Z0tK=xf84Ni^D#BuZ<&W{jv1aJghYaHKF%;W~A~{m#*R5F585 zXaqc74;La$;GI178_-u+o+5k{l0*uuR%ig_t>2uJHH9p>cvs0STSGiW+x>*wiR#~u z*Twf&!!k-)oFpIAzlKIea3`myYXQy6`}uQrP?wUX6}#k_@Y@5~+c~fY#&}04)1KnA z?;BqTU8Z_%4S9I^4UgUiYW?zv50^N){}_`o34lkc^Xh661~EuL#L^! zDM2qtA*w0L1Y?WtOr8NDs&A@Aw?&;-8vE+6bkXo5zCABw!qUn`h$gOcZXz z;FIMS6&bbvQGB-Tnj}&bFX$}czLze(_BtQjRe0vNUQ18lE7~73(o*)OD^rUtp+BFR z%a^*Xh#_=6wkY^@^LXX141e*orQz#Pggpy3#y;!C_HW&u1&)6=B5CQ622d@88@*z< zudS`UZi)&6QQKz~F19-EmX|2z=i8HcW8omCZXKR&x$mIzA>xbI9Z(wdIyS=Dn(s)1 z;)BJ=&%iqW@TXbE@^tj{@pp`FyYH~C z)aSm;{&tqbn}26YO=AXdb?%E=j4U43;^6qRMYw^~_&F)#$4xfNJQNuO8u7Wh#$&(~9AN|OCt6iS&qg+cV_3K5+sJHg7eiU5#XfSSV?sYXKieN?} z*}tqzxO0EZ#YhV8M8fg?$K+5RUf!AJ{PEIxE-49S%FWsQxx6(6Ir$F6H|4C%h}|dH z!%F(5J46yTQ?(Bk2eV{A@kkgb#0b#KL|}eeHzk&BJxc_qFfLsNAJB@Ux;DKH9;4{> zsT*Uz$fYU|cCgrSZ${TuzHI@7VPn`WA)zy?sA&dj>bpB;dkUKb8#iHRF~dPvpODC=InEq7XLY|0QH*YU!)w7@SN^w{adM~dT%R68An(y15;usE&U@1L?+&Cru8b@i0H2#Is zyU|aIGG9yt-;i;hiA4Eo=x`aBn|JA>wBr&qpB6};)zZF5Wgh$Y0Z11_!zK>0T5}32 zSBP|9={-W&NaEWZY@4o5$P4$DLyE~&@!My##M*x9-T*UVaWEJAoCqbY$4Xi6+mnD_ z`o^H{;fB>f$U6c`EJ_6v3;OP9f%%ys7k>xq3ECxj_y+Gh2`L3dBdCJa6wI|jb|(PA z|McW*U%FD{xVi87e9*95?8^)d4dqA>u*R8$L?3e2-p{@ylw8`=^BoC5=dVhFuh_o= zgfv6Fmq{f{HS{ExxcSXQs|HK~nWk8_e76-vKcoFE_xGsbBu0}p#8p;Se4xo_ZMq|# zma8hOo(RNxDCBIr>~mOHZf&l7*y9!~`Pxlj8Cv|G(0jP!k3Hh%ty}rFGY^9(IG*^P z+fn{;xYr^nWp8bLk%FZfG`D!gDIiN28`EluVh-0=F9A_NZ|f>k7j;cd6q})8)T&!7 zmu}d*cV|ISZxV7b5PLeu#>VDHLi=#$Vd#szNy?KEWD3CD5+^VDrY=uafW-C{F4aV9 zWKw-}mKs3O)2ZQ-*ESVyf)^~sE!pUoJ+m!z;%l2{m=%sX-Ugzc zfd|+GEe{f-&_W^jPCmN8zg+X$L&D>jxAkZ03U)2s$f#z!x(JXn%Vmagabk&_ z;@>aRd!G0CRrK*PDNXZ!u(xuCsTR{}^^CLvdG_cWl_hyOxmT+z9l=}z#vsh_<6vb^&eFTDndF=9sSd8e$o9e!>|T6r z(QqVYDl_5Ph%O5N;MmzGWS2mcl_O?1UbIB{YCNBB4S7hP3pOmc)q;LM_0h>YbQ5I0 z(b4=_gB*GT6^do9OEeD%VvU;kSQo|TIjf2m%ir>O zXJDSNm%mZ8{DQrAm;Z)=!I#jUoWDV(7}8D-x4OMOWFmL_i^Xt3qPTku=tkNL3Q!=x zR|o2mk0WZ|3A=4m!A8a}7Z%~>cTJBx1kWCc( z!PF&%u>D@8JBQ=M1nKUQT&X{^|25hMyc9_7!daIxFt{#xgdq#1<^K}ztPE&T3ru?+ zUcpp21#jMBDzNLn4JH1#TPsZs4QW|g0Cau4Pd1AzbJ)L<+)qm*8p5aj%cB+R)P{Y% z{74staGC6)7Zq|k62k7f&x#;WZ=n;md&{9&OiE2{y1affDtikGFfiY~{e=0n zta@*&k(4o|>KfJXH72GYYI_Nu{{|TGw`EW`SIcC3A0~ZMD;J(?Rc#VZ(JU^eC#9*5 zFRWS~M+Rn#sv4V*nu7AqzmsMdm?SN)|3fE^9UVOU{B4&RjsN{v`#-rBupU5|c;#=B zKy7Sh78D&_lwbFE^jy;+fYCEH4vUW$&d+x)6vzK03<=f!$fzhD!IJ+*d|iC@_Q4j6 z53^tfejW8CVNq80boe`M#6r)bG7EX}KUr^FkK`or<~D6dVt>%w>xvO|bh?G}pAory zx#cW;8^PRj}6Of_7TCpTG_Dr^WCasIAC9{+F&?j*yE?B}GWAj4J0^X`dX~pC1@dC1enL z^glm;Z%B%OT@<=EMJ$H$B8X@OH;?xU^NaFZVnlJo#Kc~dI1#nQaMX;n-fj>P6jTF4 z%8p+}=G^@9-p=CR3Vp-7lpE$jPa6IX8YE_v`)~Yx^w-NY!ybWc0V-^y$SmJ+RDhUK zxORvqHS>8EQ=v&$4U-~+j`uPD^2$n~7;%D_0H0YOOG5!gho;_}$1x@UfgvKJ?WA$5 z`(|~hjQ{4)mr~yQK#Wv^iyJ3uEm15W0Jp-@7KOma-+&vRPAQd>->{kp0gS1xVDKD? z!OmJ1MB6ykL_MU0JG@T;W^B;#+>~m9Y`9&c*>upnxi)#vf$$Ciu)AY z@dmQB>)3L)r=ely{CR_i3_SA?W+UxqxPG34Y7oW)||=D(4;lAX!oZM6@AUyc8I9%QNOwSTLk zvU2#RDVb)8WvVQ?)6Y>rK)^%9iXEOU{QC&mSgtMT(wbgfwPNZ0VX7R%rCSpe&6e^d zc?d{Nw+>sGN^zagZ6J*IXoZ7x;R{^Sdj+ z<-2^wG3iXyA6OQ~=7U8`1Jnck-_@~h71+EJNQm)#rgva7;CuBH_0+hfCk^{+P~??- zuKQ0KvbnHfYzRlp0)Aw3dfV}y2d?+(kp2tjxy9#RAai!GvsAZ~OJqF1hi!6h?%RdF zzu^iaf+P_qy_Jz7m0YEywW@><(-*-8hxG8|fB@1iZb88eyXaQGa`GNFWFhY^@h-dO zuQLd;D0h28AyIS_WX=%Q!GPfTAd%idmPv_;LXMjsrqED=r8-$lL{a-d<%}vuU0pK* zH9Wj-574}y0r|gqgZ5P-Lll|!e*xx;X^#1D!GoX;42iv+U2DP3>iG^$EOme}jHY2c zjtY{X`%t)2{(wzyI5dBLdJsH6o8MVCK{$3oatTCdfv4$udK_Wno%0$XY$zmWF3dfK z@UR)Mc%W2V;nZSjD2})s!AeRBAS+3~JFO3oVG~HW82wMBo{MM=oTi-dx%np`lekWkzW|M1DVxrSdmOT8gWpx`3? zVEnUMS27?OwsVX9G6QN=9>NAQ21JsKVlDxeqb0r2D=Xr#4)w1YKJ$^cFwwhD`*D^h z3jHA@<=yn%8!lPPReAir@^H5s0#p!NW9H_*#F(;6((m~m6l_6Ry%9bP@;O2fe45?r zs=9iU?`H48qkoe(S-epmF(zq?Dzm3_ULA8aaD`#PmhnK6RoH!(9lHZU?~)c=mGaC; zsVT3Hjt*!vv3BghoH{BxMaU=c=|hbsJUi>I?>W9#zpK}`m{Vo!G3%F^SQoeO^gd;nPd-wuE2NR2K50`ek^`myl5)1a1guM(>cjYZ=fq89yNTZ%^G^=3!MSeKoHw(e>#gf8`%| z^AyjM2SCPl-I|}PQ@XLSw`Z~ud83Bvv`w`C_?Gp@- z6a&fzq*z47P$>_vGiS0({B0I`(kw#n7bwWd{mj45{b-4pmX=mCwLX&kwpz~H@Ng0w z9Gv!e-obwY>FJ}*hJA&n3+{!vUX*eJ4&@!^2@fxwb%LG6fg9I&UPC(i(wvZq ziD`Rz7%yda1tLhZ;*_Jk#r`N=iX*w+bouq|A9pi4=^^D)gY{3Z zAvK{DrAxK3$upU(#<{|#(Kqz@k$~CQx61$;{ELzzJM8L}5jqR~QT6p-9b%oGo$DGK z{a|0ZOdc&_7#V%>3X4>1XA<_2OqZaH%tyz(wZ3Ep6JR?lTU&z&D7m=Z+T#d2K3|RO z<+JJwI7{Glon4I1dW~Z2mm`7CQXSmslI!@Cvl)#|}PN?u-GFN{9J{QP{Pm}`)7hC*5@#pQ^^ z8VPHO*68mt8(*H=IWtZqa=fq&rg%rbe-C?8y#9Cz8S~_L#jU${@5cWM4<{ujZ)gZUC7fwlW=<4q{n8){WyP5i zXpil2vcl{eVUAl^DY$fM6F@}@4y0d>?(vXSQ;U8jbWKxJysh$0%0>DNz!LyJZJwOJ zVe4!^1Br4Yv7+>BAlA*Lx{@eVYpT4$hB$i2re(2e>SD!Cl;ZV8Ou*o)fI$z(i zVliIivmPLo+7LS)@)03qKTik;7mx9U>ydR(!0{JEdH4dHDOu27`;MSj?yY=^1fCDf zy)U+@53vSET*!lih@HM~Q}{l)YuzeKiAhNybR4+7*e}{)Nh@epU%pm#e}8iha#(|z zMtLlM2a2myIg^~4#ffk0r9DPUAOd>>{RKhKv%F*rtDxrkdne5*a|E;Ze2vjNP7zjK z9KSp9Op_w_SUxa~?o-{FwY*4iyFPi`-36WW85li=mPQR3DWR#_qs4FEzTF)E`q*P{ zMH;a2}9v67eLKHEG(cFe-{Hn3AKuw=Ie{Ly^~`-W~Ej&W@q;gf7t%o^CT! ztDQyWgYg2MBCs1g*_jYqICj-aIne}yOq{Txh^?)y!_tH=Ogvt@*~6cv<1|oi3!|6p z%$Sjw8QPd(U0rrjktAn%>Z2%e5&%Sq_soh6&<|Zd%c{IT6HWy6*+Tu9hv!IW9wEIv zd*u*A!^0aj=hwP_J!gZ+vdm@*mkfCv){#(xc>3c7kHkLa1{MMV$mKi<{d8fM1R4N( z(_Pbt2N+vRF3n$Y7s*#Wr>J=k$Y=zu>V0s0bv zvrA6=i;DPxY6>FTl8S0a*RP+x^Q~mduGCGntz>wip#j^MYv&a9(} zqa};mTgd}`Ow5Q8mt9X98X9<($3LrNY3xK8!QRr+NVG(h3n!mZDZRP5IUU_H&ILlb zV|_+SN|{tYBA`i2eRt$HciWf=-^$df6gecJn_L|)2LpyAMsLiu2W7CoOsc1z17NEW zBHlo<#+mu~kH%uqN%S~h(bFv>$;IVEcPi-jZVSXvQ1Drfyw$Js$5}r)T4@^W_yzW0mf)a6vrQt6FmM%BL+D)ak^_ZDz)qKaxLQpwBTi4df zIiq+huejjOkz{t6G?QH1BdGKOb@s{6X*kfo|n45dt zfBQM%9CYx!8fj0U;Lrp<9VjTCh5MD`WuT=^xN zt*0VmjPu-vjdC6$4hGwQcox1}L&@u>TPznAxiV*CyEviSbZonZn3}o_i-8h?B6g0R6W>ip zveSgmT&>K}MiT2$DO;QBzlL{(X!87IK(2L=cgk%226FA#ecBod22gU8?^le8iSauy zkxPj&(C#Lbcs}{qlZM`Ltve1&VqvC$LXb6a{2OdGx^im1hMZ=JoJRjVz}H(YRotIn z$~B!B8?`YyhH#`}qcLGUw_F<73(xx0^QtA+_A?I+7n?i};`N8WMKF$`GT7=H8*yz` zk6bTOus^D~_YO{>Kp!IeXwnBQHDF>L*TGZy&Ea@poi(kcKLbS8hw>n;!y)-Ha|+K%S{Dle2- zaG#bwn&N9~Puv$TcUn;(ZwjT|Q&?sU$>vo0@^&f=*IV*bE|^E+8pDYr>5FeqKRZ~b zBqmzK$>m9JOz)j?MC4eqJRrq(pfmZh}hlT_1lE(hqZVQxv%I!-Wq#;vaqW$AF6+l7+4LJ zklqS{bMPIkbE7rXgZ0V9qg1iX@RUA*y>L7PuW}*ZXmiety7a6q>`$PSl&o-aONK>z zEUM&uXJh;Fez{H#fJL)HP*@;zMJF{$;9uok9;rO<13;xjLHm1WKVZQ`8VrX^o=8JZ zDgUvexgafAy};!f*1KZrPrhM11!}kujTO(XuYc=ku2$&SW_*!S!5bH$2P+UkNW04k zN2l=-#=56Sdr6gJ|F|TYT?0cf#@K1I{c6$kZ~>iy;{w1!#nGm02*WYYjfaF8Podk; zI;F9(@s8f)RfQCZ(ClmuvPSQ^xwhD0NRA*D^bj(;BJRGeH#Wo*LdBD~O?U6{OZ@D1Y`Ap8D znAIzdi6Azk$vLnlt%VdFw2t$v z#t#Vld5o8Z!2VAb-q6u((D)#PdSS%s@!Jny^yN%Q21%u z`*CS7cMAe9kSBKkHL`ZPCM{zC8 zI~y}2=P-*)8+77MAr-s3kX9^Z9_UElWaG2?9YsmI%?G%1W(BPG(3C>M-mg!mzNotg z%1hs2XJQ%|x<>WYk$j?&X(noQP6foc!>T;p3SC-AABMP~V9yl+3fjo zY`*1ErA+VhY*k<2rW*QVd7`1ehp>ye|O^rB&q*c9q7?Qq`bB?Z)sCcLfBKp#P4L&Lk#k~#=f*uZ;)9G+++@ml=TY_sQBG9I)bU=B}8 z-GHUy#C;vffV}x7D+51?2Am>IUE;L{IilkxG4HMhu#n8X}*@{E~Ac2 z`#8(yi&49&O{Me>x2Ubyu*oUaH?KXLlt&Bss|^RmZB}cqP0;B?d5KHTgmY{K1Q34q z?&=Cu3^1H3=*lZDHXJ&gSNihe`L7)=DfI4r>ON<&F=P;Ot=cT+nC`>kEN~&;Dx2)( z8|*my4V`w3)kY3X;63B;&a=qKzF{utp=g;appxB3wW`aSa%YLCGjTM$tn8NMN0Kj! z;kKDfiK5;c7kbeZ4g0b(%_+H8#eaD{3Qj*pyn;cV=h~g}I~7()p18kn=SaP?dM}Y~ z{8?YV+4vQ!vs%W>&8Tl`qvw4Xv?ZteOImr+8GCU@J39A=KfR|VbVV}6<}hTahN@N^ zB3*|@hGyJ7*l=E}JzJTX%ktjpJioL4ed0~5NR_i>H{M$KZn|OlwTg|!uQGJxid-SH+#j;$t8ndFB4J~C=RD^Cc{k+P< z^E%?bciPJhvykKOWG8}L5>DD0POI7q$mA5|Z&K98$J`-g8BUvxKCDnVzGJz2YGdb+ z_Uzp`y3O$mdntJim_Np5?nUxjtrel6;`AdG4dDcm)4x!|e4}y-3QXI(9Cd6WOq+q8 zcMK;0p0G>Y^E;9*>151vnFFBY7wdy~Q6>Eln!!l;QXx2N(i)S~0MmX$ytx0Vaa)+~ zH|0WlaovMBL+0YGwjM?0qB(a9g4LV`LgrJ1LRb!;>*w?TPfu4K59QX!M;m1=WhqNh zRMw&-;-ZvnS+YbSA(1V+VccYi5VB6FgzRKr$3B%U`-En!2{WOI!5H)Y=DzoR{mFbj z=6TL}&Uwyv&F%fAeQ-IAUCz-ABOy4>VMDQ!NF@&j#7=~d+x(5(_OpOF+!de^l;if+ zgN;aLN9?8|HK<9h%4NbCVgJ)o@;}Jz5H}n#xu~;^6hG26Y&-V4`sdE06Jde42#Ha> zU8VGu%dM@u{V1p>j<>40+wf_zz+2U?OQDE$6`qeM9J)una|4$YU>0WiRF}y+O+j94|=f<%1KBYJx7k)e=f z8-grBolHG>;sh)izB)bKj&oOn*ShYn=Ho@KrP9Jj4)O@KAKNW9_#wzN40A!)!h-pt zbGqwkBW!_`;CPcRMOqX#@O`Gm88?Pa%zU|ed-obi^`TJazE?|a%nR&G25M=ywkTV# z(=Oa8v!%q#&%{R6ci~Dd$3reyjRD5iE|D3n?04q&G~O-V@KnCh2kTVv^|rxJi|x0) zzjFO6$1~Z#T4t^y-FWNo0pum*xz$y70oB@&T2)M+lIT*o^@!cmr>=;Vb*dNpoULuv zvW$XXcim87(PJiAxkjHycJ3%lcef-oTkLwHmaf;GqV!Co>Dd0-KyFx$hWjDeC$2yeaPh@$04}ZuSB8pEz%ps3cU}qjZ>A7n~}(Z?P3iU*l7FbODGW zA|4aD-)IZgtZKHOwA+!Fn2PVJMmz1a!hwT}%QNx*wSkPk=?3|xk302QAvJl2z}|*{ z%ljBODsuK!QIu{*L)e~Xb~-A<*NxQa_`TXhe@owjTqf2j89f)OV6=luLyZ6D`y!Y;{BZtj+(2a047th64NRK;3SR#Mhq_`h{=;E|@k#^D}nHqdPA zsuo7cPdEhb(LdE9&fov}X&=P7%hnLCiim2Qh(1TEY#f`k&dlT|hkY$yx=y^Zq68Ax zFfGJjfi1fFTg@7?iXb7elfBNyVd+zGpajU#WM6!PF#jrHcMnfdWs!)s>k9pKn{VWo zJUu+K%x6q51$l@UjOgVArNFgT2KC1h+muDir3jE9L7k%8i z`sI5i9}Hy-QcpEKNDJ){yg#kb`LjWg&e(TV&cb`(XmJYYt0u&t5_69?<21)9O03oKjnCgf2V=2 zHhfi9?ls%hf9$i7 zwhl?qhsiGyvJ6(^V_67S+$)BpMDQt?k``lG{vjY3uRVR?BlwcRN*cA3L(~Ga*!>HM zNZ8hc`&8~Y5#2l*II)#tmxf}^6Jq$44u{wkVC-o>Qd93ZczPP=+tGvMZS4pCr;;d& z5g@#ZG3?_c*jn(bX3H2DOv$?r0If0W8$hA=E<8a^O_{Xf-o9T^7O4LJysJCn7Kdiy zjTY3b`nEmaN8EHeaub%g}w1o)D@fBY}(`R_|pMgZDp`!6K25Y9V(?>08fF1lno z5oOPZ{<|;4lb&i6mv8oMc5-OUKEFs;%#8TN1p?(W-9$kFET0m~L9H_3 z27|#E%t#o%mlajr2nL;Ev1KC&08Ooe)Qmml6C)YscU$_%dgVwy`dO6rTB5= z5viNGz3HGd&0tXJ4OiWPiecf5m3_7OXV9I2Rsyy9ehd%CIv;}I&4)i9L$!y{IL2{p zstv&X=4Pgn-;~b@@Ii$(Y9`))Cy>qlDnQ2oryhmW7+T-z6>ArlUfxWUCTKQ+^3uOc zNKoEzzT~rG8A;)7ZfVJ|X~UnAlzh?L+$~x2?{)*>(uOK4<7SPfR zvvsXN-=z^L4x!6ejg1%2z2T2DUz-&(Fz5%w_a#~(b6e%+2;hga^V!1ZYWg1hb613U z1DnCK{z6bQhY>>V@eG&=+fOg6^Qs@+2i6!<|*o z9nEENUN7?@sDRV!Krpl*i-vL9w#Z;Se$Q$Fh^__DEL5`}KP~$*8hz1yov2uYIz`zI zWi7lLP!cO~JO4&W#ua`!Z_9j%2qva8B{6VN^dR*!e9>Cqw$?VLM?;hD!JFaHyW3lHnU`HJ2^wvG`M*Lq!(hWL{}E zAk2YQ$^~peU0oy3vi5v|39S>tPlN*4lqU!<+6-+AFt1Y!<{`c5mzh?+<<8)MLGIVuy?E~?wJ9s+5-O;*Yvz+rSob&MMNj3Ng z*mA4i%8V3SgeT{UZ@x|khWjkw5~AnN|1QH$wynLN=hIo9*YO`JT)38{8SUog)=cP& zz2G#;|LZky1g%(XIM^>ia2^R4ccZKbRzmn%dB$ZTK2Swu6h|zt6|w`KH@PCr z$w~|dO>b(~+(Qzru1w>gmJRHT0+&9H;A|e81^=FiqB@{qV3cmIH)l9jv;eQ#v~An> zYoay;xIG$`A_^HaAglc7K4^cZ(pd`{qU0uG7=N-N>BAZ+=MdCaMH*iisO1K}0`cZ{ zR}yZ%r;Ac8ucjF9We!(4~XOqO;_?6sMK}Z=~F{wZu>Bzp#pI13O-3&Z8t^DhFr ze#w1$PvThU2>%NisXkfgR@Hf#!7*>b%#OXO14aH$J-y&IJtbGD81F|9CyW-Oc15 z^O?MiHHhIGyjw6LYHMEaaz*R&XHO#Tgb^i9ydjqp7Kkh>LQ{%`nQVa9&BiPQVo#~o zRW;*vfhypmc<()2!PT+yO6$O-4(964FJtII#B(ceFoFUC8xWKYVuEwS1*W-POC|z} z(@r({w2ow}GB5-lCMhqZ_?dy)oe<=+{9t1=ly!41*@}HB-=wG&#wS(5RR|P345asr zi)o=@?Rm&@v4Q1aqA3u)L))5~oNOj4J~3bEDtRSgktBWha&7?ug0%Ia+peIL;hrrc>;3v_4Bts}uxTx@3#YV`Ku5IwNd@^DjMX1~KO6q&PK`nr zNJ!n057$xIH%L_^p9Bi1P)El zKoHCk5FmgFd>Z_`UXN6_uC5q>#EuJIaK0oKtWYTPK*}(zE)Zyp02b{F+)JqXW|#`% z03Tjle1ua`mVDh9Ksj1GhE7XUS${S*HWmq81&pARK2{#Ytt?Hi`|q;MD;E{OOs43& z!Ud9nj;=v&5Wy=qDl;k(d8I8U;i=ee@@EH}v=@xu9{Xsjn}0{^sF=Z}<$-2S_3j2dxuS zwuR5k&tHdW$#@w{$ki(gpa=zvccuVcmX~)1OlS}^AqQ0B&P3TvTp1+ye|*?~9}1Ns zl9L_M>?FH;HW#~O*h)Z>f|Cmy^w+0<7X~j2gU6ewaSwqQ;!=lYJa)v7y0hvjaXc78 zPOw6|Iky5jA`>lZ{S(3dA?u1)-ceaqfc>Ps1Ai=wPf#%Z2UjpwP>#+c7`Ut#g~OTM z7p}{i{*x-l5M@JLLfK;~eOwWpwCCMvHr02mj}Ik3mB_mt6Kz4)t9;Z?cy6K=W%=iA z+(TnlEKeF=PwqW>_Jl& z8$(Hz@#%(n(VL zLYS~+d{vM8*4%_@Erq&1%Ib1Anuy9Ko>L{YTzg_K)c^3X?qIFV;h*01mSPDnG({gM zK7*b?<8(%`Ev zcC)1~+NS=BKRGfwayn5Pvp5BfyX)VFqULtTpF%VSp+mA7wUX%Kc!V0I$SIfH RbsPadTG#Zh7OPu7{SPsEO*sGn diff --git a/libs/ledger-live-common/src/featureFlags/defaultFeatures.ts b/libs/ledger-live-common/src/featureFlags/defaultFeatures.ts index 45c4c7dc3545..9c9afbffa236 100644 --- a/libs/ledger-live-common/src/featureFlags/defaultFeatures.ts +++ b/libs/ledger-live-common/src/featureFlags/defaultFeatures.ts @@ -89,7 +89,6 @@ export const DEFAULT_FEATURES: Features = { ...CURRENCY_DEFAULT_FEATURES, brazeLearn: DEFAULT_FEATURE, - objkt: DEFAULT_FEATURE, portfolioExchangeBanner: DEFAULT_FEATURE, postOnboardingAssetsTransfer: DEFAULT_FEATURE, counterValue: DEFAULT_FEATURE, diff --git a/libs/ledgerjs/packages/types-live/src/feature.ts b/libs/ledgerjs/packages/types-live/src/feature.ts index d14a3468e2d9..8e892d9cc3ab 100644 --- a/libs/ledgerjs/packages/types-live/src/feature.ts +++ b/libs/ledgerjs/packages/types-live/src/feature.ts @@ -156,7 +156,6 @@ export type Features = CurrencyFeatures & { swapWalletApiPartnerList: Feature_SwapWalletApiPartnerList; stakePrograms: Feature_StakePrograms; portfolioExchangeBanner: Feature_PortfolioExchangeBanner; - objkt: Feature_Objkt; editEvmTx: Feature_EditEvmTx; stakeAccountBanner: Feature_StakeAccountBanner; newsfeedPage: Feature_NewsfeedPage; @@ -535,7 +534,6 @@ export type Feature_PostOnboardingAssetsTransfer = DefaultFeature; export type Feature_PtxServiceCtaExchangeDrawer = DefaultFeature; export type Feature_PtxServiceCtaScreens = DefaultFeature; export type Feature_PortfolioExchangeBanner = DefaultFeature; -export type Feature_Objkt = DefaultFeature; export type Feature_BrazeLearn = DefaultFeature; export type Feature_PtxSwapMoonpayProvider = DefaultFeature; export type Feature_PtxSwapExodusProvider = DefaultFeature; From 00b34ee97789a7d399afe8213697ecfef758fcf4 Mon Sep 17 00:00:00 2001 From: Samy Rabah Date: Fri, 18 Oct 2024 01:53:57 +0200 Subject: [PATCH 18/57] tests: fix by waiting for response of page.evaluate in confirmTransaction e2e test (#8121) * timeout2500 * sidebyside test comparison * expect response in last test * changeset --- .changeset/chilly-teachers-own.md | 5 +++++ .../tests/specs/services/confirmTransaction.spec.ts | 11 ++++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .changeset/chilly-teachers-own.md diff --git a/.changeset/chilly-teachers-own.md b/.changeset/chilly-teachers-own.md new file mode 100644 index 000000000000..dd4d7d705420 --- /dev/null +++ b/.changeset/chilly-teachers-own.md @@ -0,0 +1,5 @@ +--- +"ledger-live-desktop": patch +--- + +test: fix by waiting for response of page.evaluate in confirmTransaction e2e test diff --git a/apps/ledger-live-desktop/tests/specs/services/confirmTransaction.spec.ts b/apps/ledger-live-desktop/tests/specs/services/confirmTransaction.spec.ts index 3f0d31223bec..c7713542c785 100644 --- a/apps/ledger-live-desktop/tests/specs/services/confirmTransaction.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/services/confirmTransaction.spec.ts @@ -77,6 +77,7 @@ test("Confirm Transaction modals @smoke", async ({ page }) => { } const liveAppWebview = new LiveAppWebview(page); + await liveAppWebview.waitForLoaded(); const modal = new Modal(page); const deviceAction = new DeviceAction(page); @@ -202,7 +203,7 @@ test("Confirm Transaction modals @smoke", async ({ page }) => { const recipient = "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2"; - liveAppWebview.send({ + const response = liveAppWebview.send({ jsonrpc: "2.0", id, method: "transaction.signAndBroadcast", @@ -242,5 +243,13 @@ test("Confirm Transaction modals @smoke", async ({ page }) => { "You're authorizing this provider to access the selected token from your wallet", ), ).toBeVisible(); + + await expect(response).resolves.toStrictEqual({ + id, + jsonrpc: "2.0", + result: { + transactionHash: "32BEBB4660C4C328F7E130D0E1F45D5B2AFD9129B903E0F3B6EA52756329CD25", + }, + }); }); }); From 6f8b3390232f9e18516f2071bb59047d9942b3d4 Mon Sep 17 00:00:00 2001 From: Thomas Brillard Date: Fri, 18 Oct 2024 09:20:32 +0200 Subject: [PATCH 19/57] feat: backport demo1 changes (#8133) * feat: backport demo1 changes * fix: lint --- .changeset/spotty-experts-train.md | 5 +++++ .../exchange/Swap2/Form/SwapWebViewDemo3.tsx | 17 ++++++----------- 2 files changed, 11 insertions(+), 11 deletions(-) create mode 100644 .changeset/spotty-experts-train.md diff --git a/.changeset/spotty-experts-train.md b/.changeset/spotty-experts-train.md new file mode 100644 index 000000000000..0f6338f474a7 --- /dev/null +++ b/.changeset/spotty-experts-train.md @@ -0,0 +1,5 @@ +--- +"ledger-live-desktop": minor +--- + +port demo1 changes to demo3 diff --git a/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/Form/SwapWebViewDemo3.tsx b/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/Form/SwapWebViewDemo3.tsx index b79d3d70caab..15b87e4c7d13 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/Form/SwapWebViewDemo3.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/Form/SwapWebViewDemo3.tsx @@ -29,8 +29,6 @@ import { } from "~/renderer/reducers/settings"; import { captureException } from "~/sentry/renderer"; import WebviewErrorDrawer from "./WebviewErrorDrawer/index"; - -import { GasOptions } from "@ledgerhq/coin-evm/lib/types/transaction"; import { getMainAccount, getParentAccount } from "@ledgerhq/live-common/account/helpers"; import { getAccountBridge } from "@ledgerhq/live-common/bridge/impl"; import { useSwapLiveConfig } from "@ledgerhq/live-common/exchange/swap/hooks/live-app-migration/useSwapLiveConfig"; @@ -100,8 +98,6 @@ function simplifyFromPath(path: string): string { const SWAP_API_BASE = getEnv("SWAP_API_BASE"); const getSegWitAbandonSeedAddress = (): string => "bc1qed3mqr92zvq2s782aqkyx785u23723w02qfrgs"; -let lastGasOptions: GasOptions; - const SwapWebView = ({ manifest, liveAppUnavailable }: SwapWebProps) => { const { colors: { @@ -181,7 +177,6 @@ const SwapWebView = ({ manifest, liveAppUnavailable }: SwapWebProps) => { account: fromAccount, }), feesStrategy: params.feeStrategy || "medium", - gasOptions: lastGasOptions, ...transformToBigNumbers(params.customFeeConfig), }); let status = await bridge.getTransactionStatus(mainAccount, preparedTransaction); @@ -189,17 +184,17 @@ const SwapWebView = ({ manifest, liveAppUnavailable }: SwapWebProps) => { let finalTx = preparedTransaction; let customFeeConfig = transaction && getCustomFeesPerFamily(finalTx); const setTransaction = async (newTransaction: Transaction): Promise => { - const preparedTransaction = await bridge.prepareTransaction(mainAccount, newTransaction); - status = await bridge.getTransactionStatus(mainAccount, preparedTransaction); - customFeeConfig = transaction && getCustomFeesPerFamily(preparedTransaction); - finalTx = preparedTransaction; - lastGasOptions = preparedTransaction.gasOptions; + status = await bridge.getTransactionStatus(mainAccount, newTransaction); + customFeeConfig = transaction && getCustomFeesPerFamily(newTransaction); + finalTx = newTransaction; return newTransaction; }; if (!params.openDrawer) { // filters out the custom fee config for chains without drawer - const config = ["evm", "bitcoin"].includes(transaction.family) ? customFeeConfig : {}; + const config = ["evm", "bitcoin"].includes(transaction.family) + ? { hasDrawer: true, ...customFeeConfig } + : {}; return { feesStrategy: finalTx.feesStrategy, estimatedFees: convertToNonAtomicUnit({ From 5ef09665483ecc91182ab080cd09d18cee1eb7b8 Mon Sep 17 00:00:00 2001 From: Mounir Hamzaoui Date: Fri, 18 Oct 2024 09:25:04 +0200 Subject: [PATCH 20/57] chore: sonar setup on LL repo (#8134) chore: setup sonar for LL monorepo --- .github/workflows/sonar.yml | 60 +++++++++++++++++++++++++ apps/ledger-live-desktop/jest.config.js | 4 ++ apps/ledger-live-desktop/package.json | 5 ++- apps/ledger-live-mobile/jest.config.js | 4 ++ apps/ledger-live-mobile/package.json | 1 + pnpm-lock.yaml | 20 +++++++++ sonar-project.properties | 8 ++++ 7 files changed, 100 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/sonar.yml create mode 100644 sonar-project.properties diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml new file mode 100644 index 000000000000..f8a7e0af1105 --- /dev/null +++ b/.github/workflows/sonar.yml @@ -0,0 +1,60 @@ +name: "[Code Quality Check] Sonar Scan" + +on: + workflow_dispatch: + inputs: + ref: + description: "Which (branch or tag) you want to perform a sonar scan ?" + required: false + default: develop + schedule: + - cron: "9 19 * * 1-5" # every working day at 7pm we will do a daily scan on develop + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + +permissions: + id-token: write + contents: read + pull-requests: write + +jobs: + scan: + name: Scan LLM && LLD + runs-on: [ledger-live-4xlarge] + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Setup git user + uses: LedgerHQ/ledger-live/tools/actions/composites/setup-git-user@develop + - name: Setup the caches + uses: LedgerHQ/ledger-live/tools/actions/composites/setup-caches@develop + id: caches + with: + skip-turbo-cache: "false" + accountId: ${{ secrets.AWS_ACCOUNT_ID_PROD }} + roleName: ${{ secrets.AWS_CACHE_ROLE_NAME }} + region: ${{ secrets.AWS_CACHE_REGION }} + turbo-server-token: ${{ secrets.TURBOREPO_SERVER_TOKEN }} + - name: Setup the toolchain + uses: LedgerHQ/ledger-live/tools/actions/composites/setup-toolchain@develop + - name: Install dependencies + env: + LANG: en_US.UTF-8 + run: | + pnpm i --filter="ledger-live-desktop..." --filter="ledger-live" --filter="@ledgerhq/dummy-*-app..." --unsafe-perm + pnpm i --filter="live-mobile..." --filter="ledger-live" --no-frozen-lockfile --unsafe-perm + - name: Build dependencies + run: | + pnpm build:lld:deps --api="http://127.0.0.1:${{ steps.caches.outputs.port }}" --token="${{ secrets.TURBOREPO_SERVER_TOKEN }}" --team="foo" + pnpm build:llm:deps --api="http://127.0.0.1:${{ steps.caches.outputs.port }}" --token="${{ secrets.TURBOREPO_SERVER_TOKEN }}" --team="foo" + + - name: Generate Unit test coverage for LLD & LLM + run: | + pnpm desktop test:jest:coverage --coverageDirectory=desktop-coverage + pnpm mobile test:jest:coverage --coverageDirectory=mobile-coverage + - uses: sonarsource/sonarqube-scan-action@master + env: + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} \ No newline at end of file diff --git a/apps/ledger-live-desktop/jest.config.js b/apps/ledger-live-desktop/jest.config.js index 71958c859afa..83978432b901 100644 --- a/apps/ledger-live-desktop/jest.config.js +++ b/apps/ledger-live-desktop/jest.config.js @@ -73,6 +73,10 @@ module.exports = { "!src/**/__tests__/**", ], coverageReporters: ["json", "lcov", "json-summary"], + reporters: [ + "default", + ["jest-sonar", { outputName: "sonar-test-execution-report.xml", reportedFilePath: "absolute" }], + ], silent: false, verbose: true, projects: [ diff --git a/apps/ledger-live-desktop/package.json b/apps/ledger-live-desktop/package.json index 3f00d0c42f2f..ad7a1d5bcb6e 100644 --- a/apps/ledger-live-desktop/package.json +++ b/apps/ledger-live-desktop/package.json @@ -61,12 +61,13 @@ "@ledgerhq/domain-service": "workspace:^", "@ledgerhq/errors": "workspace:^", "@ledgerhq/ethereum-provider": "workspace:^", + "@ledgerhq/hw-ledger-key-ring-protocol": "workspace:^", "@ledgerhq/hw-transport": "workspace:^", "@ledgerhq/hw-transport-http": "workspace:^", "@ledgerhq/hw-transport-node-hid-singleton": "workspace:^", "@ledgerhq/hw-transport-node-speculos-http": "workspace:^", "@ledgerhq/hw-transport-vault": "workspace:^", - "@ledgerhq/hw-ledger-key-ring-protocol": "workspace:^", + "@ledgerhq/ledger-key-ring-protocol": "workspace:^", "@ledgerhq/live-common": "workspace:^", "@ledgerhq/live-config": "workspace:^", "@ledgerhq/live-countervalues": "workspace:^", @@ -78,7 +79,6 @@ "@ledgerhq/live-wallet": "workspace:^", "@ledgerhq/logs": "workspace:^", "@ledgerhq/react-ui": "workspace:^", - "@ledgerhq/ledger-key-ring-protocol": "workspace:^", "@ledgerhq/types-cryptoassets": "workspace:^", "@ledgerhq/types-devices": "workspace:^", "@ledgerhq/types-live": "workspace:^", @@ -217,6 +217,7 @@ "jest": "^29.7.0", "jest-canvas-mock": "^2.5.2", "jest-environment-jsdom": "^29.7.0", + "jest-sonar": "^0.2.16", "listr": "^0.14.3", "listr-verbose-renderer": "^0.6.0", "nock": "^13.0.5", diff --git a/apps/ledger-live-mobile/jest.config.js b/apps/ledger-live-mobile/jest.config.js index b0c87b51ea20..979c2ea873a8 100644 --- a/apps/ledger-live-mobile/jest.config.js +++ b/apps/ledger-live-mobile/jest.config.js @@ -55,6 +55,10 @@ module.exports = { "!src/**/__tests__/**", ], coverageReporters: ["json", "lcov", "json-summary"], + reporters: [ + "default", + ["jest-sonar", { outputName: "sonar-test-execution-report.xml", reportedFilePath: "absolute" }], + ], moduleNameMapper: { ...pathsToModuleNameMapper(compilerOptions.paths), "^react$": "/node_modules/react", diff --git a/apps/ledger-live-mobile/package.json b/apps/ledger-live-mobile/package.json index 9608134a65cf..78e031097cc3 100644 --- a/apps/ledger-live-mobile/package.json +++ b/apps/ledger-live-mobile/package.json @@ -292,6 +292,7 @@ "jest-docblock": "^29.7.0", "jest-environment-node": "^29.7.0", "jest-metadata": "^1.5.3", + "jest-sonar": "^0.2.16", "jetifier": "^2.0.0", "local-web-server": "^4.2.1", "metro-react-native-babel-preset": "^0.77.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 33808e633846..41a9893f8a8e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -761,6 +761,9 @@ importers: jest-environment-jsdom: specifier: ^29.7.0 version: 29.7.0 + jest-sonar: + specifier: ^0.2.16 + version: 0.2.16 listr: specifier: ^0.14.3 version: 0.14.3 @@ -1458,6 +1461,9 @@ importers: jest-metadata: specifier: ^1.5.3 version: 1.5.3(@jest/reporters@29.7.0)(jest-environment-node@29.7.0)(jest@29.7.0(ts-node@10.9.2(@swc/core@1.4.11)(typescript@5.4.3))) + jest-sonar: + specifier: ^0.2.16 + version: 0.2.16 jetifier: specifier: ^2.0.0 version: 2.0.0 @@ -19135,6 +19141,10 @@ packages: entities@2.2.0: resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + entities@4.3.0: + resolution: {integrity: sha512-/iP1rZrSEJ0DTlPiX+jbzlA3eVkY/e8L8SozroF395fIqE3TYF/Nz7YOMAawta+vLmyJ/hkGNNPcSbMADCCXbg==} + engines: {node: '>=0.12'} + entities@4.5.0: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} @@ -22475,6 +22485,9 @@ packages: resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-sonar@0.2.16: + resolution: {integrity: sha512-ES6Z9BbIVDELtbz+/b6pv41B2qOfp38cQpoCLqei21FtlkG/GzhyQ0M3egEIM+erpJOkpRKM8Tc8/YQtHdiTXA==} + jest-util@27.5.1: resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -49599,6 +49612,8 @@ snapshots: entities@2.2.0: {} + entities@4.3.0: {} + entities@4.5.0: {} env-cmd@10.1.0: @@ -54914,6 +54929,11 @@ snapshots: - metro - supports-color + jest-sonar@0.2.16: + dependencies: + entities: 4.3.0 + strip-ansi: 6.0.1 + jest-util@27.5.1: dependencies: '@jest/types': 27.5.1 diff --git a/sonar-project.properties b/sonar-project.properties new file mode 100644 index 000000000000..a2730b208147 --- /dev/null +++ b/sonar-project.properties @@ -0,0 +1,8 @@ +sonar.projectKey=LedgerHQ_ledger-live_AZKKhf387xkLuPYwRra5 +sonar.projectName=ledger-live +sonar.sourceEncoding=UTF-8 +sonar.sources=apps,libs +sonar.exclusions=.pnpm/**,**/node_modules/**,**/*.java,**/.turbo,**/.webpack/**/*,**/jest.config.js,**/jest.config.ts,**/jest-setup.js,**/jestSetup.js,**/jest-global-setup.js,**/please-add-coverage.test.ts,**/jest.integ.config.js,**/deeplinks-test-page.html,apps/ledger-live-desktop/desktop-coverage/lcov-report/**,apps/ledger-live-mobile/mobile-coverage/lcov-report/**,apps/ledger-live-mobile/mobile-coverage/*.json,apps/ledger-live-desktop/desktop-coverage/*.json +sonar.javascript.lcov.reportPaths=apps/ledger-live-desktop/desktop-coverage/lcov.info,apps/ledger-live-mobile/mobile-coverage/lcov.info +sonar.testExecutionReportPaths=apps/ledger-live-desktop/desktop-coverage/sonar-test-execution-report.xml,apps/ledger-live-mobile/mobile-coverage/sonar-test-execution-report.xml +sonar.typescript.tsconfigPaths=tsconfig.base.json,**/tsconfig.json \ No newline at end of file From 72e9132e21712e5348dcf565b48409c66baa0784 Mon Sep 17 00:00:00 2001 From: Benjamin Haramboure <105707720+bharamboure-ledger@users.noreply.github.com> Date: Fri, 18 Oct 2024 09:57:49 +0200 Subject: [PATCH 21/57] fix attempt: wait between attempts for speculos device's screen to refresh (#8132) fix attempt: wait between attempts for screen to refresh --- libs/ledger-live-common/src/e2e/speculos.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/ledger-live-common/src/e2e/speculos.ts b/libs/ledger-live-common/src/e2e/speculos.ts index 18df18befcf3..26a45735d8a3 100644 --- a/libs/ledger-live-common/src/e2e/speculos.ts +++ b/libs/ledger-live-common/src/e2e/speculos.ts @@ -376,6 +376,8 @@ export async function pressRightUntil(text: string, maxAttempts: number = 10): P action: "press-and-release", }); attempts++; + + await waitForTimeOut(200); } if (attempts === maxAttempts) { From 168b482ec4928c270c538a0dea99eef5053288cd Mon Sep 17 00:00:00 2001 From: Lucas Werey <73439207+LucasWerey@users.noreply.github.com> Date: Fri, 18 Oct 2024 10:42:14 +0200 Subject: [PATCH 22/57] :bug:(lld): update LS entry point from accounts (#8088) --- .changeset/loud-birds-jam.md | 5 ++ .../features/WalletSync/components/Drawer.tsx | 79 +++++++++++++++++++ .../hooks/useLedgerSyncAnalytics.ts | 3 + .../Activation/01-CreateOrSynchronizeStep.tsx | 5 +- .../WalletSync/screens/Activation/index.tsx | 16 +++- .../WalletSync/screens/Manage/index.tsx | 14 ++-- .../features/WalletSync/screens/router.tsx | 11 ++- .../screens/accounts/LedgerSyncDrawer.tsx | 31 ++++++++ .../screens/accounts/OptionsButton.tsx | 50 +++++++++--- .../src/renderer/screens/accounts/index.tsx | 2 + .../settings/sections/General/WalletSync.tsx | 73 ++++------------- .../static/i18n/en/app.json | 3 +- 12 files changed, 210 insertions(+), 82 deletions(-) create mode 100644 .changeset/loud-birds-jam.md create mode 100644 apps/ledger-live-desktop/src/newArch/features/WalletSync/components/Drawer.tsx create mode 100644 apps/ledger-live-desktop/src/renderer/screens/accounts/LedgerSyncDrawer.tsx diff --git a/.changeset/loud-birds-jam.md b/.changeset/loud-birds-jam.md new file mode 100644 index 000000000000..9265805728bf --- /dev/null +++ b/.changeset/loud-birds-jam.md @@ -0,0 +1,5 @@ +--- +"ledger-live-desktop": patch +--- + +Update sync account entry point from accounts diff --git a/apps/ledger-live-desktop/src/newArch/features/WalletSync/components/Drawer.tsx b/apps/ledger-live-desktop/src/newArch/features/WalletSync/components/Drawer.tsx new file mode 100644 index 000000000000..86b016222e20 --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/WalletSync/components/Drawer.tsx @@ -0,0 +1,79 @@ +import React, { useMemo, useRef } from "react"; +import { SideDrawer } from "~/renderer/components/SideDrawer"; +import { useDispatch, useSelector } from "react-redux"; +import { + walletSyncDrawerVisibilitySelector, + walletSyncStepSelector, +} from "~/renderer/reducers/walletSync"; +import { setDrawerVisibility } from "~/renderer/actions/walletSync"; +import { + useLedgerSyncAnalytics, + AnalyticsFlow, + StepsOutsideFlow, + AnalyticsPage, +} from "LLD/features/WalletSync/hooks/useLedgerSyncAnalytics"; +import { BackRef, WalletSyncRouter } from "LLD/features/WalletSync/screens/router"; +import { STEPS_WITH_BACK } from "LLD/features/WalletSync/hooks/useFlows"; + +/** + * + * STEPS_WITH_BACK is used to determine whether a back button should be displayed in the WalletSyncRow component, + * depending on the current step and the current flow. + * + * childRef is used to access the return function in child components. + * + */ + +interface WalletSyncDrawerProps { + currentPage: AnalyticsPage; + onClose: () => void; + onBack?: () => void; +} + +const WalletSyncDrawer: React.FC = ({ currentPage, onClose, onBack }) => { + const childRef = useRef(null); + const dispatch = useDispatch(); + + const isOpen = useSelector(walletSyncDrawerVisibilitySelector); + const currentStep = useSelector(walletSyncStepSelector); + const hasBack = useMemo(() => STEPS_WITH_BACK.includes(currentStep), [currentStep]); + const hasFlowEvent = useMemo(() => !StepsOutsideFlow.includes(currentStep), [currentStep]); + + const { onActionTrack } = useLedgerSyncAnalytics(); + + const handleBack = () => { + if (childRef.current && hasBack) { + childRef.current.goBack(); + onActionTrack({ + button: "Back", + step: currentStep, + flow: hasFlowEvent ? AnalyticsFlow : undefined, + }); + if (onBack) onBack(); + } + }; + + const closeDrawer = () => { + onActionTrack({ + button: "Close", + step: currentStep, + flow: hasFlowEvent ? AnalyticsFlow : undefined, + }); + dispatch(setDrawerVisibility(false)); + onClose(); + }; + + return ( + + + + ); +}; + +export default WalletSyncDrawer; diff --git a/apps/ledger-live-desktop/src/newArch/features/WalletSync/hooks/useLedgerSyncAnalytics.ts b/apps/ledger-live-desktop/src/newArch/features/WalletSync/hooks/useLedgerSyncAnalytics.ts index 817e88cda338..a3e97364aa69 100644 --- a/apps/ledger-live-desktop/src/newArch/features/WalletSync/hooks/useLedgerSyncAnalytics.ts +++ b/apps/ledger-live-desktop/src/newArch/features/WalletSync/hooks/useLedgerSyncAnalytics.ts @@ -33,6 +33,9 @@ export enum AnalyticsPage { SettingsGeneral = "Settings General", LedgerSyncSettings = "Ledger Sync Settings", + + Accounts = "Accounts", + LedgerSyncAccounts = "Ledger Sync Accounts", } export type AnalyticsFlow = "Ledger Sync"; diff --git a/apps/ledger-live-desktop/src/newArch/features/WalletSync/screens/Activation/01-CreateOrSynchronizeStep.tsx b/apps/ledger-live-desktop/src/newArch/features/WalletSync/screens/Activation/01-CreateOrSynchronizeStep.tsx index c2a1207f4cdf..b500bd5a7840 100644 --- a/apps/ledger-live-desktop/src/newArch/features/WalletSync/screens/Activation/01-CreateOrSynchronizeStep.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/WalletSync/screens/Activation/01-CreateOrSynchronizeStep.tsx @@ -16,9 +16,10 @@ import { openURL } from "~/renderer/linking"; type Props = { goToCreateBackup: () => void; goToSync: () => void; + sourcePage: AnalyticsPage; }; -export default function CreateOrSynchronizeStep({ goToCreateBackup, goToSync }: Props) { +export default function CreateOrSynchronizeStep({ goToCreateBackup, goToSync, sourcePage }: Props) { const { colors } = useTheme(); const { t } = useTranslation(); const ledgerSyncFF = useFeature("lldWalletSync"); @@ -40,7 +41,7 @@ export default function CreateOrSynchronizeStep({ goToCreateBackup, goToSync }: return ( - + diff --git a/apps/ledger-live-desktop/src/newArch/features/WalletSync/screens/Activation/index.tsx b/apps/ledger-live-desktop/src/newArch/features/WalletSync/screens/Activation/index.tsx index a072d522f426..cee3171a37ee 100644 --- a/apps/ledger-live-desktop/src/newArch/features/WalletSync/screens/Activation/index.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/WalletSync/screens/Activation/index.tsx @@ -17,9 +17,13 @@ import { useLedgerSyncAnalytics, AnalyticsFlow, } from "../../hooks/useLedgerSyncAnalytics"; -import { BackRef, BackProps } from "../router"; +import { BackRef } from "../router"; -const WalletSyncActivation = forwardRef((_props, ref) => { +type Props = { + sourcePage: AnalyticsPage; +}; + +const WalletSyncActivation = forwardRef(({ sourcePage }, ref) => { const dispatch = useDispatch(); const [device, setDevice] = useState(null); @@ -66,7 +70,13 @@ const WalletSyncActivation = forwardRef((_props, ref) => { switch (currentStep) { default: case Step.CreateOrSynchronize: - return ; + return ( + + ); case Step.DeviceAction: return ; case Step.CreateOrSynchronizeTrustChain: diff --git a/apps/ledger-live-desktop/src/newArch/features/WalletSync/screens/Manage/index.tsx b/apps/ledger-live-desktop/src/newArch/features/WalletSync/screens/Manage/index.tsx index 4419002e049e..d01f435997bc 100644 --- a/apps/ledger-live-desktop/src/newArch/features/WalletSync/screens/Manage/index.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/WalletSync/screens/Manage/index.tsx @@ -20,7 +20,11 @@ const Separator = () => { return ; }; -const WalletSyncManage = () => { +type Props = { + currentPage: AnalyticsPage; +}; + +const WalletSyncManage = ({ currentPage }: Props) => { const { t } = useTranslation(); useLifeCycle(); @@ -38,18 +42,18 @@ const WalletSyncManage = () => { onClickTrack({ button: "Synchronize with another app", - page: AnalyticsPage.LedgerSyncSettings, + page: currentPage, }); }; const goToManageBackup = () => { dispatch(setFlow({ flow: Flow.ManageBackup, step: Step.DeleteBackup })); - onClickTrack({ button: "Delete sync", page: AnalyticsPage.LedgerSyncSettings }); + onClickTrack({ button: "Delete sync", page: currentPage }); }; const goToManageInstances = () => { dispatch(setFlow({ flow: Flow.ManageInstances, step: Step.SynchronizedInstances })); - onClickTrack({ button: "Manage Instances", page: AnalyticsPage.LedgerSyncSettings }); + onClickTrack({ button: "Manage Instances", page: currentPage }); }; const Options: OptionProps[] = [ @@ -83,7 +87,7 @@ const WalletSyncManage = () => { return ( - + {t("walletSync.title")} diff --git a/apps/ledger-live-desktop/src/newArch/features/WalletSync/screens/router.tsx b/apps/ledger-live-desktop/src/newArch/features/WalletSync/screens/router.tsx index bb0cd9c11b3d..14bda59f5580 100644 --- a/apps/ledger-live-desktop/src/newArch/features/WalletSync/screens/router.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/WalletSync/screens/router.tsx @@ -7,23 +7,28 @@ import WalletSyncManageInstances from "./ManageInstances"; import WalletSyncActivation from "./Activation"; import WalletSyncManage from "./Manage"; import { useInitMemberCredentials } from "../hooks/useInitMemberCredentials"; +import { AnalyticsPage } from "../hooks/useLedgerSyncAnalytics"; export interface BackRef { goBack: () => void; } +export interface Props { + currentPage: AnalyticsPage; +} + export interface BackProps {} -export const WalletSyncRouter = forwardRef((_props, ref) => { +export const WalletSyncRouter = forwardRef(({ currentPage }, ref) => { useInitMemberCredentials(); const walletSyncFlow = useSelector(walletSyncFlowSelector); switch (walletSyncFlow) { default: case Flow.Activation: - return ; + return ; case Flow.LedgerSyncActivated: - return ; + return ; case Flow.Synchronize: return ; case Flow.ManageBackup: diff --git a/apps/ledger-live-desktop/src/renderer/screens/accounts/LedgerSyncDrawer.tsx b/apps/ledger-live-desktop/src/renderer/screens/accounts/LedgerSyncDrawer.tsx new file mode 100644 index 000000000000..b0d195cd1aab --- /dev/null +++ b/apps/ledger-live-desktop/src/renderer/screens/accounts/LedgerSyncDrawer.tsx @@ -0,0 +1,31 @@ +import React, { useMemo } from "react"; +import WalletSyncDrawer from "LLD/features/WalletSync/components/Drawer"; +import { useDispatch, useSelector } from "react-redux"; +import { setDrawerVisibility } from "~/renderer/actions/walletSync"; +import { + useLedgerSyncAnalytics, + AnalyticsPage, + AnalyticsFlow, + StepsOutsideFlow, +} from "LLD/features/WalletSync/hooks/useLedgerSyncAnalytics"; +import { walletSyncStepSelector } from "~/renderer/reducers/walletSync"; + +const WalletSyncRow = () => { + const dispatch = useDispatch(); + const { onActionTrack } = useLedgerSyncAnalytics(); + const currentStep = useSelector(walletSyncStepSelector); + const hasFlowEvent = useMemo(() => !StepsOutsideFlow.includes(currentStep), [currentStep]); + + const closeDrawer = () => { + onActionTrack({ + button: "Close", + step: currentStep, + flow: hasFlowEvent ? AnalyticsFlow : undefined, + }); + dispatch(setDrawerVisibility(false)); + }; + + return ; +}; + +export default WalletSyncRow; diff --git a/apps/ledger-live-desktop/src/renderer/screens/accounts/OptionsButton.tsx b/apps/ledger-live-desktop/src/renderer/screens/accounts/OptionsButton.tsx index 63d3e9df8d94..61ae8ad0e1d2 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/accounts/OptionsButton.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/accounts/OptionsButton.tsx @@ -11,11 +11,16 @@ import DropDownSelector, { } from "~/renderer/components/DropDownSelector"; import Switch from "~/renderer/components/Switch"; import Tooltip from "~/renderer/components/Tooltip"; -import IconDownloadCloud from "~/renderer/icons/DownloadCloud"; -import IconSend from "~/renderer/icons/Send"; import { openModal } from "~/renderer/actions/modals"; import { useHideEmptyTokenAccounts } from "~/renderer/actions/settings"; -import { IconsLegacy } from "@ledgerhq/react-ui"; +import { Icons } from "@ledgerhq/react-ui"; +import { useFeature } from "@ledgerhq/live-common/featureFlags/index"; +import { setDrawerVisibility as setLedgerSyncDrawerVisibility } from "~/renderer/actions/walletSync"; +import { useFlows } from "LLD/features/WalletSync/hooks/useFlows"; +import { + AnalyticsPage, + useLedgerSyncAnalytics, +} from "LLD/features/WalletSync/hooks/useLedgerSyncAnalytics"; const Separator = styled.div` background-color: ${p => p.theme.colors.palette.divider}; @@ -45,19 +50,42 @@ const OptionsButton = () => { [dispatch], ); const { t } = useTranslation(); + + const lldLedgerSyncFF = useFeature("lldWalletSync"); + const isLedgerSyncEnabled = lldLedgerSyncFF?.enabled; + const { goToWelcomeScreenWalletSync } = useFlows(); + + const { onClickTrack } = useLedgerSyncAnalytics(); + + const openLedgerSyncDrawer = () => { + goToWelcomeScreenWalletSync(); + onClickTrack({ button: "Access Ledger Sync", page: AnalyticsPage.Accounts }); + dispatch(setLedgerSyncDrawerVisibility(true)); + }; const items: ItemType[] = [ { key: "exportOperations", label: t("accounts.optionsMenu.exportOperations"), - icon: , + icon: , onClick: () => onOpenModal("MODAL_EXPORT_OPERATIONS"), }, - { - key: "exportAccounts", - label: t("accounts.optionsMenu.exportToMobile"), - icon: , - onClick: () => onOpenModal("MODAL_EXPORT_ACCOUNTS"), - }, + ...(isLedgerSyncEnabled + ? [ + { + key: "exportAccounts", + label: t("accounts.optionsMenu.ledgerSync"), + icon: , + onClick: openLedgerSyncDrawer, + }, + ] + : [ + { + key: "exportAccounts", + label: t("accounts.optionsMenu.exportToMobile"), + icon: , + onClick: () => onOpenModal("MODAL_EXPORT_ACCOUNTS"), + }, + ]), { key: "sep1", type: "separator", @@ -121,7 +149,7 @@ const OptionsButton = () => { }} > - + diff --git a/apps/ledger-live-desktop/src/renderer/screens/accounts/index.tsx b/apps/ledger-live-desktop/src/renderer/screens/accounts/index.tsx index 9784d5f25b87..f5f10dfdc00c 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/accounts/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/accounts/index.tsx @@ -11,6 +11,7 @@ import { accountsSelector, starredAccountsSelector } from "~/renderer/reducers/a import { accountsViewModeSelector, selectedTimeRangeSelector } from "~/renderer/reducers/settings"; import AccountList from "./AccountList"; import AccountsHeader from "./AccountsHeader"; +import LedgerSyncDrawer from "./LedgerSyncDrawer"; export default function AccountsPage() { const mode = useSelector(accountsViewModeSelector); @@ -50,6 +51,7 @@ export default function AccountsPage() { /> + ); } diff --git a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/General/WalletSync.tsx b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/General/WalletSync.tsx index 69ac4ec6018a..944b158357f2 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/General/WalletSync.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/General/WalletSync.tsx @@ -1,58 +1,33 @@ -import React, { useMemo, useRef } from "react"; -import Button from "~/renderer/components/Button"; -import { SideDrawer } from "~/renderer/components/SideDrawer"; -import { useTranslation } from "react-i18next"; +import React, { useMemo } from "react"; +import WalletSyncDrawer from "LLD/features/WalletSync/components/Drawer"; import { useDispatch, useSelector } from "react-redux"; -import { - walletSyncDrawerVisibilitySelector, - walletSyncFakedSelector, - walletSyncStepSelector, -} from "~/renderer/reducers/walletSync"; import { resetWalletSync, setDrawerVisibility } from "~/renderer/actions/walletSync"; - +import { walletSyncFakedSelector, walletSyncStepSelector } from "~/renderer/reducers/walletSync"; +import { useTranslation } from "react-i18next"; +import Button from "~/renderer/components/Button"; +import { useFlows } from "LLD/features/WalletSync/hooks/useFlows"; import { useLedgerSyncAnalytics, AnalyticsPage, - AnalyticsFlow, StepsOutsideFlow, + AnalyticsFlow, } from "LLD/features/WalletSync/hooks/useLedgerSyncAnalytics"; -import { BackRef, WalletSyncRouter } from "LLD/features/WalletSync/screens/router"; -import { useFlows, STEPS_WITH_BACK } from "LLD/features/WalletSync/hooks/useFlows"; - -/** - * - * STEPS_WITH_BACK is used to determine whether a back button should be displayed in the WalletSyncRow component, - * depending on the current step and the current flow. - * - * childRef is used to access the return function in child components. - * - */ const WalletSyncRow = () => { const { goToWelcomeScreenWalletSync } = useFlows(); - const childRef = useRef(null); const { t } = useTranslation(); const dispatch = useDispatch(); - - const isOpen = useSelector(walletSyncDrawerVisibilitySelector); - - const currentStep = useSelector(walletSyncStepSelector); const hasBeenFaked = useSelector(walletSyncFakedSelector); - const hasBack = useMemo(() => STEPS_WITH_BACK.includes(currentStep), [currentStep]); - - const hasFlowEvent = useMemo(() => !StepsOutsideFlow.includes(currentStep), [currentStep]); - const { onClickTrack, onActionTrack } = useLedgerSyncAnalytics(); + const currentStep = useSelector(walletSyncStepSelector); + const hasFlowEvent = useMemo(() => !StepsOutsideFlow.includes(currentStep), [currentStep]); - const handleBack = () => { - if (childRef.current && hasBack) { - childRef.current.goBack(); - onActionTrack({ - button: "Back", - step: currentStep, - flow: hasFlowEvent ? AnalyticsFlow : undefined, - }); + const openDrawer = () => { + if (!hasBeenFaked) { + goToWelcomeScreenWalletSync(); + onClickTrack({ button: "Manage Ledger Sync", page: AnalyticsPage.SettingsGeneral }); } + dispatch(setDrawerVisibility(true)); }; const closeDrawer = () => { @@ -68,30 +43,14 @@ const WalletSyncRow = () => { dispatch(setDrawerVisibility(false)); }; - const openDrawer = () => { - if (!hasBeenFaked) { - goToWelcomeScreenWalletSync(); - onClickTrack({ button: "Manage Ledger Sync", page: AnalyticsPage.SettingsGeneral }); - } - dispatch(setDrawerVisibility(true)); - }; - return ( <> - - - - + ); }; + export default WalletSyncRow; diff --git a/apps/ledger-live-desktop/static/i18n/en/app.json b/apps/ledger-live-desktop/static/i18n/en/app.json index 59e13ed9822d..a966d2d1c3c6 100644 --- a/apps/ledger-live-desktop/static/i18n/en/app.json +++ b/apps/ledger-live-desktop/static/i18n/en/app.json @@ -1119,7 +1119,8 @@ "optionsMenu": { "title": "Options", "exportOperations": "Export operation history", - "exportToMobile": "Export to mobile" + "exportToMobile": "Export to mobile", + "ledgerSync": "Sync accounts" }, "contextMenu": { "star": "Star", From 8307c9a386e26846ec024649e7624c96d640a2f7 Mon Sep 17 00:00:00 2001 From: Desifly Date: Fri, 18 Oct 2024 11:46:09 +0200 Subject: [PATCH 23/57] chore: update the nightly app name Quick update on the naming of the nightly app so that it fits the request coming from Guillaume M. --- apps/ledger-live-mobile/fastlane/.env.ios.nightly | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ledger-live-mobile/fastlane/.env.ios.nightly b/apps/ledger-live-mobile/fastlane/.env.ios.nightly index 6a7d35982eeb..7de4b53bd837 100644 --- a/apps/ledger-live-mobile/fastlane/.env.ios.nightly +++ b/apps/ledger-live-mobile/fastlane/.env.ios.nightly @@ -1,7 +1,7 @@ ENVFILE=.env.ios.nightly APP_IDENTIFIER="com.ledger.live.nightly" MY_APP_BUNDLE_ID="com.ledger.live.nightly" -APP_NAME="Ledger Nightly" +APP_NAME="Ledger NB" APP_CONFIGURATION="Nightly" SENTRY_ENVIRONMENT=nightly SENTRY_PROJECT=llm-ios-nightly From c594af60c87c2044e8b1a96ac1dfc5acdb0b23dd Mon Sep 17 00:00:00 2001 From: Come Grellard Date: Fri, 18 Oct 2024 11:46:23 +0200 Subject: [PATCH 24/57] fix(llm): ledger sync triggers a unhandled error warning when scanning an old import qr code --- .changeset/spotty-windows-deny.md | 5 +++++ .../newArch/features/WalletSync/hooks/useSyncWithQrCode.ts | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 .changeset/spotty-windows-deny.md diff --git a/.changeset/spotty-windows-deny.md b/.changeset/spotty-windows-deny.md new file mode 100644 index 000000000000..c8fde6df3463 --- /dev/null +++ b/.changeset/spotty-windows-deny.md @@ -0,0 +1,5 @@ +--- +"live-mobile": patch +--- + +LLM - Ledger Sync triggers a unhandled error warning when scanning old import qr code diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useSyncWithQrCode.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useSyncWithQrCode.ts index c074790782be..3d2a1491a0d6 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useSyncWithQrCode.ts +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useSyncWithQrCode.ts @@ -76,8 +76,10 @@ export const useSyncWithQrCode = () => { } catch (e) { if (e instanceof ScannedOldImportQrCode) { setCurrentStep(Steps.ScannedOldImportQrCode); + return; } else if (e instanceof ScannedInvalidQrCode) { setCurrentStep(Steps.ScannedInvalidQrCode); + return; } else if (e instanceof InvalidDigitsError) { setCurrentStep(Steps.SyncError); return; From 872a34e6d5152ac86f68c8216d86f73ec051ea5d Mon Sep 17 00:00:00 2001 From: Mounir Hamzaoui Date: Fri, 18 Oct 2024 14:06:00 +0200 Subject: [PATCH 25/57] feat: implement new NoSuchAppOnProviderError component body (#8135) --- .changeset/hot-guests-hide.md | 5 + apps/ledger-live-desktop/src/config/urls.ts | 4 + .../NoSuchAppOnProviderErrorComponent.tsx | 109 ++++++++++++++++++ .../components/DeviceAction/index.tsx | 1 + .../components/DeviceAction/rendering.tsx | 9 ++ .../static/i18n/en/app.json | 7 +- 6 files changed, 133 insertions(+), 2 deletions(-) create mode 100644 .changeset/hot-guests-hide.md create mode 100644 apps/ledger-live-desktop/src/renderer/components/DeviceAction/NoSuchAppOnProviderErrorComponent.tsx diff --git a/.changeset/hot-guests-hide.md b/.changeset/hot-guests-hide.md new file mode 100644 index 000000000000..41bcd5790b62 --- /dev/null +++ b/.changeset/hot-guests-hide.md @@ -0,0 +1,5 @@ +--- +"ledger-live-desktop": minor +--- + +New UI to handle No Such App On Provider Error diff --git a/apps/ledger-live-desktop/src/config/urls.ts b/apps/ledger-live-desktop/src/config/urls.ts index 083c32dc3c43..d632614ec35e 100644 --- a/apps/ledger-live-desktop/src/config/urls.ts +++ b/apps/ledger-live-desktop/src/config/urls.ts @@ -184,6 +184,10 @@ export const urls = { howToUpdateNewLedger: "https://support.ledger.com/article/9305992683165-zd", genuineCheck: "https://support.ledger.com/article/4404389367057-zd", whatAreOrdinals: "https://www.ledger.com/academy/bitcoin-ordinals", + ledgerShop: + "https://shop.ledger.com?utm_source=live&utm_medium=draw&utm_campaign=ledger_sync_lns_uncompatible&utm_content=to_shop", + learnMoreLedgerSync: + "https://www.ledger.com/blog-ledger-sync-synchronize-your-crypto-accounts-effortless-private-and-secure", }; export const vaultSigner = { diff --git a/apps/ledger-live-desktop/src/renderer/components/DeviceAction/NoSuchAppOnProviderErrorComponent.tsx b/apps/ledger-live-desktop/src/renderer/components/DeviceAction/NoSuchAppOnProviderErrorComponent.tsx new file mode 100644 index 000000000000..2b741e9e1778 --- /dev/null +++ b/apps/ledger-live-desktop/src/renderer/components/DeviceAction/NoSuchAppOnProviderErrorComponent.tsx @@ -0,0 +1,109 @@ +import React, { useCallback } from "react"; +import { ErrorBody } from "../ErrorBody"; +import { Wrapper } from "./rendering"; +import { Trans } from "react-i18next"; +import { Link, Text } from "@ledgerhq/react-ui"; +import styled, { useTheme } from "styled-components"; +import Box from "../Box"; +import { Icons } from "@ledgerhq/react-ui"; +import { urls } from "~/config/urls"; +import { CircleWrapper } from "../CryptoCurrencyIcon"; +import { track } from "~/renderer/analytics/segment"; +import { openURL } from "~/renderer/linking"; + +const CtaContainer = styled(Box)` + margin-top: 32px; +`; + +const StyledLinkExploreButton = styled(Link)` + display: flex; + width: 100%; + height: 48px; + padding: 8px 24px; + justify-content: center; + align-items: center; + gap: 8px; + border-radius: 500px; + font-size: 16px; + font-style: normal; + font-weight: 600; + line-height: normal; + color: ${({ theme }) => theme.colors.neutral.c00}; + background-color: ${({ theme }) => theme.colors.neutral.c100}; + &:hover { + background-color: ${({ theme }) => theme.colors.neutral.c90}; + } +`; + +const StyledLinkLearnMoreButton = styled(Link)` + margin-top: 16px; + display: flex; + justify-content: center; + align-items: center; + gap: 8px; + font-size: 14px; + color: ${({ theme }) => theme.colors.neutral.c70}; + font-style: normal; + font-weight: 600; + line-height: normal; +`; + +const NoSuchAppOnProviderErrorComponent: React.FC<{ + error: Error; + productName: string; +}> = ({ error, productName }) => { + const theme = useTheme(); + + const handleOnOpenExternalLink = useCallback( + (url: string, trackEvent?: string, trackPayload?: Record) => () => { + openURL(url); + if (trackEvent && trackPayload) { + track(trackEvent, trackPayload); + } + }, + [], + ); + + const renderExploreIcon = () => ; + + return ( + + + + + } + title={ + + } + description={ + + + + } + /> + + + + + + + + + + + ); +}; + +export default NoSuchAppOnProviderErrorComponent; diff --git a/apps/ledger-live-desktop/src/renderer/components/DeviceAction/index.tsx b/apps/ledger-live-desktop/src/renderer/components/DeviceAction/index.tsx index cd9fd8e9f119..3a3a952391fb 100644 --- a/apps/ledger-live-desktop/src/renderer/components/DeviceAction/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/DeviceAction/index.tsx @@ -469,6 +469,7 @@ export const DeviceActionDefaultRendering = ({ error, withOpenManager: true, withExportLogs: true, + ...(device && { device }), }); } diff --git a/apps/ledger-live-desktop/src/renderer/components/DeviceAction/rendering.tsx b/apps/ledger-live-desktop/src/renderer/components/DeviceAction/rendering.tsx index 77a86d5c9409..96f3f0bec2e5 100644 --- a/apps/ledger-live-desktop/src/renderer/components/DeviceAction/rendering.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/DeviceAction/rendering.tsx @@ -19,6 +19,7 @@ import { import { DeviceNotOnboarded, LatestFirmwareVersionRequired, + NoSuchAppOnProvider, TransactionRefusedOnDevice, } from "@ledgerhq/live-common/errors"; import { DeviceModelId, getDeviceModel } from "@ledgerhq/devices"; @@ -69,6 +70,7 @@ import { CompleteExchangeError } from "@ledgerhq/live-common/exchange/error"; import { currencySettingsLocaleSelector, SettingsState } from "~/renderer/reducers/settings"; import { accountNameSelector, WalletState } from "@ledgerhq/live-wallet/store"; import { isSyncOnboardingSupported } from "@ledgerhq/live-common/device/use-cases/screenSpecs"; +import NoSuchAppOnProviderErrorComponent from "./NoSuchAppOnProviderErrorComponent"; export const AnimationWrapper = styled.div` width: 600px; @@ -784,6 +786,13 @@ export const renderError = ({ if (tmpError.message === "User refused") { tmpError = new TransactionRefusedOnDevice(); } + } else if (tmpError instanceof NoSuchAppOnProvider) { + return ( + + ); } // if no supportLink is provided, we fallback on the related url linked to diff --git a/apps/ledger-live-desktop/static/i18n/en/app.json b/apps/ledger-live-desktop/static/i18n/en/app.json index a966d2d1c3c6..7b9a40aadcb6 100644 --- a/apps/ledger-live-desktop/static/i18n/en/app.json +++ b/apps/ledger-live-desktop/static/i18n/en/app.json @@ -5400,8 +5400,11 @@ "description": "The network fee might be too low. Please increase" }, "NoSuchAppOnProvider": { - "title": "The {{appName}} app cannot be found for your specific configuration.", - "description": "Try reinstalling the app from My Ledger" + "title": "{{appName}} is not compatible with {{productName}}.", + "titleOld": "The {{appName}} app cannot be found for your specific configuration.", + "description": "<0>Unlock more with our devices. To access this feature, upgrade to one of our compatible devices. Choose the best option for your needs and enjoy enhanced security.", + "exploreCTA": "Explore compatible devices", + "learnMoreCTA": "Learn more about Ledger Sync" }, "PendingOperation": { "description": "You have incoming transactions pending. Please beware pending transactions can be reversed." From 07ee26c79b4c6fa6edab40ec612f01d98b4bd3af Mon Sep 17 00:00:00 2001 From: Canestin Date: Thu, 10 Oct 2024 16:35:21 +0200 Subject: [PATCH 26/57] feat(web3Hub): fix state management with jotai --- apps/ledger-live-mobile/package.json | 1 + .../Disclaimer/useDisclaimerViewModel.ts | 14 ++------ .../src/newArch/features/Web3Hub/db.ts | 36 +++++++++++++++++++ pnpm-lock.yaml | 3 ++ 4 files changed, 42 insertions(+), 12 deletions(-) create mode 100644 apps/ledger-live-mobile/src/newArch/features/Web3Hub/db.ts diff --git a/apps/ledger-live-mobile/package.json b/apps/ledger-live-mobile/package.json index 78e031097cc3..38a899b9b72f 100644 --- a/apps/ledger-live-mobile/package.json +++ b/apps/ledger-live-mobile/package.json @@ -154,6 +154,7 @@ "hoist-non-react-statics": "3.3.2", "i18next": "20.6.1", "invariant": "2.2.4", + "jotai": "^2.7.0", "json-rpc-2.0": "^0.2.19", "lodash": "4.17.21", "lottie-react-native": "^6.7.0", diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/Disclaimer/useDisclaimerViewModel.ts b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/Disclaimer/useDisclaimerViewModel.ts index d90723d1a817..ed468be832f8 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/Disclaimer/useDisclaimerViewModel.ts +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/Disclaimer/useDisclaimerViewModel.ts @@ -1,17 +1,12 @@ import { useCallback, useEffect, useState } from "react"; import { AppManifest } from "@ledgerhq/live-common/wallet-api/types"; -import { INITIAL_WEB3HUB_STATE, WEB3HUB_STORE_KEY } from "LLM/features/Web3Hub/constants"; import { Web3HubDB } from "LLM/features/Web3Hub/types"; -import { useDB } from "~/db"; +import { useWeb3HubDB } from "LLM/features/Web3Hub/db"; const dismissedManifestsSelector = (state: Web3HubDB) => state.dismissedManifests; export function useDismissedManifests() { - return useDB( - WEB3HUB_STORE_KEY, - INITIAL_WEB3HUB_STATE, - dismissedManifestsSelector, - ); + return useWeb3HubDB(dismissedManifestsSelector); } export default function useDisclaimerViewModel(goToApp: (manifestId: string) => void) { @@ -28,11 +23,6 @@ export default function useDisclaimerViewModel(goToApp: (manifestId: string) => } }, [disclaimerManifest, dismissedManifests]); - useEffect(() => { - setWeb3HubDB(INITIAL_WEB3HUB_STATE); - // eslint-disable-next-line react-hooks/exhaustive-deps - }, []); - const onPressItem = useCallback( (manifest: AppManifest) => { if (manifest.branch === "soon") { diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/db.ts b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/db.ts new file mode 100644 index 000000000000..ea809c828d11 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/db.ts @@ -0,0 +1,36 @@ +import AsyncStorage from "@react-native-async-storage/async-storage"; +import { useAtom } from "jotai"; +import { createJSONStorage } from "jotai/utils"; +import { useCallback, useMemo } from "react"; +import { Web3HubDB } from "LLM/features/Web3Hub/types"; +import { atomWithStorage } from "jotai/utils"; +import { INITIAL_WEB3HUB_STATE, WEB3HUB_STORE_KEY } from "./constants"; + +export const storage = createJSONStorage(() => AsyncStorage); + +export const web3hubAtom = atomWithStorage( + WEB3HUB_STORE_KEY, + INITIAL_WEB3HUB_STATE, + storage, +); + +type NewState = Web3HubDB | ((s: Web3HubDB) => Web3HubDB); + +export function useWeb3HubDB( + selector: (state: Web3HubDB) => Selected, +): [Selected, (v: NewState) => void] { + const [state, setState] = useAtom(web3hubAtom); + + const setter = useCallback( + (newState: NewState) => { + const val = typeof newState === "function" ? newState(state) : newState; + + setState(val); + }, + // eslint-disable-next-line + [state], + ); + + const result = useMemo(() => selector(state), [state, selector]); + return [result, setter]; +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 41a9893f8a8e..7971c0525799 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1052,6 +1052,9 @@ importers: invariant: specifier: 2.2.4 version: 2.2.4 + jotai: + specifier: ^2.7.0 + version: 2.7.1(@types/react@18.2.73)(react@18.2.0) json-rpc-2.0: specifier: ^0.2.19 version: 0.2.19 From 9ecde3a021d391d0b1cdb0cc5f16cc37f5a77ebd Mon Sep 17 00:00:00 2001 From: Mounir Hamzaoui Date: Fri, 18 Oct 2024 15:43:03 +0200 Subject: [PATCH 27/57] =?UTF-8?q?fix:=20=F0=9F=90=9E=20UI=20for=20synchron?= =?UTF-8?q?ized=20instances=20and=20drawer=20header=20text=20layout=20(#81?= =?UTF-8?q?43)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/lazy-ads-drop.md | 5 +++++ .../WalletSync/components/Synchronize/DrawerHeader.tsx | 8 +++++++- .../newArch/features/WalletSync/screens/Manage/index.tsx | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 .changeset/lazy-ads-drop.md diff --git a/.changeset/lazy-ads-drop.md b/.changeset/lazy-ads-drop.md new file mode 100644 index 000000000000..5a45286e6497 --- /dev/null +++ b/.changeset/lazy-ads-drop.md @@ -0,0 +1,5 @@ +--- +"live-mobile": patch +--- + +Fix UI for ledger sync instances and drawer + fix on plural case support for synchronizedInstances diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/DrawerHeader.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/DrawerHeader.tsx index d94a3e7790f7..d2b9c43571de 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/DrawerHeader.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/DrawerHeader.tsx @@ -23,7 +23,13 @@ const DrawerHeader: React.FC = ({ onClose }) => { pr={16} > - + {t("walletSync.synchronize.qrCode.title")} diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Manage/index.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Manage/index.tsx index c34562385baa..4d5a045c9f26 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Manage/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Manage/index.tsx @@ -155,7 +155,7 @@ const WalletSyncManage = () => { {isLoading ? ( ) : ( - + {isError ? t("walletSync.walletSyncActivated.synchronizedInstances.error") : t("walletSync.walletSyncActivated.synchronizedInstances.title", { From a691bcda45e7b8d6cfd9540f22e678fae2ecbea4 Mon Sep 17 00:00:00 2001 From: Mounir Hamzaoui Date: Fri, 18 Oct 2024 15:43:46 +0200 Subject: [PATCH 28/57] =?UTF-8?q?fix:=20=E2=9C=8D=20add=20scannedInvalidQr?= =?UTF-8?q?Code.tryAgain=20key=20support=20(#8144)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/wild-squids-promise.md | 5 +++++ apps/ledger-live-mobile/src/locales/en/common.json | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changeset/wild-squids-promise.md diff --git a/.changeset/wild-squids-promise.md b/.changeset/wild-squids-promise.md new file mode 100644 index 000000000000..5f342a85222a --- /dev/null +++ b/.changeset/wild-squids-promise.md @@ -0,0 +1,5 @@ +--- +"live-mobile": patch +--- + +add "tryAgain" wording key for scannedInvalidQrCode CTA diff --git a/apps/ledger-live-mobile/src/locales/en/common.json b/apps/ledger-live-mobile/src/locales/en/common.json index fc329d64c2d9..eb55500075d0 100644 --- a/apps/ledger-live-mobile/src/locales/en/common.json +++ b/apps/ledger-live-mobile/src/locales/en/common.json @@ -6973,7 +6973,8 @@ "title": "Invalid QR Code", "desc": "Only scan the QR code displayed on Ledger Live for synching your Ledger Live apps.", "info": "For the QR code, open “Settings”, select “General”, and then select “Ledger Sync”, “Turn on sync” and “Show QR”.", - "cta": "I understand" + "cta": "I understand", + "tryAgain": "Try again" }, "scannedOldQrCode": { "title": "Ledger Live update required", From c0ca48a6a09cba6ae1b8380d4aabe03a295db38e Mon Sep 17 00:00:00 2001 From: Canestin Date: Fri, 18 Oct 2024 16:15:18 +0200 Subject: [PATCH 29/57] remove useWeb3Hub db hook --- apps/ledger-live-mobile/package.json | 2 +- .../Disclaimer/useDisclaimerViewModel.ts | 26 ++++++------- .../src/newArch/features/Web3Hub/constants.ts | 11 +----- .../src/newArch/features/Web3Hub/db.ts | 39 +++++-------------- libs/ledger-live-common/package.json | 2 +- pnpm-lock.yaml | 16 ++++---- 6 files changed, 33 insertions(+), 63 deletions(-) diff --git a/apps/ledger-live-mobile/package.json b/apps/ledger-live-mobile/package.json index 38a899b9b72f..3fdcaf75d6b6 100644 --- a/apps/ledger-live-mobile/package.json +++ b/apps/ledger-live-mobile/package.json @@ -154,7 +154,7 @@ "hoist-non-react-statics": "3.3.2", "i18next": "20.6.1", "invariant": "2.2.4", - "jotai": "^2.7.0", + "jotai": "^2.10.1", "json-rpc-2.0": "^0.2.19", "lodash": "4.17.21", "lottie-react-native": "^6.7.0", diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/Disclaimer/useDisclaimerViewModel.ts b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/Disclaimer/useDisclaimerViewModel.ts index ed468be832f8..cef863baf556 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/Disclaimer/useDisclaimerViewModel.ts +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/Disclaimer/useDisclaimerViewModel.ts @@ -1,19 +1,17 @@ import { useCallback, useEffect, useState } from "react"; import { AppManifest } from "@ledgerhq/live-common/wallet-api/types"; -import { Web3HubDB } from "LLM/features/Web3Hub/types"; -import { useWeb3HubDB } from "LLM/features/Web3Hub/db"; - -const dismissedManifestsSelector = (state: Web3HubDB) => state.dismissedManifests; +import { dismissedManifestsAtom } from "LLM/features/Web3Hub/db"; +import { useAtom } from "jotai"; export function useDismissedManifests() { - return useWeb3HubDB(dismissedManifestsSelector); + return useAtom(dismissedManifestsAtom); } export default function useDisclaimerViewModel(goToApp: (manifestId: string) => void) { const [isChecked, setIsChecked] = useState(false); const [disclaimerOpened, setDisclaimerOpened] = useState(false); const [disclaimerManifest, setDisclaimerManifest] = useState(); - const [dismissedManifests, setWeb3HubDB] = useDismissedManifests(); + const [dismissedManifests, setDismissedManifests] = useDismissedManifests(); useEffect(() => { if (disclaimerManifest && !!dismissedManifests[disclaimerManifest.id]) { @@ -47,18 +45,18 @@ export default function useDisclaimerViewModel(goToApp: (manifestId: string) => const onConfirm = useCallback(() => { if (disclaimerManifest) { if (isChecked) { - setWeb3HubDB(state => ({ - ...state, - dismissedManifests: { - ...state.dismissedManifests, - [disclaimerManifest.id]: !state.dismissedManifests[disclaimerManifest.id], - }, - })); + setDismissedManifests(async state => { + const s = await state; + return { + ...s, + [disclaimerManifest.id]: !s[disclaimerManifest.id], + }; + }); } goToApp(disclaimerManifest.id); } - }, [disclaimerManifest, goToApp, isChecked, setWeb3HubDB]); + }, [disclaimerManifest, goToApp, isChecked, setDismissedManifests]); const onClose = useCallback(() => { setDisclaimerOpened(false); diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/constants.ts b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/constants.ts index 06ec52d27a8c..3824e9840c90 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/constants.ts +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/constants.ts @@ -1,11 +1,4 @@ -import type { Web3HubDB } from "./types"; - export const URL_ORIGIN = "https://live-app-catalog.ledger.com"; -export const WEB3HUB_STORE_KEY = "web3hub"; - -export const INITIAL_WEB3HUB_STATE: Web3HubDB = { - recentlyUsed: [], - dismissedManifests: {}, - // localLiveApp: [], -}; +export const RECENTLY_USED_KEY = "WEB3HUB_RECENTLY_USED"; +export const DISSMISSED_MANIFETS_KEY = "WEB3HUB_DISSMISSED_MANIFETS"; diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/db.ts b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/db.ts index ea809c828d11..ff20a989c877 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/db.ts +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/db.ts @@ -1,36 +1,15 @@ import AsyncStorage from "@react-native-async-storage/async-storage"; -import { useAtom } from "jotai"; -import { createJSONStorage } from "jotai/utils"; -import { useCallback, useMemo } from "react"; import { Web3HubDB } from "LLM/features/Web3Hub/types"; -import { atomWithStorage } from "jotai/utils"; -import { INITIAL_WEB3HUB_STATE, WEB3HUB_STORE_KEY } from "./constants"; +import { atomWithStorage, createJSONStorage } from "jotai/utils"; +import { DISSMISSED_MANIFETS_KEY, RECENTLY_USED_KEY } from "./constants"; -export const storage = createJSONStorage(() => AsyncStorage); +const emptyRecentlyUsed: Web3HubDB["recentlyUsed"] = []; +export const recentlyUseAtom = storedAtom(RECENTLY_USED_KEY, emptyRecentlyUsed); -export const web3hubAtom = atomWithStorage( - WEB3HUB_STORE_KEY, - INITIAL_WEB3HUB_STATE, - storage, -); +const emptyDismissedManifests: Web3HubDB["dismissedManifests"] = {}; +export const dismissedManifestsAtom = storedAtom(DISSMISSED_MANIFETS_KEY, emptyDismissedManifests); -type NewState = Web3HubDB | ((s: Web3HubDB) => Web3HubDB); - -export function useWeb3HubDB( - selector: (state: Web3HubDB) => Selected, -): [Selected, (v: NewState) => void] { - const [state, setState] = useAtom(web3hubAtom); - - const setter = useCallback( - (newState: NewState) => { - const val = typeof newState === "function" ? newState(state) : newState; - - setState(val); - }, - // eslint-disable-next-line - [state], - ); - - const result = useMemo(() => selector(state), [state, selector]); - return [result, setter]; +export function storedAtom(key: string, defaultValue: T) { + const storage = createJSONStorage(() => AsyncStorage); + return atomWithStorage(key, defaultValue, storage); } diff --git a/libs/ledger-live-common/package.json b/libs/ledger-live-common/package.json index 98a6e7357171..8cf9c8db8b7f 100644 --- a/libs/ledger-live-common/package.json +++ b/libs/ledger-live-common/package.json @@ -224,7 +224,7 @@ "invariant": "^2.2.2", "iso-filecoin": "^4.1.0", "isomorphic-ws": "^4.0.1", - "jotai": "^2.7.0", + "jotai": "^2.10.1", "json-rpc-2.0": "^0.2.19", "lodash": "^4.17.21", "minimatch": "^5.1.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7971c0525799..12aae479d8b5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1053,8 +1053,8 @@ importers: specifier: 2.2.4 version: 2.2.4 jotai: - specifier: ^2.7.0 - version: 2.7.1(@types/react@18.2.73)(react@18.2.0) + specifier: ^2.10.1 + version: 2.10.1(@types/react@18.2.73)(react@18.2.0) json-rpc-2.0: specifier: ^0.2.19 version: 0.2.19 @@ -3773,8 +3773,8 @@ importers: specifier: ^4.0.1 version: 4.0.1(ws@7.5.10) jotai: - specifier: ^2.7.0 - version: 2.7.1(@types/react@18.2.73)(react@18.2.0) + specifier: ^2.10.1 + version: 2.10.1(@types/react@18.2.73)(react@18.2.0) json-rpc-2.0: specifier: ^0.2.19 version: 0.2.19 @@ -22620,8 +22620,8 @@ packages: join-component@1.1.0: resolution: {integrity: sha512-bF7vcQxbODoGK1imE2P9GS9aw4zD0Sd+Hni68IMZLj7zRnquH7dXUmMw9hDI5S/Jzt7q+IyTXN0rSg2GI0IKhQ==} - jotai@2.7.1: - resolution: {integrity: sha512-bsaTPn02nFgWNP6cBtg/htZhCu4s0wxqoklRHePp6l/vlsypR9eLn7diRliwXYWMXDpPvW/LLA2afI8vwgFFaw==} + jotai@2.10.1: + resolution: {integrity: sha512-4FycO+BOTl2auLyF2Chvi6KTDqdsdDDtpaL/WHQMs8f3KS1E3loiUShQzAzFA/sMU5cJ0hz/RT1xum9YbG/zaA==} engines: {node: '>=12.20.0'} peerDependencies: '@types/react': '>=17.0.0' @@ -43108,7 +43108,7 @@ snapshots: commander: 8.3.0 deepmerge: 4.3.1 glob: 7.2.3 - jotai: 2.7.1(@types/react@18.2.73)(react@18.2.0) + jotai: 2.10.1(@types/react@18.2.73)(react@18.2.0) prettier: 2.8.8 react: 18.2.0 react-native: 0.74.6(@babel/core@7.24.3)(@babel/preset-env@7.24.3(@babel/core@7.24.3))(@types/react@18.2.73)(metro-resolver@0.80.12)(metro-transform-worker@0.80.12)(react@18.2.0) @@ -55257,7 +55257,7 @@ snapshots: join-component@1.1.0: {} - jotai@2.7.1(@types/react@18.2.73)(react@18.2.0): + jotai@2.10.1(@types/react@18.2.73)(react@18.2.0): optionalDependencies: '@types/react': 18.2.73 react: 18.2.0 From 3439e51c2d64aabc0899bdbf1c777d40feeeca55 Mon Sep 17 00:00:00 2001 From: Canestin Date: Fri, 18 Oct 2024 16:21:34 +0200 Subject: [PATCH 30/57] change stuff --- .../Web3Hub/components/Disclaimer/useDisclaimerViewModel.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/Disclaimer/useDisclaimerViewModel.ts b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/Disclaimer/useDisclaimerViewModel.ts index cef863baf556..5f10584b554c 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/Disclaimer/useDisclaimerViewModel.ts +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/Disclaimer/useDisclaimerViewModel.ts @@ -3,15 +3,11 @@ import { AppManifest } from "@ledgerhq/live-common/wallet-api/types"; import { dismissedManifestsAtom } from "LLM/features/Web3Hub/db"; import { useAtom } from "jotai"; -export function useDismissedManifests() { - return useAtom(dismissedManifestsAtom); -} - export default function useDisclaimerViewModel(goToApp: (manifestId: string) => void) { const [isChecked, setIsChecked] = useState(false); const [disclaimerOpened, setDisclaimerOpened] = useState(false); const [disclaimerManifest, setDisclaimerManifest] = useState(); - const [dismissedManifests, setDismissedManifests] = useDismissedManifests(); + const [dismissedManifests, setDismissedManifests] = useAtom(dismissedManifestsAtom); useEffect(() => { if (disclaimerManifest && !!dismissedManifests[disclaimerManifest.id]) { From 6ec38cbafc09344a614c80119f17cf3103831f80 Mon Sep 17 00:00:00 2001 From: Kevin Le Seigle Date: Fri, 18 Oct 2024 16:28:17 +0200 Subject: [PATCH 31/57] fix: remove inputCallback in useSyncWithQrCode to keep it internal --- .../screens/AddAccount/components/StepFlow.tsx | 4 ++-- .../components/Activation/ActivationFlow.tsx | 15 ++++++++++----- .../WalletSync/hooks/useSyncWithQrCode.ts | 12 ++++++------ 3 files changed, 18 insertions(+), 13 deletions(-) diff --git a/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/components/StepFlow.tsx b/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/components/StepFlow.tsx index 7cd643d8da4e..7804c74675ee 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/components/StepFlow.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/components/StepFlow.tsx @@ -51,7 +51,7 @@ const StepFlow = ({ const { memberCredentials } = useInitMemberCredentials(); const trustchain = useSelector(trustchainSelector); - const { handleStart, handleSendDigits, inputCallback, nbDigits } = useSyncWithQrCode(); + const { handleStart, handleSendDigits, nbDigits } = useSyncWithQrCode(); const handleQrCodeScanned = (data: string) => { onQrCodeScanned(); @@ -59,7 +59,7 @@ const StepFlow = ({ }; const handlePinCodeSubmit = (input: string) => { - if (input && inputCallback && nbDigits === input.length) handleSendDigits(inputCallback, input); + if (input && nbDigits === input.length) handleSendDigits(input); }; const getScene = () => { diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Activation/ActivationFlow.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Activation/ActivationFlow.tsx index bc672dcad497..7441995f2b33 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Activation/ActivationFlow.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Activation/ActivationFlow.tsx @@ -1,5 +1,5 @@ import { useNavigation } from "@react-navigation/native"; -import React from "react"; +import React, { useCallback } from "react"; import { useSelector } from "react-redux"; import Activation from "."; import { TrackScreen } from "~/analytics"; @@ -52,16 +52,21 @@ const ActivationFlow = ({ const { currentStep, setCurrentStep } = useCurrentStep(); const { memberCredentials } = useInitMemberCredentials(); - const { handleStart, handleSendDigits, inputCallback, nbDigits } = useSyncWithQrCode(); + const { handleStart, handleSendDigits, nbDigits } = useSyncWithQrCode(); const handleQrCodeScanned = (data: string) => { onQrCodeScanned(); if (memberCredentials) handleStart(data, memberCredentials); }; - const handlePinCodeSubmit = (input: string) => { - if (input && inputCallback && nbDigits === input.length) handleSendDigits(inputCallback, input); - }; + const handlePinCodeSubmit = useCallback( + (input: string) => { + if (input && nbDigits === input.length) { + handleSendDigits(input); + } + }, + [handleSendDigits, nbDigits], + ); const hasCompletedOnboarding = useSelector(hasCompletedOnboardingSelector); const { navigate } = diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useSyncWithQrCode.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useSyncWithQrCode.ts index c074790782be..bfe4dd777ca9 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useSyncWithQrCode.ts +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useSyncWithQrCode.ts @@ -1,4 +1,4 @@ -import { useCallback, useState } from "react"; +import { useCallback, useState, useRef } from "react"; import { MemberCredentials, TrustchainMember } from "@ledgerhq/ledger-key-ring-protocol/types"; import { createQRCodeCandidateInstance } from "@ledgerhq/ledger-key-ring-protocol/qrcode/index"; import { @@ -28,13 +28,13 @@ export const useSyncWithQrCode = () => { const navigation = useNavigation(); - const [inputCallback, setInputCallback] = useState<((input: string) => void) | null>(null); + const inputCallbackRef = useRef<((input: string) => void) | null>(null); const dispatch = useDispatch(); const onRequestQRCodeInput = useCallback( (config: { digits: number }, callback: (input: string) => void) => { setDigits(config.digits); - setInputCallback(() => callback); + inputCallbackRef.current = callback; }, [], ); @@ -42,7 +42,7 @@ export const useSyncWithQrCode = () => { const onSyncFinished = useCallback(() => { setDigits(null); setInput(null); - setInputCallback(null); + inputCallbackRef.current = null; navigation.navigate(NavigatorName.WalletSync, { screen: ScreenName.WalletSyncLoading, params: { @@ -102,9 +102,9 @@ export const useSyncWithQrCode = () => { ); const handleSendDigits = useCallback( - (inputCallback: (_: string) => void, input: string) => (inputCallback(input), true), + (input: string) => (inputCallbackRef.current?.(input), true), [], ); - return { nbDigits, input, handleStart, handleSendDigits, setInput, inputCallback }; + return { nbDigits, input, handleStart, handleSendDigits, setInput }; }; From 6d2c3fb8f7399c9ce0dc330b5ac135b58aa94048 Mon Sep 17 00:00:00 2001 From: Kevin Le Seigle Date: Fri, 18 Oct 2024 16:28:52 +0200 Subject: [PATCH 32/57] fix: avoid rerendering leak --- .../screens/Activation/ActivationLoading.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationLoading.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationLoading.tsx index 75efdc3e99cd..9ea8535f7633 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationLoading.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationLoading.tsx @@ -1,4 +1,4 @@ -import React from "react"; +import React, { useEffect } from "react"; import { WalletSyncNavigatorStackParamList } from "~/components/RootNavigator/types/WalletSyncNavigator"; import { ScreenName } from "~/const"; import { BaseComposite, StackNavigatorProps } from "~/components/RootNavigator/types/helpers"; @@ -31,9 +31,11 @@ export function ActivationLoading({ route }: Props) { useLoadingStep(created); const hasCompletedOnboarding = useSelector(hasCompletedOnboardingSelector); - if (!hasCompletedOnboarding) { - dispatch(completeOnboarding()); - } + useEffect(() => { + if (!hasCompletedOnboarding) { + dispatch(completeOnboarding()); + } + }, [dispatch, hasCompletedOnboarding]); return ( <> From 0885c4901a5516fad9a7b2563c5bac8e8ba6efa3 Mon Sep 17 00:00:00 2001 From: Kevin Le Seigle Date: Fri, 18 Oct 2024 16:29:40 +0200 Subject: [PATCH 33/57] fix: integration test for qr code flow on llm --- .changeset/gold-bats-perform.md | 5 + ...synchronizeWithQrCode.integration.test.tsx | 95 ++++++++++++++----- 2 files changed, 75 insertions(+), 25 deletions(-) create mode 100644 .changeset/gold-bats-perform.md diff --git a/.changeset/gold-bats-perform.md b/.changeset/gold-bats-perform.md new file mode 100644 index 000000000000..eb1e6ecbed90 --- /dev/null +++ b/.changeset/gold-bats-perform.md @@ -0,0 +1,5 @@ +--- +"live-mobile": minor +--- + +Improve QRCode flow for Ledger Sync allowing use to automate tests diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/synchronizeWithQrCode.integration.test.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/synchronizeWithQrCode.integration.test.tsx index 054b87796b81..034129674acd 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/synchronizeWithQrCode.integration.test.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/synchronizeWithQrCode.integration.test.tsx @@ -1,30 +1,52 @@ import React from "react"; -import { render, screen } from "@tests/test-renderer"; - +import { render, screen, act } from "@tests/test-renderer"; import { INITIAL_TEST, WalletSyncSettingsNavigator } from "./shared"; -import getWalletSyncEnvironmentParams from "@ledgerhq/live-common/walletSync/getEnvironmentParams"; +import { createQRCodeCandidateInstance } from "@ledgerhq/ledger-key-ring-protocol/qrcode/index"; +import { BarcodeScanningResult } from "expo-camera"; + +const MOCK_BARCODE: BarcodeScanningResult = { + cornerPoints: [], + bounds: { + origin: { + x: 0, + y: 0, + }, + size: { + height: 0, + width: 0, + }, + }, + type: "", + data: "", +}; -jest.mock("../hooks/useQRCodeHost", () => ({ - useQRCodeHost: () => ({ - currentOption: jest.fn(), - url: "ledger.com", +const mockSimulateBarcodeScanned = jest.fn(); +jest.mock("expo-camera", () => ({ + CameraView: jest.fn(({ onBarcodeScanned }) => { + mockSimulateBarcodeScanned.mockImplementation(onBarcodeScanned); + return null; }), })); jest.mock("@ledgerhq/ledger-key-ring-protocol/qrcode/index", () => ({ - createQRCodeHostInstance: () => - Promise.resolve({ - trustchainApiBaseUrl: getWalletSyncEnvironmentParams("STAGING").trustchainApiBaseUrl, - onDisplayQRCode: jest.fn().mockImplementation(url => url), - onDisplayDigits: jest.fn().mockImplementation(digits => digits), - addMember: jest.fn(), - }), + createQRCodeCandidateInstance: jest.fn(), })); jest.useFakeTimers(); describe("SynchronizeWithQrCode", () => { it("Should display the QR code when 'show qr' toggle is pressed and add a new member through the flow", async () => { + let resolveQRCodeFlowPromise: unknown = null; + let requestQRCodeInput: unknown = null; + let pinCodeSet = false; + const mockPromiseQRCodeCandidate = new Promise(resolve => { + resolveQRCodeFlowPromise = resolve; + }); + (createQRCodeCandidateInstance as jest.Mock).mockImplementation(({ onRequestQRCodeInput }) => { + requestQRCodeInput = onRequestQRCodeInput; + return mockPromiseQRCodeCandidate; + }); + const { user } = render(, { overrideInitialState: INITIAL_TEST, }); @@ -34,16 +56,39 @@ describe("SynchronizeWithQrCode", () => { await user.press(screen.queryAllByText(/show qr/i)[0]); expect(screen.getByTestId("ws-qr-code-displayed")).toBeVisible(); - // TODO: We need to simulate the QR code scanning process - // //PinCode Page after scanning QRCode - // // Need to wait 3 seconds to simulate the time taken to scan the QR code - // expect(await screen.findByText("Enter Ledger Sync code")).toBeDefined(); - - // //Succes Page after PinCode - // expect( - // await screen.findByText( - // "Changes in your accounts will now automatically appear across all apps and platforms.", - // ), - // ).toBeDefined(); + await act(() => { + mockSimulateBarcodeScanned(MOCK_BARCODE); + }); + + // Call programmatically the requestQRCodeInput function to display the pin code input + await act(() => { + if (typeof requestQRCodeInput === "function") { + requestQRCodeInput({ digits: 3 }, (code: string) => { + if (code === "123") { + pinCodeSet = true; + } + }); + } + }); + + expect(await screen.findByText("Enter Ledger Sync code")).toBeDefined(); + const inputs = screen.getAllByDisplayValue(""); + await user.type(inputs[0], "1"); + await user.type(inputs[1], "2"); + await user.type(inputs[2], "3"); + + // Resolve the QR code flow promise only if pin code is set + if (pinCodeSet) { + if (typeof resolveQRCodeFlowPromise === "function") { + resolveQRCodeFlowPromise({ member: { name: "test" } }); + } + } + + expect(await screen.findByText("We are updating the synched instances...")).toBeDefined(); + //Simulate the sync process + await act(() => { + jest.advanceTimersByTime(3 * 1000); + }); + expect(await screen.findByText("Sync successful")).toBeDefined(); }); }); From 0383f16dc98253eebb6dab15494825840eafe3ae Mon Sep 17 00:00:00 2001 From: Thomas Brillard Date: Fri, 18 Oct 2024 17:31:24 +0200 Subject: [PATCH 34/57] passing dev mode to swap live app (#8141) feat: LIVE-14564 --- .changeset/red-tips-knock.md | 5 +++++ .../screens/exchange/Swap2/Form/SwapWebViewDemo3.tsx | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 .changeset/red-tips-knock.md diff --git a/.changeset/red-tips-knock.md b/.changeset/red-tips-knock.md new file mode 100644 index 000000000000..5cb560d95b59 --- /dev/null +++ b/.changeset/red-tips-knock.md @@ -0,0 +1,5 @@ +--- +"ledger-live-desktop": minor +--- + +passing dev mode to swap live app diff --git a/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/Form/SwapWebViewDemo3.tsx b/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/Form/SwapWebViewDemo3.tsx index 15b87e4c7d13..179218d426c4 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/Form/SwapWebViewDemo3.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/Form/SwapWebViewDemo3.tsx @@ -24,6 +24,7 @@ import logger from "~/renderer/logger"; import { flattenAccountsSelector } from "~/renderer/reducers/accounts"; import { counterValueCurrencySelector, + developerModeSelector, enablePlatformDevToolsSelector, languageSelector, } from "~/renderer/reducers/settings"; @@ -111,6 +112,7 @@ const SwapWebView = ({ manifest, liveAppUnavailable }: SwapWebProps) => { const fiatCurrency = useSelector(counterValueCurrencySelector); const locale = useSelector(languageSelector); const enablePlatformDevTools = useSelector(enablePlatformDevToolsSelector); + const devMode = useSelector(developerModeSelector); const accounts = useSelector(flattenAccountsSelector); const { t } = useTranslation(); const swapDefaultTrack = useGetSwapTrackingProperties(); @@ -394,6 +396,7 @@ const SwapWebView = ({ manifest, liveAppUnavailable }: SwapWebProps) => { lang: locale, currencyTicker: fiatCurrency.ticker, swapApiBase: SWAP_API_BASE, + devMode, }} onStateChange={onStateChange} ref={webviewAPIRef} From 5d7e67e870de8a1134f92f555a4641608675f00f Mon Sep 17 00:00:00 2001 From: Mounir Hamzaoui Date: Fri, 18 Oct 2024 17:48:11 +0200 Subject: [PATCH 35/57] =?UTF-8?q?fix:=20=F0=9F=90=9E=20display=20of=20toke?= =?UTF-8?q?nCTA=20with=20long=20wording=20(#8148)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/flat-rings-deny.md | 5 +++++ .../modals/AddAccounts/steps/StepChooseCurrency.tsx | 8 +++++++- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .changeset/flat-rings-deny.md diff --git a/.changeset/flat-rings-deny.md b/.changeset/flat-rings-deny.md new file mode 100644 index 000000000000..ac808107ce24 --- /dev/null +++ b/.changeset/flat-rings-deny.md @@ -0,0 +1,5 @@ +--- +"ledger-live-desktop": patch +--- + +Fix long wording display on button inside a 500px width modal diff --git a/apps/ledger-live-desktop/src/renderer/modals/AddAccounts/steps/StepChooseCurrency.tsx b/apps/ledger-live-desktop/src/renderer/modals/AddAccounts/steps/StepChooseCurrency.tsx index 1ee26d75becb..8797137d853f 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/AddAccounts/steps/StepChooseCurrency.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/AddAccounts/steps/StepChooseCurrency.tsx @@ -306,7 +306,13 @@ export const StepChooseCurrencyFooter = ({ {isToken ? ( {parentCurrency ? ( -